blob: b6d8ef0ab879eae4a8536b2adecb541dffc7ddf0 [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"
25
26static void sja1105_hw_reset(struct gpio_desc *gpio, unsigned int pulse_len,
27 unsigned int startup_delay)
28{
29 gpiod_set_value_cansleep(gpio, 1);
30 /* Wait for minimum reset pulse length */
31 msleep(pulse_len);
32 gpiod_set_value_cansleep(gpio, 0);
33 /* Wait until chip is ready after reset */
34 msleep(startup_delay);
35}
36
37static void
38sja1105_port_allow_traffic(struct sja1105_l2_forwarding_entry *l2_fwd,
39 int from, int to, bool allow)
40{
41 if (allow) {
42 l2_fwd[from].bc_domain |= BIT(to);
43 l2_fwd[from].reach_port |= BIT(to);
44 l2_fwd[from].fl_domain |= BIT(to);
45 } else {
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 }
50}
51
52/* Structure used to temporarily transport device tree
53 * settings into sja1105_setup
54 */
55struct sja1105_dt_port {
56 phy_interface_t phy_mode;
57 sja1105_mii_role_t role;
58};
59
60static int sja1105_init_mac_settings(struct sja1105_private *priv)
61{
62 struct sja1105_mac_config_entry default_mac = {
63 /* Enable all 8 priority queues on egress.
64 * Every queue i holds top[i] - base[i] frames.
65 * Sum of top[i] - base[i] is 511 (max hardware limit).
66 */
67 .top = {0x3F, 0x7F, 0xBF, 0xFF, 0x13F, 0x17F, 0x1BF, 0x1FF},
68 .base = {0x0, 0x40, 0x80, 0xC0, 0x100, 0x140, 0x180, 0x1C0},
69 .enabled = {true, true, true, true, true, true, true, true},
70 /* Keep standard IFG of 12 bytes on egress. */
71 .ifg = 0,
72 /* Always put the MAC speed in automatic mode, where it can be
Vladimir Oltean1fd4a172019-06-08 16:03:42 +030073 * adjusted at runtime by PHYLINK.
Vladimir Oltean8aa9ebc2019-05-02 23:23:30 +030074 */
75 .speed = SJA1105_SPEED_AUTO,
76 /* No static correction for 1-step 1588 events */
77 .tp_delin = 0,
78 .tp_delout = 0,
79 /* Disable aging for critical TTEthernet traffic */
80 .maxage = 0xFF,
81 /* Internal VLAN (pvid) to apply to untagged ingress */
82 .vlanprio = 0,
Vladimir Olteane3502b82019-06-26 02:39:35 +030083 .vlanid = 1,
Vladimir Oltean8aa9ebc2019-05-02 23:23:30 +030084 .ing_mirr = false,
85 .egr_mirr = false,
86 /* Don't drop traffic with other EtherType than ETH_P_IP */
87 .drpnona664 = false,
88 /* Don't drop double-tagged traffic */
89 .drpdtag = false,
90 /* Don't drop untagged traffic */
91 .drpuntag = false,
92 /* Don't retag 802.1p (VID 0) traffic with the pvid */
93 .retag = false,
Vladimir Oltean640f7632019-05-05 13:19:28 +030094 /* Disable learning and I/O on user ports by default -
95 * STP will enable it.
96 */
97 .dyn_learn = false,
Vladimir Oltean8aa9ebc2019-05-02 23:23:30 +030098 .egress = false,
99 .ingress = false,
100 };
101 struct sja1105_mac_config_entry *mac;
102 struct sja1105_table *table;
103 int i;
104
105 table = &priv->static_config.tables[BLK_IDX_MAC_CONFIG];
106
107 /* Discard previous MAC Configuration Table */
108 if (table->entry_count) {
109 kfree(table->entries);
110 table->entry_count = 0;
111 }
112
113 table->entries = kcalloc(SJA1105_NUM_PORTS,
114 table->ops->unpacked_entry_size, GFP_KERNEL);
115 if (!table->entries)
116 return -ENOMEM;
117
Vladimir Oltean8aa9ebc2019-05-02 23:23:30 +0300118 table->entry_count = SJA1105_NUM_PORTS;
119
120 mac = table->entries;
121
Vladimir Oltean640f7632019-05-05 13:19:28 +0300122 for (i = 0; i < SJA1105_NUM_PORTS; i++) {
Vladimir Oltean8aa9ebc2019-05-02 23:23:30 +0300123 mac[i] = default_mac;
Vladimir Oltean640f7632019-05-05 13:19:28 +0300124 if (i == dsa_upstream_port(priv->ds, i)) {
125 /* STP doesn't get called for CPU port, so we need to
126 * set the I/O parameters statically.
127 */
128 mac[i].dyn_learn = true;
129 mac[i].ingress = true;
130 mac[i].egress = true;
131 }
132 }
Vladimir Oltean8aa9ebc2019-05-02 23:23:30 +0300133
134 return 0;
135}
136
137static int sja1105_init_mii_settings(struct sja1105_private *priv,
138 struct sja1105_dt_port *ports)
139{
140 struct device *dev = &priv->spidev->dev;
141 struct sja1105_xmii_params_entry *mii;
142 struct sja1105_table *table;
143 int i;
144
145 table = &priv->static_config.tables[BLK_IDX_XMII_PARAMS];
146
147 /* Discard previous xMII Mode Parameters Table */
148 if (table->entry_count) {
149 kfree(table->entries);
150 table->entry_count = 0;
151 }
152
153 table->entries = kcalloc(SJA1105_MAX_XMII_PARAMS_COUNT,
154 table->ops->unpacked_entry_size, GFP_KERNEL);
155 if (!table->entries)
156 return -ENOMEM;
157
Vladimir Oltean1fd4a172019-06-08 16:03:42 +0300158 /* Override table based on PHYLINK DT bindings */
Vladimir Oltean8aa9ebc2019-05-02 23:23:30 +0300159 table->entry_count = SJA1105_MAX_XMII_PARAMS_COUNT;
160
161 mii = table->entries;
162
163 for (i = 0; i < SJA1105_NUM_PORTS; i++) {
164 switch (ports[i].phy_mode) {
165 case PHY_INTERFACE_MODE_MII:
166 mii->xmii_mode[i] = XMII_MODE_MII;
167 break;
168 case PHY_INTERFACE_MODE_RMII:
169 mii->xmii_mode[i] = XMII_MODE_RMII;
170 break;
171 case PHY_INTERFACE_MODE_RGMII:
172 case PHY_INTERFACE_MODE_RGMII_ID:
173 case PHY_INTERFACE_MODE_RGMII_RXID:
174 case PHY_INTERFACE_MODE_RGMII_TXID:
175 mii->xmii_mode[i] = XMII_MODE_RGMII;
176 break;
177 default:
178 dev_err(dev, "Unsupported PHY mode %s!\n",
179 phy_modes(ports[i].phy_mode));
180 }
181
182 mii->phy_mac[i] = ports[i].role;
183 }
184 return 0;
185}
186
187static int sja1105_init_static_fdb(struct sja1105_private *priv)
188{
189 struct sja1105_table *table;
190
191 table = &priv->static_config.tables[BLK_IDX_L2_LOOKUP];
192
Vladimir Oltean291d1e72019-05-02 23:23:31 +0300193 /* We only populate the FDB table through dynamic
194 * L2 Address Lookup entries
195 */
Vladimir Oltean8aa9ebc2019-05-02 23:23:30 +0300196 if (table->entry_count) {
197 kfree(table->entries);
198 table->entry_count = 0;
199 }
200 return 0;
201}
202
203static int sja1105_init_l2_lookup_params(struct sja1105_private *priv)
204{
205 struct sja1105_table *table;
Vladimir Oltean6c56e162019-06-26 02:39:37 +0300206 u64 max_fdb_entries = SJA1105_MAX_L2_LOOKUP_COUNT / SJA1105_NUM_PORTS;
Vladimir Oltean8aa9ebc2019-05-02 23:23:30 +0300207 struct sja1105_l2_lookup_params_entry default_l2_lookup_params = {
Vladimir Oltean84567212019-05-02 23:23:36 +0300208 /* Learned FDB entries are forgotten after 300 seconds */
209 .maxage = SJA1105_AGEING_TIME_MS(300000),
Vladimir Oltean8aa9ebc2019-05-02 23:23:30 +0300210 /* All entries within a FDB bin are available for learning */
211 .dyn_tbsz = SJA1105ET_FDB_BIN_SIZE,
Vladimir Oltean1da73822019-06-03 00:15:45 +0300212 /* And the P/Q/R/S equivalent setting: */
213 .start_dynspc = 0,
Vladimir Oltean6c56e162019-06-26 02:39:37 +0300214 .maxaddrp = {max_fdb_entries, max_fdb_entries, max_fdb_entries,
215 max_fdb_entries, max_fdb_entries, },
Vladimir Oltean8aa9ebc2019-05-02 23:23:30 +0300216 /* 2^8 + 2^5 + 2^3 + 2^2 + 2^1 + 1 in Koopman notation */
217 .poly = 0x97,
218 /* This selects between Independent VLAN Learning (IVL) and
219 * Shared VLAN Learning (SVL)
220 */
Vladimir Oltean6d7c7d92019-08-05 01:38:44 +0300221 .shared_learn = true,
Vladimir Oltean8aa9ebc2019-05-02 23:23:30 +0300222 /* Don't discard management traffic based on ENFPORT -
223 * we don't perform SMAC port enforcement anyway, so
224 * what we are setting here doesn't matter.
225 */
226 .no_enf_hostprt = false,
227 /* Don't learn SMAC for mac_fltres1 and mac_fltres0.
228 * Maybe correlate with no_linklocal_learn from bridge driver?
229 */
230 .no_mgmt_learn = true,
Vladimir Oltean1da73822019-06-03 00:15:45 +0300231 /* P/Q/R/S only */
232 .use_static = true,
233 /* Dynamically learned FDB entries can overwrite other (older)
234 * dynamic FDB entries
235 */
236 .owr_dyn = true,
237 .drpnolearn = true,
Vladimir Oltean8aa9ebc2019-05-02 23:23:30 +0300238 };
239
240 table = &priv->static_config.tables[BLK_IDX_L2_LOOKUP_PARAMS];
241
242 if (table->entry_count) {
243 kfree(table->entries);
244 table->entry_count = 0;
245 }
246
247 table->entries = kcalloc(SJA1105_MAX_L2_LOOKUP_PARAMS_COUNT,
248 table->ops->unpacked_entry_size, GFP_KERNEL);
249 if (!table->entries)
250 return -ENOMEM;
251
252 table->entry_count = SJA1105_MAX_L2_LOOKUP_PARAMS_COUNT;
253
254 /* This table only has a single entry */
255 ((struct sja1105_l2_lookup_params_entry *)table->entries)[0] =
256 default_l2_lookup_params;
257
258 return 0;
259}
260
261static int sja1105_init_static_vlan(struct sja1105_private *priv)
262{
263 struct sja1105_table *table;
264 struct sja1105_vlan_lookup_entry pvid = {
265 .ving_mirr = 0,
266 .vegr_mirr = 0,
267 .vmemb_port = 0,
268 .vlan_bc = 0,
269 .tag_port = 0,
Vladimir Olteane3502b82019-06-26 02:39:35 +0300270 .vlanid = 1,
Vladimir Oltean8aa9ebc2019-05-02 23:23:30 +0300271 };
272 int i;
273
274 table = &priv->static_config.tables[BLK_IDX_VLAN_LOOKUP];
275
Vladimir Olteane3502b82019-06-26 02:39:35 +0300276 /* The static VLAN table will only contain the initial pvid of 1.
Vladimir Oltean6666ceb2019-05-02 23:23:34 +0300277 * All other VLANs are to be configured through dynamic entries,
278 * and kept in the static configuration table as backing memory.
Vladimir Oltean8aa9ebc2019-05-02 23:23:30 +0300279 */
280 if (table->entry_count) {
281 kfree(table->entries);
282 table->entry_count = 0;
283 }
284
285 table->entries = kcalloc(1, table->ops->unpacked_entry_size,
286 GFP_KERNEL);
287 if (!table->entries)
288 return -ENOMEM;
289
290 table->entry_count = 1;
291
Vladimir Olteane3502b82019-06-26 02:39:35 +0300292 /* VLAN 1: all DT-defined ports are members; no restrictions on
Vladimir Oltean8aa9ebc2019-05-02 23:23:30 +0300293 * forwarding; always transmit priority-tagged frames as untagged.
294 */
295 for (i = 0; i < SJA1105_NUM_PORTS; i++) {
296 pvid.vmemb_port |= BIT(i);
297 pvid.vlan_bc |= BIT(i);
298 pvid.tag_port &= ~BIT(i);
299 }
300
301 ((struct sja1105_vlan_lookup_entry *)table->entries)[0] = pvid;
302 return 0;
303}
304
305static int sja1105_init_l2_forwarding(struct sja1105_private *priv)
306{
307 struct sja1105_l2_forwarding_entry *l2fwd;
308 struct sja1105_table *table;
309 int i, j;
310
311 table = &priv->static_config.tables[BLK_IDX_L2_FORWARDING];
312
313 if (table->entry_count) {
314 kfree(table->entries);
315 table->entry_count = 0;
316 }
317
318 table->entries = kcalloc(SJA1105_MAX_L2_FORWARDING_COUNT,
319 table->ops->unpacked_entry_size, GFP_KERNEL);
320 if (!table->entries)
321 return -ENOMEM;
322
323 table->entry_count = SJA1105_MAX_L2_FORWARDING_COUNT;
324
325 l2fwd = table->entries;
326
327 /* First 5 entries define the forwarding rules */
328 for (i = 0; i < SJA1105_NUM_PORTS; i++) {
329 unsigned int upstream = dsa_upstream_port(priv->ds, i);
330
331 for (j = 0; j < SJA1105_NUM_TC; j++)
332 l2fwd[i].vlan_pmap[j] = j;
333
334 if (i == upstream)
335 continue;
336
337 sja1105_port_allow_traffic(l2fwd, i, upstream, true);
338 sja1105_port_allow_traffic(l2fwd, upstream, i, true);
339 }
340 /* Next 8 entries define VLAN PCP mapping from ingress to egress.
341 * Create a one-to-one mapping.
342 */
343 for (i = 0; i < SJA1105_NUM_TC; i++)
344 for (j = 0; j < SJA1105_NUM_PORTS; j++)
345 l2fwd[SJA1105_NUM_PORTS + i].vlan_pmap[j] = i;
346
347 return 0;
348}
349
350static int sja1105_init_l2_forwarding_params(struct sja1105_private *priv)
351{
352 struct sja1105_l2_forwarding_params_entry default_l2fwd_params = {
353 /* Disallow dynamic reconfiguration of vlan_pmap */
354 .max_dynp = 0,
355 /* Use a single memory partition for all ingress queues */
356 .part_spc = { SJA1105_MAX_FRAME_MEMORY, 0, 0, 0, 0, 0, 0, 0 },
357 };
358 struct sja1105_table *table;
359
360 table = &priv->static_config.tables[BLK_IDX_L2_FORWARDING_PARAMS];
361
362 if (table->entry_count) {
363 kfree(table->entries);
364 table->entry_count = 0;
365 }
366
367 table->entries = kcalloc(SJA1105_MAX_L2_FORWARDING_PARAMS_COUNT,
368 table->ops->unpacked_entry_size, GFP_KERNEL);
369 if (!table->entries)
370 return -ENOMEM;
371
372 table->entry_count = SJA1105_MAX_L2_FORWARDING_PARAMS_COUNT;
373
374 /* This table only has a single entry */
375 ((struct sja1105_l2_forwarding_params_entry *)table->entries)[0] =
376 default_l2fwd_params;
377
378 return 0;
379}
380
381static int sja1105_init_general_params(struct sja1105_private *priv)
382{
383 struct sja1105_general_params_entry default_general_params = {
384 /* Disallow dynamic changing of the mirror port */
385 .mirr_ptacu = 0,
386 .switchid = priv->ds->index,
387 /* Priority queue for link-local frames trapped to CPU */
Vladimir Oltean08fde092019-06-08 15:04:41 +0300388 .hostprio = 7,
Vladimir Oltean8aa9ebc2019-05-02 23:23:30 +0300389 .mac_fltres1 = SJA1105_LINKLOCAL_FILTER_A,
390 .mac_flt1 = SJA1105_LINKLOCAL_FILTER_A_MASK,
Vladimir Oltean42824462019-06-08 15:04:32 +0300391 .incl_srcpt1 = false,
Vladimir Oltean8aa9ebc2019-05-02 23:23:30 +0300392 .send_meta1 = false,
393 .mac_fltres0 = SJA1105_LINKLOCAL_FILTER_B,
394 .mac_flt0 = SJA1105_LINKLOCAL_FILTER_B_MASK,
Vladimir Oltean42824462019-06-08 15:04:32 +0300395 .incl_srcpt0 = false,
Vladimir Oltean8aa9ebc2019-05-02 23:23:30 +0300396 .send_meta0 = false,
397 /* The destination for traffic matching mac_fltres1 and
398 * mac_fltres0 on all ports except host_port. Such traffic
399 * receieved on host_port itself would be dropped, except
400 * by installing a temporary 'management route'
401 */
402 .host_port = dsa_upstream_port(priv->ds, 0),
403 /* Same as host port */
404 .mirr_port = dsa_upstream_port(priv->ds, 0),
405 /* Link-local traffic received on casc_port will be forwarded
406 * to host_port without embedding the source port and device ID
407 * info in the destination MAC address (presumably because it
408 * is a cascaded port and a downstream SJA switch already did
409 * that). Default to an invalid port (to disable the feature)
410 * and overwrite this if we find any DSA (cascaded) ports.
411 */
412 .casc_port = SJA1105_NUM_PORTS,
413 /* No TTEthernet */
414 .vllupformat = 0,
415 .vlmarker = 0,
416 .vlmask = 0,
417 /* Only update correctionField for 1-step PTP (L2 transport) */
418 .ignore2stf = 0,
Vladimir Oltean6666ceb2019-05-02 23:23:34 +0300419 /* Forcefully disable VLAN filtering by telling
420 * the switch that VLAN has a different EtherType.
421 */
422 .tpid = ETH_P_SJA1105,
423 .tpid2 = ETH_P_SJA1105,
Vladimir Oltean8aa9ebc2019-05-02 23:23:30 +0300424 };
425 struct sja1105_table *table;
Vladimir Oltean227d07a2019-05-05 13:19:27 +0300426 int i, k = 0;
Vladimir Oltean8aa9ebc2019-05-02 23:23:30 +0300427
Vladimir Oltean227d07a2019-05-05 13:19:27 +0300428 for (i = 0; i < SJA1105_NUM_PORTS; i++) {
Vladimir Oltean8aa9ebc2019-05-02 23:23:30 +0300429 if (dsa_is_dsa_port(priv->ds, i))
430 default_general_params.casc_port = i;
Vladimir Oltean227d07a2019-05-05 13:19:27 +0300431 else if (dsa_is_user_port(priv->ds, i))
432 priv->ports[i].mgmt_slot = k++;
433 }
Vladimir Oltean8aa9ebc2019-05-02 23:23:30 +0300434
435 table = &priv->static_config.tables[BLK_IDX_GENERAL_PARAMS];
436
437 if (table->entry_count) {
438 kfree(table->entries);
439 table->entry_count = 0;
440 }
441
442 table->entries = kcalloc(SJA1105_MAX_GENERAL_PARAMS_COUNT,
443 table->ops->unpacked_entry_size, GFP_KERNEL);
444 if (!table->entries)
445 return -ENOMEM;
446
447 table->entry_count = SJA1105_MAX_GENERAL_PARAMS_COUNT;
448
449 /* This table only has a single entry */
450 ((struct sja1105_general_params_entry *)table->entries)[0] =
451 default_general_params;
452
453 return 0;
454}
455
456#define SJA1105_RATE_MBPS(speed) (((speed) * 64000) / 1000)
457
458static inline void
459sja1105_setup_policer(struct sja1105_l2_policing_entry *policing,
460 int index)
461{
462 policing[index].sharindx = index;
463 policing[index].smax = 65535; /* Burst size in bytes */
464 policing[index].rate = SJA1105_RATE_MBPS(1000);
465 policing[index].maxlen = ETH_FRAME_LEN + VLAN_HLEN + ETH_FCS_LEN;
466 policing[index].partition = 0;
467}
468
469static int sja1105_init_l2_policing(struct sja1105_private *priv)
470{
471 struct sja1105_l2_policing_entry *policing;
472 struct sja1105_table *table;
473 int i, j, k;
474
475 table = &priv->static_config.tables[BLK_IDX_L2_POLICING];
476
477 /* Discard previous L2 Policing Table */
478 if (table->entry_count) {
479 kfree(table->entries);
480 table->entry_count = 0;
481 }
482
483 table->entries = kcalloc(SJA1105_MAX_L2_POLICING_COUNT,
484 table->ops->unpacked_entry_size, GFP_KERNEL);
485 if (!table->entries)
486 return -ENOMEM;
487
488 table->entry_count = SJA1105_MAX_L2_POLICING_COUNT;
489
490 policing = table->entries;
491
492 /* k sweeps through all unicast policers (0-39).
493 * bcast sweeps through policers 40-44.
494 */
495 for (i = 0, k = 0; i < SJA1105_NUM_PORTS; i++) {
496 int bcast = (SJA1105_NUM_PORTS * SJA1105_NUM_TC) + i;
497
498 for (j = 0; j < SJA1105_NUM_TC; j++, k++)
499 sja1105_setup_policer(policing, k);
500
501 /* Set up this port's policer for broadcast traffic */
502 sja1105_setup_policer(policing, bcast);
503 }
504 return 0;
505}
506
Vladimir Oltean24c01942019-06-08 15:04:37 +0300507static int sja1105_init_avb_params(struct sja1105_private *priv,
508 bool on)
509{
510 struct sja1105_avb_params_entry *avb;
511 struct sja1105_table *table;
512
513 table = &priv->static_config.tables[BLK_IDX_AVB_PARAMS];
514
515 /* Discard previous AVB Parameters Table */
516 if (table->entry_count) {
517 kfree(table->entries);
518 table->entry_count = 0;
519 }
520
521 /* Configure the reception of meta frames only if requested */
522 if (!on)
523 return 0;
524
525 table->entries = kcalloc(SJA1105_MAX_AVB_PARAMS_COUNT,
526 table->ops->unpacked_entry_size, GFP_KERNEL);
527 if (!table->entries)
528 return -ENOMEM;
529
530 table->entry_count = SJA1105_MAX_AVB_PARAMS_COUNT;
531
532 avb = table->entries;
533
534 avb->destmeta = SJA1105_META_DMAC;
535 avb->srcmeta = SJA1105_META_SMAC;
536
537 return 0;
538}
539
Vladimir Oltean8aa9ebc2019-05-02 23:23:30 +0300540static int sja1105_static_config_load(struct sja1105_private *priv,
541 struct sja1105_dt_port *ports)
542{
543 int rc;
544
545 sja1105_static_config_free(&priv->static_config);
546 rc = sja1105_static_config_init(&priv->static_config,
547 priv->info->static_ops,
548 priv->info->device_id);
549 if (rc)
550 return rc;
551
552 /* Build static configuration */
553 rc = sja1105_init_mac_settings(priv);
554 if (rc < 0)
555 return rc;
556 rc = sja1105_init_mii_settings(priv, ports);
557 if (rc < 0)
558 return rc;
559 rc = sja1105_init_static_fdb(priv);
560 if (rc < 0)
561 return rc;
562 rc = sja1105_init_static_vlan(priv);
563 if (rc < 0)
564 return rc;
565 rc = sja1105_init_l2_lookup_params(priv);
566 if (rc < 0)
567 return rc;
568 rc = sja1105_init_l2_forwarding(priv);
569 if (rc < 0)
570 return rc;
571 rc = sja1105_init_l2_forwarding_params(priv);
572 if (rc < 0)
573 return rc;
574 rc = sja1105_init_l2_policing(priv);
575 if (rc < 0)
576 return rc;
577 rc = sja1105_init_general_params(priv);
578 if (rc < 0)
579 return rc;
Vladimir Oltean24c01942019-06-08 15:04:37 +0300580 rc = sja1105_init_avb_params(priv, false);
581 if (rc < 0)
582 return rc;
Vladimir Oltean8aa9ebc2019-05-02 23:23:30 +0300583
584 /* Send initial configuration to hardware via SPI */
585 return sja1105_static_config_upload(priv);
586}
587
Vladimir Olteanf5b86312019-05-02 23:23:32 +0300588static int sja1105_parse_rgmii_delays(struct sja1105_private *priv,
589 const struct sja1105_dt_port *ports)
590{
591 int i;
592
593 for (i = 0; i < SJA1105_NUM_PORTS; i++) {
594 if (ports->role == XMII_MAC)
595 continue;
596
597 if (ports->phy_mode == PHY_INTERFACE_MODE_RGMII_RXID ||
598 ports->phy_mode == PHY_INTERFACE_MODE_RGMII_ID)
599 priv->rgmii_rx_delay[i] = true;
600
601 if (ports->phy_mode == PHY_INTERFACE_MODE_RGMII_TXID ||
602 ports->phy_mode == PHY_INTERFACE_MODE_RGMII_ID)
603 priv->rgmii_tx_delay[i] = true;
604
605 if ((priv->rgmii_rx_delay[i] || priv->rgmii_tx_delay[i]) &&
606 !priv->info->setup_rgmii_delay)
607 return -EINVAL;
608 }
609 return 0;
610}
611
Vladimir Oltean8aa9ebc2019-05-02 23:23:30 +0300612static int sja1105_parse_ports_node(struct sja1105_private *priv,
613 struct sja1105_dt_port *ports,
614 struct device_node *ports_node)
615{
616 struct device *dev = &priv->spidev->dev;
617 struct device_node *child;
618
619 for_each_child_of_node(ports_node, child) {
620 struct device_node *phy_node;
621 int phy_mode;
622 u32 index;
623
624 /* Get switch port number from DT */
625 if (of_property_read_u32(child, "reg", &index) < 0) {
626 dev_err(dev, "Port number not defined in device tree "
627 "(property \"reg\")\n");
Nishka Dasgupta7ba771e2019-07-23 16:14:48 +0530628 of_node_put(child);
Vladimir Oltean8aa9ebc2019-05-02 23:23:30 +0300629 return -ENODEV;
630 }
631
632 /* Get PHY mode from DT */
633 phy_mode = of_get_phy_mode(child);
634 if (phy_mode < 0) {
635 dev_err(dev, "Failed to read phy-mode or "
636 "phy-interface-type property for port %d\n",
637 index);
Nishka Dasgupta7ba771e2019-07-23 16:14:48 +0530638 of_node_put(child);
Vladimir Oltean8aa9ebc2019-05-02 23:23:30 +0300639 return -ENODEV;
640 }
641 ports[index].phy_mode = phy_mode;
642
643 phy_node = of_parse_phandle(child, "phy-handle", 0);
644 if (!phy_node) {
645 if (!of_phy_is_fixed_link(child)) {
646 dev_err(dev, "phy-handle or fixed-link "
647 "properties missing!\n");
Nishka Dasgupta7ba771e2019-07-23 16:14:48 +0530648 of_node_put(child);
Vladimir Oltean8aa9ebc2019-05-02 23:23:30 +0300649 return -ENODEV;
650 }
651 /* phy-handle is missing, but fixed-link isn't.
652 * So it's a fixed link. Default to PHY role.
653 */
654 ports[index].role = XMII_PHY;
655 } else {
656 /* phy-handle present => put port in MAC role */
657 ports[index].role = XMII_MAC;
658 of_node_put(phy_node);
659 }
660
661 /* The MAC/PHY role can be overridden with explicit bindings */
662 if (of_property_read_bool(child, "sja1105,role-mac"))
663 ports[index].role = XMII_MAC;
664 else if (of_property_read_bool(child, "sja1105,role-phy"))
665 ports[index].role = XMII_PHY;
666 }
667
668 return 0;
669}
670
671static int sja1105_parse_dt(struct sja1105_private *priv,
672 struct sja1105_dt_port *ports)
673{
674 struct device *dev = &priv->spidev->dev;
675 struct device_node *switch_node = dev->of_node;
676 struct device_node *ports_node;
677 int rc;
678
679 ports_node = of_get_child_by_name(switch_node, "ports");
680 if (!ports_node) {
681 dev_err(dev, "Incorrect bindings: absent \"ports\" node\n");
682 return -ENODEV;
683 }
684
685 rc = sja1105_parse_ports_node(priv, ports, ports_node);
686 of_node_put(ports_node);
687
688 return rc;
689}
690
Vladimir Olteanc44d0532019-06-08 16:03:41 +0300691/* Convert link speed from SJA1105 to ethtool encoding */
Vladimir Oltean8aa9ebc2019-05-02 23:23:30 +0300692static int sja1105_speed[] = {
Vladimir Olteanc44d0532019-06-08 16:03:41 +0300693 [SJA1105_SPEED_AUTO] = SPEED_UNKNOWN,
694 [SJA1105_SPEED_10MBPS] = SPEED_10,
695 [SJA1105_SPEED_100MBPS] = SPEED_100,
696 [SJA1105_SPEED_1000MBPS] = SPEED_1000,
Vladimir Oltean8aa9ebc2019-05-02 23:23:30 +0300697};
698
Vladimir Oltean8400cff2019-06-08 16:03:44 +0300699/* Set link speed in the MAC configuration for a specific port. */
Vladimir Oltean8aa9ebc2019-05-02 23:23:30 +0300700static int sja1105_adjust_port_config(struct sja1105_private *priv, int port,
Vladimir Oltean8400cff2019-06-08 16:03:44 +0300701 int speed_mbps)
Vladimir Oltean8aa9ebc2019-05-02 23:23:30 +0300702{
703 struct sja1105_xmii_params_entry *mii;
704 struct sja1105_mac_config_entry *mac;
705 struct device *dev = priv->ds->dev;
706 sja1105_phy_interface_t phy_mode;
707 sja1105_speed_t speed;
708 int rc;
709
Vladimir Oltean8400cff2019-06-08 16:03:44 +0300710 /* On P/Q/R/S, one can read from the device via the MAC reconfiguration
711 * tables. On E/T, MAC reconfig tables are not readable, only writable.
712 * We have to *know* what the MAC looks like. For the sake of keeping
713 * the code common, we'll use the static configuration tables as a
714 * reasonable approximation for both E/T and P/Q/R/S.
715 */
Vladimir Oltean8aa9ebc2019-05-02 23:23:30 +0300716 mac = priv->static_config.tables[BLK_IDX_MAC_CONFIG].entries;
Vladimir Oltean8400cff2019-06-08 16:03:44 +0300717 mii = priv->static_config.tables[BLK_IDX_XMII_PARAMS].entries;
Vladimir Oltean8aa9ebc2019-05-02 23:23:30 +0300718
Vladimir Olteanf4cfcfb2019-06-03 02:31:37 +0300719 switch (speed_mbps) {
Vladimir Olteanc44d0532019-06-08 16:03:41 +0300720 case SPEED_UNKNOWN:
Vladimir Olteana979a0a2019-06-28 00:46:35 +0300721 /* PHYLINK called sja1105_mac_config() to inform us about
722 * the state->interface, but AN has not completed and the
723 * speed is not yet valid. UM10944.pdf says that setting
724 * SJA1105_SPEED_AUTO at runtime disables the port, so that is
725 * ok for power consumption in case AN will never complete -
726 * otherwise PHYLINK should come back with a new update.
727 */
Vladimir Olteanf4cfcfb2019-06-03 02:31:37 +0300728 speed = SJA1105_SPEED_AUTO;
729 break;
Vladimir Olteanc44d0532019-06-08 16:03:41 +0300730 case SPEED_10:
Vladimir Olteanf4cfcfb2019-06-03 02:31:37 +0300731 speed = SJA1105_SPEED_10MBPS;
732 break;
Vladimir Olteanc44d0532019-06-08 16:03:41 +0300733 case SPEED_100:
Vladimir Olteanf4cfcfb2019-06-03 02:31:37 +0300734 speed = SJA1105_SPEED_100MBPS;
735 break;
Vladimir Olteanc44d0532019-06-08 16:03:41 +0300736 case SPEED_1000:
Vladimir Olteanf4cfcfb2019-06-03 02:31:37 +0300737 speed = SJA1105_SPEED_1000MBPS;
738 break;
739 default:
Vladimir Oltean8aa9ebc2019-05-02 23:23:30 +0300740 dev_err(dev, "Invalid speed %iMbps\n", speed_mbps);
741 return -EINVAL;
742 }
743
Vladimir Oltean8400cff2019-06-08 16:03:44 +0300744 /* Overwrite SJA1105_SPEED_AUTO from the static MAC configuration
745 * table, since this will be used for the clocking setup, and we no
746 * longer need to store it in the static config (already told hardware
747 * we want auto during upload phase).
Vladimir Oltean8aa9ebc2019-05-02 23:23:30 +0300748 */
Vladimir Olteanf4cfcfb2019-06-03 02:31:37 +0300749 mac[port].speed = speed;
Vladimir Oltean8aa9ebc2019-05-02 23:23:30 +0300750
Vladimir Oltean8aa9ebc2019-05-02 23:23:30 +0300751 /* Write to the dynamic reconfiguration tables */
Vladimir Oltean8400cff2019-06-08 16:03:44 +0300752 rc = sja1105_dynamic_config_write(priv, BLK_IDX_MAC_CONFIG, port,
753 &mac[port], true);
Vladimir Oltean8aa9ebc2019-05-02 23:23:30 +0300754 if (rc < 0) {
755 dev_err(dev, "Failed to write MAC config: %d\n", rc);
756 return rc;
757 }
758
759 /* Reconfigure the PLLs for the RGMII interfaces (required 125 MHz at
760 * gigabit, 25 MHz at 100 Mbps and 2.5 MHz at 10 Mbps). For MII and
761 * RMII no change of the clock setup is required. Actually, changing
762 * the clock setup does interrupt the clock signal for a certain time
763 * which causes trouble for all PHYs relying on this signal.
764 */
Vladimir Oltean8aa9ebc2019-05-02 23:23:30 +0300765 phy_mode = mii->xmii_mode[port];
766 if (phy_mode != XMII_MODE_RGMII)
767 return 0;
768
769 return sja1105_clocking_setup_port(priv, port);
770}
771
Vladimir Oltean39710222019-06-28 00:46:36 +0300772/* The SJA1105 MAC programming model is through the static config (the xMII
773 * Mode table cannot be dynamically reconfigured), and we have to program
774 * that early (earlier than PHYLINK calls us, anyway).
775 * So just error out in case the connected PHY attempts to change the initial
776 * system interface MII protocol from what is defined in the DT, at least for
777 * now.
778 */
779static bool sja1105_phy_mode_mismatch(struct sja1105_private *priv, int port,
780 phy_interface_t interface)
781{
782 struct sja1105_xmii_params_entry *mii;
783 sja1105_phy_interface_t phy_mode;
784
785 mii = priv->static_config.tables[BLK_IDX_XMII_PARAMS].entries;
786 phy_mode = mii->xmii_mode[port];
787
788 switch (interface) {
789 case PHY_INTERFACE_MODE_MII:
790 return (phy_mode != XMII_MODE_MII);
791 case PHY_INTERFACE_MODE_RMII:
792 return (phy_mode != XMII_MODE_RMII);
793 case PHY_INTERFACE_MODE_RGMII:
794 case PHY_INTERFACE_MODE_RGMII_ID:
795 case PHY_INTERFACE_MODE_RGMII_RXID:
796 case PHY_INTERFACE_MODE_RGMII_TXID:
797 return (phy_mode != XMII_MODE_RGMII);
798 default:
799 return true;
800 }
801}
802
Vladimir Olteanaf7cd032019-05-28 20:38:17 +0300803static void sja1105_mac_config(struct dsa_switch *ds, int port,
804 unsigned int link_an_mode,
805 const struct phylink_link_state *state)
Vladimir Oltean8aa9ebc2019-05-02 23:23:30 +0300806{
807 struct sja1105_private *priv = ds->priv;
808
Vladimir Oltean39710222019-06-28 00:46:36 +0300809 if (sja1105_phy_mode_mismatch(priv, port, state->interface))
810 return;
811
Vladimir Oltean9f971572019-06-28 00:46:37 +0300812 if (link_an_mode == MLO_AN_INBAND) {
813 dev_err(ds->dev, "In-band AN not supported!\n");
814 return;
815 }
816
Vladimir Oltean8400cff2019-06-08 16:03:44 +0300817 sja1105_adjust_port_config(priv, port, state->speed);
818}
819
820static void sja1105_mac_link_down(struct dsa_switch *ds, int port,
821 unsigned int mode,
822 phy_interface_t interface)
823{
824 sja1105_inhibit_tx(ds->priv, BIT(port), true);
825}
826
827static void sja1105_mac_link_up(struct dsa_switch *ds, int port,
828 unsigned int mode,
829 phy_interface_t interface,
830 struct phy_device *phydev)
831{
832 sja1105_inhibit_tx(ds->priv, BIT(port), false);
Vladimir Oltean8aa9ebc2019-05-02 23:23:30 +0300833}
834
Vladimir Olteanad9f2992019-05-02 23:23:38 +0300835static void sja1105_phylink_validate(struct dsa_switch *ds, int port,
836 unsigned long *supported,
837 struct phylink_link_state *state)
838{
839 /* Construct a new mask which exhaustively contains all link features
840 * supported by the MAC, and then apply that (logical AND) to what will
841 * be sent to the PHY for "marketing".
842 */
843 __ETHTOOL_DECLARE_LINK_MODE_MASK(mask) = { 0, };
844 struct sja1105_private *priv = ds->priv;
845 struct sja1105_xmii_params_entry *mii;
846
847 mii = priv->static_config.tables[BLK_IDX_XMII_PARAMS].entries;
848
Vladimir Oltean39710222019-06-28 00:46:36 +0300849 /* include/linux/phylink.h says:
850 * When @state->interface is %PHY_INTERFACE_MODE_NA, phylink
851 * expects the MAC driver to return all supported link modes.
852 */
853 if (state->interface != PHY_INTERFACE_MODE_NA &&
854 sja1105_phy_mode_mismatch(priv, port, state->interface)) {
855 bitmap_zero(supported, __ETHTOOL_LINK_MODE_MASK_NBITS);
856 return;
857 }
858
Vladimir Olteanad9f2992019-05-02 23:23:38 +0300859 /* The MAC does not support pause frames, and also doesn't
860 * support half-duplex traffic modes.
861 */
862 phylink_set(mask, Autoneg);
863 phylink_set(mask, MII);
864 phylink_set(mask, 10baseT_Full);
865 phylink_set(mask, 100baseT_Full);
866 if (mii->xmii_mode[port] == XMII_MODE_RGMII)
867 phylink_set(mask, 1000baseT_Full);
868
869 bitmap_and(supported, supported, mask, __ETHTOOL_LINK_MODE_MASK_NBITS);
870 bitmap_and(state->advertising, state->advertising, mask,
871 __ETHTOOL_LINK_MODE_MASK_NBITS);
872}
873
Vladimir Oltean60f60532019-06-26 02:39:38 +0300874static int
875sja1105_find_static_fdb_entry(struct sja1105_private *priv, int port,
876 const struct sja1105_l2_lookup_entry *requested)
877{
878 struct sja1105_l2_lookup_entry *l2_lookup;
879 struct sja1105_table *table;
880 int i;
881
882 table = &priv->static_config.tables[BLK_IDX_L2_LOOKUP];
883 l2_lookup = table->entries;
884
885 for (i = 0; i < table->entry_count; i++)
886 if (l2_lookup[i].macaddr == requested->macaddr &&
887 l2_lookup[i].vlanid == requested->vlanid &&
888 l2_lookup[i].destports & BIT(port))
889 return i;
890
891 return -1;
892}
893
894/* We want FDB entries added statically through the bridge command to persist
895 * across switch resets, which are a common thing during normal SJA1105
896 * operation. So we have to back them up in the static configuration tables
897 * and hence apply them on next static config upload... yay!
898 */
899static int
900sja1105_static_fdb_change(struct sja1105_private *priv, int port,
901 const struct sja1105_l2_lookup_entry *requested,
902 bool keep)
903{
904 struct sja1105_l2_lookup_entry *l2_lookup;
905 struct sja1105_table *table;
906 int rc, match;
907
908 table = &priv->static_config.tables[BLK_IDX_L2_LOOKUP];
909
910 match = sja1105_find_static_fdb_entry(priv, port, requested);
911 if (match < 0) {
912 /* Can't delete a missing entry. */
913 if (!keep)
914 return 0;
915
916 /* No match => new entry */
917 rc = sja1105_table_resize(table, table->entry_count + 1);
918 if (rc)
919 return rc;
920
921 match = table->entry_count - 1;
922 }
923
924 /* Assign pointer after the resize (it may be new memory) */
925 l2_lookup = table->entries;
926
927 /* We have a match.
928 * If the job was to add this FDB entry, it's already done (mostly
929 * anyway, since the port forwarding mask may have changed, case in
930 * which we update it).
931 * Otherwise we have to delete it.
932 */
933 if (keep) {
934 l2_lookup[match] = *requested;
935 return 0;
936 }
937
938 /* To remove, the strategy is to overwrite the element with
939 * the last one, and then reduce the array size by 1
940 */
941 l2_lookup[match] = l2_lookup[table->entry_count - 1];
942 return sja1105_table_resize(table, table->entry_count - 1);
943}
944
Vladimir Oltean291d1e72019-05-02 23:23:31 +0300945/* First-generation switches have a 4-way set associative TCAM that
946 * holds the FDB entries. An FDB index spans from 0 to 1023 and is comprised of
947 * a "bin" (grouping of 4 entries) and a "way" (an entry within a bin).
948 * For the placement of a newly learnt FDB entry, the switch selects the bin
949 * based on a hash function, and the way within that bin incrementally.
950 */
951static inline int sja1105et_fdb_index(int bin, int way)
952{
953 return bin * SJA1105ET_FDB_BIN_SIZE + way;
954}
955
Vladimir Oltean9dfa6912019-06-03 00:11:57 +0300956static int sja1105et_is_fdb_entry_in_bin(struct sja1105_private *priv, int bin,
957 const u8 *addr, u16 vid,
958 struct sja1105_l2_lookup_entry *match,
959 int *last_unused)
Vladimir Oltean291d1e72019-05-02 23:23:31 +0300960{
961 int way;
962
963 for (way = 0; way < SJA1105ET_FDB_BIN_SIZE; way++) {
964 struct sja1105_l2_lookup_entry l2_lookup = {0};
965 int index = sja1105et_fdb_index(bin, way);
966
967 /* Skip unused entries, optionally marking them
968 * into the return value
969 */
970 if (sja1105_dynamic_config_read(priv, BLK_IDX_L2_LOOKUP,
971 index, &l2_lookup)) {
972 if (last_unused)
973 *last_unused = way;
974 continue;
975 }
976
977 if (l2_lookup.macaddr == ether_addr_to_u64(addr) &&
978 l2_lookup.vlanid == vid) {
979 if (match)
980 *match = l2_lookup;
981 return way;
982 }
983 }
984 /* Return an invalid entry index if not found */
985 return -1;
986}
987
Vladimir Oltean9dfa6912019-06-03 00:11:57 +0300988int sja1105et_fdb_add(struct dsa_switch *ds, int port,
989 const unsigned char *addr, u16 vid)
Vladimir Oltean291d1e72019-05-02 23:23:31 +0300990{
991 struct sja1105_l2_lookup_entry l2_lookup = {0};
992 struct sja1105_private *priv = ds->priv;
993 struct device *dev = ds->dev;
994 int last_unused = -1;
Vladimir Oltean60f60532019-06-26 02:39:38 +0300995 int bin, way, rc;
Vladimir Oltean291d1e72019-05-02 23:23:31 +0300996
Vladimir Oltean9dfa6912019-06-03 00:11:57 +0300997 bin = sja1105et_fdb_hash(priv, addr, vid);
Vladimir Oltean291d1e72019-05-02 23:23:31 +0300998
Vladimir Oltean9dfa6912019-06-03 00:11:57 +0300999 way = sja1105et_is_fdb_entry_in_bin(priv, bin, addr, vid,
1000 &l2_lookup, &last_unused);
Vladimir Oltean291d1e72019-05-02 23:23:31 +03001001 if (way >= 0) {
1002 /* We have an FDB entry. Is our port in the destination
1003 * mask? If yes, we need to do nothing. If not, we need
1004 * to rewrite the entry by adding this port to it.
1005 */
1006 if (l2_lookup.destports & BIT(port))
1007 return 0;
1008 l2_lookup.destports |= BIT(port);
1009 } else {
1010 int index = sja1105et_fdb_index(bin, way);
1011
1012 /* We don't have an FDB entry. We construct a new one and
1013 * try to find a place for it within the FDB table.
1014 */
1015 l2_lookup.macaddr = ether_addr_to_u64(addr);
1016 l2_lookup.destports = BIT(port);
1017 l2_lookup.vlanid = vid;
1018
1019 if (last_unused >= 0) {
1020 way = last_unused;
1021 } else {
1022 /* Bin is full, need to evict somebody.
1023 * Choose victim at random. If you get these messages
1024 * often, you may need to consider changing the
1025 * distribution function:
1026 * static_config[BLK_IDX_L2_LOOKUP_PARAMS].entries->poly
1027 */
1028 get_random_bytes(&way, sizeof(u8));
1029 way %= SJA1105ET_FDB_BIN_SIZE;
1030 dev_warn(dev, "Warning, FDB bin %d full while adding entry for %pM. Evicting entry %u.\n",
1031 bin, addr, way);
1032 /* Evict entry */
1033 sja1105_dynamic_config_write(priv, BLK_IDX_L2_LOOKUP,
1034 index, NULL, false);
1035 }
1036 }
1037 l2_lookup.index = sja1105et_fdb_index(bin, way);
1038
Vladimir Oltean60f60532019-06-26 02:39:38 +03001039 rc = sja1105_dynamic_config_write(priv, BLK_IDX_L2_LOOKUP,
1040 l2_lookup.index, &l2_lookup,
1041 true);
1042 if (rc < 0)
1043 return rc;
1044
1045 return sja1105_static_fdb_change(priv, port, &l2_lookup, true);
Vladimir Oltean291d1e72019-05-02 23:23:31 +03001046}
1047
Vladimir Oltean9dfa6912019-06-03 00:11:57 +03001048int sja1105et_fdb_del(struct dsa_switch *ds, int port,
1049 const unsigned char *addr, u16 vid)
Vladimir Oltean291d1e72019-05-02 23:23:31 +03001050{
1051 struct sja1105_l2_lookup_entry l2_lookup = {0};
1052 struct sja1105_private *priv = ds->priv;
Vladimir Oltean60f60532019-06-26 02:39:38 +03001053 int index, bin, way, rc;
Vladimir Oltean291d1e72019-05-02 23:23:31 +03001054 bool keep;
1055
Vladimir Oltean9dfa6912019-06-03 00:11:57 +03001056 bin = sja1105et_fdb_hash(priv, addr, vid);
1057 way = sja1105et_is_fdb_entry_in_bin(priv, bin, addr, vid,
1058 &l2_lookup, NULL);
Vladimir Oltean291d1e72019-05-02 23:23:31 +03001059 if (way < 0)
1060 return 0;
1061 index = sja1105et_fdb_index(bin, way);
1062
1063 /* We have an FDB entry. Is our port in the destination mask? If yes,
1064 * we need to remove it. If the resulting port mask becomes empty, we
1065 * need to completely evict the FDB entry.
1066 * Otherwise we just write it back.
1067 */
Vladimir Oltean7752e932019-06-03 00:15:54 +03001068 l2_lookup.destports &= ~BIT(port);
1069
Vladimir Oltean291d1e72019-05-02 23:23:31 +03001070 if (l2_lookup.destports)
1071 keep = true;
1072 else
1073 keep = false;
1074
Vladimir Oltean60f60532019-06-26 02:39:38 +03001075 rc = sja1105_dynamic_config_write(priv, BLK_IDX_L2_LOOKUP,
1076 index, &l2_lookup, keep);
1077 if (rc < 0)
1078 return rc;
1079
1080 return sja1105_static_fdb_change(priv, port, &l2_lookup, keep);
Vladimir Oltean291d1e72019-05-02 23:23:31 +03001081}
1082
Vladimir Oltean9dfa6912019-06-03 00:11:57 +03001083int sja1105pqrs_fdb_add(struct dsa_switch *ds, int port,
1084 const unsigned char *addr, u16 vid)
1085{
Vladimir Oltean1da73822019-06-03 00:15:45 +03001086 struct sja1105_l2_lookup_entry l2_lookup = {0};
1087 struct sja1105_private *priv = ds->priv;
1088 int rc, i;
1089
1090 /* Search for an existing entry in the FDB table */
1091 l2_lookup.macaddr = ether_addr_to_u64(addr);
1092 l2_lookup.vlanid = vid;
1093 l2_lookup.iotag = SJA1105_S_TAG;
1094 l2_lookup.mask_macaddr = GENMASK_ULL(ETH_ALEN * 8 - 1, 0);
Vladimir Oltean6d7c7d92019-08-05 01:38:44 +03001095 if (dsa_port_is_vlan_filtering(&ds->ports[port])) {
1096 l2_lookup.mask_vlanid = VLAN_VID_MASK;
1097 l2_lookup.mask_iotag = BIT(0);
1098 } else {
1099 l2_lookup.mask_vlanid = 0;
1100 l2_lookup.mask_iotag = 0;
1101 }
Vladimir Oltean1da73822019-06-03 00:15:45 +03001102 l2_lookup.destports = BIT(port);
1103
1104 rc = sja1105_dynamic_config_read(priv, BLK_IDX_L2_LOOKUP,
1105 SJA1105_SEARCH, &l2_lookup);
1106 if (rc == 0) {
1107 /* Found and this port is already in the entry's
1108 * port mask => job done
1109 */
1110 if (l2_lookup.destports & BIT(port))
1111 return 0;
1112 /* l2_lookup.index is populated by the switch in case it
1113 * found something.
1114 */
1115 l2_lookup.destports |= BIT(port);
1116 goto skip_finding_an_index;
1117 }
1118
1119 /* Not found, so try to find an unused spot in the FDB.
1120 * This is slightly inefficient because the strategy is knock-knock at
1121 * every possible position from 0 to 1023.
1122 */
1123 for (i = 0; i < SJA1105_MAX_L2_LOOKUP_COUNT; i++) {
1124 rc = sja1105_dynamic_config_read(priv, BLK_IDX_L2_LOOKUP,
1125 i, NULL);
1126 if (rc < 0)
1127 break;
1128 }
1129 if (i == SJA1105_MAX_L2_LOOKUP_COUNT) {
1130 dev_err(ds->dev, "FDB is full, cannot add entry.\n");
1131 return -EINVAL;
1132 }
Vladimir Oltean17ae6552019-06-26 02:39:40 +03001133 l2_lookup.lockeds = true;
Vladimir Oltean1da73822019-06-03 00:15:45 +03001134 l2_lookup.index = i;
1135
1136skip_finding_an_index:
Vladimir Oltean60f60532019-06-26 02:39:38 +03001137 rc = sja1105_dynamic_config_write(priv, BLK_IDX_L2_LOOKUP,
1138 l2_lookup.index, &l2_lookup,
1139 true);
1140 if (rc < 0)
1141 return rc;
1142
1143 return sja1105_static_fdb_change(priv, port, &l2_lookup, true);
Vladimir Oltean9dfa6912019-06-03 00:11:57 +03001144}
1145
1146int sja1105pqrs_fdb_del(struct dsa_switch *ds, int port,
1147 const unsigned char *addr, u16 vid)
1148{
Vladimir Oltean1da73822019-06-03 00:15:45 +03001149 struct sja1105_l2_lookup_entry l2_lookup = {0};
1150 struct sja1105_private *priv = ds->priv;
1151 bool keep;
1152 int rc;
1153
1154 l2_lookup.macaddr = ether_addr_to_u64(addr);
1155 l2_lookup.vlanid = vid;
1156 l2_lookup.iotag = SJA1105_S_TAG;
1157 l2_lookup.mask_macaddr = GENMASK_ULL(ETH_ALEN * 8 - 1, 0);
Vladimir Oltean6d7c7d92019-08-05 01:38:44 +03001158 if (dsa_port_is_vlan_filtering(&ds->ports[port])) {
1159 l2_lookup.mask_vlanid = VLAN_VID_MASK;
1160 l2_lookup.mask_iotag = BIT(0);
1161 } else {
1162 l2_lookup.mask_vlanid = 0;
1163 l2_lookup.mask_iotag = 0;
1164 }
Vladimir Oltean1da73822019-06-03 00:15:45 +03001165 l2_lookup.destports = BIT(port);
1166
1167 rc = sja1105_dynamic_config_read(priv, BLK_IDX_L2_LOOKUP,
1168 SJA1105_SEARCH, &l2_lookup);
1169 if (rc < 0)
1170 return 0;
1171
1172 l2_lookup.destports &= ~BIT(port);
1173
1174 /* Decide whether we remove just this port from the FDB entry,
1175 * or if we remove it completely.
1176 */
1177 if (l2_lookup.destports)
1178 keep = true;
1179 else
1180 keep = false;
1181
Vladimir Oltean60f60532019-06-26 02:39:38 +03001182 rc = sja1105_dynamic_config_write(priv, BLK_IDX_L2_LOOKUP,
1183 l2_lookup.index, &l2_lookup, keep);
1184 if (rc < 0)
1185 return rc;
1186
1187 return sja1105_static_fdb_change(priv, port, &l2_lookup, keep);
Vladimir Oltean9dfa6912019-06-03 00:11:57 +03001188}
1189
1190static int sja1105_fdb_add(struct dsa_switch *ds, int port,
1191 const unsigned char *addr, u16 vid)
1192{
1193 struct sja1105_private *priv = ds->priv;
Vladimir Olteanb3ee5262019-06-26 02:39:41 +03001194
Vladimir Oltean6d7c7d92019-08-05 01:38:44 +03001195 /* dsa_8021q is in effect when the bridge's vlan_filtering isn't,
1196 * so the switch still does some VLAN processing internally.
1197 * But Shared VLAN Learning (SVL) is also active, and it will take
1198 * care of autonomous forwarding between the unique pvid's of each
1199 * port. Here we just make sure that users can't add duplicate FDB
1200 * entries when in this mode - the actual VID doesn't matter except
1201 * for what gets printed in 'bridge fdb show'. In the case of zero,
1202 * no VID gets printed at all.
Vladimir Oltean93647592019-06-03 00:16:01 +03001203 */
Vladimir Oltean6d7c7d92019-08-05 01:38:44 +03001204 if (!dsa_port_is_vlan_filtering(&ds->ports[port]))
1205 vid = 0;
Vladimir Oltean93647592019-06-03 00:16:01 +03001206
Vladimir Oltean6d7c7d92019-08-05 01:38:44 +03001207 return priv->info->fdb_add_cmd(ds, port, addr, vid);
Vladimir Oltean9dfa6912019-06-03 00:11:57 +03001208}
1209
1210static int sja1105_fdb_del(struct dsa_switch *ds, int port,
1211 const unsigned char *addr, u16 vid)
1212{
1213 struct sja1105_private *priv = ds->priv;
1214
Vladimir Oltean6d7c7d92019-08-05 01:38:44 +03001215 if (!dsa_port_is_vlan_filtering(&ds->ports[port]))
1216 vid = 0;
Vladimir Oltean93647592019-06-03 00:16:01 +03001217
Vladimir Oltean6d7c7d92019-08-05 01:38:44 +03001218 return priv->info->fdb_del_cmd(ds, port, addr, vid);
Vladimir Oltean9dfa6912019-06-03 00:11:57 +03001219}
1220
Vladimir Oltean291d1e72019-05-02 23:23:31 +03001221static int sja1105_fdb_dump(struct dsa_switch *ds, int port,
1222 dsa_fdb_dump_cb_t *cb, void *data)
1223{
1224 struct sja1105_private *priv = ds->priv;
1225 struct device *dev = ds->dev;
Vladimir Olteanb3ee5262019-06-26 02:39:41 +03001226 u16 rx_vid, tx_vid;
Vladimir Oltean291d1e72019-05-02 23:23:31 +03001227 int i;
1228
Vladimir Olteanb3ee5262019-06-26 02:39:41 +03001229 rx_vid = dsa_8021q_rx_vid(ds, port);
1230 tx_vid = dsa_8021q_tx_vid(ds, port);
1231
Vladimir Oltean291d1e72019-05-02 23:23:31 +03001232 for (i = 0; i < SJA1105_MAX_L2_LOOKUP_COUNT; i++) {
1233 struct sja1105_l2_lookup_entry l2_lookup = {0};
1234 u8 macaddr[ETH_ALEN];
1235 int rc;
1236
1237 rc = sja1105_dynamic_config_read(priv, BLK_IDX_L2_LOOKUP,
1238 i, &l2_lookup);
1239 /* No fdb entry at i, not an issue */
Vladimir Olteandef84602019-06-03 00:11:59 +03001240 if (rc == -ENOENT)
Vladimir Oltean291d1e72019-05-02 23:23:31 +03001241 continue;
1242 if (rc) {
1243 dev_err(dev, "Failed to dump FDB: %d\n", rc);
1244 return rc;
1245 }
1246
1247 /* FDB dump callback is per port. This means we have to
1248 * disregard a valid entry if it's not for this port, even if
1249 * only to revisit it later. This is inefficient because the
1250 * 1024-sized FDB table needs to be traversed 4 times through
1251 * SPI during a 'bridge fdb show' command.
1252 */
1253 if (!(l2_lookup.destports & BIT(port)))
1254 continue;
1255 u64_to_ether_addr(l2_lookup.macaddr, macaddr);
Vladimir Oltean93647592019-06-03 00:16:01 +03001256
Vladimir Olteand7637782019-06-26 02:39:42 +03001257 /* On SJA1105 E/T, the switch doesn't implement the LOCKEDS
1258 * bit, so it doesn't tell us whether a FDB entry is static
1259 * or not.
1260 * But, of course, we can find out - we're the ones who added
1261 * it in the first place.
1262 */
1263 if (priv->info->device_id == SJA1105E_DEVICE_ID ||
1264 priv->info->device_id == SJA1105T_DEVICE_ID) {
1265 int match;
1266
1267 match = sja1105_find_static_fdb_entry(priv, port,
1268 &l2_lookup);
1269 l2_lookup.lockeds = (match >= 0);
1270 }
1271
Vladimir Oltean6d7c7d92019-08-05 01:38:44 +03001272 /* We need to hide the dsa_8021q VLANs from the user. */
1273 if (!dsa_port_is_vlan_filtering(&ds->ports[port]))
1274 l2_lookup.vlanid = 0;
Vladimir Oltean17ae6552019-06-26 02:39:40 +03001275 cb(macaddr, l2_lookup.vlanid, l2_lookup.lockeds, data);
Vladimir Oltean291d1e72019-05-02 23:23:31 +03001276 }
1277 return 0;
1278}
1279
1280/* This callback needs to be present */
1281static int sja1105_mdb_prepare(struct dsa_switch *ds, int port,
1282 const struct switchdev_obj_port_mdb *mdb)
1283{
1284 return 0;
1285}
1286
1287static void sja1105_mdb_add(struct dsa_switch *ds, int port,
1288 const struct switchdev_obj_port_mdb *mdb)
1289{
1290 sja1105_fdb_add(ds, port, mdb->addr, mdb->vid);
1291}
1292
1293static int sja1105_mdb_del(struct dsa_switch *ds, int port,
1294 const struct switchdev_obj_port_mdb *mdb)
1295{
1296 return sja1105_fdb_del(ds, port, mdb->addr, mdb->vid);
1297}
1298
Vladimir Oltean8aa9ebc2019-05-02 23:23:30 +03001299static int sja1105_bridge_member(struct dsa_switch *ds, int port,
1300 struct net_device *br, bool member)
1301{
1302 struct sja1105_l2_forwarding_entry *l2_fwd;
1303 struct sja1105_private *priv = ds->priv;
1304 int i, rc;
1305
1306 l2_fwd = priv->static_config.tables[BLK_IDX_L2_FORWARDING].entries;
1307
1308 for (i = 0; i < SJA1105_NUM_PORTS; i++) {
1309 /* Add this port to the forwarding matrix of the
1310 * other ports in the same bridge, and viceversa.
1311 */
1312 if (!dsa_is_user_port(ds, i))
1313 continue;
1314 /* For the ports already under the bridge, only one thing needs
1315 * to be done, and that is to add this port to their
1316 * reachability domain. So we can perform the SPI write for
1317 * them immediately. However, for this port itself (the one
1318 * that is new to the bridge), we need to add all other ports
1319 * to its reachability domain. So we do that incrementally in
1320 * this loop, and perform the SPI write only at the end, once
1321 * the domain contains all other bridge ports.
1322 */
1323 if (i == port)
1324 continue;
1325 if (dsa_to_port(ds, i)->bridge_dev != br)
1326 continue;
1327 sja1105_port_allow_traffic(l2_fwd, i, port, member);
1328 sja1105_port_allow_traffic(l2_fwd, port, i, member);
1329
1330 rc = sja1105_dynamic_config_write(priv, BLK_IDX_L2_FORWARDING,
1331 i, &l2_fwd[i], true);
1332 if (rc < 0)
1333 return rc;
1334 }
1335
1336 return sja1105_dynamic_config_write(priv, BLK_IDX_L2_FORWARDING,
1337 port, &l2_fwd[port], true);
1338}
1339
Vladimir Oltean640f7632019-05-05 13:19:28 +03001340static void sja1105_bridge_stp_state_set(struct dsa_switch *ds, int port,
1341 u8 state)
1342{
1343 struct sja1105_private *priv = ds->priv;
1344 struct sja1105_mac_config_entry *mac;
1345
1346 mac = priv->static_config.tables[BLK_IDX_MAC_CONFIG].entries;
1347
1348 switch (state) {
1349 case BR_STATE_DISABLED:
1350 case BR_STATE_BLOCKING:
1351 /* From UM10944 description of DRPDTAG (why put this there?):
1352 * "Management traffic flows to the port regardless of the state
1353 * of the INGRESS flag". So BPDUs are still be allowed to pass.
1354 * At the moment no difference between DISABLED and BLOCKING.
1355 */
1356 mac[port].ingress = false;
1357 mac[port].egress = false;
1358 mac[port].dyn_learn = false;
1359 break;
1360 case BR_STATE_LISTENING:
1361 mac[port].ingress = true;
1362 mac[port].egress = false;
1363 mac[port].dyn_learn = false;
1364 break;
1365 case BR_STATE_LEARNING:
1366 mac[port].ingress = true;
1367 mac[port].egress = false;
1368 mac[port].dyn_learn = true;
1369 break;
1370 case BR_STATE_FORWARDING:
1371 mac[port].ingress = true;
1372 mac[port].egress = true;
1373 mac[port].dyn_learn = true;
1374 break;
1375 default:
1376 dev_err(ds->dev, "invalid STP state: %d\n", state);
1377 return;
1378 }
1379
1380 sja1105_dynamic_config_write(priv, BLK_IDX_MAC_CONFIG, port,
1381 &mac[port], true);
1382}
1383
Vladimir Oltean8aa9ebc2019-05-02 23:23:30 +03001384static int sja1105_bridge_join(struct dsa_switch *ds, int port,
1385 struct net_device *br)
1386{
1387 return sja1105_bridge_member(ds, port, br, true);
1388}
1389
1390static void sja1105_bridge_leave(struct dsa_switch *ds, int port,
1391 struct net_device *br)
1392{
1393 sja1105_bridge_member(ds, port, br, false);
1394}
1395
Vladimir Oltean6666ceb2019-05-02 23:23:34 +03001396/* For situations where we need to change a setting at runtime that is only
1397 * available through the static configuration, resetting the switch in order
1398 * to upload the new static config is unavoidable. Back up the settings we
1399 * modify at runtime (currently only MAC) and restore them after uploading,
1400 * such that this operation is relatively seamless.
1401 */
1402static int sja1105_static_config_reload(struct sja1105_private *priv)
1403{
1404 struct sja1105_mac_config_entry *mac;
1405 int speed_mbps[SJA1105_NUM_PORTS];
1406 int rc, i;
1407
1408 mac = priv->static_config.tables[BLK_IDX_MAC_CONFIG].entries;
1409
Vladimir Oltean8400cff2019-06-08 16:03:44 +03001410 /* Back up the dynamic link speed changed by sja1105_adjust_port_config
1411 * in order to temporarily restore it to SJA1105_SPEED_AUTO - which the
1412 * switch wants to see in the static config in order to allow us to
1413 * change it through the dynamic interface later.
Vladimir Oltean6666ceb2019-05-02 23:23:34 +03001414 */
1415 for (i = 0; i < SJA1105_NUM_PORTS; i++) {
1416 speed_mbps[i] = sja1105_speed[mac[i].speed];
1417 mac[i].speed = SJA1105_SPEED_AUTO;
1418 }
1419
1420 /* Reset switch and send updated static configuration */
1421 rc = sja1105_static_config_upload(priv);
1422 if (rc < 0)
1423 goto out;
1424
1425 /* Configure the CGU (PLLs) for MII and RMII PHYs.
1426 * For these interfaces there is no dynamic configuration
1427 * needed, since PLLs have same settings at all speeds.
1428 */
1429 rc = sja1105_clocking_setup(priv);
1430 if (rc < 0)
1431 goto out;
1432
1433 for (i = 0; i < SJA1105_NUM_PORTS; i++) {
Vladimir Oltean8400cff2019-06-08 16:03:44 +03001434 rc = sja1105_adjust_port_config(priv, i, speed_mbps[i]);
Vladimir Oltean6666ceb2019-05-02 23:23:34 +03001435 if (rc < 0)
1436 goto out;
1437 }
1438out:
1439 return rc;
1440}
1441
Vladimir Oltean6666ceb2019-05-02 23:23:34 +03001442static int sja1105_pvid_apply(struct sja1105_private *priv, int port, u16 pvid)
1443{
1444 struct sja1105_mac_config_entry *mac;
1445
1446 mac = priv->static_config.tables[BLK_IDX_MAC_CONFIG].entries;
1447
1448 mac[port].vlanid = pvid;
1449
1450 return sja1105_dynamic_config_write(priv, BLK_IDX_MAC_CONFIG, port,
1451 &mac[port], true);
1452}
1453
1454static int sja1105_is_vlan_configured(struct sja1105_private *priv, u16 vid)
1455{
1456 struct sja1105_vlan_lookup_entry *vlan;
1457 int count, i;
1458
1459 vlan = priv->static_config.tables[BLK_IDX_VLAN_LOOKUP].entries;
1460 count = priv->static_config.tables[BLK_IDX_VLAN_LOOKUP].entry_count;
1461
1462 for (i = 0; i < count; i++)
1463 if (vlan[i].vlanid == vid)
1464 return i;
1465
1466 /* Return an invalid entry index if not found */
1467 return -1;
1468}
1469
1470static int sja1105_vlan_apply(struct sja1105_private *priv, int port, u16 vid,
1471 bool enabled, bool untagged)
1472{
1473 struct sja1105_vlan_lookup_entry *vlan;
1474 struct sja1105_table *table;
1475 bool keep = true;
1476 int match, rc;
1477
1478 table = &priv->static_config.tables[BLK_IDX_VLAN_LOOKUP];
1479
1480 match = sja1105_is_vlan_configured(priv, vid);
1481 if (match < 0) {
1482 /* Can't delete a missing entry. */
1483 if (!enabled)
1484 return 0;
1485 rc = sja1105_table_resize(table, table->entry_count + 1);
1486 if (rc)
1487 return rc;
1488 match = table->entry_count - 1;
1489 }
1490 /* Assign pointer after the resize (it's new memory) */
1491 vlan = table->entries;
1492 vlan[match].vlanid = vid;
1493 if (enabled) {
1494 vlan[match].vlan_bc |= BIT(port);
1495 vlan[match].vmemb_port |= BIT(port);
1496 } else {
1497 vlan[match].vlan_bc &= ~BIT(port);
1498 vlan[match].vmemb_port &= ~BIT(port);
1499 }
1500 /* Also unset tag_port if removing this VLAN was requested,
1501 * just so we don't have a confusing bitmap (no practical purpose).
1502 */
1503 if (untagged || !enabled)
1504 vlan[match].tag_port &= ~BIT(port);
1505 else
1506 vlan[match].tag_port |= BIT(port);
1507 /* If there's no port left as member of this VLAN,
1508 * it's time for it to go.
1509 */
1510 if (!vlan[match].vmemb_port)
1511 keep = false;
1512
1513 dev_dbg(priv->ds->dev,
1514 "%s: port %d, vid %llu, broadcast domain 0x%llx, "
1515 "port members 0x%llx, tagged ports 0x%llx, keep %d\n",
1516 __func__, port, vlan[match].vlanid, vlan[match].vlan_bc,
1517 vlan[match].vmemb_port, vlan[match].tag_port, keep);
1518
1519 rc = sja1105_dynamic_config_write(priv, BLK_IDX_VLAN_LOOKUP, vid,
1520 &vlan[match], keep);
1521 if (rc < 0)
1522 return rc;
1523
1524 if (!keep)
1525 return sja1105_table_delete_entry(table, match);
1526
1527 return 0;
1528}
1529
Vladimir Oltean227d07a2019-05-05 13:19:27 +03001530static int sja1105_setup_8021q_tagging(struct dsa_switch *ds, bool enabled)
1531{
1532 int rc, i;
1533
1534 for (i = 0; i < SJA1105_NUM_PORTS; i++) {
1535 rc = dsa_port_setup_8021q_tagging(ds, i, enabled);
1536 if (rc < 0) {
1537 dev_err(ds->dev, "Failed to setup VLAN tagging for port %d: %d\n",
1538 i, rc);
1539 return rc;
1540 }
1541 }
1542 dev_info(ds->dev, "%s switch tagging\n",
1543 enabled ? "Enabled" : "Disabled");
1544 return 0;
1545}
1546
Vladimir Oltean8aa9ebc2019-05-02 23:23:30 +03001547static enum dsa_tag_protocol
1548sja1105_get_tag_protocol(struct dsa_switch *ds, int port)
1549{
Vladimir Oltean227d07a2019-05-05 13:19:27 +03001550 return DSA_TAG_PROTO_SJA1105;
Vladimir Oltean8aa9ebc2019-05-02 23:23:30 +03001551}
1552
Vladimir Oltean6666ceb2019-05-02 23:23:34 +03001553/* This callback needs to be present */
1554static int sja1105_vlan_prepare(struct dsa_switch *ds, int port,
1555 const struct switchdev_obj_port_vlan *vlan)
1556{
1557 return 0;
1558}
1559
Vladimir Oltean070ca3b2019-06-08 15:04:30 +03001560/* The TPID setting belongs to the General Parameters table,
1561 * which can only be partially reconfigured at runtime (and not the TPID).
1562 * So a switch reset is required.
1563 */
Vladimir Oltean6666ceb2019-05-02 23:23:34 +03001564static int sja1105_vlan_filtering(struct dsa_switch *ds, int port, bool enabled)
1565{
Vladimir Oltean6d7c7d92019-08-05 01:38:44 +03001566 struct sja1105_l2_lookup_params_entry *l2_lookup_params;
Vladimir Oltean070ca3b2019-06-08 15:04:30 +03001567 struct sja1105_general_params_entry *general_params;
Vladimir Oltean6666ceb2019-05-02 23:23:34 +03001568 struct sja1105_private *priv = ds->priv;
Vladimir Oltean070ca3b2019-06-08 15:04:30 +03001569 struct sja1105_table *table;
1570 u16 tpid, tpid2;
Vladimir Oltean6666ceb2019-05-02 23:23:34 +03001571 int rc;
1572
Vladimir Oltean070ca3b2019-06-08 15:04:30 +03001573 if (enabled) {
Vladimir Oltean6666ceb2019-05-02 23:23:34 +03001574 /* Enable VLAN filtering. */
Vladimir Olteanf9a1a762019-06-08 15:04:31 +03001575 tpid = ETH_P_8021AD;
1576 tpid2 = ETH_P_8021Q;
Vladimir Oltean070ca3b2019-06-08 15:04:30 +03001577 } else {
Vladimir Oltean6666ceb2019-05-02 23:23:34 +03001578 /* Disable VLAN filtering. */
Vladimir Oltean070ca3b2019-06-08 15:04:30 +03001579 tpid = ETH_P_SJA1105;
1580 tpid2 = ETH_P_SJA1105;
1581 }
1582
1583 table = &priv->static_config.tables[BLK_IDX_GENERAL_PARAMS];
1584 general_params = table->entries;
Vladimir Olteanf9a1a762019-06-08 15:04:31 +03001585 /* EtherType used to identify outer tagged (S-tag) VLAN traffic */
Vladimir Oltean070ca3b2019-06-08 15:04:30 +03001586 general_params->tpid = tpid;
Vladimir Olteanf9a1a762019-06-08 15:04:31 +03001587 /* EtherType used to identify inner tagged (C-tag) VLAN traffic */
Vladimir Oltean070ca3b2019-06-08 15:04:30 +03001588 general_params->tpid2 = tpid2;
Vladimir Oltean42824462019-06-08 15:04:32 +03001589 /* When VLAN filtering is on, we need to at least be able to
1590 * decode management traffic through the "backup plan".
1591 */
1592 general_params->incl_srcpt1 = enabled;
1593 general_params->incl_srcpt0 = enabled;
Vladimir Oltean070ca3b2019-06-08 15:04:30 +03001594
Vladimir Oltean6d7c7d92019-08-05 01:38:44 +03001595 /* VLAN filtering => independent VLAN learning.
1596 * No VLAN filtering => shared VLAN learning.
1597 *
1598 * In shared VLAN learning mode, untagged traffic still gets
1599 * pvid-tagged, and the FDB table gets populated with entries
1600 * containing the "real" (pvid or from VLAN tag) VLAN ID.
1601 * However the switch performs a masked L2 lookup in the FDB,
1602 * effectively only looking up a frame's DMAC (and not VID) for the
1603 * forwarding decision.
1604 *
1605 * This is extremely convenient for us, because in modes with
1606 * vlan_filtering=0, dsa_8021q actually installs unique pvid's into
1607 * each front panel port. This is good for identification but breaks
1608 * learning badly - the VID of the learnt FDB entry is unique, aka
1609 * no frames coming from any other port are going to have it. So
1610 * for forwarding purposes, this is as though learning was broken
1611 * (all frames get flooded).
1612 */
1613 table = &priv->static_config.tables[BLK_IDX_L2_LOOKUP_PARAMS];
1614 l2_lookup_params = table->entries;
1615 l2_lookup_params->shared_learn = !enabled;
1616
Vladimir Oltean070ca3b2019-06-08 15:04:30 +03001617 rc = sja1105_static_config_reload(priv);
Vladimir Oltean6666ceb2019-05-02 23:23:34 +03001618 if (rc)
1619 dev_err(ds->dev, "Failed to change VLAN Ethertype\n");
1620
Vladimir Oltean227d07a2019-05-05 13:19:27 +03001621 /* Switch port identification based on 802.1Q is only passable
1622 * if we are not under a vlan_filtering bridge. So make sure
1623 * the two configurations are mutually exclusive.
1624 */
1625 return sja1105_setup_8021q_tagging(ds, !enabled);
Vladimir Oltean6666ceb2019-05-02 23:23:34 +03001626}
1627
1628static void sja1105_vlan_add(struct dsa_switch *ds, int port,
1629 const struct switchdev_obj_port_vlan *vlan)
1630{
1631 struct sja1105_private *priv = ds->priv;
1632 u16 vid;
1633 int rc;
1634
1635 for (vid = vlan->vid_begin; vid <= vlan->vid_end; vid++) {
1636 rc = sja1105_vlan_apply(priv, port, vid, true, vlan->flags &
1637 BRIDGE_VLAN_INFO_UNTAGGED);
1638 if (rc < 0) {
1639 dev_err(ds->dev, "Failed to add VLAN %d to port %d: %d\n",
1640 vid, port, rc);
1641 return;
1642 }
1643 if (vlan->flags & BRIDGE_VLAN_INFO_PVID) {
1644 rc = sja1105_pvid_apply(ds->priv, port, vid);
1645 if (rc < 0) {
1646 dev_err(ds->dev, "Failed to set pvid %d on port %d: %d\n",
1647 vid, port, rc);
1648 return;
1649 }
1650 }
1651 }
1652}
1653
1654static int sja1105_vlan_del(struct dsa_switch *ds, int port,
1655 const struct switchdev_obj_port_vlan *vlan)
1656{
1657 struct sja1105_private *priv = ds->priv;
1658 u16 vid;
1659 int rc;
1660
1661 for (vid = vlan->vid_begin; vid <= vlan->vid_end; vid++) {
1662 rc = sja1105_vlan_apply(priv, port, vid, false, vlan->flags &
1663 BRIDGE_VLAN_INFO_UNTAGGED);
1664 if (rc < 0) {
1665 dev_err(ds->dev, "Failed to remove VLAN %d from port %d: %d\n",
1666 vid, port, rc);
1667 return rc;
1668 }
1669 }
1670 return 0;
1671}
1672
Vladimir Oltean8aa9ebc2019-05-02 23:23:30 +03001673/* The programming model for the SJA1105 switch is "all-at-once" via static
1674 * configuration tables. Some of these can be dynamically modified at runtime,
1675 * but not the xMII mode parameters table.
1676 * Furthermode, some PHYs may not have crystals for generating their clocks
1677 * (e.g. RMII). Instead, their 50MHz clock is supplied via the SJA1105 port's
1678 * ref_clk pin. So port clocking needs to be initialized early, before
1679 * connecting to PHYs is attempted, otherwise they won't respond through MDIO.
1680 * Setting correct PHY link speed does not matter now.
1681 * But dsa_slave_phy_setup is called later than sja1105_setup, so the PHY
1682 * bindings are not yet parsed by DSA core. We need to parse early so that we
1683 * can populate the xMII mode parameters table.
1684 */
1685static int sja1105_setup(struct dsa_switch *ds)
1686{
1687 struct sja1105_dt_port ports[SJA1105_NUM_PORTS];
1688 struct sja1105_private *priv = ds->priv;
1689 int rc;
1690
1691 rc = sja1105_parse_dt(priv, ports);
1692 if (rc < 0) {
1693 dev_err(ds->dev, "Failed to parse DT: %d\n", rc);
1694 return rc;
1695 }
Vladimir Olteanf5b86312019-05-02 23:23:32 +03001696
1697 /* Error out early if internal delays are required through DT
1698 * and we can't apply them.
1699 */
1700 rc = sja1105_parse_rgmii_delays(priv, ports);
1701 if (rc < 0) {
1702 dev_err(ds->dev, "RGMII delay not supported\n");
1703 return rc;
1704 }
1705
Vladimir Olteanbb77f362019-06-08 15:04:34 +03001706 rc = sja1105_ptp_clock_register(priv);
1707 if (rc < 0) {
1708 dev_err(ds->dev, "Failed to register PTP clock: %d\n", rc);
1709 return rc;
1710 }
Vladimir Oltean8aa9ebc2019-05-02 23:23:30 +03001711 /* Create and send configuration down to device */
1712 rc = sja1105_static_config_load(priv, ports);
1713 if (rc < 0) {
1714 dev_err(ds->dev, "Failed to load static config: %d\n", rc);
1715 return rc;
1716 }
1717 /* Configure the CGU (PHY link modes and speeds) */
1718 rc = sja1105_clocking_setup(priv);
1719 if (rc < 0) {
1720 dev_err(ds->dev, "Failed to configure MII clocking: %d\n", rc);
1721 return rc;
1722 }
Vladimir Oltean6666ceb2019-05-02 23:23:34 +03001723 /* On SJA1105, VLAN filtering per se is always enabled in hardware.
1724 * The only thing we can do to disable it is lie about what the 802.1Q
1725 * EtherType is.
1726 * So it will still try to apply VLAN filtering, but all ingress
1727 * traffic (except frames received with EtherType of ETH_P_SJA1105)
1728 * will be internally tagged with a distorted VLAN header where the
1729 * TPID is ETH_P_SJA1105, and the VLAN ID is the port pvid.
1730 */
1731 ds->vlan_filtering_is_global = true;
Vladimir Oltean8aa9ebc2019-05-02 23:23:30 +03001732
Vladimir Oltean227d07a2019-05-05 13:19:27 +03001733 /* The DSA/switchdev model brings up switch ports in standalone mode by
1734 * default, and that means vlan_filtering is 0 since they're not under
1735 * a bridge, so it's safe to set up switch tagging at this time.
1736 */
1737 return sja1105_setup_8021q_tagging(ds, true);
1738}
1739
Vladimir Olteanf3097be2019-06-08 15:04:42 +03001740static void sja1105_teardown(struct dsa_switch *ds)
1741{
1742 struct sja1105_private *priv = ds->priv;
1743
1744 cancel_work_sync(&priv->tagger_data.rxtstamp_work);
1745 skb_queue_purge(&priv->tagger_data.skb_rxtstamp_queue);
1746}
1747
Vladimir Oltean227d07a2019-05-05 13:19:27 +03001748static int sja1105_mgmt_xmit(struct dsa_switch *ds, int port, int slot,
Vladimir Oltean47ed9852019-06-08 15:04:35 +03001749 struct sk_buff *skb, bool takets)
Vladimir Oltean227d07a2019-05-05 13:19:27 +03001750{
1751 struct sja1105_mgmt_entry mgmt_route = {0};
1752 struct sja1105_private *priv = ds->priv;
1753 struct ethhdr *hdr;
1754 int timeout = 10;
1755 int rc;
1756
1757 hdr = eth_hdr(skb);
1758
1759 mgmt_route.macaddr = ether_addr_to_u64(hdr->h_dest);
1760 mgmt_route.destports = BIT(port);
1761 mgmt_route.enfport = 1;
Vladimir Oltean47ed9852019-06-08 15:04:35 +03001762 mgmt_route.tsreg = 0;
1763 mgmt_route.takets = takets;
Vladimir Oltean227d07a2019-05-05 13:19:27 +03001764
1765 rc = sja1105_dynamic_config_write(priv, BLK_IDX_MGMT_ROUTE,
1766 slot, &mgmt_route, true);
1767 if (rc < 0) {
1768 kfree_skb(skb);
1769 return rc;
1770 }
1771
1772 /* Transfer skb to the host port. */
1773 dsa_enqueue_skb(skb, ds->ports[port].slave);
1774
1775 /* Wait until the switch has processed the frame */
1776 do {
1777 rc = sja1105_dynamic_config_read(priv, BLK_IDX_MGMT_ROUTE,
1778 slot, &mgmt_route);
1779 if (rc < 0) {
1780 dev_err_ratelimited(priv->ds->dev,
1781 "failed to poll for mgmt route\n");
1782 continue;
1783 }
1784
1785 /* UM10944: The ENFPORT flag of the respective entry is
1786 * cleared when a match is found. The host can use this
1787 * flag as an acknowledgment.
1788 */
1789 cpu_relax();
1790 } while (mgmt_route.enfport && --timeout);
1791
1792 if (!timeout) {
1793 /* Clean up the management route so that a follow-up
1794 * frame may not match on it by mistake.
Vladimir Oltean2a7e7402019-06-03 00:15:33 +03001795 * This is only hardware supported on P/Q/R/S - on E/T it is
1796 * a no-op and we are silently discarding the -EOPNOTSUPP.
Vladimir Oltean227d07a2019-05-05 13:19:27 +03001797 */
1798 sja1105_dynamic_config_write(priv, BLK_IDX_MGMT_ROUTE,
1799 slot, &mgmt_route, false);
1800 dev_err_ratelimited(priv->ds->dev, "xmit timed out\n");
1801 }
1802
1803 return NETDEV_TX_OK;
1804}
1805
1806/* Deferred work is unfortunately necessary because setting up the management
1807 * route cannot be done from atomit context (SPI transfer takes a sleepable
1808 * lock on the bus)
1809 */
1810static netdev_tx_t sja1105_port_deferred_xmit(struct dsa_switch *ds, int port,
1811 struct sk_buff *skb)
1812{
1813 struct sja1105_private *priv = ds->priv;
1814 struct sja1105_port *sp = &priv->ports[port];
Vladimir Oltean47ed9852019-06-08 15:04:35 +03001815 struct skb_shared_hwtstamps shwt = {0};
Vladimir Oltean227d07a2019-05-05 13:19:27 +03001816 int slot = sp->mgmt_slot;
Vladimir Oltean47ed9852019-06-08 15:04:35 +03001817 struct sk_buff *clone;
1818 u64 now, ts;
1819 int rc;
Vladimir Oltean227d07a2019-05-05 13:19:27 +03001820
1821 /* The tragic fact about the switch having 4x2 slots for installing
1822 * management routes is that all of them except one are actually
1823 * useless.
1824 * If 2 slots are simultaneously configured for two BPDUs sent to the
1825 * same (multicast) DMAC but on different egress ports, the switch
1826 * would confuse them and redirect first frame it receives on the CPU
1827 * port towards the port configured on the numerically first slot
1828 * (therefore wrong port), then second received frame on second slot
1829 * (also wrong port).
1830 * So for all practical purposes, there needs to be a lock that
1831 * prevents that from happening. The slot used here is utterly useless
1832 * (could have simply been 0 just as fine), but we are doing it
1833 * nonetheless, in case a smarter idea ever comes up in the future.
1834 */
1835 mutex_lock(&priv->mgmt_lock);
1836
Vladimir Oltean47ed9852019-06-08 15:04:35 +03001837 /* The clone, if there, was made by dsa_skb_tx_timestamp */
1838 clone = DSA_SKB_CB(skb)->clone;
Vladimir Oltean227d07a2019-05-05 13:19:27 +03001839
Vladimir Oltean47ed9852019-06-08 15:04:35 +03001840 sja1105_mgmt_xmit(ds, port, slot, skb, !!clone);
1841
1842 if (!clone)
1843 goto out;
1844
1845 skb_shinfo(clone)->tx_flags |= SKBTX_IN_PROGRESS;
1846
1847 mutex_lock(&priv->ptp_lock);
1848
1849 now = priv->tstamp_cc.read(&priv->tstamp_cc);
1850
1851 rc = sja1105_ptpegr_ts_poll(priv, slot, &ts);
1852 if (rc < 0) {
1853 dev_err(ds->dev, "xmit: timed out polling for tstamp\n");
1854 kfree_skb(clone);
1855 goto out_unlock_ptp;
1856 }
1857
1858 ts = sja1105_tstamp_reconstruct(priv, now, ts);
1859 ts = timecounter_cyc2time(&priv->tstamp_tc, ts);
1860
1861 shwt.hwtstamp = ns_to_ktime(ts);
1862 skb_complete_tx_timestamp(clone, &shwt);
1863
1864out_unlock_ptp:
1865 mutex_unlock(&priv->ptp_lock);
1866out:
Vladimir Oltean227d07a2019-05-05 13:19:27 +03001867 mutex_unlock(&priv->mgmt_lock);
1868 return NETDEV_TX_OK;
Vladimir Oltean8aa9ebc2019-05-02 23:23:30 +03001869}
1870
Vladimir Oltean84567212019-05-02 23:23:36 +03001871/* The MAXAGE setting belongs to the L2 Forwarding Parameters table,
1872 * which cannot be reconfigured at runtime. So a switch reset is required.
1873 */
1874static int sja1105_set_ageing_time(struct dsa_switch *ds,
1875 unsigned int ageing_time)
1876{
1877 struct sja1105_l2_lookup_params_entry *l2_lookup_params;
1878 struct sja1105_private *priv = ds->priv;
1879 struct sja1105_table *table;
1880 unsigned int maxage;
1881
1882 table = &priv->static_config.tables[BLK_IDX_L2_LOOKUP_PARAMS];
1883 l2_lookup_params = table->entries;
1884
1885 maxage = SJA1105_AGEING_TIME_MS(ageing_time);
1886
1887 if (l2_lookup_params->maxage == maxage)
1888 return 0;
1889
1890 l2_lookup_params->maxage = maxage;
1891
1892 return sja1105_static_config_reload(priv);
1893}
1894
Vladimir Olteana602afd2019-06-08 15:04:43 +03001895/* Caller must hold priv->tagger_data.meta_lock */
1896static int sja1105_change_rxtstamping(struct sja1105_private *priv,
1897 bool on)
1898{
1899 struct sja1105_general_params_entry *general_params;
1900 struct sja1105_table *table;
1901 int rc;
1902
1903 table = &priv->static_config.tables[BLK_IDX_GENERAL_PARAMS];
1904 general_params = table->entries;
1905 general_params->send_meta1 = on;
1906 general_params->send_meta0 = on;
1907
1908 rc = sja1105_init_avb_params(priv, on);
1909 if (rc < 0)
1910 return rc;
1911
1912 /* Initialize the meta state machine to a known state */
1913 if (priv->tagger_data.stampable_skb) {
1914 kfree_skb(priv->tagger_data.stampable_skb);
1915 priv->tagger_data.stampable_skb = NULL;
1916 }
1917
1918 return sja1105_static_config_reload(priv);
1919}
1920
1921static int sja1105_hwtstamp_set(struct dsa_switch *ds, int port,
1922 struct ifreq *ifr)
1923{
1924 struct sja1105_private *priv = ds->priv;
1925 struct hwtstamp_config config;
1926 bool rx_on;
1927 int rc;
1928
1929 if (copy_from_user(&config, ifr->ifr_data, sizeof(config)))
1930 return -EFAULT;
1931
1932 switch (config.tx_type) {
1933 case HWTSTAMP_TX_OFF:
1934 priv->ports[port].hwts_tx_en = false;
1935 break;
1936 case HWTSTAMP_TX_ON:
1937 priv->ports[port].hwts_tx_en = true;
1938 break;
1939 default:
1940 return -ERANGE;
1941 }
1942
1943 switch (config.rx_filter) {
1944 case HWTSTAMP_FILTER_NONE:
1945 rx_on = false;
1946 break;
1947 default:
1948 rx_on = true;
1949 break;
1950 }
1951
1952 if (rx_on != priv->tagger_data.hwts_rx_en) {
1953 spin_lock(&priv->tagger_data.meta_lock);
1954 rc = sja1105_change_rxtstamping(priv, rx_on);
1955 spin_unlock(&priv->tagger_data.meta_lock);
1956 if (rc < 0) {
1957 dev_err(ds->dev,
1958 "Failed to change RX timestamping: %d\n", rc);
1959 return -EFAULT;
1960 }
1961 priv->tagger_data.hwts_rx_en = rx_on;
1962 }
1963
1964 if (copy_to_user(ifr->ifr_data, &config, sizeof(config)))
1965 return -EFAULT;
1966 return 0;
1967}
1968
1969static int sja1105_hwtstamp_get(struct dsa_switch *ds, int port,
1970 struct ifreq *ifr)
1971{
1972 struct sja1105_private *priv = ds->priv;
1973 struct hwtstamp_config config;
1974
1975 config.flags = 0;
1976 if (priv->ports[port].hwts_tx_en)
1977 config.tx_type = HWTSTAMP_TX_ON;
1978 else
1979 config.tx_type = HWTSTAMP_TX_OFF;
1980 if (priv->tagger_data.hwts_rx_en)
1981 config.rx_filter = HWTSTAMP_FILTER_PTP_V2_L2_EVENT;
1982 else
1983 config.rx_filter = HWTSTAMP_FILTER_NONE;
1984
1985 return copy_to_user(ifr->ifr_data, &config, sizeof(config)) ?
1986 -EFAULT : 0;
1987}
1988
Vladimir Olteanf3097be2019-06-08 15:04:42 +03001989#define to_tagger(d) \
1990 container_of((d), struct sja1105_tagger_data, rxtstamp_work)
1991#define to_sja1105(d) \
1992 container_of((d), struct sja1105_private, tagger_data)
1993
1994static void sja1105_rxtstamp_work(struct work_struct *work)
1995{
1996 struct sja1105_tagger_data *data = to_tagger(work);
1997 struct sja1105_private *priv = to_sja1105(data);
1998 struct sk_buff *skb;
1999 u64 now;
2000
2001 mutex_lock(&priv->ptp_lock);
2002
2003 now = priv->tstamp_cc.read(&priv->tstamp_cc);
2004
2005 while ((skb = skb_dequeue(&data->skb_rxtstamp_queue)) != NULL) {
2006 struct skb_shared_hwtstamps *shwt = skb_hwtstamps(skb);
2007 u64 ts;
2008
2009 *shwt = (struct skb_shared_hwtstamps) {0};
2010
2011 ts = SJA1105_SKB_CB(skb)->meta_tstamp;
2012 ts = sja1105_tstamp_reconstruct(priv, now, ts);
2013 ts = timecounter_cyc2time(&priv->tstamp_tc, ts);
2014
2015 shwt->hwtstamp = ns_to_ktime(ts);
2016 netif_rx_ni(skb);
2017 }
2018
2019 mutex_unlock(&priv->ptp_lock);
2020}
2021
2022/* Called from dsa_skb_defer_rx_timestamp */
YueHaibing1dbb9862019-06-11 21:58:34 +08002023static bool sja1105_port_rxtstamp(struct dsa_switch *ds, int port,
2024 struct sk_buff *skb, unsigned int type)
Vladimir Olteanf3097be2019-06-08 15:04:42 +03002025{
2026 struct sja1105_private *priv = ds->priv;
2027 struct sja1105_tagger_data *data = &priv->tagger_data;
2028
2029 if (!data->hwts_rx_en)
2030 return false;
2031
2032 /* We need to read the full PTP clock to reconstruct the Rx
2033 * timestamp. For that we need a sleepable context.
2034 */
2035 skb_queue_tail(&data->skb_rxtstamp_queue, skb);
2036 schedule_work(&data->rxtstamp_work);
2037 return true;
2038}
2039
Vladimir Oltean47ed9852019-06-08 15:04:35 +03002040/* Called from dsa_skb_tx_timestamp. This callback is just to make DSA clone
2041 * the skb and have it available in DSA_SKB_CB in the .port_deferred_xmit
2042 * callback, where we will timestamp it synchronously.
2043 */
YueHaibing1dbb9862019-06-11 21:58:34 +08002044static bool sja1105_port_txtstamp(struct dsa_switch *ds, int port,
2045 struct sk_buff *skb, unsigned int type)
Vladimir Oltean47ed9852019-06-08 15:04:35 +03002046{
2047 struct sja1105_private *priv = ds->priv;
2048 struct sja1105_port *sp = &priv->ports[port];
2049
2050 if (!sp->hwts_tx_en)
2051 return false;
2052
2053 return true;
2054}
2055
Vladimir Oltean8aa9ebc2019-05-02 23:23:30 +03002056static const struct dsa_switch_ops sja1105_switch_ops = {
2057 .get_tag_protocol = sja1105_get_tag_protocol,
2058 .setup = sja1105_setup,
Vladimir Olteanf3097be2019-06-08 15:04:42 +03002059 .teardown = sja1105_teardown,
Vladimir Oltean84567212019-05-02 23:23:36 +03002060 .set_ageing_time = sja1105_set_ageing_time,
Vladimir Olteanad9f2992019-05-02 23:23:38 +03002061 .phylink_validate = sja1105_phylink_validate,
Vladimir Olteanaf7cd032019-05-28 20:38:17 +03002062 .phylink_mac_config = sja1105_mac_config,
Vladimir Oltean8400cff2019-06-08 16:03:44 +03002063 .phylink_mac_link_up = sja1105_mac_link_up,
2064 .phylink_mac_link_down = sja1105_mac_link_down,
Vladimir Oltean52c34e62019-05-02 23:23:35 +03002065 .get_strings = sja1105_get_strings,
2066 .get_ethtool_stats = sja1105_get_ethtool_stats,
2067 .get_sset_count = sja1105_get_sset_count,
Vladimir Olteanbb77f362019-06-08 15:04:34 +03002068 .get_ts_info = sja1105_get_ts_info,
Vladimir Oltean291d1e72019-05-02 23:23:31 +03002069 .port_fdb_dump = sja1105_fdb_dump,
2070 .port_fdb_add = sja1105_fdb_add,
2071 .port_fdb_del = sja1105_fdb_del,
Vladimir Oltean8aa9ebc2019-05-02 23:23:30 +03002072 .port_bridge_join = sja1105_bridge_join,
2073 .port_bridge_leave = sja1105_bridge_leave,
Vladimir Oltean640f7632019-05-05 13:19:28 +03002074 .port_stp_state_set = sja1105_bridge_stp_state_set,
Vladimir Oltean6666ceb2019-05-02 23:23:34 +03002075 .port_vlan_prepare = sja1105_vlan_prepare,
2076 .port_vlan_filtering = sja1105_vlan_filtering,
2077 .port_vlan_add = sja1105_vlan_add,
2078 .port_vlan_del = sja1105_vlan_del,
Vladimir Oltean291d1e72019-05-02 23:23:31 +03002079 .port_mdb_prepare = sja1105_mdb_prepare,
2080 .port_mdb_add = sja1105_mdb_add,
2081 .port_mdb_del = sja1105_mdb_del,
Vladimir Oltean227d07a2019-05-05 13:19:27 +03002082 .port_deferred_xmit = sja1105_port_deferred_xmit,
Vladimir Olteana602afd2019-06-08 15:04:43 +03002083 .port_hwtstamp_get = sja1105_hwtstamp_get,
2084 .port_hwtstamp_set = sja1105_hwtstamp_set,
Vladimir Olteanf3097be2019-06-08 15:04:42 +03002085 .port_rxtstamp = sja1105_port_rxtstamp,
Vladimir Oltean47ed9852019-06-08 15:04:35 +03002086 .port_txtstamp = sja1105_port_txtstamp,
Vladimir Oltean8aa9ebc2019-05-02 23:23:30 +03002087};
2088
2089static int sja1105_check_device_id(struct sja1105_private *priv)
2090{
2091 const struct sja1105_regs *regs = priv->info->regs;
2092 u8 prod_id[SJA1105_SIZE_DEVICE_ID] = {0};
2093 struct device *dev = &priv->spidev->dev;
2094 u64 device_id;
2095 u64 part_no;
2096 int rc;
2097
2098 rc = sja1105_spi_send_int(priv, SPI_READ, regs->device_id,
2099 &device_id, SJA1105_SIZE_DEVICE_ID);
2100 if (rc < 0)
2101 return rc;
2102
2103 if (device_id != priv->info->device_id) {
2104 dev_err(dev, "Expected device ID 0x%llx but read 0x%llx\n",
2105 priv->info->device_id, device_id);
2106 return -ENODEV;
2107 }
2108
2109 rc = sja1105_spi_send_packed_buf(priv, SPI_READ, regs->prod_id,
2110 prod_id, SJA1105_SIZE_DEVICE_ID);
2111 if (rc < 0)
2112 return rc;
2113
2114 sja1105_unpack(prod_id, &part_no, 19, 4, SJA1105_SIZE_DEVICE_ID);
2115
2116 if (part_no != priv->info->part_no) {
2117 dev_err(dev, "Expected part number 0x%llx but read 0x%llx\n",
2118 priv->info->part_no, part_no);
2119 return -ENODEV;
2120 }
2121
2122 return 0;
2123}
2124
2125static int sja1105_probe(struct spi_device *spi)
2126{
Vladimir Oltean844d7ed2019-06-08 15:04:40 +03002127 struct sja1105_tagger_data *tagger_data;
Vladimir Oltean8aa9ebc2019-05-02 23:23:30 +03002128 struct device *dev = &spi->dev;
2129 struct sja1105_private *priv;
2130 struct dsa_switch *ds;
Vladimir Oltean227d07a2019-05-05 13:19:27 +03002131 int rc, i;
Vladimir Oltean8aa9ebc2019-05-02 23:23:30 +03002132
2133 if (!dev->of_node) {
2134 dev_err(dev, "No DTS bindings for SJA1105 driver\n");
2135 return -EINVAL;
2136 }
2137
2138 priv = devm_kzalloc(dev, sizeof(struct sja1105_private), GFP_KERNEL);
2139 if (!priv)
2140 return -ENOMEM;
2141
2142 /* Configure the optional reset pin and bring up switch */
2143 priv->reset_gpio = devm_gpiod_get(dev, "reset", GPIOD_OUT_HIGH);
2144 if (IS_ERR(priv->reset_gpio))
2145 dev_dbg(dev, "reset-gpios not defined, ignoring\n");
2146 else
2147 sja1105_hw_reset(priv->reset_gpio, 1, 1);
2148
2149 /* Populate our driver private structure (priv) based on
2150 * the device tree node that was probed (spi)
2151 */
2152 priv->spidev = spi;
2153 spi_set_drvdata(spi, priv);
2154
2155 /* Configure the SPI bus */
2156 spi->bits_per_word = 8;
2157 rc = spi_setup(spi);
2158 if (rc < 0) {
2159 dev_err(dev, "Could not init SPI\n");
2160 return rc;
2161 }
2162
2163 priv->info = of_device_get_match_data(dev);
2164
2165 /* Detect hardware device */
2166 rc = sja1105_check_device_id(priv);
2167 if (rc < 0) {
2168 dev_err(dev, "Device ID check failed: %d\n", rc);
2169 return rc;
2170 }
2171
2172 dev_info(dev, "Probed switch chip: %s\n", priv->info->name);
2173
2174 ds = dsa_switch_alloc(dev, SJA1105_NUM_PORTS);
2175 if (!ds)
2176 return -ENOMEM;
2177
2178 ds->ops = &sja1105_switch_ops;
2179 ds->priv = priv;
2180 priv->ds = ds;
2181
Vladimir Oltean844d7ed2019-06-08 15:04:40 +03002182 tagger_data = &priv->tagger_data;
2183 skb_queue_head_init(&tagger_data->skb_rxtstamp_queue);
Vladimir Olteanf3097be2019-06-08 15:04:42 +03002184 INIT_WORK(&tagger_data->rxtstamp_work, sja1105_rxtstamp_work);
Vladimir Oltean844d7ed2019-06-08 15:04:40 +03002185
Vladimir Oltean227d07a2019-05-05 13:19:27 +03002186 /* Connections between dsa_port and sja1105_port */
2187 for (i = 0; i < SJA1105_NUM_PORTS; i++) {
2188 struct sja1105_port *sp = &priv->ports[i];
2189
2190 ds->ports[i].priv = sp;
2191 sp->dp = &ds->ports[i];
Vladimir Oltean844d7ed2019-06-08 15:04:40 +03002192 sp->data = tagger_data;
Vladimir Oltean227d07a2019-05-05 13:19:27 +03002193 }
2194 mutex_init(&priv->mgmt_lock);
2195
Vladimir Oltean8aa9ebc2019-05-02 23:23:30 +03002196 return dsa_register_switch(priv->ds);
2197}
2198
2199static int sja1105_remove(struct spi_device *spi)
2200{
2201 struct sja1105_private *priv = spi_get_drvdata(spi);
2202
Vladimir Olteanbb77f362019-06-08 15:04:34 +03002203 sja1105_ptp_clock_unregister(priv);
Vladimir Oltean8aa9ebc2019-05-02 23:23:30 +03002204 dsa_unregister_switch(priv->ds);
2205 sja1105_static_config_free(&priv->static_config);
2206 return 0;
2207}
2208
2209static const struct of_device_id sja1105_dt_ids[] = {
2210 { .compatible = "nxp,sja1105e", .data = &sja1105e_info },
2211 { .compatible = "nxp,sja1105t", .data = &sja1105t_info },
2212 { .compatible = "nxp,sja1105p", .data = &sja1105p_info },
2213 { .compatible = "nxp,sja1105q", .data = &sja1105q_info },
2214 { .compatible = "nxp,sja1105r", .data = &sja1105r_info },
2215 { .compatible = "nxp,sja1105s", .data = &sja1105s_info },
2216 { /* sentinel */ },
2217};
2218MODULE_DEVICE_TABLE(of, sja1105_dt_ids);
2219
2220static struct spi_driver sja1105_driver = {
2221 .driver = {
2222 .name = "sja1105",
2223 .owner = THIS_MODULE,
2224 .of_match_table = of_match_ptr(sja1105_dt_ids),
2225 },
2226 .probe = sja1105_probe,
2227 .remove = sja1105_remove,
2228};
2229
2230module_spi_driver(sja1105_driver);
2231
2232MODULE_AUTHOR("Vladimir Oltean <olteanv@gmail.com>");
2233MODULE_AUTHOR("Georg Waibel <georg.waibel@sensor-technik.de>");
2234MODULE_DESCRIPTION("SJA1105 Driver");
2235MODULE_LICENSE("GPL v2");