2 * net/dsa/legacy.c - Hardware switch handling
3 * Copyright (c) 2008-2009 Marvell Semiconductor
4 * Copyright (c) 2013 Florian Fainelli <florian@openwrt.org>
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.
12 #include <linux/device.h>
13 #include <linux/list.h>
14 #include <linux/platform_device.h>
15 #include <linux/slab.h>
16 #include <linux/module.h>
18 #include <linux/of_mdio.h>
19 #include <linux/of_platform.h>
20 #include <linux/of_net.h>
21 #include <linux/netdevice.h>
22 #include <linux/sysfs.h>
23 #include <linux/phy_fixed.h>
24 #include <linux/etherdevice.h>
28 /* switch driver registration ***********************************************/
29 static DEFINE_MUTEX(dsa_switch_drivers_mutex
);
30 static LIST_HEAD(dsa_switch_drivers
);
32 void register_switch_driver(struct dsa_switch_driver
*drv
)
34 mutex_lock(&dsa_switch_drivers_mutex
);
35 list_add_tail(&drv
->list
, &dsa_switch_drivers
);
36 mutex_unlock(&dsa_switch_drivers_mutex
);
38 EXPORT_SYMBOL_GPL(register_switch_driver
);
40 void unregister_switch_driver(struct dsa_switch_driver
*drv
)
42 mutex_lock(&dsa_switch_drivers_mutex
);
43 list_del_init(&drv
->list
);
44 mutex_unlock(&dsa_switch_drivers_mutex
);
46 EXPORT_SYMBOL_GPL(unregister_switch_driver
);
48 static const struct dsa_switch_ops
*
49 dsa_switch_probe(struct device
*parent
, struct device
*host_dev
, int sw_addr
,
50 const char **_name
, void **priv
)
52 const struct dsa_switch_ops
*ret
;
53 struct list_head
*list
;
59 mutex_lock(&dsa_switch_drivers_mutex
);
60 list_for_each(list
, &dsa_switch_drivers
) {
61 const struct dsa_switch_ops
*ops
;
62 struct dsa_switch_driver
*drv
;
64 drv
= list_entry(list
, struct dsa_switch_driver
, list
);
67 name
= ops
->probe(parent
, host_dev
, sw_addr
, priv
);
73 mutex_unlock(&dsa_switch_drivers_mutex
);
80 /* basic switch operations **************************************************/
81 static int dsa_cpu_dsa_setups(struct dsa_switch
*ds
)
85 for (port
= 0; port
< ds
->num_ports
; port
++) {
86 if (!(dsa_is_cpu_port(ds
, port
) || dsa_is_dsa_port(ds
, port
)))
89 ret
= dsa_port_link_register_of(&ds
->ports
[port
]);
96 static int dsa_switch_setup_one(struct dsa_switch
*ds
,
97 struct net_device
*master
)
99 const struct dsa_switch_ops
*ops
= ds
->ops
;
100 struct dsa_switch_tree
*dst
= ds
->dst
;
101 struct dsa_chip_data
*cd
= ds
->cd
;
102 bool valid_name_found
= false;
103 int index
= ds
->index
;
108 * Validate supplied switch configuration.
110 for (i
= 0; i
< ds
->num_ports
; i
++) {
115 name
= cd
->port_names
[i
];
120 if (!strcmp(name
, "cpu")) {
123 "multiple cpu ports?!\n");
126 dst
->cpu_dp
= &ds
->ports
[i
];
127 dst
->cpu_dp
->master
= master
;
128 dp
->type
= DSA_PORT_TYPE_CPU
;
129 } else if (!strcmp(name
, "dsa")) {
130 dp
->type
= DSA_PORT_TYPE_DSA
;
132 dp
->type
= DSA_PORT_TYPE_USER
;
134 valid_name_found
= true;
137 if (!valid_name_found
&& i
== ds
->num_ports
)
140 /* Make the built-in MII bus mask match the number of ports,
141 * switch drivers can override this later
143 ds
->phys_mii_mask
|= dsa_user_ports(ds
);
146 * If the CPU connects to this switch, set the switch tree
147 * tagging protocol to the preferred tagging format of this
150 if (dst
->cpu_dp
->ds
== ds
) {
151 const struct dsa_device_ops
*tag_ops
;
152 enum dsa_tag_protocol tag_protocol
;
154 tag_protocol
= ops
->get_tag_protocol(ds
, dst
->cpu_dp
->index
);
155 tag_ops
= dsa_resolve_tag_protocol(tag_protocol
);
157 return PTR_ERR(tag_ops
);
159 dst
->cpu_dp
->tag_ops
= tag_ops
;
161 /* Few copies for faster access in master receive hot path */
162 dst
->cpu_dp
->rcv
= dst
->cpu_dp
->tag_ops
->rcv
;
163 dst
->cpu_dp
->dst
= dst
;
166 memcpy(ds
->rtable
, cd
->rtable
, sizeof(ds
->rtable
));
169 * Do basic register setup.
171 ret
= ops
->setup(ds
);
175 ret
= dsa_switch_register_notifier(ds
);
179 if (!ds
->slave_mii_bus
&& ops
->phy_read
) {
180 ds
->slave_mii_bus
= devm_mdiobus_alloc(ds
->dev
);
181 if (!ds
->slave_mii_bus
)
183 dsa_slave_mii_bus_init(ds
);
185 ret
= mdiobus_register(ds
->slave_mii_bus
);
191 * Create network devices for physical switch ports.
193 for (i
= 0; i
< ds
->num_ports
; i
++) {
194 ds
->ports
[i
].dn
= cd
->port_dn
[i
];
195 ds
->ports
[i
].cpu_dp
= dst
->cpu_dp
;
197 if (!dsa_is_user_port(ds
, i
))
200 ret
= dsa_slave_create(&ds
->ports
[i
]);
202 netdev_err(master
, "[%d]: can't create dsa slave device for port %d(%s): %d\n",
203 index
, i
, cd
->port_names
[i
], ret
);
206 /* Perform configuration of the CPU and DSA ports */
207 ret
= dsa_cpu_dsa_setups(ds
);
209 netdev_err(master
, "[%d] : can't configure CPU and DSA ports\n",
215 static struct dsa_switch
*
216 dsa_switch_setup(struct dsa_switch_tree
*dst
, struct net_device
*master
,
217 int index
, struct device
*parent
, struct device
*host_dev
)
219 struct dsa_chip_data
*cd
= dst
->pd
->chip
+ index
;
220 const struct dsa_switch_ops
*ops
;
221 struct dsa_switch
*ds
;
227 * Probe for switch model.
229 ops
= dsa_switch_probe(parent
, host_dev
, cd
->sw_addr
, &name
, &priv
);
231 netdev_err(master
, "[%d]: could not detect attached switch\n",
233 return ERR_PTR(-EINVAL
);
235 netdev_info(master
, "[%d]: detected a %s switch\n",
240 * Allocate and initialise switch state.
242 ds
= dsa_switch_alloc(parent
, DSA_MAX_PORTS
);
244 return ERR_PTR(-ENOMEM
);
252 ret
= dsa_switch_setup_one(ds
, master
);
259 static void dsa_switch_destroy(struct dsa_switch
*ds
)
263 /* Destroy network devices for physical switch ports. */
264 for (port
= 0; port
< ds
->num_ports
; port
++) {
265 if (!dsa_is_user_port(ds
, port
))
268 if (!ds
->ports
[port
].slave
)
271 dsa_slave_destroy(ds
->ports
[port
].slave
);
274 /* Disable configuration of the CPU and DSA ports */
275 for (port
= 0; port
< ds
->num_ports
; port
++) {
276 if (!(dsa_is_cpu_port(ds
, port
) || dsa_is_dsa_port(ds
, port
)))
278 dsa_port_link_unregister_of(&ds
->ports
[port
]);
281 if (ds
->slave_mii_bus
&& ds
->ops
->phy_read
)
282 mdiobus_unregister(ds
->slave_mii_bus
);
284 dsa_switch_unregister_notifier(ds
);
287 /* platform driver init and cleanup *****************************************/
288 static int dev_is_class(struct device
*dev
, void *class)
290 if (dev
->class != NULL
&& !strcmp(dev
->class->name
, class))
296 static struct device
*dev_find_class(struct device
*parent
, char *class)
298 if (dev_is_class(parent
, class)) {
303 return device_find_child(parent
, class, dev_is_class
);
306 struct mii_bus
*dsa_host_dev_to_mii_bus(struct device
*dev
)
310 d
= dev_find_class(dev
, "mdio_bus");
322 EXPORT_SYMBOL_GPL(dsa_host_dev_to_mii_bus
);
325 static int dsa_of_setup_routing_table(struct dsa_platform_data
*pd
,
326 struct dsa_chip_data
*cd
,
327 int chip_index
, int port_index
,
328 struct device_node
*link
)
332 struct device_node
*parent_sw
;
335 parent_sw
= of_get_parent(link
);
339 reg
= of_get_property(parent_sw
, "reg", &len
);
340 if (!reg
|| (len
!= sizeof(*reg
) * 2))
344 * Get the destination switch number from the second field of its 'reg'
345 * property, i.e. for "reg = <0x19 1>" sw_addr is '1'.
347 link_sw_addr
= be32_to_cpup(reg
+ 1);
349 if (link_sw_addr
>= pd
->nr_chips
)
352 cd
->rtable
[link_sw_addr
] = port_index
;
357 static int dsa_of_probe_links(struct dsa_platform_data
*pd
,
358 struct dsa_chip_data
*cd
,
359 int chip_index
, int port_index
,
360 struct device_node
*port
,
361 const char *port_name
)
363 struct device_node
*link
;
367 for (link_index
= 0;; link_index
++) {
368 link
= of_parse_phandle(port
, "link", link_index
);
372 if (!strcmp(port_name
, "dsa") && pd
->nr_chips
> 1) {
373 ret
= dsa_of_setup_routing_table(pd
, cd
, chip_index
,
382 static void dsa_of_free_platform_data(struct dsa_platform_data
*pd
)
387 for (i
= 0; i
< pd
->nr_chips
; i
++) {
389 while (port_index
< DSA_MAX_PORTS
) {
390 kfree(pd
->chip
[i
].port_names
[port_index
]);
394 /* Drop our reference to the MDIO bus device */
395 put_device(pd
->chip
[i
].host_dev
);
400 static int dsa_of_probe(struct device
*dev
)
402 struct device_node
*np
= dev
->of_node
;
403 struct device_node
*child
, *mdio
, *ethernet
, *port
;
404 struct mii_bus
*mdio_bus
, *mdio_bus_switch
;
405 struct net_device
*ethernet_dev
;
406 struct dsa_platform_data
*pd
;
407 struct dsa_chip_data
*cd
;
408 const char *port_name
;
409 int chip_index
, port_index
;
410 const unsigned int *sw_addr
, *port_reg
;
414 mdio
= of_parse_phandle(np
, "dsa,mii-bus", 0);
418 mdio_bus
= of_mdio_find_bus(mdio
);
420 return -EPROBE_DEFER
;
422 ethernet
= of_parse_phandle(np
, "dsa,ethernet", 0);
428 ethernet_dev
= of_find_net_device_by_node(ethernet
);
434 pd
= kzalloc(sizeof(*pd
), GFP_KERNEL
);
437 goto out_put_ethernet
;
440 dev
->platform_data
= pd
;
441 pd
->of_netdev
= ethernet_dev
;
442 pd
->nr_chips
= of_get_available_child_count(np
);
443 if (pd
->nr_chips
> DSA_MAX_SWITCHES
)
444 pd
->nr_chips
= DSA_MAX_SWITCHES
;
446 pd
->chip
= kcalloc(pd
->nr_chips
, sizeof(struct dsa_chip_data
),
454 for_each_available_child_of_node(np
, child
) {
458 cd
= &pd
->chip
[chip_index
];
462 /* Initialize the routing table */
463 for (i
= 0; i
< DSA_MAX_SWITCHES
; ++i
)
464 cd
->rtable
[i
] = DSA_RTABLE_NONE
;
466 /* When assigning the host device, increment its refcount */
467 cd
->host_dev
= get_device(&mdio_bus
->dev
);
469 sw_addr
= of_get_property(child
, "reg", NULL
);
473 cd
->sw_addr
= be32_to_cpup(sw_addr
);
474 if (cd
->sw_addr
>= PHY_MAX_ADDR
)
477 if (!of_property_read_u32(child
, "eeprom-length", &eeprom_len
))
478 cd
->eeprom_len
= eeprom_len
;
480 mdio
= of_parse_phandle(child
, "mii-bus", 0);
482 mdio_bus_switch
= of_mdio_find_bus(mdio
);
483 if (!mdio_bus_switch
) {
488 /* Drop the mdio_bus device ref, replacing the host
489 * device with the mdio_bus_switch device, keeping
490 * the refcount from of_mdio_find_bus() above.
492 put_device(cd
->host_dev
);
493 cd
->host_dev
= &mdio_bus_switch
->dev
;
496 for_each_available_child_of_node(child
, port
) {
497 port_reg
= of_get_property(port
, "reg", NULL
);
501 port_index
= be32_to_cpup(port_reg
);
502 if (port_index
>= DSA_MAX_PORTS
)
505 port_name
= of_get_property(port
, "label", NULL
);
509 cd
->port_dn
[port_index
] = port
;
511 cd
->port_names
[port_index
] = kstrdup(port_name
,
513 if (!cd
->port_names
[port_index
]) {
518 ret
= dsa_of_probe_links(pd
, cd
, chip_index
,
519 port_index
, port
, port_name
);
526 /* The individual chips hold their own refcount on the mdio bus,
528 put_device(&mdio_bus
->dev
);
533 dsa_of_free_platform_data(pd
);
536 dev
->platform_data
= NULL
;
538 put_device(ðernet_dev
->dev
);
540 put_device(&mdio_bus
->dev
);
544 static void dsa_of_remove(struct device
*dev
)
546 struct dsa_platform_data
*pd
= dev
->platform_data
;
551 dsa_of_free_platform_data(pd
);
552 put_device(&pd
->of_netdev
->dev
);
556 static inline int dsa_of_probe(struct device
*dev
)
561 static inline void dsa_of_remove(struct device
*dev
)
566 static int dsa_setup_dst(struct dsa_switch_tree
*dst
, struct net_device
*dev
,
567 struct device
*parent
, struct dsa_platform_data
*pd
)
570 unsigned configured
= 0;
574 for (i
= 0; i
< pd
->nr_chips
; i
++) {
575 struct dsa_switch
*ds
;
577 ds
= dsa_switch_setup(dst
, dev
, i
, parent
, pd
->chip
[i
].host_dev
);
579 netdev_err(dev
, "[%d]: couldn't create dsa switch instance (error %ld)\n",
590 * If no switch was found, exit cleanly
593 return -EPROBE_DEFER
;
595 return dsa_master_setup(dst
->cpu_dp
->master
, dst
->cpu_dp
);
598 static int dsa_probe(struct platform_device
*pdev
)
600 struct dsa_platform_data
*pd
= pdev
->dev
.platform_data
;
601 struct net_device
*dev
;
602 struct dsa_switch_tree
*dst
;
605 if (pdev
->dev
.of_node
) {
606 ret
= dsa_of_probe(&pdev
->dev
);
610 pd
= pdev
->dev
.platform_data
;
613 if (pd
== NULL
|| (pd
->netdev
== NULL
&& pd
->of_netdev
== NULL
))
620 dev
= dsa_dev_to_net_device(pd
->netdev
);
627 if (dev
->dsa_ptr
!= NULL
) {
633 dst
= devm_kzalloc(&pdev
->dev
, sizeof(*dst
), GFP_KERNEL
);
640 platform_set_drvdata(pdev
, dst
);
642 ret
= dsa_setup_dst(dst
, dev
, &pdev
->dev
, pd
);
651 dsa_of_remove(&pdev
->dev
);
656 static void dsa_remove_dst(struct dsa_switch_tree
*dst
)
660 dsa_master_teardown(dst
->cpu_dp
->master
);
662 for (i
= 0; i
< dst
->pd
->nr_chips
; i
++) {
663 struct dsa_switch
*ds
= dst
->ds
[i
];
666 dsa_switch_destroy(ds
);
669 dev_put(dst
->cpu_dp
->master
);
672 static int dsa_remove(struct platform_device
*pdev
)
674 struct dsa_switch_tree
*dst
= platform_get_drvdata(pdev
);
677 dsa_of_remove(&pdev
->dev
);
682 static void dsa_shutdown(struct platform_device
*pdev
)
686 #ifdef CONFIG_PM_SLEEP
687 static int dsa_suspend(struct device
*d
)
689 struct dsa_switch_tree
*dst
= dev_get_drvdata(d
);
692 for (i
= 0; i
< dst
->pd
->nr_chips
; i
++) {
693 struct dsa_switch
*ds
= dst
->ds
[i
];
696 ret
= dsa_switch_suspend(ds
);
702 static int dsa_resume(struct device
*d
)
704 struct dsa_switch_tree
*dst
= dev_get_drvdata(d
);
707 for (i
= 0; i
< dst
->pd
->nr_chips
; i
++) {
708 struct dsa_switch
*ds
= dst
->ds
[i
];
711 ret
= dsa_switch_resume(ds
);
718 static SIMPLE_DEV_PM_OPS(dsa_pm_ops
, dsa_suspend
, dsa_resume
);
720 static const struct of_device_id dsa_of_match_table
[] = {
721 { .compatible
= "marvell,dsa", },
724 MODULE_DEVICE_TABLE(of
, dsa_of_match_table
);
726 static struct platform_driver dsa_driver
= {
728 .remove
= dsa_remove
,
729 .shutdown
= dsa_shutdown
,
732 .of_match_table
= dsa_of_match_table
,
737 int dsa_legacy_register(void)
739 return platform_driver_register(&dsa_driver
);
742 void dsa_legacy_unregister(void)
744 platform_driver_unregister(&dsa_driver
);