chip.c 95.2 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 790
		err = mv88e6xxx_g1_read(chip, GLOBAL_STATS_OP, &val);
		if ((val & GLOBAL_STATS_OP_BUSY) == 0)
791 792 793 794 795 796
			return 0;
	}

	return -ETIMEDOUT;
}

797
static int _mv88e6xxx_stats_snapshot(struct mv88e6xxx_chip *chip, int port)
798
{
799
	int err;
800

801
	if (mv88e6xxx_6320_family(chip) || mv88e6xxx_6352_family(chip))
802 803
		port = (port + 1) << 5;

804
	/* Snapshot the hardware statistics counters for this port. */
805 806 807 808 809
	err = mv88e6xxx_g1_write(chip, GLOBAL_STATS_OP,
				 GLOBAL_STATS_OP_CAPTURE_PORT |
				 GLOBAL_STATS_OP_HIST_RX_TX | port);
	if (err)
		return err;
810

811
	/* Wait for the snapshotting to complete. */
812
	return _mv88e6xxx_stats_wait(chip);
813 814
}

815
static void _mv88e6xxx_stats_read(struct mv88e6xxx_chip *chip,
816
				  int stat, u32 *val)
817
{
818 819 820
	u32 value;
	u16 reg;
	int err;
821 822 823

	*val = 0;

824 825 826 827
	err = mv88e6xxx_g1_write(chip, GLOBAL_STATS_OP,
				 GLOBAL_STATS_OP_READ_CAPTURED |
				 GLOBAL_STATS_OP_HIST_RX_TX | stat);
	if (err)
828 829
		return;

830 831
	err = _mv88e6xxx_stats_wait(chip);
	if (err)
832 833
		return;

834 835
	err = mv88e6xxx_g1_read(chip, GLOBAL_STATS_COUNTER_32, &reg);
	if (err)
836 837
		return;

838
	value = reg << 16;
839

840 841
	err = mv88e6xxx_g1_read(chip, GLOBAL_STATS_COUNTER_01, &reg);
	if (err)
842 843
		return;

844
	*val = value | reg;
845 846
}

847
static struct mv88e6xxx_hw_stat mv88e6xxx_hw_stats[] = {
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 899 900 901 902 903 904 905 906
	{ "in_good_octets",	8, 0x00, BANK0, },
	{ "in_bad_octets",	4, 0x02, BANK0, },
	{ "in_unicast",		4, 0x04, BANK0, },
	{ "in_broadcasts",	4, 0x06, BANK0, },
	{ "in_multicasts",	4, 0x07, BANK0, },
	{ "in_pause",		4, 0x16, BANK0, },
	{ "in_undersize",	4, 0x18, BANK0, },
	{ "in_fragments",	4, 0x19, BANK0, },
	{ "in_oversize",	4, 0x1a, BANK0, },
	{ "in_jabber",		4, 0x1b, BANK0, },
	{ "in_rx_error",	4, 0x1c, BANK0, },
	{ "in_fcs_error",	4, 0x1d, BANK0, },
	{ "out_octets",		8, 0x0e, BANK0, },
	{ "out_unicast",	4, 0x10, BANK0, },
	{ "out_broadcasts",	4, 0x13, BANK0, },
	{ "out_multicasts",	4, 0x12, BANK0, },
	{ "out_pause",		4, 0x15, BANK0, },
	{ "excessive",		4, 0x11, BANK0, },
	{ "collisions",		4, 0x1e, BANK0, },
	{ "deferred",		4, 0x05, BANK0, },
	{ "single",		4, 0x14, BANK0, },
	{ "multiple",		4, 0x17, BANK0, },
	{ "out_fcs_error",	4, 0x03, BANK0, },
	{ "late",		4, 0x1f, BANK0, },
	{ "hist_64bytes",	4, 0x08, BANK0, },
	{ "hist_65_127bytes",	4, 0x09, BANK0, },
	{ "hist_128_255bytes",	4, 0x0a, BANK0, },
	{ "hist_256_511bytes",	4, 0x0b, BANK0, },
	{ "hist_512_1023bytes", 4, 0x0c, BANK0, },
	{ "hist_1024_max_bytes", 4, 0x0d, BANK0, },
	{ "sw_in_discards",	4, 0x10, PORT, },
	{ "sw_in_filtered",	2, 0x12, PORT, },
	{ "sw_out_filtered",	2, 0x13, PORT, },
	{ "in_discards",	4, 0x00 | GLOBAL_STATS_OP_BANK_1, BANK1, },
	{ "in_filtered",	4, 0x01 | GLOBAL_STATS_OP_BANK_1, BANK1, },
	{ "in_accepted",	4, 0x02 | GLOBAL_STATS_OP_BANK_1, BANK1, },
	{ "in_bad_accepted",	4, 0x03 | GLOBAL_STATS_OP_BANK_1, BANK1, },
	{ "in_good_avb_class_a", 4, 0x04 | GLOBAL_STATS_OP_BANK_1, BANK1, },
	{ "in_good_avb_class_b", 4, 0x05 | GLOBAL_STATS_OP_BANK_1, BANK1, },
	{ "in_bad_avb_class_a", 4, 0x06 | GLOBAL_STATS_OP_BANK_1, BANK1, },
	{ "in_bad_avb_class_b", 4, 0x07 | GLOBAL_STATS_OP_BANK_1, BANK1, },
	{ "tcam_counter_0",	4, 0x08 | GLOBAL_STATS_OP_BANK_1, BANK1, },
	{ "tcam_counter_1",	4, 0x09 | GLOBAL_STATS_OP_BANK_1, BANK1, },
	{ "tcam_counter_2",	4, 0x0a | GLOBAL_STATS_OP_BANK_1, BANK1, },
	{ "tcam_counter_3",	4, 0x0b | GLOBAL_STATS_OP_BANK_1, BANK1, },
	{ "in_da_unknown",	4, 0x0e | GLOBAL_STATS_OP_BANK_1, BANK1, },
	{ "in_management",	4, 0x0f | GLOBAL_STATS_OP_BANK_1, BANK1, },
	{ "out_queue_0",	4, 0x10 | GLOBAL_STATS_OP_BANK_1, BANK1, },
	{ "out_queue_1",	4, 0x11 | GLOBAL_STATS_OP_BANK_1, BANK1, },
	{ "out_queue_2",	4, 0x12 | GLOBAL_STATS_OP_BANK_1, BANK1, },
	{ "out_queue_3",	4, 0x13 | GLOBAL_STATS_OP_BANK_1, BANK1, },
	{ "out_queue_4",	4, 0x14 | GLOBAL_STATS_OP_BANK_1, BANK1, },
	{ "out_queue_5",	4, 0x15 | GLOBAL_STATS_OP_BANK_1, BANK1, },
	{ "out_queue_6",	4, 0x16 | GLOBAL_STATS_OP_BANK_1, BANK1, },
	{ "out_queue_7",	4, 0x17 | GLOBAL_STATS_OP_BANK_1, BANK1, },
	{ "out_cut_through",	4, 0x18 | GLOBAL_STATS_OP_BANK_1, BANK1, },
	{ "out_octets_a",	4, 0x1a | GLOBAL_STATS_OP_BANK_1, BANK1, },
	{ "out_octets_b",	4, 0x1b | GLOBAL_STATS_OP_BANK_1, BANK1, },
	{ "out_management",	4, 0x1f | GLOBAL_STATS_OP_BANK_1, BANK1, },
907 908
};

909
static bool mv88e6xxx_has_stat(struct mv88e6xxx_chip *chip,
910
			       struct mv88e6xxx_hw_stat *stat)
911
{
912 913
	switch (stat->type) {
	case BANK0:
914
		return true;
915
	case BANK1:
916
		return mv88e6xxx_6320_family(chip);
917
	case PORT:
918 919 920 921 922 923
		return mv88e6xxx_6095_family(chip) ||
			mv88e6xxx_6185_family(chip) ||
			mv88e6xxx_6097_family(chip) ||
			mv88e6xxx_6165_family(chip) ||
			mv88e6xxx_6351_family(chip) ||
			mv88e6xxx_6352_family(chip);
924
	}
925
	return false;
926 927
}

928
static uint64_t _mv88e6xxx_get_ethtool_stat(struct mv88e6xxx_chip *chip,
929
					    struct mv88e6xxx_hw_stat *s,
930 931 932 933
					    int port)
{
	u32 low;
	u32 high = 0;
934 935
	int err;
	u16 reg;
936 937
	u64 value;

938 939
	switch (s->type) {
	case PORT:
940 941
		err = mv88e6xxx_port_read(chip, port, s->reg, &reg);
		if (err)
942 943
			return UINT64_MAX;

944
		low = reg;
945
		if (s->sizeof_stat == 4) {
946 947
			err = mv88e6xxx_port_read(chip, port, s->reg + 1, &reg);
			if (err)
948
				return UINT64_MAX;
949
			high = reg;
950
		}
951 952 953
		break;
	case BANK0:
	case BANK1:
954
		_mv88e6xxx_stats_read(chip, s->reg, &low);
955
		if (s->sizeof_stat == 8)
956
			_mv88e6xxx_stats_read(chip, s->reg + 1, &high);
957 958 959 960 961
	}
	value = (((u64)high) << 16) | low;
	return value;
}

962 963
static void mv88e6xxx_get_strings(struct dsa_switch *ds, int port,
				  uint8_t *data)
964
{
V
Vivien Didelot 已提交
965
	struct mv88e6xxx_chip *chip = ds->priv;
966 967
	struct mv88e6xxx_hw_stat *stat;
	int i, j;
968

969 970
	for (i = 0, j = 0; i < ARRAY_SIZE(mv88e6xxx_hw_stats); i++) {
		stat = &mv88e6xxx_hw_stats[i];
971
		if (mv88e6xxx_has_stat(chip, stat)) {
972 973 974 975
			memcpy(data + j * ETH_GSTRING_LEN, stat->string,
			       ETH_GSTRING_LEN);
			j++;
		}
976
	}
977 978
}

979
static int mv88e6xxx_get_sset_count(struct dsa_switch *ds)
980
{
V
Vivien Didelot 已提交
981
	struct mv88e6xxx_chip *chip = ds->priv;
982 983 984 985 986
	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];
987
		if (mv88e6xxx_has_stat(chip, stat))
988 989 990
			j++;
	}
	return j;
991 992
}

993 994
static void mv88e6xxx_get_ethtool_stats(struct dsa_switch *ds, int port,
					uint64_t *data)
995
{
V
Vivien Didelot 已提交
996
	struct mv88e6xxx_chip *chip = ds->priv;
997 998 999 1000
	struct mv88e6xxx_hw_stat *stat;
	int ret;
	int i, j;

1001
	mutex_lock(&chip->reg_lock);
1002

1003
	ret = _mv88e6xxx_stats_snapshot(chip, port);
1004
	if (ret < 0) {
1005
		mutex_unlock(&chip->reg_lock);
1006 1007 1008 1009
		return;
	}
	for (i = 0, j = 0; i < ARRAY_SIZE(mv88e6xxx_hw_stats); i++) {
		stat = &mv88e6xxx_hw_stats[i];
1010 1011
		if (mv88e6xxx_has_stat(chip, stat)) {
			data[j] = _mv88e6xxx_get_ethtool_stat(chip, stat, port);
1012 1013 1014 1015
			j++;
		}
	}

1016
	mutex_unlock(&chip->reg_lock);
1017 1018
}

1019
static int mv88e6xxx_get_regs_len(struct dsa_switch *ds, int port)
1020 1021 1022 1023
{
	return 32 * sizeof(u16);
}

1024 1025
static void mv88e6xxx_get_regs(struct dsa_switch *ds, int port,
			       struct ethtool_regs *regs, void *_p)
1026
{
V
Vivien Didelot 已提交
1027
	struct mv88e6xxx_chip *chip = ds->priv;
1028 1029
	int err;
	u16 reg;
1030 1031 1032 1033 1034 1035 1036
	u16 *p = _p;
	int i;

	regs->version = 0;

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

1037
	mutex_lock(&chip->reg_lock);
1038

1039 1040
	for (i = 0; i < 32; i++) {

1041 1042 1043
		err = mv88e6xxx_port_read(chip, port, i, &reg);
		if (!err)
			p[i] = reg;
1044
	}
1045

1046
	mutex_unlock(&chip->reg_lock);
1047 1048
}

1049
static int _mv88e6xxx_atu_wait(struct mv88e6xxx_chip *chip)
1050
{
1051
	return mv88e6xxx_g1_wait(chip, GLOBAL_ATU_OP, GLOBAL_ATU_OP_BUSY);
1052 1053
}

1054 1055
static int mv88e6xxx_get_eee(struct dsa_switch *ds, int port,
			     struct ethtool_eee *e)
1056
{
V
Vivien Didelot 已提交
1057
	struct mv88e6xxx_chip *chip = ds->priv;
1058 1059
	u16 reg;
	int err;
1060

1061
	if (!mv88e6xxx_has(chip, MV88E6XXX_FLAG_EEE))
1062 1063
		return -EOPNOTSUPP;

1064
	mutex_lock(&chip->reg_lock);
1065

1066 1067
	err = mv88e6xxx_phy_read(chip, port, 16, &reg);
	if (err)
1068
		goto out;
1069 1070 1071 1072

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

1073
	err = mv88e6xxx_port_read(chip, port, PORT_STATUS, &reg);
1074
	if (err)
1075
		goto out;
1076

1077
	e->eee_active = !!(reg & PORT_STATUS_EEE);
1078
out:
1079
	mutex_unlock(&chip->reg_lock);
1080 1081

	return err;
1082 1083
}

1084 1085
static int mv88e6xxx_set_eee(struct dsa_switch *ds, int port,
			     struct phy_device *phydev, struct ethtool_eee *e)
