blob: 4392e983abda87d1d9eea3df8343c64b533f6cfe [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>
Lennert Buytenhek91da11f2008-10-07 13:44:02 +000013#include <linux/phy.h>
Florian Fainelli0d8bcdd2014-08-27 17:04:51 -070014#include <linux/of_net.h>
15#include <linux/of_mdio.h>
Lennert Buytenhek91da11f2008-10-07 13:44:02 +000016#include "dsa_priv.h"
17
18/* slave mii_bus handling ***************************************************/
19static int dsa_slave_phy_read(struct mii_bus *bus, int addr, int reg)
20{
21 struct dsa_switch *ds = bus->priv;
22
Florian Fainelli0d8bcdd2014-08-27 17:04:51 -070023 if (ds->phys_mii_mask & (1 << addr))
Lennert Buytenhek91da11f2008-10-07 13:44:02 +000024 return ds->drv->phy_read(ds, addr, reg);
25
26 return 0xffff;
27}
28
29static int dsa_slave_phy_write(struct mii_bus *bus, int addr, int reg, u16 val)
30{
31 struct dsa_switch *ds = bus->priv;
32
Florian Fainelli0d8bcdd2014-08-27 17:04:51 -070033 if (ds->phys_mii_mask & (1 << addr))
Lennert Buytenhek91da11f2008-10-07 13:44:02 +000034 return ds->drv->phy_write(ds, addr, reg, val);
35
36 return 0;
37}
38
39void dsa_slave_mii_bus_init(struct dsa_switch *ds)
40{
41 ds->slave_mii_bus->priv = (void *)ds;
42 ds->slave_mii_bus->name = "dsa slave smi";
43 ds->slave_mii_bus->read = dsa_slave_phy_read;
44 ds->slave_mii_bus->write = dsa_slave_phy_write;
Florian Fainellif490be02013-01-21 09:58:50 +000045 snprintf(ds->slave_mii_bus->id, MII_BUS_ID_SIZE, "dsa-%d:%.2x",
46 ds->index, ds->pd->sw_addr);
Alexander Duyckb4d23942014-09-15 13:00:27 -040047 ds->slave_mii_bus->parent = ds->master_dev;
Lennert Buytenhek91da11f2008-10-07 13:44:02 +000048}
49
50
51/* slave device handling ****************************************************/
Lennert Buytenhekc0840802009-03-20 09:49:49 +000052static int dsa_slave_init(struct net_device *dev)
53{
54 struct dsa_slave_priv *p = netdev_priv(dev);
Lennert Buytenhekc0840802009-03-20 09:49:49 +000055
Lennert Buytenheke84665c2009-03-20 09:52:09 +000056 dev->iflink = p->parent->dst->master_netdev->ifindex;
Lennert Buytenhekc0840802009-03-20 09:49:49 +000057
58 return 0;
59}
60
Lennert Buytenhek91da11f2008-10-07 13:44:02 +000061static int dsa_slave_open(struct net_device *dev)
62{
Lennert Buytenhekdf02c6f2008-11-10 21:53:12 -080063 struct dsa_slave_priv *p = netdev_priv(dev);
Lennert Buytenheke84665c2009-03-20 09:52:09 +000064 struct net_device *master = p->parent->dst->master_netdev;
Lennert Buytenhekdf02c6f2008-11-10 21:53:12 -080065 int err;
66
67 if (!(master->flags & IFF_UP))
68 return -ENETDOWN;
69
Joe Perches8feedbb2012-05-08 18:56:57 +000070 if (!ether_addr_equal(dev->dev_addr, master->dev_addr)) {
Jiri Pirkoa748ee22010-04-01 21:22:09 +000071 err = dev_uc_add(master, dev->dev_addr);
Lennert Buytenhekdf02c6f2008-11-10 21:53:12 -080072 if (err < 0)
73 goto out;
74 }
75
76 if (dev->flags & IFF_ALLMULTI) {
77 err = dev_set_allmulti(master, 1);
78 if (err < 0)
79 goto del_unicast;
80 }
81 if (dev->flags & IFF_PROMISC) {
82 err = dev_set_promiscuity(master, 1);
83 if (err < 0)
84 goto clear_allmulti;
85 }
86
Florian Fainellif7f1de52014-09-24 17:05:17 -070087 if (p->phy)
88 phy_start(p->phy);
89
Lennert Buytenhek91da11f2008-10-07 13:44:02 +000090 return 0;
Lennert Buytenhekdf02c6f2008-11-10 21:53:12 -080091
92clear_allmulti:
93 if (dev->flags & IFF_ALLMULTI)
94 dev_set_allmulti(master, -1);
95del_unicast:
Joe Perches8feedbb2012-05-08 18:56:57 +000096 if (!ether_addr_equal(dev->dev_addr, master->dev_addr))
Jiri Pirkoa748ee22010-04-01 21:22:09 +000097 dev_uc_del(master, dev->dev_addr);
Lennert Buytenhekdf02c6f2008-11-10 21:53:12 -080098out:
99 return err;
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000100}
101
102static int dsa_slave_close(struct net_device *dev)
103{
Lennert Buytenhekdf02c6f2008-11-10 21:53:12 -0800104 struct dsa_slave_priv *p = netdev_priv(dev);
Lennert Buytenheke84665c2009-03-20 09:52:09 +0000105 struct net_device *master = p->parent->dst->master_netdev;
Lennert Buytenhekdf02c6f2008-11-10 21:53:12 -0800106
Florian Fainellif7f1de52014-09-24 17:05:17 -0700107 if (p->phy)
108 phy_stop(p->phy);
109
Lennert Buytenhekdf02c6f2008-11-10 21:53:12 -0800110 dev_mc_unsync(master, dev);
Jiri Pirkoa748ee22010-04-01 21:22:09 +0000111 dev_uc_unsync(master, dev);
Lennert Buytenhekdf02c6f2008-11-10 21:53:12 -0800112 if (dev->flags & IFF_ALLMULTI)
113 dev_set_allmulti(master, -1);
114 if (dev->flags & IFF_PROMISC)
115 dev_set_promiscuity(master, -1);
116
Joe Perches8feedbb2012-05-08 18:56:57 +0000117 if (!ether_addr_equal(dev->dev_addr, master->dev_addr))
Jiri Pirkoa748ee22010-04-01 21:22:09 +0000118 dev_uc_del(master, dev->dev_addr);
Lennert Buytenhekdf02c6f2008-11-10 21:53:12 -0800119
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000120 return 0;
121}
122
123static void dsa_slave_change_rx_flags(struct net_device *dev, int change)
124{
125 struct dsa_slave_priv *p = netdev_priv(dev);
Lennert Buytenheke84665c2009-03-20 09:52:09 +0000126 struct net_device *master = p->parent->dst->master_netdev;
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000127
128 if (change & IFF_ALLMULTI)
129 dev_set_allmulti(master, dev->flags & IFF_ALLMULTI ? 1 : -1);
130 if (change & IFF_PROMISC)
131 dev_set_promiscuity(master, dev->flags & IFF_PROMISC ? 1 : -1);
132}
133
134static void dsa_slave_set_rx_mode(struct net_device *dev)
135{
136 struct dsa_slave_priv *p = netdev_priv(dev);
Lennert Buytenheke84665c2009-03-20 09:52:09 +0000137 struct net_device *master = p->parent->dst->master_netdev;
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000138
139 dev_mc_sync(master, dev);
Jiri Pirkoa748ee22010-04-01 21:22:09 +0000140 dev_uc_sync(master, dev);
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000141}
142
Lennert Buytenhekdf02c6f2008-11-10 21:53:12 -0800143static int dsa_slave_set_mac_address(struct net_device *dev, void *a)
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000144{
Lennert Buytenhekdf02c6f2008-11-10 21:53:12 -0800145 struct dsa_slave_priv *p = netdev_priv(dev);
Lennert Buytenheke84665c2009-03-20 09:52:09 +0000146 struct net_device *master = p->parent->dst->master_netdev;
Lennert Buytenhekdf02c6f2008-11-10 21:53:12 -0800147 struct sockaddr *addr = a;
148 int err;
149
150 if (!is_valid_ether_addr(addr->sa_data))
151 return -EADDRNOTAVAIL;
152
153 if (!(dev->flags & IFF_UP))
154 goto out;
155
Joe Perches8feedbb2012-05-08 18:56:57 +0000156 if (!ether_addr_equal(addr->sa_data, master->dev_addr)) {
Jiri Pirkoa748ee22010-04-01 21:22:09 +0000157 err = dev_uc_add(master, addr->sa_data);
Lennert Buytenhekdf02c6f2008-11-10 21:53:12 -0800158 if (err < 0)
159 return err;
160 }
161
Joe Perches8feedbb2012-05-08 18:56:57 +0000162 if (!ether_addr_equal(dev->dev_addr, master->dev_addr))
Jiri Pirkoa748ee22010-04-01 21:22:09 +0000163 dev_uc_del(master, dev->dev_addr);
Lennert Buytenhekdf02c6f2008-11-10 21:53:12 -0800164
165out:
Joe Perchesd08f1612014-01-20 09:52:20 -0800166 ether_addr_copy(dev->dev_addr, addr->sa_data);
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000167
168 return 0;
169}
170
171static int dsa_slave_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
172{
173 struct dsa_slave_priv *p = netdev_priv(dev);
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000174
175 if (p->phy != NULL)
Richard Cochran28b04112010-07-17 08:48:55 +0000176 return phy_mii_ioctl(p->phy, ifr, cmd);
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000177
178 return -EOPNOTSUPP;
179}
180
Florian Fainelli3e8a72d2014-08-27 17:04:46 -0700181static netdev_tx_t dsa_slave_xmit(struct sk_buff *skb, struct net_device *dev)
182{
183 struct dsa_slave_priv *p = netdev_priv(dev);
Florian Fainelli3e8a72d2014-08-27 17:04:46 -0700184
Alexander Duyck50753142014-09-15 13:00:19 -0400185 return p->xmit(skb, dev);
Florian Fainelli3e8a72d2014-08-27 17:04:46 -0700186}
187
Florian Fainelli5aed85c2014-08-27 17:04:52 -0700188static netdev_tx_t dsa_slave_notag_xmit(struct sk_buff *skb,
189 struct net_device *dev)
190{
191 struct dsa_slave_priv *p = netdev_priv(dev);
192
193 skb->dev = p->parent->dst->master_netdev;
194 dev_queue_xmit(skb);
195
196 return NETDEV_TX_OK;
197}
198
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000199
200/* ethtool operations *******************************************************/
201static int
202dsa_slave_get_settings(struct net_device *dev, struct ethtool_cmd *cmd)
203{
204 struct dsa_slave_priv *p = netdev_priv(dev);
205 int err;
206
207 err = -EOPNOTSUPP;
208 if (p->phy != NULL) {
209 err = phy_read_status(p->phy);
210 if (err == 0)
211 err = phy_ethtool_gset(p->phy, cmd);
212 }
213
214 return err;
215}
216
217static int
218dsa_slave_set_settings(struct net_device *dev, struct ethtool_cmd *cmd)
219{
220 struct dsa_slave_priv *p = netdev_priv(dev);
221
222 if (p->phy != NULL)
223 return phy_ethtool_sset(p->phy, cmd);
224
225 return -EOPNOTSUPP;
226}
227
228static void dsa_slave_get_drvinfo(struct net_device *dev,
229 struct ethtool_drvinfo *drvinfo)
230{
Jiri Pirko7826d432013-01-06 00:44:26 +0000231 strlcpy(drvinfo->driver, "dsa", sizeof(drvinfo->driver));
232 strlcpy(drvinfo->version, dsa_driver_version, sizeof(drvinfo->version));
233 strlcpy(drvinfo->fw_version, "N/A", sizeof(drvinfo->fw_version));
234 strlcpy(drvinfo->bus_info, "platform", sizeof(drvinfo->bus_info));
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000235}
236
237static int dsa_slave_nway_reset(struct net_device *dev)
238{
239 struct dsa_slave_priv *p = netdev_priv(dev);
240
241 if (p->phy != NULL)
242 return genphy_restart_aneg(p->phy);
243
244 return -EOPNOTSUPP;
245}
246
247static u32 dsa_slave_get_link(struct net_device *dev)
248{
249 struct dsa_slave_priv *p = netdev_priv(dev);
250
251 if (p->phy != NULL) {
252 genphy_update_link(p->phy);
253 return p->phy->link;
254 }
255
256 return -EOPNOTSUPP;
257}
258
259static void dsa_slave_get_strings(struct net_device *dev,
260 uint32_t stringset, uint8_t *data)
261{
262 struct dsa_slave_priv *p = netdev_priv(dev);
263 struct dsa_switch *ds = p->parent;
264
265 if (stringset == ETH_SS_STATS) {
266 int len = ETH_GSTRING_LEN;
267
268 strncpy(data, "tx_packets", len);
269 strncpy(data + len, "tx_bytes", len);
270 strncpy(data + 2 * len, "rx_packets", len);
271 strncpy(data + 3 * len, "rx_bytes", len);
272 if (ds->drv->get_strings != NULL)
273 ds->drv->get_strings(ds, p->port, data + 4 * len);
274 }
275}
276
277static void dsa_slave_get_ethtool_stats(struct net_device *dev,
278 struct ethtool_stats *stats,
279 uint64_t *data)
280{
281 struct dsa_slave_priv *p = netdev_priv(dev);
282 struct dsa_switch *ds = p->parent;
283
284 data[0] = p->dev->stats.tx_packets;
285 data[1] = p->dev->stats.tx_bytes;
286 data[2] = p->dev->stats.rx_packets;
287 data[3] = p->dev->stats.rx_bytes;
288 if (ds->drv->get_ethtool_stats != NULL)
289 ds->drv->get_ethtool_stats(ds, p->port, data + 4);
290}
291
292static int dsa_slave_get_sset_count(struct net_device *dev, int sset)
293{
294 struct dsa_slave_priv *p = netdev_priv(dev);
295 struct dsa_switch *ds = p->parent;
296
297 if (sset == ETH_SS_STATS) {
298 int count;
299
300 count = 4;
301 if (ds->drv->get_sset_count != NULL)
302 count += ds->drv->get_sset_count(ds);
303
304 return count;
305 }
306
307 return -EOPNOTSUPP;
308}
309
Florian Fainelli19e57c42014-09-18 17:31:24 -0700310static void dsa_slave_get_wol(struct net_device *dev, struct ethtool_wolinfo *w)
311{
312 struct dsa_slave_priv *p = netdev_priv(dev);
313 struct dsa_switch *ds = p->parent;
314
315 if (ds->drv->get_wol)
316 ds->drv->get_wol(ds, p->port, w);
317}
318
319static int dsa_slave_set_wol(struct net_device *dev, struct ethtool_wolinfo *w)
320{
321 struct dsa_slave_priv *p = netdev_priv(dev);
322 struct dsa_switch *ds = p->parent;
323 int ret = -EOPNOTSUPP;
324
325 if (ds->drv->set_wol)
326 ret = ds->drv->set_wol(ds, p->port, w);
327
328 return ret;
329}
330
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000331static const struct ethtool_ops dsa_slave_ethtool_ops = {
332 .get_settings = dsa_slave_get_settings,
333 .set_settings = dsa_slave_set_settings,
334 .get_drvinfo = dsa_slave_get_drvinfo,
335 .nway_reset = dsa_slave_nway_reset,
336 .get_link = dsa_slave_get_link,
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000337 .get_strings = dsa_slave_get_strings,
338 .get_ethtool_stats = dsa_slave_get_ethtool_stats,
339 .get_sset_count = dsa_slave_get_sset_count,
Florian Fainelli19e57c42014-09-18 17:31:24 -0700340 .set_wol = dsa_slave_set_wol,
341 .get_wol = dsa_slave_get_wol,
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000342};
343
Florian Fainelli3e8a72d2014-08-27 17:04:46 -0700344static const struct net_device_ops dsa_slave_netdev_ops = {
Lennert Buytenhekc0840802009-03-20 09:49:49 +0000345 .ndo_init = dsa_slave_init,
Stephen Hemmingerd442ad42009-01-06 16:45:26 -0800346 .ndo_open = dsa_slave_open,
347 .ndo_stop = dsa_slave_close,
Florian Fainelli3e8a72d2014-08-27 17:04:46 -0700348 .ndo_start_xmit = dsa_slave_xmit,
Stephen Hemmingerd442ad42009-01-06 16:45:26 -0800349 .ndo_change_rx_flags = dsa_slave_change_rx_flags,
350 .ndo_set_rx_mode = dsa_slave_set_rx_mode,
Stephen Hemmingerd442ad42009-01-06 16:45:26 -0800351 .ndo_set_mac_address = dsa_slave_set_mac_address,
352 .ndo_do_ioctl = dsa_slave_ioctl,
353};
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000354
Florian Fainelli0d8bcdd2014-08-27 17:04:51 -0700355static void dsa_slave_adjust_link(struct net_device *dev)
356{
357 struct dsa_slave_priv *p = netdev_priv(dev);
Florian Fainelliec9436b2014-08-27 17:04:53 -0700358 struct dsa_switch *ds = p->parent;
Florian Fainelli0d8bcdd2014-08-27 17:04:51 -0700359 unsigned int status_changed = 0;
360
361 if (p->old_link != p->phy->link) {
362 status_changed = 1;
363 p->old_link = p->phy->link;
364 }
365
366 if (p->old_duplex != p->phy->duplex) {
367 status_changed = 1;
368 p->old_duplex = p->phy->duplex;
369 }
370
371 if (p->old_pause != p->phy->pause) {
372 status_changed = 1;
373 p->old_pause = p->phy->pause;
374 }
375
Florian Fainelliec9436b2014-08-27 17:04:53 -0700376 if (ds->drv->adjust_link && status_changed)
377 ds->drv->adjust_link(ds, p->port, p->phy);
378
Florian Fainelli0d8bcdd2014-08-27 17:04:51 -0700379 if (status_changed)
380 phy_print_status(p->phy);
381}
382
Florian Fainellice31b312014-08-27 17:04:54 -0700383static int dsa_slave_fixed_link_update(struct net_device *dev,
384 struct fixed_phy_status *status)
385{
386 struct dsa_slave_priv *p = netdev_priv(dev);
387 struct dsa_switch *ds = p->parent;
388
389 if (ds->drv->fixed_link_update)
390 ds->drv->fixed_link_update(ds, p->port, status);
391
392 return 0;
393}
394
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000395/* slave device setup *******************************************************/
Florian Fainelli0d8bcdd2014-08-27 17:04:51 -0700396static void dsa_slave_phy_setup(struct dsa_slave_priv *p,
397 struct net_device *slave_dev)
398{
399 struct dsa_switch *ds = p->parent;
400 struct dsa_chip_data *cd = ds->pd;
401 struct device_node *phy_dn, *port_dn;
Florian Fainellice31b312014-08-27 17:04:54 -0700402 bool phy_is_fixed = false;
Florian Fainelli68195632014-09-19 13:07:54 -0700403 u32 phy_flags = 0;
Florian Fainelli0d8bcdd2014-08-27 17:04:51 -0700404 int ret;
405
406 port_dn = cd->port_dn[p->port];
407 p->phy_interface = of_get_phy_mode(port_dn);
408
409 phy_dn = of_parse_phandle(port_dn, "phy-handle", 0);
410 if (of_phy_is_fixed_link(port_dn)) {
411 /* In the case of a fixed PHY, the DT node associated
412 * to the fixed PHY is the Port DT node
413 */
414 ret = of_phy_register_fixed_link(port_dn);
415 if (ret) {
416 pr_err("failed to register fixed PHY\n");
417 return;
418 }
Florian Fainellice31b312014-08-27 17:04:54 -0700419 phy_is_fixed = true;
Florian Fainelli0d8bcdd2014-08-27 17:04:51 -0700420 phy_dn = port_dn;
421 }
422
Florian Fainelli68195632014-09-19 13:07:54 -0700423 if (ds->drv->get_phy_flags)
424 phy_flags = ds->drv->get_phy_flags(ds, p->port);
425
Florian Fainelli0d8bcdd2014-08-27 17:04:51 -0700426 if (phy_dn)
427 p->phy = of_phy_connect(slave_dev, phy_dn,
Florian Fainelli68195632014-09-19 13:07:54 -0700428 dsa_slave_adjust_link, phy_flags,
Florian Fainelli0d8bcdd2014-08-27 17:04:51 -0700429 p->phy_interface);
430
Florian Fainellice31b312014-08-27 17:04:54 -0700431 if (p->phy && phy_is_fixed)
432 fixed_phy_set_link_update(p->phy, dsa_slave_fixed_link_update);
433
Florian Fainelli0d8bcdd2014-08-27 17:04:51 -0700434 /* We could not connect to a designated PHY, so use the switch internal
435 * MDIO bus instead
436 */
437 if (!p->phy)
438 p->phy = ds->slave_mii_bus->phy_map[p->port];
439 else
440 pr_info("attached PHY at address %d [%s]\n",
441 p->phy->addr, p->phy->drv->name);
442}
443
Florian Fainelli24462542014-09-18 17:31:22 -0700444int dsa_slave_suspend(struct net_device *slave_dev)
445{
446 struct dsa_slave_priv *p = netdev_priv(slave_dev);
447
448 netif_device_detach(slave_dev);
449
450 if (p->phy) {
451 phy_stop(p->phy);
452 p->old_pause = -1;
453 p->old_link = -1;
454 p->old_duplex = -1;
455 phy_suspend(p->phy);
456 }
457
458 return 0;
459}
460
461int dsa_slave_resume(struct net_device *slave_dev)
462{
463 struct dsa_slave_priv *p = netdev_priv(slave_dev);
464
465 netif_device_attach(slave_dev);
466
467 if (p->phy) {
468 phy_resume(p->phy);
469 phy_start(p->phy);
470 }
471
472 return 0;
473}
474
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000475struct net_device *
476dsa_slave_create(struct dsa_switch *ds, struct device *parent,
477 int port, char *name)
478{
Lennert Buytenheke84665c2009-03-20 09:52:09 +0000479 struct net_device *master = ds->dst->master_netdev;
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000480 struct net_device *slave_dev;
481 struct dsa_slave_priv *p;
482 int ret;
483
Tom Gundersenc835a672014-07-14 16:37:24 +0200484 slave_dev = alloc_netdev(sizeof(struct dsa_slave_priv), name,
485 NET_NAME_UNKNOWN, ether_setup);
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000486 if (slave_dev == NULL)
487 return slave_dev;
488
489 slave_dev->features = master->vlan_features;
Wilfried Klaebe7ad24ea2014-05-11 00:12:32 +0000490 slave_dev->ethtool_ops = &dsa_slave_ethtool_ops;
Bjørn Mork2fcc8002013-08-30 18:08:46 +0200491 eth_hw_addr_inherit(slave_dev, master);
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000492 slave_dev->tx_queue_len = 0;
Florian Fainelli3e8a72d2014-08-27 17:04:46 -0700493 slave_dev->netdev_ops = &dsa_slave_netdev_ops;
Stephen Hemmingerd442ad42009-01-06 16:45:26 -0800494
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000495 SET_NETDEV_DEV(slave_dev, parent);
Florian Fainellibd474972014-08-27 17:04:50 -0700496 slave_dev->dev.of_node = ds->pd->port_dn[port];
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000497 slave_dev->vlan_features = master->vlan_features;
498
499 p = netdev_priv(slave_dev);
500 p->dev = slave_dev;
501 p->parent = ds;
502 p->port = port;
Florian Fainelli0d8bcdd2014-08-27 17:04:51 -0700503
Alexander Duyck50753142014-09-15 13:00:19 -0400504 switch (ds->dst->tag_protocol) {
505#ifdef CONFIG_NET_DSA_TAG_DSA
506 case DSA_TAG_PROTO_DSA:
507 p->xmit = dsa_netdev_ops.xmit;
508 break;
509#endif
510#ifdef CONFIG_NET_DSA_TAG_EDSA
511 case DSA_TAG_PROTO_EDSA:
512 p->xmit = edsa_netdev_ops.xmit;
513 break;
514#endif
515#ifdef CONFIG_NET_DSA_TAG_TRAILER
516 case DSA_TAG_PROTO_TRAILER:
517 p->xmit = trailer_netdev_ops.xmit;
518 break;
519#endif
520#ifdef CONFIG_NET_DSA_TAG_BRCM
521 case DSA_TAG_PROTO_BRCM:
522 p->xmit = brcm_netdev_ops.xmit;
523 break;
524#endif
525 default:
526 p->xmit = dsa_slave_notag_xmit;
527 break;
528 }
529
Florian Fainelli0d8bcdd2014-08-27 17:04:51 -0700530 p->old_pause = -1;
531 p->old_link = -1;
532 p->old_duplex = -1;
533
534 dsa_slave_phy_setup(p, slave_dev);
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000535
536 ret = register_netdev(slave_dev);
537 if (ret) {
538 printk(KERN_ERR "%s: error %d registering interface %s\n",
539 master->name, ret, slave_dev->name);
540 free_netdev(slave_dev);
541 return NULL;
542 }
543
544 netif_carrier_off(slave_dev);
545
546 if (p->phy != NULL) {
Florian Fainelli68195632014-09-19 13:07:54 -0700547 if (ds->drv->get_phy_flags(ds, port))
548 p->phy->dev_flags |= ds->drv->get_phy_flags(ds, port);
549
Kay Sieversfb28ad32008-11-10 13:55:14 -0800550 phy_attach(slave_dev, dev_name(&p->phy->dev),
Florian Fainellif9a8f832013-01-14 00:52:52 +0000551 PHY_INTERFACE_MODE_GMII);
Lennert Buytenhek91da11f2008-10-07 13:44:02 +0000552
553 p->phy->autoneg = AUTONEG_ENABLE;
554 p->phy->speed = 0;
555 p->phy->duplex = 0;
556 p->phy->advertising = p->phy->supported | ADVERTISED_Autoneg;
557 phy_start_aneg(p->phy);
558 }
559
560 return slave_dev;
561}