ksz_common.c 19.2 KB
Newer Older
1
// SPDX-License-Identifier: GPL-2.0
2 3 4
/*
 * Microchip switch driver main logic
 *
5
 * Copyright (C) 2017-2019 Microchip Technology Inc.
6 7 8 9
 */

#include <linux/delay.h>
#include <linux/export.h>
10
#include <linux/gpio/consumer.h>
11 12 13 14 15 16
#include <linux/kernel.h>
#include <linux/module.h>
#include <linux/platform_data/microchip-ksz.h>
#include <linux/phy.h>
#include <linux/etherdevice.h>
#include <linux/if_bridge.h>
17
#include <linux/of_net.h>
18 19 20
#include <net/dsa.h>
#include <net/switchdev.h>

21
#include "ksz_common.h"
22

23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61
struct ksz_stats_raw {
	u64 rx_hi;
	u64 rx_undersize;
	u64 rx_fragments;
	u64 rx_oversize;
	u64 rx_jabbers;
	u64 rx_symbol_err;
	u64 rx_crc_err;
	u64 rx_align_err;
	u64 rx_mac_ctrl;
	u64 rx_pause;
	u64 rx_bcast;
	u64 rx_mcast;
	u64 rx_ucast;
	u64 rx_64_or_less;
	u64 rx_65_127;
	u64 rx_128_255;
	u64 rx_256_511;
	u64 rx_512_1023;
	u64 rx_1024_1522;
	u64 rx_1523_2000;
	u64 rx_2001;
	u64 tx_hi;
	u64 tx_late_col;
	u64 tx_pause;
	u64 tx_bcast;
	u64 tx_mcast;
	u64 tx_ucast;
	u64 tx_deferred;
	u64 tx_total_col;
	u64 tx_exc_col;
	u64 tx_single_col;
	u64 tx_mult_col;
	u64 rx_total;
	u64 tx_total;
	u64 rx_discards;
	u64 tx_discards;
};