1086
{
V
Vivien Didelot 已提交
1087
	struct mv88e6xxx_chip *chip = ds->priv;
1088 1089
	u16 reg;
	int err;
1090

1091
	if (!mv88e6xxx_has(chip, MV88E6XXX_FLAG_EEE))
1092 1093
		return -EOPNOTSUPP;

1094
	mutex_lock(&chip->reg_lock);
1095

1096 1097
	err = mv88e6xxx_phy_read(chip, port, 16, &reg);
	if (err)
1098 1099
		goto out;

1100
	reg &= ~0x0300;
1101 1102 1103 1104 1105
	if (e->eee_enabled)
		reg |= 0x0200;
	if (e->tx_lpi_enabled)
		reg |= 0x0100;

1106
	err = mv88e6xxx_phy_write(chip, port, 16, reg);
1107
out:
1108
	mutex_unlock(&chip->reg_lock);
1109

1110
	return err;
1111 1112
}

1113
static int _mv88e6xxx_atu_cmd(struct mv88e6xxx_chip *chip, u16 fid, u16 cmd)
1114
{
1115 1116
	u16 val;
	int err;
1117

1118
	if (mv88e6xxx_has(chip, MV88E6XXX_FLAG_G1_ATU_FID)) {
1119 1120 1121
		err = mv88e6xxx_g1_write(chip, GLOBAL_ATU_FID, fid);
		if (err)
			return err;
1122
	} else if (mv88e6xxx_num_databases(chip) == 256) {
1123
		/* ATU DBNum[7:4] are located in ATU Control 15:12 */
1124 1125 1126
		err = mv88e6xxx_g1_read(chip, GLOBAL_ATU_CONTROL, &val);
		if (err)
			return err;
1127

1128 1129 1130 1131
		err = mv88e6xxx_g1_write(chip, GLOBAL_ATU_CONTROL,
					 (val & 0xfff) | ((fid << 8) & 0xf000));
		if (err)
			return err;
1132 1133 1134

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

1137 1138 1139
	err = mv88e6xxx_g1_write(chip, GLOBAL_ATU_OP, cmd);
	if (err)
		return err;
1140

1141
	return _mv88e6xxx_atu_wait(chip);
1142 1143
}

1144
static int _mv88e6xxx_atu_data_write(struct mv88e6xxx_chip *chip,
1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163
				     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;
	}

1164
	return mv88e6xxx_g1_write(chip, GLOBAL_ATU_DATA, data);
1165 1166
}

1167
static int _mv88e6xxx_atu_flush_move(struct mv88e6xxx_chip *chip,
1168 1169
				     struct mv88e6xxx_atu_entry *entry,
				     bool static_too)
1170
{
1171 1172
	int op;
	int err;
1173

1174
	err = _mv88e6xxx_atu_wait(chip);
1175 1176
	if (err)
		return err;
1177

1178
	err = _mv88e6xxx_atu_data_write(chip, entry);
1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189
	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;
	}

1190
	return _mv88e6xxx_atu_cmd(chip, entry->fid, op);
1191 1192
}

1193
static int _mv88e6xxx_atu_flush(struct mv88e6xxx_chip *chip,
1194
				u16 fid, bool static_too)
1195 1196 1197 1198 1199
{
	struct mv88e6xxx_atu_entry entry = {
		.fid = fid,
		.state = 0, /* EntryState bits must be 0 */
	};
1200

1201
	return _mv88e6xxx_atu_flush_move(chip, &entry, static_too);
1202 1203
}

1204
static int _mv88e6xxx_atu_move(struct mv88e6xxx_chip *chip, u16 fid,
1205
			       int from_port, int to_port, bool static_too)
1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218
{
	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;

1219
	return _mv88e6xxx_atu_flush_move(chip, &entry, static_too);
1220 1221
}

1222
static int _mv88e6xxx_atu_remove(struct mv88e6xxx_chip *chip, u16 fid,
1223
				 int port, bool static_too)
1224 1225
{
	/* Destination port 0xF means remove the entries */
1226
	return _mv88e6xxx_atu_move(chip, fid, port, 0x0f, static_too);
1227 1228
}

1229
static int _mv88e6xxx_port_based_vlan_map(struct mv88e6xxx_chip *chip, int port)
1230
{
1231 1232
	struct net_device *bridge = chip->ports[port].bridge_dev;
	struct dsa_switch *ds = chip->ds;
1233 1234 1235 1236 1237
	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)) {
1238
		output_ports = ~0;
1239
	} else {
1240
		for (i = 0; i < mv88e6xxx_num_ports(chip); ++i) {
1241
			/* allow sending frames to every group member */
1242
			if (bridge && chip->ports[i].bridge_dev == bridge)
1243 1244 1245 1246 1247 1248 1249 1250 1251 1252
				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);
1253

1254
	return mv88e6xxx_port_set_vlan_map(chip, port, output_ports);
1255 1256
}

1257 1258
static void mv88e6xxx_port_stp_state_set(struct dsa_switch *ds, int port,
					 u8 state)
1259
{
V
Vivien Didelot 已提交
1260
	struct mv88e6xxx_chip *chip = ds->priv;
1261
	int stp_state;
1262
	int err;
1263 1264 1265

	switch (state) {
	case BR_STATE_DISABLED:
1266
		stp_state = PORT_CONTROL_STATE_DISABLED;
1267 1268 1269
		break;
	case BR_STATE_BLOCKING:
	case BR_STATE_LISTENING:
1270
		stp_state = PORT_CONTROL_STATE_BLOCKING;
1271 1272
		break;
	case BR_STATE_LEARNING:
1273
		stp_state = PORT_CONTROL_STATE_LEARNING;
1274 1275 1276
		break;
	case BR_STATE_FORWARDING:
	default:
1277
		stp_state = PORT_CONTROL_STATE_FORWARDING;
1278 1279 1280
		break;
	}

1281
	mutex_lock(&chip->reg_lock);
1282
	err = mv88e6xxx_port_set_state(chip, port, stp_state);
1283
	mutex_unlock(&chip->reg_lock);
1284 1285

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

1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301
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");
}

1302
static int _mv88e6xxx_vtu_wait(struct mv88e6xxx_chip *chip)
1303
{
1304
	return mv88e6xxx_g1_wait(chip, GLOBAL_VTU_OP, GLOBAL_VTU_OP_BUSY);
1305 1306
}

1307
static int _mv88e6xxx_vtu_cmd(struct mv88e6xxx_chip *chip, u16 op)
1308
{
1309
	int err;
1310

1311 1312 1313
	err = mv88e6xxx_g1_write(chip, GLOBAL_VTU_OP, op);
	if (err)
		return err;
1314

1315
	return _mv88e6xxx_vtu_wait(chip);
1316 1317
}

1318
static int _mv88e6xxx_vtu_stu_flush(struct mv88e6xxx_chip *chip)
1319 1320 1321
{
	int ret;

1322
	ret = _mv88e6xxx_vtu_wait(chip);
1323 1324 1325
	if (ret < 0)
		return ret;

1326
	return _mv88e6xxx_vtu_cmd(chip, GLOBAL_VTU_OP_FLUSH_ALL);
1327 1328
}

1329
static int _mv88e6xxx_vtu_stu_data_read(struct mv88e6xxx_chip *chip,
1330
					struct mv88e6xxx_vtu_entry *entry,
1331 1332 1333
					unsigned int nibble_offset)
{
	u16 regs[3];
1334
	int i, err;
1335 1336

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

1339 1340 1341
		err = mv88e6xxx_g1_read(chip, GLOBAL_VTU_DATA_0_3 + i, reg);
		if (err)
			return err;
1342 1343
	}

1344
	for (i = 0; i < mv88e6xxx_num_ports(chip); ++i) {
1345 1346 1347 1348 1349 1350 1351 1352 1353
		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;
}

1354
static int mv88e6xxx_vtu_data_read(struct mv88e6xxx_chip *chip,
1355
				   struct mv88e6xxx_vtu_entry *entry)
1356
{
1357
	return _mv88e6xxx_vtu_stu_data_read(chip, entry, 0);
1358 1359
}

1360
static int mv88e6xxx_stu_data_read(struct mv88e6xxx_chip *chip,
1361
				   struct mv88e6xxx_vtu_entry *entry)
1362
{
1363
	return _mv88e6xxx_vtu_stu_data_read(chip, entry, 2);
1364 1365
}

1366
static int _mv88e6xxx_vtu_stu_data_write(struct mv88e6xxx_chip *chip,
1367
					 struct mv88e6xxx_vtu_entry *entry,
1368 1369 1370
					 unsigned int nibble_offset)
{
	u16 regs[3] = { 0 };
1371
	int i, err;
1372

1373
	for (i = 0; i < mv88e6xxx_num_ports(chip); ++i) {
1374 1375 1376 1377 1378 1379 1380
		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) {
1381 1382 1383 1384 1385
		u16 reg = regs[i];

		err = mv88e6xxx_g1_write(chip, GLOBAL_VTU_DATA_0_3 + i, reg);
		if (err)
			return err;
1386 1387 1388 1389 1390
	}

	return 0;
}

1391
static int mv88e6xxx_vtu_data_write(struct mv88e6xxx_chip *chip,
1392
				    struct mv88e6xxx_vtu_entry *entry)
1393
{
1394
	return _mv88e6xxx_vtu_stu_data_write(chip, entry, 0);
1395 1396
}

1397
static int mv88e6xxx_stu_data_write(struct mv88e6xxx_chip *chip,
1398
				    struct mv88e6xxx_vtu_entry *entry)
1399
{
1400
	return _mv88e6xxx_vtu_stu_data_write(chip, entry, 2);
1401 1402
}

1403
static int _mv88e6xxx_vtu_vid_write(struct mv88e6xxx_chip *chip, u16 vid)
1404
{
1405 1406
	return mv88e6xxx_g1_write(chip, GLOBAL_VTU_VID,
				  vid & GLOBAL_VTU_VID_MASK);
1407 1408
}

1409
static int _mv88e6xxx_vtu_getnext(struct mv88e6xxx_chip *chip,
1410
				  struct mv88e6xxx_vtu_entry *entry)
1411
{
1412
	struct mv88e6xxx_vtu_entry next = { 0 };
1413 1414
	u16 val;
	int err;
1415

1416 1417 1418
	err = _mv88e6xxx_vtu_wait(chip);
	if (err)
		return err;
1419

1420 1421 1422
	err = _mv88e6xxx_vtu_cmd(chip, GLOBAL_VTU_OP_VTU_GET_NEXT);
	if (err)
		return err;
1423

1424 1425 1426
	err = mv88e6xxx_g1_read(chip, GLOBAL_VTU_VID, &val);
	if (err)
		return err;
1427

1428 1429
	next.vid = val & GLOBAL_VTU_VID_MASK;
	next.valid = !!(val & GLOBAL_VTU_VID_VALID);
1430 1431

	if (next.valid) {
1432 1433 1434
		err = mv88e6xxx_vtu_data_read(chip, &next);
		if (err)
			return err;
1435

1436
		if (mv88e6xxx_has(chip, MV88E6XXX_FLAG_G1_VTU_FID)) {
1437 1438 1439
			err = mv88e6xxx_g1_read(chip, GLOBAL_VTU_FID, &val);
			if (err)
				return err;
1440

1441
			next.fid = val & GLOBAL_VTU_FID_MASK;
1442
		} else if (mv88e6xxx_num_databases(chip) == 256) {
1443 1444 1445
			/* VTU DBNum[7:4] are located in VTU Operation 11:8, and
			 * VTU DBNum[3:0] are located in VTU Operation 3:0
			 */
1446 1447 1448
			err = mv88e6xxx_g1_read(chip, GLOBAL_VTU_OP, &val);
			if (err)
				return err;
1449

1450 1451
			next.fid = (val & 0xf00) >> 4;
			next.fid |= val & 0xf;
1452
		}
1453

1454
		if (mv88e6xxx_has(chip, MV88E6XXX_FLAG_STU)) {
1455 1456 1457
			err = mv88e6xxx_g1_read(chip, GLOBAL_VTU_SID, &val);
			if (err)
				return err;
1458

1459
			next.sid = val & GLOBAL_VTU_SID_MASK;
1460 1461 1462 1463 1464 1465 1466
		}
	}

	*entry = next;
	return 0;
}

1467 1468 1469
static int mv88e6xxx_port_vlan_dump(struct dsa_switch *ds, int port,
				    struct switchdev_obj_port_vlan *vlan,
				    int (*cb)(struct switchdev_obj *obj))
