ksz_common.c 11.1 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
void ksz_update_port_member(struct ksz_device *dev, int port)
24
{
25
	struct ksz_port *p;
26 27
	int i;

28 29 30 31 32 33 34 35 36 37 38
	for (i = 0; i < dev->port_cnt; i++) {
		if (i == port || i == dev->cpu_port)
			continue;
		p = &dev->ports[i];
		if (!(dev->member & (1 << i)))
			continue;

		/* Port is a member of the bridge and is forwarding. */
		if (p->stp_state == BR_STATE_FORWARDING &&
		    p->member != dev->member)
			dev->dev_ops->cfg_port_member(dev, i, dev->member);
39 40
	}
}
41
EXPORT_SYMBOL_GPL(ksz_update_port_member);
42

43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69
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,
70
					      mib_read.work);
71 72 73 74
	struct ksz_port_mib *mib;
	struct ksz_port *p;
	int i;

75
	for (i = 0; i < dev->port_cnt; i++) {
76 77 78
		if (dsa_is_unused_port(dev->ds, i))
			continue;

79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96
		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;
		mutex_unlock(&mib->cnt_mutex);
	}

97
	schedule_delayed_work(&dev->mib_read, dev->mib_read_interval);
98 99 100 101 102 103
}

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

104 105
	INIT_DELAYED_WORK(&dev->mib_read, ksz_mib_read_work);

106
	for (i = 0; i < dev->port_cnt; i++)
107 108 109 110
		dev->dev_ops->port_init_cnt(dev, i);
}
EXPORT_SYMBOL_GPL(ksz_init_mib_timer);

111
int ksz_phy_read16(struct dsa_switch *ds, int addr, int reg)
112 113
{
	struct ksz_device *dev = ds->priv;
114
	u16 val = 0xffff;
115

116
	dev->dev_ops->r_phy(dev, addr, reg, &val);
117 118 119

	return val;
}
120
EXPORT_SYMBOL_GPL(ksz_phy_read16);
121

122
int ksz_phy_write16(struct dsa_switch *ds, int addr, int reg, u16 val)
123 124 125
{
	struct ksz_device *dev = ds->priv;

126
	dev->dev_ops->w_phy(dev, addr, reg, val);
127 128 129

	return 0;
}
130
EXPORT_SYMBOL_GPL(ksz_phy_write16);
131

132 133
void ksz_mac_link_down(struct dsa_switch *ds, int port, unsigned int mode,
		       phy_interface_t interface)
134 135 136 137 138
{
	struct ksz_device *dev = ds->priv;
	struct ksz_port *p = &dev->ports[port];

	/* Read all MIB counters when the link is going down. */
139
	p->read = true;
140 141 142
	/* timer started */
	if (dev->mib_read_interval)
		schedule_delayed_work(&dev->mib_read, 0);
143 144 145
}
EXPORT_SYMBOL_GPL(ksz_mac_link_down);

146
int ksz_sset_count(struct dsa_switch *ds, int port, int sset)
147 148 149
{
	struct ksz_device *dev = ds->priv;

150 151 152
	if (sset != ETH_SS_STATS)
		return 0;

153
	return dev->mib_cnt;
154
}
155
EXPORT_SYMBOL_GPL(ksz_sset_count);
156

157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174
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);

175 176
int ksz_port_bridge_join(struct dsa_switch *ds, int port,
			 struct net_device *br)
177 178 179
{
	struct ksz_device *dev = ds->priv;

180
	mutex_lock(&dev->dev_mutex);
181
	dev->br_member |= (1 << port);
182
	mutex_unlock(&dev->dev_mutex);
183

184 185 186
	/* port_stp_state_set() will be called after to put the port in
	 * appropriate state so there is no need to do anything.
	 */
187

188
	return 0;
189
}
190
EXPORT_SYMBOL_GPL(ksz_port_bridge_join);
191

192 193
void ksz_port_bridge_leave(struct dsa_switch *ds, int port,
			   struct net_device *br)