62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227
static const struct ksz_chip_data ksz_switch_chips[] = {
	[KSZ8795] = {
		.chip_id = KSZ8795_CHIP_ID,
		.dev_name = "KSZ8795",
		.num_vlans = 4096,
		.num_alus = 0,
		.num_statics = 8,
		.cpu_ports = 0x10,	/* can be configured as cpu port */
		.port_cnt = 5,		/* total cpu and user ports */
		.ksz87xx_eee_link_erratum = true,
	},

	[KSZ8794] = {
		/* WARNING
		 * =======
		 * KSZ8794 is similar to KSZ8795, except the port map
		 * contains a gap between external and CPU ports, the
		 * port map is NOT continuous. The per-port register
		 * map is shifted accordingly too, i.e. registers at
		 * offset 0x40 are NOT used on KSZ8794 and they ARE
		 * used on KSZ8795 for external port 3.
		 *           external  cpu
		 * KSZ8794   0,1,2      4
		 * KSZ8795   0,1,2,3    4
		 * KSZ8765   0,1,2,3    4
		 * port_cnt is configured as 5, even though it is 4
		 */
		.chip_id = KSZ8794_CHIP_ID,
		.dev_name = "KSZ8794",
		.num_vlans = 4096,
		.num_alus = 0,
		.num_statics = 8,
		.cpu_ports = 0x10,	/* can be configured as cpu port */
		.port_cnt = 5,		/* total cpu and user ports */
		.ksz87xx_eee_link_erratum = true,
	},

	[KSZ8765] = {
		.chip_id = KSZ8765_CHIP_ID,
		.dev_name = "KSZ8765",
		.num_vlans = 4096,
		.num_alus = 0,
		.num_statics = 8,
		.cpu_ports = 0x10,	/* can be configured as cpu port */
		.port_cnt = 5,		/* total cpu and user ports */
		.ksz87xx_eee_link_erratum = true,
	},

	[KSZ8830] = {
		.chip_id = KSZ8830_CHIP_ID,
		.dev_name = "KSZ8863/KSZ8873",
		.num_vlans = 16,
		.num_alus = 0,
		.num_statics = 8,
		.cpu_ports = 0x4,	/* can be configured as cpu port */
		.port_cnt = 3,
	},

	[KSZ9477] = {
		.chip_id = KSZ9477_CHIP_ID,
		.dev_name = "KSZ9477",
		.num_vlans = 4096,
		.num_alus = 4096,
		.num_statics = 16,
		.cpu_ports = 0x7F,	/* can be configured as cpu port */
		.port_cnt = 7,		/* total physical port count */
		.phy_errata_9477 = true,
	},

	[KSZ9897] = {
		.chip_id = KSZ9897_CHIP_ID,
		.dev_name = "KSZ9897",
		.num_vlans = 4096,
		.num_alus = 4096,
		.num_statics = 16,
		.cpu_ports = 0x7F,	/* can be configured as cpu port */
		.port_cnt = 7,		/* total physical port count */
		.phy_errata_9477 = true,
	},

	[KSZ9893] = {
		.chip_id = KSZ9893_CHIP_ID,
		.dev_name = "KSZ9893",
		.num_vlans = 4096,
		.num_alus = 4096,
		.num_statics = 16,
		.cpu_ports = 0x07,	/* can be configured as cpu port */
		.port_cnt = 3,		/* total port count */
	},

	[KSZ9567] = {
		.chip_id = KSZ9567_CHIP_ID,
		.dev_name = "KSZ9567",
		.num_vlans = 4096,
		.num_alus = 4096,
		.num_statics = 16,
		.cpu_ports = 0x7F,	/* can be configured as cpu port */
		.port_cnt = 7,		/* total physical port count */
		.phy_errata_9477 = true,
	},

	[LAN9370] = {
		.chip_id = LAN9370_CHIP_ID,
		.dev_name = "LAN9370",
		.num_vlans = 4096,
		.num_alus = 1024,
		.num_statics = 256,
		.cpu_ports = 0x10,	/* can be configured as cpu port */
		.port_cnt = 5,		/* total physical port count */
	},

	[LAN9371] = {
		.chip_id = LAN9371_CHIP_ID,
		.dev_name = "LAN9371",
		.num_vlans = 4096,
		.num_alus = 1024,
		.num_statics = 256,
		.cpu_ports = 0x30,	/* can be configured as cpu port */
		.port_cnt = 6,		/* total physical port count */
	},

	[LAN9372] = {
		.chip_id = LAN9372_CHIP_ID,
		.dev_name = "LAN9372",
		.num_vlans = 4096,
		.num_alus = 1024,
		.num_statics = 256,
		.cpu_ports = 0x30,	/* can be configured as cpu port */
		.port_cnt = 8,		/* total physical port count */
	},

	[LAN9373] = {
		.chip_id = LAN9373_CHIP_ID,
		.dev_name = "LAN9373",
		.num_vlans = 4096,
		.num_alus = 1024,
		.num_statics = 256,
		.cpu_ports = 0x38,	/* can be configured as cpu port */
		.port_cnt = 5,		/* total physical port count */
	},

	[LAN9374] = {
		.chip_id = LAN9374_CHIP_ID,
		.dev_name = "LAN9374",
		.num_vlans = 4096,
		.num_alus = 1024,
		.num_statics = 256,
		.cpu_ports = 0x30,	/* can be configured as cpu port */
		.port_cnt = 8,		/* total physical port count */
	},
};

static const struct ksz_chip_data *ksz_lookup_info(unsigned int prod_num)
{
	int i;

	for (i = 0; i < ARRAY_SIZE(ksz_switch_chips); i++) {
		const struct ksz_chip_data *chip = &ksz_switch_chips[i];

		if (chip->chip_id == prod_num)
			return chip;
	}

	return NULL;
}