1470
{
V
Vivien Didelot 已提交
1471
	struct mv88e6xxx_chip *chip = ds->priv;
1472
	struct mv88e6xxx_vtu_entry next;
1473 1474 1475
	u16 pvid;
	int err;

1476
	if (!mv88e6xxx_has(chip, MV88E6XXX_FLAG_VTU))
1477 1478
		return -EOPNOTSUPP;

1479
	mutex_lock(&chip->reg_lock);
1480

1481
	err = mv88e6xxx_port_get_pvid(chip, port, &pvid);
1482 1483 1484
	if (err)
		goto unlock;

1485
	err = _mv88e6xxx_vtu_vid_write(chip, GLOBAL_VTU_VID_MASK);
1486 1487 1488 1489
	if (err)
		goto unlock;

	do {
1490
		err = _mv88e6xxx_vtu_getnext(chip, &next);
1491 1492 1493 1494 1495 1496 1497 1498 1499 1500
		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 */
1501 1502
		vlan->vid_begin = next.vid;
		vlan->vid_end = next.vid;
1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516
		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:
1517
	mutex_unlock(&chip->reg_lock);
1518 1519 1520 1521

	return err;
}

1522
static int _mv88e6xxx_vtu_loadpurge(struct mv88e6xxx_chip *chip,
1523
				    struct mv88e6xxx_vtu_entry *entry)
1524
{
1525
	u16 op = GLOBAL_VTU_OP_VTU_LOAD_PURGE;
1526
	u16 reg = 0;
1527
	int err;
1528

1529 1530 1531
	err = _mv88e6xxx_vtu_wait(chip);
	if (err)
		return err;
1532 1533 1534 1535 1536

	if (!entry->valid)
		goto loadpurge;

	/* Write port member tags */
1537 1538 1539
	err = mv88e6xxx_vtu_data_write(chip, entry);
	if (err)
		return err;
1540

1541
	if (mv88e6xxx_has(chip, MV88E6XXX_FLAG_STU)) {
1542
		reg = entry->sid & GLOBAL_VTU_SID_MASK;
1543 1544 1545
		err = mv88e6xxx_g1_write(chip, GLOBAL_VTU_SID, reg);
		if (err)
			return err;
1546
	}
1547

1548
	if (mv88e6xxx_has(chip, MV88E6XXX_FLAG_G1_VTU_FID)) {
1549
		reg = entry->fid & GLOBAL_VTU_FID_MASK;
1550 1551 1552
		err = mv88e6xxx_g1_write(chip, GLOBAL_VTU_FID, reg);
		if (err)
			return err;
1553
	} else if (mv88e6xxx_num_databases(chip) == 256) {
1554 1555 1556 1557 1558
		/* 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;
1559 1560 1561 1562 1563
	}

	reg = GLOBAL_VTU_VID_VALID;
loadpurge:
	reg |= entry->vid & GLOBAL_VTU_VID_MASK;
1564 1565 1566
	err = mv88e6xxx_g1_write(chip, GLOBAL_VTU_VID, reg);
	if (err)
		return err;
1567

1568
	return _mv88e6xxx_vtu_cmd(chip, op);
1569 1570
}

1571
static int _mv88e6xxx_stu_getnext(struct mv88e6xxx_chip *chip, u8 sid,
1572
				  struct mv88e6xxx_vtu_entry *entry)
1573
{
1574
	struct mv88e6xxx_vtu_entry next = { 0 };
1575 1576
	u16 val;
	int err;
1577

1578 1579 1580
	err = _mv88e6xxx_vtu_wait(chip);
	if (err)
		return err;
1581

1582 1583 1584 1585
	err = mv88e6xxx_g1_write(chip, GLOBAL_VTU_SID,
				 sid & GLOBAL_VTU_SID_MASK);
	if (err)
		return err;
1586

1587 1588 1589
	err = _mv88e6xxx_vtu_cmd(chip, GLOBAL_VTU_OP_STU_GET_NEXT);
	if (err)
		return err;
1590

1591 1592 1593
	err = mv88e6xxx_g1_read(chip, GLOBAL_VTU_SID, &val);
	if (err)
		return err;
1594

1595
	next.sid = val & GLOBAL_VTU_SID_MASK;
1596

1597 1598 1599
	err = mv88e6xxx_g1_read(chip, GLOBAL_VTU_VID, &val);
	if (err)
		return err;
1600

1601
	next.valid = !!(val & GLOBAL_VTU_VID_VALID);
1602 1603

	if (next.valid) {
1604 1605 1606
		err = mv88e6xxx_stu_data_read(chip, &next);
		if (err)
			return err;
1607 1608 1609 1610 1611 1612
	}

	*entry = next;
	return 0;
}

1613
static int _mv88e6xxx_stu_loadpurge(struct mv88e6xxx_chip *chip,
1614
				    struct mv88e6xxx_vtu_entry *entry)
1615 1616
{
	u16 reg = 0;
1617
	int err;
1618

1619 1620 1621
	err = _mv88e6xxx_vtu_wait(chip);
	if (err)
		return err;
1622 1623 1624 1625 1626

	if (!entry->valid)
		goto loadpurge;

	/* Write port states */
1627 1628 1629
	err = mv88e6xxx_stu_data_write(chip, entry);
	if (err)
		return err;
1630 1631 1632

	reg = GLOBAL_VTU_VID_VALID;
loadpurge:
1633 1634 1635
	err = mv88e6xxx_g1_write(chip, GLOBAL_VTU_VID, reg);
	if (err)
		return err;
1636 1637

	reg = entry->sid & GLOBAL_VTU_SID_MASK;
1638 1639 1640
	err = mv88e6xxx_g1_write(chip, GLOBAL_VTU_SID, reg);
	if (err)
		return err;
1641

1642
	return _mv88e6xxx_vtu_cmd(chip, GLOBAL_VTU_OP_STU_LOAD_PURGE);
1643 1644
}

1645
static int _mv88e6xxx_fid_new(struct mv88e6xxx_chip *chip, u16 *fid)
1646 1647
{
	DECLARE_BITMAP(fid_bitmap, MV88E6XXX_N_FID);
1648
	struct mv88e6xxx_vtu_entry vlan;
1649
	int i, err;
1650 1651 1652

	bitmap_zero(fid_bitmap, MV88E6XXX_N_FID);

1653
	/* Set every FID bit used by the (un)bridged ports */
1654
	for (i = 0; i < mv88e6xxx_num_ports(chip); ++i) {
1655
		err = mv88e6xxx_port_get_fid(chip, i, fid);
1656 1657 1658 1659 1660 1661
		if (err)
			return err;

		set_bit(*fid, fid_bitmap);
	}

1662
	/* Set every FID bit used by the VLAN entries */
1663
	err = _mv88e6xxx_vtu_vid_write(chip, GLOBAL_VTU_VID_MASK);
1664 1665 1666 1667
	if (err)
		return err;

	do {
1668
		err = _mv88e6xxx_vtu_getnext(chip, &vlan);
1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681
		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);
1682
	if (unlikely(*fid >= mv88e6xxx_num_databases(chip)))
1683 1684 1685
		return -ENOSPC;

	/* Clear the database */
1686
	return _mv88e6xxx_atu_flush(chip, *fid, true);
1687 1688
}

1689
static int _mv88e6xxx_vtu_new(struct mv88e6xxx_chip *chip, u16 vid,
1690
			      struct mv88e6xxx_vtu_entry *entry)
1691
{
1692
	struct dsa_switch *ds = chip->ds;
1693
	struct mv88e6xxx_vtu_entry vlan = {
1694 1695 1696
		.valid = true,
		.vid = vid,
	};
1697 1698
	int i, err;

1699
	err = _mv88e6xxx_fid_new(chip, &vlan.fid);
1700 1701
	if (err)
		return err;
1702

1703
	/* exclude all ports except the CPU and DSA ports */
1704
	for (i = 0; i < mv88e6xxx_num_ports(chip); ++i)
1705 1706 1707
		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;
1708

1709 1710
	if (mv88e6xxx_6097_family(chip) || mv88e6xxx_6165_family(chip) ||
	    mv88e6xxx_6351_family(chip) || mv88e6xxx_6352_family(chip)) {
1711
		struct mv88e6xxx_vtu_entry vstp;
1712 1713 1714 1715 1716 1717

		/* 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;
1718
		err = _mv88e6xxx_stu_getnext(chip, GLOBAL_VTU_SID_MASK, &vstp);
1719 1720 1721 1722 1723 1724 1725 1726
		if (err)
			return err;

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

1727
			err = _mv88e6xxx_stu_loadpurge(chip, &vstp);
1728 1729 1730 1731 1732 1733 1734 1735 1736
			if (err)
				return err;
		}
	}

	*entry = vlan;
	return 0;
}

1737
static int _mv88e6xxx_vtu_get(struct mv88e6xxx_chip *chip, u16 vid,
1738
			      struct mv88e6xxx_vtu_entry *entry, bool creat)
1739 1740 1741 1742 1743 1744
{
	int err;

	if (!vid)
		return -EINVAL;

1745
	err = _mv88e6xxx_vtu_vid_write(chip, vid - 1);
1746 1747 1748
	if (err)
		return err;

1749
	err = _mv88e6xxx_vtu_getnext(chip, entry);
1750 1751 1752 1753 1754 1755 1756 1757 1758 1759
	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.
		 */

1760
		err = _mv88e6xxx_vtu_new(chip, vid, entry);
1761 1762 1763 1764 1765
	}

	return err;
}

1766 1767 1768
static int mv88e6xxx_port_check_hw_vlan(struct dsa_switch *ds, int port,
					u16 vid_begin, u16 vid_end)
{
V
Vivien Didelot 已提交
1769
	struct mv88e6xxx_chip *chip = ds->priv;
1770
	struct mv88e6xxx_vtu_entry vlan;
1771 1772 1773 1774 1775
	int i, err;

	if (!vid_begin)
		return -EOPNOTSUPP;

1776
	mutex_lock(&chip->reg_lock);
1777

1778
	err = _mv88e6xxx_vtu_vid_write(chip, vid_begin - 1);
1779 1780 1781 1782
	if (err)
		goto unlock;

	do {
1783
		err = _mv88e6xxx_vtu_getnext(chip, &vlan);
1784 1785 1786 1787 1788 1789 1790 1791 1792
		if (err)
			goto unlock;

		if (!vlan.valid)
			break;

		if (vlan.vid > vid_end)
			break;

1793
		for (i = 0; i < mv88e6xxx_num_ports(chip); ++i) {
1794 1795 1796 1797 1798 1799 1800
			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;

1801 1802
			if (chip->ports[i].bridge_dev ==
			    chip->ports[port].bridge_dev)
1803 1804
				break; /* same bridge, check next VLAN */

1805
			netdev_warn(ds->ports[port].netdev,
1806 1807
				    "hardware VLAN %d already used by %s\n",
				    vlan.vid,
1808
				    netdev_name(chip->ports[i].bridge_dev));
1809 1810 1811 1812 1813 1814
			err = -EOPNOTSUPP;
			goto unlock;
		}
	} while (vlan.vid < vid_end);

unlock:
1815
	mutex_unlock(&chip->reg_lock);
1816 1817 1818 1819

	return err;
}

1820 1821
static int mv88e6xxx_port_vlan_filtering(struct dsa_switch *ds, int port,
					 bool vlan_filtering)
1822
{
V
Vivien Didelot 已提交
1823
	struct mv88e6xxx_chip *chip = ds->priv;
1824
	u16 mode = vlan_filtering ? PORT_CONTROL_2_8021Q_SECURE :
1825
		PORT_CONTROL_2_8021Q_DISABLED;
1826
	int err;
1827

1828
	if (!mv88e6xxx_has(chip, MV88E6XXX_FLAG_VTU))
1829 1830
		return -EOPNOTSUPP;

1831
	mutex_lock(&chip->reg_lock);
1832
	err = mv88e6xxx_port_set_8021q_mode(chip, port, mode);
1833
	mutex_unlock(&chip->reg_lock);
1834

1835
	return err;
1836 1837
}

1838 1839 1840 1841
static int
mv88e6xxx_port_vlan_prepare(struct dsa_switch *ds, int port,
			    const struct switchdev_obj_port_vlan *vlan,
			    struct switchdev_trans *trans)
1842
{
V
Vivien Didelot 已提交
1843
	struct mv88e6xxx_chip *chip = ds->priv;
1844 1845
	int err;

1846
	if (!mv88e6xxx_has(chip, MV88E6XXX_FLAG_VTU))
1847 1848
		return -EOPNOTSUPP;

1849 1850 1851 1852 1853 1854 1855 1856
	/* 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;

1857 1858 1859 1860 1861 1862
	/* We don't need any dynamic resource from the kernel (yet),
	 * so skip the prepare phase.
	 */
	return 0;
}

1863
static int _mv88e6xxx_port_vlan_add(struct mv88e6xxx_chip *chip, int port,
1864
				    u16 vid, bool untagged)
1865
{
1866
	struct mv88e6xxx_vtu_entry vlan;
1867 1868
	int err;

1869
	err = _mv88e6xxx_vtu_get(chip, vid, &vlan, true);
1870
	if (err)
1871
		return err;
1872 1873 1874 1875 1876

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

1877
	return _mv88e6xxx_vtu_loadpurge(chip, &vlan);
1878 1879
}

1880 1881 1882
static void mv88e6xxx_port_vlan_add(struct dsa_switch *ds, int port,
				    const struct switchdev_obj_port_vlan *vlan,
				    struct switchdev_trans *trans)
1883
{
V
Vivien Didelot 已提交
1884
	struct mv88e6xxx_chip *chip = ds->priv;
1885 1886 1887 1888
	bool untagged = vlan->flags & BRIDGE_VLAN_INFO_UNTAGGED;
	bool pvid = vlan->flags & BRIDGE_VLAN_INFO_PVID;
	u16 vid;

1889
	if (!mv88e6xxx_has(chip, MV88E6XXX_FLAG_VTU))
1890 1891
		return;

1892
	mutex_lock(&chip->reg_lock);
1893

1894
	for (vid = vlan->vid_begin; vid <= vlan->vid_end; ++vid)
1895
		if (_mv88e6xxx_port_vlan_add(chip, port, vid, untagged))
1896 1897
			netdev_err(ds->ports[port].netdev,
				   "failed to add VLAN %d%c\n",
1898
				   vid, untagged ? 'u' : 't');
1899

1900
	if (pvid && mv88e6xxx_port_set_pvid(chip, port, vlan->vid_end))
1901
		netdev_err(ds->ports[port].netdev, "failed to set PVID %d\n",
1902
			   vlan->vid_end);
1903

1904
	mutex_unlock(&chip->reg_lock);
1905 1906
}

1907
static int _mv88e6xxx_port_vlan_del(struct mv88e6xxx_chip *chip,
1908
				    int port, u16 vid)
1909
{
1910
	struct dsa_switch *ds = chip->ds;
1911
	struct mv88e6xxx_vtu_entry vlan;
1912 1913
	int i, err;

1914
	err = _mv88e6xxx_vtu_get(chip, vid, &vlan, false);
1915
	if (err)
1916
		return err;
1917

1918 1919
	/* Tell switchdev if this VLAN is handled in software */
	if (vlan.data[port] == GLOBAL_VTU_DATA_MEMBER_TAG_NON_MEMBER)
1920
		return -EOPNOTSUPP;
1921 1922 1923 1924

	vlan.data[port] = GLOBAL_VTU_DATA_MEMBER_TAG_NON_MEMBER;

	/* keep the VLAN unless all ports are excluded */
1925
	vlan.valid = false;
1926
	for (i = 0; i < mv88e6xxx_num_ports(chip); ++i) {
1927
		if (dsa_is_cpu_port(ds, i) || dsa_is_dsa_port(ds, i))
1928 1929 1930
			continue;

		if (vlan.data[i] != GLOBAL_VTU_DATA_MEMBER_TAG_NON_MEMBER) {
1931
			vlan.valid = true;
1932 1933 1934 1935
			break;
		}
	}

1936
	err = _mv88e6xxx_vtu_loadpurge(chip, &vlan);
1937 1938 1939
	if (err)
		return err;

1940
	return _mv88e6xxx_atu_remove(chip, vlan.fid, port, false);
1941 1942
}

1943 1944
static int mv88e6xxx_port_vlan_del(struct dsa_switch *ds, int port,
				   const struct switchdev_obj_port_vlan *vlan)
1945
{
V
Vivien Didelot 已提交
1946
	struct mv88e6xxx_chip *chip = ds->priv;
1947 1948 1949
	u16 pvid, vid;
	int err = 0;

1950
	if (!mv88e6xxx_has(chip, MV88E6XXX_FLAG_VTU))
1951 1952
		return -EOPNOTSUPP;

1953
	mutex_lock(&chip->reg_lock);
1954

1955
	err = mv88e6xxx_port_get_pvid(chip, port, &pvid);
1956 1957 1958
	if (err)
		goto unlock;

1959
	for (vid = vlan->vid_begin; vid <= vlan->vid_end; ++vid) {
1960
		err = _mv88e6xxx_port_vlan_del(chip, port, vid);
1961 1962 1963 1964
		if (err)
			goto unlock;

		if (vid == pvid) {
1965
			err = mv88e6xxx_port_set_pvid(chip, port, 0);
1966 1967 1968 1969 1970
			if (err)
				goto unlock;
		}
	}

1971
unlock:
1972
	mutex_unlock(&chip->reg_lock);
1973 1974 1975 1976

	return err;
}

1977
static int _mv88e6xxx_atu_mac_write(struct mv88e6xxx_chip *chip,
1978
				    const unsigned char *addr)
1979
{
1980
	int i, err;
1981 1982

	for (i = 0; i < 3; i++) {
1983 1984 1985 1986
		err = mv88e6xxx_g1_write(chip, GLOBAL_ATU_MAC_01 + i,
					 (addr[i * 2] << 8) | addr[i * 2 + 1]);
		if (err)
			return err;
1987 1988 1989 1990 1991
	}

	return 0;
}

1992
static int _mv88e6xxx_atu_mac_read(struct mv88e6xxx_chip *chip,
1993
				   unsigned char *addr)
1994
{
1995 1996
	u16 val;
	int i, err;
1997 1998

	for (i = 0; i < 3; i++) {
1999 2000 2001 2002 2003 2004
		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;
2005 2006 2007 2008 2009
	}

	return 0;
}

2010
static int _mv88e6xxx_atu_load(struct mv88e6xxx_chip *chip,
2011
			       struct mv88e6xxx_atu_entry *entry)
2012
{
2013 2014
	int ret;

2015
	ret = _mv88e6xxx_atu_wait(chip);
2016 2017 2018
	if (ret < 0)
		return ret;

2019
	ret = _mv88e6xxx_atu_mac_write(chip, entry->mac);
2020 2021 2022
	if (ret < 0)
		return ret;

2023
	ret = _mv88e6xxx_atu_data_write(chip, entry);
2024
	if (ret < 0)
2025 2026
		return ret;

2027
	return _mv88e6xxx_atu_cmd(chip, entry->fid, GLOBAL_ATU_OP_LOAD_DB);
2028
}
2029

2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065
static int _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;
}

2066 2067 2068
static int mv88e6xxx_port_db_load_purge(struct mv88e6xxx_chip *chip, int port,
					const unsigned char *addr, u16 vid,
					u8 state)
2069
{
2070
	struct mv88e6xxx_vtu_entry vlan;
2071
	struct mv88e6xxx_atu_entry entry;
2072 2073
	int err;

2074 2075
	/* Null VLAN ID corresponds to the port private database */
	if (vid == 0)
2076
		err = mv88e6xxx_port_get_fid(chip, port, &vlan.fid);
2077
	else
2078
		err = _mv88e6xxx_vtu_get(chip, vid, &vlan, false);
2079 2080
	if (err)
		return err;
2081

2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093
	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;
2094 2095
	}

2096
	return _mv88e6xxx_atu_load(chip, &entry);
2097 2098
}

