blob: ddc0f9236928891ffbb2f417df66ef4daf4950d6 [file] [log] [blame]
Thomas Gleixner2874c5f2019-05-27 08:55:01 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Lennert Buytenhek91da11f2008-10-07 13:44:02 +00002/*
3 * net/dsa/slave.c - Slave device handling
Lennert Buytenheke84665c2009-03-20 09:52:09 +00004 * Copyright (c) 2008-2009 Marvell Semiconductor
Lennert Buytenhek91da11f2008-10-07 13:44:02 +00005 */
6
7#include <linux/list.h>
Lennert Buytenhekdf02c6f2008-11-10 21:53:12 -08008#include <linux/etherdevice.h>
Florian Fainellib73adef2015-02-24 13:15:33 -08009#include <linux/netdevice.h>
Lennert Buytenhek91da11f2008-10-07 13:44:02 +000010#include <linux/phy.h>
Florian Fainellia2820542014-10-17 16:02:13 -070011#include <linux/phy_fixed.h>
Florian Fainelliaab9c402018-05-10 13:17:36 -070012#include <linux/phylink.h>
Florian Fainelli0d8bcdd2014-08-27 17:04:51 -070013#include <linux/of_net.h>
14#include <linux/of_mdio.h>
Andrew Lunn7f854422016-01-06 20:11:18 +010015#include <linux/mdio.h>
Florian Fainellib73adef2015-02-24 13:15:33 -080016#include <net/rtnetlink.h>
Florian Fainellif50f2122017-01-30 12:41:40 -080017#include <net/pkt_cls.h>
18#include <net/tc_act/tc_mirred.h>
Florian Fainellib73adef2015-02-24 13:15:33 -080019#include <linux/if_bridge.h>
Florian Fainelli04ff53f2015-07-31 11:42:57 -070020#include <linux/netpoll.h>
Brandon Streiff90af1052018-02-14 01:07:49 +010021#include <linux/ptp_classify.h>
Vivien Didelotea5dd342017-05-17 15:46:03 -040022
Lennert Buytenhek91da11f2008-10-07 13:44:02 +000023#include "dsa_priv.h"
24
25/* slave mii_bus handling ***************************************************/
26static int dsa_slave_phy_read(struct mii_bus *bus, int addr, int reg)
27{
28 struct dsa_switch *ds = bus->priv;
29
Florian Fainelli0d8bcdd2014-08-27 17:04:51 -070030 if (ds->phys_mii_mask & (1 << addr))
Vivien Didelot9d490b42016-08-23 12:38:56 -040031 return ds->ops->phy_read(ds, addr, reg);
Lennert Buytenhek91da11f2008-10-07 13:44:02 +000032
33 return 0xffff;
34}
35
36static int dsa_slave_phy_write(struct mii_bus *bus, int addr, int reg, u16 val)
37{
38 struct dsa_switch *ds = bus->priv;
39
Florian Fainelli0d8bcdd2014-08-27 17:04:51 -070040 if (ds->phys_mii_mask & (1 << addr))
Vivien Didelot9d490b42016-08-23 12:38:56 -040041 return ds->ops->phy_write(ds, addr, reg, val);
Lennert Buytenhek91da11f2008-10-07 13:44:02 +000042
43 return 0;
44}
45
46void dsa_slave_mii_bus_init(struct dsa_switch *ds)
47{
48 ds->slave_mii_bus->priv = (void *)ds;
49 ds->slave_mii_bus->name = "dsa slave smi";
50 ds->slave_mii_bus->read = dsa_slave_phy_read;
51 ds->slave_mii_bus->write = dsa_slave_phy_write;
Florian Fainelli0b7b4982016-06-07 16:32:38 -070052 snprintf(ds->slave_mii_bus->id, MII_BUS_ID_SIZE, "dsa-%d.%d",
Vivien Didelot49463b72017-11-03 19:05:21 -040053 ds->dst->index, ds->index);
Andrew Lunnc33063d2016-05-10 23:27:23 +020054 ds->slave_mii_bus->parent = ds->dev;
Vivien Didelot24df8982015-01-20 19:13:32 -050055 ds->slave_mii_bus->phy_mask = ~ds->phys_mii_mask;
Lennert Buytenhek91da11f2008-10-07 13:44:02 +000056}
57
58
59/* slave device handling ****************************************************/
Nicolas Dichtelabd2be02015-04-02 17:07:08 +020060static int dsa_slave_get_iflink(const struct net_device *dev)
Lennert Buytenhekc0840802009-03-20 09:49:49 +000061{
Vivien Didelotd0006b02017-10-16 11:12:16 -040062 return dsa_slave_to_master(dev)->ifindex;
Lennert Buytenhekc0840802009-03-20 09:49:49 +000063}
64
Lennert Buytenhek91da11f2008-10-07 13:44:02 +000065static int dsa_slave_open(struct net_device *dev)
66{
Vivien Didelotd0006b02017-10-16 11:12:16 -040067 struct net_device *master = dsa_slave_to_master(dev);
Vivien Didelotd9450972017-10-16 11:12:15 -040068 struct dsa_port *dp = dsa_slave_to_port(dev);
Lennert Buytenhekdf02c6f2008-11-10 21:53:12 -080069 int err;
70
71 if (!(master->flags & IFF_UP))
72 return -ENETDOWN;
73
Joe Perches8feedbb2012-05-08 18:56:57 +000074 if (!ether_addr_equal(dev->dev_addr, master->dev_addr)) {
Jiri Pirkoa748ee22010-04-01 21:22:09 +000075 err = dev_uc_add(master, dev->dev_addr);
Lennert Buytenhekdf02c6f2008-11-10 21:53:12 -080076 if (err < 0)
77 goto out;
78 }
79
80 if (dev->flags & IFF_ALLMULTI) {
81 err = dev_set_allmulti(master, 1);
82 if (err < 0)
83 goto del_unicast;
84 }
85 if (dev->flags & IFF_PROMISC) {
86 err = dev_set_promiscuity(master, 1);
87 if (err < 0)
88 goto clear_allmulti;
89 }
90
Russell King8640f8d2020-03-03 15:01:46 +000091 err = dsa_port_enable_rt(dp, dev->phydev);
Vivien Didelotfb8a6a22017-09-22 19:01:56 -040092 if (err)
93 goto clear_promisc;
Florian Fainellib73adef2015-02-24 13:15:33 -080094
Lennert Buytenhek91da11f2008-10-07 13:44:02 +000095 return 0;
Lennert Buytenhekdf02c6f2008-11-10 21:53:12 -080096
Florian Fainellib2f2af22014-09-24 17:05:18 -070097clear_promisc:
98 if (dev->flags & IFF_PROMISC)
Gilad Ben-Yossef4fdeddf2015-06-25 16:50:13 +030099 dev_set_promiscuity(master, -1);
Lennert Buytenhekdf02c6f2008-11-10 21:53:12 -0800100clear_allmulti:
101 if (dev->flags & IFF_ALLMULTI)
102 dev_set_allmulti(master, -1);
103del_unicast:
Joe Perches8feedbb2012-05-08 18:56:57 +0000104 if (!ether_addr_equal(dev->dev_addr, master->dev_addr))
Jiri Pirkoa748ee22010-04-01 21:22:09 +0000105 dev_uc_del(master, dev->dev_addr);
Lennert Buytenhekdf02c6f2008-11-10 21:53:12 -0800106out:
107 return err;
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000108}
109
110static int dsa_slave_close(struct net_device *dev)
111{
Vivien Didelotd0006b02017-10-16 11:12:16 -0400112 struct net_device *master = dsa_slave_to_master(dev);
Vivien Didelotd9450972017-10-16 11:12:15 -0400113 struct dsa_port *dp = dsa_slave_to_port(dev);
Lennert Buytenhekdf02c6f2008-11-10 21:53:12 -0800114
Russell King8640f8d2020-03-03 15:01:46 +0000115 dsa_port_disable_rt(dp);
Vivien Didelot6457edf2017-09-22 19:01:55 -0400116
Lennert Buytenhekdf02c6f2008-11-10 21:53:12 -0800117 dev_mc_unsync(master, dev);
Jiri Pirkoa748ee22010-04-01 21:22:09 +0000118 dev_uc_unsync(master, dev);
Lennert Buytenhekdf02c6f2008-11-10 21:53:12 -0800119 if (dev->flags & IFF_ALLMULTI)
120 dev_set_allmulti(master, -1);
121 if (dev->flags & IFF_PROMISC)
122 dev_set_promiscuity(master, -1);
123
Joe Perches8feedbb2012-05-08 18:56:57 +0000124 if (!ether_addr_equal(dev->dev_addr, master->dev_addr))
Jiri Pirkoa748ee22010-04-01 21:22:09 +0000125 dev_uc_del(master, dev->dev_addr);
Lennert Buytenhekdf02c6f2008-11-10 21:53:12 -0800126
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000127 return 0;
128}
129
130static void dsa_slave_change_rx_flags(struct net_device *dev, int change)
131{
Vivien Didelotd0006b02017-10-16 11:12:16 -0400132 struct net_device *master = dsa_slave_to_master(dev);
Rundong Ge17ab4f62019-02-02 14:29:35 +0000133 if (dev->flags & IFF_UP) {
134 if (change & IFF_ALLMULTI)
135 dev_set_allmulti(master,
136 dev->flags & IFF_ALLMULTI ? 1 : -1);
137 if (change & IFF_PROMISC)
138 dev_set_promiscuity(master,
139 dev->flags & IFF_PROMISC ? 1 : -1);
140 }
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000141}
142
143static void dsa_slave_set_rx_mode(struct net_device *dev)
144{
Vivien Didelotd0006b02017-10-16 11:12:16 -0400145 struct net_device *master = dsa_slave_to_master(dev);
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000146
147 dev_mc_sync(master, dev);
Jiri Pirkoa748ee22010-04-01 21:22:09 +0000148 dev_uc_sync(master, dev);
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000149}
150
Lennert Buytenhekdf02c6f2008-11-10 21:53:12 -0800151static int dsa_slave_set_mac_address(struct net_device *dev, void *a)
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000152{
Vivien Didelotd0006b02017-10-16 11:12:16 -0400153 struct net_device *master = dsa_slave_to_master(dev);
Lennert Buytenhekdf02c6f2008-11-10 21:53:12 -0800154 struct sockaddr *addr = a;
155 int err;
156
157 if (!is_valid_ether_addr(addr->sa_data))
158 return -EADDRNOTAVAIL;
159
160 if (!(dev->flags & IFF_UP))
161 goto out;
162
Joe Perches8feedbb2012-05-08 18:56:57 +0000163 if (!ether_addr_equal(addr->sa_data, master->dev_addr)) {
Jiri Pirkoa748ee22010-04-01 21:22:09 +0000164 err = dev_uc_add(master, addr->sa_data);
Lennert Buytenhekdf02c6f2008-11-10 21:53:12 -0800165 if (err < 0)
166 return err;
167 }
168
Joe Perches8feedbb2012-05-08 18:56:57 +0000169 if (!ether_addr_equal(dev->dev_addr, master->dev_addr))
Jiri Pirkoa748ee22010-04-01 21:22:09 +0000170 dev_uc_del(master, dev->dev_addr);
Lennert Buytenhekdf02c6f2008-11-10 21:53:12 -0800171
172out:
Joe Perchesd08f1612014-01-20 09:52:20 -0800173 ether_addr_copy(dev->dev_addr, addr->sa_data);
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000174
175 return 0;
176}
177
Arkadi Sharshevsky2bedde12017-08-06 16:15:49 +0300178struct dsa_slave_dump_ctx {
179 struct net_device *dev;
180 struct sk_buff *skb;
181 struct netlink_callback *cb;
182 int idx;
183};
184
185static int
186dsa_slave_port_fdb_do_dump(const unsigned char *addr, u16 vid,
187 bool is_static, void *data)
188{
189 struct dsa_slave_dump_ctx *dump = data;
190 u32 portid = NETLINK_CB(dump->cb->skb).portid;
191 u32 seq = dump->cb->nlh->nlmsg_seq;
192 struct nlmsghdr *nlh;
193 struct ndmsg *ndm;
194
195 if (dump->idx < dump->cb->args[2])
196 goto skip;
197
198 nlh = nlmsg_put(dump->skb, portid, seq, RTM_NEWNEIGH,
199 sizeof(*ndm), NLM_F_MULTI);
200 if (!nlh)
201 return -EMSGSIZE;
202
203 ndm = nlmsg_data(nlh);
204 ndm->ndm_family = AF_BRIDGE;
205 ndm->ndm_pad1 = 0;
206 ndm->ndm_pad2 = 0;
207 ndm->ndm_flags = NTF_SELF;
208 ndm->ndm_type = 0;
209 ndm->ndm_ifindex = dump->dev->ifindex;
210 ndm->ndm_state = is_static ? NUD_NOARP : NUD_REACHABLE;
211
212 if (nla_put(dump->skb, NDA_LLADDR, ETH_ALEN, addr))
213 goto nla_put_failure;
214
215 if (vid && nla_put_u16(dump->skb, NDA_VLAN, vid))
216 goto nla_put_failure;
217
218 nlmsg_end(dump->skb, nlh);
219
220skip:
221 dump->idx++;
222 return 0;
223
224nla_put_failure:
225 nlmsg_cancel(dump->skb, nlh);
226 return -EMSGSIZE;
227}
228
229static int
230dsa_slave_fdb_dump(struct sk_buff *skb, struct netlink_callback *cb,
231 struct net_device *dev, struct net_device *filter_dev,
232 int *idx)
233{
Vivien Didelotd9450972017-10-16 11:12:15 -0400234 struct dsa_port *dp = dsa_slave_to_port(dev);
Arkadi Sharshevsky2bedde12017-08-06 16:15:49 +0300235 struct dsa_slave_dump_ctx dump = {
236 .dev = dev,
237 .skb = skb,
238 .cb = cb,
239 .idx = *idx,
240 };
Arkadi Sharshevsky2bedde12017-08-06 16:15:49 +0300241 int err;
242
Vivien Didelotde40fc52017-09-20 19:32:14 -0400243 err = dsa_port_fdb_dump(dp, dsa_slave_port_fdb_do_dump, &dump);
Arkadi Sharshevsky2bedde12017-08-06 16:15:49 +0300244 *idx = dump.idx;
Vivien Didelotde40fc52017-09-20 19:32:14 -0400245
Arkadi Sharshevsky2bedde12017-08-06 16:15:49 +0300246 return err;
247}
248
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000249static int dsa_slave_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
250{
Brandon Streiff03363692018-02-14 01:07:48 +0100251 struct dsa_slave_priv *p = netdev_priv(dev);
252 struct dsa_switch *ds = p->dp->ds;
253 int port = p->dp->index;
254
255 /* Pass through to switch driver if it supports timestamping */
256 switch (cmd) {
257 case SIOCGHWTSTAMP:
258 if (ds->ops->port_hwtstamp_get)
259 return ds->ops->port_hwtstamp_get(ds, port, ifr);
260 break;
261 case SIOCSHWTSTAMP:
262 if (ds->ops->port_hwtstamp_set)
263 return ds->ops->port_hwtstamp_set(ds, port, ifr);
264 break;
265 }
266
Florian Fainelliaab9c402018-05-10 13:17:36 -0700267 return phylink_mii_ioctl(p->dp->pl, ifr, cmd);
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000268}
269
Scott Feldman35636062015-05-10 09:47:51 -0700270static int dsa_slave_port_attr_set(struct net_device *dev,
Jiri Pirkof7fadf32015-10-14 19:40:49 +0200271 const struct switchdev_attr *attr,
Jiri Pirko7ea6eb32015-09-24 10:02:41 +0200272 struct switchdev_trans *trans)
Scott Feldman35636062015-05-10 09:47:51 -0700273{
Vivien Didelotd9450972017-10-16 11:12:15 -0400274 struct dsa_port *dp = dsa_slave_to_port(dev);
Vivien Didelotb8d866a2015-09-29 12:38:36 -0400275 int ret;
Scott Feldman35636062015-05-10 09:47:51 -0700276
277 switch (attr->id) {
Jiri Pirko1f868392015-10-01 11:03:42 +0200278 case SWITCHDEV_ATTR_ID_PORT_STP_STATE:
Vivien Didelotfd364542017-05-19 17:00:36 -0400279 ret = dsa_port_set_state(dp, attr->u.stp_state, trans);
Scott Feldman35636062015-05-10 09:47:51 -0700280 break;
Vivien Didelotfb2daba2016-02-26 13:16:00 -0500281 case SWITCHDEV_ATTR_ID_BRIDGE_VLAN_FILTERING:
Vivien Didelotc02c4172017-05-19 17:00:42 -0400282 ret = dsa_port_vlan_filtering(dp, attr->u.vlan_filtering,
283 trans);
Vivien Didelotfb2daba2016-02-26 13:16:00 -0500284 break;
Vivien Didelot34a79f62016-07-18 20:45:38 -0400285 case SWITCHDEV_ATTR_ID_BRIDGE_AGEING_TIME:
Vivien Didelot072bb192017-05-19 17:00:43 -0400286 ret = dsa_port_ageing_time(dp, attr->u.ageing_time, trans);
Vivien Didelot34a79f62016-07-18 20:45:38 -0400287 break;
Florian Fainelliea870052019-02-20 16:58:22 -0800288 case SWITCHDEV_ATTR_ID_PORT_PRE_BRIDGE_FLAGS:
289 ret = dsa_port_pre_bridge_flags(dp, attr->u.brport_flags,
290 trans);
291 break;
Russell King57652792019-02-20 15:35:04 -0800292 case SWITCHDEV_ATTR_ID_PORT_BRIDGE_FLAGS:
293 ret = dsa_port_bridge_flags(dp, attr->u.brport_flags, trans);
294 break;
Vivien Didelot08cc83c2019-07-08 23:31:13 -0400295 case SWITCHDEV_ATTR_ID_BRIDGE_MROUTER:
296 ret = dsa_port_mrouter(dp->cpu_dp, attr->u.mrouter, trans);
297 break;
Scott Feldman35636062015-05-10 09:47:51 -0700298 default:
299 ret = -EOPNOTSUPP;
300 break;
301 }
302
303 return ret;
304}
305
Vivien Didelotbdcff082019-08-25 13:25:17 -0400306static int dsa_slave_vlan_add(struct net_device *dev,
307 const struct switchdev_obj *obj,
308 struct switchdev_trans *trans)
309{
310 struct dsa_port *dp = dsa_slave_to_port(dev);
311 struct switchdev_obj_port_vlan vlan;
312 int err;
313
314 if (obj->orig_dev != dev)
315 return -EOPNOTSUPP;
316
Vivien Didelotc5335d72019-08-25 13:25:18 -0400317 if (dp->bridge_dev && !br_vlan_enabled(dp->bridge_dev))
318 return 0;
319
Vivien Didelotbdcff082019-08-25 13:25:17 -0400320 vlan = *SWITCHDEV_OBJ_PORT_VLAN(obj);
321
322 err = dsa_port_vlan_add(dp, &vlan, trans);
323 if (err)
324 return err;
325
Vivien Didelotb9499902019-08-25 13:25:20 -0400326 /* We need the dedicated CPU port to be a member of the VLAN as well.
327 * Even though drivers often handle CPU membership in special ways,
328 * it doesn't make sense to program a PVID, so clear this flag.
329 */
330 vlan.flags &= ~BRIDGE_VLAN_INFO_PVID;
331
Vivien Didelot7e1741b2019-08-25 13:25:19 -0400332 err = dsa_port_vlan_add(dp->cpu_dp, &vlan, trans);
333 if (err)
334 return err;
335
Vivien Didelotbdcff082019-08-25 13:25:17 -0400336 return 0;
337}
338
Vivien Didelotba14d9e2015-08-10 09:09:53 -0400339static int dsa_slave_port_obj_add(struct net_device *dev,
Jiri Pirko648b4a92015-10-01 11:03:45 +0200340 const struct switchdev_obj *obj,
Vivien Didelot79b139f2019-06-14 13:49:22 -0400341 struct switchdev_trans *trans,
342 struct netlink_ext_ack *extack)
Vivien Didelotba14d9e2015-08-10 09:09:53 -0400343{
Vivien Didelotd9450972017-10-16 11:12:15 -0400344 struct dsa_port *dp = dsa_slave_to_port(dev);
Vivien Didelotba14d9e2015-08-10 09:09:53 -0400345 int err;
346
347 /* For the prepare phase, ensure the full set of changes is feasable in
348 * one go in order to signal a failure properly. If an operation is not
349 * supported, return -EOPNOTSUPP.
350 */
351
Jiri Pirko9e8f4a52015-10-01 11:03:46 +0200352 switch (obj->id) {
Vivien Didelot8df30252016-08-31 11:50:03 -0400353 case SWITCHDEV_OBJ_ID_PORT_MDB:
Vivien Didelot79b139f2019-06-14 13:49:22 -0400354 if (obj->orig_dev != dev)
355 return -EOPNOTSUPP;
Vivien Didelotbcebb972017-05-19 17:00:40 -0400356 err = dsa_port_mdb_add(dp, SWITCHDEV_OBJ_PORT_MDB(obj), trans);
Vivien Didelot8df30252016-08-31 11:50:03 -0400357 break;
Andrew Lunn5f4dbc52017-11-09 23:11:00 +0100358 case SWITCHDEV_OBJ_ID_HOST_MDB:
359 /* DSA can directly translate this to a normal MDB add,
360 * but on the CPU port.
361 */
362 err = dsa_port_mdb_add(dp->cpu_dp, SWITCHDEV_OBJ_PORT_MDB(obj),
363 trans);
364 break;
Jiri Pirko57d80832015-10-01 11:03:41 +0200365 case SWITCHDEV_OBJ_ID_PORT_VLAN:
Vivien Didelotbdcff082019-08-25 13:25:17 -0400366 err = dsa_slave_vlan_add(dev, obj, trans);
Vivien Didelot11149532015-08-13 12:52:17 -0400367 break;
Vivien Didelotba14d9e2015-08-10 09:09:53 -0400368 default:
369 err = -EOPNOTSUPP;
370 break;
371 }
372
373 return err;
374}
375
Vivien Didelotbdcff082019-08-25 13:25:17 -0400376static int dsa_slave_vlan_del(struct net_device *dev,
377 const struct switchdev_obj *obj)
378{
379 struct dsa_port *dp = dsa_slave_to_port(dev);
380
381 if (obj->orig_dev != dev)
382 return -EOPNOTSUPP;
383
Vivien Didelotc5335d72019-08-25 13:25:18 -0400384 if (dp->bridge_dev && !br_vlan_enabled(dp->bridge_dev))
385 return 0;
386
Vivien Didelot7e1741b2019-08-25 13:25:19 -0400387 /* Do not deprogram the CPU port as it may be shared with other user
388 * ports which can be members of this VLAN as well.
389 */
Vivien Didelotbdcff082019-08-25 13:25:17 -0400390 return dsa_port_vlan_del(dp, SWITCHDEV_OBJ_PORT_VLAN(obj));
391}
392
Vivien Didelotba14d9e2015-08-10 09:09:53 -0400393static int dsa_slave_port_obj_del(struct net_device *dev,
Jiri Pirko648b4a92015-10-01 11:03:45 +0200394 const struct switchdev_obj *obj)
Vivien Didelotba14d9e2015-08-10 09:09:53 -0400395{
Vivien Didelotd9450972017-10-16 11:12:15 -0400396 struct dsa_port *dp = dsa_slave_to_port(dev);
Vivien Didelotba14d9e2015-08-10 09:09:53 -0400397 int err;
398
Jiri Pirko9e8f4a52015-10-01 11:03:46 +0200399 switch (obj->id) {
Vivien Didelot8df30252016-08-31 11:50:03 -0400400 case SWITCHDEV_OBJ_ID_PORT_MDB:
Vivien Didelot79b139f2019-06-14 13:49:22 -0400401 if (obj->orig_dev != dev)
402 return -EOPNOTSUPP;
Vivien Didelotbcebb972017-05-19 17:00:40 -0400403 err = dsa_port_mdb_del(dp, SWITCHDEV_OBJ_PORT_MDB(obj));
Vivien Didelot8df30252016-08-31 11:50:03 -0400404 break;
Andrew Lunn5f4dbc52017-11-09 23:11:00 +0100405 case SWITCHDEV_OBJ_ID_HOST_MDB:
406 /* DSA can directly translate this to a normal MDB add,
407 * but on the CPU port.
408 */
409 err = dsa_port_mdb_del(dp->cpu_dp, SWITCHDEV_OBJ_PORT_MDB(obj));
410 break;
Jiri Pirko57d80832015-10-01 11:03:41 +0200411 case SWITCHDEV_OBJ_ID_PORT_VLAN:
Vivien Didelotbdcff082019-08-25 13:25:17 -0400412 err = dsa_slave_vlan_del(dev, obj);
Vivien Didelot11149532015-08-13 12:52:17 -0400413 break;
Vivien Didelotba14d9e2015-08-10 09:09:53 -0400414 default:
415 err = -EOPNOTSUPP;
416 break;
417 }
418
419 return err;
420}
421
Florian Fainelli929d6c12019-02-06 09:45:45 -0800422static int dsa_slave_get_port_parent_id(struct net_device *dev,
423 struct netdev_phys_item_id *ppid)
Florian Fainellib73adef2015-02-24 13:15:33 -0800424{
Vivien Didelotd9450972017-10-16 11:12:15 -0400425 struct dsa_port *dp = dsa_slave_to_port(dev);
426 struct dsa_switch *ds = dp->ds;
Andrew Lunna42c8e32017-11-09 22:29:51 +0100427 struct dsa_switch_tree *dst = ds->dst;
Florian Fainellib73adef2015-02-24 13:15:33 -0800428
Jiri Pirko15b04ac2019-04-03 14:24:26 +0200429 /* For non-legacy ports, devlink is used and it takes
430 * care of the name generation. This ndo implementation
431 * should be removed with legacy support.
432 */
433 if (dp->ds->devlink)
434 return -EOPNOTSUPP;
435
Florian Fainelli929d6c12019-02-06 09:45:45 -0800436 ppid->id_len = sizeof(dst->index);
437 memcpy(&ppid->id, &dst->index, ppid->id_len);
438
439 return 0;
440}
441
Vivien Didelot4fa7b712017-09-20 19:31:57 -0400442static inline netdev_tx_t dsa_slave_netpoll_send_skb(struct net_device *dev,
443 struct sk_buff *skb)
Florian Fainelli04ff53f2015-07-31 11:42:57 -0700444{
445#ifdef CONFIG_NET_POLL_CONTROLLER
Vivien Didelot4fa7b712017-09-20 19:31:57 -0400446 struct dsa_slave_priv *p = netdev_priv(dev);
447
Florian Fainelli04ff53f2015-07-31 11:42:57 -0700448 if (p->netpoll)
449 netpoll_send_skb(p->netpoll, skb);
450#else
451 BUG();
452#endif
453 return NETDEV_TX_OK;
454}
455
Brandon Streiff90af1052018-02-14 01:07:49 +0100456static void dsa_skb_tx_timestamp(struct dsa_slave_priv *p,
457 struct sk_buff *skb)
458{
459 struct dsa_switch *ds = p->dp->ds;
460 struct sk_buff *clone;
461 unsigned int type;
462
463 type = ptp_classify_raw(skb);
464 if (type == PTP_CLASS_NONE)
465 return;
466
467 if (!ds->ops->port_txtstamp)
468 return;
469
470 clone = skb_clone_sk(skb);
471 if (!clone)
472 return;
473
Vladimir Oltean146d4422019-06-08 15:04:27 +0300474 DSA_SKB_CB(skb)->clone = clone;
475
Brandon Streiff90af1052018-02-14 01:07:49 +0100476 if (ds->ops->port_txtstamp(ds, p->dp->index, clone, type))
477 return;
478
479 kfree_skb(clone);
480}
481
Vladimir Oltean97a69a02019-05-05 13:19:25 +0300482netdev_tx_t dsa_enqueue_skb(struct sk_buff *skb, struct net_device *dev)
483{
484 /* SKB for netpoll still need to be mangled with the protocol-specific
485 * tag to be successfully transmitted
486 */
487 if (unlikely(netpoll_tx_running(dev)))
488 return dsa_slave_netpoll_send_skb(dev, skb);
489
490 /* Queue the SKB for transmission on the parent interface, but
491 * do not modify its EtherType
492 */
493 skb->dev = dsa_slave_to_master(dev);
494 dev_queue_xmit(skb);
495
496 return NETDEV_TX_OK;
497}
498EXPORT_SYMBOL_GPL(dsa_enqueue_skb);
499
Florian Fainelli3e8a72d2014-08-27 17:04:46 -0700500static netdev_tx_t dsa_slave_xmit(struct sk_buff *skb, struct net_device *dev)
501{
502 struct dsa_slave_priv *p = netdev_priv(dev);
Florian Fainelli5f6b4e142017-08-03 21:33:27 -0700503 struct pcpu_sw_netstats *s;
Florian Fainelli4ed70ce2015-07-31 11:42:56 -0700504 struct sk_buff *nskb;
Florian Fainelli3e8a72d2014-08-27 17:04:46 -0700505
Florian Fainelli5f6b4e142017-08-03 21:33:27 -0700506 s = this_cpu_ptr(p->stats64);
507 u64_stats_update_begin(&s->syncp);
508 s->tx_packets++;
509 s->tx_bytes += skb->len;
510 u64_stats_update_end(&s->syncp);
Florian Fainelli3e8a72d2014-08-27 17:04:46 -0700511
Vladimir Oltean146d4422019-06-08 15:04:27 +0300512 DSA_SKB_CB(skb)->clone = NULL;
Vladimir Oltean87671372019-05-11 23:14:45 +0300513
Brandon Streiff90af1052018-02-14 01:07:49 +0100514 /* Identify PTP protocol packets, clone them, and pass them to the
515 * switch driver
516 */
517 dsa_skb_tx_timestamp(p, skb);
518
Vivien Didelotfe47d562017-06-01 16:07:15 -0400519 /* Transmit function may have to reallocate the original SKB,
520 * in which case it must have freed it. Only free it here on error.
521 */
Florian Fainelli4ed70ce2015-07-31 11:42:56 -0700522 nskb = p->xmit(skb, dev);
Vivien Didelotfe47d562017-06-01 16:07:15 -0400523 if (!nskb) {
Vladimir Olteana68578c22020-01-04 02:37:10 +0200524 kfree_skb(skb);
Florian Fainelli4ed70ce2015-07-31 11:42:56 -0700525 return NETDEV_TX_OK;
Vivien Didelotfe47d562017-06-01 16:07:15 -0400526 }
Florian Fainelli5aed85c2014-08-27 17:04:52 -0700527
Vladimir Oltean97a69a02019-05-05 13:19:25 +0300528 return dsa_enqueue_skb(nskb, dev);
529}
Florian Fainelli04ff53f2015-07-31 11:42:57 -0700530
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000531/* ethtool operations *******************************************************/
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000532
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000533static void dsa_slave_get_drvinfo(struct net_device *dev,
534 struct ethtool_drvinfo *drvinfo)
535{
Jiri Pirko7826d432013-01-06 00:44:26 +0000536 strlcpy(drvinfo->driver, "dsa", sizeof(drvinfo->driver));
Jiri Pirko7826d432013-01-06 00:44:26 +0000537 strlcpy(drvinfo->fw_version, "N/A", sizeof(drvinfo->fw_version));
538 strlcpy(drvinfo->bus_info, "platform", sizeof(drvinfo->bus_info));
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000539}
540
Guenter Roeck3d762a02014-10-29 10:45:04 -0700541static int dsa_slave_get_regs_len(struct net_device *dev)
542{
Vivien Didelotd9450972017-10-16 11:12:15 -0400543 struct dsa_port *dp = dsa_slave_to_port(dev);
544 struct dsa_switch *ds = dp->ds;
Guenter Roeck3d762a02014-10-29 10:45:04 -0700545
Vivien Didelot9d490b42016-08-23 12:38:56 -0400546 if (ds->ops->get_regs_len)
Vivien Didelotd9450972017-10-16 11:12:15 -0400547 return ds->ops->get_regs_len(ds, dp->index);
Guenter Roeck3d762a02014-10-29 10:45:04 -0700548
549 return -EOPNOTSUPP;
550}
551
552static void
553dsa_slave_get_regs(struct net_device *dev, struct ethtool_regs *regs, void *_p)
554{
Vivien Didelotd9450972017-10-16 11:12:15 -0400555 struct dsa_port *dp = dsa_slave_to_port(dev);
556 struct dsa_switch *ds = dp->ds;
Guenter Roeck3d762a02014-10-29 10:45:04 -0700557
Vivien Didelot9d490b42016-08-23 12:38:56 -0400558 if (ds->ops->get_regs)
Vivien Didelotd9450972017-10-16 11:12:15 -0400559 ds->ops->get_regs(ds, dp->index, regs, _p);
Guenter Roeck3d762a02014-10-29 10:45:04 -0700560}
561
Florian Fainelliaab9c402018-05-10 13:17:36 -0700562static int dsa_slave_nway_reset(struct net_device *dev)
563{
564 struct dsa_port *dp = dsa_slave_to_port(dev);
565
566 return phylink_ethtool_nway_reset(dp->pl);
567}
568
Guenter Roeck6793abb2014-10-29 10:45:01 -0700569static int dsa_slave_get_eeprom_len(struct net_device *dev)
570{
Vivien Didelotd9450972017-10-16 11:12:15 -0400571 struct dsa_port *dp = dsa_slave_to_port(dev);
572 struct dsa_switch *ds = dp->ds;
Guenter Roeck6793abb2014-10-29 10:45:01 -0700573
Andrew Lunn0e576042016-06-04 21:16:52 +0200574 if (ds->cd && ds->cd->eeprom_len)
Andrew Lunnff049552016-05-10 23:27:24 +0200575 return ds->cd->eeprom_len;
Guenter Roeck6793abb2014-10-29 10:45:01 -0700576
Vivien Didelot9d490b42016-08-23 12:38:56 -0400577 if (ds->ops->get_eeprom_len)
578 return ds->ops->get_eeprom_len(ds);
Guenter Roeck6793abb2014-10-29 10:45:01 -0700579
580 return 0;
581}
582
583static int dsa_slave_get_eeprom(struct net_device *dev,
584 struct ethtool_eeprom *eeprom, u8 *data)
585{
Vivien Didelotd9450972017-10-16 11:12:15 -0400586 struct dsa_port *dp = dsa_slave_to_port(dev);
587 struct dsa_switch *ds = dp->ds;
Guenter Roeck6793abb2014-10-29 10:45:01 -0700588
Vivien Didelot9d490b42016-08-23 12:38:56 -0400589 if (ds->ops->get_eeprom)
590 return ds->ops->get_eeprom(ds, eeprom, data);
Guenter Roeck6793abb2014-10-29 10:45:01 -0700591
592 return -EOPNOTSUPP;
593}
594
595static int dsa_slave_set_eeprom(struct net_device *dev,
596 struct ethtool_eeprom *eeprom, u8 *data)
597{
Vivien Didelotd9450972017-10-16 11:12:15 -0400598 struct dsa_port *dp = dsa_slave_to_port(dev);
599 struct dsa_switch *ds = dp->ds;
Guenter Roeck6793abb2014-10-29 10:45:01 -0700600
Vivien Didelot9d490b42016-08-23 12:38:56 -0400601 if (ds->ops->set_eeprom)
602 return ds->ops->set_eeprom(ds, eeprom, data);
Guenter Roeck6793abb2014-10-29 10:45:01 -0700603
604 return -EOPNOTSUPP;
605}
606
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000607static void dsa_slave_get_strings(struct net_device *dev,
608 uint32_t stringset, uint8_t *data)
609{
Vivien Didelotd9450972017-10-16 11:12:15 -0400610 struct dsa_port *dp = dsa_slave_to_port(dev);
611 struct dsa_switch *ds = dp->ds;
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000612
613 if (stringset == ETH_SS_STATS) {
614 int len = ETH_GSTRING_LEN;
615
616 strncpy(data, "tx_packets", len);
617 strncpy(data + len, "tx_bytes", len);
618 strncpy(data + 2 * len, "rx_packets", len);
619 strncpy(data + 3 * len, "rx_bytes", len);
Vivien Didelot9d490b42016-08-23 12:38:56 -0400620 if (ds->ops->get_strings)
Florian Fainelli89f09042018-04-25 12:12:50 -0700621 ds->ops->get_strings(ds, dp->index, stringset,
622 data + 4 * len);
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000623 }
624}
625
626static void dsa_slave_get_ethtool_stats(struct net_device *dev,
627 struct ethtool_stats *stats,
628 uint64_t *data)
629{
Vivien Didelotd9450972017-10-16 11:12:15 -0400630 struct dsa_port *dp = dsa_slave_to_port(dev);
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000631 struct dsa_slave_priv *p = netdev_priv(dev);
Vivien Didelotd9450972017-10-16 11:12:15 -0400632 struct dsa_switch *ds = dp->ds;
Florian Fainelli5f6b4e142017-08-03 21:33:27 -0700633 struct pcpu_sw_netstats *s;
Florian Fainellif613ed62017-08-01 15:00:36 -0700634 unsigned int start;
Florian Fainelli5f6b4e142017-08-03 21:33:27 -0700635 int i;
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000636
Florian Fainelli5f6b4e142017-08-03 21:33:27 -0700637 for_each_possible_cpu(i) {
638 u64 tx_packets, tx_bytes, rx_packets, rx_bytes;
639
640 s = per_cpu_ptr(p->stats64, i);
641 do {
642 start = u64_stats_fetch_begin_irq(&s->syncp);
643 tx_packets = s->tx_packets;
644 tx_bytes = s->tx_bytes;
645 rx_packets = s->rx_packets;
646 rx_bytes = s->rx_bytes;
647 } while (u64_stats_fetch_retry_irq(&s->syncp, start));
648 data[0] += tx_packets;
649 data[1] += tx_bytes;
650 data[2] += rx_packets;
651 data[3] += rx_bytes;
652 }
Vivien Didelot9d490b42016-08-23 12:38:56 -0400653 if (ds->ops->get_ethtool_stats)
Vivien Didelotd9450972017-10-16 11:12:15 -0400654 ds->ops->get_ethtool_stats(ds, dp->index, data + 4);
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000655}
656
657static int dsa_slave_get_sset_count(struct net_device *dev, int sset)
658{
Vivien Didelotd9450972017-10-16 11:12:15 -0400659 struct dsa_port *dp = dsa_slave_to_port(dev);
660 struct dsa_switch *ds = dp->ds;
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000661
662 if (sset == ETH_SS_STATS) {
663 int count;
664
665 count = 4;
Vivien Didelot9d490b42016-08-23 12:38:56 -0400666 if (ds->ops->get_sset_count)
Florian Fainelli89f09042018-04-25 12:12:50 -0700667 count += ds->ops->get_sset_count(ds, dp->index, sset);
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000668
669 return count;
670 }
671
672 return -EOPNOTSUPP;
673}
674
Florian Fainelli19e57c42014-09-18 17:31:24 -0700675static void dsa_slave_get_wol(struct net_device *dev, struct ethtool_wolinfo *w)
676{
Vivien Didelotd9450972017-10-16 11:12:15 -0400677 struct dsa_port *dp = dsa_slave_to_port(dev);
678 struct dsa_switch *ds = dp->ds;
Florian Fainelli19e57c42014-09-18 17:31:24 -0700679
Florian Fainelliaab9c402018-05-10 13:17:36 -0700680 phylink_ethtool_get_wol(dp->pl, w);
681
Vivien Didelot9d490b42016-08-23 12:38:56 -0400682 if (ds->ops->get_wol)
Vivien Didelotd9450972017-10-16 11:12:15 -0400683 ds->ops->get_wol(ds, dp->index, w);
Florian Fainelli19e57c42014-09-18 17:31:24 -0700684}
685
686static int dsa_slave_set_wol(struct net_device *dev, struct ethtool_wolinfo *w)
687{
Vivien Didelotd9450972017-10-16 11:12:15 -0400688 struct dsa_port *dp = dsa_slave_to_port(dev);
689 struct dsa_switch *ds = dp->ds;
Florian Fainelli19e57c42014-09-18 17:31:24 -0700690 int ret = -EOPNOTSUPP;
691
Florian Fainelliaab9c402018-05-10 13:17:36 -0700692 phylink_ethtool_set_wol(dp->pl, w);
693
Vivien Didelot9d490b42016-08-23 12:38:56 -0400694 if (ds->ops->set_wol)
Vivien Didelotd9450972017-10-16 11:12:15 -0400695 ret = ds->ops->set_wol(ds, dp->index, w);
Florian Fainelli19e57c42014-09-18 17:31:24 -0700696
697 return ret;
698}
699
Florian Fainelli79052882014-09-24 17:05:21 -0700700static int dsa_slave_set_eee(struct net_device *dev, struct ethtool_eee *e)
701{
Vivien Didelotd9450972017-10-16 11:12:15 -0400702 struct dsa_port *dp = dsa_slave_to_port(dev);
703 struct dsa_switch *ds = dp->ds;
Florian Fainelli79052882014-09-24 17:05:21 -0700704 int ret;
705
Vivien Didelot7b9cc732017-08-01 16:32:31 -0400706 /* Port's PHY and MAC both need to be EEE capable */
Dan Carpenter00670cb2019-02-06 18:35:15 +0300707 if (!dev->phydev || !dp->pl)
Vivien Didelot7b9cc732017-08-01 16:32:31 -0400708 return -ENODEV;
709
Vivien Didelot08f50062017-08-01 16:32:41 -0400710 if (!ds->ops->set_mac_eee)
Florian Fainelli79052882014-09-24 17:05:21 -0700711 return -EOPNOTSUPP;
712
Vivien Didelotd9450972017-10-16 11:12:15 -0400713 ret = ds->ops->set_mac_eee(ds, dp->index, e);
Florian Fainelli79052882014-09-24 17:05:21 -0700714 if (ret)
715 return ret;
716
Florian Fainelliaab9c402018-05-10 13:17:36 -0700717 return phylink_ethtool_set_eee(dp->pl, e);
Florian Fainelli79052882014-09-24 17:05:21 -0700718}
719
720static int dsa_slave_get_eee(struct net_device *dev, struct ethtool_eee *e)
721{
Vivien Didelotd9450972017-10-16 11:12:15 -0400722 struct dsa_port *dp = dsa_slave_to_port(dev);
723 struct dsa_switch *ds = dp->ds;
Florian Fainelli79052882014-09-24 17:05:21 -0700724 int ret;
725
Vivien Didelot7b9cc732017-08-01 16:32:31 -0400726 /* Port's PHY and MAC both need to be EEE capable */
Dan Carpenter00670cb2019-02-06 18:35:15 +0300727 if (!dev->phydev || !dp->pl)
Vivien Didelot7b9cc732017-08-01 16:32:31 -0400728 return -ENODEV;
729
Vivien Didelot08f50062017-08-01 16:32:41 -0400730 if (!ds->ops->get_mac_eee)
Florian Fainelli79052882014-09-24 17:05:21 -0700731 return -EOPNOTSUPP;
732
Vivien Didelotd9450972017-10-16 11:12:15 -0400733 ret = ds->ops->get_mac_eee(ds, dp->index, e);
Florian Fainelli79052882014-09-24 17:05:21 -0700734 if (ret)
735 return ret;
736
Florian Fainelliaab9c402018-05-10 13:17:36 -0700737 return phylink_ethtool_get_eee(dp->pl, e);
738}
739
740static int dsa_slave_get_link_ksettings(struct net_device *dev,
741 struct ethtool_link_ksettings *cmd)
742{
743 struct dsa_port *dp = dsa_slave_to_port(dev);
744
745 return phylink_ethtool_ksettings_get(dp->pl, cmd);
746}
747
748static int dsa_slave_set_link_ksettings(struct net_device *dev,
749 const struct ethtool_link_ksettings *cmd)
750{
751 struct dsa_port *dp = dsa_slave_to_port(dev);
752
753 return phylink_ethtool_ksettings_set(dp->pl, cmd);
Florian Fainelli79052882014-09-24 17:05:21 -0700754}
755
Heiner Kallweita2a1a132019-10-29 22:32:48 +0100756static void dsa_slave_get_pauseparam(struct net_device *dev,
757 struct ethtool_pauseparam *pause)
758{
759 struct dsa_port *dp = dsa_slave_to_port(dev);
760
761 phylink_ethtool_get_pauseparam(dp->pl, pause);
762}
763
764static int dsa_slave_set_pauseparam(struct net_device *dev,
765 struct ethtool_pauseparam *pause)
766{
767 struct dsa_port *dp = dsa_slave_to_port(dev);
768
769 return phylink_ethtool_set_pauseparam(dp->pl, pause);
770}
771
Florian Fainelli04ff53f2015-07-31 11:42:57 -0700772#ifdef CONFIG_NET_POLL_CONTROLLER
773static int dsa_slave_netpoll_setup(struct net_device *dev,
774 struct netpoll_info *ni)
775{
Vivien Didelotd0006b02017-10-16 11:12:16 -0400776 struct net_device *master = dsa_slave_to_master(dev);
Florian Fainelli04ff53f2015-07-31 11:42:57 -0700777 struct dsa_slave_priv *p = netdev_priv(dev);
Florian Fainelli04ff53f2015-07-31 11:42:57 -0700778 struct netpoll *netpoll;
779 int err = 0;
780
781 netpoll = kzalloc(sizeof(*netpoll), GFP_KERNEL);
782 if (!netpoll)
783 return -ENOMEM;
784
785 err = __netpoll_setup(netpoll, master);
786 if (err) {
787 kfree(netpoll);
788 goto out;
789 }
790
791 p->netpoll = netpoll;
792out:
793 return err;
794}
795
796static void dsa_slave_netpoll_cleanup(struct net_device *dev)
797{
798 struct dsa_slave_priv *p = netdev_priv(dev);
799 struct netpoll *netpoll = p->netpoll;
800
801 if (!netpoll)
802 return;
803
804 p->netpoll = NULL;
805
Debabrata Banerjeec9fbd712018-10-18 11:18:26 -0400806 __netpoll_free(netpoll);
Florian Fainelli04ff53f2015-07-31 11:42:57 -0700807}
808
809static void dsa_slave_poll_controller(struct net_device *dev)
810{
811}
812#endif
813
Florian Fainelli44bb7652017-01-10 12:32:36 -0800814static int dsa_slave_get_phys_port_name(struct net_device *dev,
815 char *name, size_t len)
816{
Vivien Didelotd9450972017-10-16 11:12:15 -0400817 struct dsa_port *dp = dsa_slave_to_port(dev);
Florian Fainelli44bb7652017-01-10 12:32:36 -0800818
Jiri Pirkod4842102019-03-28 13:56:44 +0100819 /* For non-legacy ports, devlink is used and it takes
820 * care of the name generation. This ndo implementation
821 * should be removed with legacy support.
822 */
823 if (dp->ds->devlink)
824 return -EOPNOTSUPP;
825
Vivien Didelotd9450972017-10-16 11:12:15 -0400826 if (snprintf(name, len, "p%d", dp->index) >= len)
Florian Fainelli44bb7652017-01-10 12:32:36 -0800827 return -EINVAL;
Florian Fainelli3a543ef2016-12-29 14:20:56 -0800828
829 return 0;
830}
831
Florian Fainellif50f2122017-01-30 12:41:40 -0800832static struct dsa_mall_tc_entry *
Vivien Didelot4fa7b712017-09-20 19:31:57 -0400833dsa_slave_mall_tc_entry_find(struct net_device *dev, unsigned long cookie)
Florian Fainellif50f2122017-01-30 12:41:40 -0800834{
Vivien Didelot4fa7b712017-09-20 19:31:57 -0400835 struct dsa_slave_priv *p = netdev_priv(dev);
Florian Fainellif50f2122017-01-30 12:41:40 -0800836 struct dsa_mall_tc_entry *mall_tc_entry;
837
838 list_for_each_entry(mall_tc_entry, &p->mall_tc_list, list)
839 if (mall_tc_entry->cookie == cookie)
840 return mall_tc_entry;
841
842 return NULL;
843}
844
845static int dsa_slave_add_cls_matchall(struct net_device *dev,
Florian Fainellif50f2122017-01-30 12:41:40 -0800846 struct tc_cls_matchall_offload *cls,
847 bool ingress)
848{
Vivien Didelotd9450972017-10-16 11:12:15 -0400849 struct dsa_port *dp = dsa_slave_to_port(dev);
Florian Fainellif50f2122017-01-30 12:41:40 -0800850 struct dsa_slave_priv *p = netdev_priv(dev);
851 struct dsa_mall_tc_entry *mall_tc_entry;
Jiri Pirko5fd9fc42017-08-07 10:15:29 +0200852 __be16 protocol = cls->common.protocol;
Vivien Didelotd9450972017-10-16 11:12:15 -0400853 struct dsa_switch *ds = dp->ds;
Pieter Jansen van Vuuren9681e8b2019-05-04 04:46:19 -0700854 struct flow_action_entry *act;
Vivien Didelotd9450972017-10-16 11:12:15 -0400855 struct dsa_port *to_dp;
Florian Fainellif50f2122017-01-30 12:41:40 -0800856 int err = -EOPNOTSUPP;
Florian Fainellif50f2122017-01-30 12:41:40 -0800857
858 if (!ds->ops->port_mirror_add)
859 return err;
860
Pieter Jansen van Vuuren9681e8b2019-05-04 04:46:19 -0700861 if (!flow_offload_has_one_action(&cls->rule->action))
Florian Fainellif50f2122017-01-30 12:41:40 -0800862 return err;
863
Pieter Jansen van Vuuren9681e8b2019-05-04 04:46:19 -0700864 act = &cls->rule->action.entries[0];
Florian Fainellif50f2122017-01-30 12:41:40 -0800865
Pieter Jansen van Vuuren9681e8b2019-05-04 04:46:19 -0700866 if (act->id == FLOW_ACTION_MIRRED && protocol == htons(ETH_P_ALL)) {
Florian Fainellif50f2122017-01-30 12:41:40 -0800867 struct dsa_mall_mirror_tc_entry *mirror;
868
Pieter Jansen van Vuuren9681e8b2019-05-04 04:46:19 -0700869 if (!act->dev)
Florian Fainellif50f2122017-01-30 12:41:40 -0800870 return -EINVAL;
871
Pieter Jansen van Vuuren9681e8b2019-05-04 04:46:19 -0700872 if (!dsa_slave_dev_check(act->dev))
Florian Fainellif50f2122017-01-30 12:41:40 -0800873 return -EOPNOTSUPP;
874
875 mall_tc_entry = kzalloc(sizeof(*mall_tc_entry), GFP_KERNEL);
876 if (!mall_tc_entry)
877 return -ENOMEM;
878
879 mall_tc_entry->cookie = cls->cookie;
880 mall_tc_entry->type = DSA_PORT_MALL_MIRROR;
881 mirror = &mall_tc_entry->mirror;
882
Pieter Jansen van Vuuren9681e8b2019-05-04 04:46:19 -0700883 to_dp = dsa_slave_to_port(act->dev);
Florian Fainellif50f2122017-01-30 12:41:40 -0800884
Vivien Didelotd9450972017-10-16 11:12:15 -0400885 mirror->to_local_port = to_dp->index;
Florian Fainellif50f2122017-01-30 12:41:40 -0800886 mirror->ingress = ingress;
887
Vivien Didelotd9450972017-10-16 11:12:15 -0400888 err = ds->ops->port_mirror_add(ds, dp->index, mirror, ingress);
Florian Fainellif50f2122017-01-30 12:41:40 -0800889 if (err) {
890 kfree(mall_tc_entry);
891 return err;
892 }
893
894 list_add_tail(&mall_tc_entry->list, &p->mall_tc_list);
895 }
896
897 return 0;
898}
899
900static void dsa_slave_del_cls_matchall(struct net_device *dev,
901 struct tc_cls_matchall_offload *cls)
902{
Vivien Didelotd9450972017-10-16 11:12:15 -0400903 struct dsa_port *dp = dsa_slave_to_port(dev);
Florian Fainellif50f2122017-01-30 12:41:40 -0800904 struct dsa_mall_tc_entry *mall_tc_entry;
Vivien Didelotd9450972017-10-16 11:12:15 -0400905 struct dsa_switch *ds = dp->ds;
Florian Fainellif50f2122017-01-30 12:41:40 -0800906
907 if (!ds->ops->port_mirror_del)
908 return;
909
Vivien Didelot4fa7b712017-09-20 19:31:57 -0400910 mall_tc_entry = dsa_slave_mall_tc_entry_find(dev, cls->cookie);
Florian Fainellif50f2122017-01-30 12:41:40 -0800911 if (!mall_tc_entry)
912 return;
913
914 list_del(&mall_tc_entry->list);
915
916 switch (mall_tc_entry->type) {
917 case DSA_PORT_MALL_MIRROR:
Vivien Didelotd9450972017-10-16 11:12:15 -0400918 ds->ops->port_mirror_del(ds, dp->index, &mall_tc_entry->mirror);
Florian Fainellif50f2122017-01-30 12:41:40 -0800919 break;
920 default:
921 WARN_ON(1);
922 }
923
924 kfree(mall_tc_entry);
925}
926
Jiri Pirko3fbae382017-08-07 10:15:26 +0200927static int dsa_slave_setup_tc_cls_matchall(struct net_device *dev,
Jiri Pirko6b3eb752017-10-19 15:50:45 +0200928 struct tc_cls_matchall_offload *cls,
929 bool ingress)
Florian Fainellif50f2122017-01-30 12:41:40 -0800930{
Jiri Pirko5fd9fc42017-08-07 10:15:29 +0200931 if (cls->common.chain_index)
Jiri Pirkoa5fcf8a2017-06-06 17:00:16 +0200932 return -EOPNOTSUPP;
Florian Fainellif50f2122017-01-30 12:41:40 -0800933
Jiri Pirko3fbae382017-08-07 10:15:26 +0200934 switch (cls->command) {
935 case TC_CLSMATCHALL_REPLACE:
Jiri Pirko5fd9fc42017-08-07 10:15:29 +0200936 return dsa_slave_add_cls_matchall(dev, cls, ingress);
Jiri Pirko3fbae382017-08-07 10:15:26 +0200937 case TC_CLSMATCHALL_DESTROY:
938 dsa_slave_del_cls_matchall(dev, cls);
939 return 0;
940 default:
941 return -EOPNOTSUPP;
942 }
943}
944
Jiri Pirko6b3eb752017-10-19 15:50:45 +0200945static int dsa_slave_setup_tc_block_cb(enum tc_setup_type type, void *type_data,
946 void *cb_priv, bool ingress)
947{
948 struct net_device *dev = cb_priv;
949
Jiri Pirko44ae12a2017-11-01 11:47:39 +0100950 if (!tc_can_offload(dev))
951 return -EOPNOTSUPP;
952
Jiri Pirko6b3eb752017-10-19 15:50:45 +0200953 switch (type) {
954 case TC_SETUP_CLSMATCHALL:
955 return dsa_slave_setup_tc_cls_matchall(dev, type_data, ingress);
956 default:
957 return -EOPNOTSUPP;
958 }
959}
960
961static int dsa_slave_setup_tc_block_cb_ig(enum tc_setup_type type,
962 void *type_data, void *cb_priv)
963{
964 return dsa_slave_setup_tc_block_cb(type, type_data, cb_priv, true);
965}
966
967static int dsa_slave_setup_tc_block_cb_eg(enum tc_setup_type type,
968 void *type_data, void *cb_priv)
969{
970 return dsa_slave_setup_tc_block_cb(type, type_data, cb_priv, false);
971}
972
Pablo Neira Ayuso955bcb62019-07-09 22:55:46 +0200973static LIST_HEAD(dsa_slave_block_cb_list);
974
Jiri Pirko6b3eb752017-10-19 15:50:45 +0200975static int dsa_slave_setup_tc_block(struct net_device *dev,
Pablo Neira Ayuso955bcb62019-07-09 22:55:46 +0200976 struct flow_block_offload *f)
Jiri Pirko6b3eb752017-10-19 15:50:45 +0200977{
Pablo Neira Ayuso955bcb62019-07-09 22:55:46 +0200978 struct flow_block_cb *block_cb;
Pablo Neira Ayusoa7323312019-07-19 18:20:15 +0200979 flow_setup_cb_t *cb;
Jiri Pirko6b3eb752017-10-19 15:50:45 +0200980
Pablo Neira Ayuso32f8c402019-07-09 22:55:41 +0200981 if (f->binder_type == FLOW_BLOCK_BINDER_TYPE_CLSACT_INGRESS)
Jiri Pirko6b3eb752017-10-19 15:50:45 +0200982 cb = dsa_slave_setup_tc_block_cb_ig;
Pablo Neira Ayuso32f8c402019-07-09 22:55:41 +0200983 else if (f->binder_type == FLOW_BLOCK_BINDER_TYPE_CLSACT_EGRESS)
Jiri Pirko6b3eb752017-10-19 15:50:45 +0200984 cb = dsa_slave_setup_tc_block_cb_eg;
985 else
986 return -EOPNOTSUPP;
987
Pablo Neira Ayuso955bcb62019-07-09 22:55:46 +0200988 f->driver_block_list = &dsa_slave_block_cb_list;
989
Jiri Pirko6b3eb752017-10-19 15:50:45 +0200990 switch (f->command) {
Pablo Neira Ayuso9c0e1892019-07-09 22:55:40 +0200991 case FLOW_BLOCK_BIND:
Pablo Neira Ayuso0d4fd022019-07-09 22:55:48 +0200992 if (flow_block_cb_is_busy(cb, dev, &dsa_slave_block_cb_list))
993 return -EBUSY;
994
Pablo Neira Ayuso0c7294d2019-07-19 18:20:14 +0200995 block_cb = flow_block_cb_alloc(cb, dev, dev, NULL);
Pablo Neira Ayuso955bcb62019-07-09 22:55:46 +0200996 if (IS_ERR(block_cb))
997 return PTR_ERR(block_cb);
998
999 flow_block_cb_add(block_cb, f);
1000 list_add_tail(&block_cb->driver_list, &dsa_slave_block_cb_list);
1001 return 0;
Pablo Neira Ayuso9c0e1892019-07-09 22:55:40 +02001002 case FLOW_BLOCK_UNBIND:
Pablo Neira Ayuso14bfb132019-07-19 18:20:16 +02001003 block_cb = flow_block_cb_lookup(f->block, cb, dev);
Pablo Neira Ayuso955bcb62019-07-09 22:55:46 +02001004 if (!block_cb)
1005 return -ENOENT;
1006
1007 flow_block_cb_remove(block_cb, f);
1008 list_del(&block_cb->driver_list);
Jiri Pirko6b3eb752017-10-19 15:50:45 +02001009 return 0;
1010 default:
1011 return -EOPNOTSUPP;
1012 }
1013}
1014
Jiri Pirko3fbae382017-08-07 10:15:26 +02001015static int dsa_slave_setup_tc(struct net_device *dev, enum tc_setup_type type,
Jiri Pirkode4784c2017-08-07 10:15:32 +02001016 void *type_data)
Jiri Pirko3fbae382017-08-07 10:15:26 +02001017{
Vladimir Oltean47d23af2019-09-15 04:59:59 +03001018 struct dsa_port *dp = dsa_slave_to_port(dev);
1019 struct dsa_switch *ds = dp->ds;
1020
1021 if (type == TC_SETUP_BLOCK)
Jiri Pirko6b3eb752017-10-19 15:50:45 +02001022 return dsa_slave_setup_tc_block(dev, type_data);
Vladimir Oltean47d23af2019-09-15 04:59:59 +03001023
1024 if (!ds->ops->port_setup_tc)
Jiri Pirkoa5fcf8a2017-06-06 17:00:16 +02001025 return -EOPNOTSUPP;
Vladimir Oltean47d23af2019-09-15 04:59:59 +03001026
1027 return ds->ops->port_setup_tc(ds, dp->index, type, type_data);
Florian Fainellif50f2122017-01-30 12:41:40 -08001028}
1029
Florian Fainellif613ed62017-08-01 15:00:36 -07001030static void dsa_slave_get_stats64(struct net_device *dev,
1031 struct rtnl_link_stats64 *stats)
1032{
1033 struct dsa_slave_priv *p = netdev_priv(dev);
Florian Fainelli5f6b4e142017-08-03 21:33:27 -07001034 struct pcpu_sw_netstats *s;
Florian Fainellif613ed62017-08-01 15:00:36 -07001035 unsigned int start;
Florian Fainelli5f6b4e142017-08-03 21:33:27 -07001036 int i;
Florian Fainellif613ed62017-08-01 15:00:36 -07001037
1038 netdev_stats_to_stats64(stats, &dev->stats);
Florian Fainelli5f6b4e142017-08-03 21:33:27 -07001039 for_each_possible_cpu(i) {
1040 u64 tx_packets, tx_bytes, rx_packets, rx_bytes;
1041
1042 s = per_cpu_ptr(p->stats64, i);
1043 do {
1044 start = u64_stats_fetch_begin_irq(&s->syncp);
1045 tx_packets = s->tx_packets;
1046 tx_bytes = s->tx_bytes;
1047 rx_packets = s->rx_packets;
1048 rx_bytes = s->rx_bytes;
1049 } while (u64_stats_fetch_retry_irq(&s->syncp, start));
1050
1051 stats->tx_packets += tx_packets;
1052 stats->tx_bytes += tx_bytes;
1053 stats->rx_packets += rx_packets;
1054 stats->rx_bytes += rx_bytes;
1055 }
Florian Fainellif613ed62017-08-01 15:00:36 -07001056}
1057
Florian Fainellibf9f2642017-01-30 09:48:40 -08001058static int dsa_slave_get_rxnfc(struct net_device *dev,
1059 struct ethtool_rxnfc *nfc, u32 *rule_locs)
1060{
Vivien Didelotd9450972017-10-16 11:12:15 -04001061 struct dsa_port *dp = dsa_slave_to_port(dev);
1062 struct dsa_switch *ds = dp->ds;
Florian Fainellibf9f2642017-01-30 09:48:40 -08001063
1064 if (!ds->ops->get_rxnfc)
1065 return -EOPNOTSUPP;
1066
Vivien Didelotd9450972017-10-16 11:12:15 -04001067 return ds->ops->get_rxnfc(ds, dp->index, nfc, rule_locs);
Florian Fainellibf9f2642017-01-30 09:48:40 -08001068}
1069
1070static int dsa_slave_set_rxnfc(struct net_device *dev,
1071 struct ethtool_rxnfc *nfc)
1072{
Vivien Didelotd9450972017-10-16 11:12:15 -04001073 struct dsa_port *dp = dsa_slave_to_port(dev);
1074 struct dsa_switch *ds = dp->ds;
Florian Fainellibf9f2642017-01-30 09:48:40 -08001075
1076 if (!ds->ops->set_rxnfc)
1077 return -EOPNOTSUPP;
1078
Vivien Didelotd9450972017-10-16 11:12:15 -04001079 return ds->ops->set_rxnfc(ds, dp->index, nfc);
Florian Fainellibf9f2642017-01-30 09:48:40 -08001080}
1081
Brandon Streiff03363692018-02-14 01:07:48 +01001082static int dsa_slave_get_ts_info(struct net_device *dev,
1083 struct ethtool_ts_info *ts)
1084{
1085 struct dsa_slave_priv *p = netdev_priv(dev);
1086 struct dsa_switch *ds = p->dp->ds;
1087
1088 if (!ds->ops->get_ts_info)
1089 return -EOPNOTSUPP;
1090
1091 return ds->ops->get_ts_info(ds, p->dp->index, ts);
1092}
1093
Florian Fainelli061f6a52019-02-20 14:35:39 -08001094static int dsa_slave_vlan_rx_add_vid(struct net_device *dev, __be16 proto,
1095 u16 vid)
1096{
1097 struct dsa_port *dp = dsa_slave_to_port(dev);
Florian Fainelli061f6a52019-02-20 14:35:39 -08001098 struct bridge_vlan_info info;
1099 int ret;
1100
1101 /* Check for a possible bridge VLAN entry now since there is no
1102 * need to emulate the switchdev prepare + commit phase.
1103 */
1104 if (dp->bridge_dev) {
Vivien Didelotc5335d72019-08-25 13:25:18 -04001105 if (!br_vlan_enabled(dp->bridge_dev))
1106 return 0;
1107
Florian Fainelli061f6a52019-02-20 14:35:39 -08001108 /* br_vlan_get_info() returns -EINVAL or -ENOENT if the
1109 * device, respectively the VID is not found, returning
1110 * 0 means success, which is a failure for us here.
1111 */
1112 ret = br_vlan_get_info(dp->bridge_dev, vid, &info);
1113 if (ret == 0)
1114 return -EBUSY;
1115 }
1116
Vivien Didelotcf360862019-08-25 13:25:16 -04001117 ret = dsa_port_vid_add(dp, vid, 0);
Vladimir Oltean9b236d22019-08-25 22:46:29 +03001118 if (ret)
Vivien Didelotcf360862019-08-25 13:25:16 -04001119 return ret;
1120
Vivien Didelot7e1741b2019-08-25 13:25:19 -04001121 ret = dsa_port_vid_add(dp->cpu_dp, vid, 0);
Vladimir Oltean9b236d22019-08-25 22:46:29 +03001122 if (ret)
Vivien Didelot7e1741b2019-08-25 13:25:19 -04001123 return ret;
1124
Vivien Didelotcf360862019-08-25 13:25:16 -04001125 return 0;
Florian Fainelli061f6a52019-02-20 14:35:39 -08001126}
1127
1128static int dsa_slave_vlan_rx_kill_vid(struct net_device *dev, __be16 proto,
1129 u16 vid)
1130{
1131 struct dsa_port *dp = dsa_slave_to_port(dev);
Florian Fainelli061f6a52019-02-20 14:35:39 -08001132 struct bridge_vlan_info info;
1133 int ret;
1134
1135 /* Check for a possible bridge VLAN entry now since there is no
1136 * need to emulate the switchdev prepare + commit phase.
1137 */
1138 if (dp->bridge_dev) {
Vivien Didelotc5335d72019-08-25 13:25:18 -04001139 if (!br_vlan_enabled(dp->bridge_dev))
1140 return 0;
1141
Florian Fainelli061f6a52019-02-20 14:35:39 -08001142 /* br_vlan_get_info() returns -EINVAL or -ENOENT if the
1143 * device, respectively the VID is not found, returning
1144 * 0 means success, which is a failure for us here.
1145 */
1146 ret = br_vlan_get_info(dp->bridge_dev, vid, &info);
1147 if (ret == 0)
1148 return -EBUSY;
1149 }
1150
Vivien Didelot7e1741b2019-08-25 13:25:19 -04001151 /* Do not deprogram the CPU port as it may be shared with other user
1152 * ports which can be members of this VLAN as well.
1153 */
Vladimir Oltean9b236d22019-08-25 22:46:29 +03001154 return dsa_port_vid_del(dp, vid);
Florian Fainelli061f6a52019-02-20 14:35:39 -08001155}
1156
Lennert Buytenhek91da11f2008-10-07 13:44:02 +00001157static const struct ethtool_ops dsa_slave_ethtool_ops = {
Lennert Buytenhek91da11f2008-10-07 13:44:02 +00001158 .get_drvinfo = dsa_slave_get_drvinfo,
Guenter Roeck3d762a02014-10-29 10:45:04 -07001159 .get_regs_len = dsa_slave_get_regs_len,
1160 .get_regs = dsa_slave_get_regs,
Florian Fainelliaab9c402018-05-10 13:17:36 -07001161 .nway_reset = dsa_slave_nway_reset,
Florian Fainellic4aef9f2018-05-10 13:17:34 -07001162 .get_link = ethtool_op_get_link,
Guenter Roeck6793abb2014-10-29 10:45:01 -07001163 .get_eeprom_len = dsa_slave_get_eeprom_len,
1164 .get_eeprom = dsa_slave_get_eeprom,
1165 .set_eeprom = dsa_slave_set_eeprom,
Lennert Buytenhek91da11f2008-10-07 13:44:02 +00001166 .get_strings = dsa_slave_get_strings,
1167 .get_ethtool_stats = dsa_slave_get_ethtool_stats,
1168 .get_sset_count = dsa_slave_get_sset_count,
Florian Fainelli19e57c42014-09-18 17:31:24 -07001169 .set_wol = dsa_slave_set_wol,
1170 .get_wol = dsa_slave_get_wol,
Florian Fainelli79052882014-09-24 17:05:21 -07001171 .set_eee = dsa_slave_set_eee,
1172 .get_eee = dsa_slave_get_eee,
Florian Fainelliaab9c402018-05-10 13:17:36 -07001173 .get_link_ksettings = dsa_slave_get_link_ksettings,
1174 .set_link_ksettings = dsa_slave_set_link_ksettings,
Heiner Kallweita2a1a132019-10-29 22:32:48 +01001175 .get_pauseparam = dsa_slave_get_pauseparam,
1176 .set_pauseparam = dsa_slave_set_pauseparam,
Florian Fainellibf9f2642017-01-30 09:48:40 -08001177 .get_rxnfc = dsa_slave_get_rxnfc,
1178 .set_rxnfc = dsa_slave_set_rxnfc,
Brandon Streiff03363692018-02-14 01:07:48 +01001179 .get_ts_info = dsa_slave_get_ts_info,
Lennert Buytenhek91da11f2008-10-07 13:44:02 +00001180};
1181
Florian Fainelli2a93c1a2017-12-06 15:03:33 -08001182/* legacy way, bypassing the bridge *****************************************/
1183int dsa_legacy_fdb_add(struct ndmsg *ndm, struct nlattr *tb[],
1184 struct net_device *dev,
1185 const unsigned char *addr, u16 vid,
Petr Machata87b09842019-01-16 23:06:50 +00001186 u16 flags,
1187 struct netlink_ext_ack *extack)
Florian Fainelli2a93c1a2017-12-06 15:03:33 -08001188{
1189 struct dsa_port *dp = dsa_slave_to_port(dev);
1190
1191 return dsa_port_fdb_add(dp, addr, vid);
1192}
1193
1194int dsa_legacy_fdb_del(struct ndmsg *ndm, struct nlattr *tb[],
1195 struct net_device *dev,
1196 const unsigned char *addr, u16 vid)
1197{
1198 struct dsa_port *dp = dsa_slave_to_port(dev);
1199
1200 return dsa_port_fdb_del(dp, addr, vid);
1201}
1202
Jiri Pirko716efee2019-03-28 13:56:43 +01001203static struct devlink_port *dsa_slave_get_devlink_port(struct net_device *dev)
1204{
1205 struct dsa_port *dp = dsa_slave_to_port(dev);
1206
1207 return dp->ds->devlink ? &dp->devlink_port : NULL;
1208}
1209
Florian Fainelli3e8a72d2014-08-27 17:04:46 -07001210static const struct net_device_ops dsa_slave_netdev_ops = {
Stephen Hemmingerd442ad42009-01-06 16:45:26 -08001211 .ndo_open = dsa_slave_open,
1212 .ndo_stop = dsa_slave_close,
Florian Fainelli3e8a72d2014-08-27 17:04:46 -07001213 .ndo_start_xmit = dsa_slave_xmit,
Stephen Hemmingerd442ad42009-01-06 16:45:26 -08001214 .ndo_change_rx_flags = dsa_slave_change_rx_flags,
1215 .ndo_set_rx_mode = dsa_slave_set_rx_mode,
Stephen Hemmingerd442ad42009-01-06 16:45:26 -08001216 .ndo_set_mac_address = dsa_slave_set_mac_address,
Arkadi Sharshevsky37b8da12017-08-06 16:15:43 +03001217 .ndo_fdb_add = dsa_legacy_fdb_add,
1218 .ndo_fdb_del = dsa_legacy_fdb_del,
Arkadi Sharshevsky2bedde12017-08-06 16:15:49 +03001219 .ndo_fdb_dump = dsa_slave_fdb_dump,
Stephen Hemmingerd442ad42009-01-06 16:45:26 -08001220 .ndo_do_ioctl = dsa_slave_ioctl,
Nicolas Dichtelabd2be02015-04-02 17:07:08 +02001221 .ndo_get_iflink = dsa_slave_get_iflink,
Florian Fainelli04ff53f2015-07-31 11:42:57 -07001222#ifdef CONFIG_NET_POLL_CONTROLLER
1223 .ndo_netpoll_setup = dsa_slave_netpoll_setup,
1224 .ndo_netpoll_cleanup = dsa_slave_netpoll_cleanup,
1225 .ndo_poll_controller = dsa_slave_poll_controller,
1226#endif
Florian Fainelli44bb7652017-01-10 12:32:36 -08001227 .ndo_get_phys_port_name = dsa_slave_get_phys_port_name,
Florian Fainellif50f2122017-01-30 12:41:40 -08001228 .ndo_setup_tc = dsa_slave_setup_tc,
Florian Fainellif613ed62017-08-01 15:00:36 -07001229 .ndo_get_stats64 = dsa_slave_get_stats64,
Florian Fainelli929d6c12019-02-06 09:45:45 -08001230 .ndo_get_port_parent_id = dsa_slave_get_port_parent_id,
Florian Fainelli061f6a52019-02-20 14:35:39 -08001231 .ndo_vlan_rx_add_vid = dsa_slave_vlan_rx_add_vid,
1232 .ndo_vlan_rx_kill_vid = dsa_slave_vlan_rx_kill_vid,
Jiri Pirko716efee2019-03-28 13:56:43 +01001233 .ndo_get_devlink_port = dsa_slave_get_devlink_port,
Scott Feldman98237d42015-03-15 21:07:15 -07001234};
1235
Florian Fainellif37db852015-09-23 18:19:58 -07001236static struct device_type dsa_type = {
1237 .name = "dsa",
1238};
1239
Florian Fainelliaab9c402018-05-10 13:17:36 -07001240void dsa_port_phylink_mac_change(struct dsa_switch *ds, int port, bool up)
1241{
1242 const struct dsa_port *dp = dsa_to_port(ds, port);
1243
1244 phylink_mac_change(dp->pl, up);
1245}
1246EXPORT_SYMBOL_GPL(dsa_port_phylink_mac_change);
1247
1248static void dsa_slave_phylink_fixed_state(struct net_device *dev,
1249 struct phylink_link_state *state)
1250{
1251 struct dsa_port *dp = dsa_slave_to_port(dev);
1252 struct dsa_switch *ds = dp->ds;
1253
1254 /* No need to check that this operation is valid, the callback would
1255 * not be called if it was not.
1256 */
1257 ds->ops->phylink_fixed_state(ds, dp->index, state);
Florian Fainellice31b312014-08-27 17:04:54 -07001258}
1259
Lennert Buytenhek91da11f2008-10-07 13:44:02 +00001260/* slave device setup *******************************************************/
Vivien Didelot4fa7b712017-09-20 19:31:57 -04001261static int dsa_slave_phy_connect(struct net_device *slave_dev, int addr)
Florian Fainellic305c162015-03-10 16:57:12 -07001262{
Vivien Didelotd9450972017-10-16 11:12:15 -04001263 struct dsa_port *dp = dsa_slave_to_port(slave_dev);
Vivien Didelotd9450972017-10-16 11:12:15 -04001264 struct dsa_switch *ds = dp->ds;
Florian Fainellic305c162015-03-10 16:57:12 -07001265
Vivien Didelot0115dcd2017-09-26 17:15:32 -04001266 slave_dev->phydev = mdiobus_get_phy(ds->slave_mii_bus, addr);
1267 if (!slave_dev->phydev) {
Russell Kingd25b8e72015-10-03 18:09:07 +01001268 netdev_err(slave_dev, "no phy at %d\n", addr);
Florian Fainellic305c162015-03-10 16:57:12 -07001269 return -ENODEV;
Russell Kingd25b8e72015-10-03 18:09:07 +01001270 }
Florian Fainellic305c162015-03-10 16:57:12 -07001271
Florian Fainelliaab9c402018-05-10 13:17:36 -07001272 return phylink_connect_phy(dp->pl, slave_dev->phydev);
Florian Fainellic305c162015-03-10 16:57:12 -07001273}
1274
Vivien Didelot4fa7b712017-09-20 19:31:57 -04001275static int dsa_slave_phy_setup(struct net_device *slave_dev)
Florian Fainelli0d8bcdd2014-08-27 17:04:51 -07001276{
Vivien Didelotd9450972017-10-16 11:12:15 -04001277 struct dsa_port *dp = dsa_slave_to_port(slave_dev);
Vivien Didelotd9450972017-10-16 11:12:15 -04001278 struct device_node *port_dn = dp->dn;
1279 struct dsa_switch *ds = dp->ds;
Andrew Lunn0c65b2b2019-11-04 02:40:33 +01001280 phy_interface_t mode;
Florian Fainelli68195632014-09-19 13:07:54 -07001281 u32 phy_flags = 0;
Andrew Lunn0c65b2b2019-11-04 02:40:33 +01001282 int ret;
Florian Fainelli0d8bcdd2014-08-27 17:04:51 -07001283
Andrew Lunn0c65b2b2019-11-04 02:40:33 +01001284 ret = of_get_phy_mode(port_dn, &mode);
1285 if (ret)
Guenter Roeck19334922015-02-16 21:23:51 -08001286 mode = PHY_INTERFACE_MODE_NA;
Florian Fainelli0d8bcdd2014-08-27 17:04:51 -07001287
Ioana Ciornei44cc27e2019-05-28 20:38:12 +03001288 dp->pl_config.dev = &slave_dev->dev;
1289 dp->pl_config.type = PHYLINK_NETDEV;
1290
1291 dp->pl = phylink_create(&dp->pl_config, of_fwnode_handle(port_dn), mode,
Ioana Ciornei77373d42019-05-28 20:38:15 +03001292 &dsa_port_phylink_mac_ops);
Florian Fainelliaab9c402018-05-10 13:17:36 -07001293 if (IS_ERR(dp->pl)) {
1294 netdev_err(slave_dev,
1295 "error creating PHYLINK: %ld\n", PTR_ERR(dp->pl));
1296 return PTR_ERR(dp->pl);
Florian Fainelli0d8bcdd2014-08-27 17:04:51 -07001297 }
1298
Florian Fainelliaab9c402018-05-10 13:17:36 -07001299 /* Register only if the switch provides such a callback, since this
1300 * callback takes precedence over polling the link GPIO in PHYLINK
1301 * (see phylink_get_fixed_state).
1302 */
1303 if (ds->ops->phylink_fixed_state)
1304 phylink_fixed_state_cb(dp->pl, dsa_slave_phylink_fixed_state);
1305
Vivien Didelot9d490b42016-08-23 12:38:56 -04001306 if (ds->ops->get_phy_flags)
Vivien Didelotd9450972017-10-16 11:12:15 -04001307 phy_flags = ds->ops->get_phy_flags(ds, dp->index);
Florian Fainelli68195632014-09-19 13:07:54 -07001308
Florian Fainelliaab9c402018-05-10 13:17:36 -07001309 ret = phylink_of_phy_connect(dp->pl, port_dn, phy_flags);
Vladimir Oltean6146dd42019-03-24 01:24:07 +02001310 if (ret == -ENODEV && ds->slave_mii_bus) {
1311 /* We could not connect to a designated PHY or SFP, so try to
1312 * use the switch internal MDIO bus instead
Florian Fainelliaab9c402018-05-10 13:17:36 -07001313 */
Vivien Didelotd9450972017-10-16 11:12:15 -04001314 ret = dsa_slave_phy_connect(slave_dev, dp->index);
Russell Kingd25b8e72015-10-03 18:09:07 +01001315 if (ret) {
Florian Fainelliaab9c402018-05-10 13:17:36 -07001316 netdev_err(slave_dev,
1317 "failed to connect to port %d: %d\n",
Vivien Didelotd9450972017-10-16 11:12:15 -04001318 dp->index, ret);
Florian Fainelliaab9c402018-05-10 13:17:36 -07001319 phylink_destroy(dp->pl);
Florian Fainellic305c162015-03-10 16:57:12 -07001320 return ret;
Russell Kingd25b8e72015-10-03 18:09:07 +01001321 }
Andrew Lunnb31f65f2014-11-05 19:47:28 +01001322 }
Florian Fainelli9697f1c2014-12-11 12:49:16 -08001323
Vladimir Oltean6146dd42019-03-24 01:24:07 +02001324 return ret;
Florian Fainelli0d8bcdd2014-08-27 17:04:51 -07001325}
1326
Florian Fainelli24462542014-09-18 17:31:22 -07001327int dsa_slave_suspend(struct net_device *slave_dev)
1328{
Florian Fainelliaab9c402018-05-10 13:17:36 -07001329 struct dsa_port *dp = dsa_slave_to_port(slave_dev);
Florian Fainelli24462542014-09-18 17:31:22 -07001330
Florian Fainellia94c6892018-07-31 17:12:52 -07001331 if (!netif_running(slave_dev))
1332 return 0;
1333
Florian Fainellif154be22017-01-25 09:10:41 -08001334 netif_device_detach(slave_dev);
1335
Florian Fainelliaab9c402018-05-10 13:17:36 -07001336 rtnl_lock();
1337 phylink_stop(dp->pl);
1338 rtnl_unlock();
Florian Fainelli24462542014-09-18 17:31:22 -07001339
1340 return 0;
1341}
1342
1343int dsa_slave_resume(struct net_device *slave_dev)
1344{
Florian Fainelliaab9c402018-05-10 13:17:36 -07001345 struct dsa_port *dp = dsa_slave_to_port(slave_dev);
1346
Florian Fainellia94c6892018-07-31 17:12:52 -07001347 if (!netif_running(slave_dev))
1348 return 0;
1349
Florian Fainelli24462542014-09-18 17:31:22 -07001350 netif_device_attach(slave_dev);
1351
Florian Fainelliaab9c402018-05-10 13:17:36 -07001352 rtnl_lock();
1353 phylink_start(dp->pl);
1354 rtnl_unlock();
Florian Fainelli24462542014-09-18 17:31:22 -07001355
1356 return 0;
1357}
1358
Vivien Didelot6158eaa2017-10-16 11:12:14 -04001359static void dsa_slave_notify(struct net_device *dev, unsigned long val)
1360{
Vivien Didelotd0006b02017-10-16 11:12:16 -04001361 struct net_device *master = dsa_slave_to_master(dev);
Vivien Didelotd9450972017-10-16 11:12:15 -04001362 struct dsa_port *dp = dsa_slave_to_port(dev);
Vivien Didelot6158eaa2017-10-16 11:12:14 -04001363 struct dsa_notifier_register_info rinfo = {
1364 .switch_number = dp->ds->index,
1365 .port_number = dp->index,
1366 .master = master,
1367 .info.dev = dev,
1368 };
1369
1370 call_dsa_notifiers(val, dev, &rinfo.info);
1371}
1372
Vivien Didelot951259aa2017-10-27 15:55:19 -04001373int dsa_slave_create(struct dsa_port *port)
Lennert Buytenhek91da11f2008-10-07 13:44:02 +00001374{
Vivien Didelot24a93322017-11-06 16:11:43 -05001375 const struct dsa_port *cpu_dp = port->cpu_dp;
Vivien Didelotf8b8b1c2017-10-16 11:12:18 -04001376 struct net_device *master = cpu_dp->master;
Vivien Didelot4cfbf092017-08-05 16:20:19 -04001377 struct dsa_switch *ds = port->ds;
Vivien Didelot951259aa2017-10-27 15:55:19 -04001378 const char *name = port->name;
Lennert Buytenhek91da11f2008-10-07 13:44:02 +00001379 struct net_device *slave_dev;
1380 struct dsa_slave_priv *p;
1381 int ret;
1382
Florian Fainelli55199df2017-09-03 20:27:00 -07001383 if (!ds->num_tx_queues)
1384 ds->num_tx_queues = 1;
1385
1386 slave_dev = alloc_netdev_mqs(sizeof(struct dsa_slave_priv), name,
1387 NET_NAME_UNKNOWN, ether_setup,
1388 ds->num_tx_queues, 1);
Lennert Buytenhek91da11f2008-10-07 13:44:02 +00001389 if (slave_dev == NULL)
Guenter Roeckd87d6f42015-02-24 13:15:32 -08001390 return -ENOMEM;
Lennert Buytenhek91da11f2008-10-07 13:44:02 +00001391
Vladimir Oltean9b236d22019-08-25 22:46:29 +03001392 slave_dev->features = master->vlan_features | NETIF_F_HW_TC;
1393 if (ds->ops->port_vlan_add && ds->ops->port_vlan_del)
1394 slave_dev->features |= NETIF_F_HW_VLAN_CTAG_FILTER;
Florian Fainellif50f2122017-01-30 12:41:40 -08001395 slave_dev->hw_features |= NETIF_F_HW_TC;
Wilfried Klaebe7ad24ea2014-05-11 00:12:32 +00001396 slave_dev->ethtool_ops = &dsa_slave_ethtool_ops;
Petr Å tetiar4974f9b2019-05-06 23:24:45 +02001397 if (!IS_ERR_OR_NULL(port->mac))
Xiaofei Shena2c70232019-03-29 11:04:58 +05301398 ether_addr_copy(slave_dev->dev_addr, port->mac);
1399 else
1400 eth_hw_addr_inherit(slave_dev, master);
Phil Sutter0a5f1072015-08-18 10:30:41 +02001401 slave_dev->priv_flags |= IFF_NO_QUEUE;
Florian Fainelli3e8a72d2014-08-27 17:04:46 -07001402 slave_dev->netdev_ops = &dsa_slave_netdev_ops;
Jarod Wilson8b1efc02016-10-20 23:25:27 -04001403 slave_dev->min_mtu = 0;
1404 slave_dev->max_mtu = ETH_MAX_MTU;
Florian Fainellif37db852015-09-23 18:19:58 -07001405 SET_NETDEV_DEVTYPE(slave_dev, &dsa_type);
Stephen Hemmingerd442ad42009-01-06 16:45:26 -08001406
Vivien Didelot4cfbf092017-08-05 16:20:19 -04001407 SET_NETDEV_DEV(slave_dev, port->ds->dev);
1408 slave_dev->dev.of_node = port->dn;
Lennert Buytenhek91da11f2008-10-07 13:44:02 +00001409 slave_dev->vlan_features = master->vlan_features;
1410
1411 p = netdev_priv(slave_dev);
Florian Fainelli5f6b4e142017-08-03 21:33:27 -07001412 p->stats64 = netdev_alloc_pcpu_stats(struct pcpu_sw_netstats);
1413 if (!p->stats64) {
1414 free_netdev(slave_dev);
1415 return -ENOMEM;
1416 }
Vivien Didelot4cfbf092017-08-05 16:20:19 -04001417 p->dp = port;
Florian Fainellif50f2122017-01-30 12:41:40 -08001418 INIT_LIST_HEAD(&p->mall_tc_list);
Vivien Didelot15240242017-09-29 17:19:18 -04001419 p->xmit = cpu_dp->tag_ops->xmit;
Vivien Didelotf8b8b1c2017-10-16 11:12:18 -04001420 port->slave = slave_dev;
Lennert Buytenhek91da11f2008-10-07 13:44:02 +00001421
1422 netif_carrier_off(slave_dev);
1423
Vivien Didelot4fa7b712017-09-20 19:31:57 -04001424 ret = dsa_slave_phy_setup(slave_dev);
Andrew Lunn0071f562016-01-06 20:11:20 +01001425 if (ret) {
1426 netdev_err(master, "error %d setting up slave phy\n", ret);
Florian Fainellie8044412017-09-25 15:55:53 -07001427 goto out_free;
1428 }
1429
Vivien Didelot6158eaa2017-10-16 11:12:14 -04001430 dsa_slave_notify(slave_dev, DSA_PORT_REGISTER);
Florian Fainelli60724d42017-10-11 10:57:48 -07001431
Florian Fainellie8044412017-09-25 15:55:53 -07001432 ret = register_netdev(slave_dev);
1433 if (ret) {
1434 netdev_err(master, "error %d registering interface %s\n",
1435 ret, slave_dev->name);
1436 goto out_phy;
Andrew Lunn0071f562016-01-06 20:11:20 +01001437 }
1438
Guenter Roeckd87d6f42015-02-24 13:15:32 -08001439 return 0;
Florian Fainellie8044412017-09-25 15:55:53 -07001440
1441out_phy:
Florian Fainelliaab9c402018-05-10 13:17:36 -07001442 rtnl_lock();
1443 phylink_disconnect_phy(p->dp->pl);
1444 rtnl_unlock();
1445 phylink_destroy(p->dp->pl);
Florian Fainellie8044412017-09-25 15:55:53 -07001446out_free:
1447 free_percpu(p->stats64);
1448 free_netdev(slave_dev);
Vivien Didelotf8b8b1c2017-10-16 11:12:18 -04001449 port->slave = NULL;
Florian Fainellie8044412017-09-25 15:55:53 -07001450 return ret;
Lennert Buytenhek91da11f2008-10-07 13:44:02 +00001451}
Florian Fainellib73adef2015-02-24 13:15:33 -08001452
Neil Armstrongcda5c152015-12-07 13:57:35 +01001453void dsa_slave_destroy(struct net_device *slave_dev)
1454{
Vivien Didelotd9450972017-10-16 11:12:15 -04001455 struct dsa_port *dp = dsa_slave_to_port(slave_dev);
Neil Armstrongcda5c152015-12-07 13:57:35 +01001456 struct dsa_slave_priv *p = netdev_priv(slave_dev);
1457
1458 netif_carrier_off(slave_dev);
Florian Fainelliaab9c402018-05-10 13:17:36 -07001459 rtnl_lock();
1460 phylink_disconnect_phy(dp->pl);
1461 rtnl_unlock();
Johan Hovold881eada2016-11-28 19:25:09 +01001462
Vivien Didelot6158eaa2017-10-16 11:12:14 -04001463 dsa_slave_notify(slave_dev, DSA_PORT_UNREGISTER);
Neil Armstrongcda5c152015-12-07 13:57:35 +01001464 unregister_netdev(slave_dev);
Florian Fainelliaab9c402018-05-10 13:17:36 -07001465 phylink_destroy(dp->pl);
Florian Fainelli5f6b4e142017-08-03 21:33:27 -07001466 free_percpu(p->stats64);
Neil Armstrongcda5c152015-12-07 13:57:35 +01001467 free_netdev(slave_dev);
1468}
1469
Florian Fainelli4d776482020-01-07 21:06:05 -08001470bool dsa_slave_dev_check(const struct net_device *dev)
Florian Fainellib73adef2015-02-24 13:15:33 -08001471{
1472 return dev->netdev_ops == &dsa_slave_netdev_ops;
1473}
1474
Vivien Didelot8e92ab32017-02-03 13:20:17 -05001475static int dsa_slave_changeupper(struct net_device *dev,
1476 struct netdev_notifier_changeupper_info *info)
Florian Fainellib73adef2015-02-24 13:15:33 -08001477{
Vivien Didelotd9450972017-10-16 11:12:15 -04001478 struct dsa_port *dp = dsa_slave_to_port(dev);
Vivien Didelot8e92ab32017-02-03 13:20:17 -05001479 int err = NOTIFY_DONE;
Florian Fainellib73adef2015-02-24 13:15:33 -08001480
Vivien Didelot8e92ab32017-02-03 13:20:17 -05001481 if (netif_is_bridge_master(info->upper_dev)) {
1482 if (info->linking) {
Vivien Didelot17d78022017-05-19 17:00:38 -04001483 err = dsa_port_bridge_join(dp, info->upper_dev);
Vivien Didelot8e92ab32017-02-03 13:20:17 -05001484 err = notifier_from_errno(err);
1485 } else {
Vivien Didelot17d78022017-05-19 17:00:38 -04001486 dsa_port_bridge_leave(dp, info->upper_dev);
Vivien Didelot8e92ab32017-02-03 13:20:17 -05001487 err = NOTIFY_OK;
Vivien Didelot6debb682016-03-13 16:21:34 -04001488 }
Vivien Didelot6debb682016-03-13 16:21:34 -04001489 }
1490
Vivien Didelot8e92ab32017-02-03 13:20:17 -05001491 return err;
Florian Fainellib73adef2015-02-24 13:15:33 -08001492}
1493
Florian Fainellicc1d5bd2019-02-20 14:35:38 -08001494static int dsa_slave_upper_vlan_check(struct net_device *dev,
1495 struct netdev_notifier_changeupper_info *
1496 info)
1497{
1498 struct netlink_ext_ack *ext_ack;
1499 struct net_device *slave;
1500 struct dsa_port *dp;
1501
1502 ext_ack = netdev_notifier_info_to_extack(&info->info);
1503
1504 if (!is_vlan_dev(dev))
1505 return NOTIFY_DONE;
1506
1507 slave = vlan_dev_real_dev(dev);
1508 if (!dsa_slave_dev_check(slave))
1509 return NOTIFY_DONE;
1510
1511 dp = dsa_slave_to_port(slave);
1512 if (!dp->bridge_dev)
1513 return NOTIFY_DONE;
1514
1515 /* Deny enslaving a VLAN device into a VLAN-aware bridge */
1516 if (br_vlan_enabled(dp->bridge_dev) &&
1517 netif_is_bridge_master(info->upper_dev) && info->linking) {
1518 NL_SET_ERR_MSG_MOD(ext_ack,
1519 "Cannot enslave VLAN device into VLAN aware bridge");
1520 return notifier_from_errno(-EINVAL);
1521 }
1522
1523 return NOTIFY_DONE;
1524}
1525
Vivien Didelot88e4f0c2017-02-03 13:20:16 -05001526static int dsa_slave_netdevice_event(struct notifier_block *nb,
1527 unsigned long event, void *ptr)
Florian Fainellib73adef2015-02-24 13:15:33 -08001528{
Vivien Didelot6debb682016-03-13 16:21:34 -04001529 struct net_device *dev = netdev_notifier_info_to_dev(ptr);
Florian Fainellib73adef2015-02-24 13:15:33 -08001530
Florian Fainellicc1d5bd2019-02-20 14:35:38 -08001531 if (event == NETDEV_CHANGEUPPER) {
1532 if (!dsa_slave_dev_check(dev))
1533 return dsa_slave_upper_vlan_check(dev, ptr);
Vivien Didelot8e92ab32017-02-03 13:20:17 -05001534
Vivien Didelot8e92ab32017-02-03 13:20:17 -05001535 return dsa_slave_changeupper(dev, ptr);
Florian Fainellicc1d5bd2019-02-20 14:35:38 -08001536 }
Florian Fainellib73adef2015-02-24 13:15:33 -08001537
Florian Fainellib73adef2015-02-24 13:15:33 -08001538 return NOTIFY_DONE;
1539}
Vivien Didelot88e4f0c2017-02-03 13:20:16 -05001540
Arkadi Sharshevskyc9eb3e02017-08-06 16:15:42 +03001541struct dsa_switchdev_event_work {
1542 struct work_struct work;
1543 struct switchdev_notifier_fdb_info fdb_info;
1544 struct net_device *dev;
1545 unsigned long event;
1546};
1547
1548static void dsa_slave_switchdev_event_work(struct work_struct *work)
1549{
1550 struct dsa_switchdev_event_work *switchdev_work =
1551 container_of(work, struct dsa_switchdev_event_work, work);
1552 struct net_device *dev = switchdev_work->dev;
1553 struct switchdev_notifier_fdb_info *fdb_info;
Vivien Didelotd9450972017-10-16 11:12:15 -04001554 struct dsa_port *dp = dsa_slave_to_port(dev);
Arkadi Sharshevskyc9eb3e02017-08-06 16:15:42 +03001555 int err;
1556
1557 rtnl_lock();
1558 switch (switchdev_work->event) {
1559 case SWITCHDEV_FDB_ADD_TO_DEVICE:
1560 fdb_info = &switchdev_work->fdb_info;
Vivien Didelota37fb852018-05-08 23:03:12 -04001561 if (!fdb_info->added_by_user)
1562 break;
1563
Vivien Didelotd9450972017-10-16 11:12:15 -04001564 err = dsa_port_fdb_add(dp, fdb_info->addr, fdb_info->vid);
Arkadi Sharshevskyc9eb3e02017-08-06 16:15:42 +03001565 if (err) {
1566 netdev_dbg(dev, "fdb add failed err=%d\n", err);
1567 break;
1568 }
Ido Schimmele9ba0fb2018-10-17 08:53:29 +00001569 fdb_info->offloaded = true;
Arkadi Sharshevskyc9eb3e02017-08-06 16:15:42 +03001570 call_switchdev_notifiers(SWITCHDEV_FDB_OFFLOADED, dev,
Petr Machata66859872019-01-16 23:06:56 +00001571 &fdb_info->info, NULL);
Arkadi Sharshevskyc9eb3e02017-08-06 16:15:42 +03001572 break;
1573
1574 case SWITCHDEV_FDB_DEL_TO_DEVICE:
1575 fdb_info = &switchdev_work->fdb_info;
Vivien Didelota37fb852018-05-08 23:03:12 -04001576 if (!fdb_info->added_by_user)
1577 break;
1578
Vivien Didelotd9450972017-10-16 11:12:15 -04001579 err = dsa_port_fdb_del(dp, fdb_info->addr, fdb_info->vid);
Arkadi Sharshevskyc9eb3e02017-08-06 16:15:42 +03001580 if (err) {
1581 netdev_dbg(dev, "fdb del failed err=%d\n", err);
1582 dev_close(dev);
1583 }
1584 break;
1585 }
1586 rtnl_unlock();
1587
1588 kfree(switchdev_work->fdb_info.addr);
1589 kfree(switchdev_work);
1590 dev_put(dev);
1591}
1592
1593static int
1594dsa_slave_switchdev_fdb_work_init(struct dsa_switchdev_event_work *
1595 switchdev_work,
1596 const struct switchdev_notifier_fdb_info *
1597 fdb_info)
1598{
1599 memcpy(&switchdev_work->fdb_info, fdb_info,
1600 sizeof(switchdev_work->fdb_info));
1601 switchdev_work->fdb_info.addr = kzalloc(ETH_ALEN, GFP_ATOMIC);
1602 if (!switchdev_work->fdb_info.addr)
1603 return -ENOMEM;
1604 ether_addr_copy((u8 *)switchdev_work->fdb_info.addr,
1605 fdb_info->addr);
1606 return 0;
1607}
1608
1609/* Called under rcu_read_lock() */
1610static int dsa_slave_switchdev_event(struct notifier_block *unused,
1611 unsigned long event, void *ptr)
1612{
1613 struct net_device *dev = switchdev_notifier_info_to_dev(ptr);
1614 struct dsa_switchdev_event_work *switchdev_work;
Vivien Didelot79b139f2019-06-14 13:49:22 -04001615 int err;
1616
1617 if (event == SWITCHDEV_PORT_ATTR_SET) {
1618 err = switchdev_handle_port_attr_set(dev, ptr,
1619 dsa_slave_dev_check,
1620 dsa_slave_port_attr_set);
1621 return notifier_from_errno(err);
1622 }
Arkadi Sharshevskyc9eb3e02017-08-06 16:15:42 +03001623
1624 if (!dsa_slave_dev_check(dev))
1625 return NOTIFY_DONE;
1626
1627 switchdev_work = kzalloc(sizeof(*switchdev_work), GFP_ATOMIC);
1628 if (!switchdev_work)
1629 return NOTIFY_BAD;
1630
1631 INIT_WORK(&switchdev_work->work,
1632 dsa_slave_switchdev_event_work);
1633 switchdev_work->dev = dev;
1634 switchdev_work->event = event;
1635
1636 switch (event) {
1637 case SWITCHDEV_FDB_ADD_TO_DEVICE: /* fall through */
1638 case SWITCHDEV_FDB_DEL_TO_DEVICE:
Vivien Didelota37fb852018-05-08 23:03:12 -04001639 if (dsa_slave_switchdev_fdb_work_init(switchdev_work, ptr))
Arkadi Sharshevskyc9eb3e02017-08-06 16:15:42 +03001640 goto err_fdb_work_init;
1641 dev_hold(dev);
1642 break;
1643 default:
1644 kfree(switchdev_work);
1645 return NOTIFY_DONE;
1646 }
1647
1648 dsa_schedule_work(&switchdev_work->work);
1649 return NOTIFY_OK;
1650
1651err_fdb_work_init:
1652 kfree(switchdev_work);
1653 return NOTIFY_BAD;
1654}
1655
Petr Machata2b239f62018-11-22 23:29:05 +00001656static int dsa_slave_switchdev_blocking_event(struct notifier_block *unused,
1657 unsigned long event, void *ptr)
1658{
1659 struct net_device *dev = switchdev_notifier_info_to_dev(ptr);
Vivien Didelot79b139f2019-06-14 13:49:22 -04001660 int err;
Petr Machata2b239f62018-11-22 23:29:05 +00001661
1662 switch (event) {
Vivien Didelot79b139f2019-06-14 13:49:22 -04001663 case SWITCHDEV_PORT_OBJ_ADD:
1664 err = switchdev_handle_port_obj_add(dev, ptr,
1665 dsa_slave_dev_check,
1666 dsa_slave_port_obj_add);
1667 return notifier_from_errno(err);
Petr Machata2b239f62018-11-22 23:29:05 +00001668 case SWITCHDEV_PORT_OBJ_DEL:
Vivien Didelot79b139f2019-06-14 13:49:22 -04001669 err = switchdev_handle_port_obj_del(dev, ptr,
1670 dsa_slave_dev_check,
1671 dsa_slave_port_obj_del);
1672 return notifier_from_errno(err);
Florian Fainelli9ed1ece2019-02-27 11:44:27 -08001673 case SWITCHDEV_PORT_ATTR_SET:
Vivien Didelot79b139f2019-06-14 13:49:22 -04001674 err = switchdev_handle_port_attr_set(dev, ptr,
1675 dsa_slave_dev_check,
1676 dsa_slave_port_attr_set);
1677 return notifier_from_errno(err);
Petr Machata2b239f62018-11-22 23:29:05 +00001678 }
1679
1680 return NOTIFY_DONE;
1681}
1682
Vivien Didelot88e4f0c2017-02-03 13:20:16 -05001683static struct notifier_block dsa_slave_nb __read_mostly = {
Arkadi Sharshevskyc9eb3e02017-08-06 16:15:42 +03001684 .notifier_call = dsa_slave_netdevice_event,
1685};
1686
1687static struct notifier_block dsa_slave_switchdev_notifier = {
1688 .notifier_call = dsa_slave_switchdev_event,
Vivien Didelot88e4f0c2017-02-03 13:20:16 -05001689};
1690
Petr Machata2b239f62018-11-22 23:29:05 +00001691static struct notifier_block dsa_slave_switchdev_blocking_notifier = {
1692 .notifier_call = dsa_slave_switchdev_blocking_event,
1693};
1694
Vivien Didelot88e4f0c2017-02-03 13:20:16 -05001695int dsa_slave_register_notifier(void)
1696{
Petr Machata2b239f62018-11-22 23:29:05 +00001697 struct notifier_block *nb;
Arkadi Sharshevskyc9eb3e02017-08-06 16:15:42 +03001698 int err;
1699
1700 err = register_netdevice_notifier(&dsa_slave_nb);
1701 if (err)
1702 return err;
1703
1704 err = register_switchdev_notifier(&dsa_slave_switchdev_notifier);
1705 if (err)
1706 goto err_switchdev_nb;
1707
Petr Machata2b239f62018-11-22 23:29:05 +00001708 nb = &dsa_slave_switchdev_blocking_notifier;
1709 err = register_switchdev_blocking_notifier(nb);
1710 if (err)
1711 goto err_switchdev_blocking_nb;
1712
Arkadi Sharshevskyc9eb3e02017-08-06 16:15:42 +03001713 return 0;
1714
Petr Machata2b239f62018-11-22 23:29:05 +00001715err_switchdev_blocking_nb:
1716 unregister_switchdev_notifier(&dsa_slave_switchdev_notifier);
Arkadi Sharshevskyc9eb3e02017-08-06 16:15:42 +03001717err_switchdev_nb:
1718 unregister_netdevice_notifier(&dsa_slave_nb);
1719 return err;
Vivien Didelot88e4f0c2017-02-03 13:20:16 -05001720}
1721
1722void dsa_slave_unregister_notifier(void)
1723{
Petr Machata2b239f62018-11-22 23:29:05 +00001724 struct notifier_block *nb;
Vivien Didelot88e4f0c2017-02-03 13:20:16 -05001725 int err;
1726
Petr Machata2b239f62018-11-22 23:29:05 +00001727 nb = &dsa_slave_switchdev_blocking_notifier;
1728 err = unregister_switchdev_blocking_notifier(nb);
1729 if (err)
1730 pr_err("DSA: failed to unregister switchdev blocking notifier (%d)\n", err);
1731
Arkadi Sharshevskyc9eb3e02017-08-06 16:15:42 +03001732 err = unregister_switchdev_notifier(&dsa_slave_switchdev_notifier);
1733 if (err)
1734 pr_err("DSA: failed to unregister switchdev notifier (%d)\n", err);
1735
Vivien Didelot88e4f0c2017-02-03 13:20:16 -05001736 err = unregister_netdevice_notifier(&dsa_slave_nb);
1737 if (err)
1738 pr_err("DSA: failed to unregister slave notifier (%d)\n", err);
1739}