blob: dbd8558b6486915bbaf675ebe78c404efc420109 [file] [log] [blame]
Claudiu Manoilfc054d52021-01-25 14:23:53 +02001// SPDX-License-Identifier: GPL-2.0+
2/*
3 * Copyright 2019-2021 NXP
4 */
5
6#include <net/dsa.h>
7#include <dm/lists.h>
8#include <dm/device_compat.h>
9#include <dm/device-internal.h>
10#include <dm/uclass-internal.h>
11#include <linux/bitmap.h>
12#include <miiphy.h>
13
14#define DSA_PORT_CHILD_DRV_NAME "dsa-port"
15
16/* per-device internal state structure */
17struct dsa_priv {
18 struct phy_device *cpu_port_fixed_phy;
19 struct udevice *master_dev;
20 int num_ports;
21 u32 cpu_port;
22 int headroom;
23 int tailroom;
24};
25
26/* external API */
27int dsa_set_tagging(struct udevice *dev, ushort headroom, ushort tailroom)
28{
29 struct dsa_priv *priv;
30
Michael Walle108157c2021-02-24 17:40:41 +010031 if (!dev)
32 return -EINVAL;
Claudiu Manoilfc054d52021-01-25 14:23:53 +020033
34 if (headroom + tailroom > DSA_MAX_OVR)
35 return -EINVAL;
36
37 priv = dev_get_uclass_priv(dev);
38
39 if (headroom > 0)
40 priv->headroom = headroom;
41 if (tailroom > 0)
42 priv->tailroom = tailroom;
43
44 return 0;
45}
46
47/* returns the DSA master Ethernet device */
48struct udevice *dsa_get_master(struct udevice *dev)
49{
Michael Walle108157c2021-02-24 17:40:41 +010050 struct dsa_priv *priv;
Claudiu Manoilfc054d52021-01-25 14:23:53 +020051
Michael Walle108157c2021-02-24 17:40:41 +010052 if (!dev)
Claudiu Manoilfc054d52021-01-25 14:23:53 +020053 return NULL;
54
Michael Walle108157c2021-02-24 17:40:41 +010055 priv = dev_get_uclass_priv(dev);
56
Claudiu Manoilfc054d52021-01-25 14:23:53 +020057 return priv->master_dev;
58}
59
60/*
61 * Start the desired port, the CPU port and the master Eth interface.
62 * TODO: if cascaded we may need to _start ports in other switches too
63 */
64static int dsa_port_start(struct udevice *pdev)
65{
66 struct udevice *dev = dev_get_parent(pdev);
67 struct dsa_priv *priv = dev_get_uclass_priv(dev);
68 struct udevice *master = dsa_get_master(dev);
69 struct dsa_ops *ops = dsa_get_ops(dev);
70 int err;
71
Claudiu Manoilfc054d52021-01-25 14:23:53 +020072 if (ops->port_enable) {
73 struct dsa_port_pdata *port_pdata;
74
75 port_pdata = dev_get_parent_plat(pdev);
76 err = ops->port_enable(dev, port_pdata->index,
77 port_pdata->phy);
78 if (err)
79 return err;
80
81 err = ops->port_enable(dev, priv->cpu_port,
82 priv->cpu_port_fixed_phy);
83 if (err)
84 return err;
85 }
86
87 return eth_get_ops(master)->start(master);
88}
89
90/* Stop the desired port, the CPU port and the master Eth interface */
91static void dsa_port_stop(struct udevice *pdev)
92{
93 struct udevice *dev = dev_get_parent(pdev);
94 struct dsa_priv *priv = dev_get_uclass_priv(dev);
95 struct udevice *master = dsa_get_master(dev);
96 struct dsa_ops *ops = dsa_get_ops(dev);
97
Claudiu Manoilfc054d52021-01-25 14:23:53 +020098 if (ops->port_disable) {
99 struct dsa_port_pdata *port_pdata;
100
101 port_pdata = dev_get_parent_plat(pdev);
102 ops->port_disable(dev, port_pdata->index, port_pdata->phy);
103 ops->port_disable(dev, priv->cpu_port, NULL);
104 }
105
Michael Walle71455532021-02-24 17:40:42 +0100106 eth_get_ops(master)->stop(master);
Claudiu Manoilfc054d52021-01-25 14:23:53 +0200107}
108
109/*
110 * Insert a DSA tag and call master Ethernet send on the resulting packet
111 * We copy the frame to a stack buffer where we have reserved headroom and
112 * tailroom space. Headroom and tailroom are set to 0.
113 */
114static int dsa_port_send(struct udevice *pdev, void *packet, int length)
115{
116 struct udevice *dev = dev_get_parent(pdev);
117 struct dsa_priv *priv = dev_get_uclass_priv(dev);
118 int head = priv->headroom, tail = priv->tailroom;
119 struct udevice *master = dsa_get_master(dev);
120 struct dsa_ops *ops = dsa_get_ops(dev);
121 uchar dsa_packet_tmp[PKTSIZE_ALIGN];
122 struct dsa_port_pdata *port_pdata;
123 int err;
124
Claudiu Manoilfc054d52021-01-25 14:23:53 +0200125 if (length + head + tail > PKTSIZE_ALIGN)
126 return -EINVAL;
127
128 memset(dsa_packet_tmp, 0, head);
129 memset(dsa_packet_tmp + head + length, 0, tail);
130 memcpy(dsa_packet_tmp + head, packet, length);
131 length += head + tail;
132 /* copy back to preserve original buffer alignment */
133 memcpy(packet, dsa_packet_tmp, length);
134
135 port_pdata = dev_get_parent_plat(pdev);
136 err = ops->xmit(dev, port_pdata->index, packet, length);
137 if (err)
138 return err;
139
140 return eth_get_ops(master)->send(master, packet, length);
141}
142
143/* Receive a frame from master Ethernet, process it and pass it on */
144static int dsa_port_recv(struct udevice *pdev, int flags, uchar **packetp)
145{
146 struct udevice *dev = dev_get_parent(pdev);
147 struct dsa_priv *priv = dev_get_uclass_priv(dev);
148 int head = priv->headroom, tail = priv->tailroom;
149 struct udevice *master = dsa_get_master(dev);
150 struct dsa_ops *ops = dsa_get_ops(dev);
151 struct dsa_port_pdata *port_pdata;
152 int length, port_index, err;
153
Claudiu Manoilfc054d52021-01-25 14:23:53 +0200154 length = eth_get_ops(master)->recv(master, flags, packetp);
155 if (length <= 0)
156 return length;
157
158 /*
159 * If we receive frames from a different port or frames that DSA driver
160 * doesn't like we discard them here.
161 * In case of discard we return with no frame and expect to be called
162 * again instead of looping here, so upper layer can deal with timeouts.
163 */
164 port_pdata = dev_get_parent_plat(pdev);
165 err = ops->rcv(dev, &port_index, *packetp, length);
166 if (err || port_index != port_pdata->index || (length <= head + tail)) {
167 if (eth_get_ops(master)->free_pkt)
168 eth_get_ops(master)->free_pkt(master, *packetp, length);
169 return -EAGAIN;
170 }
171
172 /*
173 * We move the pointer over headroom here to avoid a copy. If free_pkt
174 * gets called we move the pointer back before calling master free_pkt.
175 */
176 *packetp += head;
177
178 return length - head - tail;
179}
180
181static int dsa_port_free_pkt(struct udevice *pdev, uchar *packet, int length)
182{
183 struct udevice *dev = dev_get_parent(pdev);
184 struct udevice *master = dsa_get_master(dev);
185 struct dsa_priv *priv;
186
Claudiu Manoilfc054d52021-01-25 14:23:53 +0200187 priv = dev_get_uclass_priv(dev);
188 if (eth_get_ops(master)->free_pkt) {
189 /* return the original pointer and length to master Eth */
190 packet -= priv->headroom;
191 length += priv->headroom - priv->tailroom;
192
193 return eth_get_ops(master)->free_pkt(master, packet, length);
194 }
195
196 return 0;
197}
198
199static int dsa_port_of_to_pdata(struct udevice *pdev)
200{
201 struct dsa_port_pdata *port_pdata;
202 struct dsa_pdata *dsa_pdata;
203 struct eth_pdata *eth_pdata;
204 struct udevice *dev;
205 const char *label;
206 u32 index;
207 int err;
208
209 if (!pdev)
210 return -ENODEV;
211
212 err = ofnode_read_u32(dev_ofnode(pdev), "reg", &index);
213 if (err)
214 return err;
215
216 dev = dev_get_parent(pdev);
217 dsa_pdata = dev_get_uclass_plat(dev);
218
219 port_pdata = dev_get_parent_plat(pdev);
220 port_pdata->index = index;
221
222 label = ofnode_read_string(dev_ofnode(pdev), "label");
223 if (label)
224 strncpy(port_pdata->name, label, DSA_PORT_NAME_LENGTH);
225
226 eth_pdata = dev_get_plat(pdev);
227 eth_pdata->priv_pdata = port_pdata;
228
229 dev_dbg(pdev, "port %d node %s\n", port_pdata->index,
230 ofnode_get_name(dev_ofnode(pdev)));
231
232 return 0;
233}
234
235static const struct eth_ops dsa_port_ops = {
236 .start = dsa_port_start,
237 .send = dsa_port_send,
238 .recv = dsa_port_recv,
239 .stop = dsa_port_stop,
240 .free_pkt = dsa_port_free_pkt,
241};
242
Vladimir Oltean5eee5ab2021-08-24 15:00:40 +0300243/*
244 * Inherit port's hwaddr from the DSA master, unless the port already has a
245 * unique MAC address specified in the environment.
246 */
247static void dsa_port_set_hwaddr(struct udevice *pdev, struct udevice *master)
248{
249 struct eth_pdata *eth_pdata, *master_pdata;
250 unsigned char env_enetaddr[ARP_HLEN];
251
252 eth_env_get_enetaddr_by_index("eth", dev_seq(pdev), env_enetaddr);
253 if (!is_zero_ethaddr(env_enetaddr)) {
254 /* individual port mac addrs require master to be promisc */
255 struct eth_ops *eth_ops = eth_get_ops(master);
256
257 if (eth_ops->set_promisc)
258 eth_ops->set_promisc(master, 1);
259
260 return;
261 }
262
263 master_pdata = dev_get_plat(master);
264 eth_pdata = dev_get_plat(pdev);
265 memcpy(eth_pdata->enetaddr, master_pdata->enetaddr, ARP_HLEN);
266 eth_env_set_enetaddr_by_index("eth", dev_seq(pdev),
267 master_pdata->enetaddr);
268}
269
Claudiu Manoilfc054d52021-01-25 14:23:53 +0200270static int dsa_port_probe(struct udevice *pdev)
271{
272 struct udevice *dev = dev_get_parent(pdev);
Claudiu Manoilfc054d52021-01-25 14:23:53 +0200273 struct dsa_port_pdata *port_pdata;
274 struct dsa_priv *dsa_priv;
275 struct udevice *master;
Vladimir Olteanf4b712b2021-08-24 15:00:39 +0300276 int err;
Claudiu Manoilfc054d52021-01-25 14:23:53 +0200277
278 port_pdata = dev_get_parent_plat(pdev);
279 dsa_priv = dev_get_uclass_priv(dev);
280
281 port_pdata->phy = dm_eth_phy_connect(pdev);
282 if (!port_pdata->phy)
283 return -ENODEV;
284
Michael Wallea02dcbb2021-02-24 17:40:39 +0100285 master = dsa_get_master(dev);
286 if (!master)
287 return -ENODEV;
288
Claudiu Manoilfc054d52021-01-25 14:23:53 +0200289 /*
Michael Wallee5d7d112021-02-24 17:40:40 +0100290 * Probe the master device. We depend on the master device for proper
291 * operation and we also need it for MAC inheritance below.
Michael Walle71455532021-02-24 17:40:42 +0100292 *
293 * TODO: we assume the master device is always there and doesn't get
294 * removed during runtime.
Michael Wallee5d7d112021-02-24 17:40:40 +0100295 */
Vladimir Olteanf4b712b2021-08-24 15:00:39 +0300296 err = device_probe(master);
297 if (err)
298 return err;
Michael Wallee5d7d112021-02-24 17:40:40 +0100299
Vladimir Oltean5eee5ab2021-08-24 15:00:40 +0300300 dsa_port_set_hwaddr(pdev, master);
Claudiu Manoilfc054d52021-01-25 14:23:53 +0200301
302 return 0;
303}
304
305static int dsa_port_remove(struct udevice *pdev)
306{
307 struct udevice *dev = dev_get_parent(pdev);
308 struct dsa_port_pdata *port_pdata;
309 struct dsa_priv *dsa_priv;
310
311 port_pdata = dev_get_parent_plat(pdev);
312 dsa_priv = dev_get_uclass_priv(dev);
313
314 port_pdata->phy = NULL;
315
316 return 0;
317}
318
319U_BOOT_DRIVER(dsa_port) = {
320 .name = DSA_PORT_CHILD_DRV_NAME,
321 .id = UCLASS_ETH,
322 .ops = &dsa_port_ops,
323 .probe = dsa_port_probe,
324 .remove = dsa_port_remove,
325 .of_to_plat = dsa_port_of_to_pdata,
326 .plat_auto = sizeof(struct eth_pdata),
327};
328
329/*
330 * This function mostly deals with pulling information out of the device tree
331 * into the pdata structure.
332 * It goes through the list of switch ports, registers an eth device for each
333 * front panel port and identifies the cpu port connected to master eth device.
334 * TODO: support cascaded switches
335 */
336static int dsa_post_bind(struct udevice *dev)
337{
338 struct dsa_pdata *pdata = dev_get_uclass_plat(dev);
339 ofnode node = dev_ofnode(dev), pnode;
340 int i, err, first_err = 0;
341
Michael Walle108157c2021-02-24 17:40:41 +0100342 if (!ofnode_valid(node))
Claudiu Manoilfc054d52021-01-25 14:23:53 +0200343 return -ENODEV;
344
345 pdata->master_node = ofnode_null();
346
347 node = ofnode_find_subnode(node, "ports");
348 if (!ofnode_valid(node))
349 node = ofnode_find_subnode(node, "ethernet-ports");
350 if (!ofnode_valid(node)) {
351 dev_err(dev, "ports node is missing under DSA device!\n");
352 return -EINVAL;
353 }
354
355 pdata->num_ports = ofnode_get_child_count(node);
356 if (pdata->num_ports <= 0 || pdata->num_ports > DSA_MAX_PORTS) {
357 dev_err(dev, "invalid number of ports (%d)\n",
358 pdata->num_ports);
359 return -EINVAL;
360 }
361
362 /* look for the CPU port */
363 ofnode_for_each_subnode(pnode, node) {
364 u32 ethernet;
365
366 if (ofnode_read_u32(pnode, "ethernet", &ethernet))
367 continue;
368
369 pdata->master_node = ofnode_get_by_phandle(ethernet);
370 pdata->cpu_port_node = pnode;
371 break;
372 }
373
374 if (!ofnode_valid(pdata->master_node)) {
375 dev_err(dev, "master eth node missing!\n");
376 return -EINVAL;
377 }
378
379 if (ofnode_read_u32(pnode, "reg", &pdata->cpu_port)) {
380 dev_err(dev, "CPU port node not valid!\n");
381 return -EINVAL;
382 }
383
384 dev_dbg(dev, "master node %s on port %d\n",
385 ofnode_get_name(pdata->master_node), pdata->cpu_port);
386
387 for (i = 0; i < pdata->num_ports; i++) {
388 char name[DSA_PORT_NAME_LENGTH];
389 struct udevice *pdev;
390
391 /*
392 * If this is the CPU port don't register it as an ETH device,
393 * we skip it on purpose since I/O to/from it from the CPU
394 * isn't useful.
395 */
396 if (i == pdata->cpu_port)
397 continue;
398
399 /*
400 * Set up default port names. If present, DT port labels
401 * will override the default port names.
402 */
403 snprintf(name, DSA_PORT_NAME_LENGTH, "%s@%d", dev->name, i);
404
405 ofnode_for_each_subnode(pnode, node) {
406 u32 reg;
407
408 if (ofnode_read_u32(pnode, "reg", &reg))
409 continue;
410
411 if (reg == i)
412 break;
413 }
414
415 /*
416 * skip registration if port id not found or if the port
417 * is explicitly disabled in DT
418 */
419 if (!ofnode_valid(pnode) || !ofnode_is_available(pnode))
420 continue;
421
422 err = device_bind_driver_to_node(dev, DSA_PORT_CHILD_DRV_NAME,
423 name, pnode, &pdev);
424 if (pdev) {
425 struct dsa_port_pdata *port_pdata;
426
427 port_pdata = dev_get_parent_plat(pdev);
428 strncpy(port_pdata->name, name, DSA_PORT_NAME_LENGTH);
429 pdev->name = port_pdata->name;
430 }
431
432 /* try to bind all ports but keep 1st error */
433 if (err && !first_err)
434 first_err = err;
435 }
436
437 if (first_err)
438 return first_err;
439
440 dev_dbg(dev, "DSA ports successfully bound\n");
441
442 return 0;
443}
444
445/**
446 * Initialize the uclass per device internal state structure (priv).
447 * TODO: pick up references to other switch devices here, if we're cascaded.
448 */
449static int dsa_pre_probe(struct udevice *dev)
450{
451 struct dsa_pdata *pdata = dev_get_uclass_plat(dev);
452 struct dsa_priv *priv = dev_get_uclass_priv(dev);
453
Claudiu Manoilfc054d52021-01-25 14:23:53 +0200454 priv->num_ports = pdata->num_ports;
455 priv->cpu_port = pdata->cpu_port;
456 priv->cpu_port_fixed_phy = fixed_phy_create(pdata->cpu_port_node);
457 if (!priv->cpu_port_fixed_phy) {
458 dev_err(dev, "Failed to register fixed-link for CPU port\n");
459 return -ENODEV;
460 }
461
462 uclass_find_device_by_ofnode(UCLASS_ETH, pdata->master_node,
463 &priv->master_dev);
464 return 0;
465}
466
467UCLASS_DRIVER(dsa) = {
468 .id = UCLASS_DSA,
469 .name = "dsa",
470 .post_bind = dsa_post_bind,
471 .pre_probe = dsa_pre_probe,
472 .per_device_auto = sizeof(struct dsa_priv),
473 .per_device_plat_auto = sizeof(struct dsa_pdata),
474 .per_child_plat_auto = sizeof(struct dsa_port_pdata),
475 .flags = DM_UC_FLAG_SEQ_ALIAS,
476};