2099 2100 2101
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 已提交
2102 2103 2104 2105 2106 2107 2108
{
	/* We don't need any dynamic resource from the kernel (yet),
	 * so skip the prepare phase.
	 */
	return 0;
}

2109 2110 2111
static void mv88e6xxx_port_fdb_add(struct dsa_switch *ds, int port,
				   const struct switchdev_obj_port_fdb *fdb,
				   struct switchdev_trans *trans)
2112
{
V
Vivien Didelot 已提交
2113
	struct mv88e6xxx_chip *chip = ds->priv;
2114

2115
	mutex_lock(&chip->reg_lock);
2116 2117 2118
	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");
2119
	mutex_unlock(&chip->reg_lock);
2120 2121
}

2122 2123
static int mv88e6xxx_port_fdb_del(struct dsa_switch *ds, int port,
				  const struct switchdev_obj_port_fdb *fdb)
2124
{
V
Vivien Didelot 已提交
2125
	struct mv88e6xxx_chip *chip = ds->priv;
2126
	int err;
2127

2128
	mutex_lock(&chip->reg_lock);
2129 2130
	err = mv88e6xxx_port_db_load_purge(chip, port, fdb->addr, fdb->vid,
					   GLOBAL_ATU_DATA_STATE_UNUSED);
2131
	mutex_unlock(&chip->reg_lock);
2132

2133
	return err;
2134 2135
}

2136
static int _mv88e6xxx_atu_getnext(struct mv88e6xxx_chip *chip, u16 fid,
2137
				  struct mv88e6xxx_atu_entry *entry)
2138
{
2139
	struct mv88e6xxx_atu_entry next = { 0 };
2140 2141
	u16 val;
	int err;
2142 2143

	next.fid = fid;
2144

2145 2146 2147
	err = _mv88e6xxx_atu_wait(chip);
	if (err)
		return err;
2148

2149 2150 2151
	err = _mv88e6xxx_atu_cmd(chip, fid, GLOBAL_ATU_OP_GET_NEXT_DB);
	if (err)
		return err;
2152

2153 2154 2155
	err = _mv88e6xxx_atu_mac_read(chip, next.mac);
	if (err)
		return err;
2156

2157 2158 2159
	err = mv88e6xxx_g1_read(chip, GLOBAL_ATU_DATA, &val);
	if (err)
		return err;
2160

2161
	next.state = val & GLOBAL_ATU_DATA_STATE_MASK;
2162 2163 2164
	if (next.state != GLOBAL_ATU_DATA_STATE_UNUSED) {
		unsigned int mask, shift;

2165
		if (val & GLOBAL_ATU_DATA_TRUNK) {
2166 2167 2168 2169 2170 2171 2172 2173 2174
			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;
		}

2175
		next.portv_trunkid = (val & mask) >> shift;
2176
	}
2177

2178
	*entry = next;
2179 2180 2181
	return 0;
}

2182 2183 2184 2185
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))
2186 2187 2188 2189 2190 2191
{
	struct mv88e6xxx_atu_entry addr = {
		.mac = { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff },
	};
	int err;

2192
	err = _mv88e6xxx_atu_mac_write(chip, addr.mac);
2193 2194 2195 2196
	if (err)
		return err;

	do {
2197
		err = _mv88e6xxx_atu_getnext(chip, fid, &addr);
2198
		if (err)
2199
			return err;
2200 2201 2202 2203

		if (addr.state == GLOBAL_ATU_DATA_STATE_UNUSED)
			break;

2204 2205 2206 2207 2208
		if (addr.trunk || (addr.portv_trunkid & BIT(port)) == 0)
			continue;

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

2210 2211 2212 2213
			if (!is_unicast_ether_addr(addr.mac))
				continue;

			fdb = SWITCHDEV_OBJ_PORT_FDB(obj);
2214 2215
			fdb->vid = vid;
			ether_addr_copy(fdb->addr, addr.mac);
2216 2217 2218 2219
			if (addr.state == GLOBAL_ATU_DATA_STATE_UC_STATIC)
				fdb->ndm_state = NUD_NOARP;
			else
				fdb->ndm_state = NUD_REACHABLE;
2220 2221 2222 2223 2224 2225 2226 2227 2228
		} 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);
2229 2230
		} else {
			return -EOPNOTSUPP;
2231
		}
2232 2233 2234 2235

		err = cb(obj);
		if (err)
			return err;
2236 2237 2238 2239 2240
	} while (!is_broadcast_ether_addr(addr.mac));

	return err;
}

2241 2242 2243
static int mv88e6xxx_port_db_dump(struct mv88e6xxx_chip *chip, int port,
				  struct switchdev_obj *obj,
				  int (*cb)(struct switchdev_obj *obj))
2244
{
2245
	struct mv88e6xxx_vtu_entry vlan = {
2246 2247
		.vid = GLOBAL_VTU_VID_MASK, /* all ones */
	};
2248
	u16 fid;
2249 2250
	int err;

2251
	/* Dump port's default Filtering Information Database (VLAN ID 0) */
2252
	err = mv88e6xxx_port_get_fid(chip, port, &fid);
2253
	if (err)
2254
		return err;
2255

2256
	err = mv88e6xxx_port_db_dump_fid(chip, fid, 0, port, obj, cb);
2257
	if (err)
2258
		return err;
2259

2260
	/* Dump VLANs' Filtering Information Databases */
2261
	err = _mv88e6xxx_vtu_vid_write(chip, vlan.vid);
2262
	if (err)
2263
		return err;
2264 2265

	do {
2266
		err = _mv88e6xxx_vtu_getnext(chip, &vlan);
2267
		if (err)
2268
			return err;
2269 2270 2271 2272

		if (!vlan.valid)
			break;

2273 2274
		err = mv88e6xxx_port_db_dump_fid(chip, vlan.fid, vlan.vid, port,
						 obj, cb);
2275
		if (err)
2276
			return err;
2277 2278
	} while (vlan.vid < GLOBAL_VTU_VID_MASK);

2279 2280 2281 2282 2283 2284 2285
	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 已提交
2286
	struct mv88e6xxx_chip *chip = ds->priv;
2287 2288 2289 2290
	int err;

	mutex_lock(&chip->reg_lock);
	err = mv88e6xxx_port_db_dump(chip, port, &fdb->obj, cb);
2291
	mutex_unlock(&chip->reg_lock);
2292 2293 2294 2295

	return err;
}

2296 2297
static int mv88e6xxx_port_bridge_join(struct dsa_switch *ds, int port,
				      struct net_device *bridge)
2298
{
V
Vivien Didelot 已提交
2299
	struct mv88e6xxx_chip *chip = ds->priv;
2300
	int i, err = 0;
2301

2302
	mutex_lock(&chip->reg_lock);
2303

2304
	/* Assign the bridge and remap each port's VLANTable */
2305
	chip->ports[port].bridge_dev = bridge;
2306

2307
	for (i = 0; i < mv88e6xxx_num_ports(chip); ++i) {
2308 2309
		if (chip->ports[i].bridge_dev == bridge) {
			err = _mv88e6xxx_port_based_vlan_map(chip, i);
2310 2311 2312 2313 2314
			if (err)
				break;
		}
	}

2315
	mutex_unlock(&chip->reg_lock);
2316

2317
	return err;
2318 2319
}

2320
static void mv88e6xxx_port_bridge_leave(struct dsa_switch *ds, int port)
2321
{
V
Vivien Didelot 已提交
2322
	struct mv88e6xxx_chip *chip = ds->priv;
2323
	struct net_device *bridge = chip->ports[port].bridge_dev;
2324
	int i;
2325

2326
	mutex_lock(&chip->reg_lock);
2327

2328
	/* Unassign the bridge and remap each port's VLANTable */
2329
	chip->ports[port].bridge_dev = NULL;
2330

2331
	for (i = 0; i < mv88e6xxx_num_ports(chip); ++i)
2332 2333
		if (i == port || chip->ports[i].bridge_dev == bridge)
			if (_mv88e6xxx_port_based_vlan_map(chip, i))
2334 2335
				netdev_warn(ds->ports[i].netdev,
					    "failed to remap\n");
2336

2337
	mutex_unlock(&chip->reg_lock);
2338 2339
}

2340
static int mv88e6xxx_switch_reset(struct mv88e6xxx_chip *chip)
2341
{
2342
	bool ppu_active = mv88e6xxx_has(chip, MV88E6XXX_FLAG_PPU_ACTIVE);
2343
	u16 is_reset = (ppu_active ? 0x8800 : 0xc800);
2344
	struct gpio_desc *gpiod = chip->reset;
2345
	unsigned long timeout;
2346
	u16 reg;
2347
	int err;
2348 2349 2350
	int i;

	/* Set all ports to the disabled state. */
2351
	for (i = 0; i < mv88e6xxx_num_ports(chip); i++) {
2352 2353
		err = mv88e6xxx_port_set_state(chip, i,
					       PORT_CONTROL_STATE_DISABLED);
2354 2355
		if (err)
			return err;
2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373
	}

	/* 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)
2374
		err = mv88e6xxx_g1_write(chip, 0x04, 0xc000);
2375
	else
2376
		err = mv88e6xxx_g1_write(chip, 0x04, 0xc400);
2377 2378
	if (err)
		return err;
2379 2380 2381 2382

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

2387
		if ((reg & is_reset) == is_reset)
2388 2389 2390 2391
			break;
		usleep_range(1000, 2000);
	}
	if (time_after(jiffies, timeout))
2392
		err = -ETIMEDOUT;
2393
	else
2394
		err = 0;
2395

2396
	return err;
2397 2398
}

2399
static int mv88e6xxx_serdes_power_on(struct mv88e6xxx_chip *chip)
2400
{
2401 2402
	u16 val;
	int err;
2403

2404 2405 2406 2407
	/* Clear Power Down bit */
	err = mv88e6xxx_serdes_read(chip, MII_BMCR, &val);
	if (err)
		return err;
2408

2409 2410 2411
	if (val & BMCR_PDOWN) {
		val &= ~BMCR_PDOWN;
		err = mv88e6xxx_serdes_write(chip, MII_BMCR, val);
2412 2413
	}

2414
	return err;
2415 2416
}