228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284
void ksz_r_mib_stats64(struct ksz_device *dev, int port)
{
	struct rtnl_link_stats64 *stats;
	struct ksz_stats_raw *raw;
	struct ksz_port_mib *mib;

	mib = &dev->ports[port].mib;
	stats = &mib->stats64;
	raw = (struct ksz_stats_raw *)mib->counters;

	spin_lock(&mib->stats64_lock);

	stats->rx_packets = raw->rx_bcast + raw->rx_mcast + raw->rx_ucast;
	stats->tx_packets = raw->tx_bcast + raw->tx_mcast + raw->tx_ucast;

	/* HW counters are counting bytes + FCS which is not acceptable
	 * for rtnl_link_stats64 interface
	 */
	stats->rx_bytes = raw->rx_total - stats->rx_packets * ETH_FCS_LEN;
	stats->tx_bytes = raw->tx_total - stats->tx_packets * ETH_FCS_LEN;

	stats->rx_length_errors = raw->rx_undersize + raw->rx_fragments +
		raw->rx_oversize;

	stats->rx_crc_errors = raw->rx_crc_err;
	stats->rx_frame_errors = raw->rx_align_err;
	stats->rx_dropped = raw->rx_discards;
	stats->rx_errors = stats->rx_length_errors + stats->rx_crc_errors +
		stats->rx_frame_errors  + stats->rx_dropped;

	stats->tx_window_errors = raw->tx_late_col;
	stats->tx_fifo_errors = raw->tx_discards;
	stats->tx_aborted_errors = raw->tx_exc_col;
	stats->tx_errors = stats->tx_window_errors + stats->tx_fifo_errors +
		stats->tx_aborted_errors;

	stats->multicast = raw->rx_mcast;
	stats->collisions = raw->tx_total_col;

	spin_unlock(&mib->stats64_lock);
}
EXPORT_SYMBOL_GPL(ksz_r_mib_stats64);

void ksz_get_stats64(struct dsa_switch *ds, int port,
		     struct rtnl_link_stats64 *s)
{
	struct ksz_device *dev = ds->priv;
	struct ksz_port_mib *mib;

	mib = &dev->ports[port].mib;

	spin_lock(&mib->stats64_lock);
	memcpy(s, &mib->stats64, sizeof(*s));
	spin_unlock(&mib->stats64_lock);
}
EXPORT_SYMBOL_GPL(ksz_get_stats64);

285
void ksz_update_port_member(struct ksz_device *dev, int port)
286
{
287 288 289 290
	struct ksz_port *p = &dev->ports[port];
	struct dsa_switch *ds = dev->ds;
	u8 port_member = 0, cpu_port;
	const struct dsa_port *dp;
291
	int i, j;
292

293 294 295 296 297 298 299 300 301 302 303 304
	if (!dsa_is_user_port(ds, port))
		return;

	dp = dsa_to_port(ds, port);
	cpu_port = BIT(dsa_upstream_port(ds, port));

	for (i = 0; i < ds->num_ports; i++) {
		const struct dsa_port *other_dp = dsa_to_port(ds, i);
		struct ksz_port *other_p = &dev->ports[i];
		u8 val = 0;

		if (!dsa_is_user_port(ds, i))
305
			continue;
306 307
		if (port == i)
			continue;
308
		if (!dsa_port_bridge_same(dp, other_dp))
309
			continue;
310 311
		if (other_p->stp_state != BR_STATE_FORWARDING)
			continue;
312

313
		if (p->stp_state == BR_STATE_FORWARDING) {
314 315 316 317
			val |= BIT(port);
			port_member |= BIT(i);
		}

318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336
		/* Retain port [i]'s relationship to other ports than [port] */
		for (j = 0; j < ds->num_ports; j++) {
			const struct dsa_port *third_dp;
			struct ksz_port *third_p;

			if (j == i)
				continue;
			if (j == port)
				continue;
			if (!dsa_is_user_port(ds, j))
				continue;
			third_p = &dev->ports[j];
			if (third_p->stp_state != BR_STATE_FORWARDING)
				continue;
			third_dp = dsa_to_port(ds, j);
			if (dsa_port_bridge_same(other_dp, third_dp))
				val |= BIT(j);
		}

337
		dev->dev_ops->cfg_port_member(dev, i, val | cpu_port);
338
	}
339 340

	dev->dev_ops->cfg_port_member(dev, port, port_member | cpu_port);
341
}
342
EXPORT_SYMBOL_GPL(ksz_update_port_member);
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
static void port_r_cnt(struct ksz_device *dev, int port)
{
	struct ksz_port_mib *mib = &dev->ports[port].mib;
	u64 *dropped;

	/* Some ports may not have MIB counters before SWITCH_COUNTER_NUM. */
	while (mib->cnt_ptr < dev->reg_mib_cnt) {
		dev->dev_ops->r_mib_cnt(dev, port, mib->cnt_ptr,
					&mib->counters[mib->cnt_ptr]);
		++mib->cnt_ptr;
	}

	/* last one in storage */
	dropped = &mib->counters[dev->mib_cnt];

	/* Some ports may not have MIB counters after SWITCH_COUNTER_NUM. */
	while (mib->cnt_ptr < dev->mib_cnt) {
		dev->dev_ops->r_mib_pkt(dev, port, mib->cnt_ptr,
					dropped, &mib->counters[mib->cnt_ptr]);
		++mib->cnt_ptr;
	}
	mib->cnt_ptr = 0;
}

