net: dsa: Provide a slave MII bus if needed
[deliverable/linux.git] / net / dsa / dsa.c
CommitLineData
91da11f8
LB
1/*
2 * net/dsa/dsa.c - Hardware switch handling
e84665c9 3 * Copyright (c) 2008-2009 Marvell Semiconductor
5e95329b 4 * Copyright (c) 2013 Florian Fainelli <florian@openwrt.org>
91da11f8
LB
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 */
11
51579c3f
GR
12#include <linux/ctype.h>
13#include <linux/device.h>
14#include <linux/hwmon.h>
91da11f8 15#include <linux/list.h>
91da11f8 16#include <linux/platform_device.h>
5a0e3ad6 17#include <linux/slab.h>
3a9a231d 18#include <linux/module.h>
91da11f8 19#include <net/dsa.h>
5e95329b
FF
20#include <linux/of.h>
21#include <linux/of_mdio.h>
22#include <linux/of_platform.h>
769a0202 23#include <linux/of_net.h>
cc30c163 24#include <linux/of_gpio.h>
51579c3f 25#include <linux/sysfs.h>
cbc5d90b 26#include <linux/phy_fixed.h>
85beabfe 27#include <linux/gpio/consumer.h>
91da11f8
LB
28#include "dsa_priv.h"
29
30char dsa_driver_version[] = "0.1";
31
39a7f2a4
AL
32static struct sk_buff *dsa_slave_notag_xmit(struct sk_buff *skb,
33 struct net_device *dev)
34{
35 /* Just return the original SKB */
36 return skb;
37}
38
39static const struct dsa_device_ops none_ops = {
40 .xmit = dsa_slave_notag_xmit,
41 .rcv = NULL,
42};
43
44const struct dsa_device_ops *dsa_device_ops[DSA_TAG_LAST] = {
45#ifdef CONFIG_NET_DSA_TAG_DSA
46 [DSA_TAG_PROTO_DSA] = &dsa_netdev_ops,
47#endif
48#ifdef CONFIG_NET_DSA_TAG_EDSA
49 [DSA_TAG_PROTO_EDSA] = &edsa_netdev_ops,
50#endif
51#ifdef CONFIG_NET_DSA_TAG_TRAILER
52 [DSA_TAG_PROTO_TRAILER] = &trailer_netdev_ops,
53#endif
54#ifdef CONFIG_NET_DSA_TAG_BRCM
55 [DSA_TAG_PROTO_BRCM] = &brcm_netdev_ops,
56#endif
57 [DSA_TAG_PROTO_NONE] = &none_ops,
58};
91da11f8
LB
59
60/* switch driver registration ***********************************************/
61static DEFINE_MUTEX(dsa_switch_drivers_mutex);
62static LIST_HEAD(dsa_switch_drivers);
63
64void register_switch_driver(struct dsa_switch_driver *drv)
65{
66 mutex_lock(&dsa_switch_drivers_mutex);
67 list_add_tail(&drv->list, &dsa_switch_drivers);
68 mutex_unlock(&dsa_switch_drivers_mutex);
69}
ad293b8a 70EXPORT_SYMBOL_GPL(register_switch_driver);
91da11f8
LB
71
72void unregister_switch_driver(struct dsa_switch_driver *drv)
73{
74 mutex_lock(&dsa_switch_drivers_mutex);
75 list_del_init(&drv->list);
76 mutex_unlock(&dsa_switch_drivers_mutex);
77}
ad293b8a 78EXPORT_SYMBOL_GPL(unregister_switch_driver);
91da11f8
LB
79
80static struct dsa_switch_driver *
bbb8d793 81dsa_switch_probe(struct device *parent, struct device *host_dev, int sw_addr,
0209d144 82 const char **_name, void **priv)
91da11f8
LB
83{
84 struct dsa_switch_driver *ret;
85 struct list_head *list;
0209d144 86 const char *name;
91da11f8
LB
87
88 ret = NULL;
89 name = NULL;
90
91 mutex_lock(&dsa_switch_drivers_mutex);
92 list_for_each(list, &dsa_switch_drivers) {
93 struct dsa_switch_driver *drv;
94
95 drv = list_entry(list, struct dsa_switch_driver, list);
96
7543a6d5 97 name = drv->probe(parent, host_dev, sw_addr, priv);
91da11f8
LB
98 if (name != NULL) {
99 ret = drv;
100 break;
101 }
102 }
103 mutex_unlock(&dsa_switch_drivers_mutex);
104
105 *_name = name;
106
107 return ret;
108}
109
51579c3f
GR
110/* hwmon support ************************************************************/
111
112#ifdef CONFIG_NET_DSA_HWMON
113
114static ssize_t temp1_input_show(struct device *dev,
115 struct device_attribute *attr, char *buf)
116{
117 struct dsa_switch *ds = dev_get_drvdata(dev);
118 int temp, ret;
119
120 ret = ds->drv->get_temp(ds, &temp);
121 if (ret < 0)
122 return ret;
123
124 return sprintf(buf, "%d\n", temp * 1000);
125}
126static DEVICE_ATTR_RO(temp1_input);
127
128static ssize_t temp1_max_show(struct device *dev,
129 struct device_attribute *attr, char *buf)
130{
131 struct dsa_switch *ds = dev_get_drvdata(dev);
132 int temp, ret;
133
134 ret = ds->drv->get_temp_limit(ds, &temp);
135 if (ret < 0)
136 return ret;
137
138 return sprintf(buf, "%d\n", temp * 1000);
139}
140
141static ssize_t temp1_max_store(struct device *dev,
142 struct device_attribute *attr, const char *buf,
143 size_t count)
144{
145 struct dsa_switch *ds = dev_get_drvdata(dev);
146 int temp, ret;
147
148 ret = kstrtoint(buf, 0, &temp);
149 if (ret < 0)
150 return ret;
151
152 ret = ds->drv->set_temp_limit(ds, DIV_ROUND_CLOSEST(temp, 1000));
153 if (ret < 0)
154 return ret;
155
156 return count;
157}
e3122b7f 158static DEVICE_ATTR_RW(temp1_max);
51579c3f
GR
159
160static ssize_t temp1_max_alarm_show(struct device *dev,
161 struct device_attribute *attr, char *buf)
162{
163 struct dsa_switch *ds = dev_get_drvdata(dev);
164 bool alarm;
165 int ret;
166
167 ret = ds->drv->get_temp_alarm(ds, &alarm);
168 if (ret < 0)
169 return ret;
170
171 return sprintf(buf, "%d\n", alarm);
172}
173static DEVICE_ATTR_RO(temp1_max_alarm);
174
175static struct attribute *dsa_hwmon_attrs[] = {
176 &dev_attr_temp1_input.attr, /* 0 */
177 &dev_attr_temp1_max.attr, /* 1 */
178 &dev_attr_temp1_max_alarm.attr, /* 2 */
179 NULL
180};
181
182static umode_t dsa_hwmon_attrs_visible(struct kobject *kobj,
183 struct attribute *attr, int index)
184{
185 struct device *dev = container_of(kobj, struct device, kobj);
186 struct dsa_switch *ds = dev_get_drvdata(dev);
187 struct dsa_switch_driver *drv = ds->drv;
188 umode_t mode = attr->mode;
189
190 if (index == 1) {
191 if (!drv->get_temp_limit)
192 mode = 0;
e3122b7f
VD
193 else if (!drv->set_temp_limit)
194 mode &= ~S_IWUSR;
51579c3f
GR
195 } else if (index == 2 && !drv->get_temp_alarm) {
196 mode = 0;
197 }
198 return mode;
199}
200
201static const struct attribute_group dsa_hwmon_group = {
202 .attrs = dsa_hwmon_attrs,
203 .is_visible = dsa_hwmon_attrs_visible,
204};
205__ATTRIBUTE_GROUPS(dsa_hwmon);
206
207#endif /* CONFIG_NET_DSA_HWMON */
91da11f8
LB
208
209/* basic switch operations **************************************************/
9b8e895c
AL
210int dsa_cpu_dsa_setup(struct dsa_switch *ds, struct device *dev,
211 struct device_node *port_dn, int port)
39b0c705 212{
39b0c705 213 struct phy_device *phydev;
9b8e895c
AL
214 int ret, mode;
215
216 if (of_phy_is_fixed_link(port_dn)) {
217 ret = of_phy_register_fixed_link(port_dn);
218 if (ret) {
219 dev_err(dev, "failed to register fixed PHY\n");
220 return ret;
221 }
222 phydev = of_phy_find_device(port_dn);
223
224 mode = of_get_phy_mode(port_dn);
225 if (mode < 0)
226 mode = PHY_INTERFACE_MODE_NA;
227 phydev->interface = mode;
228
229 genphy_config_init(phydev);
230 genphy_read_status(phydev);
231 if (ds->drv->adjust_link)
232 ds->drv->adjust_link(ds, port, phydev);
233 }
234
235 return 0;
236}
237
238static int dsa_cpu_dsa_setups(struct dsa_switch *ds, struct device *dev)
239{
240 struct device_node *port_dn;
241 int ret, port;
39b0c705
AL
242
243 for (port = 0; port < DSA_MAX_PORTS; port++) {
244 if (!(dsa_is_cpu_port(ds, port) || dsa_is_dsa_port(ds, port)))
245 continue;
246
189b0d93 247 port_dn = ds->ports[port].dn;
9b8e895c
AL
248 ret = dsa_cpu_dsa_setup(ds, dev, port_dn, port);
249 if (ret)
250 return ret;
39b0c705
AL
251 }
252 return 0;
253}
254
39a7f2a4
AL
255const struct dsa_device_ops *dsa_resolve_tag_protocol(int tag_protocol)
256{
257 const struct dsa_device_ops *ops;
258
259 if (tag_protocol >= DSA_TAG_LAST)
260 return ERR_PTR(-EINVAL);
261 ops = dsa_device_ops[tag_protocol];
262
263 if (!ops)
264 return ERR_PTR(-ENOPROTOOPT);
265
266 return ops;
267}
268
df197195 269static int dsa_switch_setup_one(struct dsa_switch *ds, struct device *parent)
91da11f8 270{
df197195
FF
271 struct dsa_switch_driver *drv = ds->drv;
272 struct dsa_switch_tree *dst = ds->dst;
ff04955c 273 struct dsa_chip_data *cd = ds->cd;
f9bf5a2c 274 bool valid_name_found = false;
df197195
FF
275 int index = ds->index;
276 int i, ret;
91da11f8
LB
277
278 /*
279 * Validate supplied switch configuration.
280 */
91da11f8
LB
281 for (i = 0; i < DSA_MAX_PORTS; i++) {
282 char *name;
283
ff04955c 284 name = cd->port_names[i];
91da11f8
LB
285 if (name == NULL)
286 continue;
287
288 if (!strcmp(name, "cpu")) {
e84665c9 289 if (dst->cpu_switch != -1) {
a2ae6007
JP
290 netdev_err(dst->master_netdev,
291 "multiple cpu ports?!\n");
91da11f8
LB
292 ret = -EINVAL;
293 goto out;
294 }
e84665c9
LB
295 dst->cpu_switch = index;
296 dst->cpu_port = i;
83c0afae 297 ds->cpu_port_mask |= 1 << i;
e84665c9
LB
298 } else if (!strcmp(name, "dsa")) {
299 ds->dsa_port_mask |= 1 << i;
91da11f8 300 } else {
74c3e2a5 301 ds->enabled_port_mask |= 1 << i;
91da11f8 302 }
f9bf5a2c 303 valid_name_found = true;
91da11f8
LB
304 }
305
f9bf5a2c
FF
306 if (!valid_name_found && i == DSA_MAX_PORTS) {
307 ret = -EINVAL;
308 goto out;
309 }
91da11f8 310
0d8bcdd3
FF
311 /* Make the built-in MII bus mask match the number of ports,
312 * switch drivers can override this later
313 */
74c3e2a5 314 ds->phys_mii_mask = ds->enabled_port_mask;
0d8bcdd3 315
91da11f8 316 /*
e84665c9
LB
317 * If the CPU connects to this switch, set the switch tree
318 * tagging protocol to the preferred tagging format of this
319 * switch.
91da11f8 320 */
5075314e 321 if (dst->cpu_switch == index) {
39a7f2a4
AL
322 dst->tag_ops = dsa_resolve_tag_protocol(drv->tag_protocol);
323 if (IS_ERR(dst->tag_ops)) {
324 ret = PTR_ERR(dst->tag_ops);
ae439286 325 goto out;
5075314e 326 }
91da11f8 327
39a7f2a4 328 dst->rcv = dst->tag_ops->rcv;
5075314e 329 }
91da11f8 330
66472fc0
AL
331 memcpy(ds->rtable, cd->rtable, sizeof(ds->rtable));
332
91da11f8
LB
333 /*
334 * Do basic register setup.
335 */
336 ret = drv->setup(ds);
337 if (ret < 0)
338 goto out;
339
e84665c9 340 ret = drv->set_addr(ds, dst->master_netdev->dev_addr);
91da11f8
LB
341 if (ret < 0)
342 goto out;
343
e755e49e
AL
344 if (!ds->slave_mii_bus && drv->phy_read) {
345 ds->slave_mii_bus = devm_mdiobus_alloc(parent);
346 if (!ds->slave_mii_bus) {
347 ret = -ENOMEM;
348 goto out;
349 }
350 dsa_slave_mii_bus_init(ds);
91da11f8 351
e755e49e
AL
352 ret = mdiobus_register(ds->slave_mii_bus);
353 if (ret < 0)
354 goto out;
355 }
91da11f8
LB
356
357 /*
358 * Create network devices for physical switch ports.
359 */
91da11f8 360 for (i = 0; i < DSA_MAX_PORTS; i++) {
189b0d93
AL
361 ds->ports[i].dn = cd->port_dn[i];
362
74c3e2a5 363 if (!(ds->enabled_port_mask & (1 << i)))
91da11f8
LB
364 continue;
365
ff04955c 366 ret = dsa_slave_create(ds, parent, i, cd->port_names[i]);
d87d6f44 367 if (ret < 0) {
d25b8e74 368 netdev_err(dst->master_netdev, "[%d]: can't create dsa slave device for port %d(%s): %d\n",
ff04955c 369 index, i, cd->port_names[i], ret);
d87d6f44 370 ret = 0;
91da11f8 371 }
91da11f8
LB
372 }
373
39b0c705 374 /* Perform configuration of the CPU and DSA ports */
9b8e895c 375 ret = dsa_cpu_dsa_setups(ds, parent);
39b0c705
AL
376 if (ret < 0) {
377 netdev_err(dst->master_netdev, "[%d] : can't configure CPU and DSA ports\n",
378 index);
379 ret = 0;
380 }
381
51579c3f
GR
382#ifdef CONFIG_NET_DSA_HWMON
383 /* If the switch provides a temperature sensor,
384 * register with hardware monitoring subsystem.
385 * Treat registration error as non-fatal and ignore it.
386 */
387 if (drv->get_temp) {
388 const char *netname = netdev_name(dst->master_netdev);
389 char hname[IFNAMSIZ + 1];
390 int i, j;
391
392 /* Create valid hwmon 'name' attribute */
393 for (i = j = 0; i < IFNAMSIZ && netname[i]; i++) {
394 if (isalnum(netname[i]))
395 hname[j++] = netname[i];
396 }
397 hname[j] = '\0';
398 scnprintf(ds->hwmon_name, sizeof(ds->hwmon_name), "%s_dsa%d",
399 hname, index);
400 ds->hwmon_dev = hwmon_device_register_with_groups(NULL,
401 ds->hwmon_name, ds, dsa_hwmon_groups);
402 if (IS_ERR(ds->hwmon_dev))
403 ds->hwmon_dev = NULL;
404 }
405#endif /* CONFIG_NET_DSA_HWMON */
406
df197195 407 return ret;
91da11f8 408
91da11f8 409out:
df197195
FF
410 return ret;
411}
412
413static struct dsa_switch *
414dsa_switch_setup(struct dsa_switch_tree *dst, int index,
415 struct device *parent, struct device *host_dev)
416{
ff04955c 417 struct dsa_chip_data *cd = dst->pd->chip + index;
df197195
FF
418 struct dsa_switch_driver *drv;
419 struct dsa_switch *ds;
420 int ret;
0209d144 421 const char *name;
7543a6d5 422 void *priv;
df197195
FF
423
424 /*
425 * Probe for switch model.
426 */
ff04955c 427 drv = dsa_switch_probe(parent, host_dev, cd->sw_addr, &name, &priv);
df197195
FF
428 if (drv == NULL) {
429 netdev_err(dst->master_netdev, "[%d]: could not detect attached switch\n",
430 index);
431 return ERR_PTR(-EINVAL);
432 }
433 netdev_info(dst->master_netdev, "[%d]: detected a %s switch\n",
434 index, name);
435
436
437 /*
438 * Allocate and initialise switch state.
439 */
5feebd0a 440 ds = devm_kzalloc(parent, sizeof(*ds), GFP_KERNEL);
df197195 441 if (ds == NULL)
24595346 442 return ERR_PTR(-ENOMEM);
df197195
FF
443
444 ds->dst = dst;
445 ds->index = index;
ff04955c 446 ds->cd = cd;
df197195 447 ds->drv = drv;
7543a6d5 448 ds->priv = priv;
c33063d6 449 ds->dev = parent;
df197195
FF
450
451 ret = dsa_switch_setup_one(ds, parent);
452 if (ret)
24595346 453 return ERR_PTR(ret);
df197195
FF
454
455 return ds;
91da11f8
LB
456}
457
9b8e895c 458void dsa_cpu_dsa_destroy(struct device_node *port_dn)
91da11f8 459{
cbc5d90b 460 struct phy_device *phydev;
9b8e895c
AL
461
462 if (of_phy_is_fixed_link(port_dn)) {
463 phydev = of_phy_find_device(port_dn);
464 if (phydev) {
465 phy_device_free(phydev);
466 fixed_phy_unregister(phydev);
467 }
468 }
469}
470
471static void dsa_switch_destroy(struct dsa_switch *ds)
472{
cbc5d90b
NA
473 int port;
474
51579c3f
GR
475#ifdef CONFIG_NET_DSA_HWMON
476 if (ds->hwmon_dev)
477 hwmon_device_unregister(ds->hwmon_dev);
478#endif
cbc5d90b 479
3a44514f
AL
480 /* Destroy network devices for physical switch ports. */
481 for (port = 0; port < DSA_MAX_PORTS; port++) {
74c3e2a5 482 if (!(ds->enabled_port_mask & (1 << port)))
3a44514f
AL
483 continue;
484
c8b09808 485 if (!ds->ports[port].netdev)
3a44514f
AL
486 continue;
487
c8b09808 488 dsa_slave_destroy(ds->ports[port].netdev);
3a44514f
AL
489 }
490
9b8e895c 491 /* Disable configuration of the CPU and DSA ports */
cbc5d90b 492 for (port = 0; port < DSA_MAX_PORTS; port++) {
9b8e895c
AL
493 if (!(dsa_is_cpu_port(ds, port) || dsa_is_dsa_port(ds, port)))
494 continue;
495 dsa_cpu_dsa_destroy(ds->ports[port].dn);
83c0afae
AL
496
497 /* Clearing a bit which is not set does no harm */
498 ds->cpu_port_mask |= ~(1 << port);
499 ds->dsa_port_mask |= ~(1 << port);
cbc5d90b
NA
500 }
501
e755e49e
AL
502 if (ds->slave_mii_bus && ds->drv->phy_read)
503 mdiobus_unregister(ds->slave_mii_bus);
91da11f8
LB
504}
505
e506d405 506#ifdef CONFIG_PM_SLEEP
24462549
FF
507static int dsa_switch_suspend(struct dsa_switch *ds)
508{
509 int i, ret = 0;
510
511 /* Suspend slave network devices */
512 for (i = 0; i < DSA_MAX_PORTS; i++) {
d79d2107 513 if (!dsa_is_port_initialized(ds, i))
24462549
FF
514 continue;
515
c8b09808 516 ret = dsa_slave_suspend(ds->ports[i].netdev);
24462549
FF
517 if (ret)
518 return ret;
519 }
520
521 if (ds->drv->suspend)
522 ret = ds->drv->suspend(ds);
523
524 return ret;
525}
526
527static int dsa_switch_resume(struct dsa_switch *ds)
528{
529 int i, ret = 0;
530
531 if (ds->drv->resume)
532 ret = ds->drv->resume(ds);
533
534 if (ret)
535 return ret;
536
537 /* Resume slave network devices */
538 for (i = 0; i < DSA_MAX_PORTS; i++) {
d79d2107 539 if (!dsa_is_port_initialized(ds, i))
24462549
FF
540 continue;
541
c8b09808 542 ret = dsa_slave_resume(ds->ports[i].netdev);
24462549
FF
543 if (ret)
544 return ret;
545 }
546
547 return 0;
548}
e506d405 549#endif
24462549 550
91da11f8
LB
551/* platform driver init and cleanup *****************************************/
552static int dev_is_class(struct device *dev, void *class)
553{
554 if (dev->class != NULL && !strcmp(dev->class->name, class))
555 return 1;
556
557 return 0;
558}
559
560static struct device *dev_find_class(struct device *parent, char *class)
561{
562 if (dev_is_class(parent, class)) {
563 get_device(parent);
564 return parent;
565 }
566
567 return device_find_child(parent, class, dev_is_class);
568}
569
b4d2394d 570struct mii_bus *dsa_host_dev_to_mii_bus(struct device *dev)
91da11f8
LB
571{
572 struct device *d;
573
574 d = dev_find_class(dev, "mdio_bus");
575 if (d != NULL) {
576 struct mii_bus *bus;
577
578 bus = to_mii_bus(d);
579 put_device(d);
580
581 return bus;
582 }
583
584 return NULL;
585}
b4d2394d 586EXPORT_SYMBOL_GPL(dsa_host_dev_to_mii_bus);
91da11f8
LB
587
588static struct net_device *dev_to_net_device(struct device *dev)
589{
590 struct device *d;
591
592 d = dev_find_class(dev, "net");
593 if (d != NULL) {
594 struct net_device *nd;
595
596 nd = to_net_dev(d);
597 dev_hold(nd);
598 put_device(d);
599
600 return nd;
601 }
602
603 return NULL;
604}
605
5e95329b
FF
606#ifdef CONFIG_OF
607static int dsa_of_setup_routing_table(struct dsa_platform_data *pd,
608 struct dsa_chip_data *cd,
30303813 609 int chip_index, int port_index,
5e95329b
FF
610 struct device_node *link)
611{
5e95329b 612 const __be32 *reg;
5e95329b
FF
613 int link_sw_addr;
614 struct device_node *parent_sw;
615 int len;
616
617 parent_sw = of_get_parent(link);
618 if (!parent_sw)
619 return -EINVAL;
620
621 reg = of_get_property(parent_sw, "reg", &len);
622 if (!reg || (len != sizeof(*reg) * 2))
623 return -EINVAL;
624
30303813
PN
625 /*
626 * Get the destination switch number from the second field of its 'reg'
627 * property, i.e. for "reg = <0x19 1>" sw_addr is '1'.
628 */
5e95329b
FF
629 link_sw_addr = be32_to_cpup(reg + 1);
630
631 if (link_sw_addr >= pd->nr_chips)
632 return -EINVAL;
633
30303813 634 cd->rtable[link_sw_addr] = port_index;
5e95329b
FF
635
636 return 0;
5e95329b
FF
637}
638
1e72e6f8
AL
639static int dsa_of_probe_links(struct dsa_platform_data *pd,
640 struct dsa_chip_data *cd,
641 int chip_index, int port_index,
642 struct device_node *port,
643 const char *port_name)
644{
645 struct device_node *link;
646 int link_index;
647 int ret;
648
649 for (link_index = 0;; link_index++) {
650 link = of_parse_phandle(port, "link", link_index);
651 if (!link)
652 break;
653
654 if (!strcmp(port_name, "dsa") && pd->nr_chips > 1) {
655 ret = dsa_of_setup_routing_table(pd, cd, chip_index,
656 port_index, link);
657 if (ret)
658 return ret;
659 }
660 }
661 return 0;
662}
663
21168245
FF
664static void dsa_of_free_platform_data(struct dsa_platform_data *pd)
665{
666 int i;
667 int port_index;
668
669 for (i = 0; i < pd->nr_chips; i++) {
670 port_index = 0;
5f64a7db 671 while (port_index < DSA_MAX_PORTS) {
1f74714f 672 kfree(pd->chip[i].port_names[port_index]);
5f64a7db
FF
673 port_index++;
674 }
e496ae69
RK
675
676 /* Drop our reference to the MDIO bus device */
677 if (pd->chip[i].host_dev)
678 put_device(pd->chip[i].host_dev);
21168245
FF
679 }
680 kfree(pd->chip);
681}
682
f1a26a06 683static int dsa_of_probe(struct device *dev)
5e95329b 684{
f1a26a06 685 struct device_node *np = dev->of_node;
1e72e6f8 686 struct device_node *child, *mdio, *ethernet, *port;
6bc6d0a8 687 struct mii_bus *mdio_bus, *mdio_bus_switch;
769a0202 688 struct net_device *ethernet_dev;
5e95329b
FF
689 struct dsa_platform_data *pd;
690 struct dsa_chip_data *cd;
691 const char *port_name;
692 int chip_index, port_index;
693 const unsigned int *sw_addr, *port_reg;
6793abb4 694 u32 eeprom_len;
21168245 695 int ret;
5e95329b
FF
696
697 mdio = of_parse_phandle(np, "dsa,mii-bus", 0);
698 if (!mdio)
699 return -EINVAL;
700
701 mdio_bus = of_mdio_find_bus(mdio);
702 if (!mdio_bus)
b324c07a 703 return -EPROBE_DEFER;
5e95329b
FF
704
705 ethernet = of_parse_phandle(np, "dsa,ethernet", 0);
e496ae69
RK
706 if (!ethernet) {
707 ret = -EINVAL;
708 goto out_put_mdio;
709 }
5e95329b 710
769a0202 711 ethernet_dev = of_find_net_device_by_node(ethernet);
e496ae69
RK
712 if (!ethernet_dev) {
713 ret = -EPROBE_DEFER;
714 goto out_put_mdio;
715 }
5e95329b
FF
716
717 pd = kzalloc(sizeof(*pd), GFP_KERNEL);
e496ae69
RK
718 if (!pd) {
719 ret = -ENOMEM;
9861f720 720 goto out_put_ethernet;
e496ae69 721 }
5e95329b 722
f1a26a06 723 dev->platform_data = pd;
769a0202 724 pd->of_netdev = ethernet_dev;
e04449fc 725 pd->nr_chips = of_get_available_child_count(np);
5e95329b
FF
726 if (pd->nr_chips > DSA_MAX_SWITCHES)
727 pd->nr_chips = DSA_MAX_SWITCHES;
728
6f2aed6a
FF
729 pd->chip = kcalloc(pd->nr_chips, sizeof(struct dsa_chip_data),
730 GFP_KERNEL);
5e95329b
FF
731 if (!pd->chip) {
732 ret = -ENOMEM;
733 goto out_free;
734 }
735
d1c0b471 736 chip_index = -1;
5e95329b 737 for_each_available_child_of_node(np, child) {
d1c0b471 738 chip_index++;
5e95329b
FF
739 cd = &pd->chip[chip_index];
740
fa981d9a 741 cd->of_node = child;
e496ae69
RK
742
743 /* When assigning the host device, increment its refcount */
744 cd->host_dev = get_device(&mdio_bus->dev);
5e95329b
FF
745
746 sw_addr = of_get_property(child, "reg", NULL);
747 if (!sw_addr)
748 continue;
749
750 cd->sw_addr = be32_to_cpup(sw_addr);
c8cf89f7 751 if (cd->sw_addr >= PHY_MAX_ADDR)
5e95329b
FF
752 continue;
753
50d4964f 754 if (!of_property_read_u32(child, "eeprom-length", &eeprom_len))
6793abb4
GR
755 cd->eeprom_len = eeprom_len;
756
6bc6d0a8
AL
757 mdio = of_parse_phandle(child, "mii-bus", 0);
758 if (mdio) {
759 mdio_bus_switch = of_mdio_find_bus(mdio);
760 if (!mdio_bus_switch) {
761 ret = -EPROBE_DEFER;
762 goto out_free_chip;
763 }
e496ae69
RK
764
765 /* Drop the mdio_bus device ref, replacing the host
766 * device with the mdio_bus_switch device, keeping
767 * the refcount from of_mdio_find_bus() above.
768 */
769 put_device(cd->host_dev);
6bc6d0a8
AL
770 cd->host_dev = &mdio_bus_switch->dev;
771 }
772
5e95329b
FF
773 for_each_available_child_of_node(child, port) {
774 port_reg = of_get_property(port, "reg", NULL);
775 if (!port_reg)
776 continue;
777
778 port_index = be32_to_cpup(port_reg);
8f5063e9
FF
779 if (port_index >= DSA_MAX_PORTS)
780 break;
5e95329b
FF
781
782 port_name = of_get_property(port, "label", NULL);
783 if (!port_name)
784 continue;
785
bd47497a
FF
786 cd->port_dn[port_index] = port;
787
5e95329b
FF
788 cd->port_names[port_index] = kstrdup(port_name,
789 GFP_KERNEL);
790 if (!cd->port_names[port_index]) {
791 ret = -ENOMEM;
792 goto out_free_chip;
793 }
794
1e72e6f8
AL
795 ret = dsa_of_probe_links(pd, cd, chip_index,
796 port_index, port, port_name);
797 if (ret)
798 goto out_free_chip;
5e95329b 799
5e95329b
FF
800 }
801 }
802
e496ae69
RK
803 /* The individual chips hold their own refcount on the mdio bus,
804 * so drop ours */
805 put_device(&mdio_bus->dev);
806
5e95329b
FF
807 return 0;
808
809out_free_chip:
21168245 810 dsa_of_free_platform_data(pd);
5e95329b
FF
811out_free:
812 kfree(pd);
f1a26a06 813 dev->platform_data = NULL;
9861f720
RK
814out_put_ethernet:
815 put_device(&ethernet_dev->dev);
e496ae69
RK
816out_put_mdio:
817 put_device(&mdio_bus->dev);
5e95329b
FF
818 return ret;
819}
820
f1a26a06 821static void dsa_of_remove(struct device *dev)
5e95329b 822{
f1a26a06 823 struct dsa_platform_data *pd = dev->platform_data;
5e95329b 824
f1a26a06 825 if (!dev->of_node)
5e95329b
FF
826 return;
827
21168245 828 dsa_of_free_platform_data(pd);
9861f720 829 put_device(&pd->of_netdev->dev);
5e95329b
FF
830 kfree(pd);
831}
832#else
f1a26a06 833static inline int dsa_of_probe(struct device *dev)
5e95329b
FF
834{
835 return 0;
836}
837
f1a26a06 838static inline void dsa_of_remove(struct device *dev)
5e95329b
FF
839{
840}
841#endif
842
4d7f3e75
NA
843static int dsa_setup_dst(struct dsa_switch_tree *dst, struct net_device *dev,
844 struct device *parent, struct dsa_platform_data *pd)
c86e59b9
FF
845{
846 int i;
4d7f3e75 847 unsigned configured = 0;
c86e59b9
FF
848
849 dst->pd = pd;
850 dst->master_netdev = dev;
851 dst->cpu_switch = -1;
852 dst->cpu_port = -1;
853
854 for (i = 0; i < pd->nr_chips; i++) {
855 struct dsa_switch *ds;
856
857 ds = dsa_switch_setup(dst, i, parent, pd->chip[i].host_dev);
858 if (IS_ERR(ds)) {
859 netdev_err(dev, "[%d]: couldn't create dsa switch instance (error %ld)\n",
860 i, PTR_ERR(ds));
861 continue;
862 }
863
864 dst->ds[i] = ds;
4d7f3e75
NA
865
866 ++configured;
c86e59b9
FF
867 }
868
4d7f3e75
NA
869 /*
870 * If no switch was found, exit cleanly
871 */
872 if (!configured)
873 return -EPROBE_DEFER;
874
c86e59b9
FF
875 /*
876 * If we use a tagging format that doesn't have an ethertype
877 * field, make sure that all packets from this point on get
878 * sent to the tag format's receive function.
879 */
880 wmb();
881 dev->dsa_ptr = (void *)dst;
882
4d7f3e75 883 return 0;
c86e59b9
FF
884}
885
91da11f8
LB
886static int dsa_probe(struct platform_device *pdev)
887{
91da11f8
LB
888 struct dsa_platform_data *pd = pdev->dev.platform_data;
889 struct net_device *dev;
e84665c9 890 struct dsa_switch_tree *dst;
c86e59b9 891 int ret;
91da11f8 892
a2ae6007
JP
893 pr_notice_once("Distributed Switch Architecture driver version %s\n",
894 dsa_driver_version);
91da11f8 895
5e95329b 896 if (pdev->dev.of_node) {
f1a26a06 897 ret = dsa_of_probe(&pdev->dev);
5e95329b
FF
898 if (ret)
899 return ret;
900
901 pd = pdev->dev.platform_data;
902 }
903
769a0202 904 if (pd == NULL || (pd->netdev == NULL && pd->of_netdev == NULL))
91da11f8
LB
905 return -EINVAL;
906
769a0202
FF
907 if (pd->of_netdev) {
908 dev = pd->of_netdev;
909 dev_hold(dev);
910 } else {
911 dev = dev_to_net_device(pd->netdev);
912 }
5e95329b 913 if (dev == NULL) {
b324c07a 914 ret = -EPROBE_DEFER;
5e95329b
FF
915 goto out;
916 }
91da11f8
LB
917
918 if (dev->dsa_ptr != NULL) {
919 dev_put(dev);
5e95329b
FF
920 ret = -EEXIST;
921 goto out;
91da11f8
LB
922 }
923
d4ac35d6 924 dst = devm_kzalloc(&pdev->dev, sizeof(*dst), GFP_KERNEL);
e84665c9 925 if (dst == NULL) {
91da11f8 926 dev_put(dev);
5e95329b
FF
927 ret = -ENOMEM;
928 goto out;
91da11f8
LB
929 }
930
e84665c9
LB
931 platform_set_drvdata(pdev, dst);
932
4d7f3e75 933 ret = dsa_setup_dst(dst, dev, &pdev->dev, pd);
679fb46c
NA
934 if (ret) {
935 dev_put(dev);
4d7f3e75 936 goto out;
679fb46c 937 }
91da11f8
LB
938
939 return 0;
5e95329b
FF
940
941out:
f1a26a06 942 dsa_of_remove(&pdev->dev);
5e95329b
FF
943
944 return ret;
91da11f8
LB
945}
946
c86e59b9 947static void dsa_remove_dst(struct dsa_switch_tree *dst)
91da11f8 948{
e84665c9 949 int i;
91da11f8 950
04761890
NA
951 dst->master_netdev->dsa_ptr = NULL;
952
953 /* If we used a tagging format that doesn't have an ethertype
954 * field, make sure that all packets from this point get sent
955 * without the tag and go through the regular receive path.
956 */
957 wmb();
958
e84665c9
LB
959 for (i = 0; i < dst->pd->nr_chips; i++) {
960 struct dsa_switch *ds = dst->ds[i];
961
d4ac35d6 962 if (ds)
e84665c9
LB
963 dsa_switch_destroy(ds);
964 }
679fb46c
NA
965
966 dev_put(dst->master_netdev);
c86e59b9
FF
967}
968
969static int dsa_remove(struct platform_device *pdev)
970{
971 struct dsa_switch_tree *dst = platform_get_drvdata(pdev);
91da11f8 972
c86e59b9 973 dsa_remove_dst(dst);
f1a26a06 974 dsa_of_remove(&pdev->dev);
5e95329b 975
91da11f8
LB
976 return 0;
977}
978
979static void dsa_shutdown(struct platform_device *pdev)
980{
981}
982
3e8a72d1
FF
983static int dsa_switch_rcv(struct sk_buff *skb, struct net_device *dev,
984 struct packet_type *pt, struct net_device *orig_dev)
985{
986 struct dsa_switch_tree *dst = dev->dsa_ptr;
987
988 if (unlikely(dst == NULL)) {
989 kfree_skb(skb);
990 return 0;
991 }
992
5075314e 993 return dst->rcv(skb, dev, pt, orig_dev);
3e8a72d1
FF
994}
995
61b7363f 996static struct packet_type dsa_pack_type __read_mostly = {
3e8a72d1
FF
997 .type = cpu_to_be16(ETH_P_XDSA),
998 .func = dsa_switch_rcv,
999};
1000
b73adef6
FF
1001static struct notifier_block dsa_netdevice_nb __read_mostly = {
1002 .notifier_call = dsa_slave_netdevice_event,
1003};
1004
24462549
FF
1005#ifdef CONFIG_PM_SLEEP
1006static int dsa_suspend(struct device *d)
1007{
1008 struct platform_device *pdev = to_platform_device(d);
1009 struct dsa_switch_tree *dst = platform_get_drvdata(pdev);
1010 int i, ret = 0;
1011
1012 for (i = 0; i < dst->pd->nr_chips; i++) {
1013 struct dsa_switch *ds = dst->ds[i];
1014
1015 if (ds != NULL)
1016 ret = dsa_switch_suspend(ds);
1017 }
1018
1019 return ret;
1020}
1021
1022static int dsa_resume(struct device *d)
1023{
1024 struct platform_device *pdev = to_platform_device(d);
1025 struct dsa_switch_tree *dst = platform_get_drvdata(pdev);
1026 int i, ret = 0;
1027
1028 for (i = 0; i < dst->pd->nr_chips; i++) {
1029 struct dsa_switch *ds = dst->ds[i];
1030
1031 if (ds != NULL)
1032 ret = dsa_switch_resume(ds);
1033 }
1034
1035 return ret;
1036}
1037#endif
1038
1039static SIMPLE_DEV_PM_OPS(dsa_pm_ops, dsa_suspend, dsa_resume);
1040
5e95329b 1041static const struct of_device_id dsa_of_match_table[] = {
246d7f77 1042 { .compatible = "brcm,bcm7445-switch-v4.0" },
5e95329b
FF
1043 { .compatible = "marvell,dsa", },
1044 {}
1045};
1046MODULE_DEVICE_TABLE(of, dsa_of_match_table);
1047
91da11f8
LB
1048static struct platform_driver dsa_driver = {
1049 .probe = dsa_probe,
1050 .remove = dsa_remove,
1051 .shutdown = dsa_shutdown,
1052 .driver = {
1053 .name = "dsa",
5e95329b 1054 .of_match_table = dsa_of_match_table,
24462549 1055 .pm = &dsa_pm_ops,
91da11f8
LB
1056 },
1057};
1058
1059static int __init dsa_init_module(void)
1060{
7df899c3
BH
1061 int rc;
1062
b73adef6
FF
1063 register_netdevice_notifier(&dsa_netdevice_nb);
1064
7df899c3
BH
1065 rc = platform_driver_register(&dsa_driver);
1066 if (rc)
1067 return rc;
1068
3e8a72d1
FF
1069 dev_add_pack(&dsa_pack_type);
1070
7df899c3 1071 return 0;
91da11f8
LB
1072}
1073module_init(dsa_init_module);
1074
1075static void __exit dsa_cleanup_module(void)
1076{
b73adef6 1077 unregister_netdevice_notifier(&dsa_netdevice_nb);
3e8a72d1 1078 dev_remove_pack(&dsa_pack_type);
91da11f8
LB
1079 platform_driver_unregister(&dsa_driver);
1080}
1081module_exit(dsa_cleanup_module);
1082
577d6a7c 1083MODULE_AUTHOR("Lennert Buytenhek <buytenh@wantstofly.org>");
91da11f8
LB
1084MODULE_DESCRIPTION("Driver for Distributed Switch Architecture switch chips");
1085MODULE_LICENSE("GPL");
1086MODULE_ALIAS("platform:dsa");
This page took 0.498558 seconds and 5 git commands to generate.