2417
static int mv88e6xxx_setup_port(struct mv88e6xxx_chip *chip, int port)
2418
{
2419
	struct dsa_switch *ds = chip->ds;
2420
	int err;
2421
	u16 reg;
2422

2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436
	/* 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;
2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452

	/* 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;
2453 2454 2455 2456
	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))
2457 2458 2459 2460
		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)) {
2461
		if (mv88e6xxx_has(chip, MV88E6XXX_FLAG_EDSA))
2462
			reg |= PORT_CONTROL_FRAME_ETHER_TYPE_DSA |
2463
				PORT_CONTROL_FORWARD_UNKNOWN_MC;
2464 2465
		else
			reg |= PORT_CONTROL_DSA_TAG;
2466 2467
		reg |= PORT_CONTROL_EGRESS_ADD_TAG |
			PORT_CONTROL_FORWARD_UNKNOWN;
2468
	}
2469
	if (dsa_is_dsa_port(ds, port)) {
2470 2471
		if (mv88e6xxx_6095_family(chip) ||
		    mv88e6xxx_6185_family(chip))
2472
			reg |= PORT_CONTROL_DSA_TAG;
2473 2474 2475 2476 2477
		if (mv88e6xxx_6352_family(chip) ||
		    mv88e6xxx_6351_family(chip) ||
		    mv88e6xxx_6165_family(chip) ||
		    mv88e6xxx_6097_family(chip) ||
		    mv88e6xxx_6320_family(chip)) {
2478
			reg |= PORT_CONTROL_FRAME_MODE_DSA;
2479 2480
		}

2481 2482 2483 2484 2485
		if (port == dsa_upstream_port(ds))
			reg |= PORT_CONTROL_FORWARD_UNKNOWN |
				PORT_CONTROL_FORWARD_UNKNOWN_MC;
	}
	if (reg) {
2486 2487 2488
		err = mv88e6xxx_port_write(chip, port, PORT_CONTROL, reg);
		if (err)
			return err;
2489 2490
	}

2491 2492 2493
	/* If this port is connected to a SerDes, make sure the SerDes is not
	 * powered down.
	 */
2494
	if (mv88e6xxx_has(chip, MV88E6XXX_FLAGS_SERDES)) {
2495 2496 2497 2498 2499 2500 2501 2502 2503 2504
		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;
2505 2506 2507
		}
	}

2508
	/* Port Control 2: don't force a good FCS, set the maximum frame size to
2509
	 * 10240 bytes, disable 802.1q tags checking, don't discard tagged or
2510 2511 2512
	 * 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.
2513 2514
	 */
	reg = 0;
2515 2516 2517 2518
	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))
2519 2520
		reg = PORT_CONTROL_2_MAP_DA;

2521 2522
	if (mv88e6xxx_6352_family(chip) || mv88e6xxx_6351_family(chip) ||
	    mv88e6xxx_6165_family(chip) || mv88e6xxx_6320_family(chip))
2523 2524
		reg |= PORT_CONTROL_2_JUMBO_10240;

2525
	if (mv88e6xxx_6095_family(chip) || mv88e6xxx_6185_family(chip)) {
2526 2527 2528 2529 2530 2531 2532 2533 2534
		/* 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;
	}

2535
	reg |= PORT_CONTROL_2_8021Q_DISABLED;
2536

2537
	if (reg) {
2538 2539 2540
		err = mv88e6xxx_port_write(chip, port, PORT_CONTROL_2, reg);
		if (err)
			return err;
2541 2542 2543 2544 2545 2546 2547
	}

	/* 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.
	 */
2548
	reg = 1 << port;
2549 2550
	/* Disable learning for CPU port */
	if (dsa_is_cpu_port(ds, port))
2551
		reg = 0;
2552

2553 2554 2555
	err = mv88e6xxx_port_write(chip, port, PORT_ASSOC_VECTOR, reg);
	if (err)
		return err;
2556 2557

	/* Egress rate control 2: disable egress rate control. */
2558 2559 2560
	err = mv88e6xxx_port_write(chip, port, PORT_RATE_CONTROL_2, 0x0000);
	if (err)
		return err;
2561

2562 2563 2564
	if (mv88e6xxx_6352_family(chip) || mv88e6xxx_6351_family(chip) ||
	    mv88e6xxx_6165_family(chip) || mv88e6xxx_6097_family(chip) ||
	    mv88e6xxx_6320_family(chip)) {
2565 2566 2567 2568
		/* 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.
		 */
2569 2570 2571
		err = mv88e6xxx_port_write(chip, port, PORT_PAUSE_CTRL, 0x0000);
		if (err)
			return err;
2572 2573 2574 2575 2576

		/* Port ATU control: disable limiting the number of
		 * address database entries that this port is allowed
		 * to use.
		 */
2577 2578
		err = mv88e6xxx_port_write(chip, port, PORT_ATU_CONTROL,
					   0x0000);
2579 2580 2581
		/* Priority Override: disable DA, SA and VTU priority
		 * override.
		 */
2582 2583 2584 2585
		err = mv88e6xxx_port_write(chip, port, PORT_PRI_OVERRIDE,
					   0x0000);
		if (err)
			return err;
2586 2587 2588 2589

		/* Port Ethertype: use the Ethertype DSA Ethertype
		 * value.
		 */
2590
		if (mv88e6xxx_has(chip, MV88E6XXX_FLAG_EDSA)) {
2591 2592 2593 2594
			err = mv88e6xxx_port_write(chip, port, PORT_ETH_TYPE,
						   ETH_P_EDSA);
			if (err)
				return err;
2595 2596
		}

2597 2598 2599
		/* Tag Remap: use an identity 802.1p prio -> switch
		 * prio mapping.
		 */
2600 2601 2602 2603
		err = mv88e6xxx_port_write(chip, port, PORT_TAG_REGMAP_0123,
					   0x3210);
		if (err)
			return err;
2604 2605 2606 2607

		/* Tag Remap 2: use an identity 802.1p prio -> switch
		 * prio mapping.
		 */
2608 2609 2610 2611
		err = mv88e6xxx_port_write(chip, port, PORT_TAG_REGMAP_4567,
					   0x7654);
		if (err)
			return err;
2612 2613
	}

2614
	/* Rate Control: disable ingress rate limiting. */
2615 2616 2617
	if (mv88e6xxx_6352_family(chip) || mv88e6xxx_6351_family(chip) ||
	    mv88e6xxx_6165_family(chip) || mv88e6xxx_6097_family(chip) ||
	    mv88e6xxx_6320_family(chip)) {
2618 2619 2620 2621
		err = mv88e6xxx_port_write(chip, port, PORT_RATE_CONTROL,
					   0x0001);
		if (err)
			return err;
2622
	} else if (mv88e6xxx_6185_family(chip) || mv88e6xxx_6095_family(chip)) {
2623 2624 2625 2626
		err = mv88e6xxx_port_write(chip, port, PORT_RATE_CONTROL,
					   0x0000);
		if (err)
			return err;
2627 2628
	}

2629 2630
	/* Port Control 1: disable trunking, disable sending
	 * learning messages to this port.
2631
	 */
2632 2633 2634
	err = mv88e6xxx_port_write(chip, port, PORT_CONTROL_1, 0x0000);
	if (err)
		return err;
2635

2636
	/* Port based VLAN map: give each port the same default address
2637 2638
	 * database, and allow bidirectional communication between the
	 * CPU and DSA port(s), and the other ports.
2639
	 */
2640
	err = mv88e6xxx_port_set_fid(chip, port, 0);
2641 2642
	if (err)
		return err;
2643

2644 2645 2646
	err = _mv88e6xxx_port_based_vlan_map(chip, port);
	if (err)
		return err;
2647 2648 2649 2650

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

2654
static int mv88e6xxx_g1_set_switch_mac(struct mv88e6xxx_chip *chip, u8 *addr)
2655 2656 2657
{
	int err;

2658
	err = mv88e6xxx_g1_write(chip, GLOBAL_MAC_01, (addr[0] << 8) | addr[1]);
2659 2660 2661
	if (err)
		return err;

2662
	err = mv88e6xxx_g1_write(chip, GLOBAL_MAC_23, (addr[2] << 8) | addr[3]);
2663 2664 2665
	if (err)
		return err;

2666 2667 2668 2669 2670
	err = mv88e6xxx_g1_write(chip, GLOBAL_MAC_45, (addr[4] << 8) | addr[5]);
	if (err)
		return err;

	return 0;
2671 2672
}

2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688
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;

2689
	err = mv88e6xxx_g1_read(chip, GLOBAL_ATU_CONTROL, &val);
2690 2691 2692 2693 2694 2695 2696
	if (err)
		return err;

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

2697
	return mv88e6xxx_g1_write(chip, GLOBAL_ATU_CONTROL, val);
2698 2699
}

2700 2701 2702
static int mv88e6xxx_set_ageing_time(struct dsa_switch *ds,
				     unsigned int ageing_time)
{
V
Vivien Didelot 已提交
2703
	struct mv88e6xxx_chip *chip = ds->priv;
2704 2705 2706 2707 2708 2709 2710 2711 2712
	int err;

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

	return err;
}

2713
static int mv88e6xxx_g1_setup(struct mv88e6xxx_chip *chip)
2714
{
2715
	struct dsa_switch *ds = chip->ds;
2716
	u32 upstream_port = dsa_upstream_port(ds);
2717
	u16 reg;
2718
	int err;
2719

2720 2721 2722
	/* Enable the PHY Polling Unit if present, don't discard any packets,
	 * and mask all interrupt sources.
	 */
2723 2724 2725 2726 2727
	err = mv88e6xxx_g1_read(chip, GLOBAL_CONTROL, &reg);
	if (err < 0)
		return err;

	reg &= ~GLOBAL_CONTROL_PPU_ENABLE;
2728 2729
	if (mv88e6xxx_has(chip, MV88E6XXX_FLAG_PPU) ||
	    mv88e6xxx_has(chip, MV88E6XXX_FLAG_PPU_ACTIVE))
2730 2731
		reg |= GLOBAL_CONTROL_PPU_ENABLE;

2732
	err = mv88e6xxx_g1_write(chip, GLOBAL_CONTROL, reg);
2733 2734 2735
	if (err)
		return err;

2736 2737 2738 2739 2740 2741
	/* 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;
2742
	err = mv88e6xxx_g1_write(chip, GLOBAL_MONITOR_CONTROL, reg);
2743 2744 2745
	if (err)
		return err;

2746
	/* Disable remote management, and set the switch's DSA device number. */
2747 2748 2749
	err = mv88e6xxx_g1_write(chip, GLOBAL_CONTROL_2,
				 GLOBAL_CONTROL_2_MULTIPLE_CASCADE |
				 (ds->index & 0x1f));
2750 2751 2752
	if (err)
		return err;

2753 2754 2755 2756 2757
	/* Clear all the VTU and STU entries */
	err = _mv88e6xxx_vtu_stu_flush(chip);
	if (err < 0)
		return err;

2758 2759 2760 2761
	/* Set the default address aging time to 5 minutes, and
	 * enable address learn messages to be sent to all message
	 * ports.
	 */
2762 2763
	err = mv88e6xxx_g1_write(chip, GLOBAL_ATU_CONTROL,
				 GLOBAL_ATU_CONTROL_LEARN2ALL);
2764
	if (err)
2765
		return err;
2766

2767 2768
	err = mv88e6xxx_g1_set_age_time(chip, 300000);
	if (err)
2769 2770 2771 2772 2773 2774 2775
		return err;

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

2776
	/* Configure the IP ToS mapping registers. */
2777
	err = mv88e6xxx_g1_write(chip, GLOBAL_IP_PRI_0, 0x0000);
2778
	if (err)
2779
		return err;
2780
	err = mv88e6xxx_g1_write(chip, GLOBAL_IP_PRI_1, 0x0000);
2781
	if (err)
2782
		return err;
2783
	err = mv88e6xxx_g1_write(chip, GLOBAL_IP_PRI_2, 0x5555);
2784
	if (err)
2785
		return err;
2786
	err = mv88e6xxx_g1_write(chip, GLOBAL_IP_PRI_3, 0x5555);
2787
	if (err)
2788
		return err;
2789
	err = mv88e6xxx_g1_write(chip, GLOBAL_IP_PRI_4, 0xaaaa);
2790
	if (err)
2791
		return err;
2792
	err = mv88e6xxx_g1_write(chip, GLOBAL_IP_PRI_5, 0xaaaa);
2793
	if (err)
2794
		return err;
2795
	err = mv88e6xxx_g1_write(chip, GLOBAL_IP_PRI_6, 0xffff);
2796
	if (err)
2797
		return err;
2798
	err = mv88e6xxx_g1_write(chip, GLOBAL_IP_PRI_7, 0xffff);
2799
	if (err)
2800
		return err;
2801 2802

	/* Configure the IEEE 802.1p priority mapping register. */
2803
	err = mv88e6xxx_g1_write(chip, GLOBAL_IEEE_PRI, 0xfa41);
2804
	if (err)
2805
		return err;
2806

2807
	/* Clear the statistics counters for all ports */
2808 2809
	err = mv88e6xxx_g1_write(chip, GLOBAL_STATS_OP,
				 GLOBAL_STATS_OP_FLUSH_ALL);
2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820
	if (err)
		return err;

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

	return 0;
}

2821
static int mv88e6xxx_setup(struct dsa_switch *ds)
2822
{
V
Vivien Didelot 已提交
2823
	struct mv88e6xxx_chip *chip = ds->priv;
2824
	int err;
2825 2826
	int i;

2827 2828
	chip->ds = ds;
	ds->slave_mii_bus = chip->mdio_bus;
2829

2830
	mutex_lock(&chip->reg_lock);
2831

2832
	/* Setup Switch Port Registers */
2833
	for (i = 0; i < mv88e6xxx_num_ports(chip); i++) {
2834 2835 2836 2837 2838 2839 2840
		err = mv88e6xxx_setup_port(chip, i);
		if (err)
			goto unlock;
	}

	/* Setup Switch Global 1 Registers */
	err = mv88e6xxx_g1_setup(chip);
2841 2842 2843
	if (err)
		goto unlock;

2844 2845 2846
	/* Setup Switch Global 2 Registers */
	if (mv88e6xxx_has(chip, MV88E6XXX_FLAG_GLOBAL2)) {
		err = mv88e6xxx_g2_setup(chip);
2847 2848 2849
		if (err)
			goto unlock;
	}
2850

2851
unlock:
2852
	mutex_unlock(&chip->reg_lock);
2853

2854
	return err;
2855 2856
}

