OSDN Git Service

net: dsa: request drivers to perform FDB isolation
[uclinux-h8/linux.git] / drivers / net / dsa / sja1105 / sja1105_main.c
1 // SPDX-License-Identifier: GPL-2.0
2 /* Copyright (c) 2018, Sensor-Technik Wiedemann GmbH
3  * Copyright (c) 2018-2019, Vladimir Oltean <olteanv@gmail.com>
4  */
5
6 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
7
8 #include <linux/delay.h>
9 #include <linux/module.h>
10 #include <linux/printk.h>
11 #include <linux/spi/spi.h>
12 #include <linux/errno.h>
13 #include <linux/gpio/consumer.h>
14 #include <linux/phylink.h>
15 #include <linux/of.h>
16 #include <linux/of_net.h>
17 #include <linux/of_mdio.h>
18 #include <linux/of_device.h>
19 #include <linux/pcs/pcs-xpcs.h>
20 #include <linux/netdev_features.h>
21 #include <linux/netdevice.h>
22 #include <linux/if_bridge.h>
23 #include <linux/if_ether.h>
24 #include <linux/dsa/8021q.h>
25 #include "sja1105.h"
26 #include "sja1105_tas.h"
27
28 #define SJA1105_UNKNOWN_MULTICAST       0x010000000000ull
29
30 /* Configure the optional reset pin and bring up switch */
31 static int sja1105_hw_reset(struct device *dev, unsigned int pulse_len,
32                             unsigned int startup_delay)
33 {
34         struct gpio_desc *gpio;
35
36         gpio = gpiod_get_optional(dev, "reset", GPIOD_OUT_HIGH);
37         if (IS_ERR(gpio))
38                 return PTR_ERR(gpio);
39
40         if (!gpio)
41                 return 0;
42
43         gpiod_set_value_cansleep(gpio, 1);
44         /* Wait for minimum reset pulse length */
45         msleep(pulse_len);
46         gpiod_set_value_cansleep(gpio, 0);
47         /* Wait until chip is ready after reset */
48         msleep(startup_delay);
49
50         gpiod_put(gpio);
51
52         return 0;
53 }
54
55 static void
56 sja1105_port_allow_traffic(struct sja1105_l2_forwarding_entry *l2_fwd,
57                            int from, int to, bool allow)
58 {
59         if (allow)
60                 l2_fwd[from].reach_port |= BIT(to);
61         else
62                 l2_fwd[from].reach_port &= ~BIT(to);
63 }
64
65 static bool sja1105_can_forward(struct sja1105_l2_forwarding_entry *l2_fwd,
66                                 int from, int to)
67 {
68         return !!(l2_fwd[from].reach_port & BIT(to));
69 }
70
71 static int sja1105_is_vlan_configured(struct sja1105_private *priv, u16 vid)
72 {
73         struct sja1105_vlan_lookup_entry *vlan;
74         int count, i;
75
76         vlan = priv->static_config.tables[BLK_IDX_VLAN_LOOKUP].entries;
77         count = priv->static_config.tables[BLK_IDX_VLAN_LOOKUP].entry_count;
78
79         for (i = 0; i < count; i++)
80                 if (vlan[i].vlanid == vid)
81                         return i;
82
83         /* Return an invalid entry index if not found */
84         return -1;
85 }
86
87 static int sja1105_drop_untagged(struct dsa_switch *ds, int port, bool drop)
88 {
89         struct sja1105_private *priv = ds->priv;
90         struct sja1105_mac_config_entry *mac;
91
92         mac = priv->static_config.tables[BLK_IDX_MAC_CONFIG].entries;
93
94         if (mac[port].drpuntag == drop)
95                 return 0;
96
97         mac[port].drpuntag = drop;
98
99         return sja1105_dynamic_config_write(priv, BLK_IDX_MAC_CONFIG, port,
100                                             &mac[port], true);
101 }
102
103 static int sja1105_pvid_apply(struct sja1105_private *priv, int port, u16 pvid)
104 {
105         struct sja1105_mac_config_entry *mac;
106
107         mac = priv->static_config.tables[BLK_IDX_MAC_CONFIG].entries;
108
109         if (mac[port].vlanid == pvid)
110                 return 0;
111
112         mac[port].vlanid = pvid;
113
114         return sja1105_dynamic_config_write(priv, BLK_IDX_MAC_CONFIG, port,
115                                             &mac[port], true);
116 }
117
118 static int sja1105_commit_pvid(struct dsa_switch *ds, int port)
119 {
120         struct dsa_port *dp = dsa_to_port(ds, port);
121         struct net_device *br = dsa_port_bridge_dev_get(dp);
122         struct sja1105_private *priv = ds->priv;
123         struct sja1105_vlan_lookup_entry *vlan;
124         bool drop_untagged = false;
125         int match, rc;
126         u16 pvid;
127
128         if (br && br_vlan_enabled(br))
129                 pvid = priv->bridge_pvid[port];
130         else
131                 pvid = priv->tag_8021q_pvid[port];
132
133         rc = sja1105_pvid_apply(priv, port, pvid);
134         if (rc)
135                 return rc;
136
137         /* Only force dropping of untagged packets when the port is under a
138          * VLAN-aware bridge. When the tag_8021q pvid is used, we are
139          * deliberately removing the RX VLAN from the port's VMEMB_PORT list,
140          * to prevent DSA tag spoofing from the link partner. Untagged packets
141          * are the only ones that should be received with tag_8021q, so
142          * definitely don't drop them.
143          */
144         if (pvid == priv->bridge_pvid[port]) {
145                 vlan = priv->static_config.tables[BLK_IDX_VLAN_LOOKUP].entries;
146
147                 match = sja1105_is_vlan_configured(priv, pvid);
148
149                 if (match < 0 || !(vlan[match].vmemb_port & BIT(port)))
150                         drop_untagged = true;
151         }
152
153         if (dsa_is_cpu_port(ds, port) || dsa_is_dsa_port(ds, port))
154                 drop_untagged = true;
155
156         return sja1105_drop_untagged(ds, port, drop_untagged);
157 }
158
159 static int sja1105_init_mac_settings(struct sja1105_private *priv)
160 {
161         struct sja1105_mac_config_entry default_mac = {
162                 /* Enable all 8 priority queues on egress.
163                  * Every queue i holds top[i] - base[i] frames.
164                  * Sum of top[i] - base[i] is 511 (max hardware limit).
165                  */
166                 .top  = {0x3F, 0x7F, 0xBF, 0xFF, 0x13F, 0x17F, 0x1BF, 0x1FF},
167                 .base = {0x0, 0x40, 0x80, 0xC0, 0x100, 0x140, 0x180, 0x1C0},
168                 .enabled = {true, true, true, true, true, true, true, true},
169                 /* Keep standard IFG of 12 bytes on egress. */
170                 .ifg = 0,
171                 /* Always put the MAC speed in automatic mode, where it can be
172                  * adjusted at runtime by PHYLINK.
173                  */
174                 .speed = priv->info->port_speed[SJA1105_SPEED_AUTO],
175                 /* No static correction for 1-step 1588 events */
176                 .tp_delin = 0,
177                 .tp_delout = 0,
178                 /* Disable aging for critical TTEthernet traffic */
179                 .maxage = 0xFF,
180                 /* Internal VLAN (pvid) to apply to untagged ingress */
181                 .vlanprio = 0,
182                 .vlanid = 1,
183                 .ing_mirr = false,
184                 .egr_mirr = false,
185                 /* Don't drop traffic with other EtherType than ETH_P_IP */
186                 .drpnona664 = false,
187                 /* Don't drop double-tagged traffic */
188                 .drpdtag = false,
189                 /* Don't drop untagged traffic */
190                 .drpuntag = false,
191                 /* Don't retag 802.1p (VID 0) traffic with the pvid */
192                 .retag = false,
193                 /* Disable learning and I/O on user ports by default -
194                  * STP will enable it.
195                  */
196                 .dyn_learn = false,
197                 .egress = false,
198                 .ingress = false,
199         };
200         struct sja1105_mac_config_entry *mac;
201         struct dsa_switch *ds = priv->ds;
202         struct sja1105_table *table;
203         struct dsa_port *dp;
204
205         table = &priv->static_config.tables[BLK_IDX_MAC_CONFIG];
206
207         /* Discard previous MAC Configuration Table */
208         if (table->entry_count) {
209                 kfree(table->entries);
210                 table->entry_count = 0;
211         }
212
213         table->entries = kcalloc(table->ops->max_entry_count,
214                                  table->ops->unpacked_entry_size, GFP_KERNEL);
215         if (!table->entries)
216                 return -ENOMEM;
217
218         table->entry_count = table->ops->max_entry_count;
219
220         mac = table->entries;
221
222         list_for_each_entry(dp, &ds->dst->ports, list) {
223                 if (dp->ds != ds)
224                         continue;
225
226                 mac[dp->index] = default_mac;
227
228                 /* Let sja1105_bridge_stp_state_set() keep address learning
229                  * enabled for the DSA ports. CPU ports use software-assisted
230                  * learning to ensure that only FDB entries belonging to the
231                  * bridge are learned, and that they are learned towards all
232                  * CPU ports in a cross-chip topology if multiple CPU ports
233                  * exist.
234                  */
235                 if (dsa_port_is_dsa(dp))
236                         dp->learning = true;
237
238                 /* Disallow untagged packets from being received on the
239                  * CPU and DSA ports.
240                  */
241                 if (dsa_port_is_cpu(dp) || dsa_port_is_dsa(dp))
242                         mac[dp->index].drpuntag = true;
243         }
244
245         return 0;
246 }
247
248 static int sja1105_init_mii_settings(struct sja1105_private *priv)
249 {
250         struct device *dev = &priv->spidev->dev;
251         struct sja1105_xmii_params_entry *mii;
252         struct dsa_switch *ds = priv->ds;
253         struct sja1105_table *table;
254         int i;
255
256         table = &priv->static_config.tables[BLK_IDX_XMII_PARAMS];
257
258         /* Discard previous xMII Mode Parameters Table */
259         if (table->entry_count) {
260                 kfree(table->entries);
261                 table->entry_count = 0;
262         }
263
264         table->entries = kcalloc(table->ops->max_entry_count,
265                                  table->ops->unpacked_entry_size, GFP_KERNEL);
266         if (!table->entries)
267                 return -ENOMEM;
268
269         /* Override table based on PHYLINK DT bindings */
270         table->entry_count = table->ops->max_entry_count;
271
272         mii = table->entries;
273
274         for (i = 0; i < ds->num_ports; i++) {
275                 sja1105_mii_role_t role = XMII_MAC;
276
277                 if (dsa_is_unused_port(priv->ds, i))
278                         continue;
279
280                 switch (priv->phy_mode[i]) {
281                 case PHY_INTERFACE_MODE_INTERNAL:
282                         if (priv->info->internal_phy[i] == SJA1105_NO_PHY)
283                                 goto unsupported;
284
285                         mii->xmii_mode[i] = XMII_MODE_MII;
286                         if (priv->info->internal_phy[i] == SJA1105_PHY_BASE_TX)
287                                 mii->special[i] = true;
288
289                         break;
290                 case PHY_INTERFACE_MODE_REVMII:
291                         role = XMII_PHY;
292                         fallthrough;
293                 case PHY_INTERFACE_MODE_MII:
294                         if (!priv->info->supports_mii[i])
295                                 goto unsupported;
296
297                         mii->xmii_mode[i] = XMII_MODE_MII;
298                         break;
299                 case PHY_INTERFACE_MODE_REVRMII:
300                         role = XMII_PHY;
301                         fallthrough;
302                 case PHY_INTERFACE_MODE_RMII:
303                         if (!priv->info->supports_rmii[i])
304                                 goto unsupported;
305
306                         mii->xmii_mode[i] = XMII_MODE_RMII;
307                         break;
308                 case PHY_INTERFACE_MODE_RGMII:
309                 case PHY_INTERFACE_MODE_RGMII_ID:
310                 case PHY_INTERFACE_MODE_RGMII_RXID:
311                 case PHY_INTERFACE_MODE_RGMII_TXID:
312                         if (!priv->info->supports_rgmii[i])
313                                 goto unsupported;
314
315                         mii->xmii_mode[i] = XMII_MODE_RGMII;
316                         break;
317                 case PHY_INTERFACE_MODE_SGMII:
318                         if (!priv->info->supports_sgmii[i])
319                                 goto unsupported;
320
321                         mii->xmii_mode[i] = XMII_MODE_SGMII;
322                         mii->special[i] = true;
323                         break;
324                 case PHY_INTERFACE_MODE_2500BASEX:
325                         if (!priv->info->supports_2500basex[i])
326                                 goto unsupported;
327
328                         mii->xmii_mode[i] = XMII_MODE_SGMII;
329                         mii->special[i] = true;
330                         break;
331 unsupported:
332                 default:
333                         dev_err(dev, "Unsupported PHY mode %s on port %d!\n",
334                                 phy_modes(priv->phy_mode[i]), i);
335                         return -EINVAL;
336                 }
337
338                 mii->phy_mac[i] = role;
339         }
340         return 0;
341 }
342
343 static int sja1105_init_static_fdb(struct sja1105_private *priv)
344 {
345         struct sja1105_l2_lookup_entry *l2_lookup;
346         struct sja1105_table *table;
347         int port;
348
349         table = &priv->static_config.tables[BLK_IDX_L2_LOOKUP];
350
351         /* We only populate the FDB table through dynamic L2 Address Lookup
352          * entries, except for a special entry at the end which is a catch-all
353          * for unknown multicast and will be used to control flooding domain.
354          */
355         if (table->entry_count) {
356                 kfree(table->entries);
357                 table->entry_count = 0;
358         }
359
360         if (!priv->info->can_limit_mcast_flood)
361                 return 0;
362
363         table->entries = kcalloc(1, table->ops->unpacked_entry_size,
364                                  GFP_KERNEL);
365         if (!table->entries)
366                 return -ENOMEM;
367
368         table->entry_count = 1;
369         l2_lookup = table->entries;
370
371         /* All L2 multicast addresses have an odd first octet */
372         l2_lookup[0].macaddr = SJA1105_UNKNOWN_MULTICAST;
373         l2_lookup[0].mask_macaddr = SJA1105_UNKNOWN_MULTICAST;
374         l2_lookup[0].lockeds = true;
375         l2_lookup[0].index = SJA1105_MAX_L2_LOOKUP_COUNT - 1;
376
377         /* Flood multicast to every port by default */
378         for (port = 0; port < priv->ds->num_ports; port++)
379                 if (!dsa_is_unused_port(priv->ds, port))
380                         l2_lookup[0].destports |= BIT(port);
381
382         return 0;
383 }
384
385 static int sja1105_init_l2_lookup_params(struct sja1105_private *priv)
386 {
387         struct sja1105_l2_lookup_params_entry default_l2_lookup_params = {
388                 /* Learned FDB entries are forgotten after 300 seconds */
389                 .maxage = SJA1105_AGEING_TIME_MS(300000),
390                 /* All entries within a FDB bin are available for learning */
391                 .dyn_tbsz = SJA1105ET_FDB_BIN_SIZE,
392                 /* And the P/Q/R/S equivalent setting: */
393                 .start_dynspc = 0,
394                 /* 2^8 + 2^5 + 2^3 + 2^2 + 2^1 + 1 in Koopman notation */
395                 .poly = 0x97,
396                 /* This selects between Independent VLAN Learning (IVL) and
397                  * Shared VLAN Learning (SVL)
398                  */
399                 .shared_learn = true,
400                 /* Don't discard management traffic based on ENFPORT -
401                  * we don't perform SMAC port enforcement anyway, so
402                  * what we are setting here doesn't matter.
403                  */
404                 .no_enf_hostprt = false,
405                 /* Don't learn SMAC for mac_fltres1 and mac_fltres0.
406                  * Maybe correlate with no_linklocal_learn from bridge driver?
407                  */
408                 .no_mgmt_learn = true,
409                 /* P/Q/R/S only */
410                 .use_static = true,
411                 /* Dynamically learned FDB entries can overwrite other (older)
412                  * dynamic FDB entries
413                  */
414                 .owr_dyn = true,
415                 .drpnolearn = true,
416         };
417         struct dsa_switch *ds = priv->ds;
418         int port, num_used_ports = 0;
419         struct sja1105_table *table;
420         u64 max_fdb_entries;
421
422         for (port = 0; port < ds->num_ports; port++)
423                 if (!dsa_is_unused_port(ds, port))
424                         num_used_ports++;
425
426         max_fdb_entries = SJA1105_MAX_L2_LOOKUP_COUNT / num_used_ports;
427
428         for (port = 0; port < ds->num_ports; port++) {
429                 if (dsa_is_unused_port(ds, port))
430                         continue;
431
432                 default_l2_lookup_params.maxaddrp[port] = max_fdb_entries;
433         }
434
435         table = &priv->static_config.tables[BLK_IDX_L2_LOOKUP_PARAMS];
436
437         if (table->entry_count) {
438                 kfree(table->entries);
439                 table->entry_count = 0;
440         }
441
442         table->entries = kcalloc(table->ops->max_entry_count,
443                                  table->ops->unpacked_entry_size, GFP_KERNEL);
444         if (!table->entries)
445                 return -ENOMEM;
446
447         table->entry_count = table->ops->max_entry_count;
448
449         /* This table only has a single entry */
450         ((struct sja1105_l2_lookup_params_entry *)table->entries)[0] =
451                                 default_l2_lookup_params;
452
453         return 0;
454 }
455
456 /* Set up a default VLAN for untagged traffic injected from the CPU
457  * using management routes (e.g. STP, PTP) as opposed to tag_8021q.
458  * All DT-defined ports are members of this VLAN, and there are no
459  * restrictions on forwarding (since the CPU selects the destination).
460  * Frames from this VLAN will always be transmitted as untagged, and
461  * neither the bridge nor the 8021q module cannot create this VLAN ID.
462  */
463 static int sja1105_init_static_vlan(struct sja1105_private *priv)
464 {
465         struct sja1105_table *table;
466         struct sja1105_vlan_lookup_entry pvid = {
467                 .type_entry = SJA1110_VLAN_D_TAG,
468                 .ving_mirr = 0,
469                 .vegr_mirr = 0,
470                 .vmemb_port = 0,
471                 .vlan_bc = 0,
472                 .tag_port = 0,
473                 .vlanid = SJA1105_DEFAULT_VLAN,
474         };
475         struct dsa_switch *ds = priv->ds;
476         int port;
477
478         table = &priv->static_config.tables[BLK_IDX_VLAN_LOOKUP];
479
480         if (table->entry_count) {
481                 kfree(table->entries);
482                 table->entry_count = 0;
483         }
484
485         table->entries = kzalloc(table->ops->unpacked_entry_size,
486                                  GFP_KERNEL);
487         if (!table->entries)
488                 return -ENOMEM;
489
490         table->entry_count = 1;
491
492         for (port = 0; port < ds->num_ports; port++) {
493                 if (dsa_is_unused_port(ds, port))
494                         continue;
495
496                 pvid.vmemb_port |= BIT(port);
497                 pvid.vlan_bc |= BIT(port);
498                 pvid.tag_port &= ~BIT(port);
499
500                 if (dsa_is_cpu_port(ds, port) || dsa_is_dsa_port(ds, port)) {
501                         priv->tag_8021q_pvid[port] = SJA1105_DEFAULT_VLAN;
502                         priv->bridge_pvid[port] = SJA1105_DEFAULT_VLAN;
503                 }
504         }
505
506         ((struct sja1105_vlan_lookup_entry *)table->entries)[0] = pvid;
507         return 0;
508 }
509
510 static int sja1105_init_l2_forwarding(struct sja1105_private *priv)
511 {
512         struct sja1105_l2_forwarding_entry *l2fwd;
513         struct dsa_switch *ds = priv->ds;
514         struct dsa_switch_tree *dst;
515         struct sja1105_table *table;
516         struct dsa_link *dl;
517         int port, tc;
518         int from, to;
519
520         table = &priv->static_config.tables[BLK_IDX_L2_FORWARDING];
521
522         if (table->entry_count) {
523                 kfree(table->entries);
524                 table->entry_count = 0;
525         }
526
527         table->entries = kcalloc(table->ops->max_entry_count,
528                                  table->ops->unpacked_entry_size, GFP_KERNEL);
529         if (!table->entries)
530                 return -ENOMEM;
531
532         table->entry_count = table->ops->max_entry_count;
533
534         l2fwd = table->entries;
535
536         /* First 5 entries in the L2 Forwarding Table define the forwarding
537          * rules and the VLAN PCP to ingress queue mapping.
538          * Set up the ingress queue mapping first.
539          */
540         for (port = 0; port < ds->num_ports; port++) {
541                 if (dsa_is_unused_port(ds, port))
542                         continue;
543
544                 for (tc = 0; tc < SJA1105_NUM_TC; tc++)
545                         l2fwd[port].vlan_pmap[tc] = tc;
546         }
547
548         /* Then manage the forwarding domain for user ports. These can forward
549          * only to the always-on domain (CPU port and DSA links)
550          */
551         for (from = 0; from < ds->num_ports; from++) {
552                 if (!dsa_is_user_port(ds, from))
553                         continue;
554
555                 for (to = 0; to < ds->num_ports; to++) {
556                         if (!dsa_is_cpu_port(ds, to) &&
557                             !dsa_is_dsa_port(ds, to))
558                                 continue;
559
560                         l2fwd[from].bc_domain |= BIT(to);
561                         l2fwd[from].fl_domain |= BIT(to);
562
563                         sja1105_port_allow_traffic(l2fwd, from, to, true);
564                 }
565         }
566
567         /* Then manage the forwarding domain for DSA links and CPU ports (the
568          * always-on domain). These can send packets to any enabled port except
569          * themselves.
570          */
571         for (from = 0; from < ds->num_ports; from++) {
572                 if (!dsa_is_cpu_port(ds, from) && !dsa_is_dsa_port(ds, from))
573                         continue;
574
575                 for (to = 0; to < ds->num_ports; to++) {
576                         if (dsa_is_unused_port(ds, to))
577                                 continue;
578
579                         if (from == to)
580                                 continue;
581
582                         l2fwd[from].bc_domain |= BIT(to);
583                         l2fwd[from].fl_domain |= BIT(to);
584
585                         sja1105_port_allow_traffic(l2fwd, from, to, true);
586                 }
587         }
588
589         /* In odd topologies ("H" connections where there is a DSA link to
590          * another switch which also has its own CPU port), TX packets can loop
591          * back into the system (they are flooded from CPU port 1 to the DSA
592          * link, and from there to CPU port 2). Prevent this from happening by
593          * cutting RX from DSA links towards our CPU port, if the remote switch
594          * has its own CPU port and therefore doesn't need ours for network
595          * stack termination.
596          */
597         dst = ds->dst;
598
599         list_for_each_entry(dl, &dst->rtable, list) {
600                 if (dl->dp->ds != ds || dl->link_dp->cpu_dp == dl->dp->cpu_dp)
601                         continue;
602
603                 from = dl->dp->index;
604                 to = dsa_upstream_port(ds, from);
605
606                 dev_warn(ds->dev,
607                          "H topology detected, cutting RX from DSA link %d to CPU port %d to prevent TX packet loops\n",
608                          from, to);
609
610                 sja1105_port_allow_traffic(l2fwd, from, to, false);
611
612                 l2fwd[from].bc_domain &= ~BIT(to);
613                 l2fwd[from].fl_domain &= ~BIT(to);
614         }
615
616         /* Finally, manage the egress flooding domain. All ports start up with
617          * flooding enabled, including the CPU port and DSA links.
618          */
619         for (port = 0; port < ds->num_ports; port++) {
620                 if (dsa_is_unused_port(ds, port))
621                         continue;
622
623                 priv->ucast_egress_floods |= BIT(port);
624                 priv->bcast_egress_floods |= BIT(port);
625         }
626
627         /* Next 8 entries define VLAN PCP mapping from ingress to egress.
628          * Create a one-to-one mapping.
629          */
630         for (tc = 0; tc < SJA1105_NUM_TC; tc++) {
631                 for (port = 0; port < ds->num_ports; port++) {
632                         if (dsa_is_unused_port(ds, port))
633                                 continue;
634
635                         l2fwd[ds->num_ports + tc].vlan_pmap[port] = tc;
636                 }
637
638                 l2fwd[ds->num_ports + tc].type_egrpcp2outputq = true;
639         }
640
641         return 0;
642 }
643
644 static int sja1110_init_pcp_remapping(struct sja1105_private *priv)
645 {
646         struct sja1110_pcp_remapping_entry *pcp_remap;
647         struct dsa_switch *ds = priv->ds;
648         struct sja1105_table *table;
649         int port, tc;
650
651         table = &priv->static_config.tables[BLK_IDX_PCP_REMAPPING];
652
653         /* Nothing to do for SJA1105 */
654         if (!table->ops->max_entry_count)
655                 return 0;
656
657         if (table->entry_count) {
658                 kfree(table->entries);
659                 table->entry_count = 0;
660         }
661
662         table->entries = kcalloc(table->ops->max_entry_count,
663                                  table->ops->unpacked_entry_size, GFP_KERNEL);
664         if (!table->entries)
665                 return -ENOMEM;
666
667         table->entry_count = table->ops->max_entry_count;
668
669         pcp_remap = table->entries;
670
671         /* Repeat the configuration done for vlan_pmap */
672         for (port = 0; port < ds->num_ports; port++) {
673                 if (dsa_is_unused_port(ds, port))
674                         continue;
675
676                 for (tc = 0; tc < SJA1105_NUM_TC; tc++)
677                         pcp_remap[port].egrpcp[tc] = tc;
678         }
679
680         return 0;
681 }
682
683 static int sja1105_init_l2_forwarding_params(struct sja1105_private *priv)
684 {
685         struct sja1105_l2_forwarding_params_entry *l2fwd_params;
686         struct sja1105_table *table;
687
688         table = &priv->static_config.tables[BLK_IDX_L2_FORWARDING_PARAMS];
689
690         if (table->entry_count) {
691                 kfree(table->entries);
692                 table->entry_count = 0;
693         }
694
695         table->entries = kcalloc(table->ops->max_entry_count,
696                                  table->ops->unpacked_entry_size, GFP_KERNEL);
697         if (!table->entries)
698                 return -ENOMEM;
699
700         table->entry_count = table->ops->max_entry_count;
701
702         /* This table only has a single entry */
703         l2fwd_params = table->entries;
704
705         /* Disallow dynamic reconfiguration of vlan_pmap */
706         l2fwd_params->max_dynp = 0;
707         /* Use a single memory partition for all ingress queues */
708         l2fwd_params->part_spc[0] = priv->info->max_frame_mem;
709
710         return 0;
711 }
712
713 void sja1105_frame_memory_partitioning(struct sja1105_private *priv)
714 {
715         struct sja1105_l2_forwarding_params_entry *l2_fwd_params;
716         struct sja1105_vl_forwarding_params_entry *vl_fwd_params;
717         struct sja1105_table *table;
718
719         table = &priv->static_config.tables[BLK_IDX_L2_FORWARDING_PARAMS];
720         l2_fwd_params = table->entries;
721         l2_fwd_params->part_spc[0] = SJA1105_MAX_FRAME_MEMORY;
722
723         /* If we have any critical-traffic virtual links, we need to reserve
724          * some frame buffer memory for them. At the moment, hardcode the value
725          * at 100 blocks of 128 bytes of memory each. This leaves 829 blocks
726          * remaining for best-effort traffic. TODO: figure out a more flexible
727          * way to perform the frame buffer partitioning.
728          */
729         if (!priv->static_config.tables[BLK_IDX_VL_FORWARDING].entry_count)
730                 return;
731
732         table = &priv->static_config.tables[BLK_IDX_VL_FORWARDING_PARAMS];
733         vl_fwd_params = table->entries;
734
735         l2_fwd_params->part_spc[0] -= SJA1105_VL_FRAME_MEMORY;
736         vl_fwd_params->partspc[0] = SJA1105_VL_FRAME_MEMORY;
737 }
738
739 /* SJA1110 TDMACONFIGIDX values:
740  *
741  *      | 100 Mbps ports |  1Gbps ports  | 2.5Gbps ports | Disabled ports
742  * -----+----------------+---------------+---------------+---------------
743  *   0  |   0, [5:10]    |     [1:2]     |     [3:4]     |     retag
744  *   1  |0, [5:10], retag|     [1:2]     |     [3:4]     |       -
745  *   2  |   0, [5:10]    |  [1:3], retag |       4       |       -
746  *   3  |   0, [5:10]    |[1:2], 4, retag|       3       |       -
747  *   4  |  0, 2, [5:10]  |    1, retag   |     [3:4]     |       -
748  *   5  |  0, 1, [5:10]  |    2, retag   |     [3:4]     |       -
749  *  14  |   0, [5:10]    | [1:4], retag  |       -       |       -
750  *  15  |     [5:10]     | [0:4], retag  |       -       |       -
751  */
752 static void sja1110_select_tdmaconfigidx(struct sja1105_private *priv)
753 {
754         struct sja1105_general_params_entry *general_params;
755         struct sja1105_table *table;
756         bool port_1_is_base_tx;
757         bool port_3_is_2500;
758         bool port_4_is_2500;
759         u64 tdmaconfigidx;
760
761         if (priv->info->device_id != SJA1110_DEVICE_ID)
762                 return;
763
764         table = &priv->static_config.tables[BLK_IDX_GENERAL_PARAMS];
765         general_params = table->entries;
766
767         /* All the settings below are "as opposed to SGMII", which is the
768          * other pinmuxing option.
769          */
770         port_1_is_base_tx = priv->phy_mode[1] == PHY_INTERFACE_MODE_INTERNAL;
771         port_3_is_2500 = priv->phy_mode[3] == PHY_INTERFACE_MODE_2500BASEX;
772         port_4_is_2500 = priv->phy_mode[4] == PHY_INTERFACE_MODE_2500BASEX;
773
774         if (port_1_is_base_tx)
775                 /* Retagging port will operate at 1 Gbps */
776                 tdmaconfigidx = 5;
777         else if (port_3_is_2500 && port_4_is_2500)
778                 /* Retagging port will operate at 100 Mbps */
779                 tdmaconfigidx = 1;
780         else if (port_3_is_2500)
781                 /* Retagging port will operate at 1 Gbps */
782                 tdmaconfigidx = 3;
783         else if (port_4_is_2500)
784                 /* Retagging port will operate at 1 Gbps */
785                 tdmaconfigidx = 2;
786         else
787                 /* Retagging port will operate at 1 Gbps */
788                 tdmaconfigidx = 14;
789
790         general_params->tdmaconfigidx = tdmaconfigidx;
791 }
792
793 static int sja1105_init_topology(struct sja1105_private *priv,
794                                  struct sja1105_general_params_entry *general_params)
795 {
796         struct dsa_switch *ds = priv->ds;
797         int port;
798
799         /* The host port is the destination for traffic matching mac_fltres1
800          * and mac_fltres0 on all ports except itself. Default to an invalid
801          * value.
802          */
803         general_params->host_port = ds->num_ports;
804
805         /* Link-local traffic received on casc_port will be forwarded
806          * to host_port without embedding the source port and device ID
807          * info in the destination MAC address, and no RX timestamps will be
808          * taken either (presumably because it is a cascaded port and a
809          * downstream SJA switch already did that).
810          * To disable the feature, we need to do different things depending on
811          * switch generation. On SJA1105 we need to set an invalid port, while
812          * on SJA1110 which support multiple cascaded ports, this field is a
813          * bitmask so it must be left zero.
814          */
815         if (!priv->info->multiple_cascade_ports)
816                 general_params->casc_port = ds->num_ports;
817
818         for (port = 0; port < ds->num_ports; port++) {
819                 bool is_upstream = dsa_is_upstream_port(ds, port);
820                 bool is_dsa_link = dsa_is_dsa_port(ds, port);
821
822                 /* Upstream ports can be dedicated CPU ports or
823                  * upstream-facing DSA links
824                  */
825                 if (is_upstream) {
826                         if (general_params->host_port == ds->num_ports) {
827                                 general_params->host_port = port;
828                         } else {
829                                 dev_err(ds->dev,
830                                         "Port %llu is already a host port, configuring %d as one too is not supported\n",
831                                         general_params->host_port, port);
832                                 return -EINVAL;
833                         }
834                 }
835
836                 /* Cascade ports are downstream-facing DSA links */
837                 if (is_dsa_link && !is_upstream) {
838                         if (priv->info->multiple_cascade_ports) {
839                                 general_params->casc_port |= BIT(port);
840                         } else if (general_params->casc_port == ds->num_ports) {
841                                 general_params->casc_port = port;
842                         } else {
843                                 dev_err(ds->dev,
844                                         "Port %llu is already a cascade port, configuring %d as one too is not supported\n",
845                                         general_params->casc_port, port);
846                                 return -EINVAL;
847                         }
848                 }
849         }
850
851         if (general_params->host_port == ds->num_ports) {
852                 dev_err(ds->dev, "No host port configured\n");
853                 return -EINVAL;
854         }
855
856         return 0;
857 }
858
859 static int sja1105_init_general_params(struct sja1105_private *priv)
860 {
861         struct sja1105_general_params_entry default_general_params = {
862                 /* Allow dynamic changing of the mirror port */
863                 .mirr_ptacu = true,
864                 .switchid = priv->ds->index,
865                 /* Priority queue for link-local management frames
866                  * (both ingress to and egress from CPU - PTP, STP etc)
867                  */
868                 .hostprio = 7,
869                 .mac_fltres1 = SJA1105_LINKLOCAL_FILTER_A,
870                 .mac_flt1    = SJA1105_LINKLOCAL_FILTER_A_MASK,
871                 .incl_srcpt1 = false,
872                 .send_meta1  = false,
873                 .mac_fltres0 = SJA1105_LINKLOCAL_FILTER_B,
874                 .mac_flt0    = SJA1105_LINKLOCAL_FILTER_B_MASK,
875                 .incl_srcpt0 = false,
876                 .send_meta0  = false,
877                 /* Default to an invalid value */
878                 .mirr_port = priv->ds->num_ports,
879                 /* No TTEthernet */
880                 .vllupformat = SJA1105_VL_FORMAT_PSFP,
881                 .vlmarker = 0,
882                 .vlmask = 0,
883                 /* Only update correctionField for 1-step PTP (L2 transport) */
884                 .ignore2stf = 0,
885                 /* Forcefully disable VLAN filtering by telling
886                  * the switch that VLAN has a different EtherType.
887                  */
888                 .tpid = ETH_P_SJA1105,
889                 .tpid2 = ETH_P_SJA1105,
890                 /* Enable the TTEthernet engine on SJA1110 */
891                 .tte_en = true,
892                 /* Set up the EtherType for control packets on SJA1110 */
893                 .header_type = ETH_P_SJA1110,
894         };
895         struct sja1105_general_params_entry *general_params;
896         struct sja1105_table *table;
897         int rc;
898
899         rc = sja1105_init_topology(priv, &default_general_params);
900         if (rc)
901                 return rc;
902
903         table = &priv->static_config.tables[BLK_IDX_GENERAL_PARAMS];
904
905         if (table->entry_count) {
906                 kfree(table->entries);
907                 table->entry_count = 0;
908         }
909
910         table->entries = kcalloc(table->ops->max_entry_count,
911                                  table->ops->unpacked_entry_size, GFP_KERNEL);
912         if (!table->entries)
913                 return -ENOMEM;
914
915         table->entry_count = table->ops->max_entry_count;
916
917         general_params = table->entries;
918
919         /* This table only has a single entry */
920         general_params[0] = default_general_params;
921
922         sja1110_select_tdmaconfigidx(priv);
923
924         return 0;
925 }
926
927 static int sja1105_init_avb_params(struct sja1105_private *priv)
928 {
929         struct sja1105_avb_params_entry *avb;
930         struct sja1105_table *table;
931
932         table = &priv->static_config.tables[BLK_IDX_AVB_PARAMS];
933
934         /* Discard previous AVB Parameters Table */
935         if (table->entry_count) {
936                 kfree(table->entries);
937                 table->entry_count = 0;
938         }
939
940         table->entries = kcalloc(table->ops->max_entry_count,
941                                  table->ops->unpacked_entry_size, GFP_KERNEL);
942         if (!table->entries)
943                 return -ENOMEM;
944
945         table->entry_count = table->ops->max_entry_count;
946
947         avb = table->entries;
948
949         /* Configure the MAC addresses for meta frames */
950         avb->destmeta = SJA1105_META_DMAC;
951         avb->srcmeta  = SJA1105_META_SMAC;
952         /* On P/Q/R/S, configure the direction of the PTP_CLK pin as input by
953          * default. This is because there might be boards with a hardware
954          * layout where enabling the pin as output might cause an electrical
955          * clash. On E/T the pin is always an output, which the board designers
956          * probably already knew, so even if there are going to be electrical
957          * issues, there's nothing we can do.
958          */
959         avb->cas_master = false;
960
961         return 0;
962 }
963
964 /* The L2 policing table is 2-stage. The table is looked up for each frame
965  * according to the ingress port, whether it was broadcast or not, and the
966  * classified traffic class (given by VLAN PCP). This portion of the lookup is
967  * fixed, and gives access to the SHARINDX, an indirection register pointing
968  * within the policing table itself, which is used to resolve the policer that
969  * will be used for this frame.
970  *
971  *  Stage 1                              Stage 2
972  * +------------+--------+              +---------------------------------+
973  * |Port 0 TC 0 |SHARINDX|              | Policer 0: Rate, Burst, MTU     |
974  * +------------+--------+              +---------------------------------+
975  * |Port 0 TC 1 |SHARINDX|              | Policer 1: Rate, Burst, MTU     |
976  * +------------+--------+              +---------------------------------+
977  *    ...                               | Policer 2: Rate, Burst, MTU     |
978  * +------------+--------+              +---------------------------------+
979  * |Port 0 TC 7 |SHARINDX|              | Policer 3: Rate, Burst, MTU     |
980  * +------------+--------+              +---------------------------------+
981  * |Port 1 TC 0 |SHARINDX|              | Policer 4: Rate, Burst, MTU     |
982  * +------------+--------+              +---------------------------------+
983  *    ...                               | Policer 5: Rate, Burst, MTU     |
984  * +------------+--------+              +---------------------------------+
985  * |Port 1 TC 7 |SHARINDX|              | Policer 6: Rate, Burst, MTU     |
986  * +------------+--------+              +---------------------------------+
987  *    ...                               | Policer 7: Rate, Burst, MTU     |
988  * +------------+--------+              +---------------------------------+
989  * |Port 4 TC 7 |SHARINDX|                 ...
990  * +------------+--------+
991  * |Port 0 BCAST|SHARINDX|                 ...
992  * +------------+--------+
993  * |Port 1 BCAST|SHARINDX|                 ...
994  * +------------+--------+
995  *    ...                                  ...
996  * +------------+--------+              +---------------------------------+
997  * |Port 4 BCAST|SHARINDX|              | Policer 44: Rate, Burst, MTU    |
998  * +------------+--------+              +---------------------------------+
999  *
1000  * In this driver, we shall use policers 0-4 as statically alocated port
1001  * (matchall) policers. So we need to make the SHARINDX for all lookups
1002  * corresponding to this ingress port (8 VLAN PCP lookups and 1 broadcast
1003  * lookup) equal.
1004  * The remaining policers (40) shall be dynamically allocated for flower
1005  * policers, where the key is either vlan_prio or dst_mac ff:ff:ff:ff:ff:ff.
1006  */
1007 #define SJA1105_RATE_MBPS(speed) (((speed) * 64000) / 1000)
1008
1009 static int sja1105_init_l2_policing(struct sja1105_private *priv)
1010 {
1011         struct sja1105_l2_policing_entry *policing;
1012         struct dsa_switch *ds = priv->ds;
1013         struct sja1105_table *table;
1014         int port, tc;
1015
1016         table = &priv->static_config.tables[BLK_IDX_L2_POLICING];
1017
1018         /* Discard previous L2 Policing Table */
1019         if (table->entry_count) {
1020                 kfree(table->entries);
1021                 table->entry_count = 0;
1022         }
1023
1024         table->entries = kcalloc(table->ops->max_entry_count,
1025                                  table->ops->unpacked_entry_size, GFP_KERNEL);
1026         if (!table->entries)
1027                 return -ENOMEM;
1028
1029         table->entry_count = table->ops->max_entry_count;
1030
1031         policing = table->entries;
1032
1033         /* Setup shared indices for the matchall policers */
1034         for (port = 0; port < ds->num_ports; port++) {
1035                 int mcast = (ds->num_ports * (SJA1105_NUM_TC + 1)) + port;
1036                 int bcast = (ds->num_ports * SJA1105_NUM_TC) + port;
1037
1038                 for (tc = 0; tc < SJA1105_NUM_TC; tc++)
1039                         policing[port * SJA1105_NUM_TC + tc].sharindx = port;
1040
1041                 policing[bcast].sharindx = port;
1042                 /* Only SJA1110 has multicast policers */
1043                 if (mcast <= table->ops->max_entry_count)
1044                         policing[mcast].sharindx = port;
1045         }
1046
1047         /* Setup the matchall policer parameters */
1048         for (port = 0; port < ds->num_ports; port++) {
1049                 int mtu = VLAN_ETH_FRAME_LEN + ETH_FCS_LEN;
1050
1051                 if (dsa_is_cpu_port(ds, port) || dsa_is_dsa_port(ds, port))
1052                         mtu += VLAN_HLEN;
1053
1054                 policing[port].smax = 65535; /* Burst size in bytes */
1055                 policing[port].rate = SJA1105_RATE_MBPS(1000);
1056                 policing[port].maxlen = mtu;
1057                 policing[port].partition = 0;
1058         }
1059
1060         return 0;
1061 }
1062
1063 static int sja1105_static_config_load(struct sja1105_private *priv)
1064 {
1065         int rc;
1066
1067         sja1105_static_config_free(&priv->static_config);
1068         rc = sja1105_static_config_init(&priv->static_config,
1069                                         priv->info->static_ops,
1070                                         priv->info->device_id);
1071         if (rc)
1072                 return rc;
1073
1074         /* Build static configuration */
1075         rc = sja1105_init_mac_settings(priv);
1076         if (rc < 0)
1077                 return rc;
1078         rc = sja1105_init_mii_settings(priv);
1079         if (rc < 0)
1080                 return rc;
1081         rc = sja1105_init_static_fdb(priv);
1082         if (rc < 0)
1083                 return rc;
1084         rc = sja1105_init_static_vlan(priv);
1085         if (rc < 0)
1086                 return rc;
1087         rc = sja1105_init_l2_lookup_params(priv);
1088         if (rc < 0)
1089                 return rc;
1090         rc = sja1105_init_l2_forwarding(priv);
1091         if (rc < 0)
1092                 return rc;
1093         rc = sja1105_init_l2_forwarding_params(priv);
1094         if (rc < 0)
1095                 return rc;
1096         rc = sja1105_init_l2_policing(priv);
1097         if (rc < 0)
1098                 return rc;
1099         rc = sja1105_init_general_params(priv);
1100         if (rc < 0)
1101                 return rc;
1102         rc = sja1105_init_avb_params(priv);
1103         if (rc < 0)
1104                 return rc;
1105         rc = sja1110_init_pcp_remapping(priv);
1106         if (rc < 0)
1107                 return rc;
1108
1109         /* Send initial configuration to hardware via SPI */
1110         return sja1105_static_config_upload(priv);
1111 }
1112
1113 /* This is the "new way" for a MAC driver to configure its RGMII delay lines,
1114  * based on the explicit "rx-internal-delay-ps" and "tx-internal-delay-ps"
1115  * properties. It has the advantage of working with fixed links and with PHYs
1116  * that apply RGMII delays too, and the MAC driver needs not perform any
1117  * special checks.
1118  *
1119  * Previously we were acting upon the "phy-mode" property when we were
1120  * operating in fixed-link, basically acting as a PHY, but with a reversed
1121  * interpretation: PHY_INTERFACE_MODE_RGMII_TXID means that the MAC should
1122  * behave as if it is connected to a PHY which has applied RGMII delays in the
1123  * TX direction. So if anything, RX delays should have been added by the MAC,
1124  * but we were adding TX delays.
1125  *
1126  * If the "{rx,tx}-internal-delay-ps" properties are not specified, we fall
1127  * back to the legacy behavior and apply delays on fixed-link ports based on
1128  * the reverse interpretation of the phy-mode. This is a deviation from the
1129  * expected default behavior which is to simply apply no delays. To achieve
1130  * that behavior with the new bindings, it is mandatory to specify
1131  * "{rx,tx}-internal-delay-ps" with a value of 0.
1132  */
1133 static int sja1105_parse_rgmii_delays(struct sja1105_private *priv, int port,
1134                                       struct device_node *port_dn)
1135 {
1136         phy_interface_t phy_mode = priv->phy_mode[port];
1137         struct device *dev = &priv->spidev->dev;
1138         int rx_delay = -1, tx_delay = -1;
1139
1140         if (!phy_interface_mode_is_rgmii(phy_mode))
1141                 return 0;
1142
1143         of_property_read_u32(port_dn, "rx-internal-delay-ps", &rx_delay);
1144         of_property_read_u32(port_dn, "tx-internal-delay-ps", &tx_delay);
1145
1146         if (rx_delay == -1 && tx_delay == -1 && priv->fixed_link[port]) {
1147                 dev_warn(dev,
1148                          "Port %d interpreting RGMII delay settings based on \"phy-mode\" property, "
1149                          "please update device tree to specify \"rx-internal-delay-ps\" and "
1150                          "\"tx-internal-delay-ps\"",
1151                          port);
1152
1153                 if (phy_mode == PHY_INTERFACE_MODE_RGMII_RXID ||
1154                     phy_mode == PHY_INTERFACE_MODE_RGMII_ID)
1155                         rx_delay = 2000;
1156
1157                 if (phy_mode == PHY_INTERFACE_MODE_RGMII_TXID ||
1158                     phy_mode == PHY_INTERFACE_MODE_RGMII_ID)
1159                         tx_delay = 2000;
1160         }
1161
1162         if (rx_delay < 0)
1163                 rx_delay = 0;
1164         if (tx_delay < 0)
1165                 tx_delay = 0;
1166
1167         if ((rx_delay || tx_delay) && !priv->info->setup_rgmii_delay) {
1168                 dev_err(dev, "Chip cannot apply RGMII delays\n");
1169                 return -EINVAL;
1170         }
1171
1172         if ((rx_delay && rx_delay < SJA1105_RGMII_DELAY_MIN_PS) ||
1173             (tx_delay && tx_delay < SJA1105_RGMII_DELAY_MIN_PS) ||
1174             (rx_delay > SJA1105_RGMII_DELAY_MAX_PS) ||
1175             (tx_delay > SJA1105_RGMII_DELAY_MAX_PS)) {
1176                 dev_err(dev,
1177                         "port %d RGMII delay values out of range, must be between %d and %d ps\n",
1178                         port, SJA1105_RGMII_DELAY_MIN_PS, SJA1105_RGMII_DELAY_MAX_PS);
1179                 return -ERANGE;
1180         }
1181
1182         priv->rgmii_rx_delay_ps[port] = rx_delay;
1183         priv->rgmii_tx_delay_ps[port] = tx_delay;
1184
1185         return 0;
1186 }
1187
1188 static int sja1105_parse_ports_node(struct sja1105_private *priv,
1189                                     struct device_node *ports_node)
1190 {
1191         struct device *dev = &priv->spidev->dev;
1192         struct device_node *child;
1193
1194         for_each_available_child_of_node(ports_node, child) {
1195                 struct device_node *phy_node;
1196                 phy_interface_t phy_mode;
1197                 u32 index;
1198                 int err;
1199
1200                 /* Get switch port number from DT */
1201                 if (of_property_read_u32(child, "reg", &index) < 0) {
1202                         dev_err(dev, "Port number not defined in device tree "
1203                                 "(property \"reg\")\n");
1204                         of_node_put(child);
1205                         return -ENODEV;
1206                 }
1207
1208                 /* Get PHY mode from DT */
1209                 err = of_get_phy_mode(child, &phy_mode);
1210                 if (err) {
1211                         dev_err(dev, "Failed to read phy-mode or "
1212                                 "phy-interface-type property for port %d\n",
1213                                 index);
1214                         of_node_put(child);
1215                         return -ENODEV;
1216                 }
1217
1218                 phy_node = of_parse_phandle(child, "phy-handle", 0);
1219                 if (!phy_node) {
1220                         if (!of_phy_is_fixed_link(child)) {
1221                                 dev_err(dev, "phy-handle or fixed-link "
1222                                         "properties missing!\n");
1223                                 of_node_put(child);
1224                                 return -ENODEV;
1225                         }
1226                         /* phy-handle is missing, but fixed-link isn't.
1227                          * So it's a fixed link. Default to PHY role.
1228                          */
1229                         priv->fixed_link[index] = true;
1230                 } else {
1231                         of_node_put(phy_node);
1232                 }
1233
1234                 priv->phy_mode[index] = phy_mode;
1235
1236                 err = sja1105_parse_rgmii_delays(priv, index, child);
1237                 if (err) {
1238                         of_node_put(child);
1239                         return err;
1240                 }
1241         }
1242
1243         return 0;
1244 }
1245
1246 static int sja1105_parse_dt(struct sja1105_private *priv)
1247 {
1248         struct device *dev = &priv->spidev->dev;
1249         struct device_node *switch_node = dev->of_node;
1250         struct device_node *ports_node;
1251         int rc;
1252
1253         ports_node = of_get_child_by_name(switch_node, "ports");
1254         if (!ports_node)
1255                 ports_node = of_get_child_by_name(switch_node, "ethernet-ports");
1256         if (!ports_node) {
1257                 dev_err(dev, "Incorrect bindings: absent \"ports\" node\n");
1258                 return -ENODEV;
1259         }
1260
1261         rc = sja1105_parse_ports_node(priv, ports_node);
1262         of_node_put(ports_node);
1263
1264         return rc;
1265 }
1266
1267 /* Convert link speed from SJA1105 to ethtool encoding */
1268 static int sja1105_port_speed_to_ethtool(struct sja1105_private *priv,
1269                                          u64 speed)
1270 {
1271         if (speed == priv->info->port_speed[SJA1105_SPEED_10MBPS])
1272                 return SPEED_10;
1273         if (speed == priv->info->port_speed[SJA1105_SPEED_100MBPS])
1274                 return SPEED_100;
1275         if (speed == priv->info->port_speed[SJA1105_SPEED_1000MBPS])
1276                 return SPEED_1000;
1277         if (speed == priv->info->port_speed[SJA1105_SPEED_2500MBPS])
1278                 return SPEED_2500;
1279         return SPEED_UNKNOWN;
1280 }
1281
1282 /* Set link speed in the MAC configuration for a specific port. */
1283 static int sja1105_adjust_port_config(struct sja1105_private *priv, int port,
1284                                       int speed_mbps)
1285 {
1286         struct sja1105_mac_config_entry *mac;
1287         struct device *dev = priv->ds->dev;
1288         u64 speed;
1289         int rc;
1290
1291         /* On P/Q/R/S, one can read from the device via the MAC reconfiguration
1292          * tables. On E/T, MAC reconfig tables are not readable, only writable.
1293          * We have to *know* what the MAC looks like.  For the sake of keeping
1294          * the code common, we'll use the static configuration tables as a
1295          * reasonable approximation for both E/T and P/Q/R/S.
1296          */
1297         mac = priv->static_config.tables[BLK_IDX_MAC_CONFIG].entries;
1298
1299         switch (speed_mbps) {
1300         case SPEED_UNKNOWN:
1301                 /* PHYLINK called sja1105_mac_config() to inform us about
1302                  * the state->interface, but AN has not completed and the
1303                  * speed is not yet valid. UM10944.pdf says that setting
1304                  * SJA1105_SPEED_AUTO at runtime disables the port, so that is
1305                  * ok for power consumption in case AN will never complete -
1306                  * otherwise PHYLINK should come back with a new update.
1307                  */
1308                 speed = priv->info->port_speed[SJA1105_SPEED_AUTO];
1309                 break;
1310         case SPEED_10:
1311                 speed = priv->info->port_speed[SJA1105_SPEED_10MBPS];
1312                 break;
1313         case SPEED_100:
1314                 speed = priv->info->port_speed[SJA1105_SPEED_100MBPS];
1315                 break;
1316         case SPEED_1000:
1317                 speed = priv->info->port_speed[SJA1105_SPEED_1000MBPS];
1318                 break;
1319         case SPEED_2500:
1320                 speed = priv->info->port_speed[SJA1105_SPEED_2500MBPS];
1321                 break;
1322         default:
1323                 dev_err(dev, "Invalid speed %iMbps\n", speed_mbps);
1324                 return -EINVAL;
1325         }
1326
1327         /* Overwrite SJA1105_SPEED_AUTO from the static MAC configuration
1328          * table, since this will be used for the clocking setup, and we no
1329          * longer need to store it in the static config (already told hardware
1330          * we want auto during upload phase).
1331          * Actually for the SGMII port, the MAC is fixed at 1 Gbps and
1332          * we need to configure the PCS only (if even that).
1333          */
1334         if (priv->phy_mode[port] == PHY_INTERFACE_MODE_SGMII)
1335                 mac[port].speed = priv->info->port_speed[SJA1105_SPEED_1000MBPS];
1336         else if (priv->phy_mode[port] == PHY_INTERFACE_MODE_2500BASEX)
1337                 mac[port].speed = priv->info->port_speed[SJA1105_SPEED_2500MBPS];
1338         else
1339                 mac[port].speed = speed;
1340
1341         /* Write to the dynamic reconfiguration tables */
1342         rc = sja1105_dynamic_config_write(priv, BLK_IDX_MAC_CONFIG, port,
1343                                           &mac[port], true);
1344         if (rc < 0) {
1345                 dev_err(dev, "Failed to write MAC config: %d\n", rc);
1346                 return rc;
1347         }
1348
1349         /* Reconfigure the PLLs for the RGMII interfaces (required 125 MHz at
1350          * gigabit, 25 MHz at 100 Mbps and 2.5 MHz at 10 Mbps). For MII and
1351          * RMII no change of the clock setup is required. Actually, changing
1352          * the clock setup does interrupt the clock signal for a certain time
1353          * which causes trouble for all PHYs relying on this signal.
1354          */
1355         if (!phy_interface_mode_is_rgmii(priv->phy_mode[port]))
1356                 return 0;
1357
1358         return sja1105_clocking_setup_port(priv, port);
1359 }
1360
1361 static struct phylink_pcs *
1362 sja1105_mac_select_pcs(struct dsa_switch *ds, int port, phy_interface_t iface)
1363 {
1364         struct sja1105_private *priv = ds->priv;
1365         struct dw_xpcs *xpcs = priv->xpcs[port];
1366
1367         if (xpcs)
1368                 return &xpcs->pcs;
1369
1370         return NULL;
1371 }
1372
1373 static void sja1105_mac_link_down(struct dsa_switch *ds, int port,
1374                                   unsigned int mode,
1375                                   phy_interface_t interface)
1376 {
1377         sja1105_inhibit_tx(ds->priv, BIT(port), true);
1378 }
1379
1380 static void sja1105_mac_link_up(struct dsa_switch *ds, int port,
1381                                 unsigned int mode,
1382                                 phy_interface_t interface,
1383                                 struct phy_device *phydev,
1384                                 int speed, int duplex,
1385                                 bool tx_pause, bool rx_pause)
1386 {
1387         struct sja1105_private *priv = ds->priv;
1388
1389         sja1105_adjust_port_config(priv, port, speed);
1390
1391         sja1105_inhibit_tx(priv, BIT(port), false);
1392 }
1393
1394 static void sja1105_phylink_get_caps(struct dsa_switch *ds, int port,
1395                                      struct phylink_config *config)
1396 {
1397         struct sja1105_private *priv = ds->priv;
1398         struct sja1105_xmii_params_entry *mii;
1399         phy_interface_t phy_mode;
1400
1401         /* This driver does not make use of the speed, duplex, pause or the
1402          * advertisement in its mac_config, so it is safe to mark this driver
1403          * as non-legacy.
1404          */
1405         config->legacy_pre_march2020 = false;
1406
1407         phy_mode = priv->phy_mode[port];
1408         if (phy_mode == PHY_INTERFACE_MODE_SGMII ||
1409             phy_mode == PHY_INTERFACE_MODE_2500BASEX) {
1410                 /* Changing the PHY mode on SERDES ports is possible and makes
1411                  * sense, because that is done through the XPCS. We allow
1412                  * changes between SGMII and 2500base-X.
1413                  */
1414                 if (priv->info->supports_sgmii[port])
1415                         __set_bit(PHY_INTERFACE_MODE_SGMII,
1416                                   config->supported_interfaces);
1417
1418                 if (priv->info->supports_2500basex[port])
1419                         __set_bit(PHY_INTERFACE_MODE_2500BASEX,
1420                                   config->supported_interfaces);
1421         } else {
1422                 /* The SJA1105 MAC programming model is through the static
1423                  * config (the xMII Mode table cannot be dynamically
1424                  * reconfigured), and we have to program that early.
1425                  */
1426                 __set_bit(phy_mode, config->supported_interfaces);
1427         }
1428
1429         /* The MAC does not support pause frames, and also doesn't
1430          * support half-duplex traffic modes.
1431          */
1432         config->mac_capabilities = MAC_10FD | MAC_100FD;
1433
1434         mii = priv->static_config.tables[BLK_IDX_XMII_PARAMS].entries;
1435         if (mii->xmii_mode[port] == XMII_MODE_RGMII ||
1436             mii->xmii_mode[port] == XMII_MODE_SGMII)
1437                 config->mac_capabilities |= MAC_1000FD;
1438
1439         if (priv->info->supports_2500basex[port])
1440                 config->mac_capabilities |= MAC_2500FD;
1441 }
1442
1443 static int
1444 sja1105_find_static_fdb_entry(struct sja1105_private *priv, int port,
1445                               const struct sja1105_l2_lookup_entry *requested)
1446 {
1447         struct sja1105_l2_lookup_entry *l2_lookup;
1448         struct sja1105_table *table;
1449         int i;
1450
1451         table = &priv->static_config.tables[BLK_IDX_L2_LOOKUP];
1452         l2_lookup = table->entries;
1453
1454         for (i = 0; i < table->entry_count; i++)
1455                 if (l2_lookup[i].macaddr == requested->macaddr &&
1456                     l2_lookup[i].vlanid == requested->vlanid &&
1457                     l2_lookup[i].destports & BIT(port))
1458                         return i;
1459
1460         return -1;
1461 }
1462
1463 /* We want FDB entries added statically through the bridge command to persist
1464  * across switch resets, which are a common thing during normal SJA1105
1465  * operation. So we have to back them up in the static configuration tables
1466  * and hence apply them on next static config upload... yay!
1467  */
1468 static int
1469 sja1105_static_fdb_change(struct sja1105_private *priv, int port,
1470                           const struct sja1105_l2_lookup_entry *requested,
1471                           bool keep)
1472 {
1473         struct sja1105_l2_lookup_entry *l2_lookup;
1474         struct sja1105_table *table;
1475         int rc, match;
1476
1477         table = &priv->static_config.tables[BLK_IDX_L2_LOOKUP];
1478
1479         match = sja1105_find_static_fdb_entry(priv, port, requested);
1480         if (match < 0) {
1481                 /* Can't delete a missing entry. */
1482                 if (!keep)
1483                         return 0;
1484
1485                 /* No match => new entry */
1486                 rc = sja1105_table_resize(table, table->entry_count + 1);
1487                 if (rc)
1488                         return rc;
1489
1490                 match = table->entry_count - 1;
1491         }
1492
1493         /* Assign pointer after the resize (it may be new memory) */
1494         l2_lookup = table->entries;
1495
1496         /* We have a match.
1497          * If the job was to add this FDB entry, it's already done (mostly
1498          * anyway, since the port forwarding mask may have changed, case in
1499          * which we update it).
1500          * Otherwise we have to delete it.
1501          */
1502         if (keep) {
1503                 l2_lookup[match] = *requested;
1504                 return 0;
1505         }
1506
1507         /* To remove, the strategy is to overwrite the element with
1508          * the last one, and then reduce the array size by 1
1509          */
1510         l2_lookup[match] = l2_lookup[table->entry_count - 1];
1511         return sja1105_table_resize(table, table->entry_count - 1);
1512 }
1513
1514 /* First-generation switches have a 4-way set associative TCAM that
1515  * holds the FDB entries. An FDB index spans from 0 to 1023 and is comprised of
1516  * a "bin" (grouping of 4 entries) and a "way" (an entry within a bin).
1517  * For the placement of a newly learnt FDB entry, the switch selects the bin
1518  * based on a hash function, and the way within that bin incrementally.
1519  */
1520 static int sja1105et_fdb_index(int bin, int way)
1521 {
1522         return bin * SJA1105ET_FDB_BIN_SIZE + way;
1523 }
1524
1525 static int sja1105et_is_fdb_entry_in_bin(struct sja1105_private *priv, int bin,
1526                                          const u8 *addr, u16 vid,
1527                                          struct sja1105_l2_lookup_entry *match,
1528                                          int *last_unused)
1529 {
1530         int way;
1531
1532         for (way = 0; way < SJA1105ET_FDB_BIN_SIZE; way++) {
1533                 struct sja1105_l2_lookup_entry l2_lookup = {0};
1534                 int index = sja1105et_fdb_index(bin, way);
1535
1536                 /* Skip unused entries, optionally marking them
1537                  * into the return value
1538                  */
1539                 if (sja1105_dynamic_config_read(priv, BLK_IDX_L2_LOOKUP,
1540                                                 index, &l2_lookup)) {
1541                         if (last_unused)
1542                                 *last_unused = way;
1543                         continue;
1544                 }
1545
1546                 if (l2_lookup.macaddr == ether_addr_to_u64(addr) &&
1547                     l2_lookup.vlanid == vid) {
1548                         if (match)
1549                                 *match = l2_lookup;
1550                         return way;
1551                 }
1552         }
1553         /* Return an invalid entry index if not found */
1554         return -1;
1555 }
1556
1557 int sja1105et_fdb_add(struct dsa_switch *ds, int port,
1558                       const unsigned char *addr, u16 vid)
1559 {
1560         struct sja1105_l2_lookup_entry l2_lookup = {0}, tmp;
1561         struct sja1105_private *priv = ds->priv;
1562         struct device *dev = ds->dev;
1563         int last_unused = -1;
1564         int start, end, i;
1565         int bin, way, rc;
1566
1567         bin = sja1105et_fdb_hash(priv, addr, vid);
1568
1569         way = sja1105et_is_fdb_entry_in_bin(priv, bin, addr, vid,
1570                                             &l2_lookup, &last_unused);
1571         if (way >= 0) {
1572                 /* We have an FDB entry. Is our port in the destination
1573                  * mask? If yes, we need to do nothing. If not, we need
1574                  * to rewrite the entry by adding this port to it.
1575                  */
1576                 if ((l2_lookup.destports & BIT(port)) && l2_lookup.lockeds)
1577                         return 0;
1578                 l2_lookup.destports |= BIT(port);
1579         } else {
1580                 int index = sja1105et_fdb_index(bin, way);
1581
1582                 /* We don't have an FDB entry. We construct a new one and
1583                  * try to find a place for it within the FDB table.
1584                  */
1585                 l2_lookup.macaddr = ether_addr_to_u64(addr);
1586                 l2_lookup.destports = BIT(port);
1587                 l2_lookup.vlanid = vid;
1588
1589                 if (last_unused >= 0) {
1590                         way = last_unused;
1591                 } else {
1592                         /* Bin is full, need to evict somebody.
1593                          * Choose victim at random. If you get these messages
1594                          * often, you may need to consider changing the
1595                          * distribution function:
1596                          * static_config[BLK_IDX_L2_LOOKUP_PARAMS].entries->poly
1597                          */
1598                         get_random_bytes(&way, sizeof(u8));
1599                         way %= SJA1105ET_FDB_BIN_SIZE;
1600                         dev_warn(dev, "Warning, FDB bin %d full while adding entry for %pM. Evicting entry %u.\n",
1601                                  bin, addr, way);
1602                         /* Evict entry */
1603                         sja1105_dynamic_config_write(priv, BLK_IDX_L2_LOOKUP,
1604                                                      index, NULL, false);
1605                 }
1606         }
1607         l2_lookup.lockeds = true;
1608         l2_lookup.index = sja1105et_fdb_index(bin, way);
1609
1610         rc = sja1105_dynamic_config_write(priv, BLK_IDX_L2_LOOKUP,
1611                                           l2_lookup.index, &l2_lookup,
1612                                           true);
1613         if (rc < 0)
1614                 return rc;
1615
1616         /* Invalidate a dynamically learned entry if that exists */
1617         start = sja1105et_fdb_index(bin, 0);
1618         end = sja1105et_fdb_index(bin, way);
1619
1620         for (i = start; i < end; i++) {
1621                 rc = sja1105_dynamic_config_read(priv, BLK_IDX_L2_LOOKUP,
1622                                                  i, &tmp);
1623                 if (rc == -ENOENT)
1624                         continue;
1625                 if (rc)
1626                         return rc;
1627
1628                 if (tmp.macaddr != ether_addr_to_u64(addr) || tmp.vlanid != vid)
1629                         continue;
1630
1631                 rc = sja1105_dynamic_config_write(priv, BLK_IDX_L2_LOOKUP,
1632                                                   i, NULL, false);
1633                 if (rc)
1634                         return rc;
1635
1636                 break;
1637         }
1638
1639         return sja1105_static_fdb_change(priv, port, &l2_lookup, true);
1640 }
1641
1642 int sja1105et_fdb_del(struct dsa_switch *ds, int port,
1643                       const unsigned char *addr, u16 vid)
1644 {
1645         struct sja1105_l2_lookup_entry l2_lookup = {0};
1646         struct sja1105_private *priv = ds->priv;
1647         int index, bin, way, rc;
1648         bool keep;
1649
1650         bin = sja1105et_fdb_hash(priv, addr, vid);
1651         way = sja1105et_is_fdb_entry_in_bin(priv, bin, addr, vid,
1652                                             &l2_lookup, NULL);
1653         if (way < 0)
1654                 return 0;
1655         index = sja1105et_fdb_index(bin, way);
1656
1657         /* We have an FDB entry. Is our port in the destination mask? If yes,
1658          * we need to remove it. If the resulting port mask becomes empty, we
1659          * need to completely evict the FDB entry.
1660          * Otherwise we just write it back.
1661          */
1662         l2_lookup.destports &= ~BIT(port);
1663
1664         if (l2_lookup.destports)
1665                 keep = true;
1666         else
1667                 keep = false;
1668
1669         rc = sja1105_dynamic_config_write(priv, BLK_IDX_L2_LOOKUP,
1670                                           index, &l2_lookup, keep);
1671         if (rc < 0)
1672                 return rc;
1673
1674         return sja1105_static_fdb_change(priv, port, &l2_lookup, keep);
1675 }
1676
1677 int sja1105pqrs_fdb_add(struct dsa_switch *ds, int port,
1678                         const unsigned char *addr, u16 vid)
1679 {
1680         struct sja1105_l2_lookup_entry l2_lookup = {0}, tmp;
1681         struct sja1105_private *priv = ds->priv;
1682         int rc, i;
1683
1684         /* Search for an existing entry in the FDB table */
1685         l2_lookup.macaddr = ether_addr_to_u64(addr);
1686         l2_lookup.vlanid = vid;
1687         l2_lookup.mask_macaddr = GENMASK_ULL(ETH_ALEN * 8 - 1, 0);
1688         l2_lookup.mask_vlanid = VLAN_VID_MASK;
1689         l2_lookup.destports = BIT(port);
1690
1691         tmp = l2_lookup;
1692
1693         rc = sja1105_dynamic_config_read(priv, BLK_IDX_L2_LOOKUP,
1694                                          SJA1105_SEARCH, &tmp);
1695         if (rc == 0 && tmp.index != SJA1105_MAX_L2_LOOKUP_COUNT - 1) {
1696                 /* Found a static entry and this port is already in the entry's
1697                  * port mask => job done
1698                  */
1699                 if ((tmp.destports & BIT(port)) && tmp.lockeds)
1700                         return 0;
1701
1702                 l2_lookup = tmp;
1703
1704                 /* l2_lookup.index is populated by the switch in case it
1705                  * found something.
1706                  */
1707                 l2_lookup.destports |= BIT(port);
1708                 goto skip_finding_an_index;
1709         }
1710
1711         /* Not found, so try to find an unused spot in the FDB.
1712          * This is slightly inefficient because the strategy is knock-knock at
1713          * every possible position from 0 to 1023.
1714          */
1715         for (i = 0; i < SJA1105_MAX_L2_LOOKUP_COUNT; i++) {
1716                 rc = sja1105_dynamic_config_read(priv, BLK_IDX_L2_LOOKUP,
1717                                                  i, NULL);
1718                 if (rc < 0)
1719                         break;
1720         }
1721         if (i == SJA1105_MAX_L2_LOOKUP_COUNT) {
1722                 dev_err(ds->dev, "FDB is full, cannot add entry.\n");
1723                 return -EINVAL;
1724         }
1725         l2_lookup.index = i;
1726
1727 skip_finding_an_index:
1728         l2_lookup.lockeds = true;
1729
1730         rc = sja1105_dynamic_config_write(priv, BLK_IDX_L2_LOOKUP,
1731                                           l2_lookup.index, &l2_lookup,
1732                                           true);
1733         if (rc < 0)
1734                 return rc;
1735
1736         /* The switch learns dynamic entries and looks up the FDB left to
1737          * right. It is possible that our addition was concurrent with the
1738          * dynamic learning of the same address, so now that the static entry
1739          * has been installed, we are certain that address learning for this
1740          * particular address has been turned off, so the dynamic entry either
1741          * is in the FDB at an index smaller than the static one, or isn't (it
1742          * can also be at a larger index, but in that case it is inactive
1743          * because the static FDB entry will match first, and the dynamic one
1744          * will eventually age out). Search for a dynamically learned address
1745          * prior to our static one and invalidate it.
1746          */
1747         tmp = l2_lookup;
1748
1749         rc = sja1105_dynamic_config_read(priv, BLK_IDX_L2_LOOKUP,
1750                                          SJA1105_SEARCH, &tmp);
1751         if (rc < 0) {
1752                 dev_err(ds->dev,
1753                         "port %d failed to read back entry for %pM vid %d: %pe\n",
1754                         port, addr, vid, ERR_PTR(rc));
1755                 return rc;
1756         }
1757
1758         if (tmp.index < l2_lookup.index) {
1759                 rc = sja1105_dynamic_config_write(priv, BLK_IDX_L2_LOOKUP,
1760                                                   tmp.index, NULL, false);
1761                 if (rc < 0)
1762                         return rc;
1763         }
1764
1765         return sja1105_static_fdb_change(priv, port, &l2_lookup, true);
1766 }
1767
1768 int sja1105pqrs_fdb_del(struct dsa_switch *ds, int port,
1769                         const unsigned char *addr, u16 vid)
1770 {
1771         struct sja1105_l2_lookup_entry l2_lookup = {0};
1772         struct sja1105_private *priv = ds->priv;
1773         bool keep;
1774         int rc;
1775
1776         l2_lookup.macaddr = ether_addr_to_u64(addr);
1777         l2_lookup.vlanid = vid;
1778         l2_lookup.mask_macaddr = GENMASK_ULL(ETH_ALEN * 8 - 1, 0);
1779         l2_lookup.mask_vlanid = VLAN_VID_MASK;
1780         l2_lookup.destports = BIT(port);
1781
1782         rc = sja1105_dynamic_config_read(priv, BLK_IDX_L2_LOOKUP,
1783                                          SJA1105_SEARCH, &l2_lookup);
1784         if (rc < 0)
1785                 return 0;
1786
1787         l2_lookup.destports &= ~BIT(port);
1788
1789         /* Decide whether we remove just this port from the FDB entry,
1790          * or if we remove it completely.
1791          */
1792         if (l2_lookup.destports)
1793                 keep = true;
1794         else
1795                 keep = false;
1796
1797         rc = sja1105_dynamic_config_write(priv, BLK_IDX_L2_LOOKUP,
1798                                           l2_lookup.index, &l2_lookup, keep);
1799         if (rc < 0)
1800                 return rc;
1801
1802         return sja1105_static_fdb_change(priv, port, &l2_lookup, keep);
1803 }
1804
1805 static int sja1105_fdb_add(struct dsa_switch *ds, int port,
1806                            const unsigned char *addr, u16 vid,
1807                            struct dsa_db db)
1808 {
1809         struct sja1105_private *priv = ds->priv;
1810
1811         return priv->info->fdb_add_cmd(ds, port, addr, vid);
1812 }
1813
1814 static int sja1105_fdb_del(struct dsa_switch *ds, int port,
1815                            const unsigned char *addr, u16 vid,
1816                            struct dsa_db db)
1817 {
1818         struct sja1105_private *priv = ds->priv;
1819
1820         return priv->info->fdb_del_cmd(ds, port, addr, vid);
1821 }
1822
1823 static int sja1105_fdb_dump(struct dsa_switch *ds, int port,
1824                             dsa_fdb_dump_cb_t *cb, void *data)
1825 {
1826         struct dsa_port *dp = dsa_to_port(ds, port);
1827         struct sja1105_private *priv = ds->priv;
1828         struct device *dev = ds->dev;
1829         int i;
1830
1831         for (i = 0; i < SJA1105_MAX_L2_LOOKUP_COUNT; i++) {
1832                 struct sja1105_l2_lookup_entry l2_lookup = {0};
1833                 u8 macaddr[ETH_ALEN];
1834                 int rc;
1835
1836                 rc = sja1105_dynamic_config_read(priv, BLK_IDX_L2_LOOKUP,
1837                                                  i, &l2_lookup);
1838                 /* No fdb entry at i, not an issue */
1839                 if (rc == -ENOENT)
1840                         continue;
1841                 if (rc) {
1842                         dev_err(dev, "Failed to dump FDB: %d\n", rc);
1843                         return rc;
1844                 }
1845
1846                 /* FDB dump callback is per port. This means we have to
1847                  * disregard a valid entry if it's not for this port, even if
1848                  * only to revisit it later. This is inefficient because the
1849                  * 1024-sized FDB table needs to be traversed 4 times through
1850                  * SPI during a 'bridge fdb show' command.
1851                  */
1852                 if (!(l2_lookup.destports & BIT(port)))
1853                         continue;
1854
1855                 /* We need to hide the FDB entry for unknown multicast */
1856                 if (l2_lookup.macaddr == SJA1105_UNKNOWN_MULTICAST &&
1857                     l2_lookup.mask_macaddr == SJA1105_UNKNOWN_MULTICAST)
1858                         continue;
1859
1860                 u64_to_ether_addr(l2_lookup.macaddr, macaddr);
1861
1862                 /* We need to hide the dsa_8021q VLANs from the user. */
1863                 if (!dsa_port_is_vlan_filtering(dp))
1864                         l2_lookup.vlanid = 0;
1865                 rc = cb(macaddr, l2_lookup.vlanid, l2_lookup.lockeds, data);
1866                 if (rc)
1867                         return rc;
1868         }
1869         return 0;
1870 }
1871
1872 static void sja1105_fast_age(struct dsa_switch *ds, int port)
1873 {
1874         struct dsa_port *dp = dsa_to_port(ds, port);
1875         struct sja1105_private *priv = ds->priv;
1876         struct dsa_db db = {
1877                 .type = DSA_DB_BRIDGE,
1878                 .bridge = {
1879                         .dev = dsa_port_bridge_dev_get(dp),
1880                         .num = dsa_port_bridge_num_get(dp),
1881                 },
1882         };
1883         int i;
1884
1885         for (i = 0; i < SJA1105_MAX_L2_LOOKUP_COUNT; i++) {
1886                 struct sja1105_l2_lookup_entry l2_lookup = {0};
1887                 u8 macaddr[ETH_ALEN];
1888                 int rc;
1889
1890                 rc = sja1105_dynamic_config_read(priv, BLK_IDX_L2_LOOKUP,
1891                                                  i, &l2_lookup);
1892                 /* No fdb entry at i, not an issue */
1893                 if (rc == -ENOENT)
1894                         continue;
1895                 if (rc) {
1896                         dev_err(ds->dev, "Failed to read FDB: %pe\n",
1897                                 ERR_PTR(rc));
1898                         return;
1899                 }
1900
1901                 if (!(l2_lookup.destports & BIT(port)))
1902                         continue;
1903
1904                 /* Don't delete static FDB entries */
1905                 if (l2_lookup.lockeds)
1906                         continue;
1907
1908                 u64_to_ether_addr(l2_lookup.macaddr, macaddr);
1909
1910                 rc = sja1105_fdb_del(ds, port, macaddr, l2_lookup.vlanid, db);
1911                 if (rc) {
1912                         dev_err(ds->dev,
1913                                 "Failed to delete FDB entry %pM vid %lld: %pe\n",
1914                                 macaddr, l2_lookup.vlanid, ERR_PTR(rc));
1915                         return;
1916                 }
1917         }
1918 }
1919
1920 static int sja1105_mdb_add(struct dsa_switch *ds, int port,
1921                            const struct switchdev_obj_port_mdb *mdb,
1922                            struct dsa_db db)
1923 {
1924         return sja1105_fdb_add(ds, port, mdb->addr, mdb->vid, db);
1925 }
1926
1927 static int sja1105_mdb_del(struct dsa_switch *ds, int port,
1928                            const struct switchdev_obj_port_mdb *mdb,
1929                            struct dsa_db db)
1930 {
1931         return sja1105_fdb_del(ds, port, mdb->addr, mdb->vid, db);
1932 }
1933
1934 /* Common function for unicast and broadcast flood configuration.
1935  * Flooding is configured between each {ingress, egress} port pair, and since
1936  * the bridge's semantics are those of "egress flooding", it means we must
1937  * enable flooding towards this port from all ingress ports that are in the
1938  * same forwarding domain.
1939  */
1940 static int sja1105_manage_flood_domains(struct sja1105_private *priv)
1941 {
1942         struct sja1105_l2_forwarding_entry *l2_fwd;
1943         struct dsa_switch *ds = priv->ds;
1944         int from, to, rc;
1945
1946         l2_fwd = priv->static_config.tables[BLK_IDX_L2_FORWARDING].entries;
1947
1948         for (from = 0; from < ds->num_ports; from++) {
1949                 u64 fl_domain = 0, bc_domain = 0;
1950
1951                 for (to = 0; to < priv->ds->num_ports; to++) {
1952                         if (!sja1105_can_forward(l2_fwd, from, to))
1953                                 continue;
1954
1955                         if (priv->ucast_egress_floods & BIT(to))
1956                                 fl_domain |= BIT(to);
1957                         if (priv->bcast_egress_floods & BIT(to))
1958                                 bc_domain |= BIT(to);
1959                 }
1960
1961                 /* Nothing changed, nothing to do */
1962                 if (l2_fwd[from].fl_domain == fl_domain &&
1963                     l2_fwd[from].bc_domain == bc_domain)
1964                         continue;
1965
1966                 l2_fwd[from].fl_domain = fl_domain;
1967                 l2_fwd[from].bc_domain = bc_domain;
1968
1969                 rc = sja1105_dynamic_config_write(priv, BLK_IDX_L2_FORWARDING,
1970                                                   from, &l2_fwd[from], true);
1971                 if (rc < 0)
1972                         return rc;
1973         }
1974
1975         return 0;
1976 }
1977
1978 static int sja1105_bridge_member(struct dsa_switch *ds, int port,
1979                                  struct dsa_bridge bridge, bool member)
1980 {
1981         struct sja1105_l2_forwarding_entry *l2_fwd;
1982         struct sja1105_private *priv = ds->priv;
1983         int i, rc;
1984
1985         l2_fwd = priv->static_config.tables[BLK_IDX_L2_FORWARDING].entries;
1986
1987         for (i = 0; i < ds->num_ports; i++) {
1988                 /* Add this port to the forwarding matrix of the
1989                  * other ports in the same bridge, and viceversa.
1990                  */
1991                 if (!dsa_is_user_port(ds, i))
1992                         continue;
1993                 /* For the ports already under the bridge, only one thing needs
1994                  * to be done, and that is to add this port to their
1995                  * reachability domain. So we can perform the SPI write for
1996                  * them immediately. However, for this port itself (the one
1997                  * that is new to the bridge), we need to add all other ports
1998                  * to its reachability domain. So we do that incrementally in
1999                  * this loop, and perform the SPI write only at the end, once
2000                  * the domain contains all other bridge ports.
2001                  */
2002                 if (i == port)
2003                         continue;
2004                 if (!dsa_port_offloads_bridge(dsa_to_port(ds, i), &bridge))
2005                         continue;
2006                 sja1105_port_allow_traffic(l2_fwd, i, port, member);
2007                 sja1105_port_allow_traffic(l2_fwd, port, i, member);
2008
2009                 rc = sja1105_dynamic_config_write(priv, BLK_IDX_L2_FORWARDING,
2010                                                   i, &l2_fwd[i], true);
2011                 if (rc < 0)
2012                         return rc;
2013         }
2014
2015         rc = sja1105_dynamic_config_write(priv, BLK_IDX_L2_FORWARDING,
2016                                           port, &l2_fwd[port], true);
2017         if (rc)
2018                 return rc;
2019
2020         rc = sja1105_commit_pvid(ds, port);
2021         if (rc)
2022                 return rc;
2023
2024         return sja1105_manage_flood_domains(priv);
2025 }
2026
2027 static void sja1105_bridge_stp_state_set(struct dsa_switch *ds, int port,
2028                                          u8 state)
2029 {
2030         struct dsa_port *dp = dsa_to_port(ds, port);
2031         struct sja1105_private *priv = ds->priv;
2032         struct sja1105_mac_config_entry *mac;
2033
2034         mac = priv->static_config.tables[BLK_IDX_MAC_CONFIG].entries;
2035
2036         switch (state) {
2037         case BR_STATE_DISABLED:
2038         case BR_STATE_BLOCKING:
2039                 /* From UM10944 description of DRPDTAG (why put this there?):
2040                  * "Management traffic flows to the port regardless of the state
2041                  * of the INGRESS flag". So BPDUs are still be allowed to pass.
2042                  * At the moment no difference between DISABLED and BLOCKING.
2043                  */
2044                 mac[port].ingress   = false;
2045                 mac[port].egress    = false;
2046                 mac[port].dyn_learn = false;
2047                 break;
2048         case BR_STATE_LISTENING:
2049                 mac[port].ingress   = true;
2050                 mac[port].egress    = false;
2051                 mac[port].dyn_learn = false;
2052                 break;
2053         case BR_STATE_LEARNING:
2054                 mac[port].ingress   = true;
2055                 mac[port].egress    = false;
2056                 mac[port].dyn_learn = dp->learning;
2057                 break;
2058         case BR_STATE_FORWARDING:
2059                 mac[port].ingress   = true;
2060                 mac[port].egress    = true;
2061                 mac[port].dyn_learn = dp->learning;
2062                 break;
2063         default:
2064                 dev_err(ds->dev, "invalid STP state: %d\n", state);
2065                 return;
2066         }
2067
2068         sja1105_dynamic_config_write(priv, BLK_IDX_MAC_CONFIG, port,
2069                                      &mac[port], true);
2070 }
2071
2072 static int sja1105_bridge_join(struct dsa_switch *ds, int port,
2073                                struct dsa_bridge bridge,
2074                                bool *tx_fwd_offload)
2075 {
2076         int rc;
2077
2078         rc = sja1105_bridge_member(ds, port, bridge, true);
2079         if (rc)
2080                 return rc;
2081
2082         rc = dsa_tag_8021q_bridge_join(ds, port, bridge);
2083         if (rc) {
2084                 sja1105_bridge_member(ds, port, bridge, false);
2085                 return rc;
2086         }
2087
2088         *tx_fwd_offload = true;
2089
2090         return 0;
2091 }
2092
2093 static void sja1105_bridge_leave(struct dsa_switch *ds, int port,
2094                                  struct dsa_bridge bridge)
2095 {
2096         dsa_tag_8021q_bridge_leave(ds, port, bridge);
2097         sja1105_bridge_member(ds, port, bridge, false);
2098 }
2099
2100 #define BYTES_PER_KBIT (1000LL / 8)
2101
2102 static int sja1105_find_unused_cbs_shaper(struct sja1105_private *priv)
2103 {
2104         int i;
2105
2106         for (i = 0; i < priv->info->num_cbs_shapers; i++)
2107                 if (!priv->cbs[i].idle_slope && !priv->cbs[i].send_slope)
2108                         return i;
2109
2110         return -1;
2111 }
2112
2113 static int sja1105_delete_cbs_shaper(struct sja1105_private *priv, int port,
2114                                      int prio)
2115 {
2116         int i;
2117
2118         for (i = 0; i < priv->info->num_cbs_shapers; i++) {
2119                 struct sja1105_cbs_entry *cbs = &priv->cbs[i];
2120
2121                 if (cbs->port == port && cbs->prio == prio) {
2122                         memset(cbs, 0, sizeof(*cbs));
2123                         return sja1105_dynamic_config_write(priv, BLK_IDX_CBS,
2124                                                             i, cbs, true);
2125                 }
2126         }
2127
2128         return 0;
2129 }
2130
2131 static int sja1105_setup_tc_cbs(struct dsa_switch *ds, int port,
2132                                 struct tc_cbs_qopt_offload *offload)
2133 {
2134         struct sja1105_private *priv = ds->priv;
2135         struct sja1105_cbs_entry *cbs;
2136         int index;
2137
2138         if (!offload->enable)
2139                 return sja1105_delete_cbs_shaper(priv, port, offload->queue);
2140
2141         index = sja1105_find_unused_cbs_shaper(priv);
2142         if (index < 0)
2143                 return -ENOSPC;
2144
2145         cbs = &priv->cbs[index];
2146         cbs->port = port;
2147         cbs->prio = offload->queue;
2148         /* locredit and sendslope are negative by definition. In hardware,
2149          * positive values must be provided, and the negative sign is implicit.
2150          */
2151         cbs->credit_hi = offload->hicredit;
2152         cbs->credit_lo = abs(offload->locredit);
2153         /* User space is in kbits/sec, hardware in bytes/sec */
2154         cbs->idle_slope = offload->idleslope * BYTES_PER_KBIT;
2155         cbs->send_slope = abs(offload->sendslope * BYTES_PER_KBIT);
2156         /* Convert the negative values from 64-bit 2's complement
2157          * to 32-bit 2's complement (for the case of 0x80000000 whose
2158          * negative is still negative).
2159          */
2160         cbs->credit_lo &= GENMASK_ULL(31, 0);
2161         cbs->send_slope &= GENMASK_ULL(31, 0);
2162
2163         return sja1105_dynamic_config_write(priv, BLK_IDX_CBS, index, cbs,
2164                                             true);
2165 }
2166
2167 static int sja1105_reload_cbs(struct sja1105_private *priv)
2168 {
2169         int rc = 0, i;
2170
2171         /* The credit based shapers are only allocated if
2172          * CONFIG_NET_SCH_CBS is enabled.
2173          */
2174         if (!priv->cbs)
2175                 return 0;
2176
2177         for (i = 0; i < priv->info->num_cbs_shapers; i++) {
2178                 struct sja1105_cbs_entry *cbs = &priv->cbs[i];
2179
2180                 if (!cbs->idle_slope && !cbs->send_slope)
2181                         continue;
2182
2183                 rc = sja1105_dynamic_config_write(priv, BLK_IDX_CBS, i, cbs,
2184                                                   true);
2185                 if (rc)
2186                         break;
2187         }
2188
2189         return rc;
2190 }
2191
2192 static const char * const sja1105_reset_reasons[] = {
2193         [SJA1105_VLAN_FILTERING] = "VLAN filtering",
2194         [SJA1105_RX_HWTSTAMPING] = "RX timestamping",
2195         [SJA1105_AGEING_TIME] = "Ageing time",
2196         [SJA1105_SCHEDULING] = "Time-aware scheduling",
2197         [SJA1105_BEST_EFFORT_POLICING] = "Best-effort policing",
2198         [SJA1105_VIRTUAL_LINKS] = "Virtual links",
2199 };
2200
2201 /* For situations where we need to change a setting at runtime that is only
2202  * available through the static configuration, resetting the switch in order
2203  * to upload the new static config is unavoidable. Back up the settings we
2204  * modify at runtime (currently only MAC) and restore them after uploading,
2205  * such that this operation is relatively seamless.
2206  */
2207 int sja1105_static_config_reload(struct sja1105_private *priv,
2208                                  enum sja1105_reset_reason reason)
2209 {
2210         struct ptp_system_timestamp ptp_sts_before;
2211         struct ptp_system_timestamp ptp_sts_after;
2212         int speed_mbps[SJA1105_MAX_NUM_PORTS];
2213         u16 bmcr[SJA1105_MAX_NUM_PORTS] = {0};
2214         struct sja1105_mac_config_entry *mac;
2215         struct dsa_switch *ds = priv->ds;
2216         s64 t1, t2, t3, t4;
2217         s64 t12, t34;
2218         int rc, i;
2219         s64 now;
2220
2221         mutex_lock(&priv->mgmt_lock);
2222
2223         mac = priv->static_config.tables[BLK_IDX_MAC_CONFIG].entries;
2224
2225         /* Back up the dynamic link speed changed by sja1105_adjust_port_config
2226          * in order to temporarily restore it to SJA1105_SPEED_AUTO - which the
2227          * switch wants to see in the static config in order to allow us to
2228          * change it through the dynamic interface later.
2229          */
2230         for (i = 0; i < ds->num_ports; i++) {
2231                 u32 reg_addr = mdiobus_c45_addr(MDIO_MMD_VEND2, MDIO_CTRL1);
2232
2233                 speed_mbps[i] = sja1105_port_speed_to_ethtool(priv,
2234                                                               mac[i].speed);
2235                 mac[i].speed = priv->info->port_speed[SJA1105_SPEED_AUTO];
2236
2237                 if (priv->xpcs[i])
2238                         bmcr[i] = mdiobus_read(priv->mdio_pcs, i, reg_addr);
2239         }
2240
2241         /* No PTP operations can run right now */
2242         mutex_lock(&priv->ptp_data.lock);
2243
2244         rc = __sja1105_ptp_gettimex(ds, &now, &ptp_sts_before);
2245         if (rc < 0) {
2246                 mutex_unlock(&priv->ptp_data.lock);
2247                 goto out;
2248         }
2249
2250         /* Reset switch and send updated static configuration */
2251         rc = sja1105_static_config_upload(priv);
2252         if (rc < 0) {
2253                 mutex_unlock(&priv->ptp_data.lock);
2254                 goto out;
2255         }
2256
2257         rc = __sja1105_ptp_settime(ds, 0, &ptp_sts_after);
2258         if (rc < 0) {
2259                 mutex_unlock(&priv->ptp_data.lock);
2260                 goto out;
2261         }
2262
2263         t1 = timespec64_to_ns(&ptp_sts_before.pre_ts);
2264         t2 = timespec64_to_ns(&ptp_sts_before.post_ts);
2265         t3 = timespec64_to_ns(&ptp_sts_after.pre_ts);
2266         t4 = timespec64_to_ns(&ptp_sts_after.post_ts);
2267         /* Mid point, corresponds to pre-reset PTPCLKVAL */
2268         t12 = t1 + (t2 - t1) / 2;
2269         /* Mid point, corresponds to post-reset PTPCLKVAL, aka 0 */
2270         t34 = t3 + (t4 - t3) / 2;
2271         /* Advance PTPCLKVAL by the time it took since its readout */
2272         now += (t34 - t12);
2273
2274         __sja1105_ptp_adjtime(ds, now);
2275
2276         mutex_unlock(&priv->ptp_data.lock);
2277
2278         dev_info(priv->ds->dev,
2279                  "Reset switch and programmed static config. Reason: %s\n",
2280                  sja1105_reset_reasons[reason]);
2281
2282         /* Configure the CGU (PLLs) for MII and RMII PHYs.
2283          * For these interfaces there is no dynamic configuration
2284          * needed, since PLLs have same settings at all speeds.
2285          */
2286         if (priv->info->clocking_setup) {
2287                 rc = priv->info->clocking_setup(priv);
2288                 if (rc < 0)
2289                         goto out;
2290         }
2291
2292         for (i = 0; i < ds->num_ports; i++) {
2293                 struct dw_xpcs *xpcs = priv->xpcs[i];
2294                 unsigned int mode;
2295
2296                 rc = sja1105_adjust_port_config(priv, i, speed_mbps[i]);
2297                 if (rc < 0)
2298                         goto out;
2299
2300                 if (!xpcs)
2301                         continue;
2302
2303                 if (bmcr[i] & BMCR_ANENABLE)
2304                         mode = MLO_AN_INBAND;
2305                 else if (priv->fixed_link[i])
2306                         mode = MLO_AN_FIXED;
2307                 else
2308                         mode = MLO_AN_PHY;
2309
2310                 rc = xpcs_do_config(xpcs, priv->phy_mode[i], mode);
2311                 if (rc < 0)
2312                         goto out;
2313
2314                 if (!phylink_autoneg_inband(mode)) {
2315                         int speed = SPEED_UNKNOWN;
2316
2317                         if (priv->phy_mode[i] == PHY_INTERFACE_MODE_2500BASEX)
2318                                 speed = SPEED_2500;
2319                         else if (bmcr[i] & BMCR_SPEED1000)
2320                                 speed = SPEED_1000;
2321                         else if (bmcr[i] & BMCR_SPEED100)
2322                                 speed = SPEED_100;
2323                         else
2324                                 speed = SPEED_10;
2325
2326                         xpcs_link_up(&xpcs->pcs, mode, priv->phy_mode[i],
2327                                      speed, DUPLEX_FULL);
2328                 }
2329         }
2330
2331         rc = sja1105_reload_cbs(priv);
2332         if (rc < 0)
2333                 goto out;
2334 out:
2335         mutex_unlock(&priv->mgmt_lock);
2336
2337         return rc;
2338 }
2339
2340 static enum dsa_tag_protocol
2341 sja1105_get_tag_protocol(struct dsa_switch *ds, int port,
2342                          enum dsa_tag_protocol mp)
2343 {
2344         struct sja1105_private *priv = ds->priv;
2345
2346         return priv->info->tag_proto;
2347 }
2348
2349 /* The TPID setting belongs to the General Parameters table,
2350  * which can only be partially reconfigured at runtime (and not the TPID).
2351  * So a switch reset is required.
2352  */
2353 int sja1105_vlan_filtering(struct dsa_switch *ds, int port, bool enabled,
2354                            struct netlink_ext_ack *extack)
2355 {
2356         struct sja1105_l2_lookup_params_entry *l2_lookup_params;
2357         struct sja1105_general_params_entry *general_params;
2358         struct sja1105_private *priv = ds->priv;
2359         struct sja1105_table *table;
2360         struct sja1105_rule *rule;
2361         u16 tpid, tpid2;
2362         int rc;
2363
2364         list_for_each_entry(rule, &priv->flow_block.rules, list) {
2365                 if (rule->type == SJA1105_RULE_VL) {
2366                         NL_SET_ERR_MSG_MOD(extack,
2367                                            "Cannot change VLAN filtering with active VL rules");
2368                         return -EBUSY;
2369                 }
2370         }
2371
2372         if (enabled) {
2373                 /* Enable VLAN filtering. */
2374                 tpid  = ETH_P_8021Q;
2375                 tpid2 = ETH_P_8021AD;
2376         } else {
2377                 /* Disable VLAN filtering. */
2378                 tpid  = ETH_P_SJA1105;
2379                 tpid2 = ETH_P_SJA1105;
2380         }
2381
2382         table = &priv->static_config.tables[BLK_IDX_GENERAL_PARAMS];
2383         general_params = table->entries;
2384         /* EtherType used to identify inner tagged (C-tag) VLAN traffic */
2385         general_params->tpid = tpid;
2386         /* EtherType used to identify outer tagged (S-tag) VLAN traffic */
2387         general_params->tpid2 = tpid2;
2388         /* When VLAN filtering is on, we need to at least be able to
2389          * decode management traffic through the "backup plan".
2390          */
2391         general_params->incl_srcpt1 = enabled;
2392         general_params->incl_srcpt0 = enabled;
2393
2394         /* VLAN filtering => independent VLAN learning.
2395          * No VLAN filtering (or best effort) => shared VLAN learning.
2396          *
2397          * In shared VLAN learning mode, untagged traffic still gets
2398          * pvid-tagged, and the FDB table gets populated with entries
2399          * containing the "real" (pvid or from VLAN tag) VLAN ID.
2400          * However the switch performs a masked L2 lookup in the FDB,
2401          * effectively only looking up a frame's DMAC (and not VID) for the
2402          * forwarding decision.
2403          *
2404          * This is extremely convenient for us, because in modes with
2405          * vlan_filtering=0, dsa_8021q actually installs unique pvid's into
2406          * each front panel port. This is good for identification but breaks
2407          * learning badly - the VID of the learnt FDB entry is unique, aka
2408          * no frames coming from any other port are going to have it. So
2409          * for forwarding purposes, this is as though learning was broken
2410          * (all frames get flooded).
2411          */
2412         table = &priv->static_config.tables[BLK_IDX_L2_LOOKUP_PARAMS];
2413         l2_lookup_params = table->entries;
2414         l2_lookup_params->shared_learn = !enabled;
2415
2416         for (port = 0; port < ds->num_ports; port++) {
2417                 if (dsa_is_unused_port(ds, port))
2418                         continue;
2419
2420                 rc = sja1105_commit_pvid(ds, port);
2421                 if (rc)
2422                         return rc;
2423         }
2424
2425         rc = sja1105_static_config_reload(priv, SJA1105_VLAN_FILTERING);
2426         if (rc)
2427                 NL_SET_ERR_MSG_MOD(extack, "Failed to change VLAN Ethertype");
2428
2429         return rc;
2430 }
2431
2432 static int sja1105_vlan_add(struct sja1105_private *priv, int port, u16 vid,
2433                             u16 flags, bool allowed_ingress)
2434 {
2435         struct sja1105_vlan_lookup_entry *vlan;
2436         struct sja1105_table *table;
2437         int match, rc;
2438
2439         table = &priv->static_config.tables[BLK_IDX_VLAN_LOOKUP];
2440
2441         match = sja1105_is_vlan_configured(priv, vid);
2442         if (match < 0) {
2443                 rc = sja1105_table_resize(table, table->entry_count + 1);
2444                 if (rc)
2445                         return rc;
2446                 match = table->entry_count - 1;
2447         }
2448
2449         /* Assign pointer after the resize (it's new memory) */
2450         vlan = table->entries;
2451
2452         vlan[match].type_entry = SJA1110_VLAN_D_TAG;
2453         vlan[match].vlanid = vid;
2454         vlan[match].vlan_bc |= BIT(port);
2455
2456         if (allowed_ingress)
2457                 vlan[match].vmemb_port |= BIT(port);
2458         else
2459                 vlan[match].vmemb_port &= ~BIT(port);
2460
2461         if (flags & BRIDGE_VLAN_INFO_UNTAGGED)
2462                 vlan[match].tag_port &= ~BIT(port);
2463         else
2464                 vlan[match].tag_port |= BIT(port);
2465
2466         return sja1105_dynamic_config_write(priv, BLK_IDX_VLAN_LOOKUP, vid,
2467                                             &vlan[match], true);
2468 }
2469
2470 static int sja1105_vlan_del(struct sja1105_private *priv, int port, u16 vid)
2471 {
2472         struct sja1105_vlan_lookup_entry *vlan;
2473         struct sja1105_table *table;
2474         bool keep = true;
2475         int match, rc;
2476
2477         table = &priv->static_config.tables[BLK_IDX_VLAN_LOOKUP];
2478
2479         match = sja1105_is_vlan_configured(priv, vid);
2480         /* Can't delete a missing entry. */
2481         if (match < 0)
2482                 return 0;
2483
2484         /* Assign pointer after the resize (it's new memory) */
2485         vlan = table->entries;
2486
2487         vlan[match].vlanid = vid;
2488         vlan[match].vlan_bc &= ~BIT(port);
2489         vlan[match].vmemb_port &= ~BIT(port);
2490         /* Also unset tag_port, just so we don't have a confusing bitmap
2491          * (no practical purpose).
2492          */
2493         vlan[match].tag_port &= ~BIT(port);
2494
2495         /* If there's no port left as member of this VLAN,
2496          * it's time for it to go.
2497          */
2498         if (!vlan[match].vmemb_port)
2499                 keep = false;
2500
2501         rc = sja1105_dynamic_config_write(priv, BLK_IDX_VLAN_LOOKUP, vid,
2502                                           &vlan[match], keep);
2503         if (rc < 0)
2504                 return rc;
2505
2506         if (!keep)
2507                 return sja1105_table_delete_entry(table, match);
2508
2509         return 0;
2510 }
2511
2512 static int sja1105_bridge_vlan_add(struct dsa_switch *ds, int port,
2513                                    const struct switchdev_obj_port_vlan *vlan,
2514                                    struct netlink_ext_ack *extack)
2515 {
2516         struct sja1105_private *priv = ds->priv;
2517         u16 flags = vlan->flags;
2518         int rc;
2519
2520         /* Be sure to deny alterations to the configuration done by tag_8021q.
2521          */
2522         if (vid_is_dsa_8021q(vlan->vid)) {
2523                 NL_SET_ERR_MSG_MOD(extack,
2524                                    "Range 3072-4095 reserved for dsa_8021q operation");
2525                 return -EBUSY;
2526         }
2527
2528         /* Always install bridge VLANs as egress-tagged on CPU and DSA ports */
2529         if (dsa_is_cpu_port(ds, port) || dsa_is_dsa_port(ds, port))
2530                 flags = 0;
2531
2532         rc = sja1105_vlan_add(priv, port, vlan->vid, flags, true);
2533         if (rc)
2534                 return rc;
2535
2536         if (vlan->flags & BRIDGE_VLAN_INFO_PVID)
2537                 priv->bridge_pvid[port] = vlan->vid;
2538
2539         return sja1105_commit_pvid(ds, port);
2540 }
2541
2542 static int sja1105_bridge_vlan_del(struct dsa_switch *ds, int port,
2543                                    const struct switchdev_obj_port_vlan *vlan)
2544 {
2545         struct sja1105_private *priv = ds->priv;
2546         int rc;
2547
2548         rc = sja1105_vlan_del(priv, port, vlan->vid);
2549         if (rc)
2550                 return rc;
2551
2552         /* In case the pvid was deleted, make sure that untagged packets will
2553          * be dropped.
2554          */
2555         return sja1105_commit_pvid(ds, port);
2556 }
2557
2558 static int sja1105_dsa_8021q_vlan_add(struct dsa_switch *ds, int port, u16 vid,
2559                                       u16 flags)
2560 {
2561         struct sja1105_private *priv = ds->priv;
2562         bool allowed_ingress = true;
2563         int rc;
2564
2565         /* Prevent attackers from trying to inject a DSA tag from
2566          * the outside world.
2567          */
2568         if (dsa_is_user_port(ds, port))
2569                 allowed_ingress = false;
2570
2571         rc = sja1105_vlan_add(priv, port, vid, flags, allowed_ingress);
2572         if (rc)
2573                 return rc;
2574
2575         if (flags & BRIDGE_VLAN_INFO_PVID)
2576                 priv->tag_8021q_pvid[port] = vid;
2577
2578         return sja1105_commit_pvid(ds, port);
2579 }
2580
2581 static int sja1105_dsa_8021q_vlan_del(struct dsa_switch *ds, int port, u16 vid)
2582 {
2583         struct sja1105_private *priv = ds->priv;
2584
2585         return sja1105_vlan_del(priv, port, vid);
2586 }
2587
2588 static int sja1105_prechangeupper(struct dsa_switch *ds, int port,
2589                                   struct netdev_notifier_changeupper_info *info)
2590 {
2591         struct netlink_ext_ack *extack = info->info.extack;
2592         struct net_device *upper = info->upper_dev;
2593         struct dsa_switch_tree *dst = ds->dst;
2594         struct dsa_port *dp;
2595
2596         if (is_vlan_dev(upper)) {
2597                 NL_SET_ERR_MSG_MOD(extack, "8021q uppers are not supported");
2598                 return -EBUSY;
2599         }
2600
2601         if (netif_is_bridge_master(upper)) {
2602                 list_for_each_entry(dp, &dst->ports, list) {
2603                         struct net_device *br = dsa_port_bridge_dev_get(dp);
2604
2605                         if (br && br != upper && br_vlan_enabled(br)) {
2606                                 NL_SET_ERR_MSG_MOD(extack,
2607                                                    "Only one VLAN-aware bridge is supported");
2608                                 return -EBUSY;
2609                         }
2610                 }
2611         }
2612
2613         return 0;
2614 }
2615
2616 static int sja1105_mgmt_xmit(struct dsa_switch *ds, int port, int slot,
2617                              struct sk_buff *skb, bool takets)
2618 {
2619         struct sja1105_mgmt_entry mgmt_route = {0};
2620         struct sja1105_private *priv = ds->priv;
2621         struct ethhdr *hdr;
2622         int timeout = 10;
2623         int rc;
2624
2625         hdr = eth_hdr(skb);
2626
2627         mgmt_route.macaddr = ether_addr_to_u64(hdr->h_dest);
2628         mgmt_route.destports = BIT(port);
2629         mgmt_route.enfport = 1;
2630         mgmt_route.tsreg = 0;
2631         mgmt_route.takets = takets;
2632
2633         rc = sja1105_dynamic_config_write(priv, BLK_IDX_MGMT_ROUTE,
2634                                           slot, &mgmt_route, true);
2635         if (rc < 0) {
2636                 kfree_skb(skb);
2637                 return rc;
2638         }
2639
2640         /* Transfer skb to the host port. */
2641         dsa_enqueue_skb(skb, dsa_to_port(ds, port)->slave);
2642
2643         /* Wait until the switch has processed the frame */
2644         do {
2645                 rc = sja1105_dynamic_config_read(priv, BLK_IDX_MGMT_ROUTE,
2646                                                  slot, &mgmt_route);
2647                 if (rc < 0) {
2648                         dev_err_ratelimited(priv->ds->dev,
2649                                             "failed to poll for mgmt route\n");
2650                         continue;
2651                 }
2652
2653                 /* UM10944: The ENFPORT flag of the respective entry is
2654                  * cleared when a match is found. The host can use this
2655                  * flag as an acknowledgment.
2656                  */
2657                 cpu_relax();
2658         } while (mgmt_route.enfport && --timeout);
2659
2660         if (!timeout) {
2661                 /* Clean up the management route so that a follow-up
2662                  * frame may not match on it by mistake.
2663                  * This is only hardware supported on P/Q/R/S - on E/T it is
2664                  * a no-op and we are silently discarding the -EOPNOTSUPP.
2665                  */
2666                 sja1105_dynamic_config_write(priv, BLK_IDX_MGMT_ROUTE,
2667                                              slot, &mgmt_route, false);
2668                 dev_err_ratelimited(priv->ds->dev, "xmit timed out\n");
2669         }
2670
2671         return NETDEV_TX_OK;
2672 }
2673
2674 #define work_to_xmit_work(w) \
2675                 container_of((w), struct sja1105_deferred_xmit_work, work)
2676
2677 /* Deferred work is unfortunately necessary because setting up the management
2678  * route cannot be done from atomit context (SPI transfer takes a sleepable
2679  * lock on the bus)
2680  */
2681 static void sja1105_port_deferred_xmit(struct kthread_work *work)
2682 {
2683         struct sja1105_deferred_xmit_work *xmit_work = work_to_xmit_work(work);
2684         struct sk_buff *clone, *skb = xmit_work->skb;
2685         struct dsa_switch *ds = xmit_work->dp->ds;
2686         struct sja1105_private *priv = ds->priv;
2687         int port = xmit_work->dp->index;
2688
2689         clone = SJA1105_SKB_CB(skb)->clone;
2690
2691         mutex_lock(&priv->mgmt_lock);
2692
2693         sja1105_mgmt_xmit(ds, port, 0, skb, !!clone);
2694
2695         /* The clone, if there, was made by dsa_skb_tx_timestamp */
2696         if (clone)
2697                 sja1105_ptp_txtstamp_skb(ds, port, clone);
2698
2699         mutex_unlock(&priv->mgmt_lock);
2700
2701         kfree(xmit_work);
2702 }
2703
2704 static int sja1105_connect_tag_protocol(struct dsa_switch *ds,
2705                                         enum dsa_tag_protocol proto)
2706 {
2707         struct sja1105_private *priv = ds->priv;
2708         struct sja1105_tagger_data *tagger_data;
2709
2710         if (proto != priv->info->tag_proto)
2711                 return -EPROTONOSUPPORT;
2712
2713         tagger_data = sja1105_tagger_data(ds);
2714         tagger_data->xmit_work_fn = sja1105_port_deferred_xmit;
2715         tagger_data->meta_tstamp_handler = sja1110_process_meta_tstamp;
2716
2717         return 0;
2718 }
2719
2720 /* The MAXAGE setting belongs to the L2 Forwarding Parameters table,
2721  * which cannot be reconfigured at runtime. So a switch reset is required.
2722  */
2723 static int sja1105_set_ageing_time(struct dsa_switch *ds,
2724                                    unsigned int ageing_time)
2725 {
2726         struct sja1105_l2_lookup_params_entry *l2_lookup_params;
2727         struct sja1105_private *priv = ds->priv;
2728         struct sja1105_table *table;
2729         unsigned int maxage;
2730
2731         table = &priv->static_config.tables[BLK_IDX_L2_LOOKUP_PARAMS];
2732         l2_lookup_params = table->entries;
2733
2734         maxage = SJA1105_AGEING_TIME_MS(ageing_time);
2735
2736         if (l2_lookup_params->maxage == maxage)
2737                 return 0;
2738
2739         l2_lookup_params->maxage = maxage;
2740
2741         return sja1105_static_config_reload(priv, SJA1105_AGEING_TIME);
2742 }
2743
2744 static int sja1105_change_mtu(struct dsa_switch *ds, int port, int new_mtu)
2745 {
2746         struct sja1105_l2_policing_entry *policing;
2747         struct sja1105_private *priv = ds->priv;
2748
2749         new_mtu += VLAN_ETH_HLEN + ETH_FCS_LEN;
2750
2751         if (dsa_is_cpu_port(ds, port) || dsa_is_dsa_port(ds, port))
2752                 new_mtu += VLAN_HLEN;
2753
2754         policing = priv->static_config.tables[BLK_IDX_L2_POLICING].entries;
2755
2756         if (policing[port].maxlen == new_mtu)
2757                 return 0;
2758
2759         policing[port].maxlen = new_mtu;
2760
2761         return sja1105_static_config_reload(priv, SJA1105_BEST_EFFORT_POLICING);
2762 }
2763
2764 static int sja1105_get_max_mtu(struct dsa_switch *ds, int port)
2765 {
2766         return 2043 - VLAN_ETH_HLEN - ETH_FCS_LEN;
2767 }
2768
2769 static int sja1105_port_setup_tc(struct dsa_switch *ds, int port,
2770                                  enum tc_setup_type type,
2771                                  void *type_data)
2772 {
2773         switch (type) {
2774         case TC_SETUP_QDISC_TAPRIO:
2775                 return sja1105_setup_tc_taprio(ds, port, type_data);
2776         case TC_SETUP_QDISC_CBS:
2777                 return sja1105_setup_tc_cbs(ds, port, type_data);
2778         default:
2779                 return -EOPNOTSUPP;
2780         }
2781 }
2782
2783 /* We have a single mirror (@to) port, but can configure ingress and egress
2784  * mirroring on all other (@from) ports.
2785  * We need to allow mirroring rules only as long as the @to port is always the
2786  * same, and we need to unset the @to port from mirr_port only when there is no
2787  * mirroring rule that references it.
2788  */
2789 static int sja1105_mirror_apply(struct sja1105_private *priv, int from, int to,
2790                                 bool ingress, bool enabled)
2791 {
2792         struct sja1105_general_params_entry *general_params;
2793         struct sja1105_mac_config_entry *mac;
2794         struct dsa_switch *ds = priv->ds;
2795         struct sja1105_table *table;
2796         bool already_enabled;
2797         u64 new_mirr_port;
2798         int rc;
2799
2800         table = &priv->static_config.tables[BLK_IDX_GENERAL_PARAMS];
2801         general_params = table->entries;
2802
2803         mac = priv->static_config.tables[BLK_IDX_MAC_CONFIG].entries;
2804
2805         already_enabled = (general_params->mirr_port != ds->num_ports);
2806         if (already_enabled && enabled && general_params->mirr_port != to) {
2807                 dev_err(priv->ds->dev,
2808                         "Delete mirroring rules towards port %llu first\n",
2809                         general_params->mirr_port);
2810                 return -EBUSY;
2811         }
2812
2813         new_mirr_port = to;
2814         if (!enabled) {
2815                 bool keep = false;
2816                 int port;
2817
2818                 /* Anybody still referencing mirr_port? */
2819                 for (port = 0; port < ds->num_ports; port++) {
2820                         if (mac[port].ing_mirr || mac[port].egr_mirr) {
2821                                 keep = true;
2822                                 break;
2823                         }
2824                 }
2825                 /* Unset already_enabled for next time */
2826                 if (!keep)
2827                         new_mirr_port = ds->num_ports;
2828         }
2829         if (new_mirr_port != general_params->mirr_port) {
2830                 general_params->mirr_port = new_mirr_port;
2831
2832                 rc = sja1105_dynamic_config_write(priv, BLK_IDX_GENERAL_PARAMS,
2833                                                   0, general_params, true);
2834                 if (rc < 0)
2835                         return rc;
2836         }
2837
2838         if (ingress)
2839                 mac[from].ing_mirr = enabled;
2840         else
2841                 mac[from].egr_mirr = enabled;
2842
2843         return sja1105_dynamic_config_write(priv, BLK_IDX_MAC_CONFIG, from,
2844                                             &mac[from], true);
2845 }
2846
2847 static int sja1105_mirror_add(struct dsa_switch *ds, int port,
2848                               struct dsa_mall_mirror_tc_entry *mirror,
2849                               bool ingress)
2850 {
2851         return sja1105_mirror_apply(ds->priv, port, mirror->to_local_port,
2852                                     ingress, true);
2853 }
2854
2855 static void sja1105_mirror_del(struct dsa_switch *ds, int port,
2856                                struct dsa_mall_mirror_tc_entry *mirror)
2857 {
2858         sja1105_mirror_apply(ds->priv, port, mirror->to_local_port,
2859                              mirror->ingress, false);
2860 }
2861
2862 static int sja1105_port_policer_add(struct dsa_switch *ds, int port,
2863                                     struct dsa_mall_policer_tc_entry *policer)
2864 {
2865         struct sja1105_l2_policing_entry *policing;
2866         struct sja1105_private *priv = ds->priv;
2867
2868         policing = priv->static_config.tables[BLK_IDX_L2_POLICING].entries;
2869
2870         /* In hardware, every 8 microseconds the credit level is incremented by
2871          * the value of RATE bytes divided by 64, up to a maximum of SMAX
2872          * bytes.
2873          */
2874         policing[port].rate = div_u64(512 * policer->rate_bytes_per_sec,
2875                                       1000000);
2876         policing[port].smax = policer->burst;
2877
2878         return sja1105_static_config_reload(priv, SJA1105_BEST_EFFORT_POLICING);
2879 }
2880
2881 static void sja1105_port_policer_del(struct dsa_switch *ds, int port)
2882 {
2883         struct sja1105_l2_policing_entry *policing;
2884         struct sja1105_private *priv = ds->priv;
2885
2886         policing = priv->static_config.tables[BLK_IDX_L2_POLICING].entries;
2887
2888         policing[port].rate = SJA1105_RATE_MBPS(1000);
2889         policing[port].smax = 65535;
2890
2891         sja1105_static_config_reload(priv, SJA1105_BEST_EFFORT_POLICING);
2892 }
2893
2894 static int sja1105_port_set_learning(struct sja1105_private *priv, int port,
2895                                      bool enabled)
2896 {
2897         struct sja1105_mac_config_entry *mac;
2898
2899         mac = priv->static_config.tables[BLK_IDX_MAC_CONFIG].entries;
2900
2901         mac[port].dyn_learn = enabled;
2902
2903         return sja1105_dynamic_config_write(priv, BLK_IDX_MAC_CONFIG, port,
2904                                             &mac[port], true);
2905 }
2906
2907 static int sja1105_port_ucast_bcast_flood(struct sja1105_private *priv, int to,
2908                                           struct switchdev_brport_flags flags)
2909 {
2910         if (flags.mask & BR_FLOOD) {
2911                 if (flags.val & BR_FLOOD)
2912                         priv->ucast_egress_floods |= BIT(to);
2913                 else
2914                         priv->ucast_egress_floods &= ~BIT(to);
2915         }
2916
2917         if (flags.mask & BR_BCAST_FLOOD) {
2918                 if (flags.val & BR_BCAST_FLOOD)
2919                         priv->bcast_egress_floods |= BIT(to);
2920                 else
2921                         priv->bcast_egress_floods &= ~BIT(to);
2922         }
2923
2924         return sja1105_manage_flood_domains(priv);
2925 }
2926
2927 static int sja1105_port_mcast_flood(struct sja1105_private *priv, int to,
2928                                     struct switchdev_brport_flags flags,
2929                                     struct netlink_ext_ack *extack)
2930 {
2931         struct sja1105_l2_lookup_entry *l2_lookup;
2932         struct sja1105_table *table;
2933         int match;
2934
2935         table = &priv->static_config.tables[BLK_IDX_L2_LOOKUP];
2936         l2_lookup = table->entries;
2937
2938         for (match = 0; match < table->entry_count; match++)
2939                 if (l2_lookup[match].macaddr == SJA1105_UNKNOWN_MULTICAST &&
2940                     l2_lookup[match].mask_macaddr == SJA1105_UNKNOWN_MULTICAST)
2941                         break;
2942
2943         if (match == table->entry_count) {
2944                 NL_SET_ERR_MSG_MOD(extack,
2945                                    "Could not find FDB entry for unknown multicast");
2946                 return -ENOSPC;
2947         }
2948
2949         if (flags.val & BR_MCAST_FLOOD)
2950                 l2_lookup[match].destports |= BIT(to);
2951         else
2952                 l2_lookup[match].destports &= ~BIT(to);
2953
2954         return sja1105_dynamic_config_write(priv, BLK_IDX_L2_LOOKUP,
2955                                             l2_lookup[match].index,
2956                                             &l2_lookup[match],
2957                                             true);
2958 }
2959
2960 static int sja1105_port_pre_bridge_flags(struct dsa_switch *ds, int port,
2961                                          struct switchdev_brport_flags flags,
2962                                          struct netlink_ext_ack *extack)
2963 {
2964         struct sja1105_private *priv = ds->priv;
2965
2966         if (flags.mask & ~(BR_LEARNING | BR_FLOOD | BR_MCAST_FLOOD |
2967                            BR_BCAST_FLOOD))
2968                 return -EINVAL;
2969
2970         if (flags.mask & (BR_FLOOD | BR_MCAST_FLOOD) &&
2971             !priv->info->can_limit_mcast_flood) {
2972                 bool multicast = !!(flags.val & BR_MCAST_FLOOD);
2973                 bool unicast = !!(flags.val & BR_FLOOD);
2974
2975                 if (unicast != multicast) {
2976                         NL_SET_ERR_MSG_MOD(extack,
2977                                            "This chip cannot configure multicast flooding independently of unicast");
2978                         return -EINVAL;
2979                 }
2980         }
2981
2982         return 0;
2983 }
2984
2985 static int sja1105_port_bridge_flags(struct dsa_switch *ds, int port,
2986                                      struct switchdev_brport_flags flags,
2987                                      struct netlink_ext_ack *extack)
2988 {
2989         struct sja1105_private *priv = ds->priv;
2990         int rc;
2991
2992         if (flags.mask & BR_LEARNING) {
2993                 bool learn_ena = !!(flags.val & BR_LEARNING);
2994
2995                 rc = sja1105_port_set_learning(priv, port, learn_ena);
2996                 if (rc)
2997                         return rc;
2998         }
2999
3000         if (flags.mask & (BR_FLOOD | BR_BCAST_FLOOD)) {
3001                 rc = sja1105_port_ucast_bcast_flood(priv, port, flags);
3002                 if (rc)
3003                         return rc;
3004         }
3005
3006         /* For chips that can't offload BR_MCAST_FLOOD independently, there
3007          * is nothing to do here, we ensured the configuration is in sync by
3008          * offloading BR_FLOOD.
3009          */
3010         if (flags.mask & BR_MCAST_FLOOD && priv->info->can_limit_mcast_flood) {
3011                 rc = sja1105_port_mcast_flood(priv, port, flags,
3012                                               extack);
3013                 if (rc)
3014                         return rc;
3015         }
3016
3017         return 0;
3018 }
3019
3020 /* The programming model for the SJA1105 switch is "all-at-once" via static
3021  * configuration tables. Some of these can be dynamically modified at runtime,
3022  * but not the xMII mode parameters table.
3023  * Furthermode, some PHYs may not have crystals for generating their clocks
3024  * (e.g. RMII). Instead, their 50MHz clock is supplied via the SJA1105 port's
3025  * ref_clk pin. So port clocking needs to be initialized early, before
3026  * connecting to PHYs is attempted, otherwise they won't respond through MDIO.
3027  * Setting correct PHY link speed does not matter now.
3028  * But dsa_slave_phy_setup is called later than sja1105_setup, so the PHY
3029  * bindings are not yet parsed by DSA core. We need to parse early so that we
3030  * can populate the xMII mode parameters table.
3031  */
3032 static int sja1105_setup(struct dsa_switch *ds)
3033 {
3034         struct sja1105_private *priv = ds->priv;
3035         int rc;
3036
3037         if (priv->info->disable_microcontroller) {
3038                 rc = priv->info->disable_microcontroller(priv);
3039                 if (rc < 0) {
3040                         dev_err(ds->dev,
3041                                 "Failed to disable microcontroller: %pe\n",
3042                                 ERR_PTR(rc));
3043                         return rc;
3044                 }
3045         }
3046
3047         /* Create and send configuration down to device */
3048         rc = sja1105_static_config_load(priv);
3049         if (rc < 0) {
3050                 dev_err(ds->dev, "Failed to load static config: %d\n", rc);
3051                 return rc;
3052         }
3053
3054         /* Configure the CGU (PHY link modes and speeds) */
3055         if (priv->info->clocking_setup) {
3056                 rc = priv->info->clocking_setup(priv);
3057                 if (rc < 0) {
3058                         dev_err(ds->dev,
3059                                 "Failed to configure MII clocking: %pe\n",
3060                                 ERR_PTR(rc));
3061                         goto out_static_config_free;
3062                 }
3063         }
3064
3065         sja1105_tas_setup(ds);
3066         sja1105_flower_setup(ds);
3067
3068         rc = sja1105_ptp_clock_register(ds);
3069         if (rc < 0) {
3070                 dev_err(ds->dev, "Failed to register PTP clock: %d\n", rc);
3071                 goto out_flower_teardown;
3072         }
3073
3074         rc = sja1105_mdiobus_register(ds);
3075         if (rc < 0) {
3076                 dev_err(ds->dev, "Failed to register MDIO bus: %pe\n",
3077                         ERR_PTR(rc));
3078                 goto out_ptp_clock_unregister;
3079         }
3080
3081         rc = sja1105_devlink_setup(ds);
3082         if (rc < 0)
3083                 goto out_mdiobus_unregister;
3084
3085         rtnl_lock();
3086         rc = dsa_tag_8021q_register(ds, htons(ETH_P_8021Q));
3087         rtnl_unlock();
3088         if (rc)
3089                 goto out_devlink_teardown;
3090
3091         /* On SJA1105, VLAN filtering per se is always enabled in hardware.
3092          * The only thing we can do to disable it is lie about what the 802.1Q
3093          * EtherType is.
3094          * So it will still try to apply VLAN filtering, but all ingress
3095          * traffic (except frames received with EtherType of ETH_P_SJA1105)
3096          * will be internally tagged with a distorted VLAN header where the
3097          * TPID is ETH_P_SJA1105, and the VLAN ID is the port pvid.
3098          */
3099         ds->vlan_filtering_is_global = true;
3100         ds->untag_bridge_pvid = true;
3101         /* tag_8021q has 3 bits for the VBID, and the value 0 is reserved */
3102         ds->max_num_bridges = 7;
3103
3104         /* Advertise the 8 egress queues */
3105         ds->num_tx_queues = SJA1105_NUM_TC;
3106
3107         ds->mtu_enforcement_ingress = true;
3108         ds->assisted_learning_on_cpu_port = true;
3109
3110         return 0;
3111
3112 out_devlink_teardown:
3113         sja1105_devlink_teardown(ds);
3114 out_mdiobus_unregister:
3115         sja1105_mdiobus_unregister(ds);
3116 out_ptp_clock_unregister:
3117         sja1105_ptp_clock_unregister(ds);
3118 out_flower_teardown:
3119         sja1105_flower_teardown(ds);
3120         sja1105_tas_teardown(ds);
3121 out_static_config_free:
3122         sja1105_static_config_free(&priv->static_config);
3123
3124         return rc;
3125 }
3126
3127 static void sja1105_teardown(struct dsa_switch *ds)
3128 {
3129         struct sja1105_private *priv = ds->priv;
3130
3131         rtnl_lock();
3132         dsa_tag_8021q_unregister(ds);
3133         rtnl_unlock();
3134
3135         sja1105_devlink_teardown(ds);
3136         sja1105_mdiobus_unregister(ds);
3137         sja1105_ptp_clock_unregister(ds);
3138         sja1105_flower_teardown(ds);
3139         sja1105_tas_teardown(ds);
3140         sja1105_static_config_free(&priv->static_config);
3141 }
3142
3143 static const struct dsa_switch_ops sja1105_switch_ops = {
3144         .get_tag_protocol       = sja1105_get_tag_protocol,
3145         .connect_tag_protocol   = sja1105_connect_tag_protocol,
3146         .setup                  = sja1105_setup,
3147         .teardown               = sja1105_teardown,
3148         .set_ageing_time        = sja1105_set_ageing_time,
3149         .port_change_mtu        = sja1105_change_mtu,
3150         .port_max_mtu           = sja1105_get_max_mtu,
3151         .phylink_get_caps       = sja1105_phylink_get_caps,
3152         .phylink_mac_select_pcs = sja1105_mac_select_pcs,
3153         .phylink_mac_link_up    = sja1105_mac_link_up,
3154         .phylink_mac_link_down  = sja1105_mac_link_down,
3155         .get_strings            = sja1105_get_strings,
3156         .get_ethtool_stats      = sja1105_get_ethtool_stats,
3157         .get_sset_count         = sja1105_get_sset_count,
3158         .get_ts_info            = sja1105_get_ts_info,
3159         .port_fdb_dump          = sja1105_fdb_dump,
3160         .port_fdb_add           = sja1105_fdb_add,
3161         .port_fdb_del           = sja1105_fdb_del,
3162         .port_fast_age          = sja1105_fast_age,
3163         .port_bridge_join       = sja1105_bridge_join,
3164         .port_bridge_leave      = sja1105_bridge_leave,
3165         .port_pre_bridge_flags  = sja1105_port_pre_bridge_flags,
3166         .port_bridge_flags      = sja1105_port_bridge_flags,
3167         .port_stp_state_set     = sja1105_bridge_stp_state_set,
3168         .port_vlan_filtering    = sja1105_vlan_filtering,
3169         .port_vlan_add          = sja1105_bridge_vlan_add,
3170         .port_vlan_del          = sja1105_bridge_vlan_del,
3171         .port_mdb_add           = sja1105_mdb_add,
3172         .port_mdb_del           = sja1105_mdb_del,
3173         .port_hwtstamp_get      = sja1105_hwtstamp_get,
3174         .port_hwtstamp_set      = sja1105_hwtstamp_set,
3175         .port_rxtstamp          = sja1105_port_rxtstamp,
3176         .port_txtstamp          = sja1105_port_txtstamp,
3177         .port_setup_tc          = sja1105_port_setup_tc,
3178         .port_mirror_add        = sja1105_mirror_add,
3179         .port_mirror_del        = sja1105_mirror_del,
3180         .port_policer_add       = sja1105_port_policer_add,
3181         .port_policer_del       = sja1105_port_policer_del,
3182         .cls_flower_add         = sja1105_cls_flower_add,
3183         .cls_flower_del         = sja1105_cls_flower_del,
3184         .cls_flower_stats       = sja1105_cls_flower_stats,
3185         .devlink_info_get       = sja1105_devlink_info_get,
3186         .tag_8021q_vlan_add     = sja1105_dsa_8021q_vlan_add,
3187         .tag_8021q_vlan_del     = sja1105_dsa_8021q_vlan_del,
3188         .port_prechangeupper    = sja1105_prechangeupper,
3189 };
3190
3191 static const struct of_device_id sja1105_dt_ids[];
3192
3193 static int sja1105_check_device_id(struct sja1105_private *priv)
3194 {
3195         const struct sja1105_regs *regs = priv->info->regs;
3196         u8 prod_id[SJA1105_SIZE_DEVICE_ID] = {0};
3197         struct device *dev = &priv->spidev->dev;
3198         const struct of_device_id *match;
3199         u32 device_id;
3200         u64 part_no;
3201         int rc;
3202
3203         rc = sja1105_xfer_u32(priv, SPI_READ, regs->device_id, &device_id,
3204                               NULL);
3205         if (rc < 0)
3206                 return rc;
3207
3208         rc = sja1105_xfer_buf(priv, SPI_READ, regs->prod_id, prod_id,
3209                               SJA1105_SIZE_DEVICE_ID);
3210         if (rc < 0)
3211                 return rc;
3212
3213         sja1105_unpack(prod_id, &part_no, 19, 4, SJA1105_SIZE_DEVICE_ID);
3214
3215         for (match = sja1105_dt_ids; match->compatible[0]; match++) {
3216                 const struct sja1105_info *info = match->data;
3217
3218                 /* Is what's been probed in our match table at all? */
3219                 if (info->device_id != device_id || info->part_no != part_no)
3220                         continue;
3221
3222                 /* But is it what's in the device tree? */
3223                 if (priv->info->device_id != device_id ||
3224                     priv->info->part_no != part_no) {
3225                         dev_warn(dev, "Device tree specifies chip %s but found %s, please fix it!\n",
3226                                  priv->info->name, info->name);
3227                         /* It isn't. No problem, pick that up. */
3228                         priv->info = info;
3229                 }
3230
3231                 return 0;
3232         }
3233
3234         dev_err(dev, "Unexpected {device ID, part number}: 0x%x 0x%llx\n",
3235                 device_id, part_no);
3236
3237         return -ENODEV;
3238 }
3239
3240 static int sja1105_probe(struct spi_device *spi)
3241 {
3242         struct device *dev = &spi->dev;
3243         struct sja1105_private *priv;
3244         size_t max_xfer, max_msg;
3245         struct dsa_switch *ds;
3246         int rc;
3247
3248         if (!dev->of_node) {
3249                 dev_err(dev, "No DTS bindings for SJA1105 driver\n");
3250                 return -EINVAL;
3251         }
3252
3253         rc = sja1105_hw_reset(dev, 1, 1);
3254         if (rc)
3255                 return rc;
3256
3257         priv = devm_kzalloc(dev, sizeof(struct sja1105_private), GFP_KERNEL);
3258         if (!priv)
3259                 return -ENOMEM;
3260
3261         /* Populate our driver private structure (priv) based on
3262          * the device tree node that was probed (spi)
3263          */
3264         priv->spidev = spi;
3265         spi_set_drvdata(spi, priv);
3266
3267         /* Configure the SPI bus */
3268         spi->bits_per_word = 8;
3269         rc = spi_setup(spi);
3270         if (rc < 0) {
3271                 dev_err(dev, "Could not init SPI\n");
3272                 return rc;
3273         }
3274
3275         /* In sja1105_xfer, we send spi_messages composed of two spi_transfers:
3276          * a small one for the message header and another one for the current
3277          * chunk of the packed buffer.
3278          * Check that the restrictions imposed by the SPI controller are
3279          * respected: the chunk buffer is smaller than the max transfer size,
3280          * and the total length of the chunk plus its message header is smaller
3281          * than the max message size.
3282          * We do that during probe time since the maximum transfer size is a
3283          * runtime invariant.
3284          */
3285         max_xfer = spi_max_transfer_size(spi);
3286         max_msg = spi_max_message_size(spi);
3287
3288         /* We need to send at least one 64-bit word of SPI payload per message
3289          * in order to be able to make useful progress.
3290          */
3291         if (max_msg < SJA1105_SIZE_SPI_MSG_HEADER + 8) {
3292                 dev_err(dev, "SPI master cannot send large enough buffers, aborting\n");
3293                 return -EINVAL;
3294         }
3295
3296         priv->max_xfer_len = SJA1105_SIZE_SPI_MSG_MAXLEN;
3297         if (priv->max_xfer_len > max_xfer)
3298                 priv->max_xfer_len = max_xfer;
3299         if (priv->max_xfer_len > max_msg - SJA1105_SIZE_SPI_MSG_HEADER)
3300                 priv->max_xfer_len = max_msg - SJA1105_SIZE_SPI_MSG_HEADER;
3301
3302         priv->info = of_device_get_match_data(dev);
3303
3304         /* Detect hardware device */
3305         rc = sja1105_check_device_id(priv);
3306         if (rc < 0) {
3307                 dev_err(dev, "Device ID check failed: %d\n", rc);
3308                 return rc;
3309         }
3310
3311         dev_info(dev, "Probed switch chip: %s\n", priv->info->name);
3312
3313         ds = devm_kzalloc(dev, sizeof(*ds), GFP_KERNEL);
3314         if (!ds)
3315                 return -ENOMEM;
3316
3317         ds->dev = dev;
3318         ds->num_ports = priv->info->num_ports;
3319         ds->ops = &sja1105_switch_ops;
3320         ds->priv = priv;
3321         priv->ds = ds;
3322
3323         mutex_init(&priv->ptp_data.lock);
3324         mutex_init(&priv->dynamic_config_lock);
3325         mutex_init(&priv->mgmt_lock);
3326         spin_lock_init(&priv->ts_id_lock);
3327
3328         rc = sja1105_parse_dt(priv);
3329         if (rc < 0) {
3330                 dev_err(ds->dev, "Failed to parse DT: %d\n", rc);
3331                 return rc;
3332         }
3333
3334         if (IS_ENABLED(CONFIG_NET_SCH_CBS)) {
3335                 priv->cbs = devm_kcalloc(dev, priv->info->num_cbs_shapers,
3336                                          sizeof(struct sja1105_cbs_entry),
3337                                          GFP_KERNEL);
3338                 if (!priv->cbs)
3339                         return -ENOMEM;
3340         }
3341
3342         return dsa_register_switch(priv->ds);
3343 }
3344
3345 static int sja1105_remove(struct spi_device *spi)
3346 {
3347         struct sja1105_private *priv = spi_get_drvdata(spi);
3348
3349         if (!priv)
3350                 return 0;
3351
3352         dsa_unregister_switch(priv->ds);
3353
3354         spi_set_drvdata(spi, NULL);
3355
3356         return 0;
3357 }
3358
3359 static void sja1105_shutdown(struct spi_device *spi)
3360 {
3361         struct sja1105_private *priv = spi_get_drvdata(spi);
3362
3363         if (!priv)
3364                 return;
3365
3366         dsa_switch_shutdown(priv->ds);
3367
3368         spi_set_drvdata(spi, NULL);
3369 }
3370
3371 static const struct of_device_id sja1105_dt_ids[] = {
3372         { .compatible = "nxp,sja1105e", .data = &sja1105e_info },
3373         { .compatible = "nxp,sja1105t", .data = &sja1105t_info },
3374         { .compatible = "nxp,sja1105p", .data = &sja1105p_info },
3375         { .compatible = "nxp,sja1105q", .data = &sja1105q_info },
3376         { .compatible = "nxp,sja1105r", .data = &sja1105r_info },
3377         { .compatible = "nxp,sja1105s", .data = &sja1105s_info },
3378         { .compatible = "nxp,sja1110a", .data = &sja1110a_info },
3379         { .compatible = "nxp,sja1110b", .data = &sja1110b_info },
3380         { .compatible = "nxp,sja1110c", .data = &sja1110c_info },
3381         { .compatible = "nxp,sja1110d", .data = &sja1110d_info },
3382         { /* sentinel */ },
3383 };
3384 MODULE_DEVICE_TABLE(of, sja1105_dt_ids);
3385
3386 static struct spi_driver sja1105_driver = {
3387         .driver = {
3388                 .name  = "sja1105",
3389                 .owner = THIS_MODULE,
3390                 .of_match_table = of_match_ptr(sja1105_dt_ids),
3391         },
3392         .probe  = sja1105_probe,
3393         .remove = sja1105_remove,
3394         .shutdown = sja1105_shutdown,
3395 };
3396
3397 module_spi_driver(sja1105_driver);
3398
3399 MODULE_AUTHOR("Vladimir Oltean <olteanv@gmail.com>");
3400 MODULE_AUTHOR("Georg Waibel <georg.waibel@sensor-technik.de>");
3401 MODULE_DESCRIPTION("SJA1105 Driver");
3402 MODULE_LICENSE("GPL v2");