blob: f52307296de4622b6e40072c899fa74f79419e95 [file] [log] [blame]
Lennert Buytenhek91da11f2008-10-07 13:44:02 +00001/*
2 * net/dsa/slave.c - Slave device handling
Lennert Buytenheke84665c2009-03-20 09:52:09 +00003 * Copyright (c) 2008-2009 Marvell Semiconductor
Lennert Buytenhek91da11f2008-10-07 13:44:02 +00004 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 */
10
11#include <linux/list.h>
Lennert Buytenhekdf02c6f2008-11-10 21:53:12 -080012#include <linux/etherdevice.h>
Florian Fainellib73adef2015-02-24 13:15:33 -080013#include <linux/netdevice.h>
Lennert Buytenhek91da11f2008-10-07 13:44:02 +000014#include <linux/phy.h>
Florian Fainellia2820542014-10-17 16:02:13 -070015#include <linux/phy_fixed.h>
Florian Fainelli0d8bcdd2014-08-27 17:04:51 -070016#include <linux/of_net.h>
17#include <linux/of_mdio.h>
Andrew Lunn7f854422016-01-06 20:11:18 +010018#include <linux/mdio.h>
Florian Fainellib73adef2015-02-24 13:15:33 -080019#include <net/rtnetlink.h>
Florian Fainellif50f2122017-01-30 12:41:40 -080020#include <net/pkt_cls.h>
21#include <net/tc_act/tc_mirred.h>
Florian Fainellib73adef2015-02-24 13:15:33 -080022#include <linux/if_bridge.h>
Florian Fainelli04ff53f2015-07-31 11:42:57 -070023#include <linux/netpoll.h>
Vivien Didelotea5dd342017-05-17 15:46:03 -040024
Lennert Buytenhek91da11f2008-10-07 13:44:02 +000025#include "dsa_priv.h"
26
Florian Fainellif50f2122017-01-30 12:41:40 -080027static bool dsa_slave_dev_check(struct net_device *dev);
28
Lennert Buytenhek91da11f2008-10-07 13:44:02 +000029/* slave mii_bus handling ***************************************************/
30static int dsa_slave_phy_read(struct mii_bus *bus, int addr, int reg)
31{
32 struct dsa_switch *ds = bus->priv;
33
Florian Fainelli0d8bcdd2014-08-27 17:04:51 -070034 if (ds->phys_mii_mask & (1 << addr))
Vivien Didelot9d490b42016-08-23 12:38:56 -040035 return ds->ops->phy_read(ds, addr, reg);
Lennert Buytenhek91da11f2008-10-07 13:44:02 +000036
37 return 0xffff;
38}
39
40static int dsa_slave_phy_write(struct mii_bus *bus, int addr, int reg, u16 val)
41{
42 struct dsa_switch *ds = bus->priv;
43
Florian Fainelli0d8bcdd2014-08-27 17:04:51 -070044 if (ds->phys_mii_mask & (1 << addr))
Vivien Didelot9d490b42016-08-23 12:38:56 -040045 return ds->ops->phy_write(ds, addr, reg, val);
Lennert Buytenhek91da11f2008-10-07 13:44:02 +000046
47 return 0;
48}
49
50void dsa_slave_mii_bus_init(struct dsa_switch *ds)
51{
52 ds->slave_mii_bus->priv = (void *)ds;
53 ds->slave_mii_bus->name = "dsa slave smi";
54 ds->slave_mii_bus->read = dsa_slave_phy_read;
55 ds->slave_mii_bus->write = dsa_slave_phy_write;
Florian Fainelli0b7b4982016-06-07 16:32:38 -070056 snprintf(ds->slave_mii_bus->id, MII_BUS_ID_SIZE, "dsa-%d.%d",
Vivien Didelot49463b72017-11-03 19:05:21 -040057 ds->dst->index, ds->index);
Andrew Lunnc33063d2016-05-10 23:27:23 +020058 ds->slave_mii_bus->parent = ds->dev;
Vivien Didelot24df8982015-01-20 19:13:32 -050059 ds->slave_mii_bus->phy_mask = ~ds->phys_mii_mask;
Lennert Buytenhek91da11f2008-10-07 13:44:02 +000060}
61
62
63/* slave device handling ****************************************************/
Nicolas Dichtelabd2be02015-04-02 17:07:08 +020064static int dsa_slave_get_iflink(const struct net_device *dev)
Lennert Buytenhekc0840802009-03-20 09:49:49 +000065{
Vivien Didelotd0006b02017-10-16 11:12:16 -040066 return dsa_slave_to_master(dev)->ifindex;
Lennert Buytenhekc0840802009-03-20 09:49:49 +000067}
68
Lennert Buytenhek91da11f2008-10-07 13:44:02 +000069static int dsa_slave_open(struct net_device *dev)
70{
Vivien Didelotd0006b02017-10-16 11:12:16 -040071 struct net_device *master = dsa_slave_to_master(dev);
Vivien Didelotd9450972017-10-16 11:12:15 -040072 struct dsa_port *dp = dsa_slave_to_port(dev);
Lennert Buytenhekdf02c6f2008-11-10 21:53:12 -080073 int err;
74
75 if (!(master->flags & IFF_UP))
76 return -ENETDOWN;
77
Joe Perches8feedbb2012-05-08 18:56:57 +000078 if (!ether_addr_equal(dev->dev_addr, master->dev_addr)) {
Jiri Pirkoa748ee22010-04-01 21:22:09 +000079 err = dev_uc_add(master, dev->dev_addr);
Lennert Buytenhekdf02c6f2008-11-10 21:53:12 -080080 if (err < 0)
81 goto out;
82 }
83
84 if (dev->flags & IFF_ALLMULTI) {
85 err = dev_set_allmulti(master, 1);
86 if (err < 0)
87 goto del_unicast;
88 }
89 if (dev->flags & IFF_PROMISC) {
90 err = dev_set_promiscuity(master, 1);
91 if (err < 0)
92 goto clear_allmulti;
93 }
94
Vivien Didelot0115dcd2017-09-26 17:15:32 -040095 err = dsa_port_enable(dp, dev->phydev);
Vivien Didelotfb8a6a22017-09-22 19:01:56 -040096 if (err)
97 goto clear_promisc;
Florian Fainellib73adef2015-02-24 13:15:33 -080098
Vivien Didelot0115dcd2017-09-26 17:15:32 -040099 if (dev->phydev)
100 phy_start(dev->phydev);
Florian Fainellif7f1de52014-09-24 17:05:17 -0700101
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000102 return 0;
Lennert Buytenhekdf02c6f2008-11-10 21:53:12 -0800103
Florian Fainellib2f2af22014-09-24 17:05:18 -0700104clear_promisc:
105 if (dev->flags & IFF_PROMISC)
Gilad Ben-Yossef4fdeddf2015-06-25 16:50:13 +0300106 dev_set_promiscuity(master, -1);
Lennert Buytenhekdf02c6f2008-11-10 21:53:12 -0800107clear_allmulti:
108 if (dev->flags & IFF_ALLMULTI)
109 dev_set_allmulti(master, -1);
110del_unicast:
Joe Perches8feedbb2012-05-08 18:56:57 +0000111 if (!ether_addr_equal(dev->dev_addr, master->dev_addr))
Jiri Pirkoa748ee22010-04-01 21:22:09 +0000112 dev_uc_del(master, dev->dev_addr);
Lennert Buytenhekdf02c6f2008-11-10 21:53:12 -0800113out:
114 return err;
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000115}
116
117static int dsa_slave_close(struct net_device *dev)
118{
Vivien Didelotd0006b02017-10-16 11:12:16 -0400119 struct net_device *master = dsa_slave_to_master(dev);
Vivien Didelotd9450972017-10-16 11:12:15 -0400120 struct dsa_port *dp = dsa_slave_to_port(dev);
Lennert Buytenhekdf02c6f2008-11-10 21:53:12 -0800121
Vivien Didelot0115dcd2017-09-26 17:15:32 -0400122 if (dev->phydev)
123 phy_stop(dev->phydev);
Florian Fainellif7f1de52014-09-24 17:05:17 -0700124
Vivien Didelot0115dcd2017-09-26 17:15:32 -0400125 dsa_port_disable(dp, dev->phydev);
Vivien Didelot6457edf2017-09-22 19:01:55 -0400126
Lennert Buytenhekdf02c6f2008-11-10 21:53:12 -0800127 dev_mc_unsync(master, dev);
Jiri Pirkoa748ee22010-04-01 21:22:09 +0000128 dev_uc_unsync(master, dev);
Lennert Buytenhekdf02c6f2008-11-10 21:53:12 -0800129 if (dev->flags & IFF_ALLMULTI)
130 dev_set_allmulti(master, -1);
131 if (dev->flags & IFF_PROMISC)
132 dev_set_promiscuity(master, -1);
133
Joe Perches8feedbb2012-05-08 18:56:57 +0000134 if (!ether_addr_equal(dev->dev_addr, master->dev_addr))
Jiri Pirkoa748ee22010-04-01 21:22:09 +0000135 dev_uc_del(master, dev->dev_addr);
Lennert Buytenhekdf02c6f2008-11-10 21:53:12 -0800136
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000137 return 0;
138}
139
140static void dsa_slave_change_rx_flags(struct net_device *dev, int change)
141{
Vivien Didelotd0006b02017-10-16 11:12:16 -0400142 struct net_device *master = dsa_slave_to_master(dev);
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000143
144 if (change & IFF_ALLMULTI)
145 dev_set_allmulti(master, dev->flags & IFF_ALLMULTI ? 1 : -1);
146 if (change & IFF_PROMISC)
147 dev_set_promiscuity(master, dev->flags & IFF_PROMISC ? 1 : -1);
148}
149
150static void dsa_slave_set_rx_mode(struct net_device *dev)
151{
Vivien Didelotd0006b02017-10-16 11:12:16 -0400152 struct net_device *master = dsa_slave_to_master(dev);
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000153
154 dev_mc_sync(master, dev);
Jiri Pirkoa748ee22010-04-01 21:22:09 +0000155 dev_uc_sync(master, dev);
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000156}
157
Lennert Buytenhekdf02c6f2008-11-10 21:53:12 -0800158static int dsa_slave_set_mac_address(struct net_device *dev, void *a)
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000159{
Vivien Didelotd0006b02017-10-16 11:12:16 -0400160 struct net_device *master = dsa_slave_to_master(dev);
Lennert Buytenhekdf02c6f2008-11-10 21:53:12 -0800161 struct sockaddr *addr = a;
162 int err;
163
164 if (!is_valid_ether_addr(addr->sa_data))
165 return -EADDRNOTAVAIL;
166
167 if (!(dev->flags & IFF_UP))
168 goto out;
169
Joe Perches8feedbb2012-05-08 18:56:57 +0000170 if (!ether_addr_equal(addr->sa_data, master->dev_addr)) {
Jiri Pirkoa748ee22010-04-01 21:22:09 +0000171 err = dev_uc_add(master, addr->sa_data);
Lennert Buytenhekdf02c6f2008-11-10 21:53:12 -0800172 if (err < 0)
173 return err;
174 }
175
Joe Perches8feedbb2012-05-08 18:56:57 +0000176 if (!ether_addr_equal(dev->dev_addr, master->dev_addr))
Jiri Pirkoa748ee22010-04-01 21:22:09 +0000177 dev_uc_del(master, dev->dev_addr);
Lennert Buytenhekdf02c6f2008-11-10 21:53:12 -0800178
179out:
Joe Perchesd08f1612014-01-20 09:52:20 -0800180 ether_addr_copy(dev->dev_addr, addr->sa_data);
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000181
182 return 0;
183}
184
Arkadi Sharshevsky2bedde12017-08-06 16:15:49 +0300185struct dsa_slave_dump_ctx {
186 struct net_device *dev;
187 struct sk_buff *skb;
188 struct netlink_callback *cb;
189 int idx;
190};
191
192static int
193dsa_slave_port_fdb_do_dump(const unsigned char *addr, u16 vid,
194 bool is_static, void *data)
195{
196 struct dsa_slave_dump_ctx *dump = data;
197 u32 portid = NETLINK_CB(dump->cb->skb).portid;
198 u32 seq = dump->cb->nlh->nlmsg_seq;
199 struct nlmsghdr *nlh;
200 struct ndmsg *ndm;
201
202 if (dump->idx < dump->cb->args[2])
203 goto skip;
204
205 nlh = nlmsg_put(dump->skb, portid, seq, RTM_NEWNEIGH,
206 sizeof(*ndm), NLM_F_MULTI);
207 if (!nlh)
208 return -EMSGSIZE;
209
210 ndm = nlmsg_data(nlh);
211 ndm->ndm_family = AF_BRIDGE;
212 ndm->ndm_pad1 = 0;
213 ndm->ndm_pad2 = 0;
214 ndm->ndm_flags = NTF_SELF;
215 ndm->ndm_type = 0;
216 ndm->ndm_ifindex = dump->dev->ifindex;
217 ndm->ndm_state = is_static ? NUD_NOARP : NUD_REACHABLE;
218
219 if (nla_put(dump->skb, NDA_LLADDR, ETH_ALEN, addr))
220 goto nla_put_failure;
221
222 if (vid && nla_put_u16(dump->skb, NDA_VLAN, vid))
223 goto nla_put_failure;
224
225 nlmsg_end(dump->skb, nlh);
226
227skip:
228 dump->idx++;
229 return 0;
230
231nla_put_failure:
232 nlmsg_cancel(dump->skb, nlh);
233 return -EMSGSIZE;
234}
235
236static int
237dsa_slave_fdb_dump(struct sk_buff *skb, struct netlink_callback *cb,
238 struct net_device *dev, struct net_device *filter_dev,
239 int *idx)
240{
Vivien Didelotd9450972017-10-16 11:12:15 -0400241 struct dsa_port *dp = dsa_slave_to_port(dev);
Arkadi Sharshevsky2bedde12017-08-06 16:15:49 +0300242 struct dsa_slave_dump_ctx dump = {
243 .dev = dev,
244 .skb = skb,
245 .cb = cb,
246 .idx = *idx,
247 };
Arkadi Sharshevsky2bedde12017-08-06 16:15:49 +0300248 int err;
249
Vivien Didelotde40fc52017-09-20 19:32:14 -0400250 err = dsa_port_fdb_dump(dp, dsa_slave_port_fdb_do_dump, &dump);
Arkadi Sharshevsky2bedde12017-08-06 16:15:49 +0300251 *idx = dump.idx;
Vivien Didelotde40fc52017-09-20 19:32:14 -0400252
Arkadi Sharshevsky2bedde12017-08-06 16:15:49 +0300253 return err;
254}
255
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000256static int dsa_slave_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
257{
Vivien Didelot0115dcd2017-09-26 17:15:32 -0400258 if (!dev->phydev)
Vivien Didelotf4344e02017-09-26 17:15:31 -0400259 return -ENODEV;
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000260
Vivien Didelot0115dcd2017-09-26 17:15:32 -0400261 return phy_mii_ioctl(dev->phydev, ifr, cmd);
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000262}
263
Scott Feldman35636062015-05-10 09:47:51 -0700264static int dsa_slave_port_attr_set(struct net_device *dev,
Jiri Pirkof7fadf32015-10-14 19:40:49 +0200265 const struct switchdev_attr *attr,
Jiri Pirko7ea6eb32015-09-24 10:02:41 +0200266 struct switchdev_trans *trans)
Scott Feldman35636062015-05-10 09:47:51 -0700267{
Vivien Didelotd9450972017-10-16 11:12:15 -0400268 struct dsa_port *dp = dsa_slave_to_port(dev);
Vivien Didelotb8d866a2015-09-29 12:38:36 -0400269 int ret;
Scott Feldman35636062015-05-10 09:47:51 -0700270
271 switch (attr->id) {
Jiri Pirko1f868392015-10-01 11:03:42 +0200272 case SWITCHDEV_ATTR_ID_PORT_STP_STATE:
Vivien Didelotfd364542017-05-19 17:00:36 -0400273 ret = dsa_port_set_state(dp, attr->u.stp_state, trans);
Scott Feldman35636062015-05-10 09:47:51 -0700274 break;
Vivien Didelotfb2daba2016-02-26 13:16:00 -0500275 case SWITCHDEV_ATTR_ID_BRIDGE_VLAN_FILTERING:
Vivien Didelotc02c4172017-05-19 17:00:42 -0400276 ret = dsa_port_vlan_filtering(dp, attr->u.vlan_filtering,
277 trans);
Vivien Didelotfb2daba2016-02-26 13:16:00 -0500278 break;
Vivien Didelot34a79f62016-07-18 20:45:38 -0400279 case SWITCHDEV_ATTR_ID_BRIDGE_AGEING_TIME:
Vivien Didelot072bb192017-05-19 17:00:43 -0400280 ret = dsa_port_ageing_time(dp, attr->u.ageing_time, trans);
Vivien Didelot34a79f62016-07-18 20:45:38 -0400281 break;
Scott Feldman35636062015-05-10 09:47:51 -0700282 default:
283 ret = -EOPNOTSUPP;
284 break;
285 }
286
287 return ret;
288}
289
Vivien Didelotba14d9e2015-08-10 09:09:53 -0400290static int dsa_slave_port_obj_add(struct net_device *dev,
Jiri Pirko648b4a92015-10-01 11:03:45 +0200291 const struct switchdev_obj *obj,
Jiri Pirko7ea6eb32015-09-24 10:02:41 +0200292 struct switchdev_trans *trans)
Vivien Didelotba14d9e2015-08-10 09:09:53 -0400293{
Vivien Didelotd9450972017-10-16 11:12:15 -0400294 struct dsa_port *dp = dsa_slave_to_port(dev);
Vivien Didelotba14d9e2015-08-10 09:09:53 -0400295 int err;
296
297 /* For the prepare phase, ensure the full set of changes is feasable in
298 * one go in order to signal a failure properly. If an operation is not
299 * supported, return -EOPNOTSUPP.
300 */
301
Jiri Pirko9e8f4a52015-10-01 11:03:46 +0200302 switch (obj->id) {
Vivien Didelot8df30252016-08-31 11:50:03 -0400303 case SWITCHDEV_OBJ_ID_PORT_MDB:
Vivien Didelotbcebb972017-05-19 17:00:40 -0400304 err = dsa_port_mdb_add(dp, SWITCHDEV_OBJ_PORT_MDB(obj), trans);
Vivien Didelot8df30252016-08-31 11:50:03 -0400305 break;
Andrew Lunn5f4dbc52017-11-09 23:11:00 +0100306 case SWITCHDEV_OBJ_ID_HOST_MDB:
307 /* DSA can directly translate this to a normal MDB add,
308 * but on the CPU port.
309 */
310 err = dsa_port_mdb_add(dp->cpu_dp, SWITCHDEV_OBJ_PORT_MDB(obj),
311 trans);
312 break;
Jiri Pirko57d80832015-10-01 11:03:41 +0200313 case SWITCHDEV_OBJ_ID_PORT_VLAN:
Vivien Didelot01676d122017-05-19 17:00:41 -0400314 err = dsa_port_vlan_add(dp, SWITCHDEV_OBJ_PORT_VLAN(obj),
315 trans);
Vivien Didelot11149532015-08-13 12:52:17 -0400316 break;
Vivien Didelotba14d9e2015-08-10 09:09:53 -0400317 default:
318 err = -EOPNOTSUPP;
319 break;
320 }
321
322 return err;
323}
324
325static int dsa_slave_port_obj_del(struct net_device *dev,
Jiri Pirko648b4a92015-10-01 11:03:45 +0200326 const struct switchdev_obj *obj)
Vivien Didelotba14d9e2015-08-10 09:09:53 -0400327{
Vivien Didelotd9450972017-10-16 11:12:15 -0400328 struct dsa_port *dp = dsa_slave_to_port(dev);
Vivien Didelotba14d9e2015-08-10 09:09:53 -0400329 int err;
330
Jiri Pirko9e8f4a52015-10-01 11:03:46 +0200331 switch (obj->id) {
Vivien Didelot8df30252016-08-31 11:50:03 -0400332 case SWITCHDEV_OBJ_ID_PORT_MDB:
Vivien Didelotbcebb972017-05-19 17:00:40 -0400333 err = dsa_port_mdb_del(dp, SWITCHDEV_OBJ_PORT_MDB(obj));
Vivien Didelot8df30252016-08-31 11:50:03 -0400334 break;
Andrew Lunn5f4dbc52017-11-09 23:11:00 +0100335 case SWITCHDEV_OBJ_ID_HOST_MDB:
336 /* DSA can directly translate this to a normal MDB add,
337 * but on the CPU port.
338 */
339 err = dsa_port_mdb_del(dp->cpu_dp, SWITCHDEV_OBJ_PORT_MDB(obj));
340 break;
Jiri Pirko57d80832015-10-01 11:03:41 +0200341 case SWITCHDEV_OBJ_ID_PORT_VLAN:
Vivien Didelot01676d122017-05-19 17:00:41 -0400342 err = dsa_port_vlan_del(dp, SWITCHDEV_OBJ_PORT_VLAN(obj));
Vivien Didelot11149532015-08-13 12:52:17 -0400343 break;
Vivien Didelotba14d9e2015-08-10 09:09:53 -0400344 default:
345 err = -EOPNOTSUPP;
346 break;
347 }
348
349 return err;
350}
351
Scott Feldmanf8e20a92015-05-10 09:47:49 -0700352static int dsa_slave_port_attr_get(struct net_device *dev,
353 struct switchdev_attr *attr)
Florian Fainellib73adef2015-02-24 13:15:33 -0800354{
Vivien Didelotd9450972017-10-16 11:12:15 -0400355 struct dsa_port *dp = dsa_slave_to_port(dev);
356 struct dsa_switch *ds = dp->ds;
Andrew Lunna42c8e32017-11-09 22:29:51 +0100357 struct dsa_switch_tree *dst = ds->dst;
Florian Fainellib73adef2015-02-24 13:15:33 -0800358
Scott Feldmanf8e20a92015-05-10 09:47:49 -0700359 switch (attr->id) {
Jiri Pirko1f868392015-10-01 11:03:42 +0200360 case SWITCHDEV_ATTR_ID_PORT_PARENT_ID:
Andrew Lunna42c8e32017-11-09 22:29:51 +0100361 attr->u.ppid.id_len = sizeof(dst->index);
362 memcpy(&attr->u.ppid.id, &dst->index, attr->u.ppid.id_len);
Scott Feldmanf8e20a92015-05-10 09:47:49 -0700363 break;
Arkadi Sharshevskyc9e21052017-08-06 16:15:44 +0300364 case SWITCHDEV_ATTR_ID_PORT_BRIDGE_FLAGS_SUPPORT:
365 attr->u.brport_flags_support = 0;
366 break;
Scott Feldmanf8e20a92015-05-10 09:47:49 -0700367 default:
368 return -EOPNOTSUPP;
369 }
Florian Fainellib73adef2015-02-24 13:15:33 -0800370
371 return 0;
372}
373
Vivien Didelot4fa7b712017-09-20 19:31:57 -0400374static inline netdev_tx_t dsa_slave_netpoll_send_skb(struct net_device *dev,
375 struct sk_buff *skb)
Florian Fainelli04ff53f2015-07-31 11:42:57 -0700376{
377#ifdef CONFIG_NET_POLL_CONTROLLER
Vivien Didelot4fa7b712017-09-20 19:31:57 -0400378 struct dsa_slave_priv *p = netdev_priv(dev);
379
Florian Fainelli04ff53f2015-07-31 11:42:57 -0700380 if (p->netpoll)
381 netpoll_send_skb(p->netpoll, skb);
382#else
383 BUG();
384#endif
385 return NETDEV_TX_OK;
386}
387
Florian Fainelli3e8a72d2014-08-27 17:04:46 -0700388static netdev_tx_t dsa_slave_xmit(struct sk_buff *skb, struct net_device *dev)
389{
390 struct dsa_slave_priv *p = netdev_priv(dev);
Florian Fainelli5f6b4e142017-08-03 21:33:27 -0700391 struct pcpu_sw_netstats *s;
Florian Fainelli4ed70ce2015-07-31 11:42:56 -0700392 struct sk_buff *nskb;
Florian Fainelli3e8a72d2014-08-27 17:04:46 -0700393
Florian Fainelli5f6b4e142017-08-03 21:33:27 -0700394 s = this_cpu_ptr(p->stats64);
395 u64_stats_update_begin(&s->syncp);
396 s->tx_packets++;
397 s->tx_bytes += skb->len;
398 u64_stats_update_end(&s->syncp);
Florian Fainelli3e8a72d2014-08-27 17:04:46 -0700399
Vivien Didelotfe47d562017-06-01 16:07:15 -0400400 /* Transmit function may have to reallocate the original SKB,
401 * in which case it must have freed it. Only free it here on error.
402 */
Florian Fainelli4ed70ce2015-07-31 11:42:56 -0700403 nskb = p->xmit(skb, dev);
Vivien Didelotfe47d562017-06-01 16:07:15 -0400404 if (!nskb) {
405 kfree_skb(skb);
Florian Fainelli4ed70ce2015-07-31 11:42:56 -0700406 return NETDEV_TX_OK;
Vivien Didelotfe47d562017-06-01 16:07:15 -0400407 }
Florian Fainelli5aed85c2014-08-27 17:04:52 -0700408
Florian Fainelli04ff53f2015-07-31 11:42:57 -0700409 /* SKB for netpoll still need to be mangled with the protocol-specific
410 * tag to be successfully transmitted
411 */
412 if (unlikely(netpoll_tx_running(dev)))
Vivien Didelot4fa7b712017-09-20 19:31:57 -0400413 return dsa_slave_netpoll_send_skb(dev, nskb);
Florian Fainelli04ff53f2015-07-31 11:42:57 -0700414
Florian Fainelli4ed70ce2015-07-31 11:42:56 -0700415 /* Queue the SKB for transmission on the parent interface, but
416 * do not modify its EtherType
417 */
Vivien Didelotd0006b02017-10-16 11:12:16 -0400418 nskb->dev = dsa_slave_to_master(dev);
Florian Fainelli4ed70ce2015-07-31 11:42:56 -0700419 dev_queue_xmit(nskb);
Florian Fainelli5aed85c2014-08-27 17:04:52 -0700420
421 return NETDEV_TX_OK;
422}
423
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000424/* ethtool operations *******************************************************/
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000425
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000426static void dsa_slave_get_drvinfo(struct net_device *dev,
427 struct ethtool_drvinfo *drvinfo)
428{
Jiri Pirko7826d432013-01-06 00:44:26 +0000429 strlcpy(drvinfo->driver, "dsa", sizeof(drvinfo->driver));
Jiri Pirko7826d432013-01-06 00:44:26 +0000430 strlcpy(drvinfo->fw_version, "N/A", sizeof(drvinfo->fw_version));
431 strlcpy(drvinfo->bus_info, "platform", sizeof(drvinfo->bus_info));
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000432}
433
Guenter Roeck3d762a02014-10-29 10:45:04 -0700434static int dsa_slave_get_regs_len(struct net_device *dev)
435{
Vivien Didelotd9450972017-10-16 11:12:15 -0400436 struct dsa_port *dp = dsa_slave_to_port(dev);
437 struct dsa_switch *ds = dp->ds;
Guenter Roeck3d762a02014-10-29 10:45:04 -0700438
Vivien Didelot9d490b42016-08-23 12:38:56 -0400439 if (ds->ops->get_regs_len)
Vivien Didelotd9450972017-10-16 11:12:15 -0400440 return ds->ops->get_regs_len(ds, dp->index);
Guenter Roeck3d762a02014-10-29 10:45:04 -0700441
442 return -EOPNOTSUPP;
443}
444
445static void
446dsa_slave_get_regs(struct net_device *dev, struct ethtool_regs *regs, void *_p)
447{
Vivien Didelotd9450972017-10-16 11:12:15 -0400448 struct dsa_port *dp = dsa_slave_to_port(dev);
449 struct dsa_switch *ds = dp->ds;
Guenter Roeck3d762a02014-10-29 10:45:04 -0700450
Vivien Didelot9d490b42016-08-23 12:38:56 -0400451 if (ds->ops->get_regs)
Vivien Didelotd9450972017-10-16 11:12:15 -0400452 ds->ops->get_regs(ds, dp->index, regs, _p);
Guenter Roeck3d762a02014-10-29 10:45:04 -0700453}
454
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000455static u32 dsa_slave_get_link(struct net_device *dev)
456{
Vivien Didelot0115dcd2017-09-26 17:15:32 -0400457 if (!dev->phydev)
Vivien Didelotf4344e02017-09-26 17:15:31 -0400458 return -ENODEV;
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000459
Vivien Didelot0115dcd2017-09-26 17:15:32 -0400460 genphy_update_link(dev->phydev);
Vivien Didelotf4344e02017-09-26 17:15:31 -0400461
Vivien Didelot0115dcd2017-09-26 17:15:32 -0400462 return dev->phydev->link;
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000463}
464
Guenter Roeck6793abb2014-10-29 10:45:01 -0700465static int dsa_slave_get_eeprom_len(struct net_device *dev)
466{
Vivien Didelotd9450972017-10-16 11:12:15 -0400467 struct dsa_port *dp = dsa_slave_to_port(dev);
468 struct dsa_switch *ds = dp->ds;
Guenter Roeck6793abb2014-10-29 10:45:01 -0700469
Andrew Lunn0e576042016-06-04 21:16:52 +0200470 if (ds->cd && ds->cd->eeprom_len)
Andrew Lunnff049552016-05-10 23:27:24 +0200471 return ds->cd->eeprom_len;
Guenter Roeck6793abb2014-10-29 10:45:01 -0700472
Vivien Didelot9d490b42016-08-23 12:38:56 -0400473 if (ds->ops->get_eeprom_len)
474 return ds->ops->get_eeprom_len(ds);
Guenter Roeck6793abb2014-10-29 10:45:01 -0700475
476 return 0;
477}
478
479static int dsa_slave_get_eeprom(struct net_device *dev,
480 struct ethtool_eeprom *eeprom, u8 *data)
481{
Vivien Didelotd9450972017-10-16 11:12:15 -0400482 struct dsa_port *dp = dsa_slave_to_port(dev);
483 struct dsa_switch *ds = dp->ds;
Guenter Roeck6793abb2014-10-29 10:45:01 -0700484
Vivien Didelot9d490b42016-08-23 12:38:56 -0400485 if (ds->ops->get_eeprom)
486 return ds->ops->get_eeprom(ds, eeprom, data);
Guenter Roeck6793abb2014-10-29 10:45:01 -0700487
488 return -EOPNOTSUPP;
489}
490
491static int dsa_slave_set_eeprom(struct net_device *dev,
492 struct ethtool_eeprom *eeprom, u8 *data)
493{
Vivien Didelotd9450972017-10-16 11:12:15 -0400494 struct dsa_port *dp = dsa_slave_to_port(dev);
495 struct dsa_switch *ds = dp->ds;
Guenter Roeck6793abb2014-10-29 10:45:01 -0700496
Vivien Didelot9d490b42016-08-23 12:38:56 -0400497 if (ds->ops->set_eeprom)
498 return ds->ops->set_eeprom(ds, eeprom, data);
Guenter Roeck6793abb2014-10-29 10:45:01 -0700499
500 return -EOPNOTSUPP;
501}
502
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000503static void dsa_slave_get_strings(struct net_device *dev,
504 uint32_t stringset, uint8_t *data)
505{
Vivien Didelotd9450972017-10-16 11:12:15 -0400506 struct dsa_port *dp = dsa_slave_to_port(dev);
507 struct dsa_switch *ds = dp->ds;
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000508
509 if (stringset == ETH_SS_STATS) {
510 int len = ETH_GSTRING_LEN;
511
512 strncpy(data, "tx_packets", len);
513 strncpy(data + len, "tx_bytes", len);
514 strncpy(data + 2 * len, "rx_packets", len);
515 strncpy(data + 3 * len, "rx_bytes", len);
Vivien Didelot9d490b42016-08-23 12:38:56 -0400516 if (ds->ops->get_strings)
Vivien Didelotd9450972017-10-16 11:12:15 -0400517 ds->ops->get_strings(ds, dp->index, data + 4 * len);
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000518 }
519}
520
521static void dsa_slave_get_ethtool_stats(struct net_device *dev,
522 struct ethtool_stats *stats,
523 uint64_t *data)
524{
Vivien Didelotd9450972017-10-16 11:12:15 -0400525 struct dsa_port *dp = dsa_slave_to_port(dev);
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000526 struct dsa_slave_priv *p = netdev_priv(dev);
Vivien Didelotd9450972017-10-16 11:12:15 -0400527 struct dsa_switch *ds = dp->ds;
Florian Fainelli5f6b4e142017-08-03 21:33:27 -0700528 struct pcpu_sw_netstats *s;
Florian Fainellif613ed62017-08-01 15:00:36 -0700529 unsigned int start;
Florian Fainelli5f6b4e142017-08-03 21:33:27 -0700530 int i;
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000531
Florian Fainelli5f6b4e142017-08-03 21:33:27 -0700532 for_each_possible_cpu(i) {
533 u64 tx_packets, tx_bytes, rx_packets, rx_bytes;
534
535 s = per_cpu_ptr(p->stats64, i);
536 do {
537 start = u64_stats_fetch_begin_irq(&s->syncp);
538 tx_packets = s->tx_packets;
539 tx_bytes = s->tx_bytes;
540 rx_packets = s->rx_packets;
541 rx_bytes = s->rx_bytes;
542 } while (u64_stats_fetch_retry_irq(&s->syncp, start));
543 data[0] += tx_packets;
544 data[1] += tx_bytes;
545 data[2] += rx_packets;
546 data[3] += rx_bytes;
547 }
Vivien Didelot9d490b42016-08-23 12:38:56 -0400548 if (ds->ops->get_ethtool_stats)
Vivien Didelotd9450972017-10-16 11:12:15 -0400549 ds->ops->get_ethtool_stats(ds, dp->index, data + 4);
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000550}
551
552static int dsa_slave_get_sset_count(struct net_device *dev, int sset)
553{
Vivien Didelotd9450972017-10-16 11:12:15 -0400554 struct dsa_port *dp = dsa_slave_to_port(dev);
555 struct dsa_switch *ds = dp->ds;
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000556
557 if (sset == ETH_SS_STATS) {
558 int count;
559
560 count = 4;
Vivien Didelot9d490b42016-08-23 12:38:56 -0400561 if (ds->ops->get_sset_count)
562 count += ds->ops->get_sset_count(ds);
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000563
564 return count;
565 }
566
567 return -EOPNOTSUPP;
568}
569
Florian Fainelli19e57c42014-09-18 17:31:24 -0700570static void dsa_slave_get_wol(struct net_device *dev, struct ethtool_wolinfo *w)
571{
Vivien Didelotd9450972017-10-16 11:12:15 -0400572 struct dsa_port *dp = dsa_slave_to_port(dev);
573 struct dsa_switch *ds = dp->ds;
Florian Fainelli19e57c42014-09-18 17:31:24 -0700574
Vivien Didelot9d490b42016-08-23 12:38:56 -0400575 if (ds->ops->get_wol)
Vivien Didelotd9450972017-10-16 11:12:15 -0400576 ds->ops->get_wol(ds, dp->index, w);
Florian Fainelli19e57c42014-09-18 17:31:24 -0700577}
578
579static int dsa_slave_set_wol(struct net_device *dev, struct ethtool_wolinfo *w)
580{
Vivien Didelotd9450972017-10-16 11:12:15 -0400581 struct dsa_port *dp = dsa_slave_to_port(dev);
582 struct dsa_switch *ds = dp->ds;
Florian Fainelli19e57c42014-09-18 17:31:24 -0700583 int ret = -EOPNOTSUPP;
584
Vivien Didelot9d490b42016-08-23 12:38:56 -0400585 if (ds->ops->set_wol)
Vivien Didelotd9450972017-10-16 11:12:15 -0400586 ret = ds->ops->set_wol(ds, dp->index, w);
Florian Fainelli19e57c42014-09-18 17:31:24 -0700587
588 return ret;
589}
590
Florian Fainelli79052882014-09-24 17:05:21 -0700591static int dsa_slave_set_eee(struct net_device *dev, struct ethtool_eee *e)
592{
Vivien Didelotd9450972017-10-16 11:12:15 -0400593 struct dsa_port *dp = dsa_slave_to_port(dev);
594 struct dsa_switch *ds = dp->ds;
Florian Fainelli79052882014-09-24 17:05:21 -0700595 int ret;
596
Vivien Didelot7b9cc732017-08-01 16:32:31 -0400597 /* Port's PHY and MAC both need to be EEE capable */
Vivien Didelot0115dcd2017-09-26 17:15:32 -0400598 if (!dev->phydev)
Vivien Didelot7b9cc732017-08-01 16:32:31 -0400599 return -ENODEV;
600
Vivien Didelot08f50062017-08-01 16:32:41 -0400601 if (!ds->ops->set_mac_eee)
Florian Fainelli79052882014-09-24 17:05:21 -0700602 return -EOPNOTSUPP;
603
Vivien Didelotd9450972017-10-16 11:12:15 -0400604 ret = ds->ops->set_mac_eee(ds, dp->index, e);
Florian Fainelli79052882014-09-24 17:05:21 -0700605 if (ret)
606 return ret;
607
Vivien Didelotc48f7eb2017-08-01 16:32:38 -0400608 if (e->eee_enabled) {
Vivien Didelot0115dcd2017-09-26 17:15:32 -0400609 ret = phy_init_eee(dev->phydev, 0);
Vivien Didelotc48f7eb2017-08-01 16:32:38 -0400610 if (ret)
611 return ret;
612 }
613
Vivien Didelot0115dcd2017-09-26 17:15:32 -0400614 return phy_ethtool_set_eee(dev->phydev, e);
Florian Fainelli79052882014-09-24 17:05:21 -0700615}
616
617static int dsa_slave_get_eee(struct net_device *dev, struct ethtool_eee *e)
618{
Vivien Didelotd9450972017-10-16 11:12:15 -0400619 struct dsa_port *dp = dsa_slave_to_port(dev);
620 struct dsa_switch *ds = dp->ds;
Florian Fainelli79052882014-09-24 17:05:21 -0700621 int ret;
622
Vivien Didelot7b9cc732017-08-01 16:32:31 -0400623 /* Port's PHY and MAC both need to be EEE capable */
Vivien Didelot0115dcd2017-09-26 17:15:32 -0400624 if (!dev->phydev)
Vivien Didelot7b9cc732017-08-01 16:32:31 -0400625 return -ENODEV;
626
Vivien Didelot08f50062017-08-01 16:32:41 -0400627 if (!ds->ops->get_mac_eee)
Florian Fainelli79052882014-09-24 17:05:21 -0700628 return -EOPNOTSUPP;
629
Vivien Didelotd9450972017-10-16 11:12:15 -0400630 ret = ds->ops->get_mac_eee(ds, dp->index, e);
Florian Fainelli79052882014-09-24 17:05:21 -0700631 if (ret)
632 return ret;
633
Vivien Didelot0115dcd2017-09-26 17:15:32 -0400634 return phy_ethtool_get_eee(dev->phydev, e);
Florian Fainelli79052882014-09-24 17:05:21 -0700635}
636
Florian Fainelli04ff53f2015-07-31 11:42:57 -0700637#ifdef CONFIG_NET_POLL_CONTROLLER
638static int dsa_slave_netpoll_setup(struct net_device *dev,
639 struct netpoll_info *ni)
640{
Vivien Didelotd0006b02017-10-16 11:12:16 -0400641 struct net_device *master = dsa_slave_to_master(dev);
Florian Fainelli04ff53f2015-07-31 11:42:57 -0700642 struct dsa_slave_priv *p = netdev_priv(dev);
Florian Fainelli04ff53f2015-07-31 11:42:57 -0700643 struct netpoll *netpoll;
644 int err = 0;
645
646 netpoll = kzalloc(sizeof(*netpoll), GFP_KERNEL);
647 if (!netpoll)
648 return -ENOMEM;
649
650 err = __netpoll_setup(netpoll, master);
651 if (err) {
652 kfree(netpoll);
653 goto out;
654 }
655
656 p->netpoll = netpoll;
657out:
658 return err;
659}
660
661static void dsa_slave_netpoll_cleanup(struct net_device *dev)
662{
663 struct dsa_slave_priv *p = netdev_priv(dev);
664 struct netpoll *netpoll = p->netpoll;
665
666 if (!netpoll)
667 return;
668
669 p->netpoll = NULL;
670
671 __netpoll_free_async(netpoll);
672}
673
674static void dsa_slave_poll_controller(struct net_device *dev)
675{
676}
677#endif
678
Florian Fainelli44bb7652017-01-10 12:32:36 -0800679static int dsa_slave_get_phys_port_name(struct net_device *dev,
680 char *name, size_t len)
681{
Vivien Didelotd9450972017-10-16 11:12:15 -0400682 struct dsa_port *dp = dsa_slave_to_port(dev);
Florian Fainelli44bb7652017-01-10 12:32:36 -0800683
Vivien Didelotd9450972017-10-16 11:12:15 -0400684 if (snprintf(name, len, "p%d", dp->index) >= len)
Florian Fainelli44bb7652017-01-10 12:32:36 -0800685 return -EINVAL;
Florian Fainelli3a543ef2016-12-29 14:20:56 -0800686
687 return 0;
688}
689
Florian Fainellif50f2122017-01-30 12:41:40 -0800690static struct dsa_mall_tc_entry *
Vivien Didelot4fa7b712017-09-20 19:31:57 -0400691dsa_slave_mall_tc_entry_find(struct net_device *dev, unsigned long cookie)
Florian Fainellif50f2122017-01-30 12:41:40 -0800692{
Vivien Didelot4fa7b712017-09-20 19:31:57 -0400693 struct dsa_slave_priv *p = netdev_priv(dev);
Florian Fainellif50f2122017-01-30 12:41:40 -0800694 struct dsa_mall_tc_entry *mall_tc_entry;
695
696 list_for_each_entry(mall_tc_entry, &p->mall_tc_list, list)
697 if (mall_tc_entry->cookie == cookie)
698 return mall_tc_entry;
699
700 return NULL;
701}
702
703static int dsa_slave_add_cls_matchall(struct net_device *dev,
Florian Fainellif50f2122017-01-30 12:41:40 -0800704 struct tc_cls_matchall_offload *cls,
705 bool ingress)
706{
Vivien Didelotd9450972017-10-16 11:12:15 -0400707 struct dsa_port *dp = dsa_slave_to_port(dev);
Florian Fainellif50f2122017-01-30 12:41:40 -0800708 struct dsa_slave_priv *p = netdev_priv(dev);
709 struct dsa_mall_tc_entry *mall_tc_entry;
Jiri Pirko5fd9fc42017-08-07 10:15:29 +0200710 __be16 protocol = cls->common.protocol;
Vivien Didelotd9450972017-10-16 11:12:15 -0400711 struct dsa_switch *ds = dp->ds;
Florian Fainellif50f2122017-01-30 12:41:40 -0800712 struct net_device *to_dev;
713 const struct tc_action *a;
Vivien Didelotd9450972017-10-16 11:12:15 -0400714 struct dsa_port *to_dp;
Florian Fainellif50f2122017-01-30 12:41:40 -0800715 int err = -EOPNOTSUPP;
716 LIST_HEAD(actions);
Florian Fainellif50f2122017-01-30 12:41:40 -0800717
718 if (!ds->ops->port_mirror_add)
719 return err;
720
Jiri Pirko3bcc0ce2017-08-04 14:28:58 +0200721 if (!tcf_exts_has_one_action(cls->exts))
Florian Fainellif50f2122017-01-30 12:41:40 -0800722 return err;
723
724 tcf_exts_to_list(cls->exts, &actions);
725 a = list_first_entry(&actions, struct tc_action, list);
726
727 if (is_tcf_mirred_egress_mirror(a) && protocol == htons(ETH_P_ALL)) {
728 struct dsa_mall_mirror_tc_entry *mirror;
729
Cong Wang9f8a7392017-12-05 16:17:26 -0800730 to_dev = tcf_mirred_dev(a);
Florian Fainellif50f2122017-01-30 12:41:40 -0800731 if (!to_dev)
732 return -EINVAL;
733
734 if (!dsa_slave_dev_check(to_dev))
735 return -EOPNOTSUPP;
736
737 mall_tc_entry = kzalloc(sizeof(*mall_tc_entry), GFP_KERNEL);
738 if (!mall_tc_entry)
739 return -ENOMEM;
740
741 mall_tc_entry->cookie = cls->cookie;
742 mall_tc_entry->type = DSA_PORT_MALL_MIRROR;
743 mirror = &mall_tc_entry->mirror;
744
Vivien Didelotd9450972017-10-16 11:12:15 -0400745 to_dp = dsa_slave_to_port(to_dev);
Florian Fainellif50f2122017-01-30 12:41:40 -0800746
Vivien Didelotd9450972017-10-16 11:12:15 -0400747 mirror->to_local_port = to_dp->index;
Florian Fainellif50f2122017-01-30 12:41:40 -0800748 mirror->ingress = ingress;
749
Vivien Didelotd9450972017-10-16 11:12:15 -0400750 err = ds->ops->port_mirror_add(ds, dp->index, mirror, ingress);
Florian Fainellif50f2122017-01-30 12:41:40 -0800751 if (err) {
752 kfree(mall_tc_entry);
753 return err;
754 }
755
756 list_add_tail(&mall_tc_entry->list, &p->mall_tc_list);
757 }
758
759 return 0;
760}
761
762static void dsa_slave_del_cls_matchall(struct net_device *dev,
763 struct tc_cls_matchall_offload *cls)
764{
Vivien Didelotd9450972017-10-16 11:12:15 -0400765 struct dsa_port *dp = dsa_slave_to_port(dev);
Florian Fainellif50f2122017-01-30 12:41:40 -0800766 struct dsa_mall_tc_entry *mall_tc_entry;
Vivien Didelotd9450972017-10-16 11:12:15 -0400767 struct dsa_switch *ds = dp->ds;
Florian Fainellif50f2122017-01-30 12:41:40 -0800768
769 if (!ds->ops->port_mirror_del)
770 return;
771
Vivien Didelot4fa7b712017-09-20 19:31:57 -0400772 mall_tc_entry = dsa_slave_mall_tc_entry_find(dev, cls->cookie);
Florian Fainellif50f2122017-01-30 12:41:40 -0800773 if (!mall_tc_entry)
774 return;
775
776 list_del(&mall_tc_entry->list);
777
778 switch (mall_tc_entry->type) {
779 case DSA_PORT_MALL_MIRROR:
Vivien Didelotd9450972017-10-16 11:12:15 -0400780 ds->ops->port_mirror_del(ds, dp->index, &mall_tc_entry->mirror);
Florian Fainellif50f2122017-01-30 12:41:40 -0800781 break;
782 default:
783 WARN_ON(1);
784 }
785
786 kfree(mall_tc_entry);
787}
788
Jiri Pirko3fbae382017-08-07 10:15:26 +0200789static int dsa_slave_setup_tc_cls_matchall(struct net_device *dev,
Jiri Pirko6b3eb752017-10-19 15:50:45 +0200790 struct tc_cls_matchall_offload *cls,
791 bool ingress)
Florian Fainellif50f2122017-01-30 12:41:40 -0800792{
Jiri Pirko5fd9fc42017-08-07 10:15:29 +0200793 if (cls->common.chain_index)
Jiri Pirkoa5fcf8a2017-06-06 17:00:16 +0200794 return -EOPNOTSUPP;
Florian Fainellif50f2122017-01-30 12:41:40 -0800795
Jiri Pirko3fbae382017-08-07 10:15:26 +0200796 switch (cls->command) {
797 case TC_CLSMATCHALL_REPLACE:
Jiri Pirko5fd9fc42017-08-07 10:15:29 +0200798 return dsa_slave_add_cls_matchall(dev, cls, ingress);
Jiri Pirko3fbae382017-08-07 10:15:26 +0200799 case TC_CLSMATCHALL_DESTROY:
800 dsa_slave_del_cls_matchall(dev, cls);
801 return 0;
802 default:
803 return -EOPNOTSUPP;
804 }
805}
806
Jiri Pirko6b3eb752017-10-19 15:50:45 +0200807static int dsa_slave_setup_tc_block_cb(enum tc_setup_type type, void *type_data,
808 void *cb_priv, bool ingress)
809{
810 struct net_device *dev = cb_priv;
811
Jiri Pirko44ae12a2017-11-01 11:47:39 +0100812 if (!tc_can_offload(dev))
813 return -EOPNOTSUPP;
814
Jiri Pirko6b3eb752017-10-19 15:50:45 +0200815 switch (type) {
816 case TC_SETUP_CLSMATCHALL:
817 return dsa_slave_setup_tc_cls_matchall(dev, type_data, ingress);
818 default:
819 return -EOPNOTSUPP;
820 }
821}
822
823static int dsa_slave_setup_tc_block_cb_ig(enum tc_setup_type type,
824 void *type_data, void *cb_priv)
825{
826 return dsa_slave_setup_tc_block_cb(type, type_data, cb_priv, true);
827}
828
829static int dsa_slave_setup_tc_block_cb_eg(enum tc_setup_type type,
830 void *type_data, void *cb_priv)
831{
832 return dsa_slave_setup_tc_block_cb(type, type_data, cb_priv, false);
833}
834
835static int dsa_slave_setup_tc_block(struct net_device *dev,
836 struct tc_block_offload *f)
837{
838 tc_setup_cb_t *cb;
839
840 if (f->binder_type == TCF_BLOCK_BINDER_TYPE_CLSACT_INGRESS)
841 cb = dsa_slave_setup_tc_block_cb_ig;
842 else if (f->binder_type == TCF_BLOCK_BINDER_TYPE_CLSACT_EGRESS)
843 cb = dsa_slave_setup_tc_block_cb_eg;
844 else
845 return -EOPNOTSUPP;
846
847 switch (f->command) {
848 case TC_BLOCK_BIND:
849 return tcf_block_cb_register(f->block, cb, dev, dev);
850 case TC_BLOCK_UNBIND:
851 tcf_block_cb_unregister(f->block, cb, dev);
852 return 0;
853 default:
854 return -EOPNOTSUPP;
855 }
856}
857
Jiri Pirko3fbae382017-08-07 10:15:26 +0200858static int dsa_slave_setup_tc(struct net_device *dev, enum tc_setup_type type,
Jiri Pirkode4784c2017-08-07 10:15:32 +0200859 void *type_data)
Jiri Pirko3fbae382017-08-07 10:15:26 +0200860{
Jiri Pirko2572ac52017-08-07 10:15:17 +0200861 switch (type) {
Jiri Pirko6b3eb752017-10-19 15:50:45 +0200862 case TC_SETUP_BLOCK:
863 return dsa_slave_setup_tc_block(dev, type_data);
Florian Fainellif50f2122017-01-30 12:41:40 -0800864 default:
Jiri Pirkoa5fcf8a2017-06-06 17:00:16 +0200865 return -EOPNOTSUPP;
Florian Fainellif50f2122017-01-30 12:41:40 -0800866 }
Florian Fainellif50f2122017-01-30 12:41:40 -0800867}
868
Florian Fainellif613ed62017-08-01 15:00:36 -0700869static void dsa_slave_get_stats64(struct net_device *dev,
870 struct rtnl_link_stats64 *stats)
871{
872 struct dsa_slave_priv *p = netdev_priv(dev);
Florian Fainelli5f6b4e142017-08-03 21:33:27 -0700873 struct pcpu_sw_netstats *s;
Florian Fainellif613ed62017-08-01 15:00:36 -0700874 unsigned int start;
Florian Fainelli5f6b4e142017-08-03 21:33:27 -0700875 int i;
Florian Fainellif613ed62017-08-01 15:00:36 -0700876
877 netdev_stats_to_stats64(stats, &dev->stats);
Florian Fainelli5f6b4e142017-08-03 21:33:27 -0700878 for_each_possible_cpu(i) {
879 u64 tx_packets, tx_bytes, rx_packets, rx_bytes;
880
881 s = per_cpu_ptr(p->stats64, i);
882 do {
883 start = u64_stats_fetch_begin_irq(&s->syncp);
884 tx_packets = s->tx_packets;
885 tx_bytes = s->tx_bytes;
886 rx_packets = s->rx_packets;
887 rx_bytes = s->rx_bytes;
888 } while (u64_stats_fetch_retry_irq(&s->syncp, start));
889
890 stats->tx_packets += tx_packets;
891 stats->tx_bytes += tx_bytes;
892 stats->rx_packets += rx_packets;
893 stats->rx_bytes += rx_bytes;
894 }
Florian Fainellif613ed62017-08-01 15:00:36 -0700895}
896
Florian Fainellibf9f2642017-01-30 09:48:40 -0800897static int dsa_slave_get_rxnfc(struct net_device *dev,
898 struct ethtool_rxnfc *nfc, u32 *rule_locs)
899{
Vivien Didelotd9450972017-10-16 11:12:15 -0400900 struct dsa_port *dp = dsa_slave_to_port(dev);
901 struct dsa_switch *ds = dp->ds;
Florian Fainellibf9f2642017-01-30 09:48:40 -0800902
903 if (!ds->ops->get_rxnfc)
904 return -EOPNOTSUPP;
905
Vivien Didelotd9450972017-10-16 11:12:15 -0400906 return ds->ops->get_rxnfc(ds, dp->index, nfc, rule_locs);
Florian Fainellibf9f2642017-01-30 09:48:40 -0800907}
908
909static int dsa_slave_set_rxnfc(struct net_device *dev,
910 struct ethtool_rxnfc *nfc)
911{
Vivien Didelotd9450972017-10-16 11:12:15 -0400912 struct dsa_port *dp = dsa_slave_to_port(dev);
913 struct dsa_switch *ds = dp->ds;
Florian Fainellibf9f2642017-01-30 09:48:40 -0800914
915 if (!ds->ops->set_rxnfc)
916 return -EOPNOTSUPP;
917
Vivien Didelotd9450972017-10-16 11:12:15 -0400918 return ds->ops->set_rxnfc(ds, dp->index, nfc);
Florian Fainellibf9f2642017-01-30 09:48:40 -0800919}
920
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000921static const struct ethtool_ops dsa_slave_ethtool_ops = {
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000922 .get_drvinfo = dsa_slave_get_drvinfo,
Guenter Roeck3d762a02014-10-29 10:45:04 -0700923 .get_regs_len = dsa_slave_get_regs_len,
924 .get_regs = dsa_slave_get_regs,
Vivien Didelot69b2c1622017-09-26 17:15:35 -0400925 .nway_reset = phy_ethtool_nway_reset,
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000926 .get_link = dsa_slave_get_link,
Guenter Roeck6793abb2014-10-29 10:45:01 -0700927 .get_eeprom_len = dsa_slave_get_eeprom_len,
928 .get_eeprom = dsa_slave_get_eeprom,
929 .set_eeprom = dsa_slave_set_eeprom,
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000930 .get_strings = dsa_slave_get_strings,
931 .get_ethtool_stats = dsa_slave_get_ethtool_stats,
932 .get_sset_count = dsa_slave_get_sset_count,
Florian Fainelli19e57c42014-09-18 17:31:24 -0700933 .set_wol = dsa_slave_set_wol,
934 .get_wol = dsa_slave_get_wol,
Florian Fainelli79052882014-09-24 17:05:21 -0700935 .set_eee = dsa_slave_set_eee,
936 .get_eee = dsa_slave_get_eee,
Vivien Didelot771df312017-09-26 17:15:33 -0400937 .get_link_ksettings = phy_ethtool_get_link_ksettings,
Vivien Didelotaa62a8c2017-09-26 17:15:34 -0400938 .set_link_ksettings = phy_ethtool_set_link_ksettings,
Florian Fainellibf9f2642017-01-30 09:48:40 -0800939 .get_rxnfc = dsa_slave_get_rxnfc,
940 .set_rxnfc = dsa_slave_set_rxnfc,
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000941};
942
Florian Fainelli2a93c1a2017-12-06 15:03:33 -0800943/* legacy way, bypassing the bridge *****************************************/
944int dsa_legacy_fdb_add(struct ndmsg *ndm, struct nlattr *tb[],
945 struct net_device *dev,
946 const unsigned char *addr, u16 vid,
947 u16 flags)
948{
949 struct dsa_port *dp = dsa_slave_to_port(dev);
950
951 return dsa_port_fdb_add(dp, addr, vid);
952}
953
954int dsa_legacy_fdb_del(struct ndmsg *ndm, struct nlattr *tb[],
955 struct net_device *dev,
956 const unsigned char *addr, u16 vid)
957{
958 struct dsa_port *dp = dsa_slave_to_port(dev);
959
960 return dsa_port_fdb_del(dp, addr, vid);
961}
962
Florian Fainelli3e8a72d2014-08-27 17:04:46 -0700963static const struct net_device_ops dsa_slave_netdev_ops = {
Stephen Hemmingerd442ad42009-01-06 16:45:26 -0800964 .ndo_open = dsa_slave_open,
965 .ndo_stop = dsa_slave_close,
Florian Fainelli3e8a72d2014-08-27 17:04:46 -0700966 .ndo_start_xmit = dsa_slave_xmit,
Stephen Hemmingerd442ad42009-01-06 16:45:26 -0800967 .ndo_change_rx_flags = dsa_slave_change_rx_flags,
968 .ndo_set_rx_mode = dsa_slave_set_rx_mode,
Stephen Hemmingerd442ad42009-01-06 16:45:26 -0800969 .ndo_set_mac_address = dsa_slave_set_mac_address,
Arkadi Sharshevsky37b8da12017-08-06 16:15:43 +0300970 .ndo_fdb_add = dsa_legacy_fdb_add,
971 .ndo_fdb_del = dsa_legacy_fdb_del,
Arkadi Sharshevsky2bedde12017-08-06 16:15:49 +0300972 .ndo_fdb_dump = dsa_slave_fdb_dump,
Stephen Hemmingerd442ad42009-01-06 16:45:26 -0800973 .ndo_do_ioctl = dsa_slave_ioctl,
Nicolas Dichtelabd2be02015-04-02 17:07:08 +0200974 .ndo_get_iflink = dsa_slave_get_iflink,
Florian Fainelli04ff53f2015-07-31 11:42:57 -0700975#ifdef CONFIG_NET_POLL_CONTROLLER
976 .ndo_netpoll_setup = dsa_slave_netpoll_setup,
977 .ndo_netpoll_cleanup = dsa_slave_netpoll_cleanup,
978 .ndo_poll_controller = dsa_slave_poll_controller,
979#endif
Florian Fainelli44bb7652017-01-10 12:32:36 -0800980 .ndo_get_phys_port_name = dsa_slave_get_phys_port_name,
Florian Fainellif50f2122017-01-30 12:41:40 -0800981 .ndo_setup_tc = dsa_slave_setup_tc,
Florian Fainellif613ed62017-08-01 15:00:36 -0700982 .ndo_get_stats64 = dsa_slave_get_stats64,
Scott Feldman98237d42015-03-15 21:07:15 -0700983};
984
Jiri Pirko9d47c0a2015-05-10 09:47:47 -0700985static const struct switchdev_ops dsa_slave_switchdev_ops = {
Scott Feldmanf8e20a92015-05-10 09:47:49 -0700986 .switchdev_port_attr_get = dsa_slave_port_attr_get,
Scott Feldman35636062015-05-10 09:47:51 -0700987 .switchdev_port_attr_set = dsa_slave_port_attr_set,
Vivien Didelotba14d9e2015-08-10 09:09:53 -0400988 .switchdev_port_obj_add = dsa_slave_port_obj_add,
989 .switchdev_port_obj_del = dsa_slave_port_obj_del,
Stephen Hemmingerd442ad42009-01-06 16:45:26 -0800990};
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000991
Florian Fainellif37db852015-09-23 18:19:58 -0700992static struct device_type dsa_type = {
993 .name = "dsa",
994};
995
Florian Fainelli0d8bcdd2014-08-27 17:04:51 -0700996static void dsa_slave_adjust_link(struct net_device *dev)
997{
Vivien Didelotd9450972017-10-16 11:12:15 -0400998 struct dsa_port *dp = dsa_slave_to_port(dev);
Florian Fainelli0d8bcdd2014-08-27 17:04:51 -0700999 struct dsa_slave_priv *p = netdev_priv(dev);
Vivien Didelotd9450972017-10-16 11:12:15 -04001000 struct dsa_switch *ds = dp->ds;
Florian Fainelli0d8bcdd2014-08-27 17:04:51 -07001001 unsigned int status_changed = 0;
1002
Vivien Didelot0115dcd2017-09-26 17:15:32 -04001003 if (p->old_link != dev->phydev->link) {
Florian Fainelli0d8bcdd2014-08-27 17:04:51 -07001004 status_changed = 1;
Vivien Didelot0115dcd2017-09-26 17:15:32 -04001005 p->old_link = dev->phydev->link;
Florian Fainelli0d8bcdd2014-08-27 17:04:51 -07001006 }
1007
Vivien Didelot0115dcd2017-09-26 17:15:32 -04001008 if (p->old_duplex != dev->phydev->duplex) {
Florian Fainelli0d8bcdd2014-08-27 17:04:51 -07001009 status_changed = 1;
Vivien Didelot0115dcd2017-09-26 17:15:32 -04001010 p->old_duplex = dev->phydev->duplex;
Florian Fainelli0d8bcdd2014-08-27 17:04:51 -07001011 }
1012
Vivien Didelot0115dcd2017-09-26 17:15:32 -04001013 if (p->old_pause != dev->phydev->pause) {
Florian Fainelli0d8bcdd2014-08-27 17:04:51 -07001014 status_changed = 1;
Vivien Didelot0115dcd2017-09-26 17:15:32 -04001015 p->old_pause = dev->phydev->pause;
Florian Fainelli0d8bcdd2014-08-27 17:04:51 -07001016 }
1017
Vivien Didelot9d490b42016-08-23 12:38:56 -04001018 if (ds->ops->adjust_link && status_changed)
Vivien Didelotd9450972017-10-16 11:12:15 -04001019 ds->ops->adjust_link(ds, dp->index, dev->phydev);
Florian Fainelliec9436b2014-08-27 17:04:53 -07001020
Florian Fainelli0d8bcdd2014-08-27 17:04:51 -07001021 if (status_changed)
Vivien Didelot0115dcd2017-09-26 17:15:32 -04001022 phy_print_status(dev->phydev);
Florian Fainelli0d8bcdd2014-08-27 17:04:51 -07001023}
1024
Florian Fainellice31b312014-08-27 17:04:54 -07001025static int dsa_slave_fixed_link_update(struct net_device *dev,
1026 struct fixed_phy_status *status)
1027{
Andrew Lunnb71be352016-03-12 00:01:37 +01001028 struct dsa_switch *ds;
Vivien Didelotd9450972017-10-16 11:12:15 -04001029 struct dsa_port *dp;
Florian Fainellice31b312014-08-27 17:04:54 -07001030
Andrew Lunnb71be352016-03-12 00:01:37 +01001031 if (dev) {
Vivien Didelotd9450972017-10-16 11:12:15 -04001032 dp = dsa_slave_to_port(dev);
1033 ds = dp->ds;
Vivien Didelot9d490b42016-08-23 12:38:56 -04001034 if (ds->ops->fixed_link_update)
Vivien Didelotd9450972017-10-16 11:12:15 -04001035 ds->ops->fixed_link_update(ds, dp->index, status);
Andrew Lunnb71be352016-03-12 00:01:37 +01001036 }
Florian Fainellice31b312014-08-27 17:04:54 -07001037
1038 return 0;
1039}
1040
Lennert Buytenhek91da11f2008-10-07 13:44:02 +00001041/* slave device setup *******************************************************/
Vivien Didelot4fa7b712017-09-20 19:31:57 -04001042static int dsa_slave_phy_connect(struct net_device *slave_dev, int addr)
Florian Fainellic305c162015-03-10 16:57:12 -07001043{
Vivien Didelotd9450972017-10-16 11:12:15 -04001044 struct dsa_port *dp = dsa_slave_to_port(slave_dev);
Vivien Didelot4fa7b712017-09-20 19:31:57 -04001045 struct dsa_slave_priv *p = netdev_priv(slave_dev);
Vivien Didelotd9450972017-10-16 11:12:15 -04001046 struct dsa_switch *ds = dp->ds;
Florian Fainellic305c162015-03-10 16:57:12 -07001047
Vivien Didelot0115dcd2017-09-26 17:15:32 -04001048 slave_dev->phydev = mdiobus_get_phy(ds->slave_mii_bus, addr);
1049 if (!slave_dev->phydev) {
Russell Kingd25b8e72015-10-03 18:09:07 +01001050 netdev_err(slave_dev, "no phy at %d\n", addr);
Florian Fainellic305c162015-03-10 16:57:12 -07001051 return -ENODEV;
Russell Kingd25b8e72015-10-03 18:09:07 +01001052 }
Florian Fainellic305c162015-03-10 16:57:12 -07001053
1054 /* Use already configured phy mode */
Florian Fainelli211c5042015-08-08 12:58:57 -07001055 if (p->phy_interface == PHY_INTERFACE_MODE_NA)
Vivien Didelot0115dcd2017-09-26 17:15:32 -04001056 p->phy_interface = slave_dev->phydev->interface;
1057
1058 return phy_connect_direct(slave_dev, slave_dev->phydev,
1059 dsa_slave_adjust_link, p->phy_interface);
Florian Fainellic305c162015-03-10 16:57:12 -07001060}
1061
Vivien Didelot4fa7b712017-09-20 19:31:57 -04001062static int dsa_slave_phy_setup(struct net_device *slave_dev)
Florian Fainelli0d8bcdd2014-08-27 17:04:51 -07001063{
Vivien Didelotd9450972017-10-16 11:12:15 -04001064 struct dsa_port *dp = dsa_slave_to_port(slave_dev);
Vivien Didelot4fa7b712017-09-20 19:31:57 -04001065 struct dsa_slave_priv *p = netdev_priv(slave_dev);
Vivien Didelotd9450972017-10-16 11:12:15 -04001066 struct device_node *port_dn = dp->dn;
1067 struct dsa_switch *ds = dp->ds;
1068 struct device_node *phy_dn;
Florian Fainellice31b312014-08-27 17:04:54 -07001069 bool phy_is_fixed = false;
Florian Fainelli68195632014-09-19 13:07:54 -07001070 u32 phy_flags = 0;
Guenter Roeck19334922015-02-16 21:23:51 -08001071 int mode, ret;
Florian Fainelli0d8bcdd2014-08-27 17:04:51 -07001072
Guenter Roeck19334922015-02-16 21:23:51 -08001073 mode = of_get_phy_mode(port_dn);
1074 if (mode < 0)
1075 mode = PHY_INTERFACE_MODE_NA;
1076 p->phy_interface = mode;
Florian Fainelli0d8bcdd2014-08-27 17:04:51 -07001077
1078 phy_dn = of_parse_phandle(port_dn, "phy-handle", 0);
Johan Hovold0d8f3c62016-11-28 19:24:54 +01001079 if (!phy_dn && of_phy_is_fixed_link(port_dn)) {
Florian Fainelli0d8bcdd2014-08-27 17:04:51 -07001080 /* In the case of a fixed PHY, the DT node associated
1081 * to the fixed PHY is the Port DT node
1082 */
1083 ret = of_phy_register_fixed_link(port_dn);
1084 if (ret) {
Russell Kingd25b8e72015-10-03 18:09:07 +01001085 netdev_err(slave_dev, "failed to register fixed PHY: %d\n", ret);
Florian Fainelli9697f1c2014-12-11 12:49:16 -08001086 return ret;
Florian Fainelli0d8bcdd2014-08-27 17:04:51 -07001087 }
Florian Fainellice31b312014-08-27 17:04:54 -07001088 phy_is_fixed = true;
Johan Hovold0d8f3c62016-11-28 19:24:54 +01001089 phy_dn = of_node_get(port_dn);
Florian Fainelli0d8bcdd2014-08-27 17:04:51 -07001090 }
1091
Vivien Didelot9d490b42016-08-23 12:38:56 -04001092 if (ds->ops->get_phy_flags)
Vivien Didelotd9450972017-10-16 11:12:15 -04001093 phy_flags = ds->ops->get_phy_flags(ds, dp->index);
Florian Fainelli68195632014-09-19 13:07:54 -07001094
Florian Fainellicd28a1a2015-03-10 16:57:13 -07001095 if (phy_dn) {
Florian Fainelli399ba772017-10-25 17:32:05 -07001096 slave_dev->phydev = of_phy_connect(slave_dev, phy_dn,
1097 dsa_slave_adjust_link,
1098 phy_flags,
1099 p->phy_interface);
Johan Hovold0d8f3c62016-11-28 19:24:54 +01001100 of_node_put(phy_dn);
Florian Fainellicd28a1a2015-03-10 16:57:13 -07001101 }
Florian Fainelli0d8bcdd2014-08-27 17:04:51 -07001102
Vivien Didelot0115dcd2017-09-26 17:15:32 -04001103 if (slave_dev->phydev && phy_is_fixed)
1104 fixed_phy_set_link_update(slave_dev->phydev,
1105 dsa_slave_fixed_link_update);
Florian Fainellice31b312014-08-27 17:04:54 -07001106
Florian Fainelli0d8bcdd2014-08-27 17:04:51 -07001107 /* We could not connect to a designated PHY, so use the switch internal
1108 * MDIO bus instead
1109 */
Vivien Didelot0115dcd2017-09-26 17:15:32 -04001110 if (!slave_dev->phydev) {
Vivien Didelotd9450972017-10-16 11:12:15 -04001111 ret = dsa_slave_phy_connect(slave_dev, dp->index);
Russell Kingd25b8e72015-10-03 18:09:07 +01001112 if (ret) {
Vivien Didelotafdcf152017-01-27 15:29:39 -05001113 netdev_err(slave_dev, "failed to connect to port %d: %d\n",
Vivien Didelotd9450972017-10-16 11:12:15 -04001114 dp->index, ret);
Johan Hovold881eada2016-11-28 19:25:09 +01001115 if (phy_is_fixed)
1116 of_phy_deregister_fixed_link(port_dn);
Florian Fainellic305c162015-03-10 16:57:12 -07001117 return ret;
Russell Kingd25b8e72015-10-03 18:09:07 +01001118 }
Andrew Lunnb31f65f2014-11-05 19:47:28 +01001119 }
Florian Fainelli9697f1c2014-12-11 12:49:16 -08001120
Vivien Didelot0115dcd2017-09-26 17:15:32 -04001121 phy_attached_info(slave_dev->phydev);
Andrew Lunn22209432016-01-06 20:11:13 +01001122
Florian Fainelli9697f1c2014-12-11 12:49:16 -08001123 return 0;
Florian Fainelli0d8bcdd2014-08-27 17:04:51 -07001124}
1125
Andrew Lunn448b4482015-05-06 01:09:56 +02001126static struct lock_class_key dsa_slave_netdev_xmit_lock_key;
1127static void dsa_slave_set_lockdep_class_one(struct net_device *dev,
1128 struct netdev_queue *txq,
1129 void *_unused)
1130{
1131 lockdep_set_class(&txq->_xmit_lock,
1132 &dsa_slave_netdev_xmit_lock_key);
1133}
1134
Florian Fainelli24462542014-09-18 17:31:22 -07001135int dsa_slave_suspend(struct net_device *slave_dev)
1136{
1137 struct dsa_slave_priv *p = netdev_priv(slave_dev);
1138
Florian Fainellif154be22017-01-25 09:10:41 -08001139 netif_device_detach(slave_dev);
1140
Vivien Didelot0115dcd2017-09-26 17:15:32 -04001141 if (slave_dev->phydev) {
1142 phy_stop(slave_dev->phydev);
Florian Fainelli24462542014-09-18 17:31:22 -07001143 p->old_pause = -1;
1144 p->old_link = -1;
1145 p->old_duplex = -1;
Vivien Didelot0115dcd2017-09-26 17:15:32 -04001146 phy_suspend(slave_dev->phydev);
Florian Fainelli24462542014-09-18 17:31:22 -07001147 }
1148
1149 return 0;
1150}
1151
1152int dsa_slave_resume(struct net_device *slave_dev)
1153{
Florian Fainelli24462542014-09-18 17:31:22 -07001154 netif_device_attach(slave_dev);
1155
Vivien Didelot0115dcd2017-09-26 17:15:32 -04001156 if (slave_dev->phydev) {
1157 phy_resume(slave_dev->phydev);
1158 phy_start(slave_dev->phydev);
Florian Fainelli24462542014-09-18 17:31:22 -07001159 }
1160
1161 return 0;
1162}
1163
Vivien Didelot6158eaa2017-10-16 11:12:14 -04001164static void dsa_slave_notify(struct net_device *dev, unsigned long val)
1165{
Vivien Didelotd0006b02017-10-16 11:12:16 -04001166 struct net_device *master = dsa_slave_to_master(dev);
Vivien Didelotd9450972017-10-16 11:12:15 -04001167 struct dsa_port *dp = dsa_slave_to_port(dev);
Vivien Didelot6158eaa2017-10-16 11:12:14 -04001168 struct dsa_notifier_register_info rinfo = {
1169 .switch_number = dp->ds->index,
1170 .port_number = dp->index,
1171 .master = master,
1172 .info.dev = dev,
1173 };
1174
1175 call_dsa_notifiers(val, dev, &rinfo.info);
1176}
1177
Vivien Didelot951259aa2017-10-27 15:55:19 -04001178int dsa_slave_create(struct dsa_port *port)
Lennert Buytenhek91da11f2008-10-07 13:44:02 +00001179{
Vivien Didelot24a93322017-11-06 16:11:43 -05001180 const struct dsa_port *cpu_dp = port->cpu_dp;
Vivien Didelotf8b8b1c2017-10-16 11:12:18 -04001181 struct net_device *master = cpu_dp->master;
Vivien Didelot4cfbf092017-08-05 16:20:19 -04001182 struct dsa_switch *ds = port->ds;
Vivien Didelot951259aa2017-10-27 15:55:19 -04001183 const char *name = port->name;
Lennert Buytenhek91da11f2008-10-07 13:44:02 +00001184 struct net_device *slave_dev;
1185 struct dsa_slave_priv *p;
1186 int ret;
1187
Florian Fainelli55199df2017-09-03 20:27:00 -07001188 if (!ds->num_tx_queues)
1189 ds->num_tx_queues = 1;
1190
1191 slave_dev = alloc_netdev_mqs(sizeof(struct dsa_slave_priv), name,
1192 NET_NAME_UNKNOWN, ether_setup,
1193 ds->num_tx_queues, 1);
Lennert Buytenhek91da11f2008-10-07 13:44:02 +00001194 if (slave_dev == NULL)
Guenter Roeckd87d6f42015-02-24 13:15:32 -08001195 return -ENOMEM;
Lennert Buytenhek91da11f2008-10-07 13:44:02 +00001196
Florian Fainellif50f2122017-01-30 12:41:40 -08001197 slave_dev->features = master->vlan_features | NETIF_F_HW_TC;
1198 slave_dev->hw_features |= NETIF_F_HW_TC;
Wilfried Klaebe7ad24ea2014-05-11 00:12:32 +00001199 slave_dev->ethtool_ops = &dsa_slave_ethtool_ops;
Bjørn Mork2fcc8002013-08-30 18:08:46 +02001200 eth_hw_addr_inherit(slave_dev, master);
Phil Sutter0a5f1072015-08-18 10:30:41 +02001201 slave_dev->priv_flags |= IFF_NO_QUEUE;
Florian Fainelli3e8a72d2014-08-27 17:04:46 -07001202 slave_dev->netdev_ops = &dsa_slave_netdev_ops;
Jiri Pirko9d47c0a2015-05-10 09:47:47 -07001203 slave_dev->switchdev_ops = &dsa_slave_switchdev_ops;
Jarod Wilson8b1efc02016-10-20 23:25:27 -04001204 slave_dev->min_mtu = 0;
1205 slave_dev->max_mtu = ETH_MAX_MTU;
Florian Fainellif37db852015-09-23 18:19:58 -07001206 SET_NETDEV_DEVTYPE(slave_dev, &dsa_type);
Stephen Hemmingerd442ad42009-01-06 16:45:26 -08001207
Andrew Lunn448b4482015-05-06 01:09:56 +02001208 netdev_for_each_tx_queue(slave_dev, dsa_slave_set_lockdep_class_one,
1209 NULL);
1210
Vivien Didelot4cfbf092017-08-05 16:20:19 -04001211 SET_NETDEV_DEV(slave_dev, port->ds->dev);
1212 slave_dev->dev.of_node = port->dn;
Lennert Buytenhek91da11f2008-10-07 13:44:02 +00001213 slave_dev->vlan_features = master->vlan_features;
1214
1215 p = netdev_priv(slave_dev);
Florian Fainelli5f6b4e142017-08-03 21:33:27 -07001216 p->stats64 = netdev_alloc_pcpu_stats(struct pcpu_sw_netstats);
1217 if (!p->stats64) {
1218 free_netdev(slave_dev);
1219 return -ENOMEM;
1220 }
Vivien Didelot4cfbf092017-08-05 16:20:19 -04001221 p->dp = port;
Florian Fainellif50f2122017-01-30 12:41:40 -08001222 INIT_LIST_HEAD(&p->mall_tc_list);
Vivien Didelot15240242017-09-29 17:19:18 -04001223 p->xmit = cpu_dp->tag_ops->xmit;
Alexander Duyck50753142014-09-15 13:00:19 -04001224
Florian Fainelli0d8bcdd2014-08-27 17:04:51 -07001225 p->old_pause = -1;
1226 p->old_link = -1;
1227 p->old_duplex = -1;
1228
Vivien Didelotf8b8b1c2017-10-16 11:12:18 -04001229 port->slave = slave_dev;
Lennert Buytenhek91da11f2008-10-07 13:44:02 +00001230
1231 netif_carrier_off(slave_dev);
1232
Vivien Didelot4fa7b712017-09-20 19:31:57 -04001233 ret = dsa_slave_phy_setup(slave_dev);
Andrew Lunn0071f562016-01-06 20:11:20 +01001234 if (ret) {
1235 netdev_err(master, "error %d setting up slave phy\n", ret);
Florian Fainellie8044412017-09-25 15:55:53 -07001236 goto out_free;
1237 }
1238
Vivien Didelot6158eaa2017-10-16 11:12:14 -04001239 dsa_slave_notify(slave_dev, DSA_PORT_REGISTER);
Florian Fainelli60724d42017-10-11 10:57:48 -07001240
Florian Fainellie8044412017-09-25 15:55:53 -07001241 ret = register_netdev(slave_dev);
1242 if (ret) {
1243 netdev_err(master, "error %d registering interface %s\n",
1244 ret, slave_dev->name);
1245 goto out_phy;
Andrew Lunn0071f562016-01-06 20:11:20 +01001246 }
1247
Guenter Roeckd87d6f42015-02-24 13:15:32 -08001248 return 0;
Florian Fainellie8044412017-09-25 15:55:53 -07001249
1250out_phy:
David S. Miller53954cf2017-10-05 17:57:03 -07001251 phy_disconnect(slave_dev->phydev);
Vivien Didelotd9450972017-10-16 11:12:15 -04001252 if (of_phy_is_fixed_link(port->dn))
1253 of_phy_deregister_fixed_link(port->dn);
Florian Fainellie8044412017-09-25 15:55:53 -07001254out_free:
1255 free_percpu(p->stats64);
1256 free_netdev(slave_dev);
Vivien Didelotf8b8b1c2017-10-16 11:12:18 -04001257 port->slave = NULL;
Florian Fainellie8044412017-09-25 15:55:53 -07001258 return ret;
Lennert Buytenhek91da11f2008-10-07 13:44:02 +00001259}
Florian Fainellib73adef2015-02-24 13:15:33 -08001260
Neil Armstrongcda5c152015-12-07 13:57:35 +01001261void dsa_slave_destroy(struct net_device *slave_dev)
1262{
Vivien Didelotd9450972017-10-16 11:12:15 -04001263 struct dsa_port *dp = dsa_slave_to_port(slave_dev);
Neil Armstrongcda5c152015-12-07 13:57:35 +01001264 struct dsa_slave_priv *p = netdev_priv(slave_dev);
Vivien Didelotd9450972017-10-16 11:12:15 -04001265 struct device_node *port_dn = dp->dn;
Neil Armstrongcda5c152015-12-07 13:57:35 +01001266
1267 netif_carrier_off(slave_dev);
Vivien Didelot0115dcd2017-09-26 17:15:32 -04001268 if (slave_dev->phydev) {
1269 phy_disconnect(slave_dev->phydev);
Johan Hovold881eada2016-11-28 19:25:09 +01001270
1271 if (of_phy_is_fixed_link(port_dn))
1272 of_phy_deregister_fixed_link(port_dn);
1273 }
Vivien Didelot6158eaa2017-10-16 11:12:14 -04001274 dsa_slave_notify(slave_dev, DSA_PORT_UNREGISTER);
Neil Armstrongcda5c152015-12-07 13:57:35 +01001275 unregister_netdev(slave_dev);
Florian Fainelli5f6b4e142017-08-03 21:33:27 -07001276 free_percpu(p->stats64);
Neil Armstrongcda5c152015-12-07 13:57:35 +01001277 free_netdev(slave_dev);
1278}
1279
Florian Fainellib73adef2015-02-24 13:15:33 -08001280static bool dsa_slave_dev_check(struct net_device *dev)
1281{
1282 return dev->netdev_ops == &dsa_slave_netdev_ops;
1283}
1284
Vivien Didelot8e92ab32017-02-03 13:20:17 -05001285static int dsa_slave_changeupper(struct net_device *dev,
1286 struct netdev_notifier_changeupper_info *info)
Florian Fainellib73adef2015-02-24 13:15:33 -08001287{
Vivien Didelotd9450972017-10-16 11:12:15 -04001288 struct dsa_port *dp = dsa_slave_to_port(dev);
Vivien Didelot8e92ab32017-02-03 13:20:17 -05001289 int err = NOTIFY_DONE;
Florian Fainellib73adef2015-02-24 13:15:33 -08001290
Vivien Didelot8e92ab32017-02-03 13:20:17 -05001291 if (netif_is_bridge_master(info->upper_dev)) {
1292 if (info->linking) {
Vivien Didelot17d78022017-05-19 17:00:38 -04001293 err = dsa_port_bridge_join(dp, info->upper_dev);
Vivien Didelot8e92ab32017-02-03 13:20:17 -05001294 err = notifier_from_errno(err);
1295 } else {
Vivien Didelot17d78022017-05-19 17:00:38 -04001296 dsa_port_bridge_leave(dp, info->upper_dev);
Vivien Didelot8e92ab32017-02-03 13:20:17 -05001297 err = NOTIFY_OK;
Vivien Didelot6debb682016-03-13 16:21:34 -04001298 }
Vivien Didelot6debb682016-03-13 16:21:34 -04001299 }
1300
Vivien Didelot8e92ab32017-02-03 13:20:17 -05001301 return err;
Florian Fainellib73adef2015-02-24 13:15:33 -08001302}
1303
Vivien Didelot88e4f0c2017-02-03 13:20:16 -05001304static int dsa_slave_netdevice_event(struct notifier_block *nb,
1305 unsigned long event, void *ptr)
Florian Fainellib73adef2015-02-24 13:15:33 -08001306{
Vivien Didelot6debb682016-03-13 16:21:34 -04001307 struct net_device *dev = netdev_notifier_info_to_dev(ptr);
Florian Fainellib73adef2015-02-24 13:15:33 -08001308
Florian Fainelli53bade82017-09-19 18:00:37 -07001309 if (!dsa_slave_dev_check(dev))
Vivien Didelot8e92ab32017-02-03 13:20:17 -05001310 return NOTIFY_DONE;
1311
1312 if (event == NETDEV_CHANGEUPPER)
1313 return dsa_slave_changeupper(dev, ptr);
Florian Fainellib73adef2015-02-24 13:15:33 -08001314
Florian Fainellib73adef2015-02-24 13:15:33 -08001315 return NOTIFY_DONE;
1316}
Vivien Didelot88e4f0c2017-02-03 13:20:16 -05001317
Arkadi Sharshevskyc9eb3e02017-08-06 16:15:42 +03001318struct dsa_switchdev_event_work {
1319 struct work_struct work;
1320 struct switchdev_notifier_fdb_info fdb_info;
1321 struct net_device *dev;
1322 unsigned long event;
1323};
1324
1325static void dsa_slave_switchdev_event_work(struct work_struct *work)
1326{
1327 struct dsa_switchdev_event_work *switchdev_work =
1328 container_of(work, struct dsa_switchdev_event_work, work);
1329 struct net_device *dev = switchdev_work->dev;
1330 struct switchdev_notifier_fdb_info *fdb_info;
Vivien Didelotd9450972017-10-16 11:12:15 -04001331 struct dsa_port *dp = dsa_slave_to_port(dev);
Arkadi Sharshevskyc9eb3e02017-08-06 16:15:42 +03001332 int err;
1333
1334 rtnl_lock();
1335 switch (switchdev_work->event) {
1336 case SWITCHDEV_FDB_ADD_TO_DEVICE:
1337 fdb_info = &switchdev_work->fdb_info;
Vivien Didelotd9450972017-10-16 11:12:15 -04001338 err = dsa_port_fdb_add(dp, fdb_info->addr, fdb_info->vid);
Arkadi Sharshevskyc9eb3e02017-08-06 16:15:42 +03001339 if (err) {
1340 netdev_dbg(dev, "fdb add failed err=%d\n", err);
1341 break;
1342 }
1343 call_switchdev_notifiers(SWITCHDEV_FDB_OFFLOADED, dev,
1344 &fdb_info->info);
1345 break;
1346
1347 case SWITCHDEV_FDB_DEL_TO_DEVICE:
1348 fdb_info = &switchdev_work->fdb_info;
Vivien Didelotd9450972017-10-16 11:12:15 -04001349 err = dsa_port_fdb_del(dp, fdb_info->addr, fdb_info->vid);
Arkadi Sharshevskyc9eb3e02017-08-06 16:15:42 +03001350 if (err) {
1351 netdev_dbg(dev, "fdb del failed err=%d\n", err);
1352 dev_close(dev);
1353 }
1354 break;
1355 }
1356 rtnl_unlock();
1357
1358 kfree(switchdev_work->fdb_info.addr);
1359 kfree(switchdev_work);
1360 dev_put(dev);
1361}
1362
1363static int
1364dsa_slave_switchdev_fdb_work_init(struct dsa_switchdev_event_work *
1365 switchdev_work,
1366 const struct switchdev_notifier_fdb_info *
1367 fdb_info)
1368{
1369 memcpy(&switchdev_work->fdb_info, fdb_info,
1370 sizeof(switchdev_work->fdb_info));
1371 switchdev_work->fdb_info.addr = kzalloc(ETH_ALEN, GFP_ATOMIC);
1372 if (!switchdev_work->fdb_info.addr)
1373 return -ENOMEM;
1374 ether_addr_copy((u8 *)switchdev_work->fdb_info.addr,
1375 fdb_info->addr);
1376 return 0;
1377}
1378
1379/* Called under rcu_read_lock() */
1380static int dsa_slave_switchdev_event(struct notifier_block *unused,
1381 unsigned long event, void *ptr)
1382{
1383 struct net_device *dev = switchdev_notifier_info_to_dev(ptr);
1384 struct dsa_switchdev_event_work *switchdev_work;
1385
1386 if (!dsa_slave_dev_check(dev))
1387 return NOTIFY_DONE;
1388
1389 switchdev_work = kzalloc(sizeof(*switchdev_work), GFP_ATOMIC);
1390 if (!switchdev_work)
1391 return NOTIFY_BAD;
1392
1393 INIT_WORK(&switchdev_work->work,
1394 dsa_slave_switchdev_event_work);
1395 switchdev_work->dev = dev;
1396 switchdev_work->event = event;
1397
1398 switch (event) {
1399 case SWITCHDEV_FDB_ADD_TO_DEVICE: /* fall through */
1400 case SWITCHDEV_FDB_DEL_TO_DEVICE:
1401 if (dsa_slave_switchdev_fdb_work_init(switchdev_work,
1402 ptr))
1403 goto err_fdb_work_init;
1404 dev_hold(dev);
1405 break;
1406 default:
1407 kfree(switchdev_work);
1408 return NOTIFY_DONE;
1409 }
1410
1411 dsa_schedule_work(&switchdev_work->work);
1412 return NOTIFY_OK;
1413
1414err_fdb_work_init:
1415 kfree(switchdev_work);
1416 return NOTIFY_BAD;
1417}
1418
Vivien Didelot88e4f0c2017-02-03 13:20:16 -05001419static struct notifier_block dsa_slave_nb __read_mostly = {
Arkadi Sharshevskyc9eb3e02017-08-06 16:15:42 +03001420 .notifier_call = dsa_slave_netdevice_event,
1421};
1422
1423static struct notifier_block dsa_slave_switchdev_notifier = {
1424 .notifier_call = dsa_slave_switchdev_event,
Vivien Didelot88e4f0c2017-02-03 13:20:16 -05001425};
1426
1427int dsa_slave_register_notifier(void)
1428{
Arkadi Sharshevskyc9eb3e02017-08-06 16:15:42 +03001429 int err;
1430
1431 err = register_netdevice_notifier(&dsa_slave_nb);
1432 if (err)
1433 return err;
1434
1435 err = register_switchdev_notifier(&dsa_slave_switchdev_notifier);
1436 if (err)
1437 goto err_switchdev_nb;
1438
1439 return 0;
1440
1441err_switchdev_nb:
1442 unregister_netdevice_notifier(&dsa_slave_nb);
1443 return err;
Vivien Didelot88e4f0c2017-02-03 13:20:16 -05001444}
1445
1446void dsa_slave_unregister_notifier(void)
1447{
1448 int err;
1449
Arkadi Sharshevskyc9eb3e02017-08-06 16:15:42 +03001450 err = unregister_switchdev_notifier(&dsa_slave_switchdev_notifier);
1451 if (err)
1452 pr_err("DSA: failed to unregister switchdev notifier (%d)\n", err);
1453
Vivien Didelot88e4f0c2017-02-03 13:20:16 -05001454 err = unregister_netdevice_notifier(&dsa_slave_nb);
1455 if (err)
1456 pr_err("DSA: failed to unregister slave notifier (%d)\n", err);
1457}