2857 2858
static int mv88e6xxx_set_addr(struct dsa_switch *ds, u8 *addr)
{
V
Vivien Didelot 已提交
2859
	struct mv88e6xxx_chip *chip = ds->priv;
2860 2861
	int err;

2862 2863
	if (!chip->info->ops->set_switch_mac)
		return -EOPNOTSUPP;
2864

2865 2866
	mutex_lock(&chip->reg_lock);
	err = chip->info->ops->set_switch_mac(chip, addr);
2867 2868 2869 2870 2871
	mutex_unlock(&chip->reg_lock);

	return err;
}

2872
static int mv88e6xxx_mdio_read(struct mii_bus *bus, int phy, int reg)
2873
{
2874
	struct mv88e6xxx_chip *chip = bus->priv;
2875 2876
	u16 val;
	int err;
2877

2878
	if (phy >= mv88e6xxx_num_ports(chip))
2879
		return 0xffff;
2880

2881
	mutex_lock(&chip->reg_lock);
2882
	err = mv88e6xxx_phy_read(chip, phy, reg, &val);
2883
	mutex_unlock(&chip->reg_lock);
2884 2885

	return err ? err : val;
2886 2887
}

2888
static int mv88e6xxx_mdio_write(struct mii_bus *bus, int phy, int reg, u16 val)
2889
{
2890
	struct mv88e6xxx_chip *chip = bus->priv;
2891
	int err;
2892

2893
	if (phy >= mv88e6xxx_num_ports(chip))
2894
		return 0xffff;
2895

2896
	mutex_lock(&chip->reg_lock);
2897
	err = mv88e6xxx_phy_write(chip, phy, reg, val);
2898
	mutex_unlock(&chip->reg_lock);
2899 2900

	return err;
2901 2902
}

2903
static int mv88e6xxx_mdio_register(struct mv88e6xxx_chip *chip,
2904 2905 2906 2907 2908 2909 2910
				   struct device_node *np)
{
	static int index;
	struct mii_bus *bus;
	int err;

	if (np)
2911
		chip->mdio_np = of_get_child_by_name(np, "mdio");
2912

2913
	bus = devm_mdiobus_alloc(chip->dev);
2914 2915 2916
	if (!bus)
		return -ENOMEM;

2917
	bus->priv = (void *)chip;
2918 2919 2920 2921 2922 2923 2924 2925 2926 2927
	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;
2928
	bus->parent = chip->dev;
2929

2930 2931
	if (chip->mdio_np)
		err = of_mdiobus_register(bus, chip->mdio_np);
2932 2933 2934
	else
		err = mdiobus_register(bus);
	if (err) {
2935
		dev_err(chip->dev, "Cannot register MDIO bus (%d)\n", err);
2936 2937
		goto out;
	}
2938
	chip->mdio_bus = bus;
2939 2940 2941 2942

	return 0;

out:
2943 2944
	if (chip->mdio_np)
		of_node_put(chip->mdio_np);
2945 2946 2947 2948

	return err;
}

2949
static void mv88e6xxx_mdio_unregister(struct mv88e6xxx_chip *chip)
2950 2951

{
2952
	struct mii_bus *bus = chip->mdio_bus;
2953 2954 2955

	mdiobus_unregister(bus);

2956 2957
	if (chip->mdio_np)
		of_node_put(chip->mdio_np);
2958 2959
}

2960 2961 2962 2963
#ifdef CONFIG_NET_DSA_HWMON

static int mv88e61xx_get_temp(struct dsa_switch *ds, int *temp)
{
V
Vivien Didelot 已提交
2964
	struct mv88e6xxx_chip *chip = ds->priv;
2965
	u16 val;
2966 2967 2968 2969
	int ret;

	*temp = 0;

2970
	mutex_lock(&chip->reg_lock);
2971

2972
	ret = mv88e6xxx_phy_write(chip, 0x0, 0x16, 0x6);
2973 2974 2975 2976
	if (ret < 0)
		goto error;

	/* Enable temperature sensor */
2977
	ret = mv88e6xxx_phy_read(chip, 0x0, 0x1a, &val);
2978 2979 2980
	if (ret < 0)
		goto error;

2981
	ret = mv88e6xxx_phy_write(chip, 0x0, 0x1a, val | (1 << 5));
2982 2983 2984 2985 2986 2987
	if (ret < 0)
		goto error;

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

2988 2989
	ret = mv88e6xxx_phy_read(chip, 0x0, 0x1a, &val);
	if (ret < 0)
2990 2991 2992
		goto error;

	/* Disable temperature sensor */
2993
	ret = mv88e6xxx_phy_write(chip, 0x0, 0x1a, val & ~(1 << 5));
2994 2995 2996 2997 2998 2999
	if (ret < 0)
		goto error;

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

error:
3000
	mv88e6xxx_phy_write(chip, 0x0, 0x16, 0x0);
3001
	mutex_unlock(&chip->reg_lock);
3002 3003 3004 3005 3006
	return ret;
}

static int mv88e63xx_get_temp(struct dsa_switch *ds, int *temp)
{
V
Vivien Didelot 已提交
3007
	struct mv88e6xxx_chip *chip = ds->priv;
3008
	int phy = mv88e6xxx_6320_family(chip) ? 3 : 0;
3009
	u16 val;
3010 3011 3012 3013
	int ret;

	*temp = 0;

3014 3015 3016
	mutex_lock(&chip->reg_lock);
	ret = mv88e6xxx_phy_page_read(chip, phy, 6, 27, &val);
	mutex_unlock(&chip->reg_lock);
3017 3018 3019
	if (ret < 0)
		return ret;

3020
	*temp = (val & 0xff) - 25;
3021 3022 3023 3024

	return 0;
}

3025
static int mv88e6xxx_get_temp(struct dsa_switch *ds, int *temp)
3026
{
V
Vivien Didelot 已提交
3027
	struct mv88e6xxx_chip *chip = ds->priv;
3028

3029
	if (!mv88e6xxx_has(chip, MV88E6XXX_FLAG_TEMP))
3030 3031
		return -EOPNOTSUPP;

3032
	if (mv88e6xxx_6320_family(chip) || mv88e6xxx_6352_family(chip))
3033 3034 3035 3036 3037
		return mv88e63xx_get_temp(ds, temp);

	return mv88e61xx_get_temp(ds, temp);
}

3038
static int mv88e6xxx_get_temp_limit(struct dsa_switch *ds, int *temp)
3039
{
V
Vivien Didelot 已提交
3040
	struct mv88e6xxx_chip *chip = ds->priv;
3041
	int phy = mv88e6xxx_6320_family(chip) ? 3 : 0;
3042
	u16 val;
3043 3044
	int ret;

3045
	if (!mv88e6xxx_has(chip, MV88E6XXX_FLAG_TEMP_LIMIT))
3046 3047 3048 3049
		return -EOPNOTSUPP;

	*temp = 0;

3050 3051 3052
	mutex_lock(&chip->reg_lock);
	ret = mv88e6xxx_phy_page_read(chip, phy, 6, 26, &val);
	mutex_unlock(&chip->reg_lock);
3053 3054 3055
	if (ret < 0)
		return ret;

3056
	*temp = (((val >> 8) & 0x1f) * 5) - 25;
3057 3058 3059 3060

	return 0;
}

3061
static int mv88e6xxx_set_temp_limit(struct dsa_switch *ds, int temp)
3062
{
V
Vivien Didelot 已提交
3063
	struct mv88e6xxx_chip *chip = ds->priv;
3064
	int phy = mv88e6xxx_6320_family(chip) ? 3 : 0;
3065 3066
	u16 val;
	int err;
3067

3068
	if (!mv88e6xxx_has(chip, MV88E6XXX_FLAG_TEMP_LIMIT))
3069 3070
		return -EOPNOTSUPP;

3071 3072 3073 3074
	mutex_lock(&chip->reg_lock);
	err = mv88e6xxx_phy_page_read(chip, phy, 6, 26, &val);
	if (err)
		goto unlock;
3075
	temp = clamp_val(DIV_ROUND_CLOSEST(temp, 5) + 5, 0, 0x1f);
3076 3077 3078 3079 3080 3081
	err = mv88e6xxx_phy_page_write(chip, phy, 6, 26,
				       (val & 0xe0ff) | (temp << 8));
unlock:
	mutex_unlock(&chip->reg_lock);

	return err;
3082 3083
}

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

3091
	if (!mv88e6xxx_has(chip, MV88E6XXX_FLAG_TEMP_LIMIT))
3092 3093 3094 3095
		return -EOPNOTSUPP;

	*alarm = false;

3096 3097 3098
	mutex_lock(&chip->reg_lock);
	ret = mv88e6xxx_phy_page_read(chip, phy, 6, 26, &val);
	mutex_unlock(&chip->reg_lock);
3099 3100 3101
	if (ret < 0)
		return ret;

3102
	*alarm = !!(val & 0x40);
3103 3104 3105 3106 3107

	return 0;
}
#endif /* CONFIG_NET_DSA_HWMON */

3108 3109
static int mv88e6xxx_get_eeprom_len(struct dsa_switch *ds)
{
V
Vivien Didelot 已提交
3110
	struct mv88e6xxx_chip *chip = ds->priv;
3111 3112 3113 3114 3115 3116 3117

	return chip->eeprom_len;
}

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

3121 3122
	if (!chip->info->ops->get_eeprom)
		return -EOPNOTSUPP;
3123

3124 3125
	mutex_lock(&chip->reg_lock);
	err = chip->info->ops->get_eeprom(chip, eeprom, data);
3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138
	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 已提交
3139
	struct mv88e6xxx_chip *chip = ds->priv;
3140 3141
	int err;

3142 3143 3144
	if (!chip->info->ops->set_eeprom)
		return -EOPNOTSUPP;

3145 3146 3147 3148
	if (eeprom->magic != 0xc3ec4951)
		return -EINVAL;

	mutex_lock(&chip->reg_lock);
3149
	err = chip->info->ops->set_eeprom(chip, eeprom, data);
3150 3151 3152 3153 3154
	mutex_unlock(&chip->reg_lock);

	return err;
}

3155
static const struct mv88e6xxx_ops mv88e6085_ops = {
3156
	.set_switch_mac = mv88e6xxx_g1_set_switch_mac,
3157 3158
	.phy_read = mv88e6xxx_phy_ppu_read,
	.phy_write = mv88e6xxx_phy_ppu_write,
3159
	.port_set_link = mv88e6xxx_port_set_link,
3160
	.port_set_duplex = mv88e6xxx_port_set_duplex,
3161
	.port_set_speed = mv88e6185_port_set_speed,
3162 3163 3164
};

static const struct mv88e6xxx_ops mv88e6095_ops = {
3165
	.set_switch_mac = mv88e6xxx_g1_set_switch_mac,
3166 3167
	.phy_read = mv88e6xxx_phy_ppu_read,
	.phy_write = mv88e6xxx_phy_ppu_write,
3168
	.port_set_link = mv88e6xxx_port_set_link,
3169
	.port_set_duplex = mv88e6xxx_port_set_duplex,
3170
	.port_set_speed = mv88e6185_port_set_speed,
3171 3172 3173
};

static const struct mv88e6xxx_ops mv88e6123_ops = {
3174
	.set_switch_mac = mv88e6xxx_g2_set_switch_mac,
3175 3176
	.phy_read = mv88e6xxx_read,
	.phy_write = mv88e6xxx_write,
3177
	.port_set_link = mv88e6xxx_port_set_link,
3178
	.port_set_duplex = mv88e6xxx_port_set_duplex,
3179
	.port_set_speed = mv88e6185_port_set_speed,
3180 3181 3182
};

static const struct mv88e6xxx_ops mv88e6131_ops = {
3183
	.set_switch_mac = mv88e6xxx_g1_set_switch_mac,
3184 3185
	.phy_read = mv88e6xxx_phy_ppu_read,
	.phy_write = mv88e6xxx_phy_ppu_write,
3186
	.port_set_link = mv88e6xxx_port_set_link,
3187
	.port_set_duplex = mv88e6xxx_port_set_duplex,
3188
	.port_set_speed = mv88e6185_port_set_speed,
3189 3190 3191
};

static const struct mv88e6xxx_ops mv88e6161_ops = {
3192
	.set_switch_mac = mv88e6xxx_g2_set_switch_mac,
3193 3194
	.phy_read = mv88e6xxx_read,
	.phy_write = mv88e6xxx_write,
3195
	.port_set_link = mv88e6xxx_port_set_link,
3196
	.port_set_duplex = mv88e6xxx_port_set_duplex,
3197
	.port_set_speed = mv88e6185_port_set_speed,
3198 3199 3200
};

static const struct mv88e6xxx_ops mv88e6165_ops = {
3201
	.set_switch_mac = mv88e6xxx_g2_set_switch_mac,
3202 3203
	.phy_read = mv88e6xxx_read,
	.phy_write = mv88e6xxx_write,
3204
	.port_set_link = mv88e6xxx_port_set_link,
3205
	.port_set_duplex = mv88e6xxx_port_set_duplex,
3206
	.port_set_speed = mv88e6185_port_set_speed,
3207 3208 3209
};

static const struct mv88e6xxx_ops mv88e6171_ops = {
3210
	.set_switch_mac = mv88e6xxx_g2_set_switch_mac,
3211 3212
	.phy_read = mv88e6xxx_g2_smi_phy_read,
	.phy_write = mv88e6xxx_g2_smi_phy_write,
3213
	.port_set_link = mv88e6xxx_port_set_link,
3214
	.port_set_duplex = mv88e6xxx_port_set_duplex,
3215
	.port_set_rgmii_delay = mv88e6352_port_set_rgmii_delay,
3216
	.port_set_speed = mv88e6185_port_set_speed,
3217 3218 3219
};

