1 // SPDX-License-Identifier: GPL-2.0
3 * Microchip switch driver main logic
5 * Copyright (C) 2017-2019 Microchip Technology Inc.
8 #include <linux/delay.h>
9 #include <linux/export.h>
10 #include <linux/gpio/consumer.h>
11 #include <linux/kernel.h>
12 #include <linux/module.h>
13 #include <linux/platform_data/microchip-ksz.h>
14 #include <linux/phy.h>
15 #include <linux/etherdevice.h>
16 #include <linux/if_bridge.h>
17 #include <linux/of_net.h>
19 #include <net/switchdev.h>
21 #include "ksz_common.h"
23 void ksz_update_port_member(struct ksz_device *dev, int port)
25 struct ksz_port *p = &dev->ports[port];
26 struct dsa_switch *ds = dev->ds;
27 u8 port_member = 0, cpu_port;
28 const struct dsa_port *dp;
31 if (!dsa_is_user_port(ds, port))
34 dp = dsa_to_port(ds, port);
35 cpu_port = BIT(dsa_upstream_port(ds, port));
37 for (i = 0; i < ds->num_ports; i++) {
38 const struct dsa_port *other_dp = dsa_to_port(ds, i);
39 struct ksz_port *other_p = &dev->ports[i];
42 if (!dsa_is_user_port(ds, i))
46 if (!dsa_port_bridge_same(dp, other_dp))
48 if (other_p->stp_state != BR_STATE_FORWARDING)
51 if (p->stp_state == BR_STATE_FORWARDING) {
53 port_member |= BIT(i);
56 /* Retain port [i]'s relationship to other ports than [port] */
57 for (j = 0; j < ds->num_ports; j++) {
58 const struct dsa_port *third_dp;
59 struct ksz_port *third_p;
65 if (!dsa_is_user_port(ds, j))
67 third_p = &dev->ports[j];
68 if (third_p->stp_state != BR_STATE_FORWARDING)
70 third_dp = dsa_to_port(ds, j);
71 if (dsa_port_bridge_same(other_dp, third_dp))
75 dev->dev_ops->cfg_port_member(dev, i, val | cpu_port);
78 dev->dev_ops->cfg_port_member(dev, port, port_member | cpu_port);
80 EXPORT_SYMBOL_GPL(ksz_update_port_member);
82 static void port_r_cnt(struct ksz_device *dev, int port)
84 struct ksz_port_mib *mib = &dev->ports[port].mib;
87 /* Some ports may not have MIB counters before SWITCH_COUNTER_NUM. */
88 while (mib->cnt_ptr < dev->reg_mib_cnt) {
89 dev->dev_ops->r_mib_cnt(dev, port, mib->cnt_ptr,
90 &mib->counters[mib->cnt_ptr]);
94 /* last one in storage */
95 dropped = &mib->counters[dev->mib_cnt];
97 /* Some ports may not have MIB counters after SWITCH_COUNTER_NUM. */
98 while (mib->cnt_ptr < dev->mib_cnt) {
99 dev->dev_ops->r_mib_pkt(dev, port, mib->cnt_ptr,
100 dropped, &mib->counters[mib->cnt_ptr]);
106 static void ksz_mib_read_work(struct work_struct *work)
108 struct ksz_device *dev = container_of(work, struct ksz_device,
110 struct ksz_port_mib *mib;
114 for (i = 0; i < dev->port_cnt; i++) {
115 if (dsa_is_unused_port(dev->ds, i))
120 mutex_lock(&mib->cnt_mutex);
122 /* Only read MIB counters when the port is told to do.
123 * If not, read only dropped counters when link is not up.
126 const struct dsa_port *dp = dsa_to_port(dev->ds, i);
128 if (!netif_carrier_ok(dp->slave))
129 mib->cnt_ptr = dev->reg_mib_cnt;
134 if (dev->dev_ops->r_mib_stat64)
135 dev->dev_ops->r_mib_stat64(dev, i);
137 mutex_unlock(&mib->cnt_mutex);
140 schedule_delayed_work(&dev->mib_read, dev->mib_read_interval);
143 void ksz_init_mib_timer(struct ksz_device *dev)
147 INIT_DELAYED_WORK(&dev->mib_read, ksz_mib_read_work);
149 for (i = 0; i < dev->port_cnt; i++)
150 dev->dev_ops->port_init_cnt(dev, i);
152 EXPORT_SYMBOL_GPL(ksz_init_mib_timer);
154 int ksz_phy_read16(struct dsa_switch *ds, int addr, int reg)
156 struct ksz_device *dev = ds->priv;
159 dev->dev_ops->r_phy(dev, addr, reg, &val);
163 EXPORT_SYMBOL_GPL(ksz_phy_read16);
165 int ksz_phy_write16(struct dsa_switch *ds, int addr, int reg, u16 val)
167 struct ksz_device *dev = ds->priv;
169 dev->dev_ops->w_phy(dev, addr, reg, val);
173 EXPORT_SYMBOL_GPL(ksz_phy_write16);
175 void ksz_mac_link_down(struct dsa_switch *ds, int port, unsigned int mode,
176 phy_interface_t interface)
178 struct ksz_device *dev = ds->priv;
179 struct ksz_port *p = &dev->ports[port];
181 /* Read all MIB counters when the link is going down. */
184 if (dev->mib_read_interval)
185 schedule_delayed_work(&dev->mib_read, 0);
187 EXPORT_SYMBOL_GPL(ksz_mac_link_down);
189 int ksz_sset_count(struct dsa_switch *ds, int port, int sset)
191 struct ksz_device *dev = ds->priv;
193 if (sset != ETH_SS_STATS)
198 EXPORT_SYMBOL_GPL(ksz_sset_count);
200 void ksz_get_ethtool_stats(struct dsa_switch *ds, int port, uint64_t *buf)
202 const struct dsa_port *dp = dsa_to_port(ds, port);
203 struct ksz_device *dev = ds->priv;
204 struct ksz_port_mib *mib;
206 mib = &dev->ports[port].mib;
207 mutex_lock(&mib->cnt_mutex);
209 /* Only read dropped counters if no link. */
210 if (!netif_carrier_ok(dp->slave))
211 mib->cnt_ptr = dev->reg_mib_cnt;
212 port_r_cnt(dev, port);
213 memcpy(buf, mib->counters, dev->mib_cnt * sizeof(u64));
214 mutex_unlock(&mib->cnt_mutex);
216 EXPORT_SYMBOL_GPL(ksz_get_ethtool_stats);
218 int ksz_port_bridge_join(struct dsa_switch *ds, int port,
219 struct dsa_bridge bridge,
220 bool *tx_fwd_offload,
221 struct netlink_ext_ack *extack)
223 /* port_stp_state_set() will be called after to put the port in
224 * appropriate state so there is no need to do anything.
229 EXPORT_SYMBOL_GPL(ksz_port_bridge_join);
231 void ksz_port_bridge_leave(struct dsa_switch *ds, int port,
232 struct dsa_bridge bridge)
234 /* port_stp_state_set() will be called after to put the port in
235 * forwarding state so there is no need to do anything.
238 EXPORT_SYMBOL_GPL(ksz_port_bridge_leave);
240 void ksz_port_fast_age(struct dsa_switch *ds, int port)
242 struct ksz_device *dev = ds->priv;
244 dev->dev_ops->flush_dyn_mac_table(dev, port);
246 EXPORT_SYMBOL_GPL(ksz_port_fast_age);
248 int ksz_port_fdb_dump(struct dsa_switch *ds, int port, dsa_fdb_dump_cb_t *cb,
251 struct ksz_device *dev = ds->priv;
258 struct alu_struct alu;
261 alu.is_static = false;
262 ret = dev->dev_ops->r_dyn_mac_table(dev, i, alu.mac, &fid,
265 if (!ret && (member & BIT(port))) {
266 ret = cb(alu.mac, alu.fid, alu.is_static, data);
271 } while (i < entries);
277 EXPORT_SYMBOL_GPL(ksz_port_fdb_dump);
279 int ksz_port_mdb_add(struct dsa_switch *ds, int port,
280 const struct switchdev_obj_port_mdb *mdb,
283 struct ksz_device *dev = ds->priv;
284 struct alu_struct alu;
288 alu.port_forward = 0;
289 for (index = 0; index < dev->num_statics; index++) {
290 if (!dev->dev_ops->r_sta_mac_table(dev, index, &alu)) {
291 /* Found one already in static MAC table. */
292 if (!memcmp(alu.mac, mdb->addr, ETH_ALEN) &&
295 /* Remember the first empty entry. */
301 /* no available entry */
302 if (index == dev->num_statics && !empty)
306 if (index == dev->num_statics) {
308 memset(&alu, 0, sizeof(alu));
309 memcpy(alu.mac, mdb->addr, ETH_ALEN);
310 alu.is_static = true;
312 alu.port_forward |= BIT(port);
314 alu.is_use_fid = true;
316 /* Need a way to map VID to FID. */
319 dev->dev_ops->w_sta_mac_table(dev, index, &alu);
323 EXPORT_SYMBOL_GPL(ksz_port_mdb_add);
325 int ksz_port_mdb_del(struct dsa_switch *ds, int port,
326 const struct switchdev_obj_port_mdb *mdb,
329 struct ksz_device *dev = ds->priv;
330 struct alu_struct alu;
333 for (index = 0; index < dev->num_statics; index++) {
334 if (!dev->dev_ops->r_sta_mac_table(dev, index, &alu)) {
335 /* Found one already in static MAC table. */
336 if (!memcmp(alu.mac, mdb->addr, ETH_ALEN) &&
342 /* no available entry */
343 if (index == dev->num_statics)
347 alu.port_forward &= ~BIT(port);
348 if (!alu.port_forward)
349 alu.is_static = false;
350 dev->dev_ops->w_sta_mac_table(dev, index, &alu);
355 EXPORT_SYMBOL_GPL(ksz_port_mdb_del);
357 int ksz_enable_port(struct dsa_switch *ds, int port, struct phy_device *phy)
359 struct ksz_device *dev = ds->priv;
361 if (!dsa_is_user_port(ds, port))
364 /* setup slave port */
365 dev->dev_ops->port_setup(dev, port, false);
367 /* port_stp_state_set() will be called after to enable the port so
368 * there is no need to do anything.
373 EXPORT_SYMBOL_GPL(ksz_enable_port);
375 struct ksz_device *ksz_switch_alloc(struct device *base, void *priv)
377 struct dsa_switch *ds;
378 struct ksz_device *swdev;
380 ds = devm_kzalloc(base, sizeof(*ds), GFP_KERNEL);
385 ds->num_ports = DSA_MAX_PORTS;
387 swdev = devm_kzalloc(base, sizeof(*swdev), GFP_KERNEL);
399 EXPORT_SYMBOL(ksz_switch_alloc);
401 int ksz_switch_register(struct ksz_device *dev,
402 const struct ksz_dev_ops *ops)
404 struct device_node *port, *ports;
405 phy_interface_t interface;
406 unsigned int port_num;
410 dev->chip_id = dev->pdata->chip_id;
412 dev->reset_gpio = devm_gpiod_get_optional(dev->dev, "reset",
414 if (IS_ERR(dev->reset_gpio))
415 return PTR_ERR(dev->reset_gpio);
417 if (dev->reset_gpio) {
418 gpiod_set_value_cansleep(dev->reset_gpio, 1);
419 usleep_range(10000, 12000);
420 gpiod_set_value_cansleep(dev->reset_gpio, 0);
424 mutex_init(&dev->dev_mutex);
425 mutex_init(&dev->regmap_mutex);
426 mutex_init(&dev->alu_mutex);
427 mutex_init(&dev->vlan_mutex);
431 if (dev->dev_ops->detect(dev))
434 ret = dev->dev_ops->init(dev);
438 /* Host port interface will be self detected, or specifically set in
441 for (port_num = 0; port_num < dev->port_cnt; ++port_num)
442 dev->ports[port_num].interface = PHY_INTERFACE_MODE_NA;
443 if (dev->dev->of_node) {
444 ret = of_get_phy_mode(dev->dev->of_node, &interface);
446 dev->compat_interface = interface;
447 ports = of_get_child_by_name(dev->dev->of_node, "ethernet-ports");
449 ports = of_get_child_by_name(dev->dev->of_node, "ports");
451 for_each_available_child_of_node(ports, port) {
452 if (of_property_read_u32(port, "reg",
455 if (!(dev->port_mask & BIT(port_num))) {
459 of_get_phy_mode(port,
460 &dev->ports[port_num].interface);
462 dev->synclko_125 = of_property_read_bool(dev->dev->of_node,
463 "microchip,synclko-125");
464 dev->synclko_disable = of_property_read_bool(dev->dev->of_node,
465 "microchip,synclko-disable");
466 if (dev->synclko_125 && dev->synclko_disable) {
467 dev_err(dev->dev, "inconsistent synclko settings\n");
472 ret = dsa_register_switch(dev->ds);
474 dev->dev_ops->exit(dev);
478 /* Read MIB counters every 30 seconds to avoid overflow. */
479 dev->mib_read_interval = msecs_to_jiffies(5000);
481 /* Start the MIB timer. */
482 schedule_delayed_work(&dev->mib_read, 0);
486 EXPORT_SYMBOL(ksz_switch_register);
488 void ksz_switch_remove(struct ksz_device *dev)
491 if (dev->mib_read_interval) {
492 dev->mib_read_interval = 0;
493 cancel_delayed_work_sync(&dev->mib_read);
496 dev->dev_ops->exit(dev);
497 dsa_unregister_switch(dev->ds);
500 gpiod_set_value_cansleep(dev->reset_gpio, 1);
503 EXPORT_SYMBOL(ksz_switch_remove);
506 MODULE_DESCRIPTION("Microchip KSZ Series Switch DSA Driver");
507 MODULE_LICENSE("GPL");