static void ksz_mib_read_work(struct work_struct *work)
{
	struct ksz_device *dev = container_of(work, struct ksz_device,
371
					      mib_read.work);
372 373 374 375
	struct ksz_port_mib *mib;
	struct ksz_port *p;
	int i;

376
	for (i = 0; i < dev->info->port_cnt; i++) {
377 378 379
		if (dsa_is_unused_port(dev->ds, i))
			continue;

380 381 382 383 384 385 386 387 388 389 390 391 392 393 394
		p = &dev->ports[i];
		mib = &p->mib;
		mutex_lock(&mib->cnt_mutex);

		/* Only read MIB counters when the port is told to do.
		 * If not, read only dropped counters when link is not up.
		 */
		if (!p->read) {
			const struct dsa_port *dp = dsa_to_port(dev->ds, i);

			if (!netif_carrier_ok(dp->slave))
				mib->cnt_ptr = dev->reg_mib_cnt;
		}
		port_r_cnt(dev, i);
		p->read = false;
395 396 397 398

		if (dev->dev_ops->r_mib_stat64)
			dev->dev_ops->r_mib_stat64(dev, i);

399 400 401
		mutex_unlock(&mib->cnt_mutex);
	}

402
	schedule_delayed_work(&dev->mib_read, dev->mib_read_interval);
403 404 405 406 407 408
}

void ksz_init_mib_timer(struct ksz_device *dev)
{
	int i;

409 410
	INIT_DELAYED_WORK(&dev->mib_read, ksz_mib_read_work);

411
	for (i = 0; i < dev->info->port_cnt; i++)
412 413 414 415
		dev->dev_ops->port_init_cnt(dev, i);
}
EXPORT_SYMBOL_GPL(ksz_init_mib_timer);

416
int ksz_phy_read16(struct dsa_switch *ds, int addr, int reg)
417 418
{
	struct ksz_device *dev = ds->priv;
419
	u16 val = 0xffff;
420

421
	dev->dev_ops->r_phy(dev, addr, reg, &val);
422 423 424

	return val;
}
425
EXPORT_SYMBOL_GPL(ksz_phy_read16);
426

427
int ksz_phy_write16(struct dsa_switch *ds, int addr, int reg, u16 val)
428 429 430
{
	struct ksz_device *dev = ds->priv;

431
	dev->dev_ops->w_phy(dev, addr, reg, val);
432 433 434

	return 0;
}
435
EXPORT_SYMBOL_GPL(ksz_phy_write16);
436

437 438
void ksz_mac_link_down(struct dsa_switch *ds, int port, unsigned int mode,
		       phy_interface_t interface)
439 440 441 442 443
{
	struct ksz_device *dev = ds->priv;
	struct ksz_port *p = &dev->ports[port];

	/* Read all MIB counters when the link is going down. */
444
	p->read = true;
445 446 447
	/* timer started */
	if (dev->mib_read_interval)
		schedule_delayed_work(&dev->mib_read, 0);
448 449 450
}
EXPORT_SYMBOL_GPL(ksz_mac_link_down);

451
int ksz_sset_count(struct dsa_switch *ds, int port, int sset)
452 453 454
{
	struct ksz_device *dev = ds->priv;

455 456 457
	if (sset != ETH_SS_STATS)
		return 0;

458
	return dev->mib_cnt;
459
}
460
EXPORT_SYMBOL_GPL(ksz_sset_count);
461