static const struct mv88e6xxx_ops mv88e6172_ops = {
3220 3221
	.get_eeprom = mv88e6xxx_g2_get_eeprom16,
	.set_eeprom = mv88e6xxx_g2_set_eeprom16,
3222
	.set_switch_mac = mv88e6xxx_g2_set_switch_mac,
3223 3224
	.phy_read = mv88e6xxx_g2_smi_phy_read,
	.phy_write = mv88e6xxx_g2_smi_phy_write,
3225
	.port_set_link = mv88e6xxx_port_set_link,
3226
	.port_set_duplex = mv88e6xxx_port_set_duplex,
3227
	.port_set_rgmii_delay = mv88e6352_port_set_rgmii_delay,
3228
	.port_set_speed = mv88e6352_port_set_speed,
3229 3230 3231
};

static const struct mv88e6xxx_ops mv88e6175_ops = {
3232
	.set_switch_mac = mv88e6xxx_g2_set_switch_mac,
3233 3234
	.phy_read = mv88e6xxx_g2_smi_phy_read,
	.phy_write = mv88e6xxx_g2_smi_phy_write,
3235
	.port_set_link = mv88e6xxx_port_set_link,
3236
	.port_set_duplex = mv88e6xxx_port_set_duplex,
3237
	.port_set_rgmii_delay = mv88e6352_port_set_rgmii_delay,
3238
	.port_set_speed = mv88e6185_port_set_speed,
3239 3240 3241
};

static const struct mv88e6xxx_ops mv88e6176_ops = {
3242 3243
	.get_eeprom = mv88e6xxx_g2_get_eeprom16,
	.set_eeprom = mv88e6xxx_g2_set_eeprom16,
3244
	.set_switch_mac = mv88e6xxx_g2_set_switch_mac,
3245 3246
	.phy_read = mv88e6xxx_g2_smi_phy_read,
	.phy_write = mv88e6xxx_g2_smi_phy_write,
3247
	.port_set_link = mv88e6xxx_port_set_link,
3248
	.port_set_duplex = mv88e6xxx_port_set_duplex,
3249
	.port_set_rgmii_delay = mv88e6352_port_set_rgmii_delay,
3250
	.port_set_speed = mv88e6352_port_set_speed,
3251 3252 3253
};

static const struct mv88e6xxx_ops mv88e6185_ops = {
3254
	.set_switch_mac = mv88e6xxx_g1_set_switch_mac,
3255 3256
	.phy_read = mv88e6xxx_phy_ppu_read,
	.phy_write = mv88e6xxx_phy_ppu_write,
3257
	.port_set_link = mv88e6xxx_port_set_link,
3258
	.port_set_duplex = mv88e6xxx_port_set_duplex,
3259
	.port_set_speed = mv88e6185_port_set_speed,
3260 3261 3262
};

static const struct mv88e6xxx_ops mv88e6240_ops = {
3263 3264
	.get_eeprom = mv88e6xxx_g2_get_eeprom16,
	.set_eeprom = mv88e6xxx_g2_set_eeprom16,
3265
	.set_switch_mac = mv88e6xxx_g2_set_switch_mac,
3266 3267
	.phy_read = mv88e6xxx_g2_smi_phy_read,
	.phy_write = mv88e6xxx_g2_smi_phy_write,
3268
	.port_set_link = mv88e6xxx_port_set_link,
3269
	.port_set_duplex = mv88e6xxx_port_set_duplex,
3270
	.port_set_rgmii_delay = mv88e6352_port_set_rgmii_delay,
3271
	.port_set_speed = mv88e6352_port_set_speed,
3272 3273 3274
};

static const struct mv88e6xxx_ops mv88e6320_ops = {
3275 3276
	.get_eeprom = mv88e6xxx_g2_get_eeprom16,
	.set_eeprom = mv88e6xxx_g2_set_eeprom16,
3277
	.set_switch_mac = mv88e6xxx_g2_set_switch_mac,
3278 3279
	.phy_read = mv88e6xxx_g2_smi_phy_read,
	.phy_write = mv88e6xxx_g2_smi_phy_write,
3280
	.port_set_link = mv88e6xxx_port_set_link,
3281
	.port_set_duplex = mv88e6xxx_port_set_duplex,
3282
	.port_set_speed = mv88e6185_port_set_speed,
3283 3284 3285
};

static const struct mv88e6xxx_ops mv88e6321_ops = {
3286 3287
	.get_eeprom = mv88e6xxx_g2_get_eeprom16,
	.set_eeprom = mv88e6xxx_g2_set_eeprom16,
3288
	.set_switch_mac = mv88e6xxx_g2_set_switch_mac,
3289 3290
	.phy_read = mv88e6xxx_g2_smi_phy_read,
	.phy_write = mv88e6xxx_g2_smi_phy_write,
3291
	.port_set_link = mv88e6xxx_port_set_link,
3292
	.port_set_duplex = mv88e6xxx_port_set_duplex,
3293
	.port_set_speed = mv88e6185_port_set_speed,
3294 3295 3296
};

static const struct mv88e6xxx_ops mv88e6350_ops = {
3297
	.set_switch_mac = mv88e6xxx_g2_set_switch_mac,
3298 3299
	.phy_read = mv88e6xxx_g2_smi_phy_read,
	.phy_write = mv88e6xxx_g2_smi_phy_write,
3300
	.port_set_link = mv88e6xxx_port_set_link,
3301
	.port_set_duplex = mv88e6xxx_port_set_duplex,
3302
	.port_set_rgmii_delay = mv88e6352_port_set_rgmii_delay,
3303
	.port_set_speed = mv88e6185_port_set_speed,
3304 3305 3306
};

static const struct mv88e6xxx_ops mv88e6351_ops = {
3307
	.set_switch_mac = mv88e6xxx_g2_set_switch_mac,
3308 3309
	.phy_read = mv88e6xxx_g2_smi_phy_read,
	.phy_write = mv88e6xxx_g2_smi_phy_write,
3310
	.port_set_link = mv88e6xxx_port_set_link,
3311
	.port_set_duplex = mv88e6xxx_port_set_duplex,
3312
	.port_set_rgmii_delay = mv88e6352_port_set_rgmii_delay,
3313
	.port_set_speed = mv88e6185_port_set_speed,
3314 3315 3316
};

static const struct mv88e6xxx_ops mv88e6352_ops = {
3317 3318
	.get_eeprom = mv88e6xxx_g2_get_eeprom16,
	.set_eeprom = mv88e6xxx_g2_set_eeprom16,
3319
	.set_switch_mac = mv88e6xxx_g2_set_switch_mac,
3320 3321
	.phy_read = mv88e6xxx_g2_smi_phy_read,
	.phy_write = mv88e6xxx_g2_smi_phy_write,
3322
	.port_set_link = mv88e6xxx_port_set_link,
3323
	.port_set_duplex = mv88e6xxx_port_set_duplex,
3324
	.port_set_rgmii_delay = mv88e6352_port_set_rgmii_delay,
3325
	.port_set_speed = mv88e6352_port_set_speed,
3326 3327
};

3328 3329 3330 3331 3332 3333 3334
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,
3335
		.port_base_addr = 0x10,
3336
		.global1_addr = 0x1b,
3337
		.age_time_coeff = 15000,
3338
		.g1_irqs = 8,
3339
		.flags = MV88E6XXX_FLAGS_FAMILY_6097,
3340
		.ops = &mv88e6085_ops,
3341 3342 3343 3344 3345 3346 3347 3348
	},

	[MV88E6095] = {
		.prod_num = PORT_SWITCH_ID_PROD_NUM_6095,
		.family = MV88E6XXX_FAMILY_6095,
		.name = "Marvell 88E6095/88E6095F",
		.num_databases = 256,
		.num_ports = 11,
3349
		.port_base_addr = 0x10,
3350
		.global1_addr = 0x1b,
3351
		.age_time_coeff = 15000,
3352
		.g1_irqs = 8,
3353
		.flags = MV88E6XXX_FLAGS_FAMILY_6095,
3354
		.ops = &mv88e6095_ops,
3355 3356 3357 3358 3359 3360 3361 3362
	},

	[MV88E6123] = {
		.prod_num = PORT_SWITCH_ID_PROD_NUM_6123,
		.family = MV88E6XXX_FAMILY_6165,
		.name = "Marvell 88E6123",
		.num_databases = 4096,
		.num_ports = 3,
3363
		.port_base_addr = 0x10,
3364
		.global1_addr = 0x1b,
3365
		.age_time_coeff = 15000,
3366
		.g1_irqs = 9,
3367
		.flags = MV88E6XXX_FLAGS_FAMILY_6165,
3368
		.ops = &mv88e6123_ops,
3369 3370 3371 3372 3373 3374 3375 3376
	},

	[MV88E6131] = {
		.prod_num = PORT_SWITCH_ID_PROD_NUM_6131,
		.family = MV88E6XXX_FAMILY_6185,
		.name = "Marvell 88E6131",
		.num_databases = 256,
		.num_ports = 8,
3377
		.port_base_addr = 0x10,
3378
		.global1_addr = 0x1b,
3379
		.age_time_coeff = 15000,
3380
		.g1_irqs = 9,
3381
		.flags = MV88E6XXX_FLAGS_FAMILY_6185,
3382
		.ops = &mv88e6131_ops,
3383 3384 3385 3386 3387 3388 3389 3390
	},

	[MV88E6161] = {
		.prod_num = PORT_SWITCH_ID_PROD_NUM_6161,
		.family = MV88E6XXX_FAMILY_6165,
		.name = "Marvell 88E6161",
		.num_databases = 4096,
		.num_ports = 6,
3391
		.port_base_addr = 0x10,
3392
		.global1_addr = 0x1b,
3393
		.age_time_coeff = 15000,
3394
		.g1_irqs = 9,
3395
		.flags = MV88E6XXX_FLAGS_FAMILY_6165,
3396
		.ops = &mv88e6161_ops,
3397 3398 3399 3400 3401 3402 3403 3404
	},

	[MV88E6165] = {
		.prod_num = PORT_SWITCH_ID_PROD_NUM_6165,
		.family = MV88E6XXX_FAMILY_6165,
		.name = "Marvell 88E6165",
		.num_databases = 4096,
		.num_ports = 6,
3405
		.port_base_addr = 0x10,
3406
		.global1_addr = 0x1b,
3407
		.age_time_coeff = 15000,
3408
		.g1_irqs = 9,
3409
		.flags = MV88E6XXX_FLAGS_FAMILY_6165,
3410
		.ops = &mv88e6165_ops,
3411 3412 3413 3414 3415 3416 3417 3418
	},

	[MV88E6171] = {
		.prod_num = PORT_SWITCH_ID_PROD_NUM_6171,
		.family = MV88E6XXX_FAMILY_6351,
		.name = "Marvell 88E6171",
		.num_databases = 4096,
		.num_ports = 7,
3419
		.port_base_addr = 0x10,
3420
		.global1_addr = 0x1b,
3421
		.age_time_coeff = 15000,
3422
		.g1_irqs = 9,
3423
		.flags = MV88E6XXX_FLAGS_FAMILY_6351,
3424
		.ops = &mv88e6171_ops,
3425 3426 3427 3428 3429 3430 3431 3432
	},

	[MV88E6172] = {
		.prod_num = PORT_SWITCH_ID_PROD_NUM_6172,
		.family = MV88E6XXX_FAMILY_6352,
		.name = "Marvell 88E6172",
		.num_databases = 4096,
		.num_ports = 7,
3433
		.port_base_addr = 0x10,
3434
		.global1_addr = 0x1b,
3435
		.age_time_coeff = 15000,
3436
		.g1_irqs = 9,
3437
		.flags = MV88E6XXX_FLAGS_FAMILY_6352,
3438
		.ops = &mv88e6172_ops,
3439 3440 3441 3442 3443 3444 3445 3446
	},

	[MV88E6175] = {
		.prod_num = PORT_SWITCH_ID_PROD_NUM_6175,
		.family = MV88E6XXX_FAMILY_6351,
		.name = "Marvell 88E6175",
		.num_databases = 4096,
		.num_ports = 7,
3447
		.port_base_addr = 0x10,
3448
		.global1_addr = 0x1b,
3449
		.age_time_coeff = 15000,
3450
		.g1_irqs = 9,
3451
		.flags = MV88E6XXX_FLAGS_FAMILY_6351,
3452
		.ops = &mv88e6175_ops,
3453 3454 3455 3456 3457 3458 3459 3460
	},

	[MV88E6176] = {
		.prod_num = PORT_SWITCH_ID_PROD_NUM_6176,
		.family = MV88E6XXX_FAMILY_6352,
		.name = "Marvell 88E6176",
		.num_databases = 4096,
		.num_ports = 7,
3461
		.port_base_addr = 0x10,
3462
		.global1_addr = 0x1b,
3463
		.age_time_coeff = 15000,
3464
		.g1_irqs = 9,
3465
		.flags = MV88E6XXX_FLAGS_FAMILY_6352,
3466
		.ops = &mv88e6176_ops,
3467 3468 3469 3470 3471 3472 3473 3474
	},

	[MV88E6185] = {
		.prod_num = PORT_SWITCH_ID_PROD_NUM_6185,
		.family = MV88E6XXX_FAMILY_6185,
		.name = "Marvell 88E6185",
		.num_databases = 256,
		.num_ports = 10,
3475
		.port_base_addr = 0x10,
3476
		.global1_addr = 0x1b,
3477
		.age_time_coeff = 15000,
3478
		.g1_irqs = 8,
3479
		.flags = MV88E6XXX_FLAGS_FAMILY_6185,
3480
		.ops = &mv88e6185_ops,
3481 3482 3483 3484 3485 3486 3487 3488
	},

	[MV88E6240] = {
		.prod_num = PORT_SWITCH_ID_PROD_NUM_6240,
		.family = MV88E6XXX_FAMILY_6352,
		.name = "Marvell 88E6240",
		.num_databases = 4096,
		.num_ports = 7,
3489
		.port_base_addr = 0x10,
3490
		.global1_addr = 0x1b,
3491
		.age_time_coeff = 15000,
3492
		.g1_irqs = 9,
3493
		.flags = MV88E6XXX_FLAGS_FAMILY_6352,
3494
		.ops = &mv88e6240_ops,
3495 3496 3497 3498 3499 3500 3501 3502
	},

	[MV88E6320] = {
		.prod_num = PORT_SWITCH_ID_PROD_NUM_6320,
		.family = MV88E6XXX_FAMILY_6320,
		.name = "Marvell 88E6320",
		.num_databases = 4096,
		.num_ports = 7,
3503
		.port_base_addr = 0x10,
3504
		.global1_addr = 0x1b,
3505
		.age_time_coeff = 15000,
3506
		.g1_irqs = 8,
3507
		.flags = MV88E6XXX_FLAGS_FAMILY_6320,
3508
		.ops = &mv88e6320_ops,
3509 3510 3511 3512 3513 3514 3515 3516
	},

	[MV88E6321] = {
		.prod_num = PORT_SWITCH_ID_PROD_NUM_6321,
		.family = MV88E6XXX_FAMILY_6320,
		.name = "Marvell 88E6321",
		.num_databases = 4096,
		.num_ports = 7,
3517
		.port_base_addr = 0x10,
3518
		.global1_addr = 0x1b,
3519
		.age_time_coeff = 15000,
3520
		.g1_irqs = 8,
3521
		.flags = MV88E6XXX_FLAGS_FAMILY_6320,
3522
		.ops = &mv88e6321_ops,
3523 3524 3525 3526 3527 3528 3529 3530
	},

	[MV88E6350] = {
		.prod_num = PORT_SWITCH_ID_PROD_NUM_6350,
		.family = MV88E6XXX_FAMILY_6351,
		.name = "Marvell 88E6350",
		.num_databases = 4096,
		.num_ports = 7,
3531
		.port_base_addr = 0x10,
3532
		.global1_addr = 0x1b,
3533
		.age_time_coeff = 15000,
3534
		.g1_irqs = 9,
3535
		.flags = MV88E6XXX_FLAGS_FAMILY_6351,
3536
		.ops = &mv88e6350_ops,
3537 3538 3539 3540 3541 3542 3543 3544
	},

	[MV88E6351] = {
		.prod_num = PORT_SWITCH_ID_PROD_NUM_6351,
		.family = MV88E6XXX_FAMILY_6351,
		.name = "Marvell 88E6351",
		.num_databases = 4096,
		.num_ports = 7,
3545
		.port_base_addr = 0x10,
3546
		.global1_addr = 0x1b,
3547
		.age_time_coeff = 15000,
3548
		.g1_irqs = 9,
3549
		.flags = MV88E6XXX_FLAGS_FAMILY_6351,
3550
		.ops = &mv88e6351_ops,
3551 3552 3553 3554 3555 3556 3557 3558
	},

	[MV88E6352] = {
		.prod_num = PORT_SWITCH_ID_PROD_NUM_6352,
		.family = MV88E6XXX_FAMILY_6352,
		.name = "Marvell 88E6352",
		.num_databases = 4096,
		.num_ports = 7,
3559
		.port_base_addr = 0x10,
3560
		.global1_addr = 0x1b,
3561
		.age_time_coeff = 15000,
3562
		.g1_irqs = 9,
3563
		.flags = MV88E6XXX_FLAGS_FAMILY_6352,
3564
		.ops = &mv88e6352_ops,
3565 3566 3567
	},
};