194 195 196
{
	struct ksz_device *dev = ds->priv;

197
	mutex_lock(&dev->dev_mutex);
198 199
	dev->br_member &= ~(1 << port);
	dev->member &= ~(1 << port);
200
	mutex_unlock(&dev->dev_mutex);
201

202 203 204
	/* port_stp_state_set() will be called after to put the port in
	 * forwarding state so there is no need to do anything.
	 */
205
}
206
EXPORT_SYMBOL_GPL(ksz_port_bridge_leave);
207

208
void ksz_port_fast_age(struct dsa_switch *ds, int port)
209 210 211
{
	struct ksz_device *dev = ds->priv;

212
	dev->dev_ops->flush_dyn_mac_table(dev, port);
213
}
214
EXPORT_SYMBOL_GPL(ksz_port_fast_age);
215

216 217
int ksz_port_vlan_prepare(struct dsa_switch *ds, int port,
			  const struct switchdev_obj_port_vlan *vlan)
218 219 220 221 222
{
	/* nothing needed */

	return 0;
}
223
EXPORT_SYMBOL_GPL(ksz_port_vlan_prepare);
224

225 226
int ksz_port_fdb_dump(struct dsa_switch *ds, int port, dsa_fdb_dump_cb_t *cb,
		      void *data)
227 228
{
	struct ksz_device *dev = ds->priv;
229
	int ret = 0;
230 231 232 233 234
	u16 i = 0;
	u16 entries = 0;
	u8 timestamp = 0;
	u8 fid;
	u8 member;
235 236 237
	struct alu_struct alu;

	do {
238 239 240 241 242
		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))) {
243
			ret = cb(alu.mac, alu.fid, alu.is_static, data);
244
			if (ret)
245
				break;
246
		}
247 248 249 250
		i++;
	} while (i < entries);
	if (i >= entries)
		ret = 0;
251 252 253

	return ret;
}
254
EXPORT_SYMBOL_GPL(ksz_port_fdb_dump);
255

256 257
int ksz_port_mdb_prepare(struct dsa_switch *ds, int port,
			 const struct switchdev_obj_port_mdb *mdb)
258 259 260 261
{
	/* nothing to do */
	return 0;
}
262
EXPORT_SYMBOL_GPL(ksz_port_mdb_prepare);
263

264 265
void ksz_port_mdb_add(struct dsa_switch *ds, int port,
		      const struct switchdev_obj_port_mdb *mdb)
266 267
{
	struct ksz_device *dev = ds->priv;
268
	struct alu_struct alu;
269
	int index;
270
	int empty = 0;
271

272
	alu.port_forward = 0;
273
	for (index = 0; index < dev->num_statics; index++) {
274 275 276 277
		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)
278
				break;
279 280 281
		/* Remember the first empty entry. */
		} else if (!empty) {
			empty = index + 1;
282 283 284 285
		}
	}

	/* no available entry */
286 287
	if (index == dev->num_statics && !empty)
		return;
288 289

	/* add entry */
290 291 292 293 294 295 296 297 298
	if (index == dev->num_statics) {
		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;
299

300 301 302 303
		/* Need a way to map VID to FID. */
		alu.fid = mdb->vid;
	}
	dev->dev_ops->w_sta_mac_table(dev, index, &alu);
304
}
305
EXPORT_SYMBOL_GPL(ksz_port_mdb_add);
306

307 308
int ksz_port_mdb_del(struct dsa_switch *ds, int port,
		     const struct switchdev_obj_port_mdb *mdb)
309 310
{
	struct ksz_device *dev = ds->priv;
311
	struct alu_struct alu;
312 313 314 315
	int index;
	int ret = 0;

	for (index = 0; index < dev->num_statics; index++) {
316 317 318 319
		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)
320 321 322 323 324
				break;
		}
	}

	/* no available entry */
325
	if (index == dev->num_statics)
326 327 328
		goto exit;

	/* clear port */
329 330 331 332
	alu.port_forward &= ~BIT(port);
	if (!alu.port_forward)
		alu.is_static = false;
	dev->dev_ops->w_sta_mac_table(dev, index, &alu);
333 334 335 336

