blob: 9ecbe787f102931f5b730d129ffe13bfa59868de [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>
Scott Feldman98237d42015-03-15 21:07:15 -070020#include <net/switchdev.h>
Florian Fainellib73adef2015-02-24 13:15:33 -080021#include <linux/if_bridge.h>
Florian Fainelli04ff53f2015-07-31 11:42:57 -070022#include <linux/netpoll.h>
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",
53 ds->dst->tree, 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{
62 struct dsa_slave_priv *p = netdev_priv(dev);
Lennert Buytenhekc0840802009-03-20 09:49:49 +000063
Nicolas Dichtelabd2be02015-04-02 17:07:08 +020064 return p->parent->dst->master_netdev->ifindex;
Lennert Buytenhekc0840802009-03-20 09:49:49 +000065}
66
Florian Fainellib73adef2015-02-24 13:15:33 -080067static inline bool dsa_port_is_bridged(struct dsa_slave_priv *p)
68{
69 return !!p->bridge_dev;
70}
71
Lennert Buytenhek91da11f2008-10-07 13:44:02 +000072static int dsa_slave_open(struct net_device *dev)
73{
Lennert Buytenhekdf02c6f2008-11-10 21:53:12 -080074 struct dsa_slave_priv *p = netdev_priv(dev);
Lennert Buytenheke84665c2009-03-20 09:52:09 +000075 struct net_device *master = p->parent->dst->master_netdev;
Florian Fainellib2f2af22014-09-24 17:05:18 -070076 struct dsa_switch *ds = p->parent;
Florian Fainellib73adef2015-02-24 13:15:33 -080077 u8 stp_state = dsa_port_is_bridged(p) ?
78 BR_STATE_BLOCKING : BR_STATE_FORWARDING;
Lennert Buytenhekdf02c6f2008-11-10 21:53:12 -080079 int err;
80
81 if (!(master->flags & IFF_UP))
82 return -ENETDOWN;
83
Joe Perches8feedbb2012-05-08 18:56:57 +000084 if (!ether_addr_equal(dev->dev_addr, master->dev_addr)) {
Jiri Pirkoa748ee22010-04-01 21:22:09 +000085 err = dev_uc_add(master, dev->dev_addr);
Lennert Buytenhekdf02c6f2008-11-10 21:53:12 -080086 if (err < 0)
87 goto out;
88 }
89
90 if (dev->flags & IFF_ALLMULTI) {
91 err = dev_set_allmulti(master, 1);
92 if (err < 0)
93 goto del_unicast;
94 }
95 if (dev->flags & IFF_PROMISC) {
96 err = dev_set_promiscuity(master, 1);
97 if (err < 0)
98 goto clear_allmulti;
99 }
100
Vivien Didelot9d490b42016-08-23 12:38:56 -0400101 if (ds->ops->port_enable) {
102 err = ds->ops->port_enable(ds, p->port, p->phy);
Florian Fainellib2f2af22014-09-24 17:05:18 -0700103 if (err)
104 goto clear_promisc;
105 }
106
Vivien Didelot9d490b42016-08-23 12:38:56 -0400107 if (ds->ops->port_stp_state_set)
108 ds->ops->port_stp_state_set(ds, p->port, stp_state);
Florian Fainellib73adef2015-02-24 13:15:33 -0800109
Florian Fainellif7f1de52014-09-24 17:05:17 -0700110 if (p->phy)
111 phy_start(p->phy);
112
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000113 return 0;
Lennert Buytenhekdf02c6f2008-11-10 21:53:12 -0800114
Florian Fainellib2f2af22014-09-24 17:05:18 -0700115clear_promisc:
116 if (dev->flags & IFF_PROMISC)
Gilad Ben-Yossef4fdeddf2015-06-25 16:50:13 +0300117 dev_set_promiscuity(master, -1);
Lennert Buytenhekdf02c6f2008-11-10 21:53:12 -0800118clear_allmulti:
119 if (dev->flags & IFF_ALLMULTI)
120 dev_set_allmulti(master, -1);
121del_unicast:
Joe Perches8feedbb2012-05-08 18:56:57 +0000122 if (!ether_addr_equal(dev->dev_addr, master->dev_addr))
Jiri Pirkoa748ee22010-04-01 21:22:09 +0000123 dev_uc_del(master, dev->dev_addr);
Lennert Buytenhekdf02c6f2008-11-10 21:53:12 -0800124out:
125 return err;
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000126}
127
128static int dsa_slave_close(struct net_device *dev)
129{
Lennert Buytenhekdf02c6f2008-11-10 21:53:12 -0800130 struct dsa_slave_priv *p = netdev_priv(dev);
Lennert Buytenheke84665c2009-03-20 09:52:09 +0000131 struct net_device *master = p->parent->dst->master_netdev;
Florian Fainellib2f2af22014-09-24 17:05:18 -0700132 struct dsa_switch *ds = p->parent;
Lennert Buytenhekdf02c6f2008-11-10 21:53:12 -0800133
Florian Fainellif7f1de52014-09-24 17:05:17 -0700134 if (p->phy)
135 phy_stop(p->phy);
136
Lennert Buytenhekdf02c6f2008-11-10 21:53:12 -0800137 dev_mc_unsync(master, dev);
Jiri Pirkoa748ee22010-04-01 21:22:09 +0000138 dev_uc_unsync(master, dev);
Lennert Buytenhekdf02c6f2008-11-10 21:53:12 -0800139 if (dev->flags & IFF_ALLMULTI)
140 dev_set_allmulti(master, -1);
141 if (dev->flags & IFF_PROMISC)
142 dev_set_promiscuity(master, -1);
143
Joe Perches8feedbb2012-05-08 18:56:57 +0000144 if (!ether_addr_equal(dev->dev_addr, master->dev_addr))
Jiri Pirkoa748ee22010-04-01 21:22:09 +0000145 dev_uc_del(master, dev->dev_addr);
Lennert Buytenhekdf02c6f2008-11-10 21:53:12 -0800146
Vivien Didelot9d490b42016-08-23 12:38:56 -0400147 if (ds->ops->port_disable)
148 ds->ops->port_disable(ds, p->port, p->phy);
Florian Fainellib2f2af22014-09-24 17:05:18 -0700149
Vivien Didelot9d490b42016-08-23 12:38:56 -0400150 if (ds->ops->port_stp_state_set)
151 ds->ops->port_stp_state_set(ds, p->port, BR_STATE_DISABLED);
Florian Fainellib73adef2015-02-24 13:15:33 -0800152
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000153 return 0;
154}
155
156static void dsa_slave_change_rx_flags(struct net_device *dev, int change)
157{
158 struct dsa_slave_priv *p = netdev_priv(dev);
Lennert Buytenheke84665c2009-03-20 09:52:09 +0000159 struct net_device *master = p->parent->dst->master_netdev;
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000160
161 if (change & IFF_ALLMULTI)
162 dev_set_allmulti(master, dev->flags & IFF_ALLMULTI ? 1 : -1);
163 if (change & IFF_PROMISC)
164 dev_set_promiscuity(master, dev->flags & IFF_PROMISC ? 1 : -1);
165}
166
167static void dsa_slave_set_rx_mode(struct net_device *dev)
168{
169 struct dsa_slave_priv *p = netdev_priv(dev);
Lennert Buytenheke84665c2009-03-20 09:52:09 +0000170 struct net_device *master = p->parent->dst->master_netdev;
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000171
172 dev_mc_sync(master, dev);
Jiri Pirkoa748ee22010-04-01 21:22:09 +0000173 dev_uc_sync(master, dev);
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000174}
175
Lennert Buytenhekdf02c6f2008-11-10 21:53:12 -0800176static int dsa_slave_set_mac_address(struct net_device *dev, void *a)
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000177{
Lennert Buytenhekdf02c6f2008-11-10 21:53:12 -0800178 struct dsa_slave_priv *p = netdev_priv(dev);
Lennert Buytenheke84665c2009-03-20 09:52:09 +0000179 struct net_device *master = p->parent->dst->master_netdev;
Lennert Buytenhekdf02c6f2008-11-10 21:53:12 -0800180 struct sockaddr *addr = a;
181 int err;
182
183 if (!is_valid_ether_addr(addr->sa_data))
184 return -EADDRNOTAVAIL;
185
186 if (!(dev->flags & IFF_UP))
187 goto out;
188
Joe Perches8feedbb2012-05-08 18:56:57 +0000189 if (!ether_addr_equal(addr->sa_data, master->dev_addr)) {
Jiri Pirkoa748ee22010-04-01 21:22:09 +0000190 err = dev_uc_add(master, addr->sa_data);
Lennert Buytenhekdf02c6f2008-11-10 21:53:12 -0800191 if (err < 0)
192 return err;
193 }
194
Joe Perches8feedbb2012-05-08 18:56:57 +0000195 if (!ether_addr_equal(dev->dev_addr, master->dev_addr))
Jiri Pirkoa748ee22010-04-01 21:22:09 +0000196 dev_uc_del(master, dev->dev_addr);
Lennert Buytenhekdf02c6f2008-11-10 21:53:12 -0800197
198out:
Joe Perchesd08f1612014-01-20 09:52:20 -0800199 ether_addr_copy(dev->dev_addr, addr->sa_data);
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000200
201 return 0;
202}
203
Vivien Didelot11149532015-08-13 12:52:17 -0400204static int dsa_slave_port_vlan_add(struct net_device *dev,
Jiri Pirko8f24f302015-10-01 11:03:43 +0200205 const struct switchdev_obj_port_vlan *vlan,
Jiri Pirkof8db8342015-09-24 10:02:42 +0200206 struct switchdev_trans *trans)
Vivien Didelot11149532015-08-13 12:52:17 -0400207{
Vivien Didelot11149532015-08-13 12:52:17 -0400208 struct dsa_slave_priv *p = netdev_priv(dev);
209 struct dsa_switch *ds = p->parent;
Vivien Didelot11149532015-08-13 12:52:17 -0400210
Jiri Pirko79a62eb2015-09-24 10:02:48 +0200211 if (switchdev_trans_ph_prepare(trans)) {
Vivien Didelot9d490b42016-08-23 12:38:56 -0400212 if (!ds->ops->port_vlan_prepare || !ds->ops->port_vlan_add)
Vivien Didelot11149532015-08-13 12:52:17 -0400213 return -EOPNOTSUPP;
214
Vivien Didelot9d490b42016-08-23 12:38:56 -0400215 return ds->ops->port_vlan_prepare(ds, p->port, vlan, trans);
Vivien Didelot11149532015-08-13 12:52:17 -0400216 }
217
Vivien Didelot9d490b42016-08-23 12:38:56 -0400218 ds->ops->port_vlan_add(ds, p->port, vlan, trans);
Vivien Didelot4d5770b2016-04-06 11:55:05 -0400219
Vivien Didelot11149532015-08-13 12:52:17 -0400220 return 0;
221}
222
223static int dsa_slave_port_vlan_del(struct net_device *dev,
Jiri Pirko8f24f302015-10-01 11:03:43 +0200224 const struct switchdev_obj_port_vlan *vlan)
Vivien Didelot11149532015-08-13 12:52:17 -0400225{
Vivien Didelot11149532015-08-13 12:52:17 -0400226 struct dsa_slave_priv *p = netdev_priv(dev);
227 struct dsa_switch *ds = p->parent;
Vivien Didelot11149532015-08-13 12:52:17 -0400228
Vivien Didelot9d490b42016-08-23 12:38:56 -0400229 if (!ds->ops->port_vlan_del)
Vivien Didelot11149532015-08-13 12:52:17 -0400230 return -EOPNOTSUPP;
231
Vivien Didelot9d490b42016-08-23 12:38:56 -0400232 return ds->ops->port_vlan_del(ds, p->port, vlan);
Vivien Didelot11149532015-08-13 12:52:17 -0400233}
234
235static int dsa_slave_port_vlan_dump(struct net_device *dev,
Jiri Pirko8f24f302015-10-01 11:03:43 +0200236 struct switchdev_obj_port_vlan *vlan,
Jiri Pirko648b4a92015-10-01 11:03:45 +0200237 switchdev_obj_dump_cb_t *cb)
Vivien Didelot11149532015-08-13 12:52:17 -0400238{
Vivien Didelot11149532015-08-13 12:52:17 -0400239 struct dsa_slave_priv *p = netdev_priv(dev);
240 struct dsa_switch *ds = p->parent;
Vivien Didelot11149532015-08-13 12:52:17 -0400241
Vivien Didelot9d490b42016-08-23 12:38:56 -0400242 if (ds->ops->port_vlan_dump)
243 return ds->ops->port_vlan_dump(ds, p->port, vlan, cb);
Vivien Didelot65aebfc2016-02-23 12:13:54 -0500244
Vivien Didelot477b1842016-02-23 12:13:56 -0500245 return -EOPNOTSUPP;
Vivien Didelot11149532015-08-13 12:52:17 -0400246}
247
Vivien Didelotba14d9e2015-08-10 09:09:53 -0400248static int dsa_slave_port_fdb_add(struct net_device *dev,
Jiri Pirko52ba57c2015-10-01 11:03:44 +0200249 const struct switchdev_obj_port_fdb *fdb,
Jiri Pirkof8db8342015-09-24 10:02:42 +0200250 struct switchdev_trans *trans)
David S. Millercdf09692015-08-11 12:00:37 -0700251{
252 struct dsa_slave_priv *p = netdev_priv(dev);
253 struct dsa_switch *ds = p->parent;
Vivien Didelot146a3202015-10-08 11:35:12 -0400254
Vivien Didelot8497aa62016-04-06 11:55:04 -0400255 if (switchdev_trans_ph_prepare(trans)) {
Vivien Didelot9d490b42016-08-23 12:38:56 -0400256 if (!ds->ops->port_fdb_prepare || !ds->ops->port_fdb_add)
Vivien Didelot8497aa62016-04-06 11:55:04 -0400257 return -EOPNOTSUPP;
David S. Millercdf09692015-08-11 12:00:37 -0700258
Vivien Didelot9d490b42016-08-23 12:38:56 -0400259 return ds->ops->port_fdb_prepare(ds, p->port, fdb, trans);
Vivien Didelot8497aa62016-04-06 11:55:04 -0400260 }
David S. Millercdf09692015-08-11 12:00:37 -0700261
Vivien Didelot9d490b42016-08-23 12:38:56 -0400262 ds->ops->port_fdb_add(ds, p->port, fdb, trans);
Vivien Didelot8497aa62016-04-06 11:55:04 -0400263
264 return 0;
David S. Millercdf09692015-08-11 12:00:37 -0700265}
266
Vivien Didelotba14d9e2015-08-10 09:09:53 -0400267static int dsa_slave_port_fdb_del(struct net_device *dev,
Jiri Pirko52ba57c2015-10-01 11:03:44 +0200268 const struct switchdev_obj_port_fdb *fdb)
David S. Millercdf09692015-08-11 12:00:37 -0700269{
270 struct dsa_slave_priv *p = netdev_priv(dev);
271 struct dsa_switch *ds = p->parent;
272 int ret = -EOPNOTSUPP;
273
Vivien Didelot9d490b42016-08-23 12:38:56 -0400274 if (ds->ops->port_fdb_del)
275 ret = ds->ops->port_fdb_del(ds, p->port, fdb);
David S. Millercdf09692015-08-11 12:00:37 -0700276
277 return ret;
278}
279
Vivien Didelotba14d9e2015-08-10 09:09:53 -0400280static int dsa_slave_port_fdb_dump(struct net_device *dev,
Jiri Pirko52ba57c2015-10-01 11:03:44 +0200281 struct switchdev_obj_port_fdb *fdb,
Jiri Pirko648b4a92015-10-01 11:03:45 +0200282 switchdev_obj_dump_cb_t *cb)
David S. Millercdf09692015-08-11 12:00:37 -0700283{
284 struct dsa_slave_priv *p = netdev_priv(dev);
285 struct dsa_switch *ds = p->parent;
David S. Millercdf09692015-08-11 12:00:37 -0700286
Vivien Didelot9d490b42016-08-23 12:38:56 -0400287 if (ds->ops->port_fdb_dump)
288 return ds->ops->port_fdb_dump(ds, p->port, fdb, cb);
Vivien Didelotea70ba92015-10-22 09:34:38 -0400289
Vivien Didelot1a49a2f2015-10-22 09:34:43 -0400290 return -EOPNOTSUPP;
David S. Millercdf09692015-08-11 12:00:37 -0700291}
292
Vivien Didelot8df30252016-08-31 11:50:03 -0400293static int dsa_slave_port_mdb_add(struct net_device *dev,
294 const struct switchdev_obj_port_mdb *mdb,
295 struct switchdev_trans *trans)
296{
297 struct dsa_slave_priv *p = netdev_priv(dev);
298 struct dsa_switch *ds = p->parent;
299
300 if (switchdev_trans_ph_prepare(trans)) {
301 if (!ds->ops->port_mdb_prepare || !ds->ops->port_mdb_add)
302 return -EOPNOTSUPP;
303
304 return ds->ops->port_mdb_prepare(ds, p->port, mdb, trans);
305 }
306
307 ds->ops->port_mdb_add(ds, p->port, mdb, trans);
308
309 return 0;
310}
311
312static int dsa_slave_port_mdb_del(struct net_device *dev,
313 const struct switchdev_obj_port_mdb *mdb)
314{
315 struct dsa_slave_priv *p = netdev_priv(dev);
316 struct dsa_switch *ds = p->parent;
317
318 if (ds->ops->port_mdb_del)
319 return ds->ops->port_mdb_del(ds, p->port, mdb);
320
321 return -EOPNOTSUPP;
322}
323
324static int dsa_slave_port_mdb_dump(struct net_device *dev,
325 struct switchdev_obj_port_mdb *mdb,
326 switchdev_obj_dump_cb_t *cb)
327{
328 struct dsa_slave_priv *p = netdev_priv(dev);
329 struct dsa_switch *ds = p->parent;
330
331 if (ds->ops->port_mdb_dump)
332 return ds->ops->port_mdb_dump(ds, p->port, mdb, cb);
333
334 return -EOPNOTSUPP;
335}
336
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000337static int dsa_slave_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
338{
339 struct dsa_slave_priv *p = netdev_priv(dev);
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000340
341 if (p->phy != NULL)
Richard Cochran28b04112010-07-17 08:48:55 +0000342 return phy_mii_ioctl(p->phy, ifr, cmd);
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000343
344 return -EOPNOTSUPP;
345}
346
Vivien Didelot43c44a92016-04-06 11:55:03 -0400347static int dsa_slave_stp_state_set(struct net_device *dev,
348 const struct switchdev_attr *attr,
349 struct switchdev_trans *trans)
Florian Fainellib73adef2015-02-24 13:15:33 -0800350{
351 struct dsa_slave_priv *p = netdev_priv(dev);
352 struct dsa_switch *ds = p->parent;
Florian Fainellib73adef2015-02-24 13:15:33 -0800353
Vivien Didelot43c44a92016-04-06 11:55:03 -0400354 if (switchdev_trans_ph_prepare(trans))
Vivien Didelot9d490b42016-08-23 12:38:56 -0400355 return ds->ops->port_stp_state_set ? 0 : -EOPNOTSUPP;
Florian Fainellib73adef2015-02-24 13:15:33 -0800356
Vivien Didelot9d490b42016-08-23 12:38:56 -0400357 ds->ops->port_stp_state_set(ds, p->port, attr->u.stp_state);
Vivien Didelot43c44a92016-04-06 11:55:03 -0400358
359 return 0;
Florian Fainellib73adef2015-02-24 13:15:33 -0800360}
361
Vivien Didelotfb2daba2016-02-26 13:16:00 -0500362static int dsa_slave_vlan_filtering(struct net_device *dev,
363 const struct switchdev_attr *attr,
364 struct switchdev_trans *trans)
365{
366 struct dsa_slave_priv *p = netdev_priv(dev);
367 struct dsa_switch *ds = p->parent;
368
369 /* bridge skips -EOPNOTSUPP, so skip the prepare phase */
370 if (switchdev_trans_ph_prepare(trans))
371 return 0;
372
Vivien Didelot9d490b42016-08-23 12:38:56 -0400373 if (ds->ops->port_vlan_filtering)
374 return ds->ops->port_vlan_filtering(ds, p->port,
Vivien Didelotfb2daba2016-02-26 13:16:00 -0500375 attr->u.vlan_filtering);
376
377 return 0;
378}
379
Vivien Didelot34a79f62016-07-18 20:45:38 -0400380static int dsa_fastest_ageing_time(struct dsa_switch *ds,
381 unsigned int ageing_time)
382{
383 int i;
384
385 for (i = 0; i < DSA_MAX_PORTS; ++i) {
386 struct dsa_port *dp = &ds->ports[i];
387
388 if (dp && dp->ageing_time && dp->ageing_time < ageing_time)
389 ageing_time = dp->ageing_time;
390 }
391
392 return ageing_time;
393}
394
395static int dsa_slave_ageing_time(struct net_device *dev,
396 const struct switchdev_attr *attr,
397 struct switchdev_trans *trans)
398{
399 struct dsa_slave_priv *p = netdev_priv(dev);
400 struct dsa_switch *ds = p->parent;
401 unsigned long ageing_jiffies = clock_t_to_jiffies(attr->u.ageing_time);
402 unsigned int ageing_time = jiffies_to_msecs(ageing_jiffies);
403
404 /* bridge skips -EOPNOTSUPP, so skip the prepare phase */
405 if (switchdev_trans_ph_prepare(trans))
406 return 0;
407
408 /* Keep the fastest ageing time in case of multiple bridges */
409 ds->ports[p->port].ageing_time = ageing_time;
410 ageing_time = dsa_fastest_ageing_time(ds, ageing_time);
411
Vivien Didelot9d490b42016-08-23 12:38:56 -0400412 if (ds->ops->set_ageing_time)
413 return ds->ops->set_ageing_time(ds, ageing_time);
Vivien Didelot34a79f62016-07-18 20:45:38 -0400414
415 return 0;
416}
417
Scott Feldman35636062015-05-10 09:47:51 -0700418static int dsa_slave_port_attr_set(struct net_device *dev,
Jiri Pirkof7fadf32015-10-14 19:40:49 +0200419 const struct switchdev_attr *attr,
Jiri Pirko7ea6eb32015-09-24 10:02:41 +0200420 struct switchdev_trans *trans)
Scott Feldman35636062015-05-10 09:47:51 -0700421{
Vivien Didelotb8d866a2015-09-29 12:38:36 -0400422 int ret;
Scott Feldman35636062015-05-10 09:47:51 -0700423
424 switch (attr->id) {
Jiri Pirko1f868392015-10-01 11:03:42 +0200425 case SWITCHDEV_ATTR_ID_PORT_STP_STATE:
Vivien Didelot43c44a92016-04-06 11:55:03 -0400426 ret = dsa_slave_stp_state_set(dev, attr, trans);
Scott Feldman35636062015-05-10 09:47:51 -0700427 break;
Vivien Didelotfb2daba2016-02-26 13:16:00 -0500428 case SWITCHDEV_ATTR_ID_BRIDGE_VLAN_FILTERING:
429 ret = dsa_slave_vlan_filtering(dev, attr, trans);
430 break;
Vivien Didelot34a79f62016-07-18 20:45:38 -0400431 case SWITCHDEV_ATTR_ID_BRIDGE_AGEING_TIME:
432 ret = dsa_slave_ageing_time(dev, attr, trans);
433 break;
Scott Feldman35636062015-05-10 09:47:51 -0700434 default:
435 ret = -EOPNOTSUPP;
436 break;
437 }
438
439 return ret;
440}
441
Vivien Didelotba14d9e2015-08-10 09:09:53 -0400442static int dsa_slave_port_obj_add(struct net_device *dev,
Jiri Pirko648b4a92015-10-01 11:03:45 +0200443 const struct switchdev_obj *obj,
Jiri Pirko7ea6eb32015-09-24 10:02:41 +0200444 struct switchdev_trans *trans)
Vivien Didelotba14d9e2015-08-10 09:09:53 -0400445{
446 int err;
447
448 /* For the prepare phase, ensure the full set of changes is feasable in
449 * one go in order to signal a failure properly. If an operation is not
450 * supported, return -EOPNOTSUPP.
451 */
452
Jiri Pirko9e8f4a52015-10-01 11:03:46 +0200453 switch (obj->id) {
Jiri Pirko57d80832015-10-01 11:03:41 +0200454 case SWITCHDEV_OBJ_ID_PORT_FDB:
Jiri Pirko648b4a92015-10-01 11:03:45 +0200455 err = dsa_slave_port_fdb_add(dev,
456 SWITCHDEV_OBJ_PORT_FDB(obj),
457 trans);
Vivien Didelotba14d9e2015-08-10 09:09:53 -0400458 break;
Vivien Didelot8df30252016-08-31 11:50:03 -0400459 case SWITCHDEV_OBJ_ID_PORT_MDB:
460 err = dsa_slave_port_mdb_add(dev, SWITCHDEV_OBJ_PORT_MDB(obj),
461 trans);
462 break;
Jiri Pirko57d80832015-10-01 11:03:41 +0200463 case SWITCHDEV_OBJ_ID_PORT_VLAN:
Jiri Pirko648b4a92015-10-01 11:03:45 +0200464 err = dsa_slave_port_vlan_add(dev,
465 SWITCHDEV_OBJ_PORT_VLAN(obj),
466 trans);
Vivien Didelot11149532015-08-13 12:52:17 -0400467 break;
Vivien Didelotba14d9e2015-08-10 09:09:53 -0400468 default:
469 err = -EOPNOTSUPP;
470 break;
471 }
472
473 return err;
474}
475
476static int dsa_slave_port_obj_del(struct net_device *dev,
Jiri Pirko648b4a92015-10-01 11:03:45 +0200477 const struct switchdev_obj *obj)
Vivien Didelotba14d9e2015-08-10 09:09:53 -0400478{
479 int err;
480
Jiri Pirko9e8f4a52015-10-01 11:03:46 +0200481 switch (obj->id) {
Jiri Pirko57d80832015-10-01 11:03:41 +0200482 case SWITCHDEV_OBJ_ID_PORT_FDB:
Jiri Pirko648b4a92015-10-01 11:03:45 +0200483 err = dsa_slave_port_fdb_del(dev,
484 SWITCHDEV_OBJ_PORT_FDB(obj));
Vivien Didelotba14d9e2015-08-10 09:09:53 -0400485 break;
Vivien Didelot8df30252016-08-31 11:50:03 -0400486 case SWITCHDEV_OBJ_ID_PORT_MDB:
487 err = dsa_slave_port_mdb_del(dev, SWITCHDEV_OBJ_PORT_MDB(obj));
488 break;
Jiri Pirko57d80832015-10-01 11:03:41 +0200489 case SWITCHDEV_OBJ_ID_PORT_VLAN:
Jiri Pirko648b4a92015-10-01 11:03:45 +0200490 err = dsa_slave_port_vlan_del(dev,
491 SWITCHDEV_OBJ_PORT_VLAN(obj));
Vivien Didelot11149532015-08-13 12:52:17 -0400492 break;
Vivien Didelotba14d9e2015-08-10 09:09:53 -0400493 default:
494 err = -EOPNOTSUPP;
495 break;
496 }
497
498 return err;
499}
500
501static int dsa_slave_port_obj_dump(struct net_device *dev,
Jiri Pirko648b4a92015-10-01 11:03:45 +0200502 struct switchdev_obj *obj,
503 switchdev_obj_dump_cb_t *cb)
Vivien Didelotba14d9e2015-08-10 09:09:53 -0400504{
505 int err;
506
Jiri Pirko9e8f4a52015-10-01 11:03:46 +0200507 switch (obj->id) {
Jiri Pirko57d80832015-10-01 11:03:41 +0200508 case SWITCHDEV_OBJ_ID_PORT_FDB:
Jiri Pirko648b4a92015-10-01 11:03:45 +0200509 err = dsa_slave_port_fdb_dump(dev,
510 SWITCHDEV_OBJ_PORT_FDB(obj),
511 cb);
Vivien Didelotba14d9e2015-08-10 09:09:53 -0400512 break;
Vivien Didelot8df30252016-08-31 11:50:03 -0400513 case SWITCHDEV_OBJ_ID_PORT_MDB:
514 err = dsa_slave_port_mdb_dump(dev, SWITCHDEV_OBJ_PORT_MDB(obj),
515 cb);
516 break;
Jiri Pirko57d80832015-10-01 11:03:41 +0200517 case SWITCHDEV_OBJ_ID_PORT_VLAN:
Jiri Pirko648b4a92015-10-01 11:03:45 +0200518 err = dsa_slave_port_vlan_dump(dev,
519 SWITCHDEV_OBJ_PORT_VLAN(obj),
520 cb);
Vivien Didelot11149532015-08-13 12:52:17 -0400521 break;
Vivien Didelotba14d9e2015-08-10 09:09:53 -0400522 default:
523 err = -EOPNOTSUPP;
524 break;
525 }
526
527 return err;
528}
529
Florian Fainellib73adef2015-02-24 13:15:33 -0800530static int dsa_slave_bridge_port_join(struct net_device *dev,
531 struct net_device *br)
532{
533 struct dsa_slave_priv *p = netdev_priv(dev);
534 struct dsa_switch *ds = p->parent;
535 int ret = -EOPNOTSUPP;
536
537 p->bridge_dev = br;
538
Vivien Didelot9d490b42016-08-23 12:38:56 -0400539 if (ds->ops->port_bridge_join)
540 ret = ds->ops->port_bridge_join(ds, p->port, br);
Florian Fainellib73adef2015-02-24 13:15:33 -0800541
Vivien Didelot6debb682016-03-13 16:21:34 -0400542 return ret == -EOPNOTSUPP ? 0 : ret;
Florian Fainellib73adef2015-02-24 13:15:33 -0800543}
544
Vivien Didelot16bfa702016-03-13 16:21:33 -0400545static void dsa_slave_bridge_port_leave(struct net_device *dev)
Florian Fainellib73adef2015-02-24 13:15:33 -0800546{
547 struct dsa_slave_priv *p = netdev_priv(dev);
548 struct dsa_switch *ds = p->parent;
Florian Fainellib73adef2015-02-24 13:15:33 -0800549
550
Vivien Didelot9d490b42016-08-23 12:38:56 -0400551 if (ds->ops->port_bridge_leave)
552 ds->ops->port_bridge_leave(ds, p->port);
Florian Fainellib73adef2015-02-24 13:15:33 -0800553
554 p->bridge_dev = NULL;
555
556 /* Port left the bridge, put in BR_STATE_DISABLED by the bridge layer,
557 * so allow it to be in BR_STATE_FORWARDING to be kept functional
558 */
Vivien Didelot9d490b42016-08-23 12:38:56 -0400559 if (ds->ops->port_stp_state_set)
560 ds->ops->port_stp_state_set(ds, p->port, BR_STATE_FORWARDING);
Florian Fainellib73adef2015-02-24 13:15:33 -0800561}
562
Scott Feldmanf8e20a92015-05-10 09:47:49 -0700563static int dsa_slave_port_attr_get(struct net_device *dev,
564 struct switchdev_attr *attr)
Florian Fainellib73adef2015-02-24 13:15:33 -0800565{
566 struct dsa_slave_priv *p = netdev_priv(dev);
567 struct dsa_switch *ds = p->parent;
568
Scott Feldmanf8e20a92015-05-10 09:47:49 -0700569 switch (attr->id) {
Jiri Pirko1f868392015-10-01 11:03:42 +0200570 case SWITCHDEV_ATTR_ID_PORT_PARENT_ID:
Scott Feldman42275bd2015-05-13 11:16:50 -0700571 attr->u.ppid.id_len = sizeof(ds->index);
572 memcpy(&attr->u.ppid.id, &ds->index, attr->u.ppid.id_len);
Scott Feldmanf8e20a92015-05-10 09:47:49 -0700573 break;
574 default:
575 return -EOPNOTSUPP;
576 }
Florian Fainellib73adef2015-02-24 13:15:33 -0800577
578 return 0;
579}
580
Florian Fainelli04ff53f2015-07-31 11:42:57 -0700581static inline netdev_tx_t dsa_netpoll_send_skb(struct dsa_slave_priv *p,
582 struct sk_buff *skb)
583{
584#ifdef CONFIG_NET_POLL_CONTROLLER
585 if (p->netpoll)
586 netpoll_send_skb(p->netpoll, skb);
587#else
588 BUG();
589#endif
590 return NETDEV_TX_OK;
591}
592
Florian Fainelli3e8a72d2014-08-27 17:04:46 -0700593static netdev_tx_t dsa_slave_xmit(struct sk_buff *skb, struct net_device *dev)
594{
595 struct dsa_slave_priv *p = netdev_priv(dev);
Florian Fainelli4ed70ce2015-07-31 11:42:56 -0700596 struct sk_buff *nskb;
Florian Fainelli3e8a72d2014-08-27 17:04:46 -0700597
Florian Fainelli4ed70ce2015-07-31 11:42:56 -0700598 dev->stats.tx_packets++;
599 dev->stats.tx_bytes += skb->len;
Florian Fainelli3e8a72d2014-08-27 17:04:46 -0700600
Florian Fainelli4ed70ce2015-07-31 11:42:56 -0700601 /* Transmit function may have to reallocate the original SKB */
602 nskb = p->xmit(skb, dev);
603 if (!nskb)
604 return NETDEV_TX_OK;
Florian Fainelli5aed85c2014-08-27 17:04:52 -0700605
Florian Fainelli04ff53f2015-07-31 11:42:57 -0700606 /* SKB for netpoll still need to be mangled with the protocol-specific
607 * tag to be successfully transmitted
608 */
609 if (unlikely(netpoll_tx_running(dev)))
610 return dsa_netpoll_send_skb(p, nskb);
611
Florian Fainelli4ed70ce2015-07-31 11:42:56 -0700612 /* Queue the SKB for transmission on the parent interface, but
613 * do not modify its EtherType
614 */
615 nskb->dev = p->parent->dst->master_netdev;
616 dev_queue_xmit(nskb);
Florian Fainelli5aed85c2014-08-27 17:04:52 -0700617
618 return NETDEV_TX_OK;
619}
620
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000621/* ethtool operations *******************************************************/
622static int
623dsa_slave_get_settings(struct net_device *dev, struct ethtool_cmd *cmd)
624{
625 struct dsa_slave_priv *p = netdev_priv(dev);
626 int err;
627
628 err = -EOPNOTSUPP;
629 if (p->phy != NULL) {
630 err = phy_read_status(p->phy);
631 if (err == 0)
632 err = phy_ethtool_gset(p->phy, cmd);
633 }
634
635 return err;
636}
637
638static int
639dsa_slave_set_settings(struct net_device *dev, struct ethtool_cmd *cmd)
640{
641 struct dsa_slave_priv *p = netdev_priv(dev);
642
643 if (p->phy != NULL)
644 return phy_ethtool_sset(p->phy, cmd);
645
646 return -EOPNOTSUPP;
647}
648
649static void dsa_slave_get_drvinfo(struct net_device *dev,
650 struct ethtool_drvinfo *drvinfo)
651{
Jiri Pirko7826d432013-01-06 00:44:26 +0000652 strlcpy(drvinfo->driver, "dsa", sizeof(drvinfo->driver));
653 strlcpy(drvinfo->version, dsa_driver_version, sizeof(drvinfo->version));
654 strlcpy(drvinfo->fw_version, "N/A", sizeof(drvinfo->fw_version));
655 strlcpy(drvinfo->bus_info, "platform", sizeof(drvinfo->bus_info));
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000656}
657
Guenter Roeck3d762a02014-10-29 10:45:04 -0700658static int dsa_slave_get_regs_len(struct net_device *dev)
659{
660 struct dsa_slave_priv *p = netdev_priv(dev);
661 struct dsa_switch *ds = p->parent;
662
Vivien Didelot9d490b42016-08-23 12:38:56 -0400663 if (ds->ops->get_regs_len)
664 return ds->ops->get_regs_len(ds, p->port);
Guenter Roeck3d762a02014-10-29 10:45:04 -0700665
666 return -EOPNOTSUPP;
667}
668
669static void
670dsa_slave_get_regs(struct net_device *dev, struct ethtool_regs *regs, void *_p)
671{
672 struct dsa_slave_priv *p = netdev_priv(dev);
673 struct dsa_switch *ds = p->parent;
674
Vivien Didelot9d490b42016-08-23 12:38:56 -0400675 if (ds->ops->get_regs)
676 ds->ops->get_regs(ds, p->port, regs, _p);
Guenter Roeck3d762a02014-10-29 10:45:04 -0700677}
678
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000679static int dsa_slave_nway_reset(struct net_device *dev)
680{
681 struct dsa_slave_priv *p = netdev_priv(dev);
682
683 if (p->phy != NULL)
684 return genphy_restart_aneg(p->phy);
685
686 return -EOPNOTSUPP;
687}
688
689static u32 dsa_slave_get_link(struct net_device *dev)
690{
691 struct dsa_slave_priv *p = netdev_priv(dev);
692
693 if (p->phy != NULL) {
694 genphy_update_link(p->phy);
695 return p->phy->link;
696 }
697
698 return -EOPNOTSUPP;
699}
700
Guenter Roeck6793abb2014-10-29 10:45:01 -0700701static int dsa_slave_get_eeprom_len(struct net_device *dev)
702{
703 struct dsa_slave_priv *p = netdev_priv(dev);
704 struct dsa_switch *ds = p->parent;
705
Andrew Lunn0e576042016-06-04 21:16:52 +0200706 if (ds->cd && ds->cd->eeprom_len)
Andrew Lunnff049552016-05-10 23:27:24 +0200707 return ds->cd->eeprom_len;
Guenter Roeck6793abb2014-10-29 10:45:01 -0700708
Vivien Didelot9d490b42016-08-23 12:38:56 -0400709 if (ds->ops->get_eeprom_len)
710 return ds->ops->get_eeprom_len(ds);
Guenter Roeck6793abb2014-10-29 10:45:01 -0700711
712 return 0;
713}
714
715static int dsa_slave_get_eeprom(struct net_device *dev,
716 struct ethtool_eeprom *eeprom, u8 *data)
717{
718 struct dsa_slave_priv *p = netdev_priv(dev);
719 struct dsa_switch *ds = p->parent;
720
Vivien Didelot9d490b42016-08-23 12:38:56 -0400721 if (ds->ops->get_eeprom)
722 return ds->ops->get_eeprom(ds, eeprom, data);
Guenter Roeck6793abb2014-10-29 10:45:01 -0700723
724 return -EOPNOTSUPP;
725}
726
727static int dsa_slave_set_eeprom(struct net_device *dev,
728 struct ethtool_eeprom *eeprom, u8 *data)
729{
730 struct dsa_slave_priv *p = netdev_priv(dev);
731 struct dsa_switch *ds = p->parent;
732
Vivien Didelot9d490b42016-08-23 12:38:56 -0400733 if (ds->ops->set_eeprom)
734 return ds->ops->set_eeprom(ds, eeprom, data);
Guenter Roeck6793abb2014-10-29 10:45:01 -0700735
736 return -EOPNOTSUPP;
737}
738
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000739static void dsa_slave_get_strings(struct net_device *dev,
740 uint32_t stringset, uint8_t *data)
741{
742 struct dsa_slave_priv *p = netdev_priv(dev);
743 struct dsa_switch *ds = p->parent;
744
745 if (stringset == ETH_SS_STATS) {
746 int len = ETH_GSTRING_LEN;
747
748 strncpy(data, "tx_packets", len);
749 strncpy(data + len, "tx_bytes", len);
750 strncpy(data + 2 * len, "rx_packets", len);
751 strncpy(data + 3 * len, "rx_bytes", len);
Vivien Didelot9d490b42016-08-23 12:38:56 -0400752 if (ds->ops->get_strings)
753 ds->ops->get_strings(ds, p->port, data + 4 * len);
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000754 }
755}
756
Florian Fainellibadf3ad2016-04-27 11:45:14 -0700757static void dsa_cpu_port_get_ethtool_stats(struct net_device *dev,
758 struct ethtool_stats *stats,
759 uint64_t *data)
760{
761 struct dsa_switch_tree *dst = dev->dsa_ptr;
762 struct dsa_switch *ds = dst->ds[0];
763 s8 cpu_port = dst->cpu_port;
764 int count = 0;
765
766 if (dst->master_ethtool_ops.get_sset_count) {
767 count = dst->master_ethtool_ops.get_sset_count(dev,
768 ETH_SS_STATS);
769 dst->master_ethtool_ops.get_ethtool_stats(dev, stats, data);
770 }
771
Vivien Didelot9d490b42016-08-23 12:38:56 -0400772 if (ds->ops->get_ethtool_stats)
773 ds->ops->get_ethtool_stats(ds, cpu_port, data + count);
Florian Fainellibadf3ad2016-04-27 11:45:14 -0700774}
775
776static int dsa_cpu_port_get_sset_count(struct net_device *dev, int sset)
777{
778 struct dsa_switch_tree *dst = dev->dsa_ptr;
779 struct dsa_switch *ds = dst->ds[0];
780 int count = 0;
781
782 if (dst->master_ethtool_ops.get_sset_count)
783 count += dst->master_ethtool_ops.get_sset_count(dev, sset);
784
Vivien Didelot9d490b42016-08-23 12:38:56 -0400785 if (sset == ETH_SS_STATS && ds->ops->get_sset_count)
786 count += ds->ops->get_sset_count(ds);
Florian Fainellibadf3ad2016-04-27 11:45:14 -0700787
788 return count;
789}
790
791static void dsa_cpu_port_get_strings(struct net_device *dev,
792 uint32_t stringset, uint8_t *data)
793{
794 struct dsa_switch_tree *dst = dev->dsa_ptr;
795 struct dsa_switch *ds = dst->ds[0];
796 s8 cpu_port = dst->cpu_port;
797 int len = ETH_GSTRING_LEN;
798 int mcount = 0, count;
799 unsigned int i;
800 uint8_t pfx[4];
801 uint8_t *ndata;
802
803 snprintf(pfx, sizeof(pfx), "p%.2d", cpu_port);
804 /* We do not want to be NULL-terminated, since this is a prefix */
805 pfx[sizeof(pfx) - 1] = '_';
806
807 if (dst->master_ethtool_ops.get_sset_count) {
808 mcount = dst->master_ethtool_ops.get_sset_count(dev,
809 ETH_SS_STATS);
810 dst->master_ethtool_ops.get_strings(dev, stringset, data);
811 }
812
Vivien Didelot9d490b42016-08-23 12:38:56 -0400813 if (stringset == ETH_SS_STATS && ds->ops->get_strings) {
Florian Fainellibadf3ad2016-04-27 11:45:14 -0700814 ndata = data + mcount * len;
815 /* This function copies ETH_GSTRINGS_LEN bytes, we will mangle
816 * the output after to prepend our CPU port prefix we
817 * constructed earlier
818 */
Vivien Didelot9d490b42016-08-23 12:38:56 -0400819 ds->ops->get_strings(ds, cpu_port, ndata);
820 count = ds->ops->get_sset_count(ds);
Florian Fainellibadf3ad2016-04-27 11:45:14 -0700821 for (i = 0; i < count; i++) {
822 memmove(ndata + (i * len + sizeof(pfx)),
823 ndata + i * len, len - sizeof(pfx));
824 memcpy(ndata + i * len, pfx, sizeof(pfx));
825 }
826 }
827}
828
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000829static void dsa_slave_get_ethtool_stats(struct net_device *dev,
830 struct ethtool_stats *stats,
831 uint64_t *data)
832{
833 struct dsa_slave_priv *p = netdev_priv(dev);
834 struct dsa_switch *ds = p->parent;
835
Vivien Didelot46e7b8d2016-04-18 16:10:24 -0400836 data[0] = dev->stats.tx_packets;
837 data[1] = dev->stats.tx_bytes;
838 data[2] = dev->stats.rx_packets;
839 data[3] = dev->stats.rx_bytes;
Vivien Didelot9d490b42016-08-23 12:38:56 -0400840 if (ds->ops->get_ethtool_stats)
841 ds->ops->get_ethtool_stats(ds, p->port, data + 4);
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000842}
843
844static int dsa_slave_get_sset_count(struct net_device *dev, int sset)
845{
846 struct dsa_slave_priv *p = netdev_priv(dev);
847 struct dsa_switch *ds = p->parent;
848
849 if (sset == ETH_SS_STATS) {
850 int count;
851
852 count = 4;
Vivien Didelot9d490b42016-08-23 12:38:56 -0400853 if (ds->ops->get_sset_count)
854 count += ds->ops->get_sset_count(ds);
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000855
856 return count;
857 }
858
859 return -EOPNOTSUPP;
860}
861
Florian Fainelli19e57c42014-09-18 17:31:24 -0700862static void dsa_slave_get_wol(struct net_device *dev, struct ethtool_wolinfo *w)
863{
864 struct dsa_slave_priv *p = netdev_priv(dev);
865 struct dsa_switch *ds = p->parent;
866
Vivien Didelot9d490b42016-08-23 12:38:56 -0400867 if (ds->ops->get_wol)
868 ds->ops->get_wol(ds, p->port, w);
Florian Fainelli19e57c42014-09-18 17:31:24 -0700869}
870
871static int dsa_slave_set_wol(struct net_device *dev, struct ethtool_wolinfo *w)
872{
873 struct dsa_slave_priv *p = netdev_priv(dev);
874 struct dsa_switch *ds = p->parent;
875 int ret = -EOPNOTSUPP;
876
Vivien Didelot9d490b42016-08-23 12:38:56 -0400877 if (ds->ops->set_wol)
878 ret = ds->ops->set_wol(ds, p->port, w);
Florian Fainelli19e57c42014-09-18 17:31:24 -0700879
880 return ret;
881}
882
Florian Fainelli79052882014-09-24 17:05:21 -0700883static int dsa_slave_set_eee(struct net_device *dev, struct ethtool_eee *e)
884{
885 struct dsa_slave_priv *p = netdev_priv(dev);
886 struct dsa_switch *ds = p->parent;
887 int ret;
888
Vivien Didelot9d490b42016-08-23 12:38:56 -0400889 if (!ds->ops->set_eee)
Florian Fainelli79052882014-09-24 17:05:21 -0700890 return -EOPNOTSUPP;
891
Vivien Didelot9d490b42016-08-23 12:38:56 -0400892 ret = ds->ops->set_eee(ds, p->port, p->phy, e);
Florian Fainelli79052882014-09-24 17:05:21 -0700893 if (ret)
894 return ret;
895
896 if (p->phy)
897 ret = phy_ethtool_set_eee(p->phy, e);
898
899 return ret;
900}
901
902static int dsa_slave_get_eee(struct net_device *dev, struct ethtool_eee *e)
903{
904 struct dsa_slave_priv *p = netdev_priv(dev);
905 struct dsa_switch *ds = p->parent;
906 int ret;
907
Vivien Didelot9d490b42016-08-23 12:38:56 -0400908 if (!ds->ops->get_eee)
Florian Fainelli79052882014-09-24 17:05:21 -0700909 return -EOPNOTSUPP;
910
Vivien Didelot9d490b42016-08-23 12:38:56 -0400911 ret = ds->ops->get_eee(ds, p->port, e);
Florian Fainelli79052882014-09-24 17:05:21 -0700912 if (ret)
913 return ret;
914
915 if (p->phy)
916 ret = phy_ethtool_get_eee(p->phy, e);
917
918 return ret;
919}
920
Florian Fainelli04ff53f2015-07-31 11:42:57 -0700921#ifdef CONFIG_NET_POLL_CONTROLLER
922static int dsa_slave_netpoll_setup(struct net_device *dev,
923 struct netpoll_info *ni)
924{
925 struct dsa_slave_priv *p = netdev_priv(dev);
926 struct dsa_switch *ds = p->parent;
927 struct net_device *master = ds->dst->master_netdev;
928 struct netpoll *netpoll;
929 int err = 0;
930
931 netpoll = kzalloc(sizeof(*netpoll), GFP_KERNEL);
932 if (!netpoll)
933 return -ENOMEM;
934
935 err = __netpoll_setup(netpoll, master);
936 if (err) {
937 kfree(netpoll);
938 goto out;
939 }
940
941 p->netpoll = netpoll;
942out:
943 return err;
944}
945
946static void dsa_slave_netpoll_cleanup(struct net_device *dev)
947{
948 struct dsa_slave_priv *p = netdev_priv(dev);
949 struct netpoll *netpoll = p->netpoll;
950
951 if (!netpoll)
952 return;
953
954 p->netpoll = NULL;
955
956 __netpoll_free_async(netpoll);
957}
958
959static void dsa_slave_poll_controller(struct net_device *dev)
960{
961}
962#endif
963
Florian Fainelliaf421922016-06-07 16:32:41 -0700964void dsa_cpu_port_ethtool_init(struct ethtool_ops *ops)
965{
966 ops->get_sset_count = dsa_cpu_port_get_sset_count;
967 ops->get_ethtool_stats = dsa_cpu_port_get_ethtool_stats;
968 ops->get_strings = dsa_cpu_port_get_strings;
969}
970
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000971static const struct ethtool_ops dsa_slave_ethtool_ops = {
972 .get_settings = dsa_slave_get_settings,
973 .set_settings = dsa_slave_set_settings,
974 .get_drvinfo = dsa_slave_get_drvinfo,
Guenter Roeck3d762a02014-10-29 10:45:04 -0700975 .get_regs_len = dsa_slave_get_regs_len,
976 .get_regs = dsa_slave_get_regs,
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000977 .nway_reset = dsa_slave_nway_reset,
978 .get_link = dsa_slave_get_link,
Guenter Roeck6793abb2014-10-29 10:45:01 -0700979 .get_eeprom_len = dsa_slave_get_eeprom_len,
980 .get_eeprom = dsa_slave_get_eeprom,
981 .set_eeprom = dsa_slave_set_eeprom,
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000982 .get_strings = dsa_slave_get_strings,
983 .get_ethtool_stats = dsa_slave_get_ethtool_stats,
984 .get_sset_count = dsa_slave_get_sset_count,
Florian Fainelli19e57c42014-09-18 17:31:24 -0700985 .set_wol = dsa_slave_set_wol,
986 .get_wol = dsa_slave_get_wol,
Florian Fainelli79052882014-09-24 17:05:21 -0700987 .set_eee = dsa_slave_set_eee,
988 .get_eee = dsa_slave_get_eee,
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000989};
990
Florian Fainelli3e8a72d2014-08-27 17:04:46 -0700991static const struct net_device_ops dsa_slave_netdev_ops = {
Stephen Hemmingerd442ad42009-01-06 16:45:26 -0800992 .ndo_open = dsa_slave_open,
993 .ndo_stop = dsa_slave_close,
Florian Fainelli3e8a72d2014-08-27 17:04:46 -0700994 .ndo_start_xmit = dsa_slave_xmit,
Stephen Hemmingerd442ad42009-01-06 16:45:26 -0800995 .ndo_change_rx_flags = dsa_slave_change_rx_flags,
996 .ndo_set_rx_mode = dsa_slave_set_rx_mode,
Stephen Hemmingerd442ad42009-01-06 16:45:26 -0800997 .ndo_set_mac_address = dsa_slave_set_mac_address,
Vivien Didelotba14d9e2015-08-10 09:09:53 -0400998 .ndo_fdb_add = switchdev_port_fdb_add,
999 .ndo_fdb_del = switchdev_port_fdb_del,
1000 .ndo_fdb_dump = switchdev_port_fdb_dump,
Stephen Hemmingerd442ad42009-01-06 16:45:26 -08001001 .ndo_do_ioctl = dsa_slave_ioctl,
Nicolas Dichtelabd2be02015-04-02 17:07:08 +02001002 .ndo_get_iflink = dsa_slave_get_iflink,
Florian Fainelli04ff53f2015-07-31 11:42:57 -07001003#ifdef CONFIG_NET_POLL_CONTROLLER
1004 .ndo_netpoll_setup = dsa_slave_netpoll_setup,
1005 .ndo_netpoll_cleanup = dsa_slave_netpoll_cleanup,
1006 .ndo_poll_controller = dsa_slave_poll_controller,
1007#endif
Vivien Didelot11149532015-08-13 12:52:17 -04001008 .ndo_bridge_getlink = switchdev_port_bridge_getlink,
1009 .ndo_bridge_setlink = switchdev_port_bridge_setlink,
1010 .ndo_bridge_dellink = switchdev_port_bridge_dellink,
Scott Feldman98237d42015-03-15 21:07:15 -07001011};
1012
Jiri Pirko9d47c0a2015-05-10 09:47:47 -07001013static const struct switchdev_ops dsa_slave_switchdev_ops = {
Scott Feldmanf8e20a92015-05-10 09:47:49 -07001014 .switchdev_port_attr_get = dsa_slave_port_attr_get,
Scott Feldman35636062015-05-10 09:47:51 -07001015 .switchdev_port_attr_set = dsa_slave_port_attr_set,
Vivien Didelotba14d9e2015-08-10 09:09:53 -04001016 .switchdev_port_obj_add = dsa_slave_port_obj_add,
1017 .switchdev_port_obj_del = dsa_slave_port_obj_del,
1018 .switchdev_port_obj_dump = dsa_slave_port_obj_dump,
Stephen Hemmingerd442ad42009-01-06 16:45:26 -08001019};
Lennert Buytenhek91da11f2008-10-07 13:44:02 +00001020
Florian Fainellif37db852015-09-23 18:19:58 -07001021static struct device_type dsa_type = {
1022 .name = "dsa",
1023};
1024
Florian Fainelli0d8bcdd2014-08-27 17:04:51 -07001025static void dsa_slave_adjust_link(struct net_device *dev)
1026{
1027 struct dsa_slave_priv *p = netdev_priv(dev);
Florian Fainelliec9436b2014-08-27 17:04:53 -07001028 struct dsa_switch *ds = p->parent;
Florian Fainelli0d8bcdd2014-08-27 17:04:51 -07001029 unsigned int status_changed = 0;
1030
1031 if (p->old_link != p->phy->link) {
1032 status_changed = 1;
1033 p->old_link = p->phy->link;
1034 }
1035
1036 if (p->old_duplex != p->phy->duplex) {
1037 status_changed = 1;
1038 p->old_duplex = p->phy->duplex;
1039 }
1040
1041 if (p->old_pause != p->phy->pause) {
1042 status_changed = 1;
1043 p->old_pause = p->phy->pause;
1044 }
1045
Vivien Didelot9d490b42016-08-23 12:38:56 -04001046 if (ds->ops->adjust_link && status_changed)
1047 ds->ops->adjust_link(ds, p->port, p->phy);
Florian Fainelliec9436b2014-08-27 17:04:53 -07001048
Florian Fainelli0d8bcdd2014-08-27 17:04:51 -07001049 if (status_changed)
1050 phy_print_status(p->phy);
1051}
1052
Florian Fainellice31b312014-08-27 17:04:54 -07001053static int dsa_slave_fixed_link_update(struct net_device *dev,
1054 struct fixed_phy_status *status)
1055{
Andrew Lunnb71be352016-03-12 00:01:37 +01001056 struct dsa_slave_priv *p;
1057 struct dsa_switch *ds;
Florian Fainellice31b312014-08-27 17:04:54 -07001058
Andrew Lunnb71be352016-03-12 00:01:37 +01001059 if (dev) {
1060 p = netdev_priv(dev);
1061 ds = p->parent;
Vivien Didelot9d490b42016-08-23 12:38:56 -04001062 if (ds->ops->fixed_link_update)
1063 ds->ops->fixed_link_update(ds, p->port, status);
Andrew Lunnb71be352016-03-12 00:01:37 +01001064 }
Florian Fainellice31b312014-08-27 17:04:54 -07001065
1066 return 0;
1067}
1068
Lennert Buytenhek91da11f2008-10-07 13:44:02 +00001069/* slave device setup *******************************************************/
Florian Fainellic305c162015-03-10 16:57:12 -07001070static int dsa_slave_phy_connect(struct dsa_slave_priv *p,
Florian Fainellicd28a1a2015-03-10 16:57:13 -07001071 struct net_device *slave_dev,
1072 int addr)
Florian Fainellic305c162015-03-10 16:57:12 -07001073{
1074 struct dsa_switch *ds = p->parent;
1075
Andrew Lunn7f854422016-01-06 20:11:18 +01001076 p->phy = mdiobus_get_phy(ds->slave_mii_bus, addr);
Russell Kingd25b8e72015-10-03 18:09:07 +01001077 if (!p->phy) {
1078 netdev_err(slave_dev, "no phy at %d\n", addr);
Florian Fainellic305c162015-03-10 16:57:12 -07001079 return -ENODEV;
Russell Kingd25b8e72015-10-03 18:09:07 +01001080 }
Florian Fainellic305c162015-03-10 16:57:12 -07001081
1082 /* Use already configured phy mode */
Florian Fainelli211c5042015-08-08 12:58:57 -07001083 if (p->phy_interface == PHY_INTERFACE_MODE_NA)
1084 p->phy_interface = p->phy->interface;
Florian Fainellic305c162015-03-10 16:57:12 -07001085 phy_connect_direct(slave_dev, p->phy, dsa_slave_adjust_link,
1086 p->phy_interface);
1087
1088 return 0;
1089}
1090
Florian Fainelli9697f1c2014-12-11 12:49:16 -08001091static int dsa_slave_phy_setup(struct dsa_slave_priv *p,
Florian Fainelli0d8bcdd2014-08-27 17:04:51 -07001092 struct net_device *slave_dev)
1093{
1094 struct dsa_switch *ds = p->parent;
Florian Fainelli0d8bcdd2014-08-27 17:04:51 -07001095 struct device_node *phy_dn, *port_dn;
Florian Fainellice31b312014-08-27 17:04:54 -07001096 bool phy_is_fixed = false;
Florian Fainelli68195632014-09-19 13:07:54 -07001097 u32 phy_flags = 0;
Guenter Roeck19334922015-02-16 21:23:51 -08001098 int mode, ret;
Florian Fainelli0d8bcdd2014-08-27 17:04:51 -07001099
Andrew Lunn189b0d92016-06-04 21:16:58 +02001100 port_dn = ds->ports[p->port].dn;
Guenter Roeck19334922015-02-16 21:23:51 -08001101 mode = of_get_phy_mode(port_dn);
1102 if (mode < 0)
1103 mode = PHY_INTERFACE_MODE_NA;
1104 p->phy_interface = mode;
Florian Fainelli0d8bcdd2014-08-27 17:04:51 -07001105
1106 phy_dn = of_parse_phandle(port_dn, "phy-handle", 0);
1107 if (of_phy_is_fixed_link(port_dn)) {
1108 /* In the case of a fixed PHY, the DT node associated
1109 * to the fixed PHY is the Port DT node
1110 */
1111 ret = of_phy_register_fixed_link(port_dn);
1112 if (ret) {
Russell Kingd25b8e72015-10-03 18:09:07 +01001113 netdev_err(slave_dev, "failed to register fixed PHY: %d\n", ret);
Florian Fainelli9697f1c2014-12-11 12:49:16 -08001114 return ret;
Florian Fainelli0d8bcdd2014-08-27 17:04:51 -07001115 }
Florian Fainellice31b312014-08-27 17:04:54 -07001116 phy_is_fixed = true;
Florian Fainelli0d8bcdd2014-08-27 17:04:51 -07001117 phy_dn = port_dn;
1118 }
1119
Vivien Didelot9d490b42016-08-23 12:38:56 -04001120 if (ds->ops->get_phy_flags)
1121 phy_flags = ds->ops->get_phy_flags(ds, p->port);
Florian Fainelli68195632014-09-19 13:07:54 -07001122
Florian Fainellicd28a1a2015-03-10 16:57:13 -07001123 if (phy_dn) {
Russell Kingd25b8e72015-10-03 18:09:07 +01001124 int phy_id = of_mdio_parse_addr(&slave_dev->dev, phy_dn);
1125
Florian Fainellicd28a1a2015-03-10 16:57:13 -07001126 /* If this PHY address is part of phys_mii_mask, which means
1127 * that we need to divert reads and writes to/from it, then we
1128 * want to bind this device using the slave MII bus created by
1129 * DSA to make that happen.
1130 */
Russell Kingd25b8e72015-10-03 18:09:07 +01001131 if (!phy_is_fixed && phy_id >= 0 &&
1132 (ds->phys_mii_mask & (1 << phy_id))) {
1133 ret = dsa_slave_phy_connect(p, slave_dev, phy_id);
1134 if (ret) {
1135 netdev_err(slave_dev, "failed to connect to phy%d: %d\n", phy_id, ret);
Florian Fainellicd28a1a2015-03-10 16:57:13 -07001136 return ret;
Russell Kingd25b8e72015-10-03 18:09:07 +01001137 }
Florian Fainellicd28a1a2015-03-10 16:57:13 -07001138 } else {
1139 p->phy = of_phy_connect(slave_dev, phy_dn,
1140 dsa_slave_adjust_link,
1141 phy_flags,
1142 p->phy_interface);
1143 }
1144 }
Florian Fainelli0d8bcdd2014-08-27 17:04:51 -07001145
Florian Fainellice31b312014-08-27 17:04:54 -07001146 if (p->phy && phy_is_fixed)
1147 fixed_phy_set_link_update(p->phy, dsa_slave_fixed_link_update);
1148
Florian Fainelli0d8bcdd2014-08-27 17:04:51 -07001149 /* We could not connect to a designated PHY, so use the switch internal
1150 * MDIO bus instead
1151 */
Andrew Lunnb31f65f2014-11-05 19:47:28 +01001152 if (!p->phy) {
Florian Fainellicd28a1a2015-03-10 16:57:13 -07001153 ret = dsa_slave_phy_connect(p, slave_dev, p->port);
Russell Kingd25b8e72015-10-03 18:09:07 +01001154 if (ret) {
1155 netdev_err(slave_dev, "failed to connect to port %d: %d\n", p->port, ret);
Florian Fainellic305c162015-03-10 16:57:12 -07001156 return ret;
Russell Kingd25b8e72015-10-03 18:09:07 +01001157 }
Andrew Lunnb31f65f2014-11-05 19:47:28 +01001158 }
Florian Fainelli9697f1c2014-12-11 12:49:16 -08001159
Andrew Lunn22209432016-01-06 20:11:13 +01001160 phy_attached_info(p->phy);
1161
Florian Fainelli9697f1c2014-12-11 12:49:16 -08001162 return 0;
Florian Fainelli0d8bcdd2014-08-27 17:04:51 -07001163}
1164
Andrew Lunn448b4482015-05-06 01:09:56 +02001165static struct lock_class_key dsa_slave_netdev_xmit_lock_key;
1166static void dsa_slave_set_lockdep_class_one(struct net_device *dev,
1167 struct netdev_queue *txq,
1168 void *_unused)
1169{
1170 lockdep_set_class(&txq->_xmit_lock,
1171 &dsa_slave_netdev_xmit_lock_key);
1172}
1173
Florian Fainelli24462542014-09-18 17:31:22 -07001174int dsa_slave_suspend(struct net_device *slave_dev)
1175{
1176 struct dsa_slave_priv *p = netdev_priv(slave_dev);
1177
Florian Fainelli24462542014-09-18 17:31:22 -07001178 if (p->phy) {
1179 phy_stop(p->phy);
1180 p->old_pause = -1;
1181 p->old_link = -1;
1182 p->old_duplex = -1;
1183 phy_suspend(p->phy);
1184 }
1185
1186 return 0;
1187}
1188
1189int dsa_slave_resume(struct net_device *slave_dev)
1190{
1191 struct dsa_slave_priv *p = netdev_priv(slave_dev);
1192
1193 netif_device_attach(slave_dev);
1194
1195 if (p->phy) {
1196 phy_resume(p->phy);
1197 phy_start(p->phy);
1198 }
1199
1200 return 0;
1201}
1202
Guenter Roeckd87d6f42015-02-24 13:15:32 -08001203int dsa_slave_create(struct dsa_switch *ds, struct device *parent,
Andrew Lunn83c0afa2016-06-04 21:17:07 +02001204 int port, const char *name)
Lennert Buytenhek91da11f2008-10-07 13:44:02 +00001205{
Florian Fainellibadf3ad2016-04-27 11:45:14 -07001206 struct dsa_switch_tree *dst = ds->dst;
Andrew Lunn83c0afa2016-06-04 21:17:07 +02001207 struct net_device *master;
Lennert Buytenhek91da11f2008-10-07 13:44:02 +00001208 struct net_device *slave_dev;
1209 struct dsa_slave_priv *p;
1210 int ret;
1211
Andrew Lunn83c0afa2016-06-04 21:17:07 +02001212 master = ds->dst->master_netdev;
1213 if (ds->master_netdev)
1214 master = ds->master_netdev;
1215
Tom Gundersenc835a672014-07-14 16:37:24 +02001216 slave_dev = alloc_netdev(sizeof(struct dsa_slave_priv), name,
1217 NET_NAME_UNKNOWN, ether_setup);
Lennert Buytenhek91da11f2008-10-07 13:44:02 +00001218 if (slave_dev == NULL)
Guenter Roeckd87d6f42015-02-24 13:15:32 -08001219 return -ENOMEM;
Lennert Buytenhek91da11f2008-10-07 13:44:02 +00001220
1221 slave_dev->features = master->vlan_features;
Wilfried Klaebe7ad24ea2014-05-11 00:12:32 +00001222 slave_dev->ethtool_ops = &dsa_slave_ethtool_ops;
Bjørn Mork2fcc8002013-08-30 18:08:46 +02001223 eth_hw_addr_inherit(slave_dev, master);
Phil Sutter0a5f1072015-08-18 10:30:41 +02001224 slave_dev->priv_flags |= IFF_NO_QUEUE;
Florian Fainelli3e8a72d2014-08-27 17:04:46 -07001225 slave_dev->netdev_ops = &dsa_slave_netdev_ops;
Jiri Pirko9d47c0a2015-05-10 09:47:47 -07001226 slave_dev->switchdev_ops = &dsa_slave_switchdev_ops;
Florian Fainellif37db852015-09-23 18:19:58 -07001227 SET_NETDEV_DEVTYPE(slave_dev, &dsa_type);
Stephen Hemmingerd442ad42009-01-06 16:45:26 -08001228
Andrew Lunn448b4482015-05-06 01:09:56 +02001229 netdev_for_each_tx_queue(slave_dev, dsa_slave_set_lockdep_class_one,
1230 NULL);
1231
Lennert Buytenhek91da11f2008-10-07 13:44:02 +00001232 SET_NETDEV_DEV(slave_dev, parent);
Andrew Lunn189b0d92016-06-04 21:16:58 +02001233 slave_dev->dev.of_node = ds->ports[port].dn;
Lennert Buytenhek91da11f2008-10-07 13:44:02 +00001234 slave_dev->vlan_features = master->vlan_features;
1235
1236 p = netdev_priv(slave_dev);
Lennert Buytenhek91da11f2008-10-07 13:44:02 +00001237 p->parent = ds;
1238 p->port = port;
Andrew Lunn39a7f2a2016-06-04 21:17:03 +02001239 p->xmit = dst->tag_ops->xmit;
Alexander Duyck50753142014-09-15 13:00:19 -04001240
Florian Fainelli0d8bcdd2014-08-27 17:04:51 -07001241 p->old_pause = -1;
1242 p->old_link = -1;
1243 p->old_duplex = -1;
1244
Andrew Lunnc8b09802016-06-04 21:16:57 +02001245 ds->ports[port].netdev = slave_dev;
Lennert Buytenhek91da11f2008-10-07 13:44:02 +00001246 ret = register_netdev(slave_dev);
1247 if (ret) {
Joe Perchesa2ae6002014-11-09 16:32:46 -08001248 netdev_err(master, "error %d registering interface %s\n",
1249 ret, slave_dev->name);
Andrew Lunnc8b09802016-06-04 21:16:57 +02001250 ds->ports[port].netdev = NULL;
Lennert Buytenhek91da11f2008-10-07 13:44:02 +00001251 free_netdev(slave_dev);
Guenter Roeckd87d6f42015-02-24 13:15:32 -08001252 return ret;
Lennert Buytenhek91da11f2008-10-07 13:44:02 +00001253 }
1254
1255 netif_carrier_off(slave_dev);
1256
Andrew Lunn0071f562016-01-06 20:11:20 +01001257 ret = dsa_slave_phy_setup(p, slave_dev);
1258 if (ret) {
1259 netdev_err(master, "error %d setting up slave phy\n", ret);
Florian Fainelli73dcb552016-02-17 18:43:22 -08001260 unregister_netdev(slave_dev);
Andrew Lunn0071f562016-01-06 20:11:20 +01001261 free_netdev(slave_dev);
1262 return ret;
1263 }
1264
Guenter Roeckd87d6f42015-02-24 13:15:32 -08001265 return 0;
Lennert Buytenhek91da11f2008-10-07 13:44:02 +00001266}
Florian Fainellib73adef2015-02-24 13:15:33 -08001267
Neil Armstrongcda5c152015-12-07 13:57:35 +01001268void dsa_slave_destroy(struct net_device *slave_dev)
1269{
1270 struct dsa_slave_priv *p = netdev_priv(slave_dev);
1271
1272 netif_carrier_off(slave_dev);
1273 if (p->phy)
1274 phy_disconnect(p->phy);
1275 unregister_netdev(slave_dev);
1276 free_netdev(slave_dev);
1277}
1278
Florian Fainellib73adef2015-02-24 13:15:33 -08001279static bool dsa_slave_dev_check(struct net_device *dev)
1280{
1281 return dev->netdev_ops == &dsa_slave_netdev_ops;
1282}
1283
Vivien Didelot6debb682016-03-13 16:21:34 -04001284static int dsa_slave_port_upper_event(struct net_device *dev,
1285 unsigned long event, void *ptr)
Florian Fainellib73adef2015-02-24 13:15:33 -08001286{
Vivien Didelot6debb682016-03-13 16:21:34 -04001287 struct netdev_notifier_changeupper_info *info = ptr;
1288 struct net_device *upper = info->upper_dev;
Florian Fainellib73adef2015-02-24 13:15:33 -08001289 int err = 0;
1290
Vivien Didelot6debb682016-03-13 16:21:34 -04001291 switch (event) {
1292 case NETDEV_CHANGEUPPER:
1293 if (netif_is_bridge_master(upper)) {
1294 if (info->linking)
1295 err = dsa_slave_bridge_port_join(dev, upper);
1296 else
1297 dsa_slave_bridge_port_leave(dev);
1298 }
Florian Fainellib73adef2015-02-24 13:15:33 -08001299
Vivien Didelot6debb682016-03-13 16:21:34 -04001300 break;
1301 }
1302
1303 return notifier_from_errno(err);
1304}
1305
1306static int dsa_slave_port_event(struct net_device *dev, unsigned long event,
1307 void *ptr)
1308{
1309 switch (event) {
1310 case NETDEV_CHANGEUPPER:
1311 return dsa_slave_port_upper_event(dev, event, ptr);
1312 }
1313
1314 return NOTIFY_DONE;
Florian Fainellib73adef2015-02-24 13:15:33 -08001315}
1316
1317int dsa_slave_netdevice_event(struct notifier_block *unused,
1318 unsigned long event, void *ptr)
1319{
Vivien Didelot6debb682016-03-13 16:21:34 -04001320 struct net_device *dev = netdev_notifier_info_to_dev(ptr);
Florian Fainellib73adef2015-02-24 13:15:33 -08001321
Vivien Didelot6debb682016-03-13 16:21:34 -04001322 if (dsa_slave_dev_check(dev))
1323 return dsa_slave_port_event(dev, event, ptr);
Florian Fainellib73adef2015-02-24 13:15:33 -08001324
Florian Fainellib73adef2015-02-24 13:15:33 -08001325 return NOTIFY_DONE;
1326}