blob: b501c90aabe45e16741f17ff663917bc82464a2e [file] [log] [blame]
Thomas Gleixner2874c5f2019-05-27 08:55:01 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Andrew Lunn83c0afa2016-06-04 21:17:07 +02002/*
3 * net/dsa/dsa2.c - Hardware switch handling, binding version 2
4 * Copyright (c) 2008-2009 Marvell Semiconductor
5 * Copyright (c) 2013 Florian Fainelli <florian@openwrt.org>
6 * Copyright (c) 2016 Andrew Lunn <andrew@lunn.ch>
Andrew Lunn83c0afa2016-06-04 21:17:07 +02007 */
8
9#include <linux/device.h>
10#include <linux/err.h>
11#include <linux/list.h>
Andrew Lunnc6e970a2017-03-28 23:45:06 +020012#include <linux/netdevice.h>
Andrew Lunn83c0afa2016-06-04 21:17:07 +020013#include <linux/slab.h>
14#include <linux/rtnetlink.h>
Andrew Lunn83c0afa2016-06-04 21:17:07 +020015#include <linux/of.h>
16#include <linux/of_net.h>
Jiri Pirko402f99e52019-03-24 11:14:26 +010017#include <net/devlink.h>
Vivien Didelotea5dd342017-05-17 15:46:03 -040018
Andrew Lunn83c0afa2016-06-04 21:17:07 +020019#include "dsa_priv.h"
20
Vivien Didelot1ca28ec2017-11-03 19:05:24 -040021static LIST_HEAD(dsa_tree_list);
Andrew Lunn83c0afa2016-06-04 21:17:07 +020022static DEFINE_MUTEX(dsa2_mutex);
23
Andrew Lunn96567d52017-03-28 23:45:07 +020024static const struct devlink_ops dsa_devlink_ops = {
25};
26
Vivien Didelot1ca28ec2017-11-03 19:05:24 -040027static struct dsa_switch_tree *dsa_tree_find(int index)
Andrew Lunn83c0afa2016-06-04 21:17:07 +020028{
29 struct dsa_switch_tree *dst;
30
Vivien Didelot1ca28ec2017-11-03 19:05:24 -040031 list_for_each_entry(dst, &dsa_tree_list, list)
Vivien Didelot8e5bf972017-11-03 19:05:22 -040032 if (dst->index == index)
Andrew Lunn83c0afa2016-06-04 21:17:07 +020033 return dst;
Vivien Didelot8e5bf972017-11-03 19:05:22 -040034
Andrew Lunn83c0afa2016-06-04 21:17:07 +020035 return NULL;
36}
37
Vivien Didelot1ca28ec2017-11-03 19:05:24 -040038static struct dsa_switch_tree *dsa_tree_alloc(int index)
Andrew Lunn83c0afa2016-06-04 21:17:07 +020039{
40 struct dsa_switch_tree *dst;
41
42 dst = kzalloc(sizeof(*dst), GFP_KERNEL);
43 if (!dst)
44 return NULL;
Vivien Didelot1ca28ec2017-11-03 19:05:24 -040045
Vivien Didelot49463b72017-11-03 19:05:21 -040046 dst->index = index;
Vivien Didelot1ca28ec2017-11-03 19:05:24 -040047
Andrew Lunn83c0afa2016-06-04 21:17:07 +020048 INIT_LIST_HEAD(&dst->list);
Vivien Didelot1ca28ec2017-11-03 19:05:24 -040049 list_add_tail(&dsa_tree_list, &dst->list);
Vivien Didelot8e5bf972017-11-03 19:05:22 -040050
Andrew Lunn83c0afa2016-06-04 21:17:07 +020051 kref_init(&dst->refcount);
52
53 return dst;
54}
55
Vivien Didelot65254102017-11-03 19:05:23 -040056static void dsa_tree_free(struct dsa_switch_tree *dst)
57{
58 list_del(&dst->list);
59 kfree(dst);
60}
61
Vivien Didelot9e741042017-11-24 11:36:06 -050062static struct dsa_switch_tree *dsa_tree_get(struct dsa_switch_tree *dst)
63{
64 if (dst)
65 kref_get(&dst->refcount);
66
67 return dst;
68}
69
Vivien Didelot1ca28ec2017-11-03 19:05:24 -040070static struct dsa_switch_tree *dsa_tree_touch(int index)
71{
72 struct dsa_switch_tree *dst;
73
74 dst = dsa_tree_find(index);
Vivien Didelot9e741042017-11-24 11:36:06 -050075 if (dst)
76 return dsa_tree_get(dst);
77 else
78 return dsa_tree_alloc(index);
Vivien Didelot65254102017-11-03 19:05:23 -040079}
80
81static void dsa_tree_release(struct kref *ref)
82{
83 struct dsa_switch_tree *dst;
84
85 dst = container_of(ref, struct dsa_switch_tree, refcount);
86
87 dsa_tree_free(dst);
88}
89
90static void dsa_tree_put(struct dsa_switch_tree *dst)
91{
Vivien Didelot9e741042017-11-24 11:36:06 -050092 if (dst)
93 kref_put(&dst->refcount, dsa_tree_release);
Vivien Didelot65254102017-11-03 19:05:23 -040094}
95
Florian Fainelli293784a2017-01-26 10:45:52 -080096static bool dsa_port_is_dsa(struct dsa_port *port)
Andrew Lunn83c0afa2016-06-04 21:17:07 +020097{
Vivien Didelot6d4e5c52017-10-27 15:55:15 -040098 return port->type == DSA_PORT_TYPE_DSA;
Florian Fainelli293784a2017-01-26 10:45:52 -080099}
100
101static bool dsa_port_is_cpu(struct dsa_port *port)
102{
Vivien Didelot6d4e5c52017-10-27 15:55:15 -0400103 return port->type == DSA_PORT_TYPE_CPU;
Andrew Lunn83c0afa2016-06-04 21:17:07 +0200104}
105
Vivien Didelotf0704642017-11-06 16:11:44 -0500106static bool dsa_port_is_user(struct dsa_port *dp)
107{
108 return dp->type == DSA_PORT_TYPE_USER;
109}
110
Vivien Didelotf163da82017-11-06 16:11:49 -0500111static struct dsa_port *dsa_tree_find_port_by_node(struct dsa_switch_tree *dst,
112 struct device_node *dn)
Andrew Lunn83c0afa2016-06-04 21:17:07 +0200113{
114 struct dsa_switch *ds;
Vivien Didelotf163da82017-11-06 16:11:49 -0500115 struct dsa_port *dp;
116 int device, port;
Andrew Lunn83c0afa2016-06-04 21:17:07 +0200117
Vivien Didelotf163da82017-11-06 16:11:49 -0500118 for (device = 0; device < DSA_MAX_SWITCHES; device++) {
119 ds = dst->ds[device];
Andrew Lunn83c0afa2016-06-04 21:17:07 +0200120 if (!ds)
121 continue;
122
Vivien Didelotf163da82017-11-06 16:11:49 -0500123 for (port = 0; port < ds->num_ports; port++) {
124 dp = &ds->ports[port];
125
126 if (dp->dn == dn)
127 return dp;
128 }
Andrew Lunn83c0afa2016-06-04 21:17:07 +0200129 }
130
131 return NULL;
132}
133
Vivien Didelot34c09a82017-11-06 16:11:51 -0500134static bool dsa_port_setup_routing_table(struct dsa_port *dp)
Andrew Lunn83c0afa2016-06-04 21:17:07 +0200135{
Vivien Didelot34c09a82017-11-06 16:11:51 -0500136 struct dsa_switch *ds = dp->ds;
137 struct dsa_switch_tree *dst = ds->dst;
138 struct device_node *dn = dp->dn;
Vivien Didelotc5286662017-11-06 16:11:50 -0500139 struct of_phandle_iterator it;
Vivien Didelotf163da82017-11-06 16:11:49 -0500140 struct dsa_port *link_dp;
Vivien Didelotc5286662017-11-06 16:11:50 -0500141 int err;
Andrew Lunn83c0afa2016-06-04 21:17:07 +0200142
Vivien Didelotc5286662017-11-06 16:11:50 -0500143 of_for_each_phandle(&it, err, dn, "link", NULL, 0) {
144 link_dp = dsa_tree_find_port_by_node(dst, it.node);
145 if (!link_dp) {
146 of_node_put(it.node);
Vivien Didelot34c09a82017-11-06 16:11:51 -0500147 return false;
Vivien Didelotc5286662017-11-06 16:11:50 -0500148 }
Andrew Lunn83c0afa2016-06-04 21:17:07 +0200149
Vivien Didelot34c09a82017-11-06 16:11:51 -0500150 ds->rtable[link_dp->ds->index] = dp->index;
Andrew Lunn83c0afa2016-06-04 21:17:07 +0200151 }
152
Vivien Didelot34c09a82017-11-06 16:11:51 -0500153 return true;
Andrew Lunn83c0afa2016-06-04 21:17:07 +0200154}
155
Vivien Didelot34c09a82017-11-06 16:11:51 -0500156static bool dsa_switch_setup_routing_table(struct dsa_switch *ds)
Andrew Lunn83c0afa2016-06-04 21:17:07 +0200157{
Vivien Didelot34c09a82017-11-06 16:11:51 -0500158 bool complete = true;
159 struct dsa_port *dp;
160 int i;
Andrew Lunn83c0afa2016-06-04 21:17:07 +0200161
Vivien Didelot34c09a82017-11-06 16:11:51 -0500162 for (i = 0; i < DSA_MAX_SWITCHES; i++)
163 ds->rtable[i] = DSA_RTABLE_NONE;
Andrew Lunn83c0afa2016-06-04 21:17:07 +0200164
Vivien Didelot34c09a82017-11-06 16:11:51 -0500165 for (i = 0; i < ds->num_ports; i++) {
166 dp = &ds->ports[i];
Andrew Lunn83c0afa2016-06-04 21:17:07 +0200167
Vivien Didelot34c09a82017-11-06 16:11:51 -0500168 if (dsa_port_is_dsa(dp)) {
169 complete = dsa_port_setup_routing_table(dp);
170 if (!complete)
171 break;
172 }
Andrew Lunn83c0afa2016-06-04 21:17:07 +0200173 }
174
Vivien Didelot34c09a82017-11-06 16:11:51 -0500175 return complete;
Andrew Lunn83c0afa2016-06-04 21:17:07 +0200176}
177
Vivien Didelot34c09a82017-11-06 16:11:51 -0500178static bool dsa_tree_setup_routing_table(struct dsa_switch_tree *dst)
Andrew Lunn83c0afa2016-06-04 21:17:07 +0200179{
180 struct dsa_switch *ds;
Vivien Didelot34c09a82017-11-06 16:11:51 -0500181 bool complete = true;
182 int device;
Andrew Lunn83c0afa2016-06-04 21:17:07 +0200183
Vivien Didelot34c09a82017-11-06 16:11:51 -0500184 for (device = 0; device < DSA_MAX_SWITCHES; device++) {
185 ds = dst->ds[device];
Andrew Lunn83c0afa2016-06-04 21:17:07 +0200186 if (!ds)
187 continue;
188
Vivien Didelot34c09a82017-11-06 16:11:51 -0500189 complete = dsa_switch_setup_routing_table(ds);
190 if (!complete)
191 break;
Andrew Lunn83c0afa2016-06-04 21:17:07 +0200192 }
193
Vivien Didelot34c09a82017-11-06 16:11:51 -0500194 return complete;
Andrew Lunn83c0afa2016-06-04 21:17:07 +0200195}
196
Vivien Didelotf0704642017-11-06 16:11:44 -0500197static struct dsa_port *dsa_tree_find_first_cpu(struct dsa_switch_tree *dst)
198{
199 struct dsa_switch *ds;
200 struct dsa_port *dp;
201 int device, port;
202
203 for (device = 0; device < DSA_MAX_SWITCHES; device++) {
204 ds = dst->ds[device];
205 if (!ds)
206 continue;
207
208 for (port = 0; port < ds->num_ports; port++) {
209 dp = &ds->ports[port];
210
211 if (dsa_port_is_cpu(dp))
212 return dp;
213 }
214 }
215
216 return NULL;
217}
218
219static int dsa_tree_setup_default_cpu(struct dsa_switch_tree *dst)
220{
221 struct dsa_switch *ds;
222 struct dsa_port *dp;
223 int device, port;
224
225 /* DSA currently only supports a single CPU port */
226 dst->cpu_dp = dsa_tree_find_first_cpu(dst);
227 if (!dst->cpu_dp) {
228 pr_warn("Tree has no master device\n");
229 return -EINVAL;
230 }
231
232 /* Assign the default CPU port to all ports of the fabric */
233 for (device = 0; device < DSA_MAX_SWITCHES; device++) {
234 ds = dst->ds[device];
235 if (!ds)
236 continue;
237
238 for (port = 0; port < ds->num_ports; port++) {
239 dp = &ds->ports[port];
240
Vivien Didelot986d7cc2017-12-05 15:34:12 -0500241 if (dsa_port_is_user(dp) || dsa_port_is_dsa(dp))
Vivien Didelotf0704642017-11-06 16:11:44 -0500242 dp->cpu_dp = dst->cpu_dp;
243 }
244 }
245
246 return 0;
247}
248
249static void dsa_tree_teardown_default_cpu(struct dsa_switch_tree *dst)
250{
251 /* DSA currently only supports a single CPU port */
252 dst->cpu_dp = NULL;
253}
254
Vivien Didelot1d277322017-11-06 16:11:48 -0500255static int dsa_port_setup(struct dsa_port *dp)
Andrew Lunn83c0afa2016-06-04 21:17:07 +0200256{
Vivien Didelot1d277322017-11-06 16:11:48 -0500257 struct dsa_switch *ds = dp->ds;
Jiri Pirko15b04ac2019-04-03 14:24:26 +0200258 struct dsa_switch_tree *dst = ds->dst;
Vivien Didelot955222c2019-08-19 16:00:48 -0400259 const unsigned char *id = (const unsigned char *)&dst->index;
260 const unsigned char len = sizeof(dst->index);
261 struct devlink_port *dlp = &dp->devlink_port;
Vladimir Oltean4ba0ebb2019-08-31 15:46:19 +0300262 bool dsa_port_link_registered = false;
263 bool devlink_port_registered = false;
Vivien Didelot955222c2019-08-19 16:00:48 -0400264 struct devlink *dl = ds->devlink;
Vladimir Oltean4ba0ebb2019-08-31 15:46:19 +0300265 bool dsa_port_enabled = false;
266 int err = 0;
Andrew Lunn96567d52017-03-28 23:45:07 +0200267
Vivien Didelot1d277322017-11-06 16:11:48 -0500268 switch (dp->type) {
269 case DSA_PORT_TYPE_UNUSED:
Vivien Didelot0394a632019-08-19 16:00:50 -0400270 dsa_port_disable(dp);
Vivien Didelot1d277322017-11-06 16:11:48 -0500271 break;
272 case DSA_PORT_TYPE_CPU:
Vivien Didelot955222c2019-08-19 16:00:48 -0400273 memset(dlp, 0, sizeof(*dlp));
274 devlink_port_attrs_set(dlp, DEVLINK_PORT_FLAVOUR_CPU,
275 dp->index, false, 0, id, len);
276 err = devlink_port_register(dl, dlp, dp->index);
277 if (err)
Vladimir Oltean4ba0ebb2019-08-31 15:46:19 +0300278 break;
279 devlink_port_registered = true;
Vivien Didelot955222c2019-08-19 16:00:48 -0400280
Jiri Pirkoda077392018-05-18 09:29:03 +0200281 err = dsa_port_link_register_of(dp);
Ioana Ciorneie70c7aa2019-05-30 09:09:07 +0300282 if (err)
Vladimir Oltean4ba0ebb2019-08-31 15:46:19 +0300283 break;
284 dsa_port_link_registered = true;
Vivien Didelot0394a632019-08-19 16:00:50 -0400285
286 err = dsa_port_enable(dp, NULL);
287 if (err)
Vladimir Oltean4ba0ebb2019-08-31 15:46:19 +0300288 break;
289 dsa_port_enabled = true;
290
Jiri Pirkoda077392018-05-18 09:29:03 +0200291 break;
Vivien Didelot1d277322017-11-06 16:11:48 -0500292 case DSA_PORT_TYPE_DSA:
Vivien Didelot955222c2019-08-19 16:00:48 -0400293 memset(dlp, 0, sizeof(*dlp));
294 devlink_port_attrs_set(dlp, DEVLINK_PORT_FLAVOUR_DSA,
295 dp->index, false, 0, id, len);
296 err = devlink_port_register(dl, dlp, dp->index);
297 if (err)
Vladimir Oltean4ba0ebb2019-08-31 15:46:19 +0300298 break;
299 devlink_port_registered = true;
Vivien Didelot955222c2019-08-19 16:00:48 -0400300
Sebastian Reichel33615362018-01-23 16:03:46 +0100301 err = dsa_port_link_register_of(dp);
Ioana Ciorneie70c7aa2019-05-30 09:09:07 +0300302 if (err)
Vladimir Oltean4ba0ebb2019-08-31 15:46:19 +0300303 break;
304 dsa_port_link_registered = true;
Vivien Didelot0394a632019-08-19 16:00:50 -0400305
306 err = dsa_port_enable(dp, NULL);
307 if (err)
Vladimir Oltean4ba0ebb2019-08-31 15:46:19 +0300308 break;
309 dsa_port_enabled = true;
310
Vivien Didelot1d277322017-11-06 16:11:48 -0500311 break;
312 case DSA_PORT_TYPE_USER:
Vivien Didelot955222c2019-08-19 16:00:48 -0400313 memset(dlp, 0, sizeof(*dlp));
314 devlink_port_attrs_set(dlp, DEVLINK_PORT_FLAVOUR_PHYSICAL,
315 dp->index, false, 0, id, len);
316 err = devlink_port_register(dl, dlp, dp->index);
317 if (err)
Vladimir Oltean4ba0ebb2019-08-31 15:46:19 +0300318 break;
319 devlink_port_registered = true;
Vivien Didelot955222c2019-08-19 16:00:48 -0400320
321 dp->mac = of_get_mac_address(dp->dn);
Vivien Didelot1d277322017-11-06 16:11:48 -0500322 err = dsa_slave_create(dp);
323 if (err)
Vladimir Oltean4ba0ebb2019-08-31 15:46:19 +0300324 break;
Vivien Didelot955222c2019-08-19 16:00:48 -0400325
326 devlink_port_type_eth_set(dlp, dp->slave);
Vivien Didelot1d277322017-11-06 16:11:48 -0500327 break;
328 }
Andrew Lunn96567d52017-03-28 23:45:07 +0200329
Vladimir Oltean4ba0ebb2019-08-31 15:46:19 +0300330 if (err && dsa_port_enabled)
331 dsa_port_disable(dp);
332 if (err && dsa_port_link_registered)
333 dsa_port_link_unregister_of(dp);
334 if (err && devlink_port_registered)
335 devlink_port_unregister(dlp);
336
337 return err;
Andrew Lunn83c0afa2016-06-04 21:17:07 +0200338}
339
Vivien Didelot1d277322017-11-06 16:11:48 -0500340static void dsa_port_teardown(struct dsa_port *dp)
Andrew Lunn83c0afa2016-06-04 21:17:07 +0200341{
Vivien Didelot955222c2019-08-19 16:00:48 -0400342 struct devlink_port *dlp = &dp->devlink_port;
Vivien Didelot1d277322017-11-06 16:11:48 -0500343
344 switch (dp->type) {
345 case DSA_PORT_TYPE_UNUSED:
346 break;
347 case DSA_PORT_TYPE_CPU:
Vivien Didelot0394a632019-08-19 16:00:50 -0400348 dsa_port_disable(dp);
Andrew Lunn4dad81e2019-04-28 19:37:19 +0200349 dsa_tag_driver_put(dp->tag_ops);
Vivien Didelot955222c2019-08-19 16:00:48 -0400350 devlink_port_unregister(dlp);
351 dsa_port_link_unregister_of(dp);
352 break;
Vivien Didelot1d277322017-11-06 16:11:48 -0500353 case DSA_PORT_TYPE_DSA:
Vivien Didelot0394a632019-08-19 16:00:50 -0400354 dsa_port_disable(dp);
Vivien Didelot955222c2019-08-19 16:00:48 -0400355 devlink_port_unregister(dlp);
Sebastian Reichel33615362018-01-23 16:03:46 +0100356 dsa_port_link_unregister_of(dp);
Vivien Didelot1d277322017-11-06 16:11:48 -0500357 break;
358 case DSA_PORT_TYPE_USER:
Vivien Didelot955222c2019-08-19 16:00:48 -0400359 devlink_port_unregister(dlp);
Vivien Didelot1d277322017-11-06 16:11:48 -0500360 if (dp->slave) {
361 dsa_slave_destroy(dp->slave);
362 dp->slave = NULL;
363 }
364 break;
Andrew Lunn83c0afa2016-06-04 21:17:07 +0200365 }
366}
367
Vivien Didelot1f08f9e2017-11-06 16:11:47 -0500368static int dsa_switch_setup(struct dsa_switch *ds)
Andrew Lunn83c0afa2016-06-04 21:17:07 +0200369{
Ioana Ciorneie70c7aa2019-05-30 09:09:07 +0300370 int err = 0;
Andrew Lunn83c0afa2016-06-04 21:17:07 +0200371
Florian Fainelli6e830d82016-06-07 16:32:39 -0700372 /* Initialize ds->phys_mii_mask before registering the slave MDIO bus
Vivien Didelot9d490b42016-08-23 12:38:56 -0400373 * driver and before ops->setup() has run, since the switch drivers and
Florian Fainelli6e830d82016-06-07 16:32:39 -0700374 * the slave MDIO bus driver rely on these values for probing PHY
375 * devices or not
376 */
Vivien Didelot02bc6e52017-10-26 11:22:56 -0400377 ds->phys_mii_mask |= dsa_user_ports(ds);
Florian Fainelli6e830d82016-06-07 16:32:39 -0700378
Andrew Lunn96567d52017-03-28 23:45:07 +0200379 /* Add the switch to devlink before calling setup, so that setup can
380 * add dpipe tables
381 */
382 ds->devlink = devlink_alloc(&dsa_devlink_ops, 0);
383 if (!ds->devlink)
384 return -ENOMEM;
385
386 err = devlink_register(ds->devlink, ds->dev);
387 if (err)
Ioana Ciorneie70c7aa2019-05-30 09:09:07 +0300388 goto free_devlink;
Andrew Lunn96567d52017-03-28 23:45:07 +0200389
Vivien Didelotf515f192017-02-03 13:20:20 -0500390 err = dsa_switch_register_notifier(ds);
391 if (err)
Ioana Ciorneie70c7aa2019-05-30 09:09:07 +0300392 goto unregister_devlink;
Vivien Didelotf515f192017-02-03 13:20:20 -0500393
Vladimir Olteanb2243b32019-05-05 13:19:20 +0300394 err = ds->ops->setup(ds);
395 if (err < 0)
Ioana Ciorneie70c7aa2019-05-30 09:09:07 +0300396 goto unregister_notifier;
Vladimir Olteanb2243b32019-05-05 13:19:20 +0300397
Vivien Didelot9d490b42016-08-23 12:38:56 -0400398 if (!ds->slave_mii_bus && ds->ops->phy_read) {
Florian Fainelli1eb59442016-06-07 16:32:40 -0700399 ds->slave_mii_bus = devm_mdiobus_alloc(ds->dev);
Ioana Ciorneie70c7aa2019-05-30 09:09:07 +0300400 if (!ds->slave_mii_bus) {
401 err = -ENOMEM;
402 goto unregister_notifier;
403 }
Florian Fainelli1eb59442016-06-07 16:32:40 -0700404
405 dsa_slave_mii_bus_init(ds);
406
407 err = mdiobus_register(ds->slave_mii_bus);
408 if (err < 0)
Ioana Ciorneie70c7aa2019-05-30 09:09:07 +0300409 goto unregister_notifier;
Florian Fainelli1eb59442016-06-07 16:32:40 -0700410 }
411
Andrew Lunn83c0afa2016-06-04 21:17:07 +0200412 return 0;
Ioana Ciorneie70c7aa2019-05-30 09:09:07 +0300413
414unregister_notifier:
415 dsa_switch_unregister_notifier(ds);
416unregister_devlink:
417 devlink_unregister(ds->devlink);
418free_devlink:
419 devlink_free(ds->devlink);
420 ds->devlink = NULL;
421
422 return err;
Andrew Lunn83c0afa2016-06-04 21:17:07 +0200423}
424
Vivien Didelot1f08f9e2017-11-06 16:11:47 -0500425static void dsa_switch_teardown(struct dsa_switch *ds)
Andrew Lunn83c0afa2016-06-04 21:17:07 +0200426{
Vivien Didelot9d490b42016-08-23 12:38:56 -0400427 if (ds->slave_mii_bus && ds->ops->phy_read)
Florian Fainelli1eb59442016-06-07 16:32:40 -0700428 mdiobus_unregister(ds->slave_mii_bus);
Vivien Didelotf515f192017-02-03 13:20:20 -0500429
430 dsa_switch_unregister_notifier(ds);
Andrew Lunn96567d52017-03-28 23:45:07 +0200431
Vladimir Oltean5e3f8472019-06-08 15:04:28 +0300432 if (ds->ops->teardown)
433 ds->ops->teardown(ds);
434
Andrew Lunn96567d52017-03-28 23:45:07 +0200435 if (ds->devlink) {
436 devlink_unregister(ds->devlink);
437 devlink_free(ds->devlink);
438 ds->devlink = NULL;
439 }
440
Andrew Lunn83c0afa2016-06-04 21:17:07 +0200441}
442
Vivien Didelot1f08f9e2017-11-06 16:11:47 -0500443static int dsa_tree_setup_switches(struct dsa_switch_tree *dst)
444{
445 struct dsa_switch *ds;
Vivien Didelot1d277322017-11-06 16:11:48 -0500446 struct dsa_port *dp;
Ioana Ciorneie70c7aa2019-05-30 09:09:07 +0300447 int device, port, i;
448 int err = 0;
Vivien Didelot1f08f9e2017-11-06 16:11:47 -0500449
450 for (device = 0; device < DSA_MAX_SWITCHES; device++) {
451 ds = dst->ds[device];
452 if (!ds)
453 continue;
454
455 err = dsa_switch_setup(ds);
456 if (err)
Ioana Ciorneie70c7aa2019-05-30 09:09:07 +0300457 goto switch_teardown;
Vivien Didelot1d277322017-11-06 16:11:48 -0500458
459 for (port = 0; port < ds->num_ports; port++) {
460 dp = &ds->ports[port];
461
462 err = dsa_port_setup(dp);
463 if (err)
Ioana Ciorneie70c7aa2019-05-30 09:09:07 +0300464 goto ports_teardown;
Vivien Didelot1d277322017-11-06 16:11:48 -0500465 }
Vivien Didelot1f08f9e2017-11-06 16:11:47 -0500466 }
467
468 return 0;
Ioana Ciorneie70c7aa2019-05-30 09:09:07 +0300469
470ports_teardown:
471 for (i = 0; i < port; i++)
472 dsa_port_teardown(&ds->ports[i]);
473
474 dsa_switch_teardown(ds);
475
476switch_teardown:
477 for (i = 0; i < device; i++) {
478 ds = dst->ds[i];
479 if (!ds)
480 continue;
481
482 for (port = 0; port < ds->num_ports; port++) {
483 dp = &ds->ports[port];
484
485 dsa_port_teardown(dp);
486 }
487
488 dsa_switch_teardown(ds);
489 }
490
491 return err;
Vivien Didelot1f08f9e2017-11-06 16:11:47 -0500492}
493
494static void dsa_tree_teardown_switches(struct dsa_switch_tree *dst)
495{
496 struct dsa_switch *ds;
Vivien Didelot1d277322017-11-06 16:11:48 -0500497 struct dsa_port *dp;
498 int device, port;
Vivien Didelot1f08f9e2017-11-06 16:11:47 -0500499
500 for (device = 0; device < DSA_MAX_SWITCHES; device++) {
501 ds = dst->ds[device];
502 if (!ds)
503 continue;
504
Vivien Didelot1d277322017-11-06 16:11:48 -0500505 for (port = 0; port < ds->num_ports; port++) {
506 dp = &ds->ports[port];
507
508 dsa_port_teardown(dp);
509 }
510
Vivien Didelot1f08f9e2017-11-06 16:11:47 -0500511 dsa_switch_teardown(ds);
512 }
513}
514
Vivien Didelot17a22fc2017-11-06 16:11:45 -0500515static int dsa_tree_setup_master(struct dsa_switch_tree *dst)
516{
517 struct dsa_port *cpu_dp = dst->cpu_dp;
518 struct net_device *master = cpu_dp->master;
519
520 /* DSA currently supports a single pair of CPU port and master device */
521 return dsa_master_setup(master, cpu_dp);
522}
523
524static void dsa_tree_teardown_master(struct dsa_switch_tree *dst)
525{
526 struct dsa_port *cpu_dp = dst->cpu_dp;
527 struct net_device *master = cpu_dp->master;
528
529 return dsa_master_teardown(master);
530}
531
Vivien Didelotec15dd42017-11-06 16:11:46 -0500532static int dsa_tree_setup(struct dsa_switch_tree *dst)
Andrew Lunn83c0afa2016-06-04 21:17:07 +0200533{
Vivien Didelot34c09a82017-11-06 16:11:51 -0500534 bool complete;
Andrew Lunn83c0afa2016-06-04 21:17:07 +0200535 int err;
536
Vivien Didelotec15dd42017-11-06 16:11:46 -0500537 if (dst->setup) {
538 pr_err("DSA: tree %d already setup! Disjoint trees?\n",
539 dst->index);
540 return -EEXIST;
541 }
542
Vivien Didelot34c09a82017-11-06 16:11:51 -0500543 complete = dsa_tree_setup_routing_table(dst);
544 if (!complete)
545 return 0;
546
Vivien Didelotf0704642017-11-06 16:11:44 -0500547 err = dsa_tree_setup_default_cpu(dst);
548 if (err)
549 return err;
550
Vivien Didelot1f08f9e2017-11-06 16:11:47 -0500551 err = dsa_tree_setup_switches(dst);
552 if (err)
Ioana Ciorneie70c7aa2019-05-30 09:09:07 +0300553 goto teardown_default_cpu;
Andrew Lunn83c0afa2016-06-04 21:17:07 +0200554
Vivien Didelot17a22fc2017-11-06 16:11:45 -0500555 err = dsa_tree_setup_master(dst);
Vivien Didelot19435632017-09-19 11:56:59 -0400556 if (err)
Ioana Ciorneie70c7aa2019-05-30 09:09:07 +0300557 goto teardown_switches;
Vivien Didelot19435632017-09-19 11:56:59 -0400558
Vivien Didelotec15dd42017-11-06 16:11:46 -0500559 dst->setup = true;
560
561 pr_info("DSA: tree %d setup\n", dst->index);
Andrew Lunn83c0afa2016-06-04 21:17:07 +0200562
563 return 0;
Ioana Ciorneie70c7aa2019-05-30 09:09:07 +0300564
565teardown_switches:
566 dsa_tree_teardown_switches(dst);
567teardown_default_cpu:
568 dsa_tree_teardown_default_cpu(dst);
569
570 return err;
Andrew Lunn83c0afa2016-06-04 21:17:07 +0200571}
572
Vivien Didelotec15dd42017-11-06 16:11:46 -0500573static void dsa_tree_teardown(struct dsa_switch_tree *dst)
Andrew Lunn83c0afa2016-06-04 21:17:07 +0200574{
Vivien Didelotec15dd42017-11-06 16:11:46 -0500575 if (!dst->setup)
Andrew Lunn83c0afa2016-06-04 21:17:07 +0200576 return;
577
Vivien Didelot17a22fc2017-11-06 16:11:45 -0500578 dsa_tree_teardown_master(dst);
Andrew Lunn83c0afa2016-06-04 21:17:07 +0200579
Vivien Didelot1f08f9e2017-11-06 16:11:47 -0500580 dsa_tree_teardown_switches(dst);
Andrew Lunn83c0afa2016-06-04 21:17:07 +0200581
Vivien Didelotf0704642017-11-06 16:11:44 -0500582 dsa_tree_teardown_default_cpu(dst);
Florian Fainelli0c73c522016-06-07 16:32:42 -0700583
Vivien Didelotec15dd42017-11-06 16:11:46 -0500584 pr_info("DSA: tree %d torn down\n", dst->index);
585
586 dst->setup = false;
Andrew Lunn83c0afa2016-06-04 21:17:07 +0200587}
588
Vivien Didelot6da2a942017-11-03 19:05:25 -0400589static void dsa_tree_remove_switch(struct dsa_switch_tree *dst,
590 unsigned int index)
591{
Vivien Didelot30817352017-11-06 16:11:52 -0500592 dsa_tree_teardown(dst);
593
Vivien Didelot6da2a942017-11-03 19:05:25 -0400594 dst->ds[index] = NULL;
595 dsa_tree_put(dst);
596}
597
598static int dsa_tree_add_switch(struct dsa_switch_tree *dst,
599 struct dsa_switch *ds)
600{
601 unsigned int index = ds->index;
Vivien Didelot30817352017-11-06 16:11:52 -0500602 int err;
Vivien Didelot6da2a942017-11-03 19:05:25 -0400603
604 if (dst->ds[index])
605 return -EBUSY;
606
607 dsa_tree_get(dst);
608 dst->ds[index] = ds;
609
Vivien Didelot30817352017-11-06 16:11:52 -0500610 err = dsa_tree_setup(dst);
Ioana Ciorneie70c7aa2019-05-30 09:09:07 +0300611 if (err) {
612 dst->ds[index] = NULL;
613 dsa_tree_put(dst);
614 }
Vivien Didelot30817352017-11-06 16:11:52 -0500615
616 return err;
Vivien Didelot6da2a942017-11-03 19:05:25 -0400617}
618
Vivien Didelot06e24d02017-11-03 19:05:29 -0400619static int dsa_port_parse_user(struct dsa_port *dp, const char *name)
620{
621 if (!name)
622 name = "eth%d";
623
624 dp->type = DSA_PORT_TYPE_USER;
625 dp->name = name;
626
627 return 0;
628}
629
630static int dsa_port_parse_dsa(struct dsa_port *dp)
631{
632 dp->type = DSA_PORT_TYPE_DSA;
633
634 return 0;
635}
636
637static int dsa_port_parse_cpu(struct dsa_port *dp, struct net_device *master)
638{
Vivien Didelot7354fcb2017-11-03 19:05:30 -0400639 struct dsa_switch *ds = dp->ds;
640 struct dsa_switch_tree *dst = ds->dst;
Vivien Didelot62fc9582017-09-29 17:19:17 -0400641 const struct dsa_device_ops *tag_ops;
Andrew Lunn7b314362016-08-22 16:01:01 +0200642 enum dsa_tag_protocol tag_protocol;
Andrew Lunn83c0afa2016-06-04 21:17:07 +0200643
Florian Fainelli5ed4e3e2017-11-10 15:22:52 -0800644 tag_protocol = ds->ops->get_tag_protocol(ds, dp->index);
Andrew Lunnc39e2a12019-04-28 19:37:18 +0200645 tag_ops = dsa_tag_driver_get(tag_protocol);
Vivien Didelot62fc9582017-09-29 17:19:17 -0400646 if (IS_ERR(tag_ops)) {
Florian Fainelli9f9e7722017-07-24 10:49:23 -0700647 dev_warn(ds->dev, "No tagger for this switch\n");
Vivien Didelot62fc9582017-09-29 17:19:17 -0400648 return PTR_ERR(tag_ops);
Florian Fainelli9f9e7722017-07-24 10:49:23 -0700649 }
650
Vivien Didelot7354fcb2017-11-03 19:05:30 -0400651 dp->type = DSA_PORT_TYPE_CPU;
Vladimir Olteancc1939e2019-05-05 13:19:23 +0300652 dp->filter = tag_ops->filter;
Vivien Didelot7354fcb2017-11-03 19:05:30 -0400653 dp->rcv = tag_ops->rcv;
654 dp->tag_ops = tag_ops;
655 dp->master = master;
656 dp->dst = dst;
Vivien Didelot3e41f932017-09-29 17:19:19 -0400657
Vivien Didelot7354fcb2017-11-03 19:05:30 -0400658 return 0;
659}
660
Vivien Didelotfd223e22017-10-27 15:55:14 -0400661static int dsa_port_parse_of(struct dsa_port *dp, struct device_node *dn)
662{
Vivien Didelot6d4e5c52017-10-27 15:55:15 -0400663 struct device_node *ethernet = of_parse_phandle(dn, "ethernet", 0);
Vivien Didelot1838fa82017-10-27 15:55:18 -0400664 const char *name = of_get_property(dn, "label", NULL);
Vivien Didelot54df6fa2017-11-03 19:05:28 -0400665 bool link = of_property_read_bool(dn, "link");
Vivien Didelot6d4e5c52017-10-27 15:55:15 -0400666
Vivien Didelot06e24d02017-11-03 19:05:29 -0400667 dp->dn = dn;
668
Vivien Didelot6d4e5c52017-10-27 15:55:15 -0400669 if (ethernet) {
Vivien Didelotcbabb0a2017-10-27 15:55:17 -0400670 struct net_device *master;
671
672 master = of_find_net_device_by_node(ethernet);
673 if (!master)
674 return -EPROBE_DEFER;
675
Vivien Didelot06e24d02017-11-03 19:05:29 -0400676 return dsa_port_parse_cpu(dp, master);
Vivien Didelot6d4e5c52017-10-27 15:55:15 -0400677 }
678
Vivien Didelot06e24d02017-11-03 19:05:29 -0400679 if (link)
680 return dsa_port_parse_dsa(dp);
Vivien Didelotfd223e22017-10-27 15:55:14 -0400681
Vivien Didelot06e24d02017-11-03 19:05:29 -0400682 return dsa_port_parse_user(dp, name);
Vivien Didelotfd223e22017-10-27 15:55:14 -0400683}
684
Vivien Didelot975e6e32017-11-03 19:05:27 -0400685static int dsa_switch_parse_ports_of(struct dsa_switch *ds,
686 struct device_node *dn)
Andrew Lunn83c0afa2016-06-04 21:17:07 +0200687{
Vivien Didelot5b32fe02017-10-27 15:55:13 -0400688 struct device_node *ports, *port;
Vivien Didelotfd223e22017-10-27 15:55:14 -0400689 struct dsa_port *dp;
Wen Yang9919a362019-02-25 15:22:19 +0800690 int err = 0;
Andrew Lunn83c0afa2016-06-04 21:17:07 +0200691 u32 reg;
Vivien Didelot5b32fe02017-10-27 15:55:13 -0400692
693 ports = of_get_child_by_name(dn, "ports");
694 if (!ports) {
695 dev_err(ds->dev, "no ports child node found\n");
696 return -EINVAL;
697 }
Andrew Lunn83c0afa2016-06-04 21:17:07 +0200698
699 for_each_available_child_of_node(ports, port) {
700 err = of_property_read_u32(port, "reg", &reg);
701 if (err)
Wen Yang9919a362019-02-25 15:22:19 +0800702 goto out_put_node;
Andrew Lunn83c0afa2016-06-04 21:17:07 +0200703
Wen Yang9919a362019-02-25 15:22:19 +0800704 if (reg >= ds->num_ports) {
705 err = -EINVAL;
706 goto out_put_node;
707 }
Andrew Lunn83c0afa2016-06-04 21:17:07 +0200708
Vivien Didelotfd223e22017-10-27 15:55:14 -0400709 dp = &ds->ports[reg];
710
711 err = dsa_port_parse_of(dp, port);
712 if (err)
Wen Yang9919a362019-02-25 15:22:19 +0800713 goto out_put_node;
Andrew Lunn83c0afa2016-06-04 21:17:07 +0200714 }
715
Wen Yang9919a362019-02-25 15:22:19 +0800716out_put_node:
717 of_node_put(ports);
718 return err;
Andrew Lunn83c0afa2016-06-04 21:17:07 +0200719}
720
Vivien Didelot975e6e32017-11-03 19:05:27 -0400721static int dsa_switch_parse_member_of(struct dsa_switch *ds,
722 struct device_node *dn)
723{
724 u32 m[2] = { 0, 0 };
725 int sz;
726
727 /* Don't error out if this optional property isn't found */
728 sz = of_property_read_variable_u32_array(dn, "dsa,member", m, 2, 2);
729 if (sz < 0 && sz != -EINVAL)
730 return sz;
731
732 ds->index = m[1];
733 if (ds->index >= DSA_MAX_SWITCHES)
734 return -EINVAL;
735
736 ds->dst = dsa_tree_touch(m[0]);
737 if (!ds->dst)
738 return -ENOMEM;
739
740 return 0;
741}
742
743static int dsa_switch_parse_of(struct dsa_switch *ds, struct device_node *dn)
744{
745 int err;
746
747 err = dsa_switch_parse_member_of(ds, dn);
748 if (err)
749 return err;
750
751 return dsa_switch_parse_ports_of(ds, dn);
752}
753
Vivien Didelotfd223e22017-10-27 15:55:14 -0400754static int dsa_port_parse(struct dsa_port *dp, const char *name,
755 struct device *dev)
756{
Vivien Didelot6d4e5c52017-10-27 15:55:15 -0400757 if (!strcmp(name, "cpu")) {
Vivien Didelotcbabb0a2017-10-27 15:55:17 -0400758 struct net_device *master;
759
760 master = dsa_dev_to_net_device(dev);
761 if (!master)
762 return -EPROBE_DEFER;
763
764 dev_put(master);
765
Vivien Didelot06e24d02017-11-03 19:05:29 -0400766 return dsa_port_parse_cpu(dp, master);
Vivien Didelot6d4e5c52017-10-27 15:55:15 -0400767 }
768
Vivien Didelot06e24d02017-11-03 19:05:29 -0400769 if (!strcmp(name, "dsa"))
770 return dsa_port_parse_dsa(dp);
Vivien Didelotfd223e22017-10-27 15:55:14 -0400771
Vivien Didelot06e24d02017-11-03 19:05:29 -0400772 return dsa_port_parse_user(dp, name);
Vivien Didelotfd223e22017-10-27 15:55:14 -0400773}
774
Vivien Didelot975e6e32017-11-03 19:05:27 -0400775static int dsa_switch_parse_ports(struct dsa_switch *ds,
776 struct dsa_chip_data *cd)
Florian Fainelli71e0bbd2017-02-04 13:02:43 -0800777{
778 bool valid_name_found = false;
Vivien Didelotfd223e22017-10-27 15:55:14 -0400779 struct dsa_port *dp;
780 struct device *dev;
781 const char *name;
Florian Fainelli71e0bbd2017-02-04 13:02:43 -0800782 unsigned int i;
Vivien Didelotfd223e22017-10-27 15:55:14 -0400783 int err;
Florian Fainelli71e0bbd2017-02-04 13:02:43 -0800784
785 for (i = 0; i < DSA_MAX_PORTS; i++) {
Vivien Didelotfd223e22017-10-27 15:55:14 -0400786 name = cd->port_names[i];
787 dev = cd->netdev[i];
788 dp = &ds->ports[i];
789
790 if (!name)
Florian Fainelli71e0bbd2017-02-04 13:02:43 -0800791 continue;
792
Vivien Didelotfd223e22017-10-27 15:55:14 -0400793 err = dsa_port_parse(dp, name, dev);
794 if (err)
795 return err;
796
Florian Fainelli71e0bbd2017-02-04 13:02:43 -0800797 valid_name_found = true;
798 }
799
800 if (!valid_name_found && i == DSA_MAX_PORTS)
801 return -EINVAL;
802
803 return 0;
804}
805
Vivien Didelot975e6e32017-11-03 19:05:27 -0400806static int dsa_switch_parse(struct dsa_switch *ds, struct dsa_chip_data *cd)
Andrew Lunn83c0afa2016-06-04 21:17:07 +0200807{
Vivien Didelot975e6e32017-11-03 19:05:27 -0400808 ds->cd = cd;
Andrew Lunn83c0afa2016-06-04 21:17:07 +0200809
Vivien Didelot975e6e32017-11-03 19:05:27 -0400810 /* We don't support interconnected switches nor multiple trees via
811 * platform data, so this is the unique switch of the tree.
812 */
813 ds->index = 0;
814 ds->dst = dsa_tree_touch(0);
815 if (!ds->dst)
816 return -ENOMEM;
Andrew Lunn83c0afa2016-06-04 21:17:07 +0200817
Vivien Didelot975e6e32017-11-03 19:05:27 -0400818 return dsa_switch_parse_ports(ds, cd);
Florian Fainelli71e0bbd2017-02-04 13:02:43 -0800819}
820
Vivien Didelot30817352017-11-06 16:11:52 -0500821static int dsa_switch_add(struct dsa_switch *ds)
822{
823 struct dsa_switch_tree *dst = ds->dst;
824
825 return dsa_tree_add_switch(dst, ds);
826}
827
Vivien Didelotb4fbb342017-11-06 16:11:53 -0500828static int dsa_switch_probe(struct dsa_switch *ds)
Andrew Lunn83c0afa2016-06-04 21:17:07 +0200829{
Vivien Didelot23c9ee42017-05-26 18:12:51 -0400830 struct dsa_chip_data *pdata = ds->dev->platform_data;
831 struct device_node *np = ds->dev->of_node;
Vivien Didelot34c09a82017-11-06 16:11:51 -0500832 int err;
Andrew Lunn83c0afa2016-06-04 21:17:07 +0200833
Vivien Didelot975e6e32017-11-03 19:05:27 -0400834 if (np)
835 err = dsa_switch_parse_of(ds, np);
836 else if (pdata)
837 err = dsa_switch_parse(ds, pdata);
838 else
839 err = -ENODEV;
Andrew Lunn83c0afa2016-06-04 21:17:07 +0200840
Vivien Didelot975e6e32017-11-03 19:05:27 -0400841 if (err)
842 return err;
Andrew Lunn83c0afa2016-06-04 21:17:07 +0200843
Vivien Didelot30817352017-11-06 16:11:52 -0500844 return dsa_switch_add(ds);
Andrew Lunn83c0afa2016-06-04 21:17:07 +0200845}
846
Vivien Didelota0c02162017-01-27 15:29:36 -0500847struct dsa_switch *dsa_switch_alloc(struct device *dev, size_t n)
848{
Vivien Didelota0c02162017-01-27 15:29:36 -0500849 struct dsa_switch *ds;
Vivien Didelot818be842017-01-27 15:29:38 -0500850 int i;
Vivien Didelota0c02162017-01-27 15:29:36 -0500851
Gustavo A. R. Silva33b363e2019-02-07 19:16:03 -0600852 ds = devm_kzalloc(dev, struct_size(ds, ports, n), GFP_KERNEL);
Vivien Didelota0c02162017-01-27 15:29:36 -0500853 if (!ds)
854 return NULL;
855
856 ds->dev = dev;
857 ds->num_ports = n;
858
Vivien Didelot818be842017-01-27 15:29:38 -0500859 for (i = 0; i < ds->num_ports; ++i) {
860 ds->ports[i].index = i;
861 ds->ports[i].ds = ds;
862 }
863
Vivien Didelota0c02162017-01-27 15:29:36 -0500864 return ds;
865}
866EXPORT_SYMBOL_GPL(dsa_switch_alloc);
867
Vivien Didelot23c9ee42017-05-26 18:12:51 -0400868int dsa_register_switch(struct dsa_switch *ds)
Andrew Lunn83c0afa2016-06-04 21:17:07 +0200869{
870 int err;
871
872 mutex_lock(&dsa2_mutex);
Vivien Didelotb4fbb342017-11-06 16:11:53 -0500873 err = dsa_switch_probe(ds);
Vivien Didelot9e741042017-11-24 11:36:06 -0500874 dsa_tree_put(ds->dst);
Andrew Lunn83c0afa2016-06-04 21:17:07 +0200875 mutex_unlock(&dsa2_mutex);
876
877 return err;
878}
879EXPORT_SYMBOL_GPL(dsa_register_switch);
880
Vivien Didelotb4fbb342017-11-06 16:11:53 -0500881static void dsa_switch_remove(struct dsa_switch *ds)
Andrew Lunn83c0afa2016-06-04 21:17:07 +0200882{
883 struct dsa_switch_tree *dst = ds->dst;
Vivien Didelot6da2a942017-11-03 19:05:25 -0400884 unsigned int index = ds->index;
Andrew Lunn83c0afa2016-06-04 21:17:07 +0200885
Vivien Didelot6da2a942017-11-03 19:05:25 -0400886 dsa_tree_remove_switch(dst, index);
Andrew Lunn83c0afa2016-06-04 21:17:07 +0200887}
888
889void dsa_unregister_switch(struct dsa_switch *ds)
890{
891 mutex_lock(&dsa2_mutex);
Vivien Didelotb4fbb342017-11-06 16:11:53 -0500892 dsa_switch_remove(ds);
Andrew Lunn83c0afa2016-06-04 21:17:07 +0200893 mutex_unlock(&dsa2_mutex);
894}
895EXPORT_SYMBOL_GPL(dsa_unregister_switch);