exit:
	return ret;
}
337
EXPORT_SYMBOL_GPL(ksz_port_mdb_del);
338

339
int ksz_enable_port(struct dsa_switch *ds, int port, struct phy_device *phy)
340 341 342
{
	struct ksz_device *dev = ds->priv;

343 344 345
	if (!dsa_is_user_port(ds, port))
		return 0;

346 347
	/* setup slave port */
	dev->dev_ops->port_setup(dev, port, false);
348

349 350 351
	/* port_stp_state_set() will be called after to enable the port so
	 * there is no need to do anything.
	 */
352 353 354

	return 0;
}
355
EXPORT_SYMBOL_GPL(ksz_enable_port);
356

357
struct ksz_device *ksz_switch_alloc(struct device *base, void *priv)
358 359 360 361
{
	struct dsa_switch *ds;
	struct ksz_device *swdev;

362
	ds = devm_kzalloc(base, sizeof(*ds), GFP_KERNEL);
363 364 365
	if (!ds)
		return NULL;

366 367 368
	ds->dev = base;
	ds->num_ports = DSA_MAX_PORTS;

369 370 371 372 373 374 375 376 377 378 379 380 381 382
	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);

383 384
int ksz_switch_register(struct ksz_device *dev,
			const struct ksz_dev_ops *ops)
385
{
386
	struct device_node *port, *ports;
387
	phy_interface_t interface;
388
	unsigned int port_num;
389 390 391 392 393
	int ret;

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

394 395 396 397 398 399
	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) {
400
		gpiod_set_value_cansleep(dev->reset_gpio, 1);
401
		usleep_range(10000, 12000);
402
		gpiod_set_value_cansleep(dev->reset_gpio, 0);
403
		usleep_range(100, 1000);
404 405
	}

406
	mutex_init(&dev->dev_mutex);
407
	mutex_init(&dev->regmap_mutex);
408 409 410
	mutex_init(&dev->alu_mutex);
	mutex_init(&dev->vlan_mutex);

411 412 413
	dev->dev_ops = ops;

	if (dev->dev_ops->detect(dev))
414 415
		return -EINVAL;

416
	ret = dev->dev_ops->init(dev);
417 418 419
	if (ret)
		return ret;

420 421 422
	/* Host port interface will be self detected, or specifically set in
	 * device tree.
	 */
423 424
	for (port_num = 0; port_num < dev->port_cnt; ++port_num)
		dev->ports[port_num].interface = PHY_INTERFACE_MODE_NA;
425
	if (dev->dev->of_node) {
426 427
		ret = of_get_phy_mode(dev->dev->of_node, &interface);
		if (ret == 0)
428
			dev->compat_interface = interface;
429 430 431
		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");
432 433 434 435 436 437 438 439 440 441
		if (ports)
			for_each_available_child_of_node(ports, port) {
				if (of_property_read_u32(port, "reg",
							 &port_num))
					continue;
				if (port_num >= dev->port_cnt)
					return -EINVAL;
				of_get_phy_mode(port,
						&dev->ports[port_num].interface);
			}
442 443
		dev->synclko_125 = of_property_read_bool(dev->dev->of_node,
							 "microchip,synclko-125");
444 445 446 447 448 449 450 451
	}

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

452 453 454 455 456 457
	/* Read MIB counters every 30 seconds to avoid overflow. */
	dev->mib_read_interval = msecs_to_jiffies(30000);

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

458
	return 0;
459 460 461 462 463
}
EXPORT_SYMBOL(ksz_switch_register);

void ksz_switch_remove(struct ksz_device *dev)
{
464
	/* timer started */
465 466
	if (dev->mib_read_interval)
		cancel_delayed_work_sync(&dev->mib_read);
467

468
	dev->dev_ops->exit(dev);
469
	dsa_unregister_switch(dev->ds);
470 471

	if (dev->reset_gpio)
472
		gpiod_set_value_cansleep(dev->reset_gpio, 1);
473

474 475 476 477 478 479
}
EXPORT_SYMBOL(ksz_switch_remove);

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