462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479
void ksz_get_ethtool_stats(struct dsa_switch *ds, int port, uint64_t *buf)
{
	const struct dsa_port *dp = dsa_to_port(ds, port);
	struct ksz_device *dev = ds->priv;
	struct ksz_port_mib *mib;

	mib = &dev->ports[port].mib;
	mutex_lock(&mib->cnt_mutex);

	/* Only read dropped counters if no link. */
	if (!netif_carrier_ok(dp->slave))
		mib->cnt_ptr = dev->reg_mib_cnt;
	port_r_cnt(dev, port);
	memcpy(buf, mib->counters, dev->mib_cnt * sizeof(u64));
	mutex_unlock(&mib->cnt_mutex);
}
EXPORT_SYMBOL_GPL(ksz_get_ethtool_stats);

480
int ksz_port_bridge_join(struct dsa_switch *ds, int port,
481
			 struct dsa_bridge bridge,
482 483
			 bool *tx_fwd_offload,
			 struct netlink_ext_ack *extack)
484
{
485 486 487
	/* port_stp_state_set() will be called after to put the port in
	 * appropriate state so there is no need to do anything.
	 */
488

489
	return 0;
490
}
491
EXPORT_SYMBOL_GPL(ksz_port_bridge_join);
492

493
void ksz_port_bridge_leave(struct dsa_switch *ds, int port,
494
			   struct dsa_bridge bridge)
495
{
496 497 498
	/* port_stp_state_set() will be called after to put the port in
	 * forwarding state so there is no need to do anything.
	 */
499
}
500
EXPORT_SYMBOL_GPL(ksz_port_bridge_leave);
501

502
void ksz_port_fast_age(struct dsa_switch *ds, int port)
503 504 505
{
	struct ksz_device *dev = ds->priv;

506
	dev->dev_ops->flush_dyn_mac_table(dev, port);
507
}
508
EXPORT_SYMBOL_GPL(ksz_port_fast_age);
509

510 511
int ksz_port_fdb_dump(struct dsa_switch *ds, int port, dsa_fdb_dump_cb_t *cb,
		      void *data)
512 513
{
	struct ksz_device *dev = ds->priv;
514
	int ret = 0;
515 516 517 518 519
	u16 i = 0;
	u16 entries = 0;
	u8 timestamp = 0;
	u8 fid;
	u8 member;
520 521 522
	struct alu_struct alu;

	do {
523 524 525 526 527
		alu.is_static = false;
		ret = dev->dev_ops->r_dyn_mac_table(dev, i, alu.mac, &fid,
						    &member, &timestamp,
						    &entries);
		if (!ret && (member & BIT(port))) {
528
			ret = cb(alu.mac, alu.fid, alu.is_static, data);
529
			if (ret)
530
				break;
531
		}
532 533 534 535
		i++;
	} while (i < entries);
	if (i >= entries)
		ret = 0;
536 537 538

	return ret;
}
539
EXPORT_SYMBOL_GPL(ksz_port_fdb_dump);
540

541
int ksz_port_mdb_add(struct dsa_switch *ds, int port,
542 543
		     const struct switchdev_obj_port_mdb *mdb,
		     struct dsa_db db)
544 545
{
	struct ksz_device *dev = ds->priv;
546
	struct alu_struct alu;
547
	int index;
548
	int empty = 0;
549

550
	alu.port_forward = 0;
551
	for (index = 0; index < dev->info->num_statics; index++) {
552 553 554 555
		if (!dev->dev_ops->r_sta_mac_table(dev, index, &alu)) {
			/* Found one already in static MAC table. */
			if (!memcmp(alu.mac, mdb->addr, ETH_ALEN) &&
			    alu.fid == mdb->vid)
556
				break;
557 558 559
		/* Remember the first empty entry. */
		} else if (!empty) {
			empty = index + 1;
560 561 562 563
		}
	}

	/* no available entry */
564
	if (index == dev->info->num_statics && !empty)
565
		return -ENOSPC;
566 567

	/* add entry */
568
	if (index == dev->info->num_statics) {
569 570 571 572 573 574 575 576
		index = empty - 1;
		memset(&alu, 0, sizeof(alu));
		memcpy(alu.mac, mdb->addr, ETH_ALEN);
		alu.is_static = true;
	}
	alu.port_forward |= BIT(port);
	if (mdb->vid) {
		alu.is_use_fid = true;
577

578 579 580 581
		/* Need a way to map VID to FID. */
		alu.fid = mdb->vid;
	}
	dev->dev_ops->w_sta_mac_table(dev, index, &alu);
582 583

	return 0;
584
}
585
EXPORT_SYMBOL_GPL(ksz_port_mdb_add);
586

