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)
28 for (i = 0; i < dev->port_cnt; i++) {
29 if (i == port || i == dev->cpu_port)
32 if (!(dev->member & (1 << i)))
35 /* Port is a member of the bridge and is forwarding. */
36 if (p->stp_state == BR_STATE_FORWARDING &&
37 p->member != dev->member)
38 dev->dev_ops->cfg_port_member(dev, i, dev->member);
41 EXPORT_SYMBOL_GPL(ksz_update_port_member);
43 static void port_r_cnt(struct ksz_device *dev, int port)
45 struct ksz_port_mib *mib = &dev->ports[port].mib;
48 /* Some ports may not have MIB counters before SWITCH_COUNTER_NUM. */
49 while (mib->cnt_ptr < dev->reg_mib_cnt) {
50 dev->dev_ops->r_mib_cnt(dev, port, mib->cnt_ptr,
51 &mib->counters[mib->cnt_ptr]);
55 /* last one in storage */
56 dropped = &mib->counters[dev->mib_cnt];
58 /* Some ports may not have MIB counters after SWITCH_COUNTER_NUM. */
59 while (mib->cnt_ptr < dev->mib_cnt) {
60 dev->dev_ops->r_mib_pkt(dev, port, mib->cnt_ptr,
61 dropped, &mib->counters[mib->cnt_ptr]);
67 static void ksz_mib_read_work(struct work_struct *work)
69 struct ksz_device *dev = container_of(work, struct ksz_device,
71 struct ksz_port_mib *mib;
75 for (i = 0; i < dev->port_cnt; i++) {
76 if (dsa_is_unused_port(dev->ds, i))
81 mutex_lock(&mib->cnt_mutex);
83 /* Only read MIB counters when the port is told to do.
84 * If not, read only dropped counters when link is not up.
87 const struct dsa_port *dp = dsa_to_port(dev->ds, i);
89 if (!netif_carrier_ok(dp->slave))
90 mib->cnt_ptr = dev->reg_mib_cnt;
94 mutex_unlock(&mib->cnt_mutex);
97 schedule_delayed_work(&dev->mib_read, dev->mib_read_interval);
100 void ksz_init_mib_timer(struct ksz_device *dev)
104 INIT_DELAYED_WORK(&dev->mib_read, ksz_mib_read_work);
106 for (i = 0; i < dev->port_cnt; i++)
107 dev->dev_ops->port_init_cnt(dev, i);
109 EXPORT_SYMBOL_GPL(ksz_init_mib_timer);
111 int ksz_phy_read16(struct dsa_switch *ds, int addr, int reg)
113 struct ksz_device *dev = ds->priv;
116 dev->dev_ops->r_phy(dev, addr, reg, &val);
120 EXPORT_SYMBOL_GPL(ksz_phy_read16);
122 int ksz_phy_write16(struct dsa_switch *ds, int addr, int reg, u16 val)
124 struct ksz_device *dev = ds->priv;
126 dev->dev_ops->w_phy(dev, addr, reg, val);
130 EXPORT_SYMBOL_GPL(ksz_phy_write16);
132 void ksz_mac_link_down(struct dsa_switch *ds, int port, unsigned int mode,
133 phy_interface_t interface)
135 struct ksz_device *dev = ds->priv;
136 struct ksz_port *p = &dev->ports[port];
138 /* Read all MIB counters when the link is going down. */
141 if (dev->mib_read_interval)
142 schedule_delayed_work(&dev->mib_read, 0);
144 EXPORT_SYMBOL_GPL(ksz_mac_link_down);
146 int ksz_sset_count(struct dsa_switch *ds, int port, int sset)
148 struct ksz_device *dev = ds->priv;
150 if (sset != ETH_SS_STATS)
155 EXPORT_SYMBOL_GPL(ksz_sset_count);
157 void ksz_get_ethtool_stats(struct dsa_switch *ds, int port, uint64_t *buf)
159 const struct dsa_port *dp = dsa_to_port(ds, port);
160 struct ksz_device *dev = ds->priv;
161 struct ksz_port_mib *mib;
163 mib = &dev->ports[port].mib;
164 mutex_lock(&mib->cnt_mutex);
166 /* Only read dropped counters if no link. */
167 if (!netif_carrier_ok(dp->slave))
168 mib->cnt_ptr = dev->reg_mib_cnt;
169 port_r_cnt(dev, port);
170 memcpy(buf, mib->counters, dev->mib_cnt * sizeof(u64));
171 mutex_unlock(&mib->cnt_mutex);
173 EXPORT_SYMBOL_GPL(ksz_get_ethtool_stats);
175 int ksz_port_bridge_join(struct dsa_switch *ds, int port,
176 struct net_device *br)
178 struct ksz_device *dev = ds->priv;
180 mutex_lock(&dev->dev_mutex);
181 dev->br_member |= (1 << port);
182 mutex_unlock(&dev->dev_mutex);
184 /* port_stp_state_set() will be called after to put the port in
185 * appropriate state so there is no need to do anything.
190 EXPORT_SYMBOL_GPL(ksz_port_bridge_join);
192 void ksz_port_bridge_leave(struct dsa_switch *ds, int port,
193 struct net_device *br)
195 struct ksz_device *dev = ds->priv;
197 mutex_lock(&dev->dev_mutex);
198 dev->br_member &= ~(1 << port);
199 dev->member &= ~(1 << port);
200 mutex_unlock(&dev->dev_mutex);
202 /* port_stp_state_set() will be called after to put the port in
203 * forwarding state so there is no need to do anything.
206 EXPORT_SYMBOL_GPL(ksz_port_bridge_leave);
208 void ksz_port_fast_age(struct dsa_switch *ds, int port)
210 struct ksz_device *dev = ds->priv;
212 dev->dev_ops->flush_dyn_mac_table(dev, port);
214 EXPORT_SYMBOL_GPL(ksz_port_fast_age);
216 int ksz_port_fdb_dump(struct dsa_switch *ds, int port, dsa_fdb_dump_cb_t *cb,
219 struct ksz_device *dev = ds->priv;
226 struct alu_struct alu;
229 alu.is_static = false;
230 ret = dev->dev_ops->r_dyn_mac_table(dev, i, alu.mac, &fid,
233 if (!ret && (member & BIT(port))) {
234 ret = cb(alu.mac, alu.fid, alu.is_static, data);
239 } while (i < entries);
245 EXPORT_SYMBOL_GPL(ksz_port_fdb_dump);
247 int ksz_port_mdb_add(struct dsa_switch *ds, int port,
248 const struct switchdev_obj_port_mdb *mdb)
250 struct ksz_device *dev = ds->priv;
251 struct alu_struct alu;
255 alu.port_forward = 0;
256 for (index = 0; index < dev->num_statics; index++) {
257 if (!dev->dev_ops->r_sta_mac_table(dev, index, &alu)) {
258 /* Found one already in static MAC table. */
259 if (!memcmp(alu.mac, mdb->addr, ETH_ALEN) &&
262 /* Remember the first empty entry. */
268 /* no available entry */
269 if (index == dev->num_statics && !empty)
273 if (index == dev->num_statics) {
275 memset(&alu, 0, sizeof(alu));
276 memcpy(alu.mac, mdb->addr, ETH_ALEN);
277 alu.is_static = true;
279 alu.port_forward |= BIT(port);
281 alu.is_use_fid = true;
283 /* Need a way to map VID to FID. */
286 dev->dev_ops->w_sta_mac_table(dev, index, &alu);
290 EXPORT_SYMBOL_GPL(ksz_port_mdb_add);
292 int ksz_port_mdb_del(struct dsa_switch *ds, int port,
293 const struct switchdev_obj_port_mdb *mdb)
295 struct ksz_device *dev = ds->priv;
296 struct alu_struct alu;
300 for (index = 0; index < dev->num_statics; index++) {
301 if (!dev->dev_ops->r_sta_mac_table(dev, index, &alu)) {
302 /* Found one already in static MAC table. */
303 if (!memcmp(alu.mac, mdb->addr, ETH_ALEN) &&
309 /* no available entry */
310 if (index == dev->num_statics)
314 alu.port_forward &= ~BIT(port);
315 if (!alu.port_forward)
316 alu.is_static = false;
317 dev->dev_ops->w_sta_mac_table(dev, index, &alu);
322 EXPORT_SYMBOL_GPL(ksz_port_mdb_del);
324 int ksz_enable_port(struct dsa_switch *ds, int port, struct phy_device *phy)
326 struct ksz_device *dev = ds->priv;
328 if (!dsa_is_user_port(ds, port))
331 /* setup slave port */
332 dev->dev_ops->port_setup(dev, port, false);
334 /* port_stp_state_set() will be called after to enable the port so
335 * there is no need to do anything.
340 EXPORT_SYMBOL_GPL(ksz_enable_port);
342 struct ksz_device *ksz_switch_alloc(struct device *base, void *priv)
344 struct dsa_switch *ds;
345 struct ksz_device *swdev;
347 ds = devm_kzalloc(base, sizeof(*ds), GFP_KERNEL);
352 ds->num_ports = DSA_MAX_PORTS;
354 swdev = devm_kzalloc(base, sizeof(*swdev), GFP_KERNEL);
366 EXPORT_SYMBOL(ksz_switch_alloc);
368 int ksz_switch_register(struct ksz_device *dev,
369 const struct ksz_dev_ops *ops)
371 struct device_node *port, *ports;
372 phy_interface_t interface;
373 unsigned int port_num;
377 dev->chip_id = dev->pdata->chip_id;
379 dev->reset_gpio = devm_gpiod_get_optional(dev->dev, "reset",
381 if (IS_ERR(dev->reset_gpio))
382 return PTR_ERR(dev->reset_gpio);
384 if (dev->reset_gpio) {
385 gpiod_set_value_cansleep(dev->reset_gpio, 1);
386 usleep_range(10000, 12000);
387 gpiod_set_value_cansleep(dev->reset_gpio, 0);
391 mutex_init(&dev->dev_mutex);
392 mutex_init(&dev->regmap_mutex);
393 mutex_init(&dev->alu_mutex);
394 mutex_init(&dev->vlan_mutex);
398 if (dev->dev_ops->detect(dev))
401 ret = dev->dev_ops->init(dev);
405 /* Host port interface will be self detected, or specifically set in
408 for (port_num = 0; port_num < dev->port_cnt; ++port_num)
409 dev->ports[port_num].interface = PHY_INTERFACE_MODE_NA;
410 if (dev->dev->of_node) {
411 ret = of_get_phy_mode(dev->dev->of_node, &interface);
413 dev->compat_interface = interface;
414 ports = of_get_child_by_name(dev->dev->of_node, "ethernet-ports");
416 ports = of_get_child_by_name(dev->dev->of_node, "ports");
418 for_each_available_child_of_node(ports, port) {
419 if (of_property_read_u32(port, "reg",
422 if (!(dev->port_mask & BIT(port_num)))
424 of_get_phy_mode(port,
425 &dev->ports[port_num].interface);
427 dev->synclko_125 = of_property_read_bool(dev->dev->of_node,
428 "microchip,synclko-125");
431 ret = dsa_register_switch(dev->ds);
433 dev->dev_ops->exit(dev);
437 /* Read MIB counters every 30 seconds to avoid overflow. */
438 dev->mib_read_interval = msecs_to_jiffies(30000);
440 /* Start the MIB timer. */
441 schedule_delayed_work(&dev->mib_read, 0);
445 EXPORT_SYMBOL(ksz_switch_register);
447 void ksz_switch_remove(struct ksz_device *dev)
450 if (dev->mib_read_interval)
451 cancel_delayed_work_sync(&dev->mib_read);
453 dev->dev_ops->exit(dev);
454 dsa_unregister_switch(dev->ds);
457 gpiod_set_value_cansleep(dev->reset_gpio, 1);
460 EXPORT_SYMBOL(ksz_switch_remove);
463 MODULE_DESCRIPTION("Microchip KSZ Series Switch DSA Driver");
464 MODULE_LICENSE("GPL");