blob: 77462219261e0b5e68b06af9c960bc94473a618b [file] [log] [blame]
Vladimir Oltean8aa9ebc2019-05-02 23:23:30 +03001// 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>
Vladimir Olteanad9f2992019-05-02 23:23:38 +030014#include <linux/phylink.h>
Vladimir Oltean8aa9ebc2019-05-02 23:23:30 +030015#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/netdev_features.h>
20#include <linux/netdevice.h>
21#include <linux/if_bridge.h>
22#include <linux/if_ether.h>
Vladimir Oltean227d07a2019-05-05 13:19:27 +030023#include <linux/dsa/8021q.h>
Vladimir Oltean8aa9ebc2019-05-02 23:23:30 +030024#include "sja1105.h"
Vladimir Olteanffe10e62020-03-20 13:29:37 +020025#include "sja1105_sgmii.h"
Vladimir Oltean317ab5b2019-09-15 05:00:02 +030026#include "sja1105_tas.h"
Vladimir Oltean8aa9ebc2019-05-02 23:23:30 +030027
Vladimir Olteanac02a452020-05-10 19:37:43 +030028static const struct dsa_switch_ops sja1105_switch_ops;
29
Vladimir Oltean8aa9ebc2019-05-02 23:23:30 +030030static void sja1105_hw_reset(struct gpio_desc *gpio, unsigned int pulse_len,
31 unsigned int startup_delay)
32{
33 gpiod_set_value_cansleep(gpio, 1);
34 /* Wait for minimum reset pulse length */
35 msleep(pulse_len);
36 gpiod_set_value_cansleep(gpio, 0);
37 /* Wait until chip is ready after reset */
38 msleep(startup_delay);
39}
40
41static void
42sja1105_port_allow_traffic(struct sja1105_l2_forwarding_entry *l2_fwd,
43 int from, int to, bool allow)
44{
45 if (allow) {
46 l2_fwd[from].bc_domain |= BIT(to);
47 l2_fwd[from].reach_port |= BIT(to);
48 l2_fwd[from].fl_domain |= BIT(to);
49 } else {
50 l2_fwd[from].bc_domain &= ~BIT(to);
51 l2_fwd[from].reach_port &= ~BIT(to);
52 l2_fwd[from].fl_domain &= ~BIT(to);
53 }
54}
55
56/* Structure used to temporarily transport device tree
57 * settings into sja1105_setup
58 */
59struct sja1105_dt_port {
60 phy_interface_t phy_mode;
61 sja1105_mii_role_t role;
62};
63
64static int sja1105_init_mac_settings(struct sja1105_private *priv)
65{
66 struct sja1105_mac_config_entry default_mac = {
67 /* Enable all 8 priority queues on egress.
68 * Every queue i holds top[i] - base[i] frames.
69 * Sum of top[i] - base[i] is 511 (max hardware limit).
70 */
71 .top = {0x3F, 0x7F, 0xBF, 0xFF, 0x13F, 0x17F, 0x1BF, 0x1FF},
72 .base = {0x0, 0x40, 0x80, 0xC0, 0x100, 0x140, 0x180, 0x1C0},
73 .enabled = {true, true, true, true, true, true, true, true},
74 /* Keep standard IFG of 12 bytes on egress. */
75 .ifg = 0,
76 /* Always put the MAC speed in automatic mode, where it can be
Vladimir Oltean1fd4a172019-06-08 16:03:42 +030077 * adjusted at runtime by PHYLINK.
Vladimir Oltean8aa9ebc2019-05-02 23:23:30 +030078 */
79 .speed = SJA1105_SPEED_AUTO,
80 /* No static correction for 1-step 1588 events */
81 .tp_delin = 0,
82 .tp_delout = 0,
83 /* Disable aging for critical TTEthernet traffic */
84 .maxage = 0xFF,
85 /* Internal VLAN (pvid) to apply to untagged ingress */
86 .vlanprio = 0,
Vladimir Olteane3502b82019-06-26 02:39:35 +030087 .vlanid = 1,
Vladimir Oltean8aa9ebc2019-05-02 23:23:30 +030088 .ing_mirr = false,
89 .egr_mirr = false,
90 /* Don't drop traffic with other EtherType than ETH_P_IP */
91 .drpnona664 = false,
92 /* Don't drop double-tagged traffic */
93 .drpdtag = false,
94 /* Don't drop untagged traffic */
95 .drpuntag = false,
96 /* Don't retag 802.1p (VID 0) traffic with the pvid */
97 .retag = false,
Vladimir Oltean640f7632019-05-05 13:19:28 +030098 /* Disable learning and I/O on user ports by default -
99 * STP will enable it.
100 */
101 .dyn_learn = false,
Vladimir Oltean8aa9ebc2019-05-02 23:23:30 +0300102 .egress = false,
103 .ingress = false,
104 };
105 struct sja1105_mac_config_entry *mac;
106 struct sja1105_table *table;
107 int i;
108
109 table = &priv->static_config.tables[BLK_IDX_MAC_CONFIG];
110
111 /* Discard previous MAC Configuration Table */
112 if (table->entry_count) {
113 kfree(table->entries);
114 table->entry_count = 0;
115 }
116
117 table->entries = kcalloc(SJA1105_NUM_PORTS,
118 table->ops->unpacked_entry_size, GFP_KERNEL);
119 if (!table->entries)
120 return -ENOMEM;
121
Vladimir Oltean8aa9ebc2019-05-02 23:23:30 +0300122 table->entry_count = SJA1105_NUM_PORTS;
123
124 mac = table->entries;
125
Vladimir Oltean640f7632019-05-05 13:19:28 +0300126 for (i = 0; i < SJA1105_NUM_PORTS; i++) {
Vladimir Oltean8aa9ebc2019-05-02 23:23:30 +0300127 mac[i] = default_mac;
Vladimir Oltean640f7632019-05-05 13:19:28 +0300128 if (i == dsa_upstream_port(priv->ds, i)) {
129 /* STP doesn't get called for CPU port, so we need to
130 * set the I/O parameters statically.
131 */
132 mac[i].dyn_learn = true;
133 mac[i].ingress = true;
134 mac[i].egress = true;
135 }
136 }
Vladimir Oltean8aa9ebc2019-05-02 23:23:30 +0300137
138 return 0;
139}
140
Vladimir Olteanffe10e62020-03-20 13:29:37 +0200141static bool sja1105_supports_sgmii(struct sja1105_private *priv, int port)
142{
143 if (priv->info->part_no != SJA1105R_PART_NO &&
144 priv->info->part_no != SJA1105S_PART_NO)
145 return false;
146
147 if (port != SJA1105_SGMII_PORT)
148 return false;
149
150 if (dsa_is_unused_port(priv->ds, port))
151 return false;
152
153 return true;
154}
155
Vladimir Oltean8aa9ebc2019-05-02 23:23:30 +0300156static int sja1105_init_mii_settings(struct sja1105_private *priv,
157 struct sja1105_dt_port *ports)
158{
159 struct device *dev = &priv->spidev->dev;
160 struct sja1105_xmii_params_entry *mii;
161 struct sja1105_table *table;
162 int i;
163
164 table = &priv->static_config.tables[BLK_IDX_XMII_PARAMS];
165
166 /* Discard previous xMII Mode Parameters Table */
167 if (table->entry_count) {
168 kfree(table->entries);
169 table->entry_count = 0;
170 }
171
172 table->entries = kcalloc(SJA1105_MAX_XMII_PARAMS_COUNT,
173 table->ops->unpacked_entry_size, GFP_KERNEL);
174 if (!table->entries)
175 return -ENOMEM;
176
Vladimir Oltean1fd4a172019-06-08 16:03:42 +0300177 /* Override table based on PHYLINK DT bindings */
Vladimir Oltean8aa9ebc2019-05-02 23:23:30 +0300178 table->entry_count = SJA1105_MAX_XMII_PARAMS_COUNT;
179
180 mii = table->entries;
181
182 for (i = 0; i < SJA1105_NUM_PORTS; i++) {
Vladimir Olteanee9d0cb2020-03-19 22:12:10 +0200183 if (dsa_is_unused_port(priv->ds, i))
184 continue;
185
Vladimir Oltean8aa9ebc2019-05-02 23:23:30 +0300186 switch (ports[i].phy_mode) {
187 case PHY_INTERFACE_MODE_MII:
188 mii->xmii_mode[i] = XMII_MODE_MII;
189 break;
190 case PHY_INTERFACE_MODE_RMII:
191 mii->xmii_mode[i] = XMII_MODE_RMII;
192 break;
193 case PHY_INTERFACE_MODE_RGMII:
194 case PHY_INTERFACE_MODE_RGMII_ID:
195 case PHY_INTERFACE_MODE_RGMII_RXID:
196 case PHY_INTERFACE_MODE_RGMII_TXID:
197 mii->xmii_mode[i] = XMII_MODE_RGMII;
198 break;
Vladimir Olteanffe10e62020-03-20 13:29:37 +0200199 case PHY_INTERFACE_MODE_SGMII:
200 if (!sja1105_supports_sgmii(priv, i))
201 return -EINVAL;
202 mii->xmii_mode[i] = XMII_MODE_SGMII;
203 break;
Vladimir Oltean8aa9ebc2019-05-02 23:23:30 +0300204 default:
205 dev_err(dev, "Unsupported PHY mode %s!\n",
206 phy_modes(ports[i].phy_mode));
207 }
208
Vladimir Olteanffe10e62020-03-20 13:29:37 +0200209 /* Even though the SerDes port is able to drive SGMII autoneg
210 * like a PHY would, from the perspective of the XMII tables,
211 * the SGMII port should always be put in MAC mode.
212 */
213 if (ports[i].phy_mode == PHY_INTERFACE_MODE_SGMII)
214 mii->phy_mac[i] = XMII_MAC;
215 else
216 mii->phy_mac[i] = ports[i].role;
Vladimir Oltean8aa9ebc2019-05-02 23:23:30 +0300217 }
218 return 0;
219}
220
221static int sja1105_init_static_fdb(struct sja1105_private *priv)
222{
223 struct sja1105_table *table;
224
225 table = &priv->static_config.tables[BLK_IDX_L2_LOOKUP];
226
Vladimir Oltean291d1e72019-05-02 23:23:31 +0300227 /* We only populate the FDB table through dynamic
228 * L2 Address Lookup entries
229 */
Vladimir Oltean8aa9ebc2019-05-02 23:23:30 +0300230 if (table->entry_count) {
231 kfree(table->entries);
232 table->entry_count = 0;
233 }
234 return 0;
235}
236
237static int sja1105_init_l2_lookup_params(struct sja1105_private *priv)
238{
239 struct sja1105_table *table;
Vladimir Oltean6c56e162019-06-26 02:39:37 +0300240 u64 max_fdb_entries = SJA1105_MAX_L2_LOOKUP_COUNT / SJA1105_NUM_PORTS;
Vladimir Oltean8aa9ebc2019-05-02 23:23:30 +0300241 struct sja1105_l2_lookup_params_entry default_l2_lookup_params = {
Vladimir Oltean84567212019-05-02 23:23:36 +0300242 /* Learned FDB entries are forgotten after 300 seconds */
243 .maxage = SJA1105_AGEING_TIME_MS(300000),
Vladimir Oltean8aa9ebc2019-05-02 23:23:30 +0300244 /* All entries within a FDB bin are available for learning */
245 .dyn_tbsz = SJA1105ET_FDB_BIN_SIZE,
Vladimir Oltean1da73822019-06-03 00:15:45 +0300246 /* And the P/Q/R/S equivalent setting: */
247 .start_dynspc = 0,
Vladimir Oltean6c56e162019-06-26 02:39:37 +0300248 .maxaddrp = {max_fdb_entries, max_fdb_entries, max_fdb_entries,
249 max_fdb_entries, max_fdb_entries, },
Vladimir Oltean8aa9ebc2019-05-02 23:23:30 +0300250 /* 2^8 + 2^5 + 2^3 + 2^2 + 2^1 + 1 in Koopman notation */
251 .poly = 0x97,
252 /* This selects between Independent VLAN Learning (IVL) and
253 * Shared VLAN Learning (SVL)
254 */
Vladimir Oltean6d7c7d92019-08-05 01:38:44 +0300255 .shared_learn = true,
Vladimir Oltean8aa9ebc2019-05-02 23:23:30 +0300256 /* Don't discard management traffic based on ENFPORT -
257 * we don't perform SMAC port enforcement anyway, so
258 * what we are setting here doesn't matter.
259 */
260 .no_enf_hostprt = false,
261 /* Don't learn SMAC for mac_fltres1 and mac_fltres0.
262 * Maybe correlate with no_linklocal_learn from bridge driver?
263 */
264 .no_mgmt_learn = true,
Vladimir Oltean1da73822019-06-03 00:15:45 +0300265 /* P/Q/R/S only */
266 .use_static = true,
267 /* Dynamically learned FDB entries can overwrite other (older)
268 * dynamic FDB entries
269 */
270 .owr_dyn = true,
271 .drpnolearn = true,
Vladimir Oltean8aa9ebc2019-05-02 23:23:30 +0300272 };
273
274 table = &priv->static_config.tables[BLK_IDX_L2_LOOKUP_PARAMS];
275
276 if (table->entry_count) {
277 kfree(table->entries);
278 table->entry_count = 0;
279 }
280
281 table->entries = kcalloc(SJA1105_MAX_L2_LOOKUP_PARAMS_COUNT,
282 table->ops->unpacked_entry_size, GFP_KERNEL);
283 if (!table->entries)
284 return -ENOMEM;
285
286 table->entry_count = SJA1105_MAX_L2_LOOKUP_PARAMS_COUNT;
287
288 /* This table only has a single entry */
289 ((struct sja1105_l2_lookup_params_entry *)table->entries)[0] =
290 default_l2_lookup_params;
291
292 return 0;
293}
294
295static int sja1105_init_static_vlan(struct sja1105_private *priv)
296{
297 struct sja1105_table *table;
298 struct sja1105_vlan_lookup_entry pvid = {
299 .ving_mirr = 0,
300 .vegr_mirr = 0,
301 .vmemb_port = 0,
302 .vlan_bc = 0,
303 .tag_port = 0,
Vladimir Olteane3502b82019-06-26 02:39:35 +0300304 .vlanid = 1,
Vladimir Oltean8aa9ebc2019-05-02 23:23:30 +0300305 };
Vladimir Olteanec5ae612020-05-12 20:20:29 +0300306 struct dsa_switch *ds = priv->ds;
307 int port;
Vladimir Oltean8aa9ebc2019-05-02 23:23:30 +0300308
309 table = &priv->static_config.tables[BLK_IDX_VLAN_LOOKUP];
310
Vladimir Olteane3502b82019-06-26 02:39:35 +0300311 /* The static VLAN table will only contain the initial pvid of 1.
Vladimir Oltean6666ceb2019-05-02 23:23:34 +0300312 * All other VLANs are to be configured through dynamic entries,
313 * and kept in the static configuration table as backing memory.
Vladimir Oltean8aa9ebc2019-05-02 23:23:30 +0300314 */
315 if (table->entry_count) {
316 kfree(table->entries);
317 table->entry_count = 0;
318 }
319
320 table->entries = kcalloc(1, table->ops->unpacked_entry_size,
321 GFP_KERNEL);
322 if (!table->entries)
323 return -ENOMEM;
324
325 table->entry_count = 1;
326
Vladimir Olteane3502b82019-06-26 02:39:35 +0300327 /* VLAN 1: all DT-defined ports are members; no restrictions on
Vladimir Olteanec5ae612020-05-12 20:20:29 +0300328 * forwarding; always transmit as untagged.
Vladimir Oltean8aa9ebc2019-05-02 23:23:30 +0300329 */
Vladimir Olteanec5ae612020-05-12 20:20:29 +0300330 for (port = 0; port < ds->num_ports; port++) {
331 struct sja1105_bridge_vlan *v;
332
333 if (dsa_is_unused_port(ds, port))
334 continue;
335
336 pvid.vmemb_port |= BIT(port);
337 pvid.vlan_bc |= BIT(port);
338 pvid.tag_port &= ~BIT(port);
339
340 /* Let traffic that don't need dsa_8021q (e.g. STP, PTP) be
341 * transmitted as untagged.
342 */
343 v = kzalloc(sizeof(*v), GFP_KERNEL);
344 if (!v)
345 return -ENOMEM;
346
347 v->port = port;
348 v->vid = 1;
349 v->untagged = true;
350 if (dsa_is_cpu_port(ds, port))
351 v->pvid = true;
352 list_add(&v->list, &priv->dsa_8021q_vlans);
Vladimir Oltean8aa9ebc2019-05-02 23:23:30 +0300353 }
354
355 ((struct sja1105_vlan_lookup_entry *)table->entries)[0] = pvid;
356 return 0;
357}
358
359static int sja1105_init_l2_forwarding(struct sja1105_private *priv)
360{
361 struct sja1105_l2_forwarding_entry *l2fwd;
362 struct sja1105_table *table;
363 int i, j;
364
365 table = &priv->static_config.tables[BLK_IDX_L2_FORWARDING];
366
367 if (table->entry_count) {
368 kfree(table->entries);
369 table->entry_count = 0;
370 }
371
372 table->entries = kcalloc(SJA1105_MAX_L2_FORWARDING_COUNT,
373 table->ops->unpacked_entry_size, GFP_KERNEL);
374 if (!table->entries)
375 return -ENOMEM;
376
377 table->entry_count = SJA1105_MAX_L2_FORWARDING_COUNT;
378
379 l2fwd = table->entries;
380
381 /* First 5 entries define the forwarding rules */
382 for (i = 0; i < SJA1105_NUM_PORTS; i++) {
383 unsigned int upstream = dsa_upstream_port(priv->ds, i);
384
385 for (j = 0; j < SJA1105_NUM_TC; j++)
386 l2fwd[i].vlan_pmap[j] = j;
387
388 if (i == upstream)
389 continue;
390
391 sja1105_port_allow_traffic(l2fwd, i, upstream, true);
392 sja1105_port_allow_traffic(l2fwd, upstream, i, true);
393 }
394 /* Next 8 entries define VLAN PCP mapping from ingress to egress.
395 * Create a one-to-one mapping.
396 */
397 for (i = 0; i < SJA1105_NUM_TC; i++)
398 for (j = 0; j < SJA1105_NUM_PORTS; j++)
399 l2fwd[SJA1105_NUM_PORTS + i].vlan_pmap[j] = i;
400
401 return 0;
402}
403
404static int sja1105_init_l2_forwarding_params(struct sja1105_private *priv)
405{
406 struct sja1105_l2_forwarding_params_entry default_l2fwd_params = {
407 /* Disallow dynamic reconfiguration of vlan_pmap */
408 .max_dynp = 0,
409 /* Use a single memory partition for all ingress queues */
410 .part_spc = { SJA1105_MAX_FRAME_MEMORY, 0, 0, 0, 0, 0, 0, 0 },
411 };
412 struct sja1105_table *table;
413
414 table = &priv->static_config.tables[BLK_IDX_L2_FORWARDING_PARAMS];
415
416 if (table->entry_count) {
417 kfree(table->entries);
418 table->entry_count = 0;
419 }
420
421 table->entries = kcalloc(SJA1105_MAX_L2_FORWARDING_PARAMS_COUNT,
422 table->ops->unpacked_entry_size, GFP_KERNEL);
423 if (!table->entries)
424 return -ENOMEM;
425
426 table->entry_count = SJA1105_MAX_L2_FORWARDING_PARAMS_COUNT;
427
428 /* This table only has a single entry */
429 ((struct sja1105_l2_forwarding_params_entry *)table->entries)[0] =
430 default_l2fwd_params;
431
432 return 0;
433}
434
Vladimir Olteanaaa270c2020-05-12 20:20:37 +0300435void sja1105_frame_memory_partitioning(struct sja1105_private *priv)
436{
437 struct sja1105_l2_forwarding_params_entry *l2_fwd_params;
438 struct sja1105_vl_forwarding_params_entry *vl_fwd_params;
439 struct sja1105_table *table;
440 int max_mem;
441
442 /* VLAN retagging is implemented using a loopback port that consumes
443 * frame buffers. That leaves less for us.
444 */
445 if (priv->vlan_state == SJA1105_VLAN_BEST_EFFORT)
446 max_mem = SJA1105_MAX_FRAME_MEMORY_RETAGGING;
447 else
448 max_mem = SJA1105_MAX_FRAME_MEMORY;
449
450 table = &priv->static_config.tables[BLK_IDX_L2_FORWARDING_PARAMS];
451 l2_fwd_params = table->entries;
452 l2_fwd_params->part_spc[0] = max_mem;
453
454 /* If we have any critical-traffic virtual links, we need to reserve
455 * some frame buffer memory for them. At the moment, hardcode the value
456 * at 100 blocks of 128 bytes of memory each. This leaves 829 blocks
457 * remaining for best-effort traffic. TODO: figure out a more flexible
458 * way to perform the frame buffer partitioning.
459 */
460 if (!priv->static_config.tables[BLK_IDX_VL_FORWARDING].entry_count)
461 return;
462
463 table = &priv->static_config.tables[BLK_IDX_VL_FORWARDING_PARAMS];
464 vl_fwd_params = table->entries;
465
466 l2_fwd_params->part_spc[0] -= SJA1105_VL_FRAME_MEMORY;
467 vl_fwd_params->partspc[0] = SJA1105_VL_FRAME_MEMORY;
468}
469
Vladimir Oltean8aa9ebc2019-05-02 23:23:30 +0300470static int sja1105_init_general_params(struct sja1105_private *priv)
471{
472 struct sja1105_general_params_entry default_general_params = {
Vladimir Oltean511e6ca2019-10-04 03:33:47 +0300473 /* Allow dynamic changing of the mirror port */
474 .mirr_ptacu = true,
Vladimir Oltean8aa9ebc2019-05-02 23:23:30 +0300475 .switchid = priv->ds->index,
Vladimir Oltean5f06c632019-09-15 05:00:01 +0300476 /* Priority queue for link-local management frames
477 * (both ingress to and egress from CPU - PTP, STP etc)
478 */
Vladimir Oltean08fde092019-06-08 15:04:41 +0300479 .hostprio = 7,
Vladimir Oltean8aa9ebc2019-05-02 23:23:30 +0300480 .mac_fltres1 = SJA1105_LINKLOCAL_FILTER_A,
481 .mac_flt1 = SJA1105_LINKLOCAL_FILTER_A_MASK,
Vladimir Oltean42824462019-06-08 15:04:32 +0300482 .incl_srcpt1 = false,
Vladimir Oltean8aa9ebc2019-05-02 23:23:30 +0300483 .send_meta1 = false,
484 .mac_fltres0 = SJA1105_LINKLOCAL_FILTER_B,
485 .mac_flt0 = SJA1105_LINKLOCAL_FILTER_B_MASK,
Vladimir Oltean42824462019-06-08 15:04:32 +0300486 .incl_srcpt0 = false,
Vladimir Oltean8aa9ebc2019-05-02 23:23:30 +0300487 .send_meta0 = false,
488 /* The destination for traffic matching mac_fltres1 and
489 * mac_fltres0 on all ports except host_port. Such traffic
490 * receieved on host_port itself would be dropped, except
491 * by installing a temporary 'management route'
492 */
493 .host_port = dsa_upstream_port(priv->ds, 0),
Vladimir Oltean511e6ca2019-10-04 03:33:47 +0300494 /* Default to an invalid value */
495 .mirr_port = SJA1105_NUM_PORTS,
Vladimir Oltean8aa9ebc2019-05-02 23:23:30 +0300496 /* Link-local traffic received on casc_port will be forwarded
497 * to host_port without embedding the source port and device ID
498 * info in the destination MAC address (presumably because it
499 * is a cascaded port and a downstream SJA switch already did
500 * that). Default to an invalid port (to disable the feature)
501 * and overwrite this if we find any DSA (cascaded) ports.
502 */
503 .casc_port = SJA1105_NUM_PORTS,
504 /* No TTEthernet */
Vladimir Olteandfacc5a2020-05-05 22:20:55 +0300505 .vllupformat = SJA1105_VL_FORMAT_PSFP,
Vladimir Oltean8aa9ebc2019-05-02 23:23:30 +0300506 .vlmarker = 0,
507 .vlmask = 0,
508 /* Only update correctionField for 1-step PTP (L2 transport) */
509 .ignore2stf = 0,
Vladimir Oltean6666ceb2019-05-02 23:23:34 +0300510 /* Forcefully disable VLAN filtering by telling
511 * the switch that VLAN has a different EtherType.
512 */
513 .tpid = ETH_P_SJA1105,
514 .tpid2 = ETH_P_SJA1105,
Vladimir Oltean8aa9ebc2019-05-02 23:23:30 +0300515 };
516 struct sja1105_table *table;
Vladimir Oltean8aa9ebc2019-05-02 23:23:30 +0300517
518 table = &priv->static_config.tables[BLK_IDX_GENERAL_PARAMS];
519
520 if (table->entry_count) {
521 kfree(table->entries);
522 table->entry_count = 0;
523 }
524
525 table->entries = kcalloc(SJA1105_MAX_GENERAL_PARAMS_COUNT,
526 table->ops->unpacked_entry_size, GFP_KERNEL);
527 if (!table->entries)
528 return -ENOMEM;
529
530 table->entry_count = SJA1105_MAX_GENERAL_PARAMS_COUNT;
531
532 /* This table only has a single entry */
533 ((struct sja1105_general_params_entry *)table->entries)[0] =
534 default_general_params;
535
536 return 0;
537}
538
Vladimir Oltean79d55112020-03-24 00:59:21 +0200539static int sja1105_init_avb_params(struct sja1105_private *priv)
540{
541 struct sja1105_avb_params_entry *avb;
542 struct sja1105_table *table;
543
544 table = &priv->static_config.tables[BLK_IDX_AVB_PARAMS];
545
546 /* Discard previous AVB Parameters Table */
547 if (table->entry_count) {
548 kfree(table->entries);
549 table->entry_count = 0;
550 }
551
552 table->entries = kcalloc(SJA1105_MAX_AVB_PARAMS_COUNT,
553 table->ops->unpacked_entry_size, GFP_KERNEL);
554 if (!table->entries)
555 return -ENOMEM;
556
557 table->entry_count = SJA1105_MAX_AVB_PARAMS_COUNT;
558
559 avb = table->entries;
560
561 /* Configure the MAC addresses for meta frames */
562 avb->destmeta = SJA1105_META_DMAC;
563 avb->srcmeta = SJA1105_META_SMAC;
Vladimir Oltean747e5eb2020-03-24 00:59:24 +0200564 /* On P/Q/R/S, configure the direction of the PTP_CLK pin as input by
565 * default. This is because there might be boards with a hardware
566 * layout where enabling the pin as output might cause an electrical
567 * clash. On E/T the pin is always an output, which the board designers
568 * probably already knew, so even if there are going to be electrical
569 * issues, there's nothing we can do.
570 */
571 avb->cas_master = false;
Vladimir Oltean79d55112020-03-24 00:59:21 +0200572
573 return 0;
574}
575
Vladimir Olteana7cc0812020-03-29 14:52:01 +0300576/* The L2 policing table is 2-stage. The table is looked up for each frame
577 * according to the ingress port, whether it was broadcast or not, and the
578 * classified traffic class (given by VLAN PCP). This portion of the lookup is
579 * fixed, and gives access to the SHARINDX, an indirection register pointing
580 * within the policing table itself, which is used to resolve the policer that
581 * will be used for this frame.
582 *
583 * Stage 1 Stage 2
584 * +------------+--------+ +---------------------------------+
585 * |Port 0 TC 0 |SHARINDX| | Policer 0: Rate, Burst, MTU |
586 * +------------+--------+ +---------------------------------+
587 * |Port 0 TC 1 |SHARINDX| | Policer 1: Rate, Burst, MTU |
588 * +------------+--------+ +---------------------------------+
589 * ... | Policer 2: Rate, Burst, MTU |
590 * +------------+--------+ +---------------------------------+
591 * |Port 0 TC 7 |SHARINDX| | Policer 3: Rate, Burst, MTU |
592 * +------------+--------+ +---------------------------------+
593 * |Port 1 TC 0 |SHARINDX| | Policer 4: Rate, Burst, MTU |
594 * +------------+--------+ +---------------------------------+
595 * ... | Policer 5: Rate, Burst, MTU |
596 * +------------+--------+ +---------------------------------+
597 * |Port 1 TC 7 |SHARINDX| | Policer 6: Rate, Burst, MTU |
598 * +------------+--------+ +---------------------------------+
599 * ... | Policer 7: Rate, Burst, MTU |
600 * +------------+--------+ +---------------------------------+
601 * |Port 4 TC 7 |SHARINDX| ...
602 * +------------+--------+
603 * |Port 0 BCAST|SHARINDX| ...
604 * +------------+--------+
605 * |Port 1 BCAST|SHARINDX| ...
606 * +------------+--------+
607 * ... ...
608 * +------------+--------+ +---------------------------------+
609 * |Port 4 BCAST|SHARINDX| | Policer 44: Rate, Burst, MTU |
610 * +------------+--------+ +---------------------------------+
611 *
612 * In this driver, we shall use policers 0-4 as statically alocated port
613 * (matchall) policers. So we need to make the SHARINDX for all lookups
614 * corresponding to this ingress port (8 VLAN PCP lookups and 1 broadcast
615 * lookup) equal.
616 * The remaining policers (40) shall be dynamically allocated for flower
617 * policers, where the key is either vlan_prio or dst_mac ff:ff:ff:ff:ff:ff.
618 */
Vladimir Oltean8aa9ebc2019-05-02 23:23:30 +0300619#define SJA1105_RATE_MBPS(speed) (((speed) * 64000) / 1000)
620
Vladimir Oltean8aa9ebc2019-05-02 23:23:30 +0300621static int sja1105_init_l2_policing(struct sja1105_private *priv)
622{
623 struct sja1105_l2_policing_entry *policing;
624 struct sja1105_table *table;
Vladimir Olteana7cc0812020-03-29 14:52:01 +0300625 int port, tc;
Vladimir Oltean8aa9ebc2019-05-02 23:23:30 +0300626
627 table = &priv->static_config.tables[BLK_IDX_L2_POLICING];
628
629 /* Discard previous L2 Policing Table */
630 if (table->entry_count) {
631 kfree(table->entries);
632 table->entry_count = 0;
633 }
634
635 table->entries = kcalloc(SJA1105_MAX_L2_POLICING_COUNT,
636 table->ops->unpacked_entry_size, GFP_KERNEL);
637 if (!table->entries)
638 return -ENOMEM;
639
640 table->entry_count = SJA1105_MAX_L2_POLICING_COUNT;
641
642 policing = table->entries;
643
Vladimir Olteana7cc0812020-03-29 14:52:01 +0300644 /* Setup shared indices for the matchall policers */
645 for (port = 0; port < SJA1105_NUM_PORTS; port++) {
646 int bcast = (SJA1105_NUM_PORTS * SJA1105_NUM_TC) + port;
647
648 for (tc = 0; tc < SJA1105_NUM_TC; tc++)
649 policing[port * SJA1105_NUM_TC + tc].sharindx = port;
650
651 policing[bcast].sharindx = port;
652 }
653
654 /* Setup the matchall policer parameters */
655 for (port = 0; port < SJA1105_NUM_PORTS; port++) {
Vladimir Olteanc279c722020-03-27 21:55:45 +0200656 int mtu = VLAN_ETH_FRAME_LEN + ETH_FCS_LEN;
657
Vladimir Olteana7cc0812020-03-29 14:52:01 +0300658 if (dsa_is_cpu_port(priv->ds, port))
Vladimir Olteanc279c722020-03-27 21:55:45 +0200659 mtu += VLAN_HLEN;
Vladimir Oltean8aa9ebc2019-05-02 23:23:30 +0300660
Vladimir Olteana7cc0812020-03-29 14:52:01 +0300661 policing[port].smax = 65535; /* Burst size in bytes */
662 policing[port].rate = SJA1105_RATE_MBPS(1000);
663 policing[port].maxlen = mtu;
664 policing[port].partition = 0;
Vladimir Oltean8aa9ebc2019-05-02 23:23:30 +0300665 }
Vladimir Olteana7cc0812020-03-29 14:52:01 +0300666
Vladimir Oltean8aa9ebc2019-05-02 23:23:30 +0300667 return 0;
668}
669
670static int sja1105_static_config_load(struct sja1105_private *priv,
671 struct sja1105_dt_port *ports)
672{
673 int rc;
674
675 sja1105_static_config_free(&priv->static_config);
676 rc = sja1105_static_config_init(&priv->static_config,
677 priv->info->static_ops,
678 priv->info->device_id);
679 if (rc)
680 return rc;
681
682 /* Build static configuration */
683 rc = sja1105_init_mac_settings(priv);
684 if (rc < 0)
685 return rc;
686 rc = sja1105_init_mii_settings(priv, ports);
687 if (rc < 0)
688 return rc;
689 rc = sja1105_init_static_fdb(priv);
690 if (rc < 0)
691 return rc;
692 rc = sja1105_init_static_vlan(priv);
693 if (rc < 0)
694 return rc;
695 rc = sja1105_init_l2_lookup_params(priv);
696 if (rc < 0)
697 return rc;
698 rc = sja1105_init_l2_forwarding(priv);
699 if (rc < 0)
700 return rc;
701 rc = sja1105_init_l2_forwarding_params(priv);
702 if (rc < 0)
703 return rc;
704 rc = sja1105_init_l2_policing(priv);
705 if (rc < 0)
706 return rc;
707 rc = sja1105_init_general_params(priv);
708 if (rc < 0)
709 return rc;
Vladimir Oltean79d55112020-03-24 00:59:21 +0200710 rc = sja1105_init_avb_params(priv);
711 if (rc < 0)
712 return rc;
Vladimir Oltean8aa9ebc2019-05-02 23:23:30 +0300713
714 /* Send initial configuration to hardware via SPI */
715 return sja1105_static_config_upload(priv);
716}
717
Vladimir Olteanf5b86312019-05-02 23:23:32 +0300718static int sja1105_parse_rgmii_delays(struct sja1105_private *priv,
719 const struct sja1105_dt_port *ports)
720{
721 int i;
722
723 for (i = 0; i < SJA1105_NUM_PORTS; i++) {
Oleksij Rempel9bca3a02019-11-25 12:43:51 +0100724 if (ports[i].role == XMII_MAC)
Vladimir Olteanf5b86312019-05-02 23:23:32 +0300725 continue;
726
Oleksij Rempel9bca3a02019-11-25 12:43:51 +0100727 if (ports[i].phy_mode == PHY_INTERFACE_MODE_RGMII_RXID ||
728 ports[i].phy_mode == PHY_INTERFACE_MODE_RGMII_ID)
Vladimir Olteanf5b86312019-05-02 23:23:32 +0300729 priv->rgmii_rx_delay[i] = true;
730
Oleksij Rempel9bca3a02019-11-25 12:43:51 +0100731 if (ports[i].phy_mode == PHY_INTERFACE_MODE_RGMII_TXID ||
732 ports[i].phy_mode == PHY_INTERFACE_MODE_RGMII_ID)
Vladimir Olteanf5b86312019-05-02 23:23:32 +0300733 priv->rgmii_tx_delay[i] = true;
734
735 if ((priv->rgmii_rx_delay[i] || priv->rgmii_tx_delay[i]) &&
736 !priv->info->setup_rgmii_delay)
737 return -EINVAL;
738 }
739 return 0;
740}
741
Vladimir Oltean8aa9ebc2019-05-02 23:23:30 +0300742static int sja1105_parse_ports_node(struct sja1105_private *priv,
743 struct sja1105_dt_port *ports,
744 struct device_node *ports_node)
745{
746 struct device *dev = &priv->spidev->dev;
747 struct device_node *child;
748
Vladimir Oltean27afe0d2020-01-16 20:43:27 +0200749 for_each_available_child_of_node(ports_node, child) {
Vladimir Oltean8aa9ebc2019-05-02 23:23:30 +0300750 struct device_node *phy_node;
Andrew Lunn0c65b2b2019-11-04 02:40:33 +0100751 phy_interface_t phy_mode;
Vladimir Oltean8aa9ebc2019-05-02 23:23:30 +0300752 u32 index;
Andrew Lunn0c65b2b2019-11-04 02:40:33 +0100753 int err;
Vladimir Oltean8aa9ebc2019-05-02 23:23:30 +0300754
755 /* Get switch port number from DT */
756 if (of_property_read_u32(child, "reg", &index) < 0) {
757 dev_err(dev, "Port number not defined in device tree "
758 "(property \"reg\")\n");
Nishka Dasgupta7ba771e2019-07-23 16:14:48 +0530759 of_node_put(child);
Vladimir Oltean8aa9ebc2019-05-02 23:23:30 +0300760 return -ENODEV;
761 }
762
763 /* Get PHY mode from DT */
Andrew Lunn0c65b2b2019-11-04 02:40:33 +0100764 err = of_get_phy_mode(child, &phy_mode);
765 if (err) {
Vladimir Oltean8aa9ebc2019-05-02 23:23:30 +0300766 dev_err(dev, "Failed to read phy-mode or "
767 "phy-interface-type property for port %d\n",
768 index);
Nishka Dasgupta7ba771e2019-07-23 16:14:48 +0530769 of_node_put(child);
Vladimir Oltean8aa9ebc2019-05-02 23:23:30 +0300770 return -ENODEV;
771 }
772 ports[index].phy_mode = phy_mode;
773
774 phy_node = of_parse_phandle(child, "phy-handle", 0);
775 if (!phy_node) {
776 if (!of_phy_is_fixed_link(child)) {
777 dev_err(dev, "phy-handle or fixed-link "
778 "properties missing!\n");
Nishka Dasgupta7ba771e2019-07-23 16:14:48 +0530779 of_node_put(child);
Vladimir Oltean8aa9ebc2019-05-02 23:23:30 +0300780 return -ENODEV;
781 }
782 /* phy-handle is missing, but fixed-link isn't.
783 * So it's a fixed link. Default to PHY role.
784 */
785 ports[index].role = XMII_PHY;
786 } else {
787 /* phy-handle present => put port in MAC role */
788 ports[index].role = XMII_MAC;
789 of_node_put(phy_node);
790 }
791
792 /* The MAC/PHY role can be overridden with explicit bindings */
793 if (of_property_read_bool(child, "sja1105,role-mac"))
794 ports[index].role = XMII_MAC;
795 else if (of_property_read_bool(child, "sja1105,role-phy"))
796 ports[index].role = XMII_PHY;
797 }
798
799 return 0;
800}
801
802static int sja1105_parse_dt(struct sja1105_private *priv,
803 struct sja1105_dt_port *ports)
804{
805 struct device *dev = &priv->spidev->dev;
806 struct device_node *switch_node = dev->of_node;
807 struct device_node *ports_node;
808 int rc;
809
810 ports_node = of_get_child_by_name(switch_node, "ports");
811 if (!ports_node) {
812 dev_err(dev, "Incorrect bindings: absent \"ports\" node\n");
813 return -ENODEV;
814 }
815
816 rc = sja1105_parse_ports_node(priv, ports, ports_node);
817 of_node_put(ports_node);
818
819 return rc;
820}
821
Vladimir Olteanffe10e62020-03-20 13:29:37 +0200822static int sja1105_sgmii_read(struct sja1105_private *priv, int pcs_reg)
823{
824 const struct sja1105_regs *regs = priv->info->regs;
825 u32 val;
826 int rc;
827
828 rc = sja1105_xfer_u32(priv, SPI_READ, regs->sgmii + pcs_reg, &val,
829 NULL);
830 if (rc < 0)
831 return rc;
832
833 return val;
834}
835
836static int sja1105_sgmii_write(struct sja1105_private *priv, int pcs_reg,
837 u16 pcs_val)
838{
839 const struct sja1105_regs *regs = priv->info->regs;
840 u32 val = pcs_val;
841 int rc;
842
843 rc = sja1105_xfer_u32(priv, SPI_WRITE, regs->sgmii + pcs_reg, &val,
844 NULL);
845 if (rc < 0)
846 return rc;
847
848 return val;
849}
850
851static void sja1105_sgmii_pcs_config(struct sja1105_private *priv,
852 bool an_enabled, bool an_master)
853{
854 u16 ac = SJA1105_AC_AUTONEG_MODE_SGMII;
855
856 /* DIGITAL_CONTROL_1: Enable vendor-specific MMD1, allow the PHY to
857 * stop the clock during LPI mode, make the MAC reconfigure
858 * autonomously after PCS autoneg is done, flush the internal FIFOs.
859 */
860 sja1105_sgmii_write(priv, SJA1105_DC1, SJA1105_DC1_EN_VSMMD1 |
861 SJA1105_DC1_CLOCK_STOP_EN |
862 SJA1105_DC1_MAC_AUTO_SW |
863 SJA1105_DC1_INIT);
864 /* DIGITAL_CONTROL_2: No polarity inversion for TX and RX lanes */
865 sja1105_sgmii_write(priv, SJA1105_DC2, SJA1105_DC2_TX_POL_INV_DISABLE);
866 /* AUTONEG_CONTROL: Use SGMII autoneg */
867 if (an_master)
868 ac |= SJA1105_AC_PHY_MODE | SJA1105_AC_SGMII_LINK;
869 sja1105_sgmii_write(priv, SJA1105_AC, ac);
870 /* BASIC_CONTROL: enable in-band AN now, if requested. Otherwise,
871 * sja1105_sgmii_pcs_force_speed must be called later for the link
872 * to become operational.
873 */
874 if (an_enabled)
875 sja1105_sgmii_write(priv, MII_BMCR,
876 BMCR_ANENABLE | BMCR_ANRESTART);
877}
878
879static void sja1105_sgmii_pcs_force_speed(struct sja1105_private *priv,
880 int speed)
881{
882 int pcs_speed;
883
884 switch (speed) {
885 case SPEED_1000:
886 pcs_speed = BMCR_SPEED1000;
887 break;
888 case SPEED_100:
889 pcs_speed = BMCR_SPEED100;
890 break;
891 case SPEED_10:
892 pcs_speed = BMCR_SPEED10;
893 break;
894 default:
895 dev_err(priv->ds->dev, "Invalid speed %d\n", speed);
896 return;
897 }
898 sja1105_sgmii_write(priv, MII_BMCR, pcs_speed | BMCR_FULLDPLX);
899}
900
Vladimir Olteanc44d0532019-06-08 16:03:41 +0300901/* Convert link speed from SJA1105 to ethtool encoding */
Vladimir Oltean8aa9ebc2019-05-02 23:23:30 +0300902static int sja1105_speed[] = {
Vladimir Olteanc44d0532019-06-08 16:03:41 +0300903 [SJA1105_SPEED_AUTO] = SPEED_UNKNOWN,
904 [SJA1105_SPEED_10MBPS] = SPEED_10,
905 [SJA1105_SPEED_100MBPS] = SPEED_100,
906 [SJA1105_SPEED_1000MBPS] = SPEED_1000,
Vladimir Oltean8aa9ebc2019-05-02 23:23:30 +0300907};
908
Vladimir Oltean8400cff2019-06-08 16:03:44 +0300909/* Set link speed in the MAC configuration for a specific port. */
Vladimir Oltean8aa9ebc2019-05-02 23:23:30 +0300910static int sja1105_adjust_port_config(struct sja1105_private *priv, int port,
Vladimir Oltean8400cff2019-06-08 16:03:44 +0300911 int speed_mbps)
Vladimir Oltean8aa9ebc2019-05-02 23:23:30 +0300912{
913 struct sja1105_xmii_params_entry *mii;
914 struct sja1105_mac_config_entry *mac;
915 struct device *dev = priv->ds->dev;
916 sja1105_phy_interface_t phy_mode;
917 sja1105_speed_t speed;
918 int rc;
919
Vladimir Oltean8400cff2019-06-08 16:03:44 +0300920 /* On P/Q/R/S, one can read from the device via the MAC reconfiguration
921 * tables. On E/T, MAC reconfig tables are not readable, only writable.
922 * We have to *know* what the MAC looks like. For the sake of keeping
923 * the code common, we'll use the static configuration tables as a
924 * reasonable approximation for both E/T and P/Q/R/S.
925 */
Vladimir Oltean8aa9ebc2019-05-02 23:23:30 +0300926 mac = priv->static_config.tables[BLK_IDX_MAC_CONFIG].entries;
Vladimir Oltean8400cff2019-06-08 16:03:44 +0300927 mii = priv->static_config.tables[BLK_IDX_XMII_PARAMS].entries;
Vladimir Oltean8aa9ebc2019-05-02 23:23:30 +0300928
Vladimir Olteanf4cfcfb2019-06-03 02:31:37 +0300929 switch (speed_mbps) {
Vladimir Olteanc44d0532019-06-08 16:03:41 +0300930 case SPEED_UNKNOWN:
Vladimir Olteana979a0a2019-06-28 00:46:35 +0300931 /* PHYLINK called sja1105_mac_config() to inform us about
932 * the state->interface, but AN has not completed and the
933 * speed is not yet valid. UM10944.pdf says that setting
934 * SJA1105_SPEED_AUTO at runtime disables the port, so that is
935 * ok for power consumption in case AN will never complete -
936 * otherwise PHYLINK should come back with a new update.
937 */
Vladimir Olteanf4cfcfb2019-06-03 02:31:37 +0300938 speed = SJA1105_SPEED_AUTO;
939 break;
Vladimir Olteanc44d0532019-06-08 16:03:41 +0300940 case SPEED_10:
Vladimir Olteanf4cfcfb2019-06-03 02:31:37 +0300941 speed = SJA1105_SPEED_10MBPS;
942 break;
Vladimir Olteanc44d0532019-06-08 16:03:41 +0300943 case SPEED_100:
Vladimir Olteanf4cfcfb2019-06-03 02:31:37 +0300944 speed = SJA1105_SPEED_100MBPS;
945 break;
Vladimir Olteanc44d0532019-06-08 16:03:41 +0300946 case SPEED_1000:
Vladimir Olteanf4cfcfb2019-06-03 02:31:37 +0300947 speed = SJA1105_SPEED_1000MBPS;
948 break;
949 default:
Vladimir Oltean8aa9ebc2019-05-02 23:23:30 +0300950 dev_err(dev, "Invalid speed %iMbps\n", speed_mbps);
951 return -EINVAL;
952 }
953
Vladimir Oltean8400cff2019-06-08 16:03:44 +0300954 /* Overwrite SJA1105_SPEED_AUTO from the static MAC configuration
955 * table, since this will be used for the clocking setup, and we no
956 * longer need to store it in the static config (already told hardware
957 * we want auto during upload phase).
Vladimir Olteanffe10e62020-03-20 13:29:37 +0200958 * Actually for the SGMII port, the MAC is fixed at 1 Gbps and
959 * we need to configure the PCS only (if even that).
Vladimir Oltean8aa9ebc2019-05-02 23:23:30 +0300960 */
Vladimir Olteanffe10e62020-03-20 13:29:37 +0200961 if (sja1105_supports_sgmii(priv, port))
962 mac[port].speed = SJA1105_SPEED_1000MBPS;
963 else
964 mac[port].speed = speed;
Vladimir Oltean8aa9ebc2019-05-02 23:23:30 +0300965
Vladimir Oltean8aa9ebc2019-05-02 23:23:30 +0300966 /* Write to the dynamic reconfiguration tables */
Vladimir Oltean8400cff2019-06-08 16:03:44 +0300967 rc = sja1105_dynamic_config_write(priv, BLK_IDX_MAC_CONFIG, port,
968 &mac[port], true);
Vladimir Oltean8aa9ebc2019-05-02 23:23:30 +0300969 if (rc < 0) {
970 dev_err(dev, "Failed to write MAC config: %d\n", rc);
971 return rc;
972 }
973
974 /* Reconfigure the PLLs for the RGMII interfaces (required 125 MHz at
975 * gigabit, 25 MHz at 100 Mbps and 2.5 MHz at 10 Mbps). For MII and
976 * RMII no change of the clock setup is required. Actually, changing
977 * the clock setup does interrupt the clock signal for a certain time
978 * which causes trouble for all PHYs relying on this signal.
979 */
Vladimir Oltean8aa9ebc2019-05-02 23:23:30 +0300980 phy_mode = mii->xmii_mode[port];
981 if (phy_mode != XMII_MODE_RGMII)
982 return 0;
983
984 return sja1105_clocking_setup_port(priv, port);
985}
986
Vladimir Oltean39710222019-06-28 00:46:36 +0300987/* The SJA1105 MAC programming model is through the static config (the xMII
988 * Mode table cannot be dynamically reconfigured), and we have to program
989 * that early (earlier than PHYLINK calls us, anyway).
990 * So just error out in case the connected PHY attempts to change the initial
991 * system interface MII protocol from what is defined in the DT, at least for
992 * now.
993 */
994static bool sja1105_phy_mode_mismatch(struct sja1105_private *priv, int port,
995 phy_interface_t interface)
996{
997 struct sja1105_xmii_params_entry *mii;
998 sja1105_phy_interface_t phy_mode;
999
1000 mii = priv->static_config.tables[BLK_IDX_XMII_PARAMS].entries;
1001 phy_mode = mii->xmii_mode[port];
1002
1003 switch (interface) {
1004 case PHY_INTERFACE_MODE_MII:
1005 return (phy_mode != XMII_MODE_MII);
1006 case PHY_INTERFACE_MODE_RMII:
1007 return (phy_mode != XMII_MODE_RMII);
1008 case PHY_INTERFACE_MODE_RGMII:
1009 case PHY_INTERFACE_MODE_RGMII_ID:
1010 case PHY_INTERFACE_MODE_RGMII_RXID:
1011 case PHY_INTERFACE_MODE_RGMII_TXID:
1012 return (phy_mode != XMII_MODE_RGMII);
Vladimir Olteanffe10e62020-03-20 13:29:37 +02001013 case PHY_INTERFACE_MODE_SGMII:
1014 return (phy_mode != XMII_MODE_SGMII);
Vladimir Oltean39710222019-06-28 00:46:36 +03001015 default:
1016 return true;
1017 }
1018}
1019
Vladimir Olteanaf7cd032019-05-28 20:38:17 +03001020static void sja1105_mac_config(struct dsa_switch *ds, int port,
Vladimir Olteanffe10e62020-03-20 13:29:37 +02001021 unsigned int mode,
Vladimir Olteanaf7cd032019-05-28 20:38:17 +03001022 const struct phylink_link_state *state)
Vladimir Oltean8aa9ebc2019-05-02 23:23:30 +03001023{
1024 struct sja1105_private *priv = ds->priv;
Vladimir Olteanffe10e62020-03-20 13:29:37 +02001025 bool is_sgmii = sja1105_supports_sgmii(priv, port);
Vladimir Oltean8aa9ebc2019-05-02 23:23:30 +03001026
Vladimir Olteanec8582d2020-03-12 12:19:51 +00001027 if (sja1105_phy_mode_mismatch(priv, port, state->interface)) {
1028 dev_err(ds->dev, "Changing PHY mode to %s not supported!\n",
1029 phy_modes(state->interface));
Vladimir Oltean39710222019-06-28 00:46:36 +03001030 return;
Vladimir Olteanec8582d2020-03-12 12:19:51 +00001031 }
Vladimir Oltean39710222019-06-28 00:46:36 +03001032
Vladimir Olteanffe10e62020-03-20 13:29:37 +02001033 if (phylink_autoneg_inband(mode) && !is_sgmii) {
Vladimir Oltean9f971572019-06-28 00:46:37 +03001034 dev_err(ds->dev, "In-band AN not supported!\n");
1035 return;
1036 }
Vladimir Olteanffe10e62020-03-20 13:29:37 +02001037
1038 if (is_sgmii)
1039 sja1105_sgmii_pcs_config(priv, phylink_autoneg_inband(mode),
1040 false);
Vladimir Oltean8400cff2019-06-08 16:03:44 +03001041}
1042
1043static void sja1105_mac_link_down(struct dsa_switch *ds, int port,
1044 unsigned int mode,
1045 phy_interface_t interface)
1046{
1047 sja1105_inhibit_tx(ds->priv, BIT(port), true);
1048}
1049
1050static void sja1105_mac_link_up(struct dsa_switch *ds, int port,
1051 unsigned int mode,
1052 phy_interface_t interface,
Russell King5b502a72020-02-26 10:23:46 +00001053 struct phy_device *phydev,
1054 int speed, int duplex,
1055 bool tx_pause, bool rx_pause)
Vladimir Oltean8400cff2019-06-08 16:03:44 +03001056{
Vladimir Olteanec8582d2020-03-12 12:19:51 +00001057 struct sja1105_private *priv = ds->priv;
1058
1059 sja1105_adjust_port_config(priv, port, speed);
1060
Vladimir Olteanffe10e62020-03-20 13:29:37 +02001061 if (sja1105_supports_sgmii(priv, port) && !phylink_autoneg_inband(mode))
1062 sja1105_sgmii_pcs_force_speed(priv, speed);
1063
Vladimir Olteanec8582d2020-03-12 12:19:51 +00001064 sja1105_inhibit_tx(priv, BIT(port), false);
Vladimir Oltean8aa9ebc2019-05-02 23:23:30 +03001065}
1066
Vladimir Olteanad9f2992019-05-02 23:23:38 +03001067static void sja1105_phylink_validate(struct dsa_switch *ds, int port,
1068 unsigned long *supported,
1069 struct phylink_link_state *state)
1070{
1071 /* Construct a new mask which exhaustively contains all link features
1072 * supported by the MAC, and then apply that (logical AND) to what will
1073 * be sent to the PHY for "marketing".
1074 */
1075 __ETHTOOL_DECLARE_LINK_MODE_MASK(mask) = { 0, };
1076 struct sja1105_private *priv = ds->priv;
1077 struct sja1105_xmii_params_entry *mii;
1078
1079 mii = priv->static_config.tables[BLK_IDX_XMII_PARAMS].entries;
1080
Vladimir Oltean39710222019-06-28 00:46:36 +03001081 /* include/linux/phylink.h says:
1082 * When @state->interface is %PHY_INTERFACE_MODE_NA, phylink
1083 * expects the MAC driver to return all supported link modes.
1084 */
1085 if (state->interface != PHY_INTERFACE_MODE_NA &&
1086 sja1105_phy_mode_mismatch(priv, port, state->interface)) {
1087 bitmap_zero(supported, __ETHTOOL_LINK_MODE_MASK_NBITS);
1088 return;
1089 }
1090
Vladimir Olteanad9f2992019-05-02 23:23:38 +03001091 /* The MAC does not support pause frames, and also doesn't
1092 * support half-duplex traffic modes.
1093 */
1094 phylink_set(mask, Autoneg);
1095 phylink_set(mask, MII);
1096 phylink_set(mask, 10baseT_Full);
1097 phylink_set(mask, 100baseT_Full);
Oleksij Rempelca68e132020-03-03 08:44:14 +01001098 phylink_set(mask, 100baseT1_Full);
Vladimir Olteanffe10e62020-03-20 13:29:37 +02001099 if (mii->xmii_mode[port] == XMII_MODE_RGMII ||
1100 mii->xmii_mode[port] == XMII_MODE_SGMII)
Vladimir Olteanad9f2992019-05-02 23:23:38 +03001101 phylink_set(mask, 1000baseT_Full);
1102
1103 bitmap_and(supported, supported, mask, __ETHTOOL_LINK_MODE_MASK_NBITS);
1104 bitmap_and(state->advertising, state->advertising, mask,
1105 __ETHTOOL_LINK_MODE_MASK_NBITS);
1106}
1107
Vladimir Olteanffe10e62020-03-20 13:29:37 +02001108static int sja1105_mac_pcs_get_state(struct dsa_switch *ds, int port,
1109 struct phylink_link_state *state)
1110{
1111 struct sja1105_private *priv = ds->priv;
1112 int ais;
1113
1114 /* Read the vendor-specific AUTONEG_INTR_STATUS register */
1115 ais = sja1105_sgmii_read(priv, SJA1105_AIS);
1116 if (ais < 0)
1117 return ais;
1118
1119 switch (SJA1105_AIS_SPEED(ais)) {
1120 case 0:
1121 state->speed = SPEED_10;
1122 break;
1123 case 1:
1124 state->speed = SPEED_100;
1125 break;
1126 case 2:
1127 state->speed = SPEED_1000;
1128 break;
1129 default:
1130 dev_err(ds->dev, "Invalid SGMII PCS speed %lu\n",
1131 SJA1105_AIS_SPEED(ais));
1132 }
1133 state->duplex = SJA1105_AIS_DUPLEX_MODE(ais);
1134 state->an_complete = SJA1105_AIS_COMPLETE(ais);
1135 state->link = SJA1105_AIS_LINK_STATUS(ais);
1136
1137 return 0;
1138}
1139
Vladimir Oltean60f60532019-06-26 02:39:38 +03001140static int
1141sja1105_find_static_fdb_entry(struct sja1105_private *priv, int port,
1142 const struct sja1105_l2_lookup_entry *requested)
1143{
1144 struct sja1105_l2_lookup_entry *l2_lookup;
1145 struct sja1105_table *table;
1146 int i;
1147
1148 table = &priv->static_config.tables[BLK_IDX_L2_LOOKUP];
1149 l2_lookup = table->entries;
1150
1151 for (i = 0; i < table->entry_count; i++)
1152 if (l2_lookup[i].macaddr == requested->macaddr &&
1153 l2_lookup[i].vlanid == requested->vlanid &&
1154 l2_lookup[i].destports & BIT(port))
1155 return i;
1156
1157 return -1;
1158}
1159
1160/* We want FDB entries added statically through the bridge command to persist
1161 * across switch resets, which are a common thing during normal SJA1105
1162 * operation. So we have to back them up in the static configuration tables
1163 * and hence apply them on next static config upload... yay!
1164 */
1165static int
1166sja1105_static_fdb_change(struct sja1105_private *priv, int port,
1167 const struct sja1105_l2_lookup_entry *requested,
1168 bool keep)
1169{
1170 struct sja1105_l2_lookup_entry *l2_lookup;
1171 struct sja1105_table *table;
1172 int rc, match;
1173
1174 table = &priv->static_config.tables[BLK_IDX_L2_LOOKUP];
1175
1176 match = sja1105_find_static_fdb_entry(priv, port, requested);
1177 if (match < 0) {
1178 /* Can't delete a missing entry. */
1179 if (!keep)
1180 return 0;
1181
1182 /* No match => new entry */
1183 rc = sja1105_table_resize(table, table->entry_count + 1);
1184 if (rc)
1185 return rc;
1186
1187 match = table->entry_count - 1;
1188 }
1189
1190 /* Assign pointer after the resize (it may be new memory) */
1191 l2_lookup = table->entries;
1192
1193 /* We have a match.
1194 * If the job was to add this FDB entry, it's already done (mostly
1195 * anyway, since the port forwarding mask may have changed, case in
1196 * which we update it).
1197 * Otherwise we have to delete it.
1198 */
1199 if (keep) {
1200 l2_lookup[match] = *requested;
1201 return 0;
1202 }
1203
1204 /* To remove, the strategy is to overwrite the element with
1205 * the last one, and then reduce the array size by 1
1206 */
1207 l2_lookup[match] = l2_lookup[table->entry_count - 1];
1208 return sja1105_table_resize(table, table->entry_count - 1);
1209}
1210
Vladimir Oltean291d1e72019-05-02 23:23:31 +03001211/* First-generation switches have a 4-way set associative TCAM that
1212 * holds the FDB entries. An FDB index spans from 0 to 1023 and is comprised of
1213 * a "bin" (grouping of 4 entries) and a "way" (an entry within a bin).
1214 * For the placement of a newly learnt FDB entry, the switch selects the bin
1215 * based on a hash function, and the way within that bin incrementally.
1216 */
Vladimir Oltean09c1b412019-10-01 22:17:59 +03001217static int sja1105et_fdb_index(int bin, int way)
Vladimir Oltean291d1e72019-05-02 23:23:31 +03001218{
1219 return bin * SJA1105ET_FDB_BIN_SIZE + way;
1220}
1221
Vladimir Oltean9dfa6912019-06-03 00:11:57 +03001222static int sja1105et_is_fdb_entry_in_bin(struct sja1105_private *priv, int bin,
1223 const u8 *addr, u16 vid,
1224 struct sja1105_l2_lookup_entry *match,
1225 int *last_unused)
Vladimir Oltean291d1e72019-05-02 23:23:31 +03001226{
1227 int way;
1228
1229 for (way = 0; way < SJA1105ET_FDB_BIN_SIZE; way++) {
1230 struct sja1105_l2_lookup_entry l2_lookup = {0};
1231 int index = sja1105et_fdb_index(bin, way);
1232
1233 /* Skip unused entries, optionally marking them
1234 * into the return value
1235 */
1236 if (sja1105_dynamic_config_read(priv, BLK_IDX_L2_LOOKUP,
1237 index, &l2_lookup)) {
1238 if (last_unused)
1239 *last_unused = way;
1240 continue;
1241 }
1242
1243 if (l2_lookup.macaddr == ether_addr_to_u64(addr) &&
1244 l2_lookup.vlanid == vid) {
1245 if (match)
1246 *match = l2_lookup;
1247 return way;
1248 }
1249 }
1250 /* Return an invalid entry index if not found */
1251 return -1;
1252}
1253
Vladimir Oltean9dfa6912019-06-03 00:11:57 +03001254int sja1105et_fdb_add(struct dsa_switch *ds, int port,
1255 const unsigned char *addr, u16 vid)
Vladimir Oltean291d1e72019-05-02 23:23:31 +03001256{
1257 struct sja1105_l2_lookup_entry l2_lookup = {0};
1258 struct sja1105_private *priv = ds->priv;
1259 struct device *dev = ds->dev;
1260 int last_unused = -1;
Vladimir Oltean60f60532019-06-26 02:39:38 +03001261 int bin, way, rc;
Vladimir Oltean291d1e72019-05-02 23:23:31 +03001262
Vladimir Oltean9dfa6912019-06-03 00:11:57 +03001263 bin = sja1105et_fdb_hash(priv, addr, vid);
Vladimir Oltean291d1e72019-05-02 23:23:31 +03001264
Vladimir Oltean9dfa6912019-06-03 00:11:57 +03001265 way = sja1105et_is_fdb_entry_in_bin(priv, bin, addr, vid,
1266 &l2_lookup, &last_unused);
Vladimir Oltean291d1e72019-05-02 23:23:31 +03001267 if (way >= 0) {
1268 /* We have an FDB entry. Is our port in the destination
1269 * mask? If yes, we need to do nothing. If not, we need
1270 * to rewrite the entry by adding this port to it.
1271 */
1272 if (l2_lookup.destports & BIT(port))
1273 return 0;
1274 l2_lookup.destports |= BIT(port);
1275 } else {
1276 int index = sja1105et_fdb_index(bin, way);
1277
1278 /* We don't have an FDB entry. We construct a new one and
1279 * try to find a place for it within the FDB table.
1280 */
1281 l2_lookup.macaddr = ether_addr_to_u64(addr);
1282 l2_lookup.destports = BIT(port);
1283 l2_lookup.vlanid = vid;
1284
1285 if (last_unused >= 0) {
1286 way = last_unused;
1287 } else {
1288 /* Bin is full, need to evict somebody.
1289 * Choose victim at random. If you get these messages
1290 * often, you may need to consider changing the
1291 * distribution function:
1292 * static_config[BLK_IDX_L2_LOOKUP_PARAMS].entries->poly
1293 */
1294 get_random_bytes(&way, sizeof(u8));
1295 way %= SJA1105ET_FDB_BIN_SIZE;
1296 dev_warn(dev, "Warning, FDB bin %d full while adding entry for %pM. Evicting entry %u.\n",
1297 bin, addr, way);
1298 /* Evict entry */
1299 sja1105_dynamic_config_write(priv, BLK_IDX_L2_LOOKUP,
1300 index, NULL, false);
1301 }
1302 }
1303 l2_lookup.index = sja1105et_fdb_index(bin, way);
1304
Vladimir Oltean60f60532019-06-26 02:39:38 +03001305 rc = sja1105_dynamic_config_write(priv, BLK_IDX_L2_LOOKUP,
1306 l2_lookup.index, &l2_lookup,
1307 true);
1308 if (rc < 0)
1309 return rc;
1310
1311 return sja1105_static_fdb_change(priv, port, &l2_lookup, true);
Vladimir Oltean291d1e72019-05-02 23:23:31 +03001312}
1313
Vladimir Oltean9dfa6912019-06-03 00:11:57 +03001314int sja1105et_fdb_del(struct dsa_switch *ds, int port,
1315 const unsigned char *addr, u16 vid)
Vladimir Oltean291d1e72019-05-02 23:23:31 +03001316{
1317 struct sja1105_l2_lookup_entry l2_lookup = {0};
1318 struct sja1105_private *priv = ds->priv;
Vladimir Oltean60f60532019-06-26 02:39:38 +03001319 int index, bin, way, rc;
Vladimir Oltean291d1e72019-05-02 23:23:31 +03001320 bool keep;
1321
Vladimir Oltean9dfa6912019-06-03 00:11:57 +03001322 bin = sja1105et_fdb_hash(priv, addr, vid);
1323 way = sja1105et_is_fdb_entry_in_bin(priv, bin, addr, vid,
1324 &l2_lookup, NULL);
Vladimir Oltean291d1e72019-05-02 23:23:31 +03001325 if (way < 0)
1326 return 0;
1327 index = sja1105et_fdb_index(bin, way);
1328
1329 /* We have an FDB entry. Is our port in the destination mask? If yes,
1330 * we need to remove it. If the resulting port mask becomes empty, we
1331 * need to completely evict the FDB entry.
1332 * Otherwise we just write it back.
1333 */
Vladimir Oltean7752e932019-06-03 00:15:54 +03001334 l2_lookup.destports &= ~BIT(port);
1335
Vladimir Oltean291d1e72019-05-02 23:23:31 +03001336 if (l2_lookup.destports)
1337 keep = true;
1338 else
1339 keep = false;
1340
Vladimir Oltean60f60532019-06-26 02:39:38 +03001341 rc = sja1105_dynamic_config_write(priv, BLK_IDX_L2_LOOKUP,
1342 index, &l2_lookup, keep);
1343 if (rc < 0)
1344 return rc;
1345
1346 return sja1105_static_fdb_change(priv, port, &l2_lookup, keep);
Vladimir Oltean291d1e72019-05-02 23:23:31 +03001347}
1348
Vladimir Oltean9dfa6912019-06-03 00:11:57 +03001349int sja1105pqrs_fdb_add(struct dsa_switch *ds, int port,
1350 const unsigned char *addr, u16 vid)
1351{
Vladimir Oltean1da73822019-06-03 00:15:45 +03001352 struct sja1105_l2_lookup_entry l2_lookup = {0};
1353 struct sja1105_private *priv = ds->priv;
1354 int rc, i;
1355
1356 /* Search for an existing entry in the FDB table */
1357 l2_lookup.macaddr = ether_addr_to_u64(addr);
1358 l2_lookup.vlanid = vid;
1359 l2_lookup.iotag = SJA1105_S_TAG;
1360 l2_lookup.mask_macaddr = GENMASK_ULL(ETH_ALEN * 8 - 1, 0);
Vladimir Oltean7f149372020-05-12 20:20:27 +03001361 if (priv->vlan_state != SJA1105_VLAN_UNAWARE) {
Vladimir Oltean6d7c7d92019-08-05 01:38:44 +03001362 l2_lookup.mask_vlanid = VLAN_VID_MASK;
1363 l2_lookup.mask_iotag = BIT(0);
1364 } else {
1365 l2_lookup.mask_vlanid = 0;
1366 l2_lookup.mask_iotag = 0;
1367 }
Vladimir Oltean1da73822019-06-03 00:15:45 +03001368 l2_lookup.destports = BIT(port);
1369
1370 rc = sja1105_dynamic_config_read(priv, BLK_IDX_L2_LOOKUP,
1371 SJA1105_SEARCH, &l2_lookup);
1372 if (rc == 0) {
1373 /* Found and this port is already in the entry's
1374 * port mask => job done
1375 */
1376 if (l2_lookup.destports & BIT(port))
1377 return 0;
1378 /* l2_lookup.index is populated by the switch in case it
1379 * found something.
1380 */
1381 l2_lookup.destports |= BIT(port);
1382 goto skip_finding_an_index;
1383 }
1384
1385 /* Not found, so try to find an unused spot in the FDB.
1386 * This is slightly inefficient because the strategy is knock-knock at
1387 * every possible position from 0 to 1023.
1388 */
1389 for (i = 0; i < SJA1105_MAX_L2_LOOKUP_COUNT; i++) {
1390 rc = sja1105_dynamic_config_read(priv, BLK_IDX_L2_LOOKUP,
1391 i, NULL);
1392 if (rc < 0)
1393 break;
1394 }
1395 if (i == SJA1105_MAX_L2_LOOKUP_COUNT) {
1396 dev_err(ds->dev, "FDB is full, cannot add entry.\n");
1397 return -EINVAL;
1398 }
Vladimir Oltean17ae6552019-06-26 02:39:40 +03001399 l2_lookup.lockeds = true;
Vladimir Oltean1da73822019-06-03 00:15:45 +03001400 l2_lookup.index = i;
1401
1402skip_finding_an_index:
Vladimir Oltean60f60532019-06-26 02:39:38 +03001403 rc = sja1105_dynamic_config_write(priv, BLK_IDX_L2_LOOKUP,
1404 l2_lookup.index, &l2_lookup,
1405 true);
1406 if (rc < 0)
1407 return rc;
1408
1409 return sja1105_static_fdb_change(priv, port, &l2_lookup, true);
Vladimir Oltean9dfa6912019-06-03 00:11:57 +03001410}
1411
1412int sja1105pqrs_fdb_del(struct dsa_switch *ds, int port,
1413 const unsigned char *addr, u16 vid)
1414{
Vladimir Oltean1da73822019-06-03 00:15:45 +03001415 struct sja1105_l2_lookup_entry l2_lookup = {0};
1416 struct sja1105_private *priv = ds->priv;
1417 bool keep;
1418 int rc;
1419
1420 l2_lookup.macaddr = ether_addr_to_u64(addr);
1421 l2_lookup.vlanid = vid;
1422 l2_lookup.iotag = SJA1105_S_TAG;
1423 l2_lookup.mask_macaddr = GENMASK_ULL(ETH_ALEN * 8 - 1, 0);
Vladimir Oltean7f149372020-05-12 20:20:27 +03001424 if (priv->vlan_state != SJA1105_VLAN_UNAWARE) {
Vladimir Oltean6d7c7d92019-08-05 01:38:44 +03001425 l2_lookup.mask_vlanid = VLAN_VID_MASK;
1426 l2_lookup.mask_iotag = BIT(0);
1427 } else {
1428 l2_lookup.mask_vlanid = 0;
1429 l2_lookup.mask_iotag = 0;
1430 }
Vladimir Oltean1da73822019-06-03 00:15:45 +03001431 l2_lookup.destports = BIT(port);
1432
1433 rc = sja1105_dynamic_config_read(priv, BLK_IDX_L2_LOOKUP,
1434 SJA1105_SEARCH, &l2_lookup);
1435 if (rc < 0)
1436 return 0;
1437
1438 l2_lookup.destports &= ~BIT(port);
1439
1440 /* Decide whether we remove just this port from the FDB entry,
1441 * or if we remove it completely.
1442 */
1443 if (l2_lookup.destports)
1444 keep = true;
1445 else
1446 keep = false;
1447
Vladimir Oltean60f60532019-06-26 02:39:38 +03001448 rc = sja1105_dynamic_config_write(priv, BLK_IDX_L2_LOOKUP,
1449 l2_lookup.index, &l2_lookup, keep);
1450 if (rc < 0)
1451 return rc;
1452
1453 return sja1105_static_fdb_change(priv, port, &l2_lookup, keep);
Vladimir Oltean9dfa6912019-06-03 00:11:57 +03001454}
1455
1456static int sja1105_fdb_add(struct dsa_switch *ds, int port,
1457 const unsigned char *addr, u16 vid)
1458{
1459 struct sja1105_private *priv = ds->priv;
Vladimir Olteanb3ee5262019-06-26 02:39:41 +03001460
Vladimir Oltean6d7c7d92019-08-05 01:38:44 +03001461 /* dsa_8021q is in effect when the bridge's vlan_filtering isn't,
1462 * so the switch still does some VLAN processing internally.
1463 * But Shared VLAN Learning (SVL) is also active, and it will take
1464 * care of autonomous forwarding between the unique pvid's of each
1465 * port. Here we just make sure that users can't add duplicate FDB
1466 * entries when in this mode - the actual VID doesn't matter except
1467 * for what gets printed in 'bridge fdb show'. In the case of zero,
1468 * no VID gets printed at all.
Vladimir Oltean93647592019-06-03 00:16:01 +03001469 */
Vladimir Oltean7f149372020-05-12 20:20:27 +03001470 if (priv->vlan_state != SJA1105_VLAN_FILTERING_FULL)
Vladimir Oltean6d7c7d92019-08-05 01:38:44 +03001471 vid = 0;
Vladimir Oltean93647592019-06-03 00:16:01 +03001472
Vladimir Oltean6d7c7d92019-08-05 01:38:44 +03001473 return priv->info->fdb_add_cmd(ds, port, addr, vid);
Vladimir Oltean9dfa6912019-06-03 00:11:57 +03001474}
1475
1476static int sja1105_fdb_del(struct dsa_switch *ds, int port,
1477 const unsigned char *addr, u16 vid)
1478{
1479 struct sja1105_private *priv = ds->priv;
1480
Vladimir Oltean7f149372020-05-12 20:20:27 +03001481 if (priv->vlan_state != SJA1105_VLAN_FILTERING_FULL)
Vladimir Oltean6d7c7d92019-08-05 01:38:44 +03001482 vid = 0;
Vladimir Oltean93647592019-06-03 00:16:01 +03001483
Vladimir Oltean6d7c7d92019-08-05 01:38:44 +03001484 return priv->info->fdb_del_cmd(ds, port, addr, vid);
Vladimir Oltean9dfa6912019-06-03 00:11:57 +03001485}
1486
Vladimir Oltean291d1e72019-05-02 23:23:31 +03001487static int sja1105_fdb_dump(struct dsa_switch *ds, int port,
1488 dsa_fdb_dump_cb_t *cb, void *data)
1489{
1490 struct sja1105_private *priv = ds->priv;
1491 struct device *dev = ds->dev;
1492 int i;
1493
1494 for (i = 0; i < SJA1105_MAX_L2_LOOKUP_COUNT; i++) {
1495 struct sja1105_l2_lookup_entry l2_lookup = {0};
1496 u8 macaddr[ETH_ALEN];
1497 int rc;
1498
1499 rc = sja1105_dynamic_config_read(priv, BLK_IDX_L2_LOOKUP,
1500 i, &l2_lookup);
1501 /* No fdb entry at i, not an issue */
Vladimir Olteandef84602019-06-03 00:11:59 +03001502 if (rc == -ENOENT)
Vladimir Oltean291d1e72019-05-02 23:23:31 +03001503 continue;
1504 if (rc) {
1505 dev_err(dev, "Failed to dump FDB: %d\n", rc);
1506 return rc;
1507 }
1508
1509 /* FDB dump callback is per port. This means we have to
1510 * disregard a valid entry if it's not for this port, even if
1511 * only to revisit it later. This is inefficient because the
1512 * 1024-sized FDB table needs to be traversed 4 times through
1513 * SPI during a 'bridge fdb show' command.
1514 */
1515 if (!(l2_lookup.destports & BIT(port)))
1516 continue;
1517 u64_to_ether_addr(l2_lookup.macaddr, macaddr);
Vladimir Oltean93647592019-06-03 00:16:01 +03001518
Vladimir Oltean6d7c7d92019-08-05 01:38:44 +03001519 /* We need to hide the dsa_8021q VLANs from the user. */
Vladimir Oltean7f149372020-05-12 20:20:27 +03001520 if (priv->vlan_state == SJA1105_VLAN_UNAWARE)
Vladimir Oltean6d7c7d92019-08-05 01:38:44 +03001521 l2_lookup.vlanid = 0;
Vladimir Oltean17ae6552019-06-26 02:39:40 +03001522 cb(macaddr, l2_lookup.vlanid, l2_lookup.lockeds, data);
Vladimir Oltean291d1e72019-05-02 23:23:31 +03001523 }
1524 return 0;
1525}
1526
1527/* This callback needs to be present */
1528static int sja1105_mdb_prepare(struct dsa_switch *ds, int port,
1529 const struct switchdev_obj_port_mdb *mdb)
1530{
1531 return 0;
1532}
1533
1534static void sja1105_mdb_add(struct dsa_switch *ds, int port,
1535 const struct switchdev_obj_port_mdb *mdb)
1536{
1537 sja1105_fdb_add(ds, port, mdb->addr, mdb->vid);
1538}
1539
1540static int sja1105_mdb_del(struct dsa_switch *ds, int port,
1541 const struct switchdev_obj_port_mdb *mdb)
1542{
1543 return sja1105_fdb_del(ds, port, mdb->addr, mdb->vid);
1544}
1545
Vladimir Oltean8aa9ebc2019-05-02 23:23:30 +03001546static int sja1105_bridge_member(struct dsa_switch *ds, int port,
1547 struct net_device *br, bool member)
1548{
1549 struct sja1105_l2_forwarding_entry *l2_fwd;
1550 struct sja1105_private *priv = ds->priv;
1551 int i, rc;
1552
1553 l2_fwd = priv->static_config.tables[BLK_IDX_L2_FORWARDING].entries;
1554
1555 for (i = 0; i < SJA1105_NUM_PORTS; i++) {
1556 /* Add this port to the forwarding matrix of the
1557 * other ports in the same bridge, and viceversa.
1558 */
1559 if (!dsa_is_user_port(ds, i))
1560 continue;
1561 /* For the ports already under the bridge, only one thing needs
1562 * to be done, and that is to add this port to their
1563 * reachability domain. So we can perform the SPI write for
1564 * them immediately. However, for this port itself (the one
1565 * that is new to the bridge), we need to add all other ports
1566 * to its reachability domain. So we do that incrementally in
1567 * this loop, and perform the SPI write only at the end, once
1568 * the domain contains all other bridge ports.
1569 */
1570 if (i == port)
1571 continue;
1572 if (dsa_to_port(ds, i)->bridge_dev != br)
1573 continue;
1574 sja1105_port_allow_traffic(l2_fwd, i, port, member);
1575 sja1105_port_allow_traffic(l2_fwd, port, i, member);
1576
1577 rc = sja1105_dynamic_config_write(priv, BLK_IDX_L2_FORWARDING,
1578 i, &l2_fwd[i], true);
1579 if (rc < 0)
1580 return rc;
1581 }
1582
1583 return sja1105_dynamic_config_write(priv, BLK_IDX_L2_FORWARDING,
1584 port, &l2_fwd[port], true);
1585}
1586
Vladimir Oltean640f7632019-05-05 13:19:28 +03001587static void sja1105_bridge_stp_state_set(struct dsa_switch *ds, int port,
1588 u8 state)
1589{
1590 struct sja1105_private *priv = ds->priv;
1591 struct sja1105_mac_config_entry *mac;
1592
1593 mac = priv->static_config.tables[BLK_IDX_MAC_CONFIG].entries;
1594
1595 switch (state) {
1596 case BR_STATE_DISABLED:
1597 case BR_STATE_BLOCKING:
1598 /* From UM10944 description of DRPDTAG (why put this there?):
1599 * "Management traffic flows to the port regardless of the state
1600 * of the INGRESS flag". So BPDUs are still be allowed to pass.
1601 * At the moment no difference between DISABLED and BLOCKING.
1602 */
1603 mac[port].ingress = false;
1604 mac[port].egress = false;
1605 mac[port].dyn_learn = false;
1606 break;
1607 case BR_STATE_LISTENING:
1608 mac[port].ingress = true;
1609 mac[port].egress = false;
1610 mac[port].dyn_learn = false;
1611 break;
1612 case BR_STATE_LEARNING:
1613 mac[port].ingress = true;
1614 mac[port].egress = false;
1615 mac[port].dyn_learn = true;
1616 break;
1617 case BR_STATE_FORWARDING:
1618 mac[port].ingress = true;
1619 mac[port].egress = true;
1620 mac[port].dyn_learn = true;
1621 break;
1622 default:
1623 dev_err(ds->dev, "invalid STP state: %d\n", state);
1624 return;
1625 }
1626
1627 sja1105_dynamic_config_write(priv, BLK_IDX_MAC_CONFIG, port,
1628 &mac[port], true);
1629}
1630
Vladimir Oltean8aa9ebc2019-05-02 23:23:30 +03001631static int sja1105_bridge_join(struct dsa_switch *ds, int port,
1632 struct net_device *br)
1633{
1634 return sja1105_bridge_member(ds, port, br, true);
1635}
1636
1637static void sja1105_bridge_leave(struct dsa_switch *ds, int port,
1638 struct net_device *br)
1639{
1640 sja1105_bridge_member(ds, port, br, false);
1641}
1642
Vladimir Oltean2eea1fa2019-11-12 23:22:00 +02001643static const char * const sja1105_reset_reasons[] = {
1644 [SJA1105_VLAN_FILTERING] = "VLAN filtering",
1645 [SJA1105_RX_HWTSTAMPING] = "RX timestamping",
1646 [SJA1105_AGEING_TIME] = "Ageing time",
1647 [SJA1105_SCHEDULING] = "Time-aware scheduling",
Vladimir Olteanc279c722020-03-27 21:55:45 +02001648 [SJA1105_BEST_EFFORT_POLICING] = "Best-effort policing",
Vladimir Olteandfacc5a2020-05-05 22:20:55 +03001649 [SJA1105_VIRTUAL_LINKS] = "Virtual links",
Vladimir Oltean2eea1fa2019-11-12 23:22:00 +02001650};
1651
Vladimir Oltean6666ceb2019-05-02 23:23:34 +03001652/* For situations where we need to change a setting at runtime that is only
1653 * available through the static configuration, resetting the switch in order
1654 * to upload the new static config is unavoidable. Back up the settings we
1655 * modify at runtime (currently only MAC) and restore them after uploading,
1656 * such that this operation is relatively seamless.
1657 */
Vladimir Oltean2eea1fa2019-11-12 23:22:00 +02001658int sja1105_static_config_reload(struct sja1105_private *priv,
1659 enum sja1105_reset_reason reason)
Vladimir Oltean6666ceb2019-05-02 23:23:34 +03001660{
Vladimir Oltean6cf99c12019-11-09 13:32:23 +02001661 struct ptp_system_timestamp ptp_sts_before;
1662 struct ptp_system_timestamp ptp_sts_after;
Vladimir Oltean6666ceb2019-05-02 23:23:34 +03001663 struct sja1105_mac_config_entry *mac;
1664 int speed_mbps[SJA1105_NUM_PORTS];
Vladimir Oltean6cf99c12019-11-09 13:32:23 +02001665 struct dsa_switch *ds = priv->ds;
1666 s64 t1, t2, t3, t4;
1667 s64 t12, t34;
Vladimir Olteanffe10e62020-03-20 13:29:37 +02001668 u16 bmcr = 0;
Vladimir Oltean6666ceb2019-05-02 23:23:34 +03001669 int rc, i;
Vladimir Oltean6cf99c12019-11-09 13:32:23 +02001670 s64 now;
Vladimir Oltean6666ceb2019-05-02 23:23:34 +03001671
Vladimir Olteanaf580ae2019-11-09 13:32:24 +02001672 mutex_lock(&priv->mgmt_lock);
1673
Vladimir Oltean6666ceb2019-05-02 23:23:34 +03001674 mac = priv->static_config.tables[BLK_IDX_MAC_CONFIG].entries;
1675
Vladimir Oltean8400cff2019-06-08 16:03:44 +03001676 /* Back up the dynamic link speed changed by sja1105_adjust_port_config
1677 * in order to temporarily restore it to SJA1105_SPEED_AUTO - which the
1678 * switch wants to see in the static config in order to allow us to
1679 * change it through the dynamic interface later.
Vladimir Oltean6666ceb2019-05-02 23:23:34 +03001680 */
1681 for (i = 0; i < SJA1105_NUM_PORTS; i++) {
1682 speed_mbps[i] = sja1105_speed[mac[i].speed];
1683 mac[i].speed = SJA1105_SPEED_AUTO;
1684 }
1685
Vladimir Olteanffe10e62020-03-20 13:29:37 +02001686 if (sja1105_supports_sgmii(priv, SJA1105_SGMII_PORT))
1687 bmcr = sja1105_sgmii_read(priv, MII_BMCR);
1688
Vladimir Oltean6cf99c12019-11-09 13:32:23 +02001689 /* No PTP operations can run right now */
1690 mutex_lock(&priv->ptp_data.lock);
1691
1692 rc = __sja1105_ptp_gettimex(ds, &now, &ptp_sts_before);
1693 if (rc < 0)
1694 goto out_unlock_ptp;
1695
Vladimir Oltean6666ceb2019-05-02 23:23:34 +03001696 /* Reset switch and send updated static configuration */
1697 rc = sja1105_static_config_upload(priv);
1698 if (rc < 0)
Vladimir Oltean6cf99c12019-11-09 13:32:23 +02001699 goto out_unlock_ptp;
1700
1701 rc = __sja1105_ptp_settime(ds, 0, &ptp_sts_after);
1702 if (rc < 0)
1703 goto out_unlock_ptp;
1704
1705 t1 = timespec64_to_ns(&ptp_sts_before.pre_ts);
1706 t2 = timespec64_to_ns(&ptp_sts_before.post_ts);
1707 t3 = timespec64_to_ns(&ptp_sts_after.pre_ts);
1708 t4 = timespec64_to_ns(&ptp_sts_after.post_ts);
1709 /* Mid point, corresponds to pre-reset PTPCLKVAL */
1710 t12 = t1 + (t2 - t1) / 2;
1711 /* Mid point, corresponds to post-reset PTPCLKVAL, aka 0 */
1712 t34 = t3 + (t4 - t3) / 2;
1713 /* Advance PTPCLKVAL by the time it took since its readout */
1714 now += (t34 - t12);
1715
1716 __sja1105_ptp_adjtime(ds, now);
1717
1718out_unlock_ptp:
1719 mutex_unlock(&priv->ptp_data.lock);
Vladimir Oltean6666ceb2019-05-02 23:23:34 +03001720
Vladimir Oltean2eea1fa2019-11-12 23:22:00 +02001721 dev_info(priv->ds->dev,
1722 "Reset switch and programmed static config. Reason: %s\n",
1723 sja1105_reset_reasons[reason]);
1724
Vladimir Oltean6666ceb2019-05-02 23:23:34 +03001725 /* Configure the CGU (PLLs) for MII and RMII PHYs.
1726 * For these interfaces there is no dynamic configuration
1727 * needed, since PLLs have same settings at all speeds.
1728 */
1729 rc = sja1105_clocking_setup(priv);
1730 if (rc < 0)
1731 goto out;
1732
1733 for (i = 0; i < SJA1105_NUM_PORTS; i++) {
Vladimir Oltean8400cff2019-06-08 16:03:44 +03001734 rc = sja1105_adjust_port_config(priv, i, speed_mbps[i]);
Vladimir Oltean6666ceb2019-05-02 23:23:34 +03001735 if (rc < 0)
1736 goto out;
1737 }
Vladimir Olteanffe10e62020-03-20 13:29:37 +02001738
1739 if (sja1105_supports_sgmii(priv, SJA1105_SGMII_PORT)) {
1740 bool an_enabled = !!(bmcr & BMCR_ANENABLE);
1741
1742 sja1105_sgmii_pcs_config(priv, an_enabled, false);
1743
1744 if (!an_enabled) {
1745 int speed = SPEED_UNKNOWN;
1746
1747 if (bmcr & BMCR_SPEED1000)
1748 speed = SPEED_1000;
1749 else if (bmcr & BMCR_SPEED100)
1750 speed = SPEED_100;
1751 else if (bmcr & BMCR_SPEED10)
1752 speed = SPEED_10;
1753
1754 sja1105_sgmii_pcs_force_speed(priv, speed);
1755 }
1756 }
Vladimir Oltean6666ceb2019-05-02 23:23:34 +03001757out:
Vladimir Olteanaf580ae2019-11-09 13:32:24 +02001758 mutex_unlock(&priv->mgmt_lock);
1759
Vladimir Oltean6666ceb2019-05-02 23:23:34 +03001760 return rc;
1761}
1762
Vladimir Oltean6666ceb2019-05-02 23:23:34 +03001763static int sja1105_pvid_apply(struct sja1105_private *priv, int port, u16 pvid)
1764{
1765 struct sja1105_mac_config_entry *mac;
1766
1767 mac = priv->static_config.tables[BLK_IDX_MAC_CONFIG].entries;
1768
1769 mac[port].vlanid = pvid;
1770
1771 return sja1105_dynamic_config_write(priv, BLK_IDX_MAC_CONFIG, port,
1772 &mac[port], true);
1773}
1774
Vladimir Olteanac02a452020-05-10 19:37:43 +03001775static int sja1105_crosschip_bridge_join(struct dsa_switch *ds,
1776 int tree_index, int sw_index,
1777 int other_port, struct net_device *br)
1778{
1779 struct dsa_switch *other_ds = dsa_switch_find(tree_index, sw_index);
1780 struct sja1105_private *other_priv = other_ds->priv;
1781 struct sja1105_private *priv = ds->priv;
1782 int port, rc;
1783
1784 if (other_ds->ops != &sja1105_switch_ops)
1785 return 0;
1786
1787 for (port = 0; port < ds->num_ports; port++) {
1788 if (!dsa_is_user_port(ds, port))
1789 continue;
1790 if (dsa_to_port(ds, port)->bridge_dev != br)
1791 continue;
1792
Vladimir Oltean60b33ae2020-05-12 20:20:28 +03001793 other_priv->expect_dsa_8021q = true;
Vladimir Olteanac02a452020-05-10 19:37:43 +03001794 rc = dsa_8021q_crosschip_bridge_join(ds, port, other_ds,
Vladimir Olteanec5ae612020-05-12 20:20:29 +03001795 other_port,
Vladimir Olteanac02a452020-05-10 19:37:43 +03001796 &priv->crosschip_links);
Vladimir Oltean60b33ae2020-05-12 20:20:28 +03001797 other_priv->expect_dsa_8021q = false;
Vladimir Olteanac02a452020-05-10 19:37:43 +03001798 if (rc)
1799 return rc;
1800
Vladimir Oltean60b33ae2020-05-12 20:20:28 +03001801 priv->expect_dsa_8021q = true;
Vladimir Olteanac02a452020-05-10 19:37:43 +03001802 rc = dsa_8021q_crosschip_bridge_join(other_ds, other_port, ds,
Vladimir Olteanec5ae612020-05-12 20:20:29 +03001803 port,
Vladimir Olteanac02a452020-05-10 19:37:43 +03001804 &other_priv->crosschip_links);
Vladimir Oltean60b33ae2020-05-12 20:20:28 +03001805 priv->expect_dsa_8021q = false;
Vladimir Olteanac02a452020-05-10 19:37:43 +03001806 if (rc)
1807 return rc;
1808 }
1809
1810 return 0;
1811}
1812
1813static void sja1105_crosschip_bridge_leave(struct dsa_switch *ds,
1814 int tree_index, int sw_index,
1815 int other_port,
1816 struct net_device *br)
1817{
1818 struct dsa_switch *other_ds = dsa_switch_find(tree_index, sw_index);
1819 struct sja1105_private *other_priv = other_ds->priv;
1820 struct sja1105_private *priv = ds->priv;
1821 int port;
1822
1823 if (other_ds->ops != &sja1105_switch_ops)
1824 return;
1825
1826 for (port = 0; port < ds->num_ports; port++) {
1827 if (!dsa_is_user_port(ds, port))
1828 continue;
1829 if (dsa_to_port(ds, port)->bridge_dev != br)
1830 continue;
1831
Vladimir Oltean60b33ae2020-05-12 20:20:28 +03001832 other_priv->expect_dsa_8021q = true;
Vladimir Olteanac02a452020-05-10 19:37:43 +03001833 dsa_8021q_crosschip_bridge_leave(ds, port, other_ds, other_port,
Vladimir Olteanec5ae612020-05-12 20:20:29 +03001834 &priv->crosschip_links);
Vladimir Oltean60b33ae2020-05-12 20:20:28 +03001835 other_priv->expect_dsa_8021q = false;
Vladimir Olteanac02a452020-05-10 19:37:43 +03001836
Vladimir Oltean60b33ae2020-05-12 20:20:28 +03001837 priv->expect_dsa_8021q = true;
Vladimir Olteanec5ae612020-05-12 20:20:29 +03001838 dsa_8021q_crosschip_bridge_leave(other_ds, other_port, ds, port,
Vladimir Olteanac02a452020-05-10 19:37:43 +03001839 &other_priv->crosschip_links);
Vladimir Oltean60b33ae2020-05-12 20:20:28 +03001840 priv->expect_dsa_8021q = false;
Vladimir Olteanac02a452020-05-10 19:37:43 +03001841 }
1842}
1843
Vladimir Oltean227d07a2019-05-05 13:19:27 +03001844static int sja1105_setup_8021q_tagging(struct dsa_switch *ds, bool enabled)
1845{
Vladimir Oltean60b33ae2020-05-12 20:20:28 +03001846 struct sja1105_private *priv = ds->priv;
Vladimir Oltean227d07a2019-05-05 13:19:27 +03001847 int rc, i;
1848
1849 for (i = 0; i < SJA1105_NUM_PORTS; i++) {
Vladimir Oltean60b33ae2020-05-12 20:20:28 +03001850 priv->expect_dsa_8021q = true;
Vladimir Oltean227d07a2019-05-05 13:19:27 +03001851 rc = dsa_port_setup_8021q_tagging(ds, i, enabled);
Vladimir Oltean60b33ae2020-05-12 20:20:28 +03001852 priv->expect_dsa_8021q = false;
Vladimir Oltean227d07a2019-05-05 13:19:27 +03001853 if (rc < 0) {
1854 dev_err(ds->dev, "Failed to setup VLAN tagging for port %d: %d\n",
1855 i, rc);
1856 return rc;
1857 }
1858 }
Vladimir Olteanac02a452020-05-10 19:37:43 +03001859
Vladimir Oltean227d07a2019-05-05 13:19:27 +03001860 dev_info(ds->dev, "%s switch tagging\n",
1861 enabled ? "Enabled" : "Disabled");
1862 return 0;
1863}
1864
Vladimir Oltean8aa9ebc2019-05-02 23:23:30 +03001865static enum dsa_tag_protocol
Florian Fainelli4d776482020-01-07 21:06:05 -08001866sja1105_get_tag_protocol(struct dsa_switch *ds, int port,
1867 enum dsa_tag_protocol mp)
Vladimir Oltean8aa9ebc2019-05-02 23:23:30 +03001868{
Vladimir Oltean227d07a2019-05-05 13:19:27 +03001869 return DSA_TAG_PROTO_SJA1105;
Vladimir Oltean8aa9ebc2019-05-02 23:23:30 +03001870}
1871
Vladimir Olteanec5ae612020-05-12 20:20:29 +03001872static int sja1105_is_vlan_configured(struct sja1105_private *priv, u16 vid)
1873{
1874 struct sja1105_vlan_lookup_entry *vlan;
1875 int count, i;
1876
1877 vlan = priv->static_config.tables[BLK_IDX_VLAN_LOOKUP].entries;
1878 count = priv->static_config.tables[BLK_IDX_VLAN_LOOKUP].entry_count;
1879
1880 for (i = 0; i < count; i++)
1881 if (vlan[i].vlanid == vid)
1882 return i;
1883
1884 /* Return an invalid entry index if not found */
1885 return -1;
1886}
1887
1888static int sja1105_commit_vlans(struct sja1105_private *priv,
1889 struct sja1105_vlan_lookup_entry *new_vlan)
1890{
1891 struct sja1105_vlan_lookup_entry *vlan;
1892 struct sja1105_table *table;
1893 int num_vlans = 0;
1894 int rc, i, k = 0;
1895
1896 /* VLAN table */
1897 table = &priv->static_config.tables[BLK_IDX_VLAN_LOOKUP];
1898 vlan = table->entries;
1899
1900 for (i = 0; i < VLAN_N_VID; i++) {
1901 int match = sja1105_is_vlan_configured(priv, i);
1902
1903 if (new_vlan[i].vlanid != VLAN_N_VID)
1904 num_vlans++;
1905
1906 if (new_vlan[i].vlanid == VLAN_N_VID && match >= 0) {
1907 /* Was there before, no longer is. Delete */
1908 dev_dbg(priv->ds->dev, "Deleting VLAN %d\n", i);
1909 rc = sja1105_dynamic_config_write(priv,
1910 BLK_IDX_VLAN_LOOKUP,
1911 i, &vlan[match], false);
1912 if (rc < 0)
1913 return rc;
1914 } else if (new_vlan[i].vlanid != VLAN_N_VID) {
1915 /* Nothing changed, don't do anything */
1916 if (match >= 0 &&
1917 vlan[match].vlanid == new_vlan[i].vlanid &&
1918 vlan[match].tag_port == new_vlan[i].tag_port &&
1919 vlan[match].vlan_bc == new_vlan[i].vlan_bc &&
1920 vlan[match].vmemb_port == new_vlan[i].vmemb_port)
1921 continue;
1922 /* Update entry */
1923 dev_dbg(priv->ds->dev, "Updating VLAN %d\n", i);
1924 rc = sja1105_dynamic_config_write(priv,
1925 BLK_IDX_VLAN_LOOKUP,
1926 i, &new_vlan[i],
1927 true);
1928 if (rc < 0)
1929 return rc;
1930 }
1931 }
1932
1933 if (table->entry_count)
1934 kfree(table->entries);
1935
1936 table->entries = kcalloc(num_vlans, table->ops->unpacked_entry_size,
1937 GFP_KERNEL);
1938 if (!table->entries)
1939 return -ENOMEM;
1940
1941 table->entry_count = num_vlans;
1942 vlan = table->entries;
1943
1944 for (i = 0; i < VLAN_N_VID; i++) {
1945 if (new_vlan[i].vlanid == VLAN_N_VID)
1946 continue;
1947 vlan[k++] = new_vlan[i];
1948 }
1949
1950 return 0;
1951}
1952
1953struct sja1105_crosschip_switch {
1954 struct list_head list;
1955 struct dsa_switch *other_ds;
1956};
1957
1958static int sja1105_commit_pvid(struct sja1105_private *priv)
1959{
1960 struct sja1105_bridge_vlan *v;
1961 struct list_head *vlan_list;
1962 int rc = 0;
1963
1964 if (priv->vlan_state == SJA1105_VLAN_FILTERING_FULL)
1965 vlan_list = &priv->bridge_vlans;
1966 else
1967 vlan_list = &priv->dsa_8021q_vlans;
1968
1969 list_for_each_entry(v, vlan_list, list) {
1970 if (v->pvid) {
1971 rc = sja1105_pvid_apply(priv, v->port, v->vid);
1972 if (rc)
1973 break;
1974 }
1975 }
1976
1977 return rc;
1978}
1979
1980static int
1981sja1105_build_bridge_vlans(struct sja1105_private *priv,
1982 struct sja1105_vlan_lookup_entry *new_vlan)
1983{
1984 struct sja1105_bridge_vlan *v;
1985
1986 if (priv->vlan_state == SJA1105_VLAN_UNAWARE)
1987 return 0;
1988
1989 list_for_each_entry(v, &priv->bridge_vlans, list) {
1990 int match = v->vid;
1991
1992 new_vlan[match].vlanid = v->vid;
1993 new_vlan[match].vmemb_port |= BIT(v->port);
1994 new_vlan[match].vlan_bc |= BIT(v->port);
1995 if (!v->untagged)
1996 new_vlan[match].tag_port |= BIT(v->port);
1997 }
1998
1999 return 0;
2000}
2001
2002static int
2003sja1105_build_dsa_8021q_vlans(struct sja1105_private *priv,
2004 struct sja1105_vlan_lookup_entry *new_vlan)
2005{
2006 struct sja1105_bridge_vlan *v;
2007
2008 if (priv->vlan_state == SJA1105_VLAN_FILTERING_FULL)
2009 return 0;
2010
2011 list_for_each_entry(v, &priv->dsa_8021q_vlans, list) {
2012 int match = v->vid;
2013
2014 new_vlan[match].vlanid = v->vid;
2015 new_vlan[match].vmemb_port |= BIT(v->port);
2016 new_vlan[match].vlan_bc |= BIT(v->port);
2017 if (!v->untagged)
2018 new_vlan[match].tag_port |= BIT(v->port);
2019 }
2020
2021 return 0;
2022}
2023
2024static int sja1105_build_vlan_table(struct sja1105_private *priv, bool notify);
2025
2026static int sja1105_notify_crosschip_switches(struct sja1105_private *priv)
2027{
2028 struct sja1105_crosschip_switch *s, *pos;
2029 struct list_head crosschip_switches;
2030 struct dsa_8021q_crosschip_link *c;
2031 int rc = 0;
2032
2033 INIT_LIST_HEAD(&crosschip_switches);
2034
2035 list_for_each_entry(c, &priv->crosschip_links, list) {
2036 bool already_added = false;
2037
2038 list_for_each_entry(s, &crosschip_switches, list) {
2039 if (s->other_ds == c->other_ds) {
2040 already_added = true;
2041 break;
2042 }
2043 }
2044
2045 if (already_added)
2046 continue;
2047
2048 s = kzalloc(sizeof(*s), GFP_KERNEL);
2049 if (!s) {
2050 dev_err(priv->ds->dev, "Failed to allocate memory\n");
2051 rc = -ENOMEM;
2052 goto out;
2053 }
2054 s->other_ds = c->other_ds;
2055 list_add(&s->list, &crosschip_switches);
2056 }
2057
2058 list_for_each_entry(s, &crosschip_switches, list) {
2059 struct sja1105_private *other_priv = s->other_ds->priv;
2060
2061 rc = sja1105_build_vlan_table(other_priv, false);
2062 if (rc)
2063 goto out;
2064 }
2065
2066out:
2067 list_for_each_entry_safe(s, pos, &crosschip_switches, list) {
2068 list_del(&s->list);
2069 kfree(s);
2070 }
2071
2072 return rc;
2073}
2074
2075static int sja1105_build_vlan_table(struct sja1105_private *priv, bool notify)
2076{
2077 struct sja1105_vlan_lookup_entry *new_vlan;
2078 struct sja1105_table *table;
2079 int rc;
2080 int i;
2081
2082 table = &priv->static_config.tables[BLK_IDX_VLAN_LOOKUP];
2083 new_vlan = kcalloc(VLAN_N_VID,
2084 table->ops->unpacked_entry_size, GFP_KERNEL);
2085 if (!new_vlan)
2086 return -ENOMEM;
2087
2088 for (i = 0; i < VLAN_N_VID; i++)
2089 new_vlan[i].vlanid = VLAN_N_VID;
2090
2091 /* Bridge VLANs */
2092 rc = sja1105_build_bridge_vlans(priv, new_vlan);
2093 if (rc)
2094 goto out;
2095
2096 /* VLANs necessary for dsa_8021q operation, given to us by tag_8021q.c:
2097 * - RX VLANs
2098 * - TX VLANs
2099 * - Crosschip links
2100 */
2101 rc = sja1105_build_dsa_8021q_vlans(priv, new_vlan);
2102 if (rc)
2103 goto out;
2104
2105 rc = sja1105_commit_vlans(priv, new_vlan);
2106 if (rc)
2107 goto out;
2108
2109 rc = sja1105_commit_pvid(priv);
2110 if (rc)
2111 goto out;
2112
2113 if (notify) {
2114 rc = sja1105_notify_crosschip_switches(priv);
2115 if (rc)
2116 goto out;
2117 }
2118
2119out:
2120 kfree(new_vlan);
2121
2122 return rc;
2123}
2124
2125/* Select the list to which we should add this VLAN. */
2126static struct list_head *sja1105_classify_vlan(struct sja1105_private *priv,
2127 u16 vid)
2128{
2129 if (priv->expect_dsa_8021q)
2130 return &priv->dsa_8021q_vlans;
2131
2132 return &priv->bridge_vlans;
2133}
2134
Vladimir Oltean6666ceb2019-05-02 23:23:34 +03002135static int sja1105_vlan_prepare(struct dsa_switch *ds, int port,
2136 const struct switchdev_obj_port_vlan *vlan)
2137{
Vladimir Oltean60b33ae2020-05-12 20:20:28 +03002138 struct sja1105_private *priv = ds->priv;
2139 u16 vid;
2140
2141 if (priv->vlan_state == SJA1105_VLAN_FILTERING_FULL)
2142 return 0;
2143
2144 /* If the user wants best-effort VLAN filtering (aka vlan_filtering
2145 * bridge plus tagging), be sure to at least deny alterations to the
2146 * configuration done by dsa_8021q.
2147 */
2148 for (vid = vlan->vid_begin; vid <= vlan->vid_end; vid++) {
2149 if (!priv->expect_dsa_8021q && vid_is_dsa_8021q(vid)) {
2150 dev_err(ds->dev, "Range 1024-3071 reserved for dsa_8021q operation\n");
2151 return -EBUSY;
2152 }
2153 }
2154
Vladimir Oltean6666ceb2019-05-02 23:23:34 +03002155 return 0;
2156}
2157
Vladimir Oltean070ca3b2019-06-08 15:04:30 +03002158/* The TPID setting belongs to the General Parameters table,
2159 * which can only be partially reconfigured at runtime (and not the TPID).
2160 * So a switch reset is required.
2161 */
Vladimir Oltean6666ceb2019-05-02 23:23:34 +03002162static int sja1105_vlan_filtering(struct dsa_switch *ds, int port, bool enabled)
2163{
Vladimir Oltean6d7c7d92019-08-05 01:38:44 +03002164 struct sja1105_l2_lookup_params_entry *l2_lookup_params;
Vladimir Oltean070ca3b2019-06-08 15:04:30 +03002165 struct sja1105_general_params_entry *general_params;
Vladimir Oltean6666ceb2019-05-02 23:23:34 +03002166 struct sja1105_private *priv = ds->priv;
Vladimir Oltean7f149372020-05-12 20:20:27 +03002167 enum sja1105_vlan_state state;
Vladimir Oltean070ca3b2019-06-08 15:04:30 +03002168 struct sja1105_table *table;
Vladimir Olteandfacc5a2020-05-05 22:20:55 +03002169 struct sja1105_rule *rule;
Vladimir Oltean2cafa722020-05-12 20:20:35 +03002170 bool want_tagging;
Vladimir Oltean070ca3b2019-06-08 15:04:30 +03002171 u16 tpid, tpid2;
Vladimir Oltean6666ceb2019-05-02 23:23:34 +03002172 int rc;
2173
Vladimir Olteandfacc5a2020-05-05 22:20:55 +03002174 list_for_each_entry(rule, &priv->flow_block.rules, list) {
2175 if (rule->type == SJA1105_RULE_VL) {
2176 dev_err(ds->dev,
2177 "Cannot change VLAN filtering state while VL rules are active\n");
2178 return -EBUSY;
2179 }
2180 }
2181
Vladimir Oltean070ca3b2019-06-08 15:04:30 +03002182 if (enabled) {
Vladimir Oltean6666ceb2019-05-02 23:23:34 +03002183 /* Enable VLAN filtering. */
Vladimir Oltean54fa49e2019-12-27 03:11:13 +02002184 tpid = ETH_P_8021Q;
2185 tpid2 = ETH_P_8021AD;
Vladimir Oltean070ca3b2019-06-08 15:04:30 +03002186 } else {
Vladimir Oltean6666ceb2019-05-02 23:23:34 +03002187 /* Disable VLAN filtering. */
Vladimir Oltean070ca3b2019-06-08 15:04:30 +03002188 tpid = ETH_P_SJA1105;
2189 tpid2 = ETH_P_SJA1105;
2190 }
2191
Vladimir Oltean38b5bee2020-05-12 20:20:32 +03002192 for (port = 0; port < ds->num_ports; port++) {
2193 struct sja1105_port *sp = &priv->ports[port];
2194
2195 if (enabled)
2196 sp->xmit_tpid = priv->info->qinq_tpid;
2197 else
2198 sp->xmit_tpid = ETH_P_SJA1105;
2199 }
2200
Vladimir Oltean7f149372020-05-12 20:20:27 +03002201 if (!enabled)
2202 state = SJA1105_VLAN_UNAWARE;
Vladimir Oltean2cafa722020-05-12 20:20:35 +03002203 else if (priv->best_effort_vlan_filtering)
2204 state = SJA1105_VLAN_BEST_EFFORT;
Vladimir Oltean7f149372020-05-12 20:20:27 +03002205 else
2206 state = SJA1105_VLAN_FILTERING_FULL;
2207
Vladimir Olteancfa36b12020-05-12 20:20:31 +03002208 if (priv->vlan_state == state)
2209 return 0;
2210
Vladimir Oltean7f149372020-05-12 20:20:27 +03002211 priv->vlan_state = state;
Vladimir Oltean2cafa722020-05-12 20:20:35 +03002212 want_tagging = (state == SJA1105_VLAN_UNAWARE ||
2213 state == SJA1105_VLAN_BEST_EFFORT);
Vladimir Oltean7f149372020-05-12 20:20:27 +03002214
Vladimir Oltean070ca3b2019-06-08 15:04:30 +03002215 table = &priv->static_config.tables[BLK_IDX_GENERAL_PARAMS];
2216 general_params = table->entries;
Vladimir Olteanf9a1a762019-06-08 15:04:31 +03002217 /* EtherType used to identify inner tagged (C-tag) VLAN traffic */
Vladimir Oltean54fa49e2019-12-27 03:11:13 +02002218 general_params->tpid = tpid;
2219 /* EtherType used to identify outer tagged (S-tag) VLAN traffic */
Vladimir Oltean070ca3b2019-06-08 15:04:30 +03002220 general_params->tpid2 = tpid2;
Vladimir Oltean42824462019-06-08 15:04:32 +03002221 /* When VLAN filtering is on, we need to at least be able to
2222 * decode management traffic through the "backup plan".
2223 */
2224 general_params->incl_srcpt1 = enabled;
2225 general_params->incl_srcpt0 = enabled;
Vladimir Oltean070ca3b2019-06-08 15:04:30 +03002226
Vladimir Oltean2cafa722020-05-12 20:20:35 +03002227 want_tagging = priv->best_effort_vlan_filtering || !enabled;
2228
Vladimir Oltean6d7c7d92019-08-05 01:38:44 +03002229 /* VLAN filtering => independent VLAN learning.
Vladimir Oltean2cafa722020-05-12 20:20:35 +03002230 * No VLAN filtering (or best effort) => shared VLAN learning.
Vladimir Oltean6d7c7d92019-08-05 01:38:44 +03002231 *
2232 * In shared VLAN learning mode, untagged traffic still gets
2233 * pvid-tagged, and the FDB table gets populated with entries
2234 * containing the "real" (pvid or from VLAN tag) VLAN ID.
2235 * However the switch performs a masked L2 lookup in the FDB,
2236 * effectively only looking up a frame's DMAC (and not VID) for the
2237 * forwarding decision.
2238 *
2239 * This is extremely convenient for us, because in modes with
2240 * vlan_filtering=0, dsa_8021q actually installs unique pvid's into
2241 * each front panel port. This is good for identification but breaks
2242 * learning badly - the VID of the learnt FDB entry is unique, aka
2243 * no frames coming from any other port are going to have it. So
2244 * for forwarding purposes, this is as though learning was broken
2245 * (all frames get flooded).
2246 */
2247 table = &priv->static_config.tables[BLK_IDX_L2_LOOKUP_PARAMS];
2248 l2_lookup_params = table->entries;
Vladimir Oltean2cafa722020-05-12 20:20:35 +03002249 l2_lookup_params->shared_learn = want_tagging;
Vladimir Oltean6d7c7d92019-08-05 01:38:44 +03002250
Vladimir Olteanaaa270c2020-05-12 20:20:37 +03002251 sja1105_frame_memory_partitioning(priv);
2252
Vladimir Oltean2eea1fa2019-11-12 23:22:00 +02002253 rc = sja1105_static_config_reload(priv, SJA1105_VLAN_FILTERING);
Vladimir Oltean6666ceb2019-05-02 23:23:34 +03002254 if (rc)
2255 dev_err(ds->dev, "Failed to change VLAN Ethertype\n");
2256
Vladimir Oltean227d07a2019-05-05 13:19:27 +03002257 /* Switch port identification based on 802.1Q is only passable
2258 * if we are not under a vlan_filtering bridge. So make sure
Vladimir Oltean2cafa722020-05-12 20:20:35 +03002259 * the two configurations are mutually exclusive (of course, the
2260 * user may know better, i.e. best_effort_vlan_filtering).
Vladimir Oltean227d07a2019-05-05 13:19:27 +03002261 */
Vladimir Oltean2cafa722020-05-12 20:20:35 +03002262 return sja1105_setup_8021q_tagging(ds, want_tagging);
Vladimir Oltean6666ceb2019-05-02 23:23:34 +03002263}
2264
2265static void sja1105_vlan_add(struct dsa_switch *ds, int port,
2266 const struct switchdev_obj_port_vlan *vlan)
2267{
2268 struct sja1105_private *priv = ds->priv;
Vladimir Olteanec5ae612020-05-12 20:20:29 +03002269 bool vlan_table_changed = false;
Vladimir Oltean6666ceb2019-05-02 23:23:34 +03002270 u16 vid;
2271 int rc;
2272
2273 for (vid = vlan->vid_begin; vid <= vlan->vid_end; vid++) {
Vladimir Olteanec5ae612020-05-12 20:20:29 +03002274 bool untagged = vlan->flags & BRIDGE_VLAN_INFO_UNTAGGED;
2275 bool pvid = vlan->flags & BRIDGE_VLAN_INFO_PVID;
2276 struct sja1105_bridge_vlan *v;
2277 struct list_head *vlan_list;
2278 bool already_added = false;
2279
2280 vlan_list = sja1105_classify_vlan(priv, vid);
2281
2282 list_for_each_entry(v, vlan_list, list) {
2283 if (v->port == port && v->vid == vid &&
2284 v->untagged == untagged && v->pvid == pvid) {
2285 already_added = true;
2286 break;
Vladimir Oltean6666ceb2019-05-02 23:23:34 +03002287 }
2288 }
Vladimir Olteanec5ae612020-05-12 20:20:29 +03002289
2290 if (already_added)
2291 continue;
2292
2293 v = kzalloc(sizeof(*v), GFP_KERNEL);
2294 if (!v) {
2295 dev_err(ds->dev, "Out of memory while storing VLAN\n");
2296 return;
2297 }
2298
2299 v->port = port;
2300 v->vid = vid;
2301 v->untagged = untagged;
2302 v->pvid = pvid;
2303 list_add(&v->list, vlan_list);
2304
2305 vlan_table_changed = true;
Vladimir Oltean6666ceb2019-05-02 23:23:34 +03002306 }
Vladimir Olteanec5ae612020-05-12 20:20:29 +03002307
2308 if (!vlan_table_changed)
2309 return;
2310
2311 rc = sja1105_build_vlan_table(priv, true);
2312 if (rc)
2313 dev_err(ds->dev, "Failed to build VLAN table: %d\n", rc);
Vladimir Oltean6666ceb2019-05-02 23:23:34 +03002314}
2315
2316static int sja1105_vlan_del(struct dsa_switch *ds, int port,
2317 const struct switchdev_obj_port_vlan *vlan)
2318{
2319 struct sja1105_private *priv = ds->priv;
Vladimir Olteanec5ae612020-05-12 20:20:29 +03002320 bool vlan_table_changed = false;
Vladimir Oltean6666ceb2019-05-02 23:23:34 +03002321 u16 vid;
Vladimir Oltean6666ceb2019-05-02 23:23:34 +03002322
2323 for (vid = vlan->vid_begin; vid <= vlan->vid_end; vid++) {
Vladimir Olteanec5ae612020-05-12 20:20:29 +03002324 struct sja1105_bridge_vlan *v, *n;
2325 struct list_head *vlan_list;
2326
2327 vlan_list = sja1105_classify_vlan(priv, vid);
2328
2329 list_for_each_entry_safe(v, n, vlan_list, list) {
2330 if (v->port == port && v->vid == vid) {
2331 list_del(&v->list);
2332 kfree(v);
2333 vlan_table_changed = true;
2334 break;
2335 }
Vladimir Oltean6666ceb2019-05-02 23:23:34 +03002336 }
2337 }
Vladimir Olteanec5ae612020-05-12 20:20:29 +03002338
2339 if (!vlan_table_changed)
2340 return 0;
2341
2342 return sja1105_build_vlan_table(priv, true);
Vladimir Oltean6666ceb2019-05-02 23:23:34 +03002343}
2344
Vladimir Oltean2cafa722020-05-12 20:20:35 +03002345static int sja1105_best_effort_vlan_filtering_get(struct sja1105_private *priv,
2346 bool *be_vlan)
2347{
2348 *be_vlan = priv->best_effort_vlan_filtering;
2349
2350 return 0;
2351}
2352
2353static int sja1105_best_effort_vlan_filtering_set(struct sja1105_private *priv,
2354 bool be_vlan)
2355{
2356 struct dsa_switch *ds = priv->ds;
2357 bool vlan_filtering;
2358 int port;
2359 int rc;
2360
2361 priv->best_effort_vlan_filtering = be_vlan;
2362
2363 rtnl_lock();
2364 for (port = 0; port < ds->num_ports; port++) {
2365 struct dsa_port *dp;
2366
2367 if (!dsa_is_user_port(ds, port))
2368 continue;
2369
2370 dp = dsa_to_port(ds, port);
2371 vlan_filtering = dsa_port_is_vlan_filtering(dp);
2372
2373 rc = sja1105_vlan_filtering(ds, port, vlan_filtering);
2374 if (rc)
2375 break;
2376 }
2377 rtnl_unlock();
2378
2379 return rc;
2380}
2381
2382enum sja1105_devlink_param_id {
2383 SJA1105_DEVLINK_PARAM_ID_BASE = DEVLINK_PARAM_GENERIC_ID_MAX,
2384 SJA1105_DEVLINK_PARAM_ID_BEST_EFFORT_VLAN_FILTERING,
2385};
2386
2387static int sja1105_devlink_param_get(struct dsa_switch *ds, u32 id,
2388 struct devlink_param_gset_ctx *ctx)
2389{
2390 struct sja1105_private *priv = ds->priv;
2391 int err;
2392
2393 switch (id) {
2394 case SJA1105_DEVLINK_PARAM_ID_BEST_EFFORT_VLAN_FILTERING:
2395 err = sja1105_best_effort_vlan_filtering_get(priv,
2396 &ctx->val.vbool);
2397 break;
2398 default:
2399 err = -EOPNOTSUPP;
2400 break;
2401 }
2402
2403 return err;
2404}
2405
2406static int sja1105_devlink_param_set(struct dsa_switch *ds, u32 id,
2407 struct devlink_param_gset_ctx *ctx)
2408{
2409 struct sja1105_private *priv = ds->priv;
2410 int err;
2411
2412 switch (id) {
2413 case SJA1105_DEVLINK_PARAM_ID_BEST_EFFORT_VLAN_FILTERING:
2414 err = sja1105_best_effort_vlan_filtering_set(priv,
2415 ctx->val.vbool);
2416 break;
2417 default:
2418 err = -EOPNOTSUPP;
2419 break;
2420 }
2421
2422 return err;
2423}
2424
2425static const struct devlink_param sja1105_devlink_params[] = {
2426 DSA_DEVLINK_PARAM_DRIVER(SJA1105_DEVLINK_PARAM_ID_BEST_EFFORT_VLAN_FILTERING,
2427 "best_effort_vlan_filtering",
2428 DEVLINK_PARAM_TYPE_BOOL,
2429 BIT(DEVLINK_PARAM_CMODE_RUNTIME)),
2430};
2431
2432static int sja1105_setup_devlink_params(struct dsa_switch *ds)
2433{
2434 return dsa_devlink_params_register(ds, sja1105_devlink_params,
2435 ARRAY_SIZE(sja1105_devlink_params));
2436}
2437
2438static void sja1105_teardown_devlink_params(struct dsa_switch *ds)
2439{
2440 dsa_devlink_params_unregister(ds, sja1105_devlink_params,
2441 ARRAY_SIZE(sja1105_devlink_params));
2442}
2443
Vladimir Oltean8aa9ebc2019-05-02 23:23:30 +03002444/* The programming model for the SJA1105 switch is "all-at-once" via static
2445 * configuration tables. Some of these can be dynamically modified at runtime,
2446 * but not the xMII mode parameters table.
2447 * Furthermode, some PHYs may not have crystals for generating their clocks
2448 * (e.g. RMII). Instead, their 50MHz clock is supplied via the SJA1105 port's
2449 * ref_clk pin. So port clocking needs to be initialized early, before
2450 * connecting to PHYs is attempted, otherwise they won't respond through MDIO.
2451 * Setting correct PHY link speed does not matter now.
2452 * But dsa_slave_phy_setup is called later than sja1105_setup, so the PHY
2453 * bindings are not yet parsed by DSA core. We need to parse early so that we
2454 * can populate the xMII mode parameters table.
2455 */
2456static int sja1105_setup(struct dsa_switch *ds)
2457{
2458 struct sja1105_dt_port ports[SJA1105_NUM_PORTS];
2459 struct sja1105_private *priv = ds->priv;
2460 int rc;
2461
2462 rc = sja1105_parse_dt(priv, ports);
2463 if (rc < 0) {
2464 dev_err(ds->dev, "Failed to parse DT: %d\n", rc);
2465 return rc;
2466 }
Vladimir Olteanf5b86312019-05-02 23:23:32 +03002467
2468 /* Error out early if internal delays are required through DT
2469 * and we can't apply them.
2470 */
2471 rc = sja1105_parse_rgmii_delays(priv, ports);
2472 if (rc < 0) {
2473 dev_err(ds->dev, "RGMII delay not supported\n");
2474 return rc;
2475 }
2476
Vladimir Oltean61c77122019-10-12 02:18:14 +03002477 rc = sja1105_ptp_clock_register(ds);
Vladimir Olteanbb77f362019-06-08 15:04:34 +03002478 if (rc < 0) {
2479 dev_err(ds->dev, "Failed to register PTP clock: %d\n", rc);
2480 return rc;
2481 }
Vladimir Oltean8aa9ebc2019-05-02 23:23:30 +03002482 /* Create and send configuration down to device */
2483 rc = sja1105_static_config_load(priv, ports);
2484 if (rc < 0) {
2485 dev_err(ds->dev, "Failed to load static config: %d\n", rc);
2486 return rc;
2487 }
2488 /* Configure the CGU (PHY link modes and speeds) */
2489 rc = sja1105_clocking_setup(priv);
2490 if (rc < 0) {
2491 dev_err(ds->dev, "Failed to configure MII clocking: %d\n", rc);
2492 return rc;
2493 }
Vladimir Oltean6666ceb2019-05-02 23:23:34 +03002494 /* On SJA1105, VLAN filtering per se is always enabled in hardware.
2495 * The only thing we can do to disable it is lie about what the 802.1Q
2496 * EtherType is.
2497 * So it will still try to apply VLAN filtering, but all ingress
2498 * traffic (except frames received with EtherType of ETH_P_SJA1105)
2499 * will be internally tagged with a distorted VLAN header where the
2500 * TPID is ETH_P_SJA1105, and the VLAN ID is the port pvid.
2501 */
2502 ds->vlan_filtering_is_global = true;
Vladimir Oltean8aa9ebc2019-05-02 23:23:30 +03002503
Vladimir Oltean5f06c632019-09-15 05:00:01 +03002504 /* Advertise the 8 egress queues */
2505 ds->num_tx_queues = SJA1105_NUM_TC;
2506
Vladimir Olteanc279c722020-03-27 21:55:45 +02002507 ds->mtu_enforcement_ingress = true;
2508
Vladimir Olteanfa83e5d2020-05-12 20:20:30 +03002509 ds->configure_vlan_while_not_filtering = true;
2510
Vladimir Oltean2cafa722020-05-12 20:20:35 +03002511 rc = sja1105_setup_devlink_params(ds);
2512 if (rc < 0)
2513 return rc;
2514
Vladimir Oltean227d07a2019-05-05 13:19:27 +03002515 /* The DSA/switchdev model brings up switch ports in standalone mode by
2516 * default, and that means vlan_filtering is 0 since they're not under
2517 * a bridge, so it's safe to set up switch tagging at this time.
2518 */
2519 return sja1105_setup_8021q_tagging(ds, true);
2520}
2521
Vladimir Olteanf3097be2019-06-08 15:04:42 +03002522static void sja1105_teardown(struct dsa_switch *ds)
2523{
2524 struct sja1105_private *priv = ds->priv;
Vladimir Olteanec5ae612020-05-12 20:20:29 +03002525 struct sja1105_bridge_vlan *v, *n;
Vladimir Olteana68578c22020-01-04 02:37:10 +02002526 int port;
2527
2528 for (port = 0; port < SJA1105_NUM_PORTS; port++) {
2529 struct sja1105_port *sp = &priv->ports[port];
2530
2531 if (!dsa_is_user_port(ds, port))
2532 continue;
2533
Vladimir Oltean52c0d4e2020-02-29 22:30:07 +02002534 if (sp->xmit_worker)
2535 kthread_destroy_worker(sp->xmit_worker);
Vladimir Olteana68578c22020-01-04 02:37:10 +02002536 }
Vladimir Olteanf3097be2019-06-08 15:04:42 +03002537
Vladimir Oltean2cafa722020-05-12 20:20:35 +03002538 sja1105_teardown_devlink_params(ds);
Vladimir Olteana6af7762020-03-29 14:52:02 +03002539 sja1105_flower_teardown(ds);
Vladimir Oltean317ab5b2019-09-15 05:00:02 +03002540 sja1105_tas_teardown(ds);
Vladimir Oltean61c77122019-10-12 02:18:14 +03002541 sja1105_ptp_clock_unregister(ds);
Vladimir Oltean6cb0abb2019-08-05 01:38:46 +03002542 sja1105_static_config_free(&priv->static_config);
Vladimir Olteanec5ae612020-05-12 20:20:29 +03002543
2544 list_for_each_entry_safe(v, n, &priv->dsa_8021q_vlans, list) {
2545 list_del(&v->list);
2546 kfree(v);
2547 }
2548
2549 list_for_each_entry_safe(v, n, &priv->bridge_vlans, list) {
2550 list_del(&v->list);
2551 kfree(v);
2552 }
Vladimir Olteanf3097be2019-06-08 15:04:42 +03002553}
2554
Vladimir Olteane9bf9692019-08-25 22:46:30 +03002555static int sja1105_port_enable(struct dsa_switch *ds, int port,
2556 struct phy_device *phy)
2557{
2558 struct net_device *slave;
2559
2560 if (!dsa_is_user_port(ds, port))
2561 return 0;
2562
Vivien Didelot68bb8ea2019-10-21 16:51:15 -04002563 slave = dsa_to_port(ds, port)->slave;
Vladimir Olteane9bf9692019-08-25 22:46:30 +03002564
2565 slave->features &= ~NETIF_F_HW_VLAN_CTAG_FILTER;
2566
2567 return 0;
2568}
2569
Vladimir Olteana68578c22020-01-04 02:37:10 +02002570static void sja1105_port_disable(struct dsa_switch *ds, int port)
2571{
2572 struct sja1105_private *priv = ds->priv;
2573 struct sja1105_port *sp = &priv->ports[port];
2574
2575 if (!dsa_is_user_port(ds, port))
2576 return;
2577
2578 kthread_cancel_work_sync(&sp->xmit_work);
2579 skb_queue_purge(&sp->xmit_queue);
2580}
2581
Vladimir Oltean227d07a2019-05-05 13:19:27 +03002582static int sja1105_mgmt_xmit(struct dsa_switch *ds, int port, int slot,
Vladimir Oltean47ed9852019-06-08 15:04:35 +03002583 struct sk_buff *skb, bool takets)
Vladimir Oltean227d07a2019-05-05 13:19:27 +03002584{
2585 struct sja1105_mgmt_entry mgmt_route = {0};
2586 struct sja1105_private *priv = ds->priv;
2587 struct ethhdr *hdr;
2588 int timeout = 10;
2589 int rc;
2590
2591 hdr = eth_hdr(skb);
2592
2593 mgmt_route.macaddr = ether_addr_to_u64(hdr->h_dest);
2594 mgmt_route.destports = BIT(port);
2595 mgmt_route.enfport = 1;
Vladimir Oltean47ed9852019-06-08 15:04:35 +03002596 mgmt_route.tsreg = 0;
2597 mgmt_route.takets = takets;
Vladimir Oltean227d07a2019-05-05 13:19:27 +03002598
2599 rc = sja1105_dynamic_config_write(priv, BLK_IDX_MGMT_ROUTE,
2600 slot, &mgmt_route, true);
2601 if (rc < 0) {
2602 kfree_skb(skb);
2603 return rc;
2604 }
2605
2606 /* Transfer skb to the host port. */
Vivien Didelot68bb8ea2019-10-21 16:51:15 -04002607 dsa_enqueue_skb(skb, dsa_to_port(ds, port)->slave);
Vladimir Oltean227d07a2019-05-05 13:19:27 +03002608
2609 /* Wait until the switch has processed the frame */
2610 do {
2611 rc = sja1105_dynamic_config_read(priv, BLK_IDX_MGMT_ROUTE,
2612 slot, &mgmt_route);
2613 if (rc < 0) {
2614 dev_err_ratelimited(priv->ds->dev,
2615 "failed to poll for mgmt route\n");
2616 continue;
2617 }
2618
2619 /* UM10944: The ENFPORT flag of the respective entry is
2620 * cleared when a match is found. The host can use this
2621 * flag as an acknowledgment.
2622 */
2623 cpu_relax();
2624 } while (mgmt_route.enfport && --timeout);
2625
2626 if (!timeout) {
2627 /* Clean up the management route so that a follow-up
2628 * frame may not match on it by mistake.
Vladimir Oltean2a7e7402019-06-03 00:15:33 +03002629 * This is only hardware supported on P/Q/R/S - on E/T it is
2630 * a no-op and we are silently discarding the -EOPNOTSUPP.
Vladimir Oltean227d07a2019-05-05 13:19:27 +03002631 */
2632 sja1105_dynamic_config_write(priv, BLK_IDX_MGMT_ROUTE,
2633 slot, &mgmt_route, false);
2634 dev_err_ratelimited(priv->ds->dev, "xmit timed out\n");
2635 }
2636
2637 return NETDEV_TX_OK;
2638}
2639
Vladimir Olteana68578c22020-01-04 02:37:10 +02002640#define work_to_port(work) \
2641 container_of((work), struct sja1105_port, xmit_work)
2642#define tagger_to_sja1105(t) \
2643 container_of((t), struct sja1105_private, tagger_data)
2644
Vladimir Oltean227d07a2019-05-05 13:19:27 +03002645/* Deferred work is unfortunately necessary because setting up the management
2646 * route cannot be done from atomit context (SPI transfer takes a sleepable
2647 * lock on the bus)
2648 */
Vladimir Olteana68578c22020-01-04 02:37:10 +02002649static void sja1105_port_deferred_xmit(struct kthread_work *work)
Vladimir Oltean227d07a2019-05-05 13:19:27 +03002650{
Vladimir Olteana68578c22020-01-04 02:37:10 +02002651 struct sja1105_port *sp = work_to_port(work);
2652 struct sja1105_tagger_data *tagger_data = sp->data;
2653 struct sja1105_private *priv = tagger_to_sja1105(tagger_data);
2654 int port = sp - priv->ports;
2655 struct sk_buff *skb;
Vladimir Oltean227d07a2019-05-05 13:19:27 +03002656
Vladimir Olteana68578c22020-01-04 02:37:10 +02002657 while ((skb = skb_dequeue(&sp->xmit_queue)) != NULL) {
2658 struct sk_buff *clone = DSA_SKB_CB(skb)->clone;
Vladimir Oltean227d07a2019-05-05 13:19:27 +03002659
Vladimir Olteana68578c22020-01-04 02:37:10 +02002660 mutex_lock(&priv->mgmt_lock);
Vladimir Oltean227d07a2019-05-05 13:19:27 +03002661
Vladimir Olteana68578c22020-01-04 02:37:10 +02002662 sja1105_mgmt_xmit(priv->ds, port, 0, skb, !!clone);
Vladimir Oltean47ed9852019-06-08 15:04:35 +03002663
Vladimir Olteana68578c22020-01-04 02:37:10 +02002664 /* The clone, if there, was made by dsa_skb_tx_timestamp */
2665 if (clone)
2666 sja1105_ptp_txtstamp_skb(priv->ds, port, clone);
Vladimir Oltean47ed9852019-06-08 15:04:35 +03002667
Vladimir Olteana68578c22020-01-04 02:37:10 +02002668 mutex_unlock(&priv->mgmt_lock);
2669 }
Vladimir Oltean8aa9ebc2019-05-02 23:23:30 +03002670}
2671
Vladimir Oltean84567212019-05-02 23:23:36 +03002672/* The MAXAGE setting belongs to the L2 Forwarding Parameters table,
2673 * which cannot be reconfigured at runtime. So a switch reset is required.
2674 */
2675static int sja1105_set_ageing_time(struct dsa_switch *ds,
2676 unsigned int ageing_time)
2677{
2678 struct sja1105_l2_lookup_params_entry *l2_lookup_params;
2679 struct sja1105_private *priv = ds->priv;
2680 struct sja1105_table *table;
2681 unsigned int maxage;
2682
2683 table = &priv->static_config.tables[BLK_IDX_L2_LOOKUP_PARAMS];
2684 l2_lookup_params = table->entries;
2685
2686 maxage = SJA1105_AGEING_TIME_MS(ageing_time);
2687
2688 if (l2_lookup_params->maxage == maxage)
2689 return 0;
2690
2691 l2_lookup_params->maxage = maxage;
2692
Vladimir Oltean2eea1fa2019-11-12 23:22:00 +02002693 return sja1105_static_config_reload(priv, SJA1105_AGEING_TIME);
Vladimir Oltean84567212019-05-02 23:23:36 +03002694}
2695
Vladimir Olteanc279c722020-03-27 21:55:45 +02002696static int sja1105_change_mtu(struct dsa_switch *ds, int port, int new_mtu)
2697{
Vladimir Olteanc279c722020-03-27 21:55:45 +02002698 struct sja1105_l2_policing_entry *policing;
2699 struct sja1105_private *priv = ds->priv;
Vladimir Olteanc279c722020-03-27 21:55:45 +02002700
2701 new_mtu += VLAN_ETH_HLEN + ETH_FCS_LEN;
2702
2703 if (dsa_is_cpu_port(ds, port))
2704 new_mtu += VLAN_HLEN;
2705
2706 policing = priv->static_config.tables[BLK_IDX_L2_POLICING].entries;
2707
Vladimir Olteana7cc0812020-03-29 14:52:01 +03002708 if (policing[port].maxlen == new_mtu)
Vladimir Olteanc279c722020-03-27 21:55:45 +02002709 return 0;
2710
Vladimir Olteana7cc0812020-03-29 14:52:01 +03002711 policing[port].maxlen = new_mtu;
Vladimir Olteanc279c722020-03-27 21:55:45 +02002712
2713 return sja1105_static_config_reload(priv, SJA1105_BEST_EFFORT_POLICING);
2714}
2715
2716static int sja1105_get_max_mtu(struct dsa_switch *ds, int port)
2717{
2718 return 2043 - VLAN_ETH_HLEN - ETH_FCS_LEN;
2719}
2720
Vladimir Oltean317ab5b2019-09-15 05:00:02 +03002721static int sja1105_port_setup_tc(struct dsa_switch *ds, int port,
2722 enum tc_setup_type type,
2723 void *type_data)
2724{
2725 switch (type) {
2726 case TC_SETUP_QDISC_TAPRIO:
2727 return sja1105_setup_tc_taprio(ds, port, type_data);
2728 default:
2729 return -EOPNOTSUPP;
2730 }
2731}
2732
Vladimir Oltean511e6ca2019-10-04 03:33:47 +03002733/* We have a single mirror (@to) port, but can configure ingress and egress
2734 * mirroring on all other (@from) ports.
2735 * We need to allow mirroring rules only as long as the @to port is always the
2736 * same, and we need to unset the @to port from mirr_port only when there is no
2737 * mirroring rule that references it.
2738 */
2739static int sja1105_mirror_apply(struct sja1105_private *priv, int from, int to,
2740 bool ingress, bool enabled)
2741{
2742 struct sja1105_general_params_entry *general_params;
2743 struct sja1105_mac_config_entry *mac;
2744 struct sja1105_table *table;
2745 bool already_enabled;
2746 u64 new_mirr_port;
2747 int rc;
2748
2749 table = &priv->static_config.tables[BLK_IDX_GENERAL_PARAMS];
2750 general_params = table->entries;
2751
2752 mac = priv->static_config.tables[BLK_IDX_MAC_CONFIG].entries;
2753
2754 already_enabled = (general_params->mirr_port != SJA1105_NUM_PORTS);
2755 if (already_enabled && enabled && general_params->mirr_port != to) {
2756 dev_err(priv->ds->dev,
2757 "Delete mirroring rules towards port %llu first\n",
2758 general_params->mirr_port);
2759 return -EBUSY;
2760 }
2761
2762 new_mirr_port = to;
2763 if (!enabled) {
2764 bool keep = false;
2765 int port;
2766
2767 /* Anybody still referencing mirr_port? */
2768 for (port = 0; port < SJA1105_NUM_PORTS; port++) {
2769 if (mac[port].ing_mirr || mac[port].egr_mirr) {
2770 keep = true;
2771 break;
2772 }
2773 }
2774 /* Unset already_enabled for next time */
2775 if (!keep)
2776 new_mirr_port = SJA1105_NUM_PORTS;
2777 }
2778 if (new_mirr_port != general_params->mirr_port) {
2779 general_params->mirr_port = new_mirr_port;
2780
2781 rc = sja1105_dynamic_config_write(priv, BLK_IDX_GENERAL_PARAMS,
2782 0, general_params, true);
2783 if (rc < 0)
2784 return rc;
2785 }
2786
2787 if (ingress)
2788 mac[from].ing_mirr = enabled;
2789 else
2790 mac[from].egr_mirr = enabled;
2791
2792 return sja1105_dynamic_config_write(priv, BLK_IDX_MAC_CONFIG, from,
2793 &mac[from], true);
2794}
2795
2796static int sja1105_mirror_add(struct dsa_switch *ds, int port,
2797 struct dsa_mall_mirror_tc_entry *mirror,
2798 bool ingress)
2799{
2800 return sja1105_mirror_apply(ds->priv, port, mirror->to_local_port,
2801 ingress, true);
2802}
2803
2804static void sja1105_mirror_del(struct dsa_switch *ds, int port,
2805 struct dsa_mall_mirror_tc_entry *mirror)
2806{
2807 sja1105_mirror_apply(ds->priv, port, mirror->to_local_port,
2808 mirror->ingress, false);
2809}
2810
Vladimir Olteana7cc0812020-03-29 14:52:01 +03002811static int sja1105_port_policer_add(struct dsa_switch *ds, int port,
2812 struct dsa_mall_policer_tc_entry *policer)
2813{
2814 struct sja1105_l2_policing_entry *policing;
2815 struct sja1105_private *priv = ds->priv;
2816
2817 policing = priv->static_config.tables[BLK_IDX_L2_POLICING].entries;
2818
2819 /* In hardware, every 8 microseconds the credit level is incremented by
2820 * the value of RATE bytes divided by 64, up to a maximum of SMAX
2821 * bytes.
2822 */
2823 policing[port].rate = div_u64(512 * policer->rate_bytes_per_sec,
2824 1000000);
2825 policing[port].smax = div_u64(policer->rate_bytes_per_sec *
2826 PSCHED_NS2TICKS(policer->burst),
2827 PSCHED_TICKS_PER_SEC);
2828
2829 return sja1105_static_config_reload(priv, SJA1105_BEST_EFFORT_POLICING);
2830}
2831
2832static void sja1105_port_policer_del(struct dsa_switch *ds, int port)
2833{
2834 struct sja1105_l2_policing_entry *policing;
2835 struct sja1105_private *priv = ds->priv;
2836
2837 policing = priv->static_config.tables[BLK_IDX_L2_POLICING].entries;
2838
2839 policing[port].rate = SJA1105_RATE_MBPS(1000);
2840 policing[port].smax = 65535;
2841
2842 sja1105_static_config_reload(priv, SJA1105_BEST_EFFORT_POLICING);
2843}
2844
Vladimir Oltean8aa9ebc2019-05-02 23:23:30 +03002845static const struct dsa_switch_ops sja1105_switch_ops = {
2846 .get_tag_protocol = sja1105_get_tag_protocol,
2847 .setup = sja1105_setup,
Vladimir Olteanf3097be2019-06-08 15:04:42 +03002848 .teardown = sja1105_teardown,
Vladimir Oltean84567212019-05-02 23:23:36 +03002849 .set_ageing_time = sja1105_set_ageing_time,
Vladimir Olteanc279c722020-03-27 21:55:45 +02002850 .port_change_mtu = sja1105_change_mtu,
2851 .port_max_mtu = sja1105_get_max_mtu,
Vladimir Olteanad9f2992019-05-02 23:23:38 +03002852 .phylink_validate = sja1105_phylink_validate,
Vladimir Olteanffe10e62020-03-20 13:29:37 +02002853 .phylink_mac_link_state = sja1105_mac_pcs_get_state,
Vladimir Olteanaf7cd032019-05-28 20:38:17 +03002854 .phylink_mac_config = sja1105_mac_config,
Vladimir Oltean8400cff2019-06-08 16:03:44 +03002855 .phylink_mac_link_up = sja1105_mac_link_up,
2856 .phylink_mac_link_down = sja1105_mac_link_down,
Vladimir Oltean52c34e62019-05-02 23:23:35 +03002857 .get_strings = sja1105_get_strings,
2858 .get_ethtool_stats = sja1105_get_ethtool_stats,
2859 .get_sset_count = sja1105_get_sset_count,
Vladimir Olteanbb77f362019-06-08 15:04:34 +03002860 .get_ts_info = sja1105_get_ts_info,
Vladimir Olteane9bf9692019-08-25 22:46:30 +03002861 .port_enable = sja1105_port_enable,
Vladimir Olteana68578c22020-01-04 02:37:10 +02002862 .port_disable = sja1105_port_disable,
Vladimir Oltean291d1e72019-05-02 23:23:31 +03002863 .port_fdb_dump = sja1105_fdb_dump,
2864 .port_fdb_add = sja1105_fdb_add,
2865 .port_fdb_del = sja1105_fdb_del,
Vladimir Oltean8aa9ebc2019-05-02 23:23:30 +03002866 .port_bridge_join = sja1105_bridge_join,
2867 .port_bridge_leave = sja1105_bridge_leave,
Vladimir Oltean640f7632019-05-05 13:19:28 +03002868 .port_stp_state_set = sja1105_bridge_stp_state_set,
Vladimir Oltean6666ceb2019-05-02 23:23:34 +03002869 .port_vlan_prepare = sja1105_vlan_prepare,
2870 .port_vlan_filtering = sja1105_vlan_filtering,
2871 .port_vlan_add = sja1105_vlan_add,
2872 .port_vlan_del = sja1105_vlan_del,
Vladimir Oltean291d1e72019-05-02 23:23:31 +03002873 .port_mdb_prepare = sja1105_mdb_prepare,
2874 .port_mdb_add = sja1105_mdb_add,
2875 .port_mdb_del = sja1105_mdb_del,
Vladimir Olteana602afd2019-06-08 15:04:43 +03002876 .port_hwtstamp_get = sja1105_hwtstamp_get,
2877 .port_hwtstamp_set = sja1105_hwtstamp_set,
Vladimir Olteanf3097be2019-06-08 15:04:42 +03002878 .port_rxtstamp = sja1105_port_rxtstamp,
Vladimir Oltean47ed9852019-06-08 15:04:35 +03002879 .port_txtstamp = sja1105_port_txtstamp,
Vladimir Oltean317ab5b2019-09-15 05:00:02 +03002880 .port_setup_tc = sja1105_port_setup_tc,
Vladimir Oltean511e6ca2019-10-04 03:33:47 +03002881 .port_mirror_add = sja1105_mirror_add,
2882 .port_mirror_del = sja1105_mirror_del,
Vladimir Olteana7cc0812020-03-29 14:52:01 +03002883 .port_policer_add = sja1105_port_policer_add,
2884 .port_policer_del = sja1105_port_policer_del,
Vladimir Olteana6af7762020-03-29 14:52:02 +03002885 .cls_flower_add = sja1105_cls_flower_add,
2886 .cls_flower_del = sja1105_cls_flower_del,
Vladimir Oltean834f8932020-05-05 22:20:56 +03002887 .cls_flower_stats = sja1105_cls_flower_stats,
Vladimir Olteanac02a452020-05-10 19:37:43 +03002888 .crosschip_bridge_join = sja1105_crosschip_bridge_join,
2889 .crosschip_bridge_leave = sja1105_crosschip_bridge_leave,
Vladimir Oltean2cafa722020-05-12 20:20:35 +03002890 .devlink_param_get = sja1105_devlink_param_get,
2891 .devlink_param_set = sja1105_devlink_param_set,
Vladimir Oltean8aa9ebc2019-05-02 23:23:30 +03002892};
2893
2894static int sja1105_check_device_id(struct sja1105_private *priv)
2895{
2896 const struct sja1105_regs *regs = priv->info->regs;
2897 u8 prod_id[SJA1105_SIZE_DEVICE_ID] = {0};
2898 struct device *dev = &priv->spidev->dev;
Vladimir Olteandff79622019-10-01 22:18:00 +03002899 u32 device_id;
Vladimir Oltean8aa9ebc2019-05-02 23:23:30 +03002900 u64 part_no;
2901 int rc;
2902
Vladimir Oltean34d76e92019-11-09 13:32:22 +02002903 rc = sja1105_xfer_u32(priv, SPI_READ, regs->device_id, &device_id,
2904 NULL);
Vladimir Oltean8aa9ebc2019-05-02 23:23:30 +03002905 if (rc < 0)
2906 return rc;
2907
2908 if (device_id != priv->info->device_id) {
Vladimir Olteandff79622019-10-01 22:18:00 +03002909 dev_err(dev, "Expected device ID 0x%llx but read 0x%x\n",
Vladimir Oltean8aa9ebc2019-05-02 23:23:30 +03002910 priv->info->device_id, device_id);
2911 return -ENODEV;
2912 }
2913
Vladimir Oltean1bd44872019-10-01 22:18:01 +03002914 rc = sja1105_xfer_buf(priv, SPI_READ, regs->prod_id, prod_id,
2915 SJA1105_SIZE_DEVICE_ID);
Vladimir Oltean8aa9ebc2019-05-02 23:23:30 +03002916 if (rc < 0)
2917 return rc;
2918
2919 sja1105_unpack(prod_id, &part_no, 19, 4, SJA1105_SIZE_DEVICE_ID);
2920
2921 if (part_no != priv->info->part_no) {
2922 dev_err(dev, "Expected part number 0x%llx but read 0x%llx\n",
2923 priv->info->part_no, part_no);
2924 return -ENODEV;
2925 }
2926
2927 return 0;
2928}
2929
2930static int sja1105_probe(struct spi_device *spi)
2931{
Vladimir Oltean844d7ed2019-06-08 15:04:40 +03002932 struct sja1105_tagger_data *tagger_data;
Vladimir Oltean8aa9ebc2019-05-02 23:23:30 +03002933 struct device *dev = &spi->dev;
2934 struct sja1105_private *priv;
2935 struct dsa_switch *ds;
Vladimir Olteana68578c22020-01-04 02:37:10 +02002936 int rc, port;
Vladimir Oltean8aa9ebc2019-05-02 23:23:30 +03002937
2938 if (!dev->of_node) {
2939 dev_err(dev, "No DTS bindings for SJA1105 driver\n");
2940 return -EINVAL;
2941 }
2942
2943 priv = devm_kzalloc(dev, sizeof(struct sja1105_private), GFP_KERNEL);
2944 if (!priv)
2945 return -ENOMEM;
2946
2947 /* Configure the optional reset pin and bring up switch */
2948 priv->reset_gpio = devm_gpiod_get(dev, "reset", GPIOD_OUT_HIGH);
2949 if (IS_ERR(priv->reset_gpio))
2950 dev_dbg(dev, "reset-gpios not defined, ignoring\n");
2951 else
2952 sja1105_hw_reset(priv->reset_gpio, 1, 1);
2953
2954 /* Populate our driver private structure (priv) based on
2955 * the device tree node that was probed (spi)
2956 */
2957 priv->spidev = spi;
2958 spi_set_drvdata(spi, priv);
2959
2960 /* Configure the SPI bus */
2961 spi->bits_per_word = 8;
2962 rc = spi_setup(spi);
2963 if (rc < 0) {
2964 dev_err(dev, "Could not init SPI\n");
2965 return rc;
2966 }
2967
2968 priv->info = of_device_get_match_data(dev);
2969
2970 /* Detect hardware device */
2971 rc = sja1105_check_device_id(priv);
2972 if (rc < 0) {
2973 dev_err(dev, "Device ID check failed: %d\n", rc);
2974 return rc;
2975 }
2976
2977 dev_info(dev, "Probed switch chip: %s\n", priv->info->name);
2978
Vivien Didelot7e99e342019-10-21 16:51:30 -04002979 ds = devm_kzalloc(dev, sizeof(*ds), GFP_KERNEL);
Vladimir Oltean8aa9ebc2019-05-02 23:23:30 +03002980 if (!ds)
2981 return -ENOMEM;
2982
Vivien Didelot7e99e342019-10-21 16:51:30 -04002983 ds->dev = dev;
2984 ds->num_ports = SJA1105_NUM_PORTS;
Vladimir Oltean8aa9ebc2019-05-02 23:23:30 +03002985 ds->ops = &sja1105_switch_ops;
2986 ds->priv = priv;
2987 priv->ds = ds;
2988
Vladimir Oltean844d7ed2019-06-08 15:04:40 +03002989 tagger_data = &priv->tagger_data;
Vladimir Oltean844d7ed2019-06-08 15:04:40 +03002990
Vivien Didelotd5a619b2019-10-21 16:51:28 -04002991 mutex_init(&priv->ptp_data.lock);
2992 mutex_init(&priv->mgmt_lock);
2993
Vladimir Olteanac02a452020-05-10 19:37:43 +03002994 INIT_LIST_HEAD(&priv->crosschip_links);
Vladimir Olteanec5ae612020-05-12 20:20:29 +03002995 INIT_LIST_HEAD(&priv->bridge_vlans);
2996 INIT_LIST_HEAD(&priv->dsa_8021q_vlans);
Vladimir Olteanac02a452020-05-10 19:37:43 +03002997
Vivien Didelotd5a619b2019-10-21 16:51:28 -04002998 sja1105_tas_setup(ds);
Vladimir Olteana6af7762020-03-29 14:52:02 +03002999 sja1105_flower_setup(ds);
Vivien Didelotd5a619b2019-10-21 16:51:28 -04003000
3001 rc = dsa_register_switch(priv->ds);
3002 if (rc)
3003 return rc;
3004
Vladimir Oltean227d07a2019-05-05 13:19:27 +03003005 /* Connections between dsa_port and sja1105_port */
Vladimir Olteana68578c22020-01-04 02:37:10 +02003006 for (port = 0; port < SJA1105_NUM_PORTS; port++) {
3007 struct sja1105_port *sp = &priv->ports[port];
3008 struct dsa_port *dp = dsa_to_port(ds, port);
3009 struct net_device *slave;
Vladimir Oltean84eeb5d2020-05-12 20:20:34 +03003010 int subvlan;
Vladimir Oltean227d07a2019-05-05 13:19:27 +03003011
Vladimir Olteana68578c22020-01-04 02:37:10 +02003012 if (!dsa_is_user_port(ds, port))
3013 continue;
3014
3015 dp->priv = sp;
3016 sp->dp = dp;
Vladimir Oltean844d7ed2019-06-08 15:04:40 +03003017 sp->data = tagger_data;
Vladimir Olteana68578c22020-01-04 02:37:10 +02003018 slave = dp->slave;
3019 kthread_init_work(&sp->xmit_work, sja1105_port_deferred_xmit);
3020 sp->xmit_worker = kthread_create_worker(0, "%s_xmit",
3021 slave->name);
3022 if (IS_ERR(sp->xmit_worker)) {
3023 rc = PTR_ERR(sp->xmit_worker);
3024 dev_err(ds->dev,
3025 "failed to create deferred xmit thread: %d\n",
3026 rc);
3027 goto out;
3028 }
3029 skb_queue_head_init(&sp->xmit_queue);
Vladimir Oltean38b5bee2020-05-12 20:20:32 +03003030 sp->xmit_tpid = ETH_P_SJA1105;
Vladimir Oltean84eeb5d2020-05-12 20:20:34 +03003031
3032 for (subvlan = 0; subvlan < DSA_8021Q_N_SUBVLAN; subvlan++)
3033 sp->subvlan_map[subvlan] = VLAN_N_VID;
Vladimir Oltean227d07a2019-05-05 13:19:27 +03003034 }
Vladimir Oltean227d07a2019-05-05 13:19:27 +03003035
Vivien Didelotd5a619b2019-10-21 16:51:28 -04003036 return 0;
Vladimir Olteana68578c22020-01-04 02:37:10 +02003037out:
3038 while (port-- > 0) {
3039 struct sja1105_port *sp = &priv->ports[port];
3040
3041 if (!dsa_is_user_port(ds, port))
3042 continue;
3043
3044 kthread_destroy_worker(sp->xmit_worker);
3045 }
3046 return rc;
Vladimir Oltean8aa9ebc2019-05-02 23:23:30 +03003047}
3048
3049static int sja1105_remove(struct spi_device *spi)
3050{
3051 struct sja1105_private *priv = spi_get_drvdata(spi);
3052
Vladimir Oltean8aa9ebc2019-05-02 23:23:30 +03003053 dsa_unregister_switch(priv->ds);
Vladimir Oltean8aa9ebc2019-05-02 23:23:30 +03003054 return 0;
3055}
3056
3057static const struct of_device_id sja1105_dt_ids[] = {
3058 { .compatible = "nxp,sja1105e", .data = &sja1105e_info },
3059 { .compatible = "nxp,sja1105t", .data = &sja1105t_info },
3060 { .compatible = "nxp,sja1105p", .data = &sja1105p_info },
3061 { .compatible = "nxp,sja1105q", .data = &sja1105q_info },
3062 { .compatible = "nxp,sja1105r", .data = &sja1105r_info },
3063 { .compatible = "nxp,sja1105s", .data = &sja1105s_info },
3064 { /* sentinel */ },
3065};
3066MODULE_DEVICE_TABLE(of, sja1105_dt_ids);
3067
3068static struct spi_driver sja1105_driver = {
3069 .driver = {
3070 .name = "sja1105",
3071 .owner = THIS_MODULE,
3072 .of_match_table = of_match_ptr(sja1105_dt_ids),
3073 },
3074 .probe = sja1105_probe,
3075 .remove = sja1105_remove,
3076};
3077
3078module_spi_driver(sja1105_driver);
3079
3080MODULE_AUTHOR("Vladimir Oltean <olteanv@gmail.com>");
3081MODULE_AUTHOR("Georg Waibel <georg.waibel@sensor-technik.de>");
3082MODULE_DESCRIPTION("SJA1105 Driver");
3083MODULE_LICENSE("GPL v2");