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