3568
static const struct mv88e6xxx_info *mv88e6xxx_lookup_info(unsigned int prod_num)
3569
{
3570
	int i;
3571

3572 3573 3574
	for (i = 0; i < ARRAY_SIZE(mv88e6xxx_table); ++i)
		if (mv88e6xxx_table[i].prod_num == prod_num)
			return &mv88e6xxx_table[i];
3575 3576 3577 3578

	return NULL;
}

3579
static int mv88e6xxx_detect(struct mv88e6xxx_chip *chip)
3580 3581
{
	const struct mv88e6xxx_info *info;
3582 3583 3584
	unsigned int prod_num, rev;
	u16 id;
	int err;
3585

3586 3587 3588 3589 3590
	mutex_lock(&chip->reg_lock);
	err = mv88e6xxx_port_read(chip, 0, PORT_SWITCH_ID, &id);
	mutex_unlock(&chip->reg_lock);
	if (err)
		return err;
3591 3592 3593 3594 3595 3596 3597 3598

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

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

3599
	/* Update the compatible info with the probed one */
3600
	chip->info = info;
3601

3602 3603 3604 3605
	err = mv88e6xxx_g2_require(chip);
	if (err)
		return err;

3606 3607
	dev_info(chip->dev, "switch 0x%x detected: %s, revision %u\n",
		 chip->info->prod_num, chip->info->name, rev);
3608 3609 3610 3611

	return 0;
}

3612
static struct mv88e6xxx_chip *mv88e6xxx_alloc_chip(struct device *dev)
3613
{
3614
	struct mv88e6xxx_chip *chip;
3615

3616 3617
	chip = devm_kzalloc(dev, sizeof(*chip), GFP_KERNEL);
	if (!chip)
3618 3619
		return NULL;

3620
	chip->dev = dev;
3621

3622
	mutex_init(&chip->reg_lock);
3623

3624
	return chip;
3625 3626
}

3627 3628
static void mv88e6xxx_phy_init(struct mv88e6xxx_chip *chip)
{
3629
	if (mv88e6xxx_has(chip, MV88E6XXX_FLAG_PPU))
3630 3631 3632
		mv88e6xxx_ppu_state_init(chip);
}

3633 3634
static void mv88e6xxx_phy_destroy(struct mv88e6xxx_chip *chip)
{
3635
	if (mv88e6xxx_has(chip, MV88E6XXX_FLAG_PPU))
3636 3637 3638
		mv88e6xxx_ppu_state_destroy(chip);
}

3639
static int mv88e6xxx_smi_init(struct mv88e6xxx_chip *chip,
3640 3641 3642 3643 3644 3645
			      struct mii_bus *bus, int sw_addr)
{
	/* ADDR[0] pin is unavailable externally and considered zero */
	if (sw_addr & 0x1)
		return -EINVAL;

3646
	if (sw_addr == 0)
3647
		chip->smi_ops = &mv88e6xxx_smi_single_chip_ops;
3648
	else if (mv88e6xxx_has(chip, MV88E6XXX_FLAGS_MULTI_CHIP))
3649
		chip->smi_ops = &mv88e6xxx_smi_multi_chip_ops;
3650 3651 3652
	else
		return -EINVAL;

3653 3654
	chip->bus = bus;
	chip->sw_addr = sw_addr;
3655 3656 3657 3658

	return 0;
}

3659 3660
static enum dsa_tag_protocol mv88e6xxx_get_tag_protocol(struct dsa_switch *ds)
{
V
Vivien Didelot 已提交
3661
	struct mv88e6xxx_chip *chip = ds->priv;
3662 3663 3664 3665 3666

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

	return DSA_TAG_PROTO_DSA;
3667 3668
}

3669 3670 3671
static const char *mv88e6xxx_drv_probe(struct device *dsa_dev,
				       struct device *host_dev, int sw_addr,
				       void **priv)
3672
{
3673
	struct mv88e6xxx_chip *chip;
3674
	struct mii_bus *bus;
3675
	int err;
3676

3677
	bus = dsa_host_dev_to_mii_bus(host_dev);
3678 3679 3680
	if (!bus)
		return NULL;

3681 3682
	chip = mv88e6xxx_alloc_chip(dsa_dev);
	if (!chip)
3683 3684
		return NULL;

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

3688
	err = mv88e6xxx_smi_init(chip, bus, sw_addr);
3689 3690 3691
	if (err)
		goto free;

3692
	err = mv88e6xxx_detect(chip);
3693
	if (err)
3694
		goto free;
3695

3696 3697 3698 3699 3700 3701
	mutex_lock(&chip->reg_lock);
	err = mv88e6xxx_switch_reset(chip);
	mutex_unlock(&chip->reg_lock);
	if (err)
		goto free;

3702 3703
	mv88e6xxx_phy_init(chip);

3704
	err = mv88e6xxx_mdio_register(chip, NULL);
3705
	if (err)
3706
		goto free;
3707

3708
	*priv = chip;
3709

3710
	return chip->info->name;
3711
free:
3712
	devm_kfree(dsa_dev, chip);
3713 3714

	return NULL;
3715 3716
}

3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731
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 已提交
3732
	struct mv88e6xxx_chip *chip = ds->priv;
3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743

	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 已提交
3744
	struct mv88e6xxx_chip *chip = ds->priv;
3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758
	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 已提交
3759
	struct mv88e6xxx_chip *chip = ds->priv;
3760 3761 3762 3763 3764 3765 3766 3767 3768
	int err;

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

	return err;
}

3769
static struct dsa_switch_ops mv88e6xxx_switch_ops = {
3770
	.probe			= mv88e6xxx_drv_probe,
3771
	.get_tag_protocol	= mv88e6xxx_get_tag_protocol,
3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785
	.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
3786
	.get_eeprom_len		= mv88e6xxx_get_eeprom_len,
3787 3788 3789 3790
	.get_eeprom		= mv88e6xxx_get_eeprom,
	.set_eeprom		= mv88e6xxx_set_eeprom,
	.get_regs_len		= mv88e6xxx_get_regs_len,
	.get_regs		= mv88e6xxx_get_regs,
3791
	.set_ageing_time	= mv88e6xxx_set_ageing_time,
3792 3793 3794
	.port_bridge_join	= mv88e6xxx_port_bridge_join,
	.port_bridge_leave	= mv88e6xxx_port_bridge_leave,
	.port_stp_state_set	= mv88e6xxx_port_stp_state_set,
3795
	.port_fast_age		= mv88e6xxx_port_fast_age,
3796 3797 3798 3799 3800 3801 3802 3803 3804
	.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,
3805 3806 3807 3808
	.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,
3809 3810
};

3811
static int mv88e6xxx_register_switch(struct mv88e6xxx_chip *chip,
3812 3813
				     struct device_node *np)
{
3814
	struct device *dev = chip->dev;
3815 3816 3817 3818 3819 3820 3821
	struct dsa_switch *ds;

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

	ds->dev = dev;
3822
	ds->priv = chip;
3823
	ds->ops = &mv88e6xxx_switch_ops;
3824 3825 3826 3827 3828 3829

	dev_set_drvdata(dev, ds);

	return dsa_register_switch(ds, np);
}

3830
static void mv88e6xxx_unregister_switch(struct mv88e6xxx_chip *chip)
3831
{
3832
	dsa_unregister_switch(chip->ds);
3833 3834
}

3835
static int mv88e6xxx_probe(struct mdio_device *mdiodev)
3836
{
3837
	struct device *dev = &mdiodev->dev;
3838
	struct device_node *np = dev->of_node;
3839
	const struct mv88e6xxx_info *compat_info;
3840
	struct mv88e6xxx_chip *chip;
3841
	u32 eeprom_len;
3842
	int err;
3843

3844 3845 3846 3847
	compat_info = of_device_get_match_data(dev);
	if (!compat_info)
		return -EINVAL;

3848 3849
	chip = mv88e6xxx_alloc_chip(dev);
	if (!chip)
3850 3851
		return -ENOMEM;

3852
	chip->info = compat_info;
3853

3854
	err = mv88e6xxx_smi_init(chip, mdiodev->bus, mdiodev->addr);
3855 3856
	if (err)
		return err;
3857

3858
	err = mv88e6xxx_detect(chip);
3859 3860
	if (err)
		return err;
3861

3862 3863
	mv88e6xxx_phy_init(chip);

3864 3865 3866
	chip->reset = devm_gpiod_get_optional(dev, "reset", GPIOD_ASIS);
	if (IS_ERR(chip->reset))
		return PTR_ERR(chip->reset);
3867

3868
	if (chip->info->ops->get_eeprom &&
3869
	    !of_property_read_u32(np, "eeprom-length", &eeprom_len))
3870
		chip->eeprom_len = eeprom_len;
3871

3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902
	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;
		}
	}

3903
	err = mv88e6xxx_mdio_register(chip, np);
3904
	if (err)
3905
		goto out_g2_irq;
3906

3907
	err = mv88e6xxx_register_switch(chip, np);
3908 3909
	if (err)
		goto out_mdio;
3910

3911
	return 0;
3912 3913 3914 3915

out_mdio:
	mv88e6xxx_mdio_unregister(chip);
out_g2_irq:
3916
	if (mv88e6xxx_has(chip, MV88E6XXX_FLAG_G2_INT) && chip->irq > 0)
3917 3918
		mv88e6xxx_g2_irq_free(chip);
out_g1_irq:
3919 3920
	if (chip->irq > 0)
		mv88e6xxx_g1_irq_free(chip);
3921 3922
out:
	return err;
3923
}
3924 3925 3926 3927

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

3930
	mv88e6xxx_phy_destroy(chip);
3931 3932
	mv88e6xxx_unregister_switch(chip);
	mv88e6xxx_mdio_unregister(chip);
3933

3934 3935 3936 3937 3938
	if (chip->irq > 0) {
		if (mv88e6xxx_has(chip, MV88E6XXX_FLAG_G2_INT))
			mv88e6xxx_g2_irq_free(chip);
		mv88e6xxx_g1_irq_free(chip);
	}
3939 3940 3941
}

static const struct of_device_id mv88e6xxx_of_match[] = {
3942 3943 3944 3945
	{
		.compatible = "marvell,mv88e6085",
		.data = &mv88e6xxx_table[MV88E6085],
	},
3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961
	{ /* 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)
{
3962
	register_switch_driver(&mv88e6xxx_switch_ops);
3963 3964
	return mdio_driver_register(&mv88e6xxx_driver);
}
3965 3966 3967 3968
module_init(mv88e6xxx_init);

static void __exit mv88e6xxx_cleanup(void)
{
3969
	mdio_driver_unregister(&mv88e6xxx_driver);
3970
	unregister_switch_driver(&mv88e6xxx_switch_ops);
3971 3972
}
module_exit(mv88e6xxx_cleanup);
3973 3974 3975 3976

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