Merge tag 'pinctrl-v4.9-1' of git://git.kernel.org/pub/scm/linux/kernel/git/linusw...
[linux-2.6-block.git] / net / dsa / slave.c
CommitLineData
91da11f8
LB
1/*
2 * net/dsa/slave.c - Slave device handling
e84665c9 3 * Copyright (c) 2008-2009 Marvell Semiconductor
91da11f8
LB
4 *
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>
df02c6ff 12#include <linux/etherdevice.h>
b73adef6 13#include <linux/netdevice.h>
91da11f8 14#include <linux/phy.h>
a2820543 15#include <linux/phy_fixed.h>
0d8bcdd3
FF
16#include <linux/of_net.h>
17#include <linux/of_mdio.h>
7f854420 18#include <linux/mdio.h>
b73adef6 19#include <net/rtnetlink.h>
98237d43 20#include <net/switchdev.h>
b73adef6 21#include <linux/if_bridge.h>
04ff53f9 22#include <linux/netpoll.h>
91da11f8
LB
23#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
0d8bcdd3 30 if (ds->phys_mii_mask & (1 << addr))
9d490b4e 31 return ds->ops->phy_read(ds, addr, reg);
91da11f8
LB
32
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
0d8bcdd3 40 if (ds->phys_mii_mask & (1 << addr))
9d490b4e 41 return ds->ops->phy_write(ds, addr, reg, val);
91da11f8
LB
42
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;
0b7b498d
FF
52 snprintf(ds->slave_mii_bus->id, MII_BUS_ID_SIZE, "dsa-%d.%d",
53 ds->dst->tree, ds->index);
c33063d6 54 ds->slave_mii_bus->parent = ds->dev;
24df8986 55 ds->slave_mii_bus->phy_mask = ~ds->phys_mii_mask;
91da11f8
LB
56}
57
58
59/* slave device handling ****************************************************/
abd2be00 60static int dsa_slave_get_iflink(const struct net_device *dev)
c0840801
LB
61{
62 struct dsa_slave_priv *p = netdev_priv(dev);
c0840801 63
abd2be00 64 return p->parent->dst->master_netdev->ifindex;
c0840801
LB
65}
66
b73adef6
FF
67static inline bool dsa_port_is_bridged(struct dsa_slave_priv *p)
68{
69 return !!p->bridge_dev;
70}
71
4acfee81
VD
72static void dsa_port_set_stp_state(struct dsa_switch *ds, int port, u8 state)
73{
732f794c
VD
74 struct dsa_port *dp = &ds->ports[port];
75
4acfee81
VD
76 if (ds->ops->port_stp_state_set)
77 ds->ops->port_stp_state_set(ds, port, state);
732f794c
VD
78
79 if (ds->ops->port_fast_age) {
80 /* Fast age FDB entries or flush appropriate forwarding database
81 * for the given port, if we are moving it from Learning or
82 * Forwarding state, to Disabled or Blocking or Listening state.
83 */
84
85 if ((dp->stp_state == BR_STATE_LEARNING ||
86 dp->stp_state == BR_STATE_FORWARDING) &&
87 (state == BR_STATE_DISABLED ||
88 state == BR_STATE_BLOCKING ||
89 state == BR_STATE_LISTENING))
90 ds->ops->port_fast_age(ds, port);
91 }
92
93 dp->stp_state = state;
4acfee81
VD
94}
95
91da11f8
LB
96static int dsa_slave_open(struct net_device *dev)
97{
df02c6ff 98 struct dsa_slave_priv *p = netdev_priv(dev);
e84665c9 99 struct net_device *master = p->parent->dst->master_netdev;
b2f2af21 100 struct dsa_switch *ds = p->parent;
b73adef6
FF
101 u8 stp_state = dsa_port_is_bridged(p) ?
102 BR_STATE_BLOCKING : BR_STATE_FORWARDING;
df02c6ff
LB
103 int err;
104
105 if (!(master->flags & IFF_UP))
106 return -ENETDOWN;
107
8feedbb4 108 if (!ether_addr_equal(dev->dev_addr, master->dev_addr)) {
a748ee24 109 err = dev_uc_add(master, dev->dev_addr);
df02c6ff
LB
110 if (err < 0)
111 goto out;
112 }
113
114 if (dev->flags & IFF_ALLMULTI) {
115 err = dev_set_allmulti(master, 1);
116 if (err < 0)
117 goto del_unicast;
118 }
119 if (dev->flags & IFF_PROMISC) {
120 err = dev_set_promiscuity(master, 1);
121 if (err < 0)
122 goto clear_allmulti;
123 }
124
9d490b4e
VD
125 if (ds->ops->port_enable) {
126 err = ds->ops->port_enable(ds, p->port, p->phy);
b2f2af21
FF
127 if (err)
128 goto clear_promisc;
129 }
130
4acfee81 131 dsa_port_set_stp_state(ds, p->port, stp_state);
b73adef6 132
f7f1de51
FF
133 if (p->phy)
134 phy_start(p->phy);
135
91da11f8 136 return 0;
df02c6ff 137
b2f2af21
FF
138clear_promisc:
139 if (dev->flags & IFF_PROMISC)
4fdeddfe 140 dev_set_promiscuity(master, -1);
df02c6ff
LB
141clear_allmulti:
142 if (dev->flags & IFF_ALLMULTI)
143 dev_set_allmulti(master, -1);
144del_unicast:
8feedbb4 145 if (!ether_addr_equal(dev->dev_addr, master->dev_addr))
a748ee24 146 dev_uc_del(master, dev->dev_addr);
df02c6ff
LB
147out:
148 return err;
91da11f8
LB
149}
150
151static int dsa_slave_close(struct net_device *dev)
152{
df02c6ff 153 struct dsa_slave_priv *p = netdev_priv(dev);
e84665c9 154 struct net_device *master = p->parent->dst->master_netdev;
b2f2af21 155 struct dsa_switch *ds = p->parent;
df02c6ff 156
f7f1de51
FF
157 if (p->phy)
158 phy_stop(p->phy);
159
df02c6ff 160 dev_mc_unsync(master, dev);
a748ee24 161 dev_uc_unsync(master, dev);
df02c6ff
LB
162 if (dev->flags & IFF_ALLMULTI)
163 dev_set_allmulti(master, -1);
164 if (dev->flags & IFF_PROMISC)
165 dev_set_promiscuity(master, -1);
166
8feedbb4 167 if (!ether_addr_equal(dev->dev_addr, master->dev_addr))
a748ee24 168 dev_uc_del(master, dev->dev_addr);
df02c6ff 169
9d490b4e
VD
170 if (ds->ops->port_disable)
171 ds->ops->port_disable(ds, p->port, p->phy);
b2f2af21 172
4acfee81 173 dsa_port_set_stp_state(ds, p->port, BR_STATE_DISABLED);
b73adef6 174
91da11f8
LB
175 return 0;
176}
177
178static void dsa_slave_change_rx_flags(struct net_device *dev, int change)
179{
180 struct dsa_slave_priv *p = netdev_priv(dev);
e84665c9 181 struct net_device *master = p->parent->dst->master_netdev;
91da11f8
LB
182
183 if (change & IFF_ALLMULTI)
184 dev_set_allmulti(master, dev->flags & IFF_ALLMULTI ? 1 : -1);
185 if (change & IFF_PROMISC)
186 dev_set_promiscuity(master, dev->flags & IFF_PROMISC ? 1 : -1);
187}
188
189static void dsa_slave_set_rx_mode(struct net_device *dev)
190{
191 struct dsa_slave_priv *p = netdev_priv(dev);
e84665c9 192 struct net_device *master = p->parent->dst->master_netdev;
91da11f8
LB
193
194 dev_mc_sync(master, dev);
a748ee24 195 dev_uc_sync(master, dev);
91da11f8
LB
196}
197
df02c6ff 198static int dsa_slave_set_mac_address(struct net_device *dev, void *a)
91da11f8 199{
df02c6ff 200 struct dsa_slave_priv *p = netdev_priv(dev);
e84665c9 201 struct net_device *master = p->parent->dst->master_netdev;
df02c6ff
LB
202 struct sockaddr *addr = a;
203 int err;
204
205 if (!is_valid_ether_addr(addr->sa_data))
206 return -EADDRNOTAVAIL;
207
208 if (!(dev->flags & IFF_UP))
209 goto out;
210
8feedbb4 211 if (!ether_addr_equal(addr->sa_data, master->dev_addr)) {
a748ee24 212 err = dev_uc_add(master, addr->sa_data);
df02c6ff
LB
213 if (err < 0)
214 return err;
215 }
216
8feedbb4 217 if (!ether_addr_equal(dev->dev_addr, master->dev_addr))
a748ee24 218 dev_uc_del(master, dev->dev_addr);
df02c6ff
LB
219
220out:
d08f161a 221 ether_addr_copy(dev->dev_addr, addr->sa_data);
91da11f8
LB
222
223 return 0;
224}
225
11149536 226static int dsa_slave_port_vlan_add(struct net_device *dev,
8f24f309 227 const struct switchdev_obj_port_vlan *vlan,
f8db8348 228 struct switchdev_trans *trans)
11149536 229{
11149536
VD
230 struct dsa_slave_priv *p = netdev_priv(dev);
231 struct dsa_switch *ds = p->parent;
11149536 232
79a62eb2 233 if (switchdev_trans_ph_prepare(trans)) {
9d490b4e 234 if (!ds->ops->port_vlan_prepare || !ds->ops->port_vlan_add)
11149536
VD
235 return -EOPNOTSUPP;
236
9d490b4e 237 return ds->ops->port_vlan_prepare(ds, p->port, vlan, trans);
11149536
VD
238 }
239
9d490b4e 240 ds->ops->port_vlan_add(ds, p->port, vlan, trans);
4d5770b3 241
11149536
VD
242 return 0;
243}
244
245static int dsa_slave_port_vlan_del(struct net_device *dev,
8f24f309 246 const struct switchdev_obj_port_vlan *vlan)
11149536 247{
11149536
VD
248 struct dsa_slave_priv *p = netdev_priv(dev);
249 struct dsa_switch *ds = p->parent;
11149536 250
9d490b4e 251 if (!ds->ops->port_vlan_del)
11149536
VD
252 return -EOPNOTSUPP;
253
9d490b4e 254 return ds->ops->port_vlan_del(ds, p->port, vlan);
11149536
VD
255}
256
257static int dsa_slave_port_vlan_dump(struct net_device *dev,
8f24f309 258 struct switchdev_obj_port_vlan *vlan,
648b4a99 259 switchdev_obj_dump_cb_t *cb)
11149536 260{
11149536
VD
261 struct dsa_slave_priv *p = netdev_priv(dev);
262 struct dsa_switch *ds = p->parent;
11149536 263
9d490b4e
VD
264 if (ds->ops->port_vlan_dump)
265 return ds->ops->port_vlan_dump(ds, p->port, vlan, cb);
65aebfc0 266
477b1845 267 return -EOPNOTSUPP;
11149536
VD
268}
269
ba14d9eb 270static int dsa_slave_port_fdb_add(struct net_device *dev,
52ba57cf 271 const struct switchdev_obj_port_fdb *fdb,
f8db8348 272 struct switchdev_trans *trans)
cdf09697
DM
273{
274 struct dsa_slave_priv *p = netdev_priv(dev);
275 struct dsa_switch *ds = p->parent;
146a3206 276
8497aa61 277 if (switchdev_trans_ph_prepare(trans)) {
9d490b4e 278 if (!ds->ops->port_fdb_prepare || !ds->ops->port_fdb_add)
8497aa61 279 return -EOPNOTSUPP;
cdf09697 280
9d490b4e 281 return ds->ops->port_fdb_prepare(ds, p->port, fdb, trans);
8497aa61
VD
282 }
283
9d490b4e 284 ds->ops->port_fdb_add(ds, p->port, fdb, trans);
cdf09697 285
8497aa61 286 return 0;
cdf09697
DM
287}
288
ba14d9eb 289static int dsa_slave_port_fdb_del(struct net_device *dev,
52ba57cf 290 const struct switchdev_obj_port_fdb *fdb)
cdf09697
DM
291{
292 struct dsa_slave_priv *p = netdev_priv(dev);
293 struct dsa_switch *ds = p->parent;
294 int ret = -EOPNOTSUPP;
295
9d490b4e
VD
296 if (ds->ops->port_fdb_del)
297 ret = ds->ops->port_fdb_del(ds, p->port, fdb);
cdf09697
DM
298
299 return ret;
300}
301
ba14d9eb 302static int dsa_slave_port_fdb_dump(struct net_device *dev,
52ba57cf 303 struct switchdev_obj_port_fdb *fdb,
648b4a99 304 switchdev_obj_dump_cb_t *cb)
cdf09697
DM
305{
306 struct dsa_slave_priv *p = netdev_priv(dev);
307 struct dsa_switch *ds = p->parent;
cdf09697 308
9d490b4e
VD
309 if (ds->ops->port_fdb_dump)
310 return ds->ops->port_fdb_dump(ds, p->port, fdb, cb);
ea70ba98 311
1a49a2fb 312 return -EOPNOTSUPP;
cdf09697
DM
313}
314
8df30255
VD
315static int dsa_slave_port_mdb_add(struct net_device *dev,
316 const struct switchdev_obj_port_mdb *mdb,
317 struct switchdev_trans *trans)
318{
319 struct dsa_slave_priv *p = netdev_priv(dev);
320 struct dsa_switch *ds = p->parent;
321
322 if (switchdev_trans_ph_prepare(trans)) {
323 if (!ds->ops->port_mdb_prepare || !ds->ops->port_mdb_add)
324 return -EOPNOTSUPP;
325
326 return ds->ops->port_mdb_prepare(ds, p->port, mdb, trans);
327 }
328
329 ds->ops->port_mdb_add(ds, p->port, mdb, trans);
330
331 return 0;
332}
333
334static int dsa_slave_port_mdb_del(struct net_device *dev,
335 const struct switchdev_obj_port_mdb *mdb)
336{
337 struct dsa_slave_priv *p = netdev_priv(dev);
338 struct dsa_switch *ds = p->parent;
339
340 if (ds->ops->port_mdb_del)
341 return ds->ops->port_mdb_del(ds, p->port, mdb);
342
343 return -EOPNOTSUPP;
344}
345
346static int dsa_slave_port_mdb_dump(struct net_device *dev,
347 struct switchdev_obj_port_mdb *mdb,
348 switchdev_obj_dump_cb_t *cb)
349{
350 struct dsa_slave_priv *p = netdev_priv(dev);
351 struct dsa_switch *ds = p->parent;
352
353 if (ds->ops->port_mdb_dump)
354 return ds->ops->port_mdb_dump(ds, p->port, mdb, cb);
355
356 return -EOPNOTSUPP;
357}
358
91da11f8
LB
359static int dsa_slave_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
360{
361 struct dsa_slave_priv *p = netdev_priv(dev);
91da11f8
LB
362
363 if (p->phy != NULL)
28b04113 364 return phy_mii_ioctl(p->phy, ifr, cmd);
91da11f8
LB
365
366 return -EOPNOTSUPP;
367}
368
43c44a9f
VD
369static int dsa_slave_stp_state_set(struct net_device *dev,
370 const struct switchdev_attr *attr,
371 struct switchdev_trans *trans)
b73adef6
FF
372{
373 struct dsa_slave_priv *p = netdev_priv(dev);
374 struct dsa_switch *ds = p->parent;
b73adef6 375
43c44a9f 376 if (switchdev_trans_ph_prepare(trans))
9d490b4e 377 return ds->ops->port_stp_state_set ? 0 : -EOPNOTSUPP;
b73adef6 378
4acfee81 379 dsa_port_set_stp_state(ds, p->port, attr->u.stp_state);
43c44a9f
VD
380
381 return 0;
b73adef6
FF
382}
383
fb2dabad
VD
384static int dsa_slave_vlan_filtering(struct net_device *dev,
385 const struct switchdev_attr *attr,
386 struct switchdev_trans *trans)
387{
388 struct dsa_slave_priv *p = netdev_priv(dev);
389 struct dsa_switch *ds = p->parent;
390
391 /* bridge skips -EOPNOTSUPP, so skip the prepare phase */
392 if (switchdev_trans_ph_prepare(trans))
393 return 0;
394
9d490b4e
VD
395 if (ds->ops->port_vlan_filtering)
396 return ds->ops->port_vlan_filtering(ds, p->port,
fb2dabad
VD
397 attr->u.vlan_filtering);
398
399 return 0;
400}
401
34a79f63
VD
402static int dsa_fastest_ageing_time(struct dsa_switch *ds,
403 unsigned int ageing_time)
404{
405 int i;
406
407 for (i = 0; i < DSA_MAX_PORTS; ++i) {
408 struct dsa_port *dp = &ds->ports[i];
409
410 if (dp && dp->ageing_time && dp->ageing_time < ageing_time)
411 ageing_time = dp->ageing_time;
412 }
413
414 return ageing_time;
415}
416
417static int dsa_slave_ageing_time(struct net_device *dev,
418 const struct switchdev_attr *attr,
419 struct switchdev_trans *trans)
420{
421 struct dsa_slave_priv *p = netdev_priv(dev);
422 struct dsa_switch *ds = p->parent;
423 unsigned long ageing_jiffies = clock_t_to_jiffies(attr->u.ageing_time);
424 unsigned int ageing_time = jiffies_to_msecs(ageing_jiffies);
425
426 /* bridge skips -EOPNOTSUPP, so skip the prepare phase */
427 if (switchdev_trans_ph_prepare(trans))
428 return 0;
429
430 /* Keep the fastest ageing time in case of multiple bridges */
431 ds->ports[p->port].ageing_time = ageing_time;
432 ageing_time = dsa_fastest_ageing_time(ds, ageing_time);
433
9d490b4e
VD
434 if (ds->ops->set_ageing_time)
435 return ds->ops->set_ageing_time(ds, ageing_time);
34a79f63
VD
436
437 return 0;
438}
439
35636062 440static int dsa_slave_port_attr_set(struct net_device *dev,
f7fadf30 441 const struct switchdev_attr *attr,
7ea6eb3f 442 struct switchdev_trans *trans)
35636062 443{
b8d866ac 444 int ret;
35636062
SF
445
446 switch (attr->id) {
1f868398 447 case SWITCHDEV_ATTR_ID_PORT_STP_STATE:
43c44a9f 448 ret = dsa_slave_stp_state_set(dev, attr, trans);
35636062 449 break;
fb2dabad
VD
450 case SWITCHDEV_ATTR_ID_BRIDGE_VLAN_FILTERING:
451 ret = dsa_slave_vlan_filtering(dev, attr, trans);
452 break;
34a79f63
VD
453 case SWITCHDEV_ATTR_ID_BRIDGE_AGEING_TIME:
454 ret = dsa_slave_ageing_time(dev, attr, trans);
455 break;
35636062
SF
456 default:
457 ret = -EOPNOTSUPP;
458 break;
459 }
460
461 return ret;
462}
463
ba14d9eb 464static int dsa_slave_port_obj_add(struct net_device *dev,
648b4a99 465 const struct switchdev_obj *obj,
7ea6eb3f 466 struct switchdev_trans *trans)
ba14d9eb
VD
467{
468 int err;
469
470 /* For the prepare phase, ensure the full set of changes is feasable in
471 * one go in order to signal a failure properly. If an operation is not
472 * supported, return -EOPNOTSUPP.
473 */
474
9e8f4a54 475 switch (obj->id) {
57d80838 476 case SWITCHDEV_OBJ_ID_PORT_FDB:
648b4a99
JP
477 err = dsa_slave_port_fdb_add(dev,
478 SWITCHDEV_OBJ_PORT_FDB(obj),
479 trans);
ba14d9eb 480 break;
8df30255
VD
481 case SWITCHDEV_OBJ_ID_PORT_MDB:
482 err = dsa_slave_port_mdb_add(dev, SWITCHDEV_OBJ_PORT_MDB(obj),
483 trans);
484 break;
57d80838 485 case SWITCHDEV_OBJ_ID_PORT_VLAN:
648b4a99
JP
486 err = dsa_slave_port_vlan_add(dev,
487 SWITCHDEV_OBJ_PORT_VLAN(obj),
488 trans);
11149536 489 break;
ba14d9eb
VD
490 default:
491 err = -EOPNOTSUPP;
492 break;
493 }
494
495 return err;
496}
497
498static int dsa_slave_port_obj_del(struct net_device *dev,
648b4a99 499 const struct switchdev_obj *obj)
ba14d9eb
VD
500{
501 int err;
502
9e8f4a54 503 switch (obj->id) {
57d80838 504 case SWITCHDEV_OBJ_ID_PORT_FDB:
648b4a99
JP
505 err = dsa_slave_port_fdb_del(dev,
506 SWITCHDEV_OBJ_PORT_FDB(obj));
ba14d9eb 507 break;
8df30255
VD
508 case SWITCHDEV_OBJ_ID_PORT_MDB:
509 err = dsa_slave_port_mdb_del(dev, SWITCHDEV_OBJ_PORT_MDB(obj));
510 break;
57d80838 511 case SWITCHDEV_OBJ_ID_PORT_VLAN:
648b4a99
JP
512 err = dsa_slave_port_vlan_del(dev,
513 SWITCHDEV_OBJ_PORT_VLAN(obj));
11149536 514 break;
ba14d9eb
VD
515 default:
516 err = -EOPNOTSUPP;
517 break;
518 }
519
520 return err;
521}
522
523static int dsa_slave_port_obj_dump(struct net_device *dev,
648b4a99
JP
524 struct switchdev_obj *obj,
525 switchdev_obj_dump_cb_t *cb)
ba14d9eb
VD
526{
527 int err;
528
9e8f4a54 529 switch (obj->id) {
57d80838 530 case SWITCHDEV_OBJ_ID_PORT_FDB:
648b4a99
JP
531 err = dsa_slave_port_fdb_dump(dev,
532 SWITCHDEV_OBJ_PORT_FDB(obj),
533 cb);
ba14d9eb 534 break;
8df30255
VD
535 case SWITCHDEV_OBJ_ID_PORT_MDB:
536 err = dsa_slave_port_mdb_dump(dev, SWITCHDEV_OBJ_PORT_MDB(obj),
537 cb);
538 break;
57d80838 539 case SWITCHDEV_OBJ_ID_PORT_VLAN:
648b4a99
JP
540 err = dsa_slave_port_vlan_dump(dev,
541 SWITCHDEV_OBJ_PORT_VLAN(obj),
542 cb);
11149536 543 break;
ba14d9eb
VD
544 default:
545 err = -EOPNOTSUPP;
546 break;
547 }
548
549 return err;
550}
551
b73adef6
FF
552static int dsa_slave_bridge_port_join(struct net_device *dev,
553 struct net_device *br)
554{
555 struct dsa_slave_priv *p = netdev_priv(dev);
556 struct dsa_switch *ds = p->parent;
557 int ret = -EOPNOTSUPP;
558
559 p->bridge_dev = br;
560
9d490b4e
VD
561 if (ds->ops->port_bridge_join)
562 ret = ds->ops->port_bridge_join(ds, p->port, br);
b73adef6 563
6debb68a 564 return ret == -EOPNOTSUPP ? 0 : ret;
b73adef6
FF
565}
566
16bfa702 567static void dsa_slave_bridge_port_leave(struct net_device *dev)
b73adef6
FF
568{
569 struct dsa_slave_priv *p = netdev_priv(dev);
570 struct dsa_switch *ds = p->parent;
b73adef6
FF
571
572
9d490b4e
VD
573 if (ds->ops->port_bridge_leave)
574 ds->ops->port_bridge_leave(ds, p->port);
b73adef6
FF
575
576 p->bridge_dev = NULL;
577
578 /* Port left the bridge, put in BR_STATE_DISABLED by the bridge layer,
579 * so allow it to be in BR_STATE_FORWARDING to be kept functional
580 */
4acfee81 581 dsa_port_set_stp_state(ds, p->port, BR_STATE_FORWARDING);
b73adef6
FF
582}
583
f8e20a9f
SF
584static int dsa_slave_port_attr_get(struct net_device *dev,
585 struct switchdev_attr *attr)
b73adef6
FF
586{
587 struct dsa_slave_priv *p = netdev_priv(dev);
588 struct dsa_switch *ds = p->parent;
589
f8e20a9f 590 switch (attr->id) {
1f868398 591 case SWITCHDEV_ATTR_ID_PORT_PARENT_ID:
42275bd8
SF
592 attr->u.ppid.id_len = sizeof(ds->index);
593 memcpy(&attr->u.ppid.id, &ds->index, attr->u.ppid.id_len);
f8e20a9f
SF
594 break;
595 default:
596 return -EOPNOTSUPP;
597 }
b73adef6
FF
598
599 return 0;
600}
601
04ff53f9
FF
602static inline netdev_tx_t dsa_netpoll_send_skb(struct dsa_slave_priv *p,
603 struct sk_buff *skb)
604{
605#ifdef CONFIG_NET_POLL_CONTROLLER
606 if (p->netpoll)
607 netpoll_send_skb(p->netpoll, skb);
608#else
609 BUG();
610#endif
611 return NETDEV_TX_OK;
612}
613
3e8a72d1
FF
614static netdev_tx_t dsa_slave_xmit(struct sk_buff *skb, struct net_device *dev)
615{
616 struct dsa_slave_priv *p = netdev_priv(dev);
4ed70ce9 617 struct sk_buff *nskb;
3e8a72d1 618
4ed70ce9
FF
619 dev->stats.tx_packets++;
620 dev->stats.tx_bytes += skb->len;
3e8a72d1 621
4ed70ce9
FF
622 /* Transmit function may have to reallocate the original SKB */
623 nskb = p->xmit(skb, dev);
624 if (!nskb)
625 return NETDEV_TX_OK;
5aed85ce 626
04ff53f9
FF
627 /* SKB for netpoll still need to be mangled with the protocol-specific
628 * tag to be successfully transmitted
629 */
630 if (unlikely(netpoll_tx_running(dev)))
631 return dsa_netpoll_send_skb(p, nskb);
632
4ed70ce9
FF
633 /* Queue the SKB for transmission on the parent interface, but
634 * do not modify its EtherType
635 */
636 nskb->dev = p->parent->dst->master_netdev;
637 dev_queue_xmit(nskb);
5aed85ce
FF
638
639 return NETDEV_TX_OK;
640}
641
91da11f8
LB
642/* ethtool operations *******************************************************/
643static int
644dsa_slave_get_settings(struct net_device *dev, struct ethtool_cmd *cmd)
645{
646 struct dsa_slave_priv *p = netdev_priv(dev);
647 int err;
648
649 err = -EOPNOTSUPP;
650 if (p->phy != NULL) {
651 err = phy_read_status(p->phy);
652 if (err == 0)
653 err = phy_ethtool_gset(p->phy, cmd);
654 }
655
656 return err;
657}
658
659static int
660dsa_slave_set_settings(struct net_device *dev, struct ethtool_cmd *cmd)
661{
662 struct dsa_slave_priv *p = netdev_priv(dev);
663
664 if (p->phy != NULL)
665 return phy_ethtool_sset(p->phy, cmd);
666
667 return -EOPNOTSUPP;
668}
669
670static void dsa_slave_get_drvinfo(struct net_device *dev,
671 struct ethtool_drvinfo *drvinfo)
672{
7826d43f
JP
673 strlcpy(drvinfo->driver, "dsa", sizeof(drvinfo->driver));
674 strlcpy(drvinfo->version, dsa_driver_version, sizeof(drvinfo->version));
675 strlcpy(drvinfo->fw_version, "N/A", sizeof(drvinfo->fw_version));
676 strlcpy(drvinfo->bus_info, "platform", sizeof(drvinfo->bus_info));
91da11f8
LB
677}
678
3d762a0f
GR
679static int dsa_slave_get_regs_len(struct net_device *dev)
680{
681 struct dsa_slave_priv *p = netdev_priv(dev);
682 struct dsa_switch *ds = p->parent;
683
9d490b4e
VD
684 if (ds->ops->get_regs_len)
685 return ds->ops->get_regs_len(ds, p->port);
3d762a0f
GR
686
687 return -EOPNOTSUPP;
688}
689
690static void
691dsa_slave_get_regs(struct net_device *dev, struct ethtool_regs *regs, void *_p)
692{
693 struct dsa_slave_priv *p = netdev_priv(dev);
694 struct dsa_switch *ds = p->parent;
695
9d490b4e
VD
696 if (ds->ops->get_regs)
697 ds->ops->get_regs(ds, p->port, regs, _p);
3d762a0f
GR
698}
699
91da11f8
LB
700static int dsa_slave_nway_reset(struct net_device *dev)
701{
702 struct dsa_slave_priv *p = netdev_priv(dev);
703
704 if (p->phy != NULL)
705 return genphy_restart_aneg(p->phy);
706
707 return -EOPNOTSUPP;
708}
709
710static u32 dsa_slave_get_link(struct net_device *dev)
711{
712 struct dsa_slave_priv *p = netdev_priv(dev);
713
714 if (p->phy != NULL) {
715 genphy_update_link(p->phy);
716 return p->phy->link;
717 }
718
719 return -EOPNOTSUPP;
720}
721
6793abb4
GR
722static int dsa_slave_get_eeprom_len(struct net_device *dev)
723{
724 struct dsa_slave_priv *p = netdev_priv(dev);
725 struct dsa_switch *ds = p->parent;
726
0e576044 727 if (ds->cd && ds->cd->eeprom_len)
ff04955c 728 return ds->cd->eeprom_len;
6793abb4 729
9d490b4e
VD
730 if (ds->ops->get_eeprom_len)
731 return ds->ops->get_eeprom_len(ds);
6793abb4
GR
732
733 return 0;
734}
735
736static int dsa_slave_get_eeprom(struct net_device *dev,
737 struct ethtool_eeprom *eeprom, u8 *data)
738{
739 struct dsa_slave_priv *p = netdev_priv(dev);
740 struct dsa_switch *ds = p->parent;
741
9d490b4e
VD
742 if (ds->ops->get_eeprom)
743 return ds->ops->get_eeprom(ds, eeprom, data);
6793abb4
GR
744
745 return -EOPNOTSUPP;
746}
747
748static int dsa_slave_set_eeprom(struct net_device *dev,
749 struct ethtool_eeprom *eeprom, u8 *data)
750{
751 struct dsa_slave_priv *p = netdev_priv(dev);
752 struct dsa_switch *ds = p->parent;
753
9d490b4e
VD
754 if (ds->ops->set_eeprom)
755 return ds->ops->set_eeprom(ds, eeprom, data);
6793abb4
GR
756
757 return -EOPNOTSUPP;
758}
759
91da11f8
LB
760static void dsa_slave_get_strings(struct net_device *dev,
761 uint32_t stringset, uint8_t *data)
762{
763 struct dsa_slave_priv *p = netdev_priv(dev);
764 struct dsa_switch *ds = p->parent;
765
766 if (stringset == ETH_SS_STATS) {
767 int len = ETH_GSTRING_LEN;
768
769 strncpy(data, "tx_packets", len);
770 strncpy(data + len, "tx_bytes", len);
771 strncpy(data + 2 * len, "rx_packets", len);
772 strncpy(data + 3 * len, "rx_bytes", len);
9d490b4e
VD
773 if (ds->ops->get_strings)
774 ds->ops->get_strings(ds, p->port, data + 4 * len);
91da11f8
LB
775 }
776}
777
badf3ada
FF
778static void dsa_cpu_port_get_ethtool_stats(struct net_device *dev,
779 struct ethtool_stats *stats,
780 uint64_t *data)
781{
782 struct dsa_switch_tree *dst = dev->dsa_ptr;
783 struct dsa_switch *ds = dst->ds[0];
784 s8 cpu_port = dst->cpu_port;
785 int count = 0;
786
787 if (dst->master_ethtool_ops.get_sset_count) {
788 count = dst->master_ethtool_ops.get_sset_count(dev,
789 ETH_SS_STATS);
790 dst->master_ethtool_ops.get_ethtool_stats(dev, stats, data);
791 }
792
9d490b4e
VD
793 if (ds->ops->get_ethtool_stats)
794 ds->ops->get_ethtool_stats(ds, cpu_port, data + count);
badf3ada
FF
795}
796
797static int dsa_cpu_port_get_sset_count(struct net_device *dev, int sset)
798{
799 struct dsa_switch_tree *dst = dev->dsa_ptr;
800 struct dsa_switch *ds = dst->ds[0];
801 int count = 0;
802
803 if (dst->master_ethtool_ops.get_sset_count)
804 count += dst->master_ethtool_ops.get_sset_count(dev, sset);
805
9d490b4e
VD
806 if (sset == ETH_SS_STATS && ds->ops->get_sset_count)
807 count += ds->ops->get_sset_count(ds);
badf3ada
FF
808
809 return count;
810}
811
812static void dsa_cpu_port_get_strings(struct net_device *dev,
813 uint32_t stringset, uint8_t *data)
814{
815 struct dsa_switch_tree *dst = dev->dsa_ptr;
816 struct dsa_switch *ds = dst->ds[0];
817 s8 cpu_port = dst->cpu_port;
818 int len = ETH_GSTRING_LEN;
819 int mcount = 0, count;
820 unsigned int i;
821 uint8_t pfx[4];
822 uint8_t *ndata;
823
824 snprintf(pfx, sizeof(pfx), "p%.2d", cpu_port);
825 /* We do not want to be NULL-terminated, since this is a prefix */
826 pfx[sizeof(pfx) - 1] = '_';
827
828 if (dst->master_ethtool_ops.get_sset_count) {
829 mcount = dst->master_ethtool_ops.get_sset_count(dev,
830 ETH_SS_STATS);
831 dst->master_ethtool_ops.get_strings(dev, stringset, data);
832 }
833
9d490b4e 834 if (stringset == ETH_SS_STATS && ds->ops->get_strings) {
badf3ada
FF
835 ndata = data + mcount * len;
836 /* This function copies ETH_GSTRINGS_LEN bytes, we will mangle
837 * the output after to prepend our CPU port prefix we
838 * constructed earlier
839 */
9d490b4e
VD
840 ds->ops->get_strings(ds, cpu_port, ndata);
841 count = ds->ops->get_sset_count(ds);
badf3ada
FF
842 for (i = 0; i < count; i++) {
843 memmove(ndata + (i * len + sizeof(pfx)),
844 ndata + i * len, len - sizeof(pfx));
845 memcpy(ndata + i * len, pfx, sizeof(pfx));
846 }
847 }
848}
849
91da11f8
LB
850static void dsa_slave_get_ethtool_stats(struct net_device *dev,
851 struct ethtool_stats *stats,
852 uint64_t *data)
853{
854 struct dsa_slave_priv *p = netdev_priv(dev);
855 struct dsa_switch *ds = p->parent;
856
46e7b8d8
VD
857 data[0] = dev->stats.tx_packets;
858 data[1] = dev->stats.tx_bytes;
859 data[2] = dev->stats.rx_packets;
860 data[3] = dev->stats.rx_bytes;
9d490b4e
VD
861 if (ds->ops->get_ethtool_stats)
862 ds->ops->get_ethtool_stats(ds, p->port, data + 4);
91da11f8
LB
863}
864
865static int dsa_slave_get_sset_count(struct net_device *dev, int sset)
866{
867 struct dsa_slave_priv *p = netdev_priv(dev);
868 struct dsa_switch *ds = p->parent;
869
870 if (sset == ETH_SS_STATS) {
871 int count;
872
873 count = 4;
9d490b4e
VD
874 if (ds->ops->get_sset_count)
875 count += ds->ops->get_sset_count(ds);
91da11f8
LB
876
877 return count;
878 }
879
880 return -EOPNOTSUPP;
881}
882
19e57c4e
FF
883static void dsa_slave_get_wol(struct net_device *dev, struct ethtool_wolinfo *w)
884{
885 struct dsa_slave_priv *p = netdev_priv(dev);
886 struct dsa_switch *ds = p->parent;
887
9d490b4e
VD
888 if (ds->ops->get_wol)
889 ds->ops->get_wol(ds, p->port, w);
19e57c4e
FF
890}
891
892static int dsa_slave_set_wol(struct net_device *dev, struct ethtool_wolinfo *w)
893{
894 struct dsa_slave_priv *p = netdev_priv(dev);
895 struct dsa_switch *ds = p->parent;
896 int ret = -EOPNOTSUPP;
897
9d490b4e
VD
898 if (ds->ops->set_wol)
899 ret = ds->ops->set_wol(ds, p->port, w);
19e57c4e
FF
900
901 return ret;
902}
903
7905288f
FF
904static int dsa_slave_set_eee(struct net_device *dev, struct ethtool_eee *e)
905{
906 struct dsa_slave_priv *p = netdev_priv(dev);
907 struct dsa_switch *ds = p->parent;
908 int ret;
909
9d490b4e 910 if (!ds->ops->set_eee)
7905288f
FF
911 return -EOPNOTSUPP;
912
9d490b4e 913 ret = ds->ops->set_eee(ds, p->port, p->phy, e);
7905288f
FF
914 if (ret)
915 return ret;
916
917 if (p->phy)
918 ret = phy_ethtool_set_eee(p->phy, e);
919
920 return ret;
921}
922
923static int dsa_slave_get_eee(struct net_device *dev, struct ethtool_eee *e)
924{
925 struct dsa_slave_priv *p = netdev_priv(dev);
926 struct dsa_switch *ds = p->parent;
927 int ret;
928
9d490b4e 929 if (!ds->ops->get_eee)
7905288f
FF
930 return -EOPNOTSUPP;
931
9d490b4e 932 ret = ds->ops->get_eee(ds, p->port, e);
7905288f
FF
933 if (ret)
934 return ret;
935
936 if (p->phy)
937 ret = phy_ethtool_get_eee(p->phy, e);
938
939 return ret;
940}
941
04ff53f9
FF
942#ifdef CONFIG_NET_POLL_CONTROLLER
943static int dsa_slave_netpoll_setup(struct net_device *dev,
944 struct netpoll_info *ni)
945{
946 struct dsa_slave_priv *p = netdev_priv(dev);
947 struct dsa_switch *ds = p->parent;
948 struct net_device *master = ds->dst->master_netdev;
949 struct netpoll *netpoll;
950 int err = 0;
951
952 netpoll = kzalloc(sizeof(*netpoll), GFP_KERNEL);
953 if (!netpoll)
954 return -ENOMEM;
955
956 err = __netpoll_setup(netpoll, master);
957 if (err) {
958 kfree(netpoll);
959 goto out;
960 }
961
962 p->netpoll = netpoll;
963out:
964 return err;
965}
966
967static void dsa_slave_netpoll_cleanup(struct net_device *dev)
968{
969 struct dsa_slave_priv *p = netdev_priv(dev);
970 struct netpoll *netpoll = p->netpoll;
971
972 if (!netpoll)
973 return;
974
975 p->netpoll = NULL;
976
977 __netpoll_free_async(netpoll);
978}
979
980static void dsa_slave_poll_controller(struct net_device *dev)
981{
982}
983#endif
984
af42192c
FF
985void dsa_cpu_port_ethtool_init(struct ethtool_ops *ops)
986{
987 ops->get_sset_count = dsa_cpu_port_get_sset_count;
988 ops->get_ethtool_stats = dsa_cpu_port_get_ethtool_stats;
989 ops->get_strings = dsa_cpu_port_get_strings;
990}
991
91da11f8
LB
992static const struct ethtool_ops dsa_slave_ethtool_ops = {
993 .get_settings = dsa_slave_get_settings,
994 .set_settings = dsa_slave_set_settings,
995 .get_drvinfo = dsa_slave_get_drvinfo,
3d762a0f
GR
996 .get_regs_len = dsa_slave_get_regs_len,
997 .get_regs = dsa_slave_get_regs,
91da11f8
LB
998 .nway_reset = dsa_slave_nway_reset,
999 .get_link = dsa_slave_get_link,
6793abb4
GR
1000 .get_eeprom_len = dsa_slave_get_eeprom_len,
1001 .get_eeprom = dsa_slave_get_eeprom,
1002 .set_eeprom = dsa_slave_set_eeprom,
91da11f8
LB
1003 .get_strings = dsa_slave_get_strings,
1004 .get_ethtool_stats = dsa_slave_get_ethtool_stats,
1005 .get_sset_count = dsa_slave_get_sset_count,
19e57c4e
FF
1006 .set_wol = dsa_slave_set_wol,
1007 .get_wol = dsa_slave_get_wol,
7905288f
FF
1008 .set_eee = dsa_slave_set_eee,
1009 .get_eee = dsa_slave_get_eee,
91da11f8
LB
1010};
1011
3e8a72d1 1012static const struct net_device_ops dsa_slave_netdev_ops = {
d442ad4a
SH
1013 .ndo_open = dsa_slave_open,
1014 .ndo_stop = dsa_slave_close,
3e8a72d1 1015 .ndo_start_xmit = dsa_slave_xmit,
d442ad4a
SH
1016 .ndo_change_rx_flags = dsa_slave_change_rx_flags,
1017 .ndo_set_rx_mode = dsa_slave_set_rx_mode,
d442ad4a 1018 .ndo_set_mac_address = dsa_slave_set_mac_address,
ba14d9eb
VD
1019 .ndo_fdb_add = switchdev_port_fdb_add,
1020 .ndo_fdb_del = switchdev_port_fdb_del,
1021 .ndo_fdb_dump = switchdev_port_fdb_dump,
d442ad4a 1022 .ndo_do_ioctl = dsa_slave_ioctl,
abd2be00 1023 .ndo_get_iflink = dsa_slave_get_iflink,
04ff53f9
FF
1024#ifdef CONFIG_NET_POLL_CONTROLLER
1025 .ndo_netpoll_setup = dsa_slave_netpoll_setup,
1026 .ndo_netpoll_cleanup = dsa_slave_netpoll_cleanup,
1027 .ndo_poll_controller = dsa_slave_poll_controller,
1028#endif
11149536
VD
1029 .ndo_bridge_getlink = switchdev_port_bridge_getlink,
1030 .ndo_bridge_setlink = switchdev_port_bridge_setlink,
1031 .ndo_bridge_dellink = switchdev_port_bridge_dellink,
98237d43
SF
1032};
1033
9d47c0a2 1034static const struct switchdev_ops dsa_slave_switchdev_ops = {
f8e20a9f 1035 .switchdev_port_attr_get = dsa_slave_port_attr_get,
35636062 1036 .switchdev_port_attr_set = dsa_slave_port_attr_set,
ba14d9eb
VD
1037 .switchdev_port_obj_add = dsa_slave_port_obj_add,
1038 .switchdev_port_obj_del = dsa_slave_port_obj_del,
1039 .switchdev_port_obj_dump = dsa_slave_port_obj_dump,
d442ad4a 1040};
91da11f8 1041
f37db85d
FF
1042static struct device_type dsa_type = {
1043 .name = "dsa",
1044};
1045
0d8bcdd3
FF
1046static void dsa_slave_adjust_link(struct net_device *dev)
1047{
1048 struct dsa_slave_priv *p = netdev_priv(dev);
ec9436ba 1049 struct dsa_switch *ds = p->parent;
0d8bcdd3
FF
1050 unsigned int status_changed = 0;
1051
1052 if (p->old_link != p->phy->link) {
1053 status_changed = 1;
1054 p->old_link = p->phy->link;
1055 }
1056
1057 if (p->old_duplex != p->phy->duplex) {
1058 status_changed = 1;
1059 p->old_duplex = p->phy->duplex;
1060 }
1061
1062 if (p->old_pause != p->phy->pause) {
1063 status_changed = 1;
1064 p->old_pause = p->phy->pause;
1065 }
1066
9d490b4e
VD
1067 if (ds->ops->adjust_link && status_changed)
1068 ds->ops->adjust_link(ds, p->port, p->phy);
ec9436ba 1069
0d8bcdd3
FF
1070 if (status_changed)
1071 phy_print_status(p->phy);
1072}
1073
ce31b31c
FF
1074static int dsa_slave_fixed_link_update(struct net_device *dev,
1075 struct fixed_phy_status *status)
1076{
b71be352
AL
1077 struct dsa_slave_priv *p;
1078 struct dsa_switch *ds;
1079
1080 if (dev) {
1081 p = netdev_priv(dev);
1082 ds = p->parent;
9d490b4e
VD
1083 if (ds->ops->fixed_link_update)
1084 ds->ops->fixed_link_update(ds, p->port, status);
b71be352 1085 }
ce31b31c
FF
1086
1087 return 0;
1088}
1089
91da11f8 1090/* slave device setup *******************************************************/
c305c165 1091static int dsa_slave_phy_connect(struct dsa_slave_priv *p,
cd28a1a9
FF
1092 struct net_device *slave_dev,
1093 int addr)
c305c165
FF
1094{
1095 struct dsa_switch *ds = p->parent;
1096
7f854420 1097 p->phy = mdiobus_get_phy(ds->slave_mii_bus, addr);
d25b8e74
RK
1098 if (!p->phy) {
1099 netdev_err(slave_dev, "no phy at %d\n", addr);
c305c165 1100 return -ENODEV;
d25b8e74 1101 }
c305c165
FF
1102
1103 /* Use already configured phy mode */
211c504a
FF
1104 if (p->phy_interface == PHY_INTERFACE_MODE_NA)
1105 p->phy_interface = p->phy->interface;
c305c165
FF
1106 phy_connect_direct(slave_dev, p->phy, dsa_slave_adjust_link,
1107 p->phy_interface);
1108
1109 return 0;
1110}
1111
9697f1cd 1112static int dsa_slave_phy_setup(struct dsa_slave_priv *p,
0d8bcdd3
FF
1113 struct net_device *slave_dev)
1114{
1115 struct dsa_switch *ds = p->parent;
0d8bcdd3 1116 struct device_node *phy_dn, *port_dn;
ce31b31c 1117 bool phy_is_fixed = false;
6819563e 1118 u32 phy_flags = 0;
19334920 1119 int mode, ret;
0d8bcdd3 1120
189b0d93 1121 port_dn = ds->ports[p->port].dn;
19334920
GR
1122 mode = of_get_phy_mode(port_dn);
1123 if (mode < 0)
1124 mode = PHY_INTERFACE_MODE_NA;
1125 p->phy_interface = mode;
0d8bcdd3
FF
1126
1127 phy_dn = of_parse_phandle(port_dn, "phy-handle", 0);
1128 if (of_phy_is_fixed_link(port_dn)) {
1129 /* In the case of a fixed PHY, the DT node associated
1130 * to the fixed PHY is the Port DT node
1131 */
1132 ret = of_phy_register_fixed_link(port_dn);
1133 if (ret) {
d25b8e74 1134 netdev_err(slave_dev, "failed to register fixed PHY: %d\n", ret);
9697f1cd 1135 return ret;
0d8bcdd3 1136 }
ce31b31c 1137 phy_is_fixed = true;
0d8bcdd3
FF
1138 phy_dn = port_dn;
1139 }
1140
9d490b4e
VD
1141 if (ds->ops->get_phy_flags)
1142 phy_flags = ds->ops->get_phy_flags(ds, p->port);
6819563e 1143
cd28a1a9 1144 if (phy_dn) {
d25b8e74
RK
1145 int phy_id = of_mdio_parse_addr(&slave_dev->dev, phy_dn);
1146
cd28a1a9
FF
1147 /* If this PHY address is part of phys_mii_mask, which means
1148 * that we need to divert reads and writes to/from it, then we
1149 * want to bind this device using the slave MII bus created by
1150 * DSA to make that happen.
1151 */
d25b8e74
RK
1152 if (!phy_is_fixed && phy_id >= 0 &&
1153 (ds->phys_mii_mask & (1 << phy_id))) {
1154 ret = dsa_slave_phy_connect(p, slave_dev, phy_id);
1155 if (ret) {
1156 netdev_err(slave_dev, "failed to connect to phy%d: %d\n", phy_id, ret);
cd28a1a9 1157 return ret;
d25b8e74 1158 }
cd28a1a9
FF
1159 } else {
1160 p->phy = of_phy_connect(slave_dev, phy_dn,
1161 dsa_slave_adjust_link,
1162 phy_flags,
1163 p->phy_interface);
1164 }
1165 }
0d8bcdd3 1166
ce31b31c
FF
1167 if (p->phy && phy_is_fixed)
1168 fixed_phy_set_link_update(p->phy, dsa_slave_fixed_link_update);
1169
0d8bcdd3
FF
1170 /* We could not connect to a designated PHY, so use the switch internal
1171 * MDIO bus instead
1172 */
b31f65fb 1173 if (!p->phy) {
cd28a1a9 1174 ret = dsa_slave_phy_connect(p, slave_dev, p->port);
d25b8e74
RK
1175 if (ret) {
1176 netdev_err(slave_dev, "failed to connect to port %d: %d\n", p->port, ret);
c305c165 1177 return ret;
d25b8e74 1178 }
b31f65fb 1179 }
9697f1cd 1180
2220943a
AL
1181 phy_attached_info(p->phy);
1182
9697f1cd 1183 return 0;
0d8bcdd3
FF
1184}
1185
448b4482
AL
1186static struct lock_class_key dsa_slave_netdev_xmit_lock_key;
1187static void dsa_slave_set_lockdep_class_one(struct net_device *dev,
1188 struct netdev_queue *txq,
1189 void *_unused)
1190{
1191 lockdep_set_class(&txq->_xmit_lock,
1192 &dsa_slave_netdev_xmit_lock_key);
1193}
1194
24462549
FF
1195int dsa_slave_suspend(struct net_device *slave_dev)
1196{
1197 struct dsa_slave_priv *p = netdev_priv(slave_dev);
1198
24462549
FF
1199 if (p->phy) {
1200 phy_stop(p->phy);
1201 p->old_pause = -1;
1202 p->old_link = -1;
1203 p->old_duplex = -1;
1204 phy_suspend(p->phy);
1205 }
1206
1207 return 0;
1208}
1209
1210int dsa_slave_resume(struct net_device *slave_dev)
1211{
1212 struct dsa_slave_priv *p = netdev_priv(slave_dev);
1213
1214 netif_device_attach(slave_dev);
1215
1216 if (p->phy) {
1217 phy_resume(p->phy);
1218 phy_start(p->phy);
1219 }
1220
1221 return 0;
1222}
1223
d87d6f44 1224int dsa_slave_create(struct dsa_switch *ds, struct device *parent,
83c0afae 1225 int port, const char *name)
91da11f8 1226{
badf3ada 1227 struct dsa_switch_tree *dst = ds->dst;
83c0afae 1228 struct net_device *master;
91da11f8
LB
1229 struct net_device *slave_dev;
1230 struct dsa_slave_priv *p;
1231 int ret;
1232
83c0afae
AL
1233 master = ds->dst->master_netdev;
1234 if (ds->master_netdev)
1235 master = ds->master_netdev;
1236
c835a677
TG
1237 slave_dev = alloc_netdev(sizeof(struct dsa_slave_priv), name,
1238 NET_NAME_UNKNOWN, ether_setup);
91da11f8 1239 if (slave_dev == NULL)
d87d6f44 1240 return -ENOMEM;
91da11f8
LB
1241
1242 slave_dev->features = master->vlan_features;
7ad24ea4 1243 slave_dev->ethtool_ops = &dsa_slave_ethtool_ops;
2fcc8005 1244 eth_hw_addr_inherit(slave_dev, master);
0a5f107b 1245 slave_dev->priv_flags |= IFF_NO_QUEUE;
3e8a72d1 1246 slave_dev->netdev_ops = &dsa_slave_netdev_ops;
9d47c0a2 1247 slave_dev->switchdev_ops = &dsa_slave_switchdev_ops;
f37db85d 1248 SET_NETDEV_DEVTYPE(slave_dev, &dsa_type);
d442ad4a 1249
448b4482
AL
1250 netdev_for_each_tx_queue(slave_dev, dsa_slave_set_lockdep_class_one,
1251 NULL);
1252
5075314e 1253 SET_NETDEV_DEV(slave_dev, parent);
189b0d93 1254 slave_dev->dev.of_node = ds->ports[port].dn;
5075314e
AD
1255 slave_dev->vlan_features = master->vlan_features;
1256
1257 p = netdev_priv(slave_dev);
5075314e
AD
1258 p->parent = ds;
1259 p->port = port;
39a7f2a4 1260 p->xmit = dst->tag_ops->xmit;
d442ad4a 1261
0d8bcdd3
FF
1262 p->old_pause = -1;
1263 p->old_link = -1;
1264 p->old_duplex = -1;
1265
c8b09808 1266 ds->ports[port].netdev = slave_dev;
91da11f8
LB
1267 ret = register_netdev(slave_dev);
1268 if (ret) {
a2ae6007
JP
1269 netdev_err(master, "error %d registering interface %s\n",
1270 ret, slave_dev->name);
c8b09808 1271 ds->ports[port].netdev = NULL;
91da11f8 1272 free_netdev(slave_dev);
d87d6f44 1273 return ret;
91da11f8
LB
1274 }
1275
1276 netif_carrier_off(slave_dev);
1277
0071f56e
AL
1278 ret = dsa_slave_phy_setup(p, slave_dev);
1279 if (ret) {
1280 netdev_err(master, "error %d setting up slave phy\n", ret);
73dcb556 1281 unregister_netdev(slave_dev);
0071f56e
AL
1282 free_netdev(slave_dev);
1283 return ret;
1284 }
1285
d87d6f44 1286 return 0;
91da11f8 1287}
b73adef6 1288
cda5c15b
NA
1289void dsa_slave_destroy(struct net_device *slave_dev)
1290{
1291 struct dsa_slave_priv *p = netdev_priv(slave_dev);
1292
1293 netif_carrier_off(slave_dev);
1294 if (p->phy)
1295 phy_disconnect(p->phy);
1296 unregister_netdev(slave_dev);
1297 free_netdev(slave_dev);
1298}
1299
b73adef6
FF
1300static bool dsa_slave_dev_check(struct net_device *dev)
1301{
1302 return dev->netdev_ops == &dsa_slave_netdev_ops;
1303}
1304
6debb68a
VD
1305static int dsa_slave_port_upper_event(struct net_device *dev,
1306 unsigned long event, void *ptr)
b73adef6 1307{
6debb68a
VD
1308 struct netdev_notifier_changeupper_info *info = ptr;
1309 struct net_device *upper = info->upper_dev;
b73adef6
FF
1310 int err = 0;
1311
6debb68a
VD
1312 switch (event) {
1313 case NETDEV_CHANGEUPPER:
1314 if (netif_is_bridge_master(upper)) {
1315 if (info->linking)
1316 err = dsa_slave_bridge_port_join(dev, upper);
1317 else
1318 dsa_slave_bridge_port_leave(dev);
1319 }
b73adef6 1320
6debb68a
VD
1321 break;
1322 }
1323
1324 return notifier_from_errno(err);
b73adef6
FF
1325}
1326
6debb68a
VD
1327static int dsa_slave_port_event(struct net_device *dev, unsigned long event,
1328 void *ptr)
b73adef6 1329{
b73adef6
FF
1330 switch (event) {
1331 case NETDEV_CHANGEUPPER:
6debb68a
VD
1332 return dsa_slave_port_upper_event(dev, event, ptr);
1333 }
b73adef6 1334
6debb68a
VD
1335 return NOTIFY_DONE;
1336}
b73adef6 1337
6debb68a
VD
1338int dsa_slave_netdevice_event(struct notifier_block *unused,
1339 unsigned long event, void *ptr)
1340{
1341 struct net_device *dev = netdev_notifier_info_to_dev(ptr);
1342
1343 if (dsa_slave_dev_check(dev))
1344 return dsa_slave_port_event(dev, event, ptr);
b73adef6 1345
b73adef6
FF
1346 return NOTIFY_DONE;
1347}