blob: fd78d4c9b1974f9abfcb361d2ece42e1346dee07 [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
Vivien Didelot4acfee82016-09-22 16:49:21 -040072static void dsa_port_set_stp_state(struct dsa_switch *ds, int port, u8 state)
73{
74 if (ds->ops->port_stp_state_set)
75 ds->ops->port_stp_state_set(ds, port, state);
76}
77
Lennert Buytenhek91da11f2008-10-07 13:44:02 +000078static int dsa_slave_open(struct net_device *dev)
79{
Lennert Buytenhekdf02c6f2008-11-10 21:53:12 -080080 struct dsa_slave_priv *p = netdev_priv(dev);
Lennert Buytenheke84665c2009-03-20 09:52:09 +000081 struct net_device *master = p->parent->dst->master_netdev;
Florian Fainellib2f2af22014-09-24 17:05:18 -070082 struct dsa_switch *ds = p->parent;
Florian Fainellib73adef2015-02-24 13:15:33 -080083 u8 stp_state = dsa_port_is_bridged(p) ?
84 BR_STATE_BLOCKING : BR_STATE_FORWARDING;
Lennert Buytenhekdf02c6f2008-11-10 21:53:12 -080085 int err;
86
87 if (!(master->flags & IFF_UP))
88 return -ENETDOWN;
89
Joe Perches8feedbb2012-05-08 18:56:57 +000090 if (!ether_addr_equal(dev->dev_addr, master->dev_addr)) {
Jiri Pirkoa748ee22010-04-01 21:22:09 +000091 err = dev_uc_add(master, dev->dev_addr);
Lennert Buytenhekdf02c6f2008-11-10 21:53:12 -080092 if (err < 0)
93 goto out;
94 }
95
96 if (dev->flags & IFF_ALLMULTI) {
97 err = dev_set_allmulti(master, 1);
98 if (err < 0)
99 goto del_unicast;
100 }
101 if (dev->flags & IFF_PROMISC) {
102 err = dev_set_promiscuity(master, 1);
103 if (err < 0)
104 goto clear_allmulti;
105 }
106
Vivien Didelot9d490b42016-08-23 12:38:56 -0400107 if (ds->ops->port_enable) {
108 err = ds->ops->port_enable(ds, p->port, p->phy);
Florian Fainellib2f2af22014-09-24 17:05:18 -0700109 if (err)
110 goto clear_promisc;
111 }
112
Vivien Didelot4acfee82016-09-22 16:49:21 -0400113 dsa_port_set_stp_state(ds, p->port, stp_state);
Florian Fainellib73adef2015-02-24 13:15:33 -0800114
Florian Fainellif7f1de52014-09-24 17:05:17 -0700115 if (p->phy)
116 phy_start(p->phy);
117
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000118 return 0;
Lennert Buytenhekdf02c6f2008-11-10 21:53:12 -0800119
Florian Fainellib2f2af22014-09-24 17:05:18 -0700120clear_promisc:
121 if (dev->flags & IFF_PROMISC)
Gilad Ben-Yossef4fdeddf2015-06-25 16:50:13 +0300122 dev_set_promiscuity(master, -1);
Lennert Buytenhekdf02c6f2008-11-10 21:53:12 -0800123clear_allmulti:
124 if (dev->flags & IFF_ALLMULTI)
125 dev_set_allmulti(master, -1);
126del_unicast:
Joe Perches8feedbb2012-05-08 18:56:57 +0000127 if (!ether_addr_equal(dev->dev_addr, master->dev_addr))
Jiri Pirkoa748ee22010-04-01 21:22:09 +0000128 dev_uc_del(master, dev->dev_addr);
Lennert Buytenhekdf02c6f2008-11-10 21:53:12 -0800129out:
130 return err;
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000131}
132
133static int dsa_slave_close(struct net_device *dev)
134{
Lennert Buytenhekdf02c6f2008-11-10 21:53:12 -0800135 struct dsa_slave_priv *p = netdev_priv(dev);
Lennert Buytenheke84665c2009-03-20 09:52:09 +0000136 struct net_device *master = p->parent->dst->master_netdev;
Florian Fainellib2f2af22014-09-24 17:05:18 -0700137 struct dsa_switch *ds = p->parent;
Lennert Buytenhekdf02c6f2008-11-10 21:53:12 -0800138
Florian Fainellif7f1de52014-09-24 17:05:17 -0700139 if (p->phy)
140 phy_stop(p->phy);
141
Lennert Buytenhekdf02c6f2008-11-10 21:53:12 -0800142 dev_mc_unsync(master, dev);
Jiri Pirkoa748ee22010-04-01 21:22:09 +0000143 dev_uc_unsync(master, dev);
Lennert Buytenhekdf02c6f2008-11-10 21:53:12 -0800144 if (dev->flags & IFF_ALLMULTI)
145 dev_set_allmulti(master, -1);
146 if (dev->flags & IFF_PROMISC)
147 dev_set_promiscuity(master, -1);
148
Joe Perches8feedbb2012-05-08 18:56:57 +0000149 if (!ether_addr_equal(dev->dev_addr, master->dev_addr))
Jiri Pirkoa748ee22010-04-01 21:22:09 +0000150 dev_uc_del(master, dev->dev_addr);
Lennert Buytenhekdf02c6f2008-11-10 21:53:12 -0800151
Vivien Didelot9d490b42016-08-23 12:38:56 -0400152 if (ds->ops->port_disable)
153 ds->ops->port_disable(ds, p->port, p->phy);
Florian Fainellib2f2af22014-09-24 17:05:18 -0700154
Vivien Didelot4acfee82016-09-22 16:49:21 -0400155 dsa_port_set_stp_state(ds, p->port, BR_STATE_DISABLED);
Florian Fainellib73adef2015-02-24 13:15:33 -0800156
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000157 return 0;
158}
159
160static void dsa_slave_change_rx_flags(struct net_device *dev, int change)
161{
162 struct dsa_slave_priv *p = netdev_priv(dev);
Lennert Buytenheke84665c2009-03-20 09:52:09 +0000163 struct net_device *master = p->parent->dst->master_netdev;
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000164
165 if (change & IFF_ALLMULTI)
166 dev_set_allmulti(master, dev->flags & IFF_ALLMULTI ? 1 : -1);
167 if (change & IFF_PROMISC)
168 dev_set_promiscuity(master, dev->flags & IFF_PROMISC ? 1 : -1);
169}
170
171static void dsa_slave_set_rx_mode(struct net_device *dev)
172{
173 struct dsa_slave_priv *p = netdev_priv(dev);
Lennert Buytenheke84665c2009-03-20 09:52:09 +0000174 struct net_device *master = p->parent->dst->master_netdev;
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000175
176 dev_mc_sync(master, dev);
Jiri Pirkoa748ee22010-04-01 21:22:09 +0000177 dev_uc_sync(master, dev);
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000178}
179
Lennert Buytenhekdf02c6f2008-11-10 21:53:12 -0800180static int dsa_slave_set_mac_address(struct net_device *dev, void *a)
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000181{
Lennert Buytenhekdf02c6f2008-11-10 21:53:12 -0800182 struct dsa_slave_priv *p = netdev_priv(dev);
Lennert Buytenheke84665c2009-03-20 09:52:09 +0000183 struct net_device *master = p->parent->dst->master_netdev;
Lennert Buytenhekdf02c6f2008-11-10 21:53:12 -0800184 struct sockaddr *addr = a;
185 int err;
186
187 if (!is_valid_ether_addr(addr->sa_data))
188 return -EADDRNOTAVAIL;
189
190 if (!(dev->flags & IFF_UP))
191 goto out;
192
Joe Perches8feedbb2012-05-08 18:56:57 +0000193 if (!ether_addr_equal(addr->sa_data, master->dev_addr)) {
Jiri Pirkoa748ee22010-04-01 21:22:09 +0000194 err = dev_uc_add(master, addr->sa_data);
Lennert Buytenhekdf02c6f2008-11-10 21:53:12 -0800195 if (err < 0)
196 return err;
197 }
198
Joe Perches8feedbb2012-05-08 18:56:57 +0000199 if (!ether_addr_equal(dev->dev_addr, master->dev_addr))
Jiri Pirkoa748ee22010-04-01 21:22:09 +0000200 dev_uc_del(master, dev->dev_addr);
Lennert Buytenhekdf02c6f2008-11-10 21:53:12 -0800201
202out:
Joe Perchesd08f1612014-01-20 09:52:20 -0800203 ether_addr_copy(dev->dev_addr, addr->sa_data);
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000204
205 return 0;
206}
207
Vivien Didelot11149532015-08-13 12:52:17 -0400208static int dsa_slave_port_vlan_add(struct net_device *dev,
Jiri Pirko8f24f302015-10-01 11:03:43 +0200209 const struct switchdev_obj_port_vlan *vlan,
Jiri Pirkof8db8342015-09-24 10:02:42 +0200210 struct switchdev_trans *trans)
Vivien Didelot11149532015-08-13 12:52:17 -0400211{
Vivien Didelot11149532015-08-13 12:52:17 -0400212 struct dsa_slave_priv *p = netdev_priv(dev);
213 struct dsa_switch *ds = p->parent;
Vivien Didelot11149532015-08-13 12:52:17 -0400214
Jiri Pirko79a62eb2015-09-24 10:02:48 +0200215 if (switchdev_trans_ph_prepare(trans)) {
Vivien Didelot9d490b42016-08-23 12:38:56 -0400216 if (!ds->ops->port_vlan_prepare || !ds->ops->port_vlan_add)
Vivien Didelot11149532015-08-13 12:52:17 -0400217 return -EOPNOTSUPP;
218
Vivien Didelot9d490b42016-08-23 12:38:56 -0400219 return ds->ops->port_vlan_prepare(ds, p->port, vlan, trans);
Vivien Didelot11149532015-08-13 12:52:17 -0400220 }
221
Vivien Didelot9d490b42016-08-23 12:38:56 -0400222 ds->ops->port_vlan_add(ds, p->port, vlan, trans);
Vivien Didelot4d5770b2016-04-06 11:55:05 -0400223
Vivien Didelot11149532015-08-13 12:52:17 -0400224 return 0;
225}
226
227static int dsa_slave_port_vlan_del(struct net_device *dev,
Jiri Pirko8f24f302015-10-01 11:03:43 +0200228 const struct switchdev_obj_port_vlan *vlan)
Vivien Didelot11149532015-08-13 12:52:17 -0400229{
Vivien Didelot11149532015-08-13 12:52:17 -0400230 struct dsa_slave_priv *p = netdev_priv(dev);
231 struct dsa_switch *ds = p->parent;
Vivien Didelot11149532015-08-13 12:52:17 -0400232
Vivien Didelot9d490b42016-08-23 12:38:56 -0400233 if (!ds->ops->port_vlan_del)
Vivien Didelot11149532015-08-13 12:52:17 -0400234 return -EOPNOTSUPP;
235
Vivien Didelot9d490b42016-08-23 12:38:56 -0400236 return ds->ops->port_vlan_del(ds, p->port, vlan);
Vivien Didelot11149532015-08-13 12:52:17 -0400237}
238
239static int dsa_slave_port_vlan_dump(struct net_device *dev,
Jiri Pirko8f24f302015-10-01 11:03:43 +0200240 struct switchdev_obj_port_vlan *vlan,
Jiri Pirko648b4a92015-10-01 11:03:45 +0200241 switchdev_obj_dump_cb_t *cb)
Vivien Didelot11149532015-08-13 12:52:17 -0400242{
Vivien Didelot11149532015-08-13 12:52:17 -0400243 struct dsa_slave_priv *p = netdev_priv(dev);
244 struct dsa_switch *ds = p->parent;
Vivien Didelot11149532015-08-13 12:52:17 -0400245
Vivien Didelot9d490b42016-08-23 12:38:56 -0400246 if (ds->ops->port_vlan_dump)
247 return ds->ops->port_vlan_dump(ds, p->port, vlan, cb);
Vivien Didelot65aebfc2016-02-23 12:13:54 -0500248
Vivien Didelot477b1842016-02-23 12:13:56 -0500249 return -EOPNOTSUPP;
Vivien Didelot11149532015-08-13 12:52:17 -0400250}
251
Vivien Didelotba14d9e2015-08-10 09:09:53 -0400252static int dsa_slave_port_fdb_add(struct net_device *dev,
Jiri Pirko52ba57c2015-10-01 11:03:44 +0200253 const struct switchdev_obj_port_fdb *fdb,
Jiri Pirkof8db8342015-09-24 10:02:42 +0200254 struct switchdev_trans *trans)
David S. Millercdf09692015-08-11 12:00:37 -0700255{
256 struct dsa_slave_priv *p = netdev_priv(dev);
257 struct dsa_switch *ds = p->parent;
Vivien Didelot146a3202015-10-08 11:35:12 -0400258
Vivien Didelot8497aa62016-04-06 11:55:04 -0400259 if (switchdev_trans_ph_prepare(trans)) {
Vivien Didelot9d490b42016-08-23 12:38:56 -0400260 if (!ds->ops->port_fdb_prepare || !ds->ops->port_fdb_add)
Vivien Didelot8497aa62016-04-06 11:55:04 -0400261 return -EOPNOTSUPP;
David S. Millercdf09692015-08-11 12:00:37 -0700262
Vivien Didelot9d490b42016-08-23 12:38:56 -0400263 return ds->ops->port_fdb_prepare(ds, p->port, fdb, trans);
Vivien Didelot8497aa62016-04-06 11:55:04 -0400264 }
David S. Millercdf09692015-08-11 12:00:37 -0700265
Vivien Didelot9d490b42016-08-23 12:38:56 -0400266 ds->ops->port_fdb_add(ds, p->port, fdb, trans);
Vivien Didelot8497aa62016-04-06 11:55:04 -0400267
268 return 0;
David S. Millercdf09692015-08-11 12:00:37 -0700269}
270
Vivien Didelotba14d9e2015-08-10 09:09:53 -0400271static int dsa_slave_port_fdb_del(struct net_device *dev,
Jiri Pirko52ba57c2015-10-01 11:03:44 +0200272 const struct switchdev_obj_port_fdb *fdb)
David S. Millercdf09692015-08-11 12:00:37 -0700273{
274 struct dsa_slave_priv *p = netdev_priv(dev);
275 struct dsa_switch *ds = p->parent;
276 int ret = -EOPNOTSUPP;
277
Vivien Didelot9d490b42016-08-23 12:38:56 -0400278 if (ds->ops->port_fdb_del)
279 ret = ds->ops->port_fdb_del(ds, p->port, fdb);
David S. Millercdf09692015-08-11 12:00:37 -0700280
281 return ret;
282}
283
Vivien Didelotba14d9e2015-08-10 09:09:53 -0400284static int dsa_slave_port_fdb_dump(struct net_device *dev,
Jiri Pirko52ba57c2015-10-01 11:03:44 +0200285 struct switchdev_obj_port_fdb *fdb,
Jiri Pirko648b4a92015-10-01 11:03:45 +0200286 switchdev_obj_dump_cb_t *cb)
David S. Millercdf09692015-08-11 12:00:37 -0700287{
288 struct dsa_slave_priv *p = netdev_priv(dev);
289 struct dsa_switch *ds = p->parent;
David S. Millercdf09692015-08-11 12:00:37 -0700290
Vivien Didelot9d490b42016-08-23 12:38:56 -0400291 if (ds->ops->port_fdb_dump)
292 return ds->ops->port_fdb_dump(ds, p->port, fdb, cb);
Vivien Didelotea70ba92015-10-22 09:34:38 -0400293
Vivien Didelot1a49a2f2015-10-22 09:34:43 -0400294 return -EOPNOTSUPP;
David S. Millercdf09692015-08-11 12:00:37 -0700295}
296
Vivien Didelot8df30252016-08-31 11:50:03 -0400297static int dsa_slave_port_mdb_add(struct net_device *dev,
298 const struct switchdev_obj_port_mdb *mdb,
299 struct switchdev_trans *trans)
300{
301 struct dsa_slave_priv *p = netdev_priv(dev);
302 struct dsa_switch *ds = p->parent;
303
304 if (switchdev_trans_ph_prepare(trans)) {
305 if (!ds->ops->port_mdb_prepare || !ds->ops->port_mdb_add)
306 return -EOPNOTSUPP;
307
308 return ds->ops->port_mdb_prepare(ds, p->port, mdb, trans);
309 }
310
311 ds->ops->port_mdb_add(ds, p->port, mdb, trans);
312
313 return 0;
314}
315
316static int dsa_slave_port_mdb_del(struct net_device *dev,
317 const struct switchdev_obj_port_mdb *mdb)
318{
319 struct dsa_slave_priv *p = netdev_priv(dev);
320 struct dsa_switch *ds = p->parent;
321
322 if (ds->ops->port_mdb_del)
323 return ds->ops->port_mdb_del(ds, p->port, mdb);
324
325 return -EOPNOTSUPP;
326}
327
328static int dsa_slave_port_mdb_dump(struct net_device *dev,
329 struct switchdev_obj_port_mdb *mdb,
330 switchdev_obj_dump_cb_t *cb)
331{
332 struct dsa_slave_priv *p = netdev_priv(dev);
333 struct dsa_switch *ds = p->parent;
334
335 if (ds->ops->port_mdb_dump)
336 return ds->ops->port_mdb_dump(ds, p->port, mdb, cb);
337
338 return -EOPNOTSUPP;
339}
340
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000341static int dsa_slave_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
342{
343 struct dsa_slave_priv *p = netdev_priv(dev);
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000344
345 if (p->phy != NULL)
Richard Cochran28b04112010-07-17 08:48:55 +0000346 return phy_mii_ioctl(p->phy, ifr, cmd);
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000347
348 return -EOPNOTSUPP;
349}
350
Vivien Didelot43c44a92016-04-06 11:55:03 -0400351static int dsa_slave_stp_state_set(struct net_device *dev,
352 const struct switchdev_attr *attr,
353 struct switchdev_trans *trans)
Florian Fainellib73adef2015-02-24 13:15:33 -0800354{
355 struct dsa_slave_priv *p = netdev_priv(dev);
356 struct dsa_switch *ds = p->parent;
Florian Fainellib73adef2015-02-24 13:15:33 -0800357
Vivien Didelot43c44a92016-04-06 11:55:03 -0400358 if (switchdev_trans_ph_prepare(trans))
Vivien Didelot9d490b42016-08-23 12:38:56 -0400359 return ds->ops->port_stp_state_set ? 0 : -EOPNOTSUPP;
Florian Fainellib73adef2015-02-24 13:15:33 -0800360
Vivien Didelot4acfee82016-09-22 16:49:21 -0400361 dsa_port_set_stp_state(ds, p->port, attr->u.stp_state);
Vivien Didelot43c44a92016-04-06 11:55:03 -0400362
363 return 0;
Florian Fainellib73adef2015-02-24 13:15:33 -0800364}
365
Vivien Didelotfb2daba2016-02-26 13:16:00 -0500366static int dsa_slave_vlan_filtering(struct net_device *dev,
367 const struct switchdev_attr *attr,
368 struct switchdev_trans *trans)
369{
370 struct dsa_slave_priv *p = netdev_priv(dev);
371 struct dsa_switch *ds = p->parent;
372
373 /* bridge skips -EOPNOTSUPP, so skip the prepare phase */
374 if (switchdev_trans_ph_prepare(trans))
375 return 0;
376
Vivien Didelot9d490b42016-08-23 12:38:56 -0400377 if (ds->ops->port_vlan_filtering)
378 return ds->ops->port_vlan_filtering(ds, p->port,
Vivien Didelotfb2daba2016-02-26 13:16:00 -0500379 attr->u.vlan_filtering);
380
381 return 0;
382}
383
Vivien Didelot34a79f62016-07-18 20:45:38 -0400384static int dsa_fastest_ageing_time(struct dsa_switch *ds,
385 unsigned int ageing_time)
386{
387 int i;
388
389 for (i = 0; i < DSA_MAX_PORTS; ++i) {
390 struct dsa_port *dp = &ds->ports[i];
391
392 if (dp && dp->ageing_time && dp->ageing_time < ageing_time)
393 ageing_time = dp->ageing_time;
394 }
395
396 return ageing_time;
397}
398
399static int dsa_slave_ageing_time(struct net_device *dev,
400 const struct switchdev_attr *attr,
401 struct switchdev_trans *trans)
402{
403 struct dsa_slave_priv *p = netdev_priv(dev);
404 struct dsa_switch *ds = p->parent;
405 unsigned long ageing_jiffies = clock_t_to_jiffies(attr->u.ageing_time);
406 unsigned int ageing_time = jiffies_to_msecs(ageing_jiffies);
407
408 /* bridge skips -EOPNOTSUPP, so skip the prepare phase */
409 if (switchdev_trans_ph_prepare(trans))
410 return 0;
411
412 /* Keep the fastest ageing time in case of multiple bridges */
413 ds->ports[p->port].ageing_time = ageing_time;
414 ageing_time = dsa_fastest_ageing_time(ds, ageing_time);
415
Vivien Didelot9d490b42016-08-23 12:38:56 -0400416 if (ds->ops->set_ageing_time)
417 return ds->ops->set_ageing_time(ds, ageing_time);
Vivien Didelot34a79f62016-07-18 20:45:38 -0400418
419 return 0;
420}
421
Scott Feldman35636062015-05-10 09:47:51 -0700422static int dsa_slave_port_attr_set(struct net_device *dev,
Jiri Pirkof7fadf32015-10-14 19:40:49 +0200423 const struct switchdev_attr *attr,
Jiri Pirko7ea6eb32015-09-24 10:02:41 +0200424 struct switchdev_trans *trans)
Scott Feldman35636062015-05-10 09:47:51 -0700425{
Vivien Didelotb8d866a2015-09-29 12:38:36 -0400426 int ret;
Scott Feldman35636062015-05-10 09:47:51 -0700427
428 switch (attr->id) {
Jiri Pirko1f868392015-10-01 11:03:42 +0200429 case SWITCHDEV_ATTR_ID_PORT_STP_STATE:
Vivien Didelot43c44a92016-04-06 11:55:03 -0400430 ret = dsa_slave_stp_state_set(dev, attr, trans);
Scott Feldman35636062015-05-10 09:47:51 -0700431 break;
Vivien Didelotfb2daba2016-02-26 13:16:00 -0500432 case SWITCHDEV_ATTR_ID_BRIDGE_VLAN_FILTERING:
433 ret = dsa_slave_vlan_filtering(dev, attr, trans);
434 break;
Vivien Didelot34a79f62016-07-18 20:45:38 -0400435 case SWITCHDEV_ATTR_ID_BRIDGE_AGEING_TIME:
436 ret = dsa_slave_ageing_time(dev, attr, trans);
437 break;
Scott Feldman35636062015-05-10 09:47:51 -0700438 default:
439 ret = -EOPNOTSUPP;
440 break;
441 }
442
443 return ret;
444}
445
Vivien Didelotba14d9e2015-08-10 09:09:53 -0400446static int dsa_slave_port_obj_add(struct net_device *dev,
Jiri Pirko648b4a92015-10-01 11:03:45 +0200447 const struct switchdev_obj *obj,
Jiri Pirko7ea6eb32015-09-24 10:02:41 +0200448 struct switchdev_trans *trans)
Vivien Didelotba14d9e2015-08-10 09:09:53 -0400449{
450 int err;
451
452 /* For the prepare phase, ensure the full set of changes is feasable in
453 * one go in order to signal a failure properly. If an operation is not
454 * supported, return -EOPNOTSUPP.
455 */
456
Jiri Pirko9e8f4a52015-10-01 11:03:46 +0200457 switch (obj->id) {
Jiri Pirko57d80832015-10-01 11:03:41 +0200458 case SWITCHDEV_OBJ_ID_PORT_FDB:
Jiri Pirko648b4a92015-10-01 11:03:45 +0200459 err = dsa_slave_port_fdb_add(dev,
460 SWITCHDEV_OBJ_PORT_FDB(obj),
461 trans);
Vivien Didelotba14d9e2015-08-10 09:09:53 -0400462 break;
Vivien Didelot8df30252016-08-31 11:50:03 -0400463 case SWITCHDEV_OBJ_ID_PORT_MDB:
464 err = dsa_slave_port_mdb_add(dev, SWITCHDEV_OBJ_PORT_MDB(obj),
465 trans);
466 break;
Jiri Pirko57d80832015-10-01 11:03:41 +0200467 case SWITCHDEV_OBJ_ID_PORT_VLAN:
Jiri Pirko648b4a92015-10-01 11:03:45 +0200468 err = dsa_slave_port_vlan_add(dev,
469 SWITCHDEV_OBJ_PORT_VLAN(obj),
470 trans);
Vivien Didelot11149532015-08-13 12:52:17 -0400471 break;
Vivien Didelotba14d9e2015-08-10 09:09:53 -0400472 default:
473 err = -EOPNOTSUPP;
474 break;
475 }
476
477 return err;
478}
479
480static int dsa_slave_port_obj_del(struct net_device *dev,
Jiri Pirko648b4a92015-10-01 11:03:45 +0200481 const struct switchdev_obj *obj)
Vivien Didelotba14d9e2015-08-10 09:09:53 -0400482{
483 int err;
484
Jiri Pirko9e8f4a52015-10-01 11:03:46 +0200485 switch (obj->id) {
Jiri Pirko57d80832015-10-01 11:03:41 +0200486 case SWITCHDEV_OBJ_ID_PORT_FDB:
Jiri Pirko648b4a92015-10-01 11:03:45 +0200487 err = dsa_slave_port_fdb_del(dev,
488 SWITCHDEV_OBJ_PORT_FDB(obj));
Vivien Didelotba14d9e2015-08-10 09:09:53 -0400489 break;
Vivien Didelot8df30252016-08-31 11:50:03 -0400490 case SWITCHDEV_OBJ_ID_PORT_MDB:
491 err = dsa_slave_port_mdb_del(dev, SWITCHDEV_OBJ_PORT_MDB(obj));
492 break;
Jiri Pirko57d80832015-10-01 11:03:41 +0200493 case SWITCHDEV_OBJ_ID_PORT_VLAN:
Jiri Pirko648b4a92015-10-01 11:03:45 +0200494 err = dsa_slave_port_vlan_del(dev,
495 SWITCHDEV_OBJ_PORT_VLAN(obj));
Vivien Didelot11149532015-08-13 12:52:17 -0400496 break;
Vivien Didelotba14d9e2015-08-10 09:09:53 -0400497 default:
498 err = -EOPNOTSUPP;
499 break;
500 }
501
502 return err;
503}
504
505static int dsa_slave_port_obj_dump(struct net_device *dev,
Jiri Pirko648b4a92015-10-01 11:03:45 +0200506 struct switchdev_obj *obj,
507 switchdev_obj_dump_cb_t *cb)
Vivien Didelotba14d9e2015-08-10 09:09:53 -0400508{
509 int err;
510
Jiri Pirko9e8f4a52015-10-01 11:03:46 +0200511 switch (obj->id) {
Jiri Pirko57d80832015-10-01 11:03:41 +0200512 case SWITCHDEV_OBJ_ID_PORT_FDB:
Jiri Pirko648b4a92015-10-01 11:03:45 +0200513 err = dsa_slave_port_fdb_dump(dev,
514 SWITCHDEV_OBJ_PORT_FDB(obj),
515 cb);
Vivien Didelotba14d9e2015-08-10 09:09:53 -0400516 break;
Vivien Didelot8df30252016-08-31 11:50:03 -0400517 case SWITCHDEV_OBJ_ID_PORT_MDB:
518 err = dsa_slave_port_mdb_dump(dev, SWITCHDEV_OBJ_PORT_MDB(obj),
519 cb);
520 break;
Jiri Pirko57d80832015-10-01 11:03:41 +0200521 case SWITCHDEV_OBJ_ID_PORT_VLAN:
Jiri Pirko648b4a92015-10-01 11:03:45 +0200522 err = dsa_slave_port_vlan_dump(dev,
523 SWITCHDEV_OBJ_PORT_VLAN(obj),
524 cb);
Vivien Didelot11149532015-08-13 12:52:17 -0400525 break;
Vivien Didelotba14d9e2015-08-10 09:09:53 -0400526 default:
527 err = -EOPNOTSUPP;
528 break;
529 }
530
531 return err;
532}
533
Florian Fainellib73adef2015-02-24 13:15:33 -0800534static int dsa_slave_bridge_port_join(struct net_device *dev,
535 struct net_device *br)
536{
537 struct dsa_slave_priv *p = netdev_priv(dev);
538 struct dsa_switch *ds = p->parent;
539 int ret = -EOPNOTSUPP;
540
541 p->bridge_dev = br;
542
Vivien Didelot9d490b42016-08-23 12:38:56 -0400543 if (ds->ops->port_bridge_join)
544 ret = ds->ops->port_bridge_join(ds, p->port, br);
Florian Fainellib73adef2015-02-24 13:15:33 -0800545
Vivien Didelot6debb682016-03-13 16:21:34 -0400546 return ret == -EOPNOTSUPP ? 0 : ret;
Florian Fainellib73adef2015-02-24 13:15:33 -0800547}
548
Vivien Didelot16bfa702016-03-13 16:21:33 -0400549static void dsa_slave_bridge_port_leave(struct net_device *dev)
Florian Fainellib73adef2015-02-24 13:15:33 -0800550{
551 struct dsa_slave_priv *p = netdev_priv(dev);
552 struct dsa_switch *ds = p->parent;
Florian Fainellib73adef2015-02-24 13:15:33 -0800553
554
Vivien Didelot9d490b42016-08-23 12:38:56 -0400555 if (ds->ops->port_bridge_leave)
556 ds->ops->port_bridge_leave(ds, p->port);
Florian Fainellib73adef2015-02-24 13:15:33 -0800557
558 p->bridge_dev = NULL;
559
560 /* Port left the bridge, put in BR_STATE_DISABLED by the bridge layer,
561 * so allow it to be in BR_STATE_FORWARDING to be kept functional
562 */
Vivien Didelot4acfee82016-09-22 16:49:21 -0400563 dsa_port_set_stp_state(ds, p->port, BR_STATE_FORWARDING);
Florian Fainellib73adef2015-02-24 13:15:33 -0800564}
565
Scott Feldmanf8e20a92015-05-10 09:47:49 -0700566static int dsa_slave_port_attr_get(struct net_device *dev,
567 struct switchdev_attr *attr)
Florian Fainellib73adef2015-02-24 13:15:33 -0800568{
569 struct dsa_slave_priv *p = netdev_priv(dev);
570 struct dsa_switch *ds = p->parent;
571
Scott Feldmanf8e20a92015-05-10 09:47:49 -0700572 switch (attr->id) {
Jiri Pirko1f868392015-10-01 11:03:42 +0200573 case SWITCHDEV_ATTR_ID_PORT_PARENT_ID:
Scott Feldman42275bd2015-05-13 11:16:50 -0700574 attr->u.ppid.id_len = sizeof(ds->index);
575 memcpy(&attr->u.ppid.id, &ds->index, attr->u.ppid.id_len);
Scott Feldmanf8e20a92015-05-10 09:47:49 -0700576 break;
577 default:
578 return -EOPNOTSUPP;
579 }
Florian Fainellib73adef2015-02-24 13:15:33 -0800580
581 return 0;
582}
583
Florian Fainelli04ff53f2015-07-31 11:42:57 -0700584static inline netdev_tx_t dsa_netpoll_send_skb(struct dsa_slave_priv *p,
585 struct sk_buff *skb)
586{
587#ifdef CONFIG_NET_POLL_CONTROLLER
588 if (p->netpoll)
589 netpoll_send_skb(p->netpoll, skb);
590#else
591 BUG();
592#endif
593 return NETDEV_TX_OK;
594}
595
Florian Fainelli3e8a72d2014-08-27 17:04:46 -0700596static netdev_tx_t dsa_slave_xmit(struct sk_buff *skb, struct net_device *dev)
597{
598 struct dsa_slave_priv *p = netdev_priv(dev);
Florian Fainelli4ed70ce2015-07-31 11:42:56 -0700599 struct sk_buff *nskb;
Florian Fainelli3e8a72d2014-08-27 17:04:46 -0700600
Florian Fainelli4ed70ce2015-07-31 11:42:56 -0700601 dev->stats.tx_packets++;
602 dev->stats.tx_bytes += skb->len;
Florian Fainelli3e8a72d2014-08-27 17:04:46 -0700603
Florian Fainelli4ed70ce2015-07-31 11:42:56 -0700604 /* Transmit function may have to reallocate the original SKB */
605 nskb = p->xmit(skb, dev);
606 if (!nskb)
607 return NETDEV_TX_OK;
Florian Fainelli5aed85c2014-08-27 17:04:52 -0700608
Florian Fainelli04ff53f2015-07-31 11:42:57 -0700609 /* SKB for netpoll still need to be mangled with the protocol-specific
610 * tag to be successfully transmitted
611 */
612 if (unlikely(netpoll_tx_running(dev)))
613 return dsa_netpoll_send_skb(p, nskb);
614
Florian Fainelli4ed70ce2015-07-31 11:42:56 -0700615 /* Queue the SKB for transmission on the parent interface, but
616 * do not modify its EtherType
617 */
618 nskb->dev = p->parent->dst->master_netdev;
619 dev_queue_xmit(nskb);
Florian Fainelli5aed85c2014-08-27 17:04:52 -0700620
621 return NETDEV_TX_OK;
622}
623
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000624/* ethtool operations *******************************************************/
625static int
626dsa_slave_get_settings(struct net_device *dev, struct ethtool_cmd *cmd)
627{
628 struct dsa_slave_priv *p = netdev_priv(dev);
629 int err;
630
631 err = -EOPNOTSUPP;
632 if (p->phy != NULL) {
633 err = phy_read_status(p->phy);
634 if (err == 0)
635 err = phy_ethtool_gset(p->phy, cmd);
636 }
637
638 return err;
639}
640
641static int
642dsa_slave_set_settings(struct net_device *dev, struct ethtool_cmd *cmd)
643{
644 struct dsa_slave_priv *p = netdev_priv(dev);
645
646 if (p->phy != NULL)
647 return phy_ethtool_sset(p->phy, cmd);
648
649 return -EOPNOTSUPP;
650}
651
652static void dsa_slave_get_drvinfo(struct net_device *dev,
653 struct ethtool_drvinfo *drvinfo)
654{
Jiri Pirko7826d432013-01-06 00:44:26 +0000655 strlcpy(drvinfo->driver, "dsa", sizeof(drvinfo->driver));
656 strlcpy(drvinfo->version, dsa_driver_version, sizeof(drvinfo->version));
657 strlcpy(drvinfo->fw_version, "N/A", sizeof(drvinfo->fw_version));
658 strlcpy(drvinfo->bus_info, "platform", sizeof(drvinfo->bus_info));
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000659}
660
Guenter Roeck3d762a02014-10-29 10:45:04 -0700661static int dsa_slave_get_regs_len(struct net_device *dev)
662{
663 struct dsa_slave_priv *p = netdev_priv(dev);
664 struct dsa_switch *ds = p->parent;
665
Vivien Didelot9d490b42016-08-23 12:38:56 -0400666 if (ds->ops->get_regs_len)
667 return ds->ops->get_regs_len(ds, p->port);
Guenter Roeck3d762a02014-10-29 10:45:04 -0700668
669 return -EOPNOTSUPP;
670}
671
672static void
673dsa_slave_get_regs(struct net_device *dev, struct ethtool_regs *regs, void *_p)
674{
675 struct dsa_slave_priv *p = netdev_priv(dev);
676 struct dsa_switch *ds = p->parent;
677
Vivien Didelot9d490b42016-08-23 12:38:56 -0400678 if (ds->ops->get_regs)
679 ds->ops->get_regs(ds, p->port, regs, _p);
Guenter Roeck3d762a02014-10-29 10:45:04 -0700680}
681
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000682static int dsa_slave_nway_reset(struct net_device *dev)
683{
684 struct dsa_slave_priv *p = netdev_priv(dev);
685
686 if (p->phy != NULL)
687 return genphy_restart_aneg(p->phy);
688
689 return -EOPNOTSUPP;
690}
691
692static u32 dsa_slave_get_link(struct net_device *dev)
693{
694 struct dsa_slave_priv *p = netdev_priv(dev);
695
696 if (p->phy != NULL) {
697 genphy_update_link(p->phy);
698 return p->phy->link;
699 }
700
701 return -EOPNOTSUPP;
702}
703
Guenter Roeck6793abb2014-10-29 10:45:01 -0700704static int dsa_slave_get_eeprom_len(struct net_device *dev)
705{
706 struct dsa_slave_priv *p = netdev_priv(dev);
707 struct dsa_switch *ds = p->parent;
708
Andrew Lunn0e576042016-06-04 21:16:52 +0200709 if (ds->cd && ds->cd->eeprom_len)
Andrew Lunnff049552016-05-10 23:27:24 +0200710 return ds->cd->eeprom_len;
Guenter Roeck6793abb2014-10-29 10:45:01 -0700711
Vivien Didelot9d490b42016-08-23 12:38:56 -0400712 if (ds->ops->get_eeprom_len)
713 return ds->ops->get_eeprom_len(ds);
Guenter Roeck6793abb2014-10-29 10:45:01 -0700714
715 return 0;
716}
717
718static int dsa_slave_get_eeprom(struct net_device *dev,
719 struct ethtool_eeprom *eeprom, u8 *data)
720{
721 struct dsa_slave_priv *p = netdev_priv(dev);
722 struct dsa_switch *ds = p->parent;
723
Vivien Didelot9d490b42016-08-23 12:38:56 -0400724 if (ds->ops->get_eeprom)
725 return ds->ops->get_eeprom(ds, eeprom, data);
Guenter Roeck6793abb2014-10-29 10:45:01 -0700726
727 return -EOPNOTSUPP;
728}
729
730static int dsa_slave_set_eeprom(struct net_device *dev,
731 struct ethtool_eeprom *eeprom, u8 *data)
732{
733 struct dsa_slave_priv *p = netdev_priv(dev);
734 struct dsa_switch *ds = p->parent;
735
Vivien Didelot9d490b42016-08-23 12:38:56 -0400736 if (ds->ops->set_eeprom)
737 return ds->ops->set_eeprom(ds, eeprom, data);
Guenter Roeck6793abb2014-10-29 10:45:01 -0700738
739 return -EOPNOTSUPP;
740}
741
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000742static void dsa_slave_get_strings(struct net_device *dev,
743 uint32_t stringset, uint8_t *data)
744{
745 struct dsa_slave_priv *p = netdev_priv(dev);
746 struct dsa_switch *ds = p->parent;
747
748 if (stringset == ETH_SS_STATS) {
749 int len = ETH_GSTRING_LEN;
750
751 strncpy(data, "tx_packets", len);
752 strncpy(data + len, "tx_bytes", len);
753 strncpy(data + 2 * len, "rx_packets", len);
754 strncpy(data + 3 * len, "rx_bytes", len);
Vivien Didelot9d490b42016-08-23 12:38:56 -0400755 if (ds->ops->get_strings)
756 ds->ops->get_strings(ds, p->port, data + 4 * len);
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000757 }
758}
759
Florian Fainellibadf3ad2016-04-27 11:45:14 -0700760static void dsa_cpu_port_get_ethtool_stats(struct net_device *dev,
761 struct ethtool_stats *stats,
762 uint64_t *data)
763{
764 struct dsa_switch_tree *dst = dev->dsa_ptr;
765 struct dsa_switch *ds = dst->ds[0];
766 s8 cpu_port = dst->cpu_port;
767 int count = 0;
768
769 if (dst->master_ethtool_ops.get_sset_count) {
770 count = dst->master_ethtool_ops.get_sset_count(dev,
771 ETH_SS_STATS);
772 dst->master_ethtool_ops.get_ethtool_stats(dev, stats, data);
773 }
774
Vivien Didelot9d490b42016-08-23 12:38:56 -0400775 if (ds->ops->get_ethtool_stats)
776 ds->ops->get_ethtool_stats(ds, cpu_port, data + count);
Florian Fainellibadf3ad2016-04-27 11:45:14 -0700777}
778
779static int dsa_cpu_port_get_sset_count(struct net_device *dev, int sset)
780{
781 struct dsa_switch_tree *dst = dev->dsa_ptr;
782 struct dsa_switch *ds = dst->ds[0];
783 int count = 0;
784
785 if (dst->master_ethtool_ops.get_sset_count)
786 count += dst->master_ethtool_ops.get_sset_count(dev, sset);
787
Vivien Didelot9d490b42016-08-23 12:38:56 -0400788 if (sset == ETH_SS_STATS && ds->ops->get_sset_count)
789 count += ds->ops->get_sset_count(ds);
Florian Fainellibadf3ad2016-04-27 11:45:14 -0700790
791 return count;
792}
793
794static void dsa_cpu_port_get_strings(struct net_device *dev,
795 uint32_t stringset, uint8_t *data)
796{
797 struct dsa_switch_tree *dst = dev->dsa_ptr;
798 struct dsa_switch *ds = dst->ds[0];
799 s8 cpu_port = dst->cpu_port;
800 int len = ETH_GSTRING_LEN;
801 int mcount = 0, count;
802 unsigned int i;
803 uint8_t pfx[4];
804 uint8_t *ndata;
805
806 snprintf(pfx, sizeof(pfx), "p%.2d", cpu_port);
807 /* We do not want to be NULL-terminated, since this is a prefix */
808 pfx[sizeof(pfx) - 1] = '_';
809
810 if (dst->master_ethtool_ops.get_sset_count) {
811 mcount = dst->master_ethtool_ops.get_sset_count(dev,
812 ETH_SS_STATS);
813 dst->master_ethtool_ops.get_strings(dev, stringset, data);
814 }
815
Vivien Didelot9d490b42016-08-23 12:38:56 -0400816 if (stringset == ETH_SS_STATS && ds->ops->get_strings) {
Florian Fainellibadf3ad2016-04-27 11:45:14 -0700817 ndata = data + mcount * len;
818 /* This function copies ETH_GSTRINGS_LEN bytes, we will mangle
819 * the output after to prepend our CPU port prefix we
820 * constructed earlier
821 */
Vivien Didelot9d490b42016-08-23 12:38:56 -0400822 ds->ops->get_strings(ds, cpu_port, ndata);
823 count = ds->ops->get_sset_count(ds);
Florian Fainellibadf3ad2016-04-27 11:45:14 -0700824 for (i = 0; i < count; i++) {
825 memmove(ndata + (i * len + sizeof(pfx)),
826 ndata + i * len, len - sizeof(pfx));
827 memcpy(ndata + i * len, pfx, sizeof(pfx));
828 }
829 }
830}
831
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000832static void dsa_slave_get_ethtool_stats(struct net_device *dev,
833 struct ethtool_stats *stats,
834 uint64_t *data)
835{
836 struct dsa_slave_priv *p = netdev_priv(dev);
837 struct dsa_switch *ds = p->parent;
838
Vivien Didelot46e7b8d2016-04-18 16:10:24 -0400839 data[0] = dev->stats.tx_packets;
840 data[1] = dev->stats.tx_bytes;
841 data[2] = dev->stats.rx_packets;
842 data[3] = dev->stats.rx_bytes;
Vivien Didelot9d490b42016-08-23 12:38:56 -0400843 if (ds->ops->get_ethtool_stats)
844 ds->ops->get_ethtool_stats(ds, p->port, data + 4);
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000845}
846
847static int dsa_slave_get_sset_count(struct net_device *dev, int sset)
848{
849 struct dsa_slave_priv *p = netdev_priv(dev);
850 struct dsa_switch *ds = p->parent;
851
852 if (sset == ETH_SS_STATS) {
853 int count;
854
855 count = 4;
Vivien Didelot9d490b42016-08-23 12:38:56 -0400856 if (ds->ops->get_sset_count)
857 count += ds->ops->get_sset_count(ds);
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000858
859 return count;
860 }
861
862 return -EOPNOTSUPP;
863}
864
Florian Fainelli19e57c42014-09-18 17:31:24 -0700865static void dsa_slave_get_wol(struct net_device *dev, struct ethtool_wolinfo *w)
866{
867 struct dsa_slave_priv *p = netdev_priv(dev);
868 struct dsa_switch *ds = p->parent;
869
Vivien Didelot9d490b42016-08-23 12:38:56 -0400870 if (ds->ops->get_wol)
871 ds->ops->get_wol(ds, p->port, w);
Florian Fainelli19e57c42014-09-18 17:31:24 -0700872}
873
874static int dsa_slave_set_wol(struct net_device *dev, struct ethtool_wolinfo *w)
875{
876 struct dsa_slave_priv *p = netdev_priv(dev);
877 struct dsa_switch *ds = p->parent;
878 int ret = -EOPNOTSUPP;
879
Vivien Didelot9d490b42016-08-23 12:38:56 -0400880 if (ds->ops->set_wol)
881 ret = ds->ops->set_wol(ds, p->port, w);
Florian Fainelli19e57c42014-09-18 17:31:24 -0700882
883 return ret;
884}
885
Florian Fainelli79052882014-09-24 17:05:21 -0700886static int dsa_slave_set_eee(struct net_device *dev, struct ethtool_eee *e)
887{
888 struct dsa_slave_priv *p = netdev_priv(dev);
889 struct dsa_switch *ds = p->parent;
890 int ret;
891
Vivien Didelot9d490b42016-08-23 12:38:56 -0400892 if (!ds->ops->set_eee)
Florian Fainelli79052882014-09-24 17:05:21 -0700893 return -EOPNOTSUPP;
894
Vivien Didelot9d490b42016-08-23 12:38:56 -0400895 ret = ds->ops->set_eee(ds, p->port, p->phy, e);
Florian Fainelli79052882014-09-24 17:05:21 -0700896 if (ret)
897 return ret;
898
899 if (p->phy)
900 ret = phy_ethtool_set_eee(p->phy, e);
901
902 return ret;
903}
904
905static int dsa_slave_get_eee(struct net_device *dev, struct ethtool_eee *e)
906{
907 struct dsa_slave_priv *p = netdev_priv(dev);
908 struct dsa_switch *ds = p->parent;
909 int ret;
910
Vivien Didelot9d490b42016-08-23 12:38:56 -0400911 if (!ds->ops->get_eee)
Florian Fainelli79052882014-09-24 17:05:21 -0700912 return -EOPNOTSUPP;
913
Vivien Didelot9d490b42016-08-23 12:38:56 -0400914 ret = ds->ops->get_eee(ds, p->port, e);
Florian Fainelli79052882014-09-24 17:05:21 -0700915 if (ret)
916 return ret;
917
918 if (p->phy)
919 ret = phy_ethtool_get_eee(p->phy, e);
920
921 return ret;
922}
923
Florian Fainelli04ff53f2015-07-31 11:42:57 -0700924#ifdef CONFIG_NET_POLL_CONTROLLER
925static int dsa_slave_netpoll_setup(struct net_device *dev,
926 struct netpoll_info *ni)
927{
928 struct dsa_slave_priv *p = netdev_priv(dev);
929 struct dsa_switch *ds = p->parent;
930 struct net_device *master = ds->dst->master_netdev;
931 struct netpoll *netpoll;
932 int err = 0;
933
934 netpoll = kzalloc(sizeof(*netpoll), GFP_KERNEL);
935 if (!netpoll)
936 return -ENOMEM;
937
938 err = __netpoll_setup(netpoll, master);
939 if (err) {
940 kfree(netpoll);
941 goto out;
942 }
943
944 p->netpoll = netpoll;
945out:
946 return err;
947}
948
949static void dsa_slave_netpoll_cleanup(struct net_device *dev)
950{
951 struct dsa_slave_priv *p = netdev_priv(dev);
952 struct netpoll *netpoll = p->netpoll;
953
954 if (!netpoll)
955 return;
956
957 p->netpoll = NULL;
958
959 __netpoll_free_async(netpoll);
960}
961
962static void dsa_slave_poll_controller(struct net_device *dev)
963{
964}
965#endif
966
Florian Fainelliaf421922016-06-07 16:32:41 -0700967void dsa_cpu_port_ethtool_init(struct ethtool_ops *ops)
968{
969 ops->get_sset_count = dsa_cpu_port_get_sset_count;
970 ops->get_ethtool_stats = dsa_cpu_port_get_ethtool_stats;
971 ops->get_strings = dsa_cpu_port_get_strings;
972}
973
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000974static const struct ethtool_ops dsa_slave_ethtool_ops = {
975 .get_settings = dsa_slave_get_settings,
976 .set_settings = dsa_slave_set_settings,
977 .get_drvinfo = dsa_slave_get_drvinfo,
Guenter Roeck3d762a02014-10-29 10:45:04 -0700978 .get_regs_len = dsa_slave_get_regs_len,
979 .get_regs = dsa_slave_get_regs,
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000980 .nway_reset = dsa_slave_nway_reset,
981 .get_link = dsa_slave_get_link,
Guenter Roeck6793abb2014-10-29 10:45:01 -0700982 .get_eeprom_len = dsa_slave_get_eeprom_len,
983 .get_eeprom = dsa_slave_get_eeprom,
984 .set_eeprom = dsa_slave_set_eeprom,
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000985 .get_strings = dsa_slave_get_strings,
986 .get_ethtool_stats = dsa_slave_get_ethtool_stats,
987 .get_sset_count = dsa_slave_get_sset_count,
Florian Fainelli19e57c42014-09-18 17:31:24 -0700988 .set_wol = dsa_slave_set_wol,
989 .get_wol = dsa_slave_get_wol,
Florian Fainelli79052882014-09-24 17:05:21 -0700990 .set_eee = dsa_slave_set_eee,
991 .get_eee = dsa_slave_get_eee,
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000992};
993
Florian Fainelli3e8a72d2014-08-27 17:04:46 -0700994static const struct net_device_ops dsa_slave_netdev_ops = {
Stephen Hemmingerd442ad42009-01-06 16:45:26 -0800995 .ndo_open = dsa_slave_open,
996 .ndo_stop = dsa_slave_close,
Florian Fainelli3e8a72d2014-08-27 17:04:46 -0700997 .ndo_start_xmit = dsa_slave_xmit,
Stephen Hemmingerd442ad42009-01-06 16:45:26 -0800998 .ndo_change_rx_flags = dsa_slave_change_rx_flags,
999 .ndo_set_rx_mode = dsa_slave_set_rx_mode,
Stephen Hemmingerd442ad42009-01-06 16:45:26 -08001000 .ndo_set_mac_address = dsa_slave_set_mac_address,
Vivien Didelotba14d9e2015-08-10 09:09:53 -04001001 .ndo_fdb_add = switchdev_port_fdb_add,
1002 .ndo_fdb_del = switchdev_port_fdb_del,
1003 .ndo_fdb_dump = switchdev_port_fdb_dump,
Stephen Hemmingerd442ad42009-01-06 16:45:26 -08001004 .ndo_do_ioctl = dsa_slave_ioctl,
Nicolas Dichtelabd2be02015-04-02 17:07:08 +02001005 .ndo_get_iflink = dsa_slave_get_iflink,
Florian Fainelli04ff53f2015-07-31 11:42:57 -07001006#ifdef CONFIG_NET_POLL_CONTROLLER
1007 .ndo_netpoll_setup = dsa_slave_netpoll_setup,
1008 .ndo_netpoll_cleanup = dsa_slave_netpoll_cleanup,
1009 .ndo_poll_controller = dsa_slave_poll_controller,
1010#endif
Vivien Didelot11149532015-08-13 12:52:17 -04001011 .ndo_bridge_getlink = switchdev_port_bridge_getlink,
1012 .ndo_bridge_setlink = switchdev_port_bridge_setlink,
1013 .ndo_bridge_dellink = switchdev_port_bridge_dellink,
Scott Feldman98237d42015-03-15 21:07:15 -07001014};
1015
Jiri Pirko9d47c0a2015-05-10 09:47:47 -07001016static const struct switchdev_ops dsa_slave_switchdev_ops = {
Scott Feldmanf8e20a92015-05-10 09:47:49 -07001017 .switchdev_port_attr_get = dsa_slave_port_attr_get,
Scott Feldman35636062015-05-10 09:47:51 -07001018 .switchdev_port_attr_set = dsa_slave_port_attr_set,
Vivien Didelotba14d9e2015-08-10 09:09:53 -04001019 .switchdev_port_obj_add = dsa_slave_port_obj_add,
1020 .switchdev_port_obj_del = dsa_slave_port_obj_del,
1021 .switchdev_port_obj_dump = dsa_slave_port_obj_dump,
Stephen Hemmingerd442ad42009-01-06 16:45:26 -08001022};
Lennert Buytenhek91da11f2008-10-07 13:44:02 +00001023
Florian Fainellif37db852015-09-23 18:19:58 -07001024static struct device_type dsa_type = {
1025 .name = "dsa",
1026};
1027
Florian Fainelli0d8bcdd2014-08-27 17:04:51 -07001028static void dsa_slave_adjust_link(struct net_device *dev)
1029{
1030 struct dsa_slave_priv *p = netdev_priv(dev);
Florian Fainelliec9436b2014-08-27 17:04:53 -07001031 struct dsa_switch *ds = p->parent;
Florian Fainelli0d8bcdd2014-08-27 17:04:51 -07001032 unsigned int status_changed = 0;
1033
1034 if (p->old_link != p->phy->link) {
1035 status_changed = 1;
1036 p->old_link = p->phy->link;
1037 }
1038
1039 if (p->old_duplex != p->phy->duplex) {
1040 status_changed = 1;
1041 p->old_duplex = p->phy->duplex;
1042 }
1043
1044 if (p->old_pause != p->phy->pause) {
1045 status_changed = 1;
1046 p->old_pause = p->phy->pause;
1047 }
1048
Vivien Didelot9d490b42016-08-23 12:38:56 -04001049 if (ds->ops->adjust_link && status_changed)
1050 ds->ops->adjust_link(ds, p->port, p->phy);
Florian Fainelliec9436b2014-08-27 17:04:53 -07001051
Florian Fainelli0d8bcdd2014-08-27 17:04:51 -07001052 if (status_changed)
1053 phy_print_status(p->phy);
1054}
1055
Florian Fainellice31b312014-08-27 17:04:54 -07001056static int dsa_slave_fixed_link_update(struct net_device *dev,
1057 struct fixed_phy_status *status)
1058{
Andrew Lunnb71be352016-03-12 00:01:37 +01001059 struct dsa_slave_priv *p;
1060 struct dsa_switch *ds;
Florian Fainellice31b312014-08-27 17:04:54 -07001061
Andrew Lunnb71be352016-03-12 00:01:37 +01001062 if (dev) {
1063 p = netdev_priv(dev);
1064 ds = p->parent;
Vivien Didelot9d490b42016-08-23 12:38:56 -04001065 if (ds->ops->fixed_link_update)
1066 ds->ops->fixed_link_update(ds, p->port, status);
Andrew Lunnb71be352016-03-12 00:01:37 +01001067 }
Florian Fainellice31b312014-08-27 17:04:54 -07001068
1069 return 0;
1070}
1071
Lennert Buytenhek91da11f2008-10-07 13:44:02 +00001072/* slave device setup *******************************************************/
Florian Fainellic305c162015-03-10 16:57:12 -07001073static int dsa_slave_phy_connect(struct dsa_slave_priv *p,
Florian Fainellicd28a1a2015-03-10 16:57:13 -07001074 struct net_device *slave_dev,
1075 int addr)
Florian Fainellic305c162015-03-10 16:57:12 -07001076{
1077 struct dsa_switch *ds = p->parent;
1078
Andrew Lunn7f854422016-01-06 20:11:18 +01001079 p->phy = mdiobus_get_phy(ds->slave_mii_bus, addr);
Russell Kingd25b8e72015-10-03 18:09:07 +01001080 if (!p->phy) {
1081 netdev_err(slave_dev, "no phy at %d\n", addr);
Florian Fainellic305c162015-03-10 16:57:12 -07001082 return -ENODEV;
Russell Kingd25b8e72015-10-03 18:09:07 +01001083 }
Florian Fainellic305c162015-03-10 16:57:12 -07001084
1085 /* Use already configured phy mode */
Florian Fainelli211c5042015-08-08 12:58:57 -07001086 if (p->phy_interface == PHY_INTERFACE_MODE_NA)
1087 p->phy_interface = p->phy->interface;
Florian Fainellic305c162015-03-10 16:57:12 -07001088 phy_connect_direct(slave_dev, p->phy, dsa_slave_adjust_link,
1089 p->phy_interface);
1090
1091 return 0;
1092}
1093
Florian Fainelli9697f1c2014-12-11 12:49:16 -08001094static int dsa_slave_phy_setup(struct dsa_slave_priv *p,
Florian Fainelli0d8bcdd2014-08-27 17:04:51 -07001095 struct net_device *slave_dev)
1096{
1097 struct dsa_switch *ds = p->parent;
Florian Fainelli0d8bcdd2014-08-27 17:04:51 -07001098 struct device_node *phy_dn, *port_dn;
Florian Fainellice31b312014-08-27 17:04:54 -07001099 bool phy_is_fixed = false;
Florian Fainelli68195632014-09-19 13:07:54 -07001100 u32 phy_flags = 0;
Guenter Roeck19334922015-02-16 21:23:51 -08001101 int mode, ret;
Florian Fainelli0d8bcdd2014-08-27 17:04:51 -07001102
Andrew Lunn189b0d92016-06-04 21:16:58 +02001103 port_dn = ds->ports[p->port].dn;
Guenter Roeck19334922015-02-16 21:23:51 -08001104 mode = of_get_phy_mode(port_dn);
1105 if (mode < 0)
1106 mode = PHY_INTERFACE_MODE_NA;
1107 p->phy_interface = mode;
Florian Fainelli0d8bcdd2014-08-27 17:04:51 -07001108
1109 phy_dn = of_parse_phandle(port_dn, "phy-handle", 0);
1110 if (of_phy_is_fixed_link(port_dn)) {
1111 /* In the case of a fixed PHY, the DT node associated
1112 * to the fixed PHY is the Port DT node
1113 */
1114 ret = of_phy_register_fixed_link(port_dn);
1115 if (ret) {
Russell Kingd25b8e72015-10-03 18:09:07 +01001116 netdev_err(slave_dev, "failed to register fixed PHY: %d\n", ret);
Florian Fainelli9697f1c2014-12-11 12:49:16 -08001117 return ret;
Florian Fainelli0d8bcdd2014-08-27 17:04:51 -07001118 }
Florian Fainellice31b312014-08-27 17:04:54 -07001119 phy_is_fixed = true;
Florian Fainelli0d8bcdd2014-08-27 17:04:51 -07001120 phy_dn = port_dn;
1121 }
1122
Vivien Didelot9d490b42016-08-23 12:38:56 -04001123 if (ds->ops->get_phy_flags)
1124 phy_flags = ds->ops->get_phy_flags(ds, p->port);
Florian Fainelli68195632014-09-19 13:07:54 -07001125
Florian Fainellicd28a1a2015-03-10 16:57:13 -07001126 if (phy_dn) {
Russell Kingd25b8e72015-10-03 18:09:07 +01001127 int phy_id = of_mdio_parse_addr(&slave_dev->dev, phy_dn);
1128
Florian Fainellicd28a1a2015-03-10 16:57:13 -07001129 /* If this PHY address is part of phys_mii_mask, which means
1130 * that we need to divert reads and writes to/from it, then we
1131 * want to bind this device using the slave MII bus created by
1132 * DSA to make that happen.
1133 */
Russell Kingd25b8e72015-10-03 18:09:07 +01001134 if (!phy_is_fixed && phy_id >= 0 &&
1135 (ds->phys_mii_mask & (1 << phy_id))) {
1136 ret = dsa_slave_phy_connect(p, slave_dev, phy_id);
1137 if (ret) {
1138 netdev_err(slave_dev, "failed to connect to phy%d: %d\n", phy_id, ret);
Florian Fainellicd28a1a2015-03-10 16:57:13 -07001139 return ret;
Russell Kingd25b8e72015-10-03 18:09:07 +01001140 }
Florian Fainellicd28a1a2015-03-10 16:57:13 -07001141 } else {
1142 p->phy = of_phy_connect(slave_dev, phy_dn,
1143 dsa_slave_adjust_link,
1144 phy_flags,
1145 p->phy_interface);
1146 }
1147 }
Florian Fainelli0d8bcdd2014-08-27 17:04:51 -07001148
Florian Fainellice31b312014-08-27 17:04:54 -07001149 if (p->phy && phy_is_fixed)
1150 fixed_phy_set_link_update(p->phy, dsa_slave_fixed_link_update);
1151
Florian Fainelli0d8bcdd2014-08-27 17:04:51 -07001152 /* We could not connect to a designated PHY, so use the switch internal
1153 * MDIO bus instead
1154 */
Andrew Lunnb31f65f2014-11-05 19:47:28 +01001155 if (!p->phy) {
Florian Fainellicd28a1a2015-03-10 16:57:13 -07001156 ret = dsa_slave_phy_connect(p, slave_dev, p->port);
Russell Kingd25b8e72015-10-03 18:09:07 +01001157 if (ret) {
1158 netdev_err(slave_dev, "failed to connect to port %d: %d\n", p->port, ret);
Florian Fainellic305c162015-03-10 16:57:12 -07001159 return ret;
Russell Kingd25b8e72015-10-03 18:09:07 +01001160 }
Andrew Lunnb31f65f2014-11-05 19:47:28 +01001161 }
Florian Fainelli9697f1c2014-12-11 12:49:16 -08001162
Andrew Lunn22209432016-01-06 20:11:13 +01001163 phy_attached_info(p->phy);
1164
Florian Fainelli9697f1c2014-12-11 12:49:16 -08001165 return 0;
Florian Fainelli0d8bcdd2014-08-27 17:04:51 -07001166}
1167
Andrew Lunn448b4482015-05-06 01:09:56 +02001168static struct lock_class_key dsa_slave_netdev_xmit_lock_key;
1169static void dsa_slave_set_lockdep_class_one(struct net_device *dev,
1170 struct netdev_queue *txq,
1171 void *_unused)
1172{
1173 lockdep_set_class(&txq->_xmit_lock,
1174 &dsa_slave_netdev_xmit_lock_key);
1175}
1176
Florian Fainelli24462542014-09-18 17:31:22 -07001177int dsa_slave_suspend(struct net_device *slave_dev)
1178{
1179 struct dsa_slave_priv *p = netdev_priv(slave_dev);
1180
Florian Fainelli24462542014-09-18 17:31:22 -07001181 if (p->phy) {
1182 phy_stop(p->phy);
1183 p->old_pause = -1;
1184 p->old_link = -1;
1185 p->old_duplex = -1;
1186 phy_suspend(p->phy);
1187 }
1188
1189 return 0;
1190}
1191
1192int dsa_slave_resume(struct net_device *slave_dev)
1193{
1194 struct dsa_slave_priv *p = netdev_priv(slave_dev);
1195
1196 netif_device_attach(slave_dev);
1197
1198 if (p->phy) {
1199 phy_resume(p->phy);
1200 phy_start(p->phy);
1201 }
1202
1203 return 0;
1204}
1205
Guenter Roeckd87d6f42015-02-24 13:15:32 -08001206int dsa_slave_create(struct dsa_switch *ds, struct device *parent,
Andrew Lunn83c0afa2016-06-04 21:17:07 +02001207 int port, const char *name)
Lennert Buytenhek91da11f2008-10-07 13:44:02 +00001208{
Florian Fainellibadf3ad2016-04-27 11:45:14 -07001209 struct dsa_switch_tree *dst = ds->dst;
Andrew Lunn83c0afa2016-06-04 21:17:07 +02001210 struct net_device *master;
Lennert Buytenhek91da11f2008-10-07 13:44:02 +00001211 struct net_device *slave_dev;
1212 struct dsa_slave_priv *p;
1213 int ret;
1214
Andrew Lunn83c0afa2016-06-04 21:17:07 +02001215 master = ds->dst->master_netdev;
1216 if (ds->master_netdev)
1217 master = ds->master_netdev;
1218
Tom Gundersenc835a672014-07-14 16:37:24 +02001219 slave_dev = alloc_netdev(sizeof(struct dsa_slave_priv), name,
1220 NET_NAME_UNKNOWN, ether_setup);
Lennert Buytenhek91da11f2008-10-07 13:44:02 +00001221 if (slave_dev == NULL)
Guenter Roeckd87d6f42015-02-24 13:15:32 -08001222 return -ENOMEM;
Lennert Buytenhek91da11f2008-10-07 13:44:02 +00001223
1224 slave_dev->features = master->vlan_features;
Wilfried Klaebe7ad24ea2014-05-11 00:12:32 +00001225 slave_dev->ethtool_ops = &dsa_slave_ethtool_ops;
Bjørn Mork2fcc8002013-08-30 18:08:46 +02001226 eth_hw_addr_inherit(slave_dev, master);
Phil Sutter0a5f1072015-08-18 10:30:41 +02001227 slave_dev->priv_flags |= IFF_NO_QUEUE;
Florian Fainelli3e8a72d2014-08-27 17:04:46 -07001228 slave_dev->netdev_ops = &dsa_slave_netdev_ops;
Jiri Pirko9d47c0a2015-05-10 09:47:47 -07001229 slave_dev->switchdev_ops = &dsa_slave_switchdev_ops;
Florian Fainellif37db852015-09-23 18:19:58 -07001230 SET_NETDEV_DEVTYPE(slave_dev, &dsa_type);
Stephen Hemmingerd442ad42009-01-06 16:45:26 -08001231
Andrew Lunn448b4482015-05-06 01:09:56 +02001232 netdev_for_each_tx_queue(slave_dev, dsa_slave_set_lockdep_class_one,
1233 NULL);
1234
Lennert Buytenhek91da11f2008-10-07 13:44:02 +00001235 SET_NETDEV_DEV(slave_dev, parent);
Andrew Lunn189b0d92016-06-04 21:16:58 +02001236 slave_dev->dev.of_node = ds->ports[port].dn;
Lennert Buytenhek91da11f2008-10-07 13:44:02 +00001237 slave_dev->vlan_features = master->vlan_features;
1238
1239 p = netdev_priv(slave_dev);
Lennert Buytenhek91da11f2008-10-07 13:44:02 +00001240 p->parent = ds;
1241 p->port = port;
Andrew Lunn39a7f2a2016-06-04 21:17:03 +02001242 p->xmit = dst->tag_ops->xmit;
Alexander Duyck50753142014-09-15 13:00:19 -04001243
Florian Fainelli0d8bcdd2014-08-27 17:04:51 -07001244 p->old_pause = -1;
1245 p->old_link = -1;
1246 p->old_duplex = -1;
1247
Andrew Lunnc8b09802016-06-04 21:16:57 +02001248 ds->ports[port].netdev = slave_dev;
Lennert Buytenhek91da11f2008-10-07 13:44:02 +00001249 ret = register_netdev(slave_dev);
1250 if (ret) {
Joe Perchesa2ae6002014-11-09 16:32:46 -08001251 netdev_err(master, "error %d registering interface %s\n",
1252 ret, slave_dev->name);
Andrew Lunnc8b09802016-06-04 21:16:57 +02001253 ds->ports[port].netdev = NULL;
Lennert Buytenhek91da11f2008-10-07 13:44:02 +00001254 free_netdev(slave_dev);
Guenter Roeckd87d6f42015-02-24 13:15:32 -08001255 return ret;
Lennert Buytenhek91da11f2008-10-07 13:44:02 +00001256 }
1257
1258 netif_carrier_off(slave_dev);
1259
Andrew Lunn0071f562016-01-06 20:11:20 +01001260 ret = dsa_slave_phy_setup(p, slave_dev);
1261 if (ret) {
1262 netdev_err(master, "error %d setting up slave phy\n", ret);
Florian Fainelli73dcb552016-02-17 18:43:22 -08001263 unregister_netdev(slave_dev);
Andrew Lunn0071f562016-01-06 20:11:20 +01001264 free_netdev(slave_dev);
1265 return ret;
1266 }
1267
Guenter Roeckd87d6f42015-02-24 13:15:32 -08001268 return 0;
Lennert Buytenhek91da11f2008-10-07 13:44:02 +00001269}
Florian Fainellib73adef2015-02-24 13:15:33 -08001270
Neil Armstrongcda5c152015-12-07 13:57:35 +01001271void dsa_slave_destroy(struct net_device *slave_dev)
1272{
1273 struct dsa_slave_priv *p = netdev_priv(slave_dev);
1274
1275 netif_carrier_off(slave_dev);
1276 if (p->phy)
1277 phy_disconnect(p->phy);
1278 unregister_netdev(slave_dev);
1279 free_netdev(slave_dev);
1280}
1281
Florian Fainellib73adef2015-02-24 13:15:33 -08001282static bool dsa_slave_dev_check(struct net_device *dev)
1283{
1284 return dev->netdev_ops == &dsa_slave_netdev_ops;
1285}
1286
Vivien Didelot6debb682016-03-13 16:21:34 -04001287static int dsa_slave_port_upper_event(struct net_device *dev,
1288 unsigned long event, void *ptr)
Florian Fainellib73adef2015-02-24 13:15:33 -08001289{
Vivien Didelot6debb682016-03-13 16:21:34 -04001290 struct netdev_notifier_changeupper_info *info = ptr;
1291 struct net_device *upper = info->upper_dev;
Florian Fainellib73adef2015-02-24 13:15:33 -08001292 int err = 0;
1293
Vivien Didelot6debb682016-03-13 16:21:34 -04001294 switch (event) {
1295 case NETDEV_CHANGEUPPER:
1296 if (netif_is_bridge_master(upper)) {
1297 if (info->linking)
1298 err = dsa_slave_bridge_port_join(dev, upper);
1299 else
1300 dsa_slave_bridge_port_leave(dev);
1301 }
Florian Fainellib73adef2015-02-24 13:15:33 -08001302
Vivien Didelot6debb682016-03-13 16:21:34 -04001303 break;
1304 }
1305
1306 return notifier_from_errno(err);
1307}
1308
1309static int dsa_slave_port_event(struct net_device *dev, unsigned long event,
1310 void *ptr)
1311{
1312 switch (event) {
1313 case NETDEV_CHANGEUPPER:
1314 return dsa_slave_port_upper_event(dev, event, ptr);
1315 }
1316
1317 return NOTIFY_DONE;
Florian Fainellib73adef2015-02-24 13:15:33 -08001318}
1319
1320int dsa_slave_netdevice_event(struct notifier_block *unused,
1321 unsigned long event, void *ptr)
1322{
Vivien Didelot6debb682016-03-13 16:21:34 -04001323 struct net_device *dev = netdev_notifier_info_to_dev(ptr);
Florian Fainellib73adef2015-02-24 13:15:33 -08001324
Vivien Didelot6debb682016-03-13 16:21:34 -04001325 if (dsa_slave_dev_check(dev))
1326 return dsa_slave_port_event(dev, event, ptr);
Florian Fainellib73adef2015-02-24 13:15:33 -08001327
Florian Fainellib73adef2015-02-24 13:15:33 -08001328 return NOTIFY_DONE;
1329}