587
int ksz_port_mdb_del(struct dsa_switch *ds, int port,
588 589
		     const struct switchdev_obj_port_mdb *mdb,
		     struct dsa_db db)
590 591
{
	struct ksz_device *dev = ds->priv;
592
	struct alu_struct alu;
593 594
	int index;

595
	for (index = 0; index < dev->info->num_statics; index++) {
596 597 598 599
		if (!dev->dev_ops->r_sta_mac_table(dev, index, &alu)) {
			/* Found one already in static MAC table. */
			if (!memcmp(alu.mac, mdb->addr, ETH_ALEN) &&
			    alu.fid == mdb->vid)
600 601 602 603 604
				break;
		}
	}

	/* no available entry */
605
	if (index == dev->info->num_statics)
606 607 608
		goto exit;

	/* clear port */
609 610 611 612
	alu.port_forward &= ~BIT(port);
	if (!alu.port_forward)
		alu.is_static = false;
	dev->dev_ops->w_sta_mac_table(dev, index, &alu);
613 614

exit:
615
	return 0;
616
}
617
EXPORT_SYMBOL_GPL(ksz_port_mdb_del);
618

619
int ksz_enable_port(struct dsa_switch *ds, int port, struct phy_device *phy)
620 621 622
{
	struct ksz_device *dev = ds->priv;

623 624 625
	if (!dsa_is_user_port(ds, port))
		return 0;

626 627
	/* setup slave port */
	dev->dev_ops->port_setup(dev, port, false);
628

629 630 631
	/* port_stp_state_set() will be called after to enable the port so
	 * there is no need to do anything.
	 */
632 633 634

	return 0;
}
635
EXPORT_SYMBOL_GPL(ksz_enable_port);
636

637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676
void ksz_port_stp_state_set(struct dsa_switch *ds, int port,
			    u8 state, int reg)
{
	struct ksz_device *dev = ds->priv;
	struct ksz_port *p;
	u8 data;

	ksz_pread8(dev, port, reg, &data);
	data &= ~(PORT_TX_ENABLE | PORT_RX_ENABLE | PORT_LEARN_DISABLE);

	switch (state) {
	case BR_STATE_DISABLED:
		data |= PORT_LEARN_DISABLE;
		break;
	case BR_STATE_LISTENING:
		data |= (PORT_RX_ENABLE | PORT_LEARN_DISABLE);
		break;
	case BR_STATE_LEARNING:
		data |= PORT_RX_ENABLE;
		break;
	case BR_STATE_FORWARDING:
		data |= (PORT_TX_ENABLE | PORT_RX_ENABLE);
		break;
	case BR_STATE_BLOCKING:
		data |= PORT_LEARN_DISABLE;
		break;
	default:
		dev_err(ds->dev, "invalid STP state: %d\n", state);
		return;
	}

	ksz_pwrite8(dev, port, reg, data);

	p = &dev->ports[port];
	p->stp_state = state;

	ksz_update_port_member(dev, port);
}
EXPORT_SYMBOL_GPL(ksz_port_stp_state_set);

677
struct ksz_device *ksz_switch_alloc(struct device *base, void *priv)
678 679 680 681
{
	struct dsa_switch *ds;
	struct ksz_device *swdev;

682
	ds = devm_kzalloc(base, sizeof(*ds), GFP_KERNEL);
683 684 685
	if (!ds)
		return NULL;

686 687 688
	ds->dev = base;
	ds->num_ports = DSA_MAX_PORTS;

689 690 691 692 693 694 695 696 697 698 699 700 701 702
	swdev = devm_kzalloc(base, sizeof(*swdev), GFP_KERNEL);
	if (!swdev)
		return NULL;

	ds->priv = swdev;
	swdev->dev = base;

	swdev->ds = ds;
	swdev->priv = priv;

	return swdev;
}
EXPORT_SYMBOL(ksz_switch_alloc);

703 704
int ksz_switch_register(struct ksz_device *dev,
			const struct ksz_dev_ops *ops)
705
{
706
	const struct ksz_chip_data *info;
707
	struct device_node *port, *ports;
708
	phy_interface_t interface;
709
	unsigned int port_num;
710 711 712 713 714
	int ret;

	if (dev->pdata)
		dev->chip_id = dev->pdata->chip_id;

715 716 717 718 719 720
	dev->reset_gpio = devm_gpiod_get_optional(dev->dev, "reset",
						  GPIOD_OUT_LOW);
	if (IS_ERR(dev->reset_gpio))
		return PTR_ERR(dev->reset_gpio);

	if (dev->reset_gpio) {
721
		gpiod_set_value_cansleep(dev->reset_gpio, 1);
722
		usleep_range(10000, 12000);
723
		gpiod_set_value_cansleep(dev->reset_gpio, 0);
724
		msleep(100);
725 726
	}

727
	mutex_init(&dev->dev_mutex);
728
	mutex_init(&dev->regmap_mutex);
729 730 731
	mutex_init(&dev->alu_mutex);
	mutex_init(&dev->vlan_mutex);

732 733 734
	dev->dev_ops = ops;

	if (dev->dev_ops->detect(dev))
735 736
		return -EINVAL;

737 738 739 740 741 742 743
	info = ksz_lookup_info(dev->chip_id);
	if (!info)
		return -ENODEV;

	/* Update the compatible info with the probed one */
	dev->info = info;

744
	ret = dev->dev_ops->init(dev);
745 746 747
	if (ret)
		return ret;

748 749 750
	/* Host port interface will be self detected, or specifically set in
	 * device tree.
	 */
751
	for (port_num = 0; port_num < dev->info->port_cnt; ++port_num)
752
		dev->ports[port_num].interface = PHY_INTERFACE_MODE_NA;
753
	if (dev->dev->of_node) {
754 755
		ret = of_get_phy_mode(dev->dev->of_node, &interface);
		if (ret == 0)
756
			dev->compat_interface = interface;
757 758 759
		ports = of_get_child_by_name(dev->dev->of_node, "ethernet-ports");
		if (!ports)
			ports = of_get_child_by_name(dev->dev->of_node, "ports");
760 761 762 763 764
		if (ports)
			for_each_available_child_of_node(ports, port) {
				if (of_property_read_u32(port, "reg",
							 &port_num))
					continue;
765 766
				if (!(dev->port_mask & BIT(port_num))) {
					of_node_put(port);
767
					return -EINVAL;
768
				}
769 770 771
				of_get_phy_mode(port,
						&dev->ports[port_num].interface);
			}
772 773
		dev->synclko_125 = of_property_read_bool(dev->dev->of_node,
							 "microchip,synclko-125");
774 775 776 777 778 779
		dev->synclko_disable = of_property_read_bool(dev->dev->of_node,
							     "microchip,synclko-disable");
		if (dev->synclko_125 && dev->synclko_disable) {
			dev_err(dev->dev, "inconsistent synclko settings\n");
			return -EINVAL;
		}
780 781 782 783 784 785 786 787
	}

	ret = dsa_register_switch(dev->ds);
	if (ret) {
		dev->dev_ops->exit(dev);
		return ret;
	}

788
	/* Read MIB counters every 30 seconds to avoid overflow. */
789
	dev->mib_read_interval = msecs_to_jiffies(5000);
790 791 792 793

	/* Start the MIB timer. */
	schedule_delayed_work(&dev->mib_read, 0);

794
	return 0;
795 796 797 798 799
}
EXPORT_SYMBOL(ksz_switch_register);

void ksz_switch_remove(struct ksz_device *dev)
{
800
	/* timer started */
801 802
	if (dev->mib_read_interval) {
		dev->mib_read_interval = 0;
803
		cancel_delayed_work_sync(&dev->mib_read);
804
	}
805

806
	dev->dev_ops->exit(dev);
807
	dsa_unregister_switch(dev->ds);
808 809

	if (dev->reset_gpio)
810
		gpiod_set_value_cansleep(dev->reset_gpio, 1);
811

812 813 814 815 816 817
}
EXPORT_SYMBOL(ksz_switch_remove);

MODULE_AUTHOR("Woojung Huh <Woojung.Huh@microchip.com>");
MODULE_DESCRIPTION("Microchip KSZ Series Switch DSA Driver");
MODULE_LICENSE("GPL");