1 // SPDX-License-Identifier: GPL-2.0 2 /* Copyright (c) 2018, Sensor-Technik Wiedemann GmbH 3 * Copyright (c) 2018-2019, Vladimir Oltean <olteanv@gmail.com> 4 */ 5 6 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt 7 8 #include <linux/delay.h> 9 #include <linux/module.h> 10 #include <linux/printk.h> 11 #include <linux/spi/spi.h> 12 #include <linux/errno.h> 13 #include <linux/gpio/consumer.h> 14 #include <linux/phylink.h> 15 #include <linux/of.h> 16 #include <linux/of_net.h> 17 #include <linux/of_mdio.h> 18 #include <linux/of_device.h> 19 #include <linux/netdev_features.h> 20 #include <linux/netdevice.h> 21 #include <linux/if_bridge.h> 22 #include <linux/if_ether.h> 23 #include <linux/dsa/8021q.h> 24 #include "sja1105.h" 25 #include "sja1105_sgmii.h" 26 #include "sja1105_tas.h" 27 28 static const struct dsa_switch_ops sja1105_switch_ops; 29 30 static 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 41 static void 42 sja1105_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 */ 59 struct sja1105_dt_port { 60 phy_interface_t phy_mode; 61 sja1105_mii_role_t role; 62 }; 63 64 static 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 77 * adjusted at runtime by PHYLINK. 78 */ 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, 87 .vlanid = 1, 88 .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, 98 /* Disable learning and I/O on user ports by default - 99 * STP will enable it. 100 */ 101 .dyn_learn = false, 102 .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 122 table->entry_count = SJA1105_NUM_PORTS; 123 124 mac = table->entries; 125 126 for (i = 0; i < SJA1105_NUM_PORTS; i++) { 127 mac[i] = default_mac; 128 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 } 137 138 return 0; 139 } 140 141 static 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 156 static 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 177 /* Override table based on PHYLINK DT bindings */ 178 table->entry_count = SJA1105_MAX_XMII_PARAMS_COUNT; 179 180 mii = table->entries; 181 182 for (i = 0; i < SJA1105_NUM_PORTS; i++) { 183 if (dsa_is_unused_port(priv->ds, i)) 184 continue; 185 186 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; 199 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; 204 default: 205 dev_err(dev, "Unsupported PHY mode %s!\n", 206 phy_modes(ports[i].phy_mode)); 207 } 208 209 /* 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; 217 } 218 return 0; 219 } 220 221 static 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 227 /* We only populate the FDB table through dynamic 228 * L2 Address Lookup entries 229 */ 230 if (table->entry_count) { 231 kfree(table->entries); 232 table->entry_count = 0; 233 } 234 return 0; 235 } 236 237 static int sja1105_init_l2_lookup_params(struct sja1105_private *priv) 238 { 239 struct sja1105_table *table; 240 u64 max_fdb_entries = SJA1105_MAX_L2_LOOKUP_COUNT / SJA1105_NUM_PORTS; 241 struct sja1105_l2_lookup_params_entry default_l2_lookup_params = { 242 /* Learned FDB entries are forgotten after 300 seconds */ 243 .maxage = SJA1105_AGEING_TIME_MS(300000), 244 /* All entries within a FDB bin are available for learning */ 245 .dyn_tbsz = SJA1105ET_FDB_BIN_SIZE, 246 /* And the P/Q/R/S equivalent setting: */ 247 .start_dynspc = 0, 248 .maxaddrp = {max_fdb_entries, max_fdb_entries, max_fdb_entries, 249 max_fdb_entries, max_fdb_entries, }, 250 /* 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 */ 255 .shared_learn = true, 256 /* 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, 265 /* 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, 272 }; 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 295 static 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, 304 .vlanid = 1, 305 }; 306 struct dsa_switch *ds = priv->ds; 307 int port; 308 309 table = &priv->static_config.tables[BLK_IDX_VLAN_LOOKUP]; 310 311 /* The static VLAN table will only contain the initial pvid of 1. 312 * All other VLANs are to be configured through dynamic entries, 313 * and kept in the static configuration table as backing memory. 314 */ 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 327 /* VLAN 1: all DT-defined ports are members; no restrictions on 328 * forwarding; always transmit as untagged. 329 */ 330 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); 353 } 354 355 ((struct sja1105_vlan_lookup_entry *)table->entries)[0] = pvid; 356 return 0; 357 } 358 359 static 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 404 static 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 435 void 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 470 static int sja1105_init_general_params(struct sja1105_private *priv) 471 { 472 struct sja1105_general_params_entry default_general_params = { 473 /* Allow dynamic changing of the mirror port */ 474 .mirr_ptacu = true, 475 .switchid = priv->ds->index, 476 /* Priority queue for link-local management frames 477 * (both ingress to and egress from CPU - PTP, STP etc) 478 */ 479 .hostprio = 7, 480 .mac_fltres1 = SJA1105_LINKLOCAL_FILTER_A, 481 .mac_flt1 = SJA1105_LINKLOCAL_FILTER_A_MASK, 482 .incl_srcpt1 = false, 483 .send_meta1 = false, 484 .mac_fltres0 = SJA1105_LINKLOCAL_FILTER_B, 485 .mac_flt0 = SJA1105_LINKLOCAL_FILTER_B_MASK, 486 .incl_srcpt0 = false, 487 .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), 494 /* Default to an invalid value */ 495 .mirr_port = SJA1105_NUM_PORTS, 496 /* 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 */ 505 .vllupformat = SJA1105_VL_FORMAT_PSFP, 506 .vlmarker = 0, 507 .vlmask = 0, 508 /* Only update correctionField for 1-step PTP (L2 transport) */ 509 .ignore2stf = 0, 510 /* 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, 515 }; 516 struct sja1105_table *table; 517 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 539 static 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; 564 /* 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; 572 573 return 0; 574 } 575 576 /* 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 */ 619 #define SJA1105_RATE_MBPS(speed) (((speed) * 64000) / 1000) 620 621 static int sja1105_init_l2_policing(struct sja1105_private *priv) 622 { 623 struct sja1105_l2_policing_entry *policing; 624 struct sja1105_table *table; 625 int port, tc; 626 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 644 /* 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++) { 656 int mtu = VLAN_ETH_FRAME_LEN + ETH_FCS_LEN; 657 658 if (dsa_is_cpu_port(priv->ds, port)) 659 mtu += VLAN_HLEN; 660 661 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; 665 } 666 667 return 0; 668 } 669 670 static 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; 710 rc = sja1105_init_avb_params(priv); 711 if (rc < 0) 712 return rc; 713 714 /* Send initial configuration to hardware via SPI */ 715 return sja1105_static_config_upload(priv); 716 } 717 718 static 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++) { 724 if (ports[i].role == XMII_MAC) 725 continue; 726 727 if (ports[i].phy_mode == PHY_INTERFACE_MODE_RGMII_RXID || 728 ports[i].phy_mode == PHY_INTERFACE_MODE_RGMII_ID) 729 priv->rgmii_rx_delay[i] = true; 730 731 if (ports[i].phy_mode == PHY_INTERFACE_MODE_RGMII_TXID || 732 ports[i].phy_mode == PHY_INTERFACE_MODE_RGMII_ID) 733 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 742 static 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 749 for_each_available_child_of_node(ports_node, child) { 750 struct device_node *phy_node; 751 phy_interface_t phy_mode; 752 u32 index; 753 int err; 754 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"); 759 of_node_put(child); 760 return -ENODEV; 761 } 762 763 /* Get PHY mode from DT */ 764 err = of_get_phy_mode(child, &phy_mode); 765 if (err) { 766 dev_err(dev, "Failed to read phy-mode or " 767 "phy-interface-type property for port %d\n", 768 index); 769 of_node_put(child); 770 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"); 779 of_node_put(child); 780 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 802 static 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 822 static 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 836 static 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 851 static 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 879 static 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 901 /* Convert link speed from SJA1105 to ethtool encoding */ 902 static int sja1105_speed[] = { 903 [SJA1105_SPEED_AUTO] = SPEED_UNKNOWN, 904 [SJA1105_SPEED_10MBPS] = SPEED_10, 905 [SJA1105_SPEED_100MBPS] = SPEED_100, 906 [SJA1105_SPEED_1000MBPS] = SPEED_1000, 907 }; 908 909 /* Set link speed in the MAC configuration for a specific port. */ 910 static int sja1105_adjust_port_config(struct sja1105_private *priv, int port, 911 int speed_mbps) 912 { 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 920 /* 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 */ 926 mac = priv->static_config.tables[BLK_IDX_MAC_CONFIG].entries; 927 mii = priv->static_config.tables[BLK_IDX_XMII_PARAMS].entries; 928 929 switch (speed_mbps) { 930 case SPEED_UNKNOWN: 931 /* 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 */ 938 speed = SJA1105_SPEED_AUTO; 939 break; 940 case SPEED_10: 941 speed = SJA1105_SPEED_10MBPS; 942 break; 943 case SPEED_100: 944 speed = SJA1105_SPEED_100MBPS; 945 break; 946 case SPEED_1000: 947 speed = SJA1105_SPEED_1000MBPS; 948 break; 949 default: 950 dev_err(dev, "Invalid speed %iMbps\n", speed_mbps); 951 return -EINVAL; 952 } 953 954 /* 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). 958 * Actually for the SGMII port, the MAC is fixed at 1 Gbps and 959 * we need to configure the PCS only (if even that). 960 */ 961 if (sja1105_supports_sgmii(priv, port)) 962 mac[port].speed = SJA1105_SPEED_1000MBPS; 963 else 964 mac[port].speed = speed; 965 966 /* Write to the dynamic reconfiguration tables */ 967 rc = sja1105_dynamic_config_write(priv, BLK_IDX_MAC_CONFIG, port, 968 &mac[port], true); 969 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 */ 980 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 987 /* 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 */ 994 static 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); 1013 case PHY_INTERFACE_MODE_SGMII: 1014 return (phy_mode != XMII_MODE_SGMII); 1015 default: 1016 return true; 1017 } 1018 } 1019 1020 static void sja1105_mac_config(struct dsa_switch *ds, int port, 1021 unsigned int mode, 1022 const struct phylink_link_state *state) 1023 { 1024 struct sja1105_private *priv = ds->priv; 1025 bool is_sgmii = sja1105_supports_sgmii(priv, port); 1026 1027 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)); 1030 return; 1031 } 1032 1033 if (phylink_autoneg_inband(mode) && !is_sgmii) { 1034 dev_err(ds->dev, "In-band AN not supported!\n"); 1035 return; 1036 } 1037 1038 if (is_sgmii) 1039 sja1105_sgmii_pcs_config(priv, phylink_autoneg_inband(mode), 1040 false); 1041 } 1042 1043 static 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 1050 static void sja1105_mac_link_up(struct dsa_switch *ds, int port, 1051 unsigned int mode, 1052 phy_interface_t interface, 1053 struct phy_device *phydev, 1054 int speed, int duplex, 1055 bool tx_pause, bool rx_pause) 1056 { 1057 struct sja1105_private *priv = ds->priv; 1058 1059 sja1105_adjust_port_config(priv, port, speed); 1060 1061 if (sja1105_supports_sgmii(priv, port) && !phylink_autoneg_inband(mode)) 1062 sja1105_sgmii_pcs_force_speed(priv, speed); 1063 1064 sja1105_inhibit_tx(priv, BIT(port), false); 1065 } 1066 1067 static 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 1081 /* 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 1091 /* 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); 1098 phylink_set(mask, 100baseT1_Full); 1099 if (mii->xmii_mode[port] == XMII_MODE_RGMII || 1100 mii->xmii_mode[port] == XMII_MODE_SGMII) 1101 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 1108 static 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 1140 static int 1141 sja1105_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 */ 1165 static int 1166 sja1105_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 1211 /* 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 */ 1217 static int sja1105et_fdb_index(int bin, int way) 1218 { 1219 return bin * SJA1105ET_FDB_BIN_SIZE + way; 1220 } 1221 1222 static 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) 1226 { 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 1254 int sja1105et_fdb_add(struct dsa_switch *ds, int port, 1255 const unsigned char *addr, u16 vid) 1256 { 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; 1261 int bin, way, rc; 1262 1263 bin = sja1105et_fdb_hash(priv, addr, vid); 1264 1265 way = sja1105et_is_fdb_entry_in_bin(priv, bin, addr, vid, 1266 &l2_lookup, &last_unused); 1267 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 1305 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); 1312 } 1313 1314 int sja1105et_fdb_del(struct dsa_switch *ds, int port, 1315 const unsigned char *addr, u16 vid) 1316 { 1317 struct sja1105_l2_lookup_entry l2_lookup = {0}; 1318 struct sja1105_private *priv = ds->priv; 1319 int index, bin, way, rc; 1320 bool keep; 1321 1322 bin = sja1105et_fdb_hash(priv, addr, vid); 1323 way = sja1105et_is_fdb_entry_in_bin(priv, bin, addr, vid, 1324 &l2_lookup, NULL); 1325 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 */ 1334 l2_lookup.destports &= ~BIT(port); 1335 1336 if (l2_lookup.destports) 1337 keep = true; 1338 else 1339 keep = false; 1340 1341 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); 1347 } 1348 1349 int sja1105pqrs_fdb_add(struct dsa_switch *ds, int port, 1350 const unsigned char *addr, u16 vid) 1351 { 1352 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); 1361 if (priv->vlan_state != SJA1105_VLAN_UNAWARE) { 1362 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 } 1368 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 } 1399 l2_lookup.lockeds = true; 1400 l2_lookup.index = i; 1401 1402 skip_finding_an_index: 1403 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); 1410 } 1411 1412 int sja1105pqrs_fdb_del(struct dsa_switch *ds, int port, 1413 const unsigned char *addr, u16 vid) 1414 { 1415 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); 1424 if (priv->vlan_state != SJA1105_VLAN_UNAWARE) { 1425 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 } 1431 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 1448 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); 1454 } 1455 1456 static 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; 1460 1461 /* 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. 1469 */ 1470 if (priv->vlan_state != SJA1105_VLAN_FILTERING_FULL) 1471 vid = 0; 1472 1473 return priv->info->fdb_add_cmd(ds, port, addr, vid); 1474 } 1475 1476 static 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 1481 if (priv->vlan_state != SJA1105_VLAN_FILTERING_FULL) 1482 vid = 0; 1483 1484 return priv->info->fdb_del_cmd(ds, port, addr, vid); 1485 } 1486 1487 static 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 */ 1502 if (rc == -ENOENT) 1503 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); 1518 1519 /* We need to hide the dsa_8021q VLANs from the user. */ 1520 if (priv->vlan_state == SJA1105_VLAN_UNAWARE) 1521 l2_lookup.vlanid = 0; 1522 cb(macaddr, l2_lookup.vlanid, l2_lookup.lockeds, data); 1523 } 1524 return 0; 1525 } 1526 1527 /* This callback needs to be present */ 1528 static int sja1105_mdb_prepare(struct dsa_switch *ds, int port, 1529 const struct switchdev_obj_port_mdb *mdb) 1530 { 1531 return 0; 1532 } 1533 1534 static 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 1540 static 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 1546 static 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 1587 static 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 1631 static 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 1637 static 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 1643 static 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", 1648 [SJA1105_BEST_EFFORT_POLICING] = "Best-effort policing", 1649 [SJA1105_VIRTUAL_LINKS] = "Virtual links", 1650 }; 1651 1652 /* 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 */ 1658 int sja1105_static_config_reload(struct sja1105_private *priv, 1659 enum sja1105_reset_reason reason) 1660 { 1661 struct ptp_system_timestamp ptp_sts_before; 1662 struct ptp_system_timestamp ptp_sts_after; 1663 struct sja1105_mac_config_entry *mac; 1664 int speed_mbps[SJA1105_NUM_PORTS]; 1665 struct dsa_switch *ds = priv->ds; 1666 s64 t1, t2, t3, t4; 1667 s64 t12, t34; 1668 u16 bmcr = 0; 1669 int rc, i; 1670 s64 now; 1671 1672 mutex_lock(&priv->mgmt_lock); 1673 1674 mac = priv->static_config.tables[BLK_IDX_MAC_CONFIG].entries; 1675 1676 /* 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. 1680 */ 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 1686 if (sja1105_supports_sgmii(priv, SJA1105_SGMII_PORT)) 1687 bmcr = sja1105_sgmii_read(priv, MII_BMCR); 1688 1689 /* 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 1696 /* Reset switch and send updated static configuration */ 1697 rc = sja1105_static_config_upload(priv); 1698 if (rc < 0) 1699 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 1718 out_unlock_ptp: 1719 mutex_unlock(&priv->ptp_data.lock); 1720 1721 dev_info(priv->ds->dev, 1722 "Reset switch and programmed static config. Reason: %s\n", 1723 sja1105_reset_reasons[reason]); 1724 1725 /* 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++) { 1734 rc = sja1105_adjust_port_config(priv, i, speed_mbps[i]); 1735 if (rc < 0) 1736 goto out; 1737 } 1738 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 } 1757 out: 1758 mutex_unlock(&priv->mgmt_lock); 1759 1760 return rc; 1761 } 1762 1763 static 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 1775 static 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 1793 other_priv->expect_dsa_8021q = true; 1794 rc = dsa_8021q_crosschip_bridge_join(ds, port, other_ds, 1795 other_port, 1796 &priv->crosschip_links); 1797 other_priv->expect_dsa_8021q = false; 1798 if (rc) 1799 return rc; 1800 1801 priv->expect_dsa_8021q = true; 1802 rc = dsa_8021q_crosschip_bridge_join(other_ds, other_port, ds, 1803 port, 1804 &other_priv->crosschip_links); 1805 priv->expect_dsa_8021q = false; 1806 if (rc) 1807 return rc; 1808 } 1809 1810 return 0; 1811 } 1812 1813 static 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 1832 other_priv->expect_dsa_8021q = true; 1833 dsa_8021q_crosschip_bridge_leave(ds, port, other_ds, other_port, 1834 &priv->crosschip_links); 1835 other_priv->expect_dsa_8021q = false; 1836 1837 priv->expect_dsa_8021q = true; 1838 dsa_8021q_crosschip_bridge_leave(other_ds, other_port, ds, port, 1839 &other_priv->crosschip_links); 1840 priv->expect_dsa_8021q = false; 1841 } 1842 } 1843 1844 static int sja1105_setup_8021q_tagging(struct dsa_switch *ds, bool enabled) 1845 { 1846 struct sja1105_private *priv = ds->priv; 1847 int rc, i; 1848 1849 for (i = 0; i < SJA1105_NUM_PORTS; i++) { 1850 priv->expect_dsa_8021q = true; 1851 rc = dsa_port_setup_8021q_tagging(ds, i, enabled); 1852 priv->expect_dsa_8021q = false; 1853 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 } 1859 1860 dev_info(ds->dev, "%s switch tagging\n", 1861 enabled ? "Enabled" : "Disabled"); 1862 return 0; 1863 } 1864 1865 static enum dsa_tag_protocol 1866 sja1105_get_tag_protocol(struct dsa_switch *ds, int port, 1867 enum dsa_tag_protocol mp) 1868 { 1869 return DSA_TAG_PROTO_SJA1105; 1870 } 1871 1872 static int sja1105_find_free_subvlan(u16 *subvlan_map, bool pvid) 1873 { 1874 int subvlan; 1875 1876 if (pvid) 1877 return 0; 1878 1879 for (subvlan = 1; subvlan < DSA_8021Q_N_SUBVLAN; subvlan++) 1880 if (subvlan_map[subvlan] == VLAN_N_VID) 1881 return subvlan; 1882 1883 return -1; 1884 } 1885 1886 static int sja1105_find_subvlan(u16 *subvlan_map, u16 vid) 1887 { 1888 int subvlan; 1889 1890 for (subvlan = 0; subvlan < DSA_8021Q_N_SUBVLAN; subvlan++) 1891 if (subvlan_map[subvlan] == vid) 1892 return subvlan; 1893 1894 return -1; 1895 } 1896 1897 static int sja1105_find_committed_subvlan(struct sja1105_private *priv, 1898 int port, u16 vid) 1899 { 1900 struct sja1105_port *sp = &priv->ports[port]; 1901 1902 return sja1105_find_subvlan(sp->subvlan_map, vid); 1903 } 1904 1905 static void sja1105_init_subvlan_map(u16 *subvlan_map) 1906 { 1907 int subvlan; 1908 1909 for (subvlan = 0; subvlan < DSA_8021Q_N_SUBVLAN; subvlan++) 1910 subvlan_map[subvlan] = VLAN_N_VID; 1911 } 1912 1913 static void sja1105_commit_subvlan_map(struct sja1105_private *priv, int port, 1914 u16 *subvlan_map) 1915 { 1916 struct sja1105_port *sp = &priv->ports[port]; 1917 int subvlan; 1918 1919 for (subvlan = 0; subvlan < DSA_8021Q_N_SUBVLAN; subvlan++) 1920 sp->subvlan_map[subvlan] = subvlan_map[subvlan]; 1921 } 1922 1923 static int sja1105_is_vlan_configured(struct sja1105_private *priv, u16 vid) 1924 { 1925 struct sja1105_vlan_lookup_entry *vlan; 1926 int count, i; 1927 1928 vlan = priv->static_config.tables[BLK_IDX_VLAN_LOOKUP].entries; 1929 count = priv->static_config.tables[BLK_IDX_VLAN_LOOKUP].entry_count; 1930 1931 for (i = 0; i < count; i++) 1932 if (vlan[i].vlanid == vid) 1933 return i; 1934 1935 /* Return an invalid entry index if not found */ 1936 return -1; 1937 } 1938 1939 static int 1940 sja1105_find_retagging_entry(struct sja1105_retagging_entry *retagging, 1941 int count, int from_port, u16 from_vid, 1942 u16 to_vid) 1943 { 1944 int i; 1945 1946 for (i = 0; i < count; i++) 1947 if (retagging[i].ing_port == BIT(from_port) && 1948 retagging[i].vlan_ing == from_vid && 1949 retagging[i].vlan_egr == to_vid) 1950 return i; 1951 1952 /* Return an invalid entry index if not found */ 1953 return -1; 1954 } 1955 1956 static int sja1105_commit_vlans(struct sja1105_private *priv, 1957 struct sja1105_vlan_lookup_entry *new_vlan, 1958 struct sja1105_retagging_entry *new_retagging, 1959 int num_retagging) 1960 { 1961 struct sja1105_retagging_entry *retagging; 1962 struct sja1105_vlan_lookup_entry *vlan; 1963 struct sja1105_table *table; 1964 int num_vlans = 0; 1965 int rc, i, k = 0; 1966 1967 /* VLAN table */ 1968 table = &priv->static_config.tables[BLK_IDX_VLAN_LOOKUP]; 1969 vlan = table->entries; 1970 1971 for (i = 0; i < VLAN_N_VID; i++) { 1972 int match = sja1105_is_vlan_configured(priv, i); 1973 1974 if (new_vlan[i].vlanid != VLAN_N_VID) 1975 num_vlans++; 1976 1977 if (new_vlan[i].vlanid == VLAN_N_VID && match >= 0) { 1978 /* Was there before, no longer is. Delete */ 1979 dev_dbg(priv->ds->dev, "Deleting VLAN %d\n", i); 1980 rc = sja1105_dynamic_config_write(priv, 1981 BLK_IDX_VLAN_LOOKUP, 1982 i, &vlan[match], false); 1983 if (rc < 0) 1984 return rc; 1985 } else if (new_vlan[i].vlanid != VLAN_N_VID) { 1986 /* Nothing changed, don't do anything */ 1987 if (match >= 0 && 1988 vlan[match].vlanid == new_vlan[i].vlanid && 1989 vlan[match].tag_port == new_vlan[i].tag_port && 1990 vlan[match].vlan_bc == new_vlan[i].vlan_bc && 1991 vlan[match].vmemb_port == new_vlan[i].vmemb_port) 1992 continue; 1993 /* Update entry */ 1994 dev_dbg(priv->ds->dev, "Updating VLAN %d\n", i); 1995 rc = sja1105_dynamic_config_write(priv, 1996 BLK_IDX_VLAN_LOOKUP, 1997 i, &new_vlan[i], 1998 true); 1999 if (rc < 0) 2000 return rc; 2001 } 2002 } 2003 2004 if (table->entry_count) 2005 kfree(table->entries); 2006 2007 table->entries = kcalloc(num_vlans, table->ops->unpacked_entry_size, 2008 GFP_KERNEL); 2009 if (!table->entries) 2010 return -ENOMEM; 2011 2012 table->entry_count = num_vlans; 2013 vlan = table->entries; 2014 2015 for (i = 0; i < VLAN_N_VID; i++) { 2016 if (new_vlan[i].vlanid == VLAN_N_VID) 2017 continue; 2018 vlan[k++] = new_vlan[i]; 2019 } 2020 2021 /* VLAN Retagging Table */ 2022 table = &priv->static_config.tables[BLK_IDX_RETAGGING]; 2023 retagging = table->entries; 2024 2025 for (i = 0; i < table->entry_count; i++) { 2026 rc = sja1105_dynamic_config_write(priv, BLK_IDX_RETAGGING, 2027 i, &retagging[i], false); 2028 if (rc) 2029 return rc; 2030 } 2031 2032 if (table->entry_count) 2033 kfree(table->entries); 2034 2035 table->entries = kcalloc(num_retagging, table->ops->unpacked_entry_size, 2036 GFP_KERNEL); 2037 if (!table->entries) 2038 return -ENOMEM; 2039 2040 table->entry_count = num_retagging; 2041 retagging = table->entries; 2042 2043 for (i = 0; i < num_retagging; i++) { 2044 retagging[i] = new_retagging[i]; 2045 2046 /* Update entry */ 2047 rc = sja1105_dynamic_config_write(priv, BLK_IDX_RETAGGING, 2048 i, &retagging[i], true); 2049 if (rc < 0) 2050 return rc; 2051 } 2052 2053 return 0; 2054 } 2055 2056 struct sja1105_crosschip_vlan { 2057 struct list_head list; 2058 u16 vid; 2059 bool untagged; 2060 int port; 2061 int other_port; 2062 struct dsa_switch *other_ds; 2063 }; 2064 2065 struct sja1105_crosschip_switch { 2066 struct list_head list; 2067 struct dsa_switch *other_ds; 2068 }; 2069 2070 static int sja1105_commit_pvid(struct sja1105_private *priv) 2071 { 2072 struct sja1105_bridge_vlan *v; 2073 struct list_head *vlan_list; 2074 int rc = 0; 2075 2076 if (priv->vlan_state == SJA1105_VLAN_FILTERING_FULL) 2077 vlan_list = &priv->bridge_vlans; 2078 else 2079 vlan_list = &priv->dsa_8021q_vlans; 2080 2081 list_for_each_entry(v, vlan_list, list) { 2082 if (v->pvid) { 2083 rc = sja1105_pvid_apply(priv, v->port, v->vid); 2084 if (rc) 2085 break; 2086 } 2087 } 2088 2089 return rc; 2090 } 2091 2092 static int 2093 sja1105_build_bridge_vlans(struct sja1105_private *priv, 2094 struct sja1105_vlan_lookup_entry *new_vlan) 2095 { 2096 struct sja1105_bridge_vlan *v; 2097 2098 if (priv->vlan_state == SJA1105_VLAN_UNAWARE) 2099 return 0; 2100 2101 list_for_each_entry(v, &priv->bridge_vlans, list) { 2102 int match = v->vid; 2103 2104 new_vlan[match].vlanid = v->vid; 2105 new_vlan[match].vmemb_port |= BIT(v->port); 2106 new_vlan[match].vlan_bc |= BIT(v->port); 2107 if (!v->untagged) 2108 new_vlan[match].tag_port |= BIT(v->port); 2109 } 2110 2111 return 0; 2112 } 2113 2114 static int 2115 sja1105_build_dsa_8021q_vlans(struct sja1105_private *priv, 2116 struct sja1105_vlan_lookup_entry *new_vlan) 2117 { 2118 struct sja1105_bridge_vlan *v; 2119 2120 if (priv->vlan_state == SJA1105_VLAN_FILTERING_FULL) 2121 return 0; 2122 2123 list_for_each_entry(v, &priv->dsa_8021q_vlans, list) { 2124 int match = v->vid; 2125 2126 new_vlan[match].vlanid = v->vid; 2127 new_vlan[match].vmemb_port |= BIT(v->port); 2128 new_vlan[match].vlan_bc |= BIT(v->port); 2129 if (!v->untagged) 2130 new_vlan[match].tag_port |= BIT(v->port); 2131 } 2132 2133 return 0; 2134 } 2135 2136 static int sja1105_build_subvlans(struct sja1105_private *priv, 2137 u16 subvlan_map[][DSA_8021Q_N_SUBVLAN], 2138 struct sja1105_vlan_lookup_entry *new_vlan, 2139 struct sja1105_retagging_entry *new_retagging, 2140 int *num_retagging) 2141 { 2142 struct sja1105_bridge_vlan *v; 2143 int k = *num_retagging; 2144 2145 if (priv->vlan_state != SJA1105_VLAN_BEST_EFFORT) 2146 return 0; 2147 2148 list_for_each_entry(v, &priv->bridge_vlans, list) { 2149 int upstream = dsa_upstream_port(priv->ds, v->port); 2150 int match, subvlan; 2151 u16 rx_vid; 2152 2153 /* Only sub-VLANs on user ports need to be applied. 2154 * Bridge VLANs also include VLANs added automatically 2155 * by DSA on the CPU port. 2156 */ 2157 if (!dsa_is_user_port(priv->ds, v->port)) 2158 continue; 2159 2160 subvlan = sja1105_find_subvlan(subvlan_map[v->port], 2161 v->vid); 2162 if (subvlan < 0) { 2163 subvlan = sja1105_find_free_subvlan(subvlan_map[v->port], 2164 v->pvid); 2165 if (subvlan < 0) { 2166 dev_err(priv->ds->dev, "No more free subvlans\n"); 2167 return -ENOSPC; 2168 } 2169 } 2170 2171 rx_vid = dsa_8021q_rx_vid_subvlan(priv->ds, v->port, subvlan); 2172 2173 /* @v->vid on @v->port needs to be retagged to @rx_vid 2174 * on @upstream. Assume @v->vid on @v->port and on 2175 * @upstream was already configured by the previous 2176 * iteration over bridge_vlans. 2177 */ 2178 match = rx_vid; 2179 new_vlan[match].vlanid = rx_vid; 2180 new_vlan[match].vmemb_port |= BIT(v->port); 2181 new_vlan[match].vmemb_port |= BIT(upstream); 2182 new_vlan[match].vlan_bc |= BIT(v->port); 2183 new_vlan[match].vlan_bc |= BIT(upstream); 2184 /* The "untagged" flag is set the same as for the 2185 * original VLAN 2186 */ 2187 if (!v->untagged) 2188 new_vlan[match].tag_port |= BIT(v->port); 2189 /* But it's always tagged towards the CPU */ 2190 new_vlan[match].tag_port |= BIT(upstream); 2191 2192 /* The Retagging Table generates packet *clones* with 2193 * the new VLAN. This is a very odd hardware quirk 2194 * which we need to suppress by dropping the original 2195 * packet. 2196 * Deny egress of the original VLAN towards the CPU 2197 * port. This will force the switch to drop it, and 2198 * we'll see only the retagged packets. 2199 */ 2200 match = v->vid; 2201 new_vlan[match].vlan_bc &= ~BIT(upstream); 2202 2203 /* And the retagging itself */ 2204 new_retagging[k].vlan_ing = v->vid; 2205 new_retagging[k].vlan_egr = rx_vid; 2206 new_retagging[k].ing_port = BIT(v->port); 2207 new_retagging[k].egr_port = BIT(upstream); 2208 if (k++ == SJA1105_MAX_RETAGGING_COUNT) { 2209 dev_err(priv->ds->dev, "No more retagging rules\n"); 2210 return -ENOSPC; 2211 } 2212 2213 subvlan_map[v->port][subvlan] = v->vid; 2214 } 2215 2216 *num_retagging = k; 2217 2218 return 0; 2219 } 2220 2221 /* Sadly, in crosschip scenarios where the CPU port is also the link to another 2222 * switch, we should retag backwards (the dsa_8021q vid to the original vid) on 2223 * the CPU port of neighbour switches. 2224 */ 2225 static int 2226 sja1105_build_crosschip_subvlans(struct sja1105_private *priv, 2227 struct sja1105_vlan_lookup_entry *new_vlan, 2228 struct sja1105_retagging_entry *new_retagging, 2229 int *num_retagging) 2230 { 2231 struct sja1105_crosschip_vlan *tmp, *pos; 2232 struct dsa_8021q_crosschip_link *c; 2233 struct sja1105_bridge_vlan *v, *w; 2234 struct list_head crosschip_vlans; 2235 int k = *num_retagging; 2236 int rc = 0; 2237 2238 if (priv->vlan_state != SJA1105_VLAN_BEST_EFFORT) 2239 return 0; 2240 2241 INIT_LIST_HEAD(&crosschip_vlans); 2242 2243 list_for_each_entry(c, &priv->crosschip_links, list) { 2244 struct sja1105_private *other_priv = c->other_ds->priv; 2245 2246 if (other_priv->vlan_state == SJA1105_VLAN_FILTERING_FULL) 2247 continue; 2248 2249 /* Crosschip links are also added to the CPU ports. 2250 * Ignore those. 2251 */ 2252 if (!dsa_is_user_port(priv->ds, c->port)) 2253 continue; 2254 if (!dsa_is_user_port(c->other_ds, c->other_port)) 2255 continue; 2256 2257 /* Search for VLANs on the remote port */ 2258 list_for_each_entry(v, &other_priv->bridge_vlans, list) { 2259 bool already_added = false; 2260 bool we_have_it = false; 2261 2262 if (v->port != c->other_port) 2263 continue; 2264 2265 /* If @v is a pvid on @other_ds, it does not need 2266 * re-retagging, because its SVL field is 0 and we 2267 * already allow that, via the dsa_8021q crosschip 2268 * links. 2269 */ 2270 if (v->pvid) 2271 continue; 2272 2273 /* Search for the VLAN on our local port */ 2274 list_for_each_entry(w, &priv->bridge_vlans, list) { 2275 if (w->port == c->port && w->vid == v->vid) { 2276 we_have_it = true; 2277 break; 2278 } 2279 } 2280 2281 if (!we_have_it) 2282 continue; 2283 2284 list_for_each_entry(tmp, &crosschip_vlans, list) { 2285 if (tmp->vid == v->vid && 2286 tmp->untagged == v->untagged && 2287 tmp->port == c->port && 2288 tmp->other_port == v->port && 2289 tmp->other_ds == c->other_ds) { 2290 already_added = true; 2291 break; 2292 } 2293 } 2294 2295 if (already_added) 2296 continue; 2297 2298 tmp = kzalloc(sizeof(*tmp), GFP_KERNEL); 2299 if (!tmp) { 2300 dev_err(priv->ds->dev, "Failed to allocate memory\n"); 2301 rc = -ENOMEM; 2302 goto out; 2303 } 2304 tmp->vid = v->vid; 2305 tmp->port = c->port; 2306 tmp->other_port = v->port; 2307 tmp->other_ds = c->other_ds; 2308 tmp->untagged = v->untagged; 2309 list_add(&tmp->list, &crosschip_vlans); 2310 } 2311 } 2312 2313 list_for_each_entry(tmp, &crosschip_vlans, list) { 2314 struct sja1105_private *other_priv = tmp->other_ds->priv; 2315 int upstream = dsa_upstream_port(priv->ds, tmp->port); 2316 int match, subvlan; 2317 u16 rx_vid; 2318 2319 subvlan = sja1105_find_committed_subvlan(other_priv, 2320 tmp->other_port, 2321 tmp->vid); 2322 /* If this happens, it's a bug. The neighbour switch does not 2323 * have a subvlan for tmp->vid on tmp->other_port, but it 2324 * should, since we already checked for its vlan_state. 2325 */ 2326 if (WARN_ON(subvlan < 0)) { 2327 rc = -EINVAL; 2328 goto out; 2329 } 2330 2331 rx_vid = dsa_8021q_rx_vid_subvlan(tmp->other_ds, 2332 tmp->other_port, 2333 subvlan); 2334 2335 /* The @rx_vid retagged from @tmp->vid on 2336 * {@tmp->other_ds, @tmp->other_port} needs to be 2337 * re-retagged to @tmp->vid on the way back to us. 2338 * 2339 * Assume the original @tmp->vid is already configured 2340 * on this local switch, otherwise we wouldn't be 2341 * retagging its subvlan on the other switch in the 2342 * first place. We just need to add a reverse retagging 2343 * rule for @rx_vid and install @rx_vid on our ports. 2344 */ 2345 match = rx_vid; 2346 new_vlan[match].vlanid = rx_vid; 2347 new_vlan[match].vmemb_port |= BIT(tmp->port); 2348 new_vlan[match].vmemb_port |= BIT(upstream); 2349 /* The "untagged" flag is set the same as for the 2350 * original VLAN. And towards the CPU, it doesn't 2351 * really matter, because @rx_vid will only receive 2352 * traffic on that port. For consistency with other dsa_8021q 2353 * VLANs, we'll keep the CPU port tagged. 2354 */ 2355 if (!tmp->untagged) 2356 new_vlan[match].tag_port |= BIT(tmp->port); 2357 new_vlan[match].tag_port |= BIT(upstream); 2358 /* Deny egress of @rx_vid towards our front-panel port. 2359 * This will force the switch to drop it, and we'll see 2360 * only the re-retagged packets (having the original, 2361 * pre-initial-retagging, VLAN @tmp->vid). 2362 */ 2363 new_vlan[match].vlan_bc &= ~BIT(tmp->port); 2364 2365 /* On reverse retagging, the same ingress VLAN goes to multiple 2366 * ports. So we have an opportunity to create composite rules 2367 * to not waste the limited space in the retagging table. 2368 */ 2369 k = sja1105_find_retagging_entry(new_retagging, *num_retagging, 2370 upstream, rx_vid, tmp->vid); 2371 if (k < 0) { 2372 if (*num_retagging == SJA1105_MAX_RETAGGING_COUNT) { 2373 dev_err(priv->ds->dev, "No more retagging rules\n"); 2374 rc = -ENOSPC; 2375 goto out; 2376 } 2377 k = (*num_retagging)++; 2378 } 2379 /* And the retagging itself */ 2380 new_retagging[k].vlan_ing = rx_vid; 2381 new_retagging[k].vlan_egr = tmp->vid; 2382 new_retagging[k].ing_port = BIT(upstream); 2383 new_retagging[k].egr_port |= BIT(tmp->port); 2384 } 2385 2386 out: 2387 list_for_each_entry_safe(tmp, pos, &crosschip_vlans, list) { 2388 list_del(&tmp->list); 2389 kfree(tmp); 2390 } 2391 2392 return rc; 2393 } 2394 2395 static int sja1105_build_vlan_table(struct sja1105_private *priv, bool notify); 2396 2397 static int sja1105_notify_crosschip_switches(struct sja1105_private *priv) 2398 { 2399 struct sja1105_crosschip_switch *s, *pos; 2400 struct list_head crosschip_switches; 2401 struct dsa_8021q_crosschip_link *c; 2402 int rc = 0; 2403 2404 INIT_LIST_HEAD(&crosschip_switches); 2405 2406 list_for_each_entry(c, &priv->crosschip_links, list) { 2407 bool already_added = false; 2408 2409 list_for_each_entry(s, &crosschip_switches, list) { 2410 if (s->other_ds == c->other_ds) { 2411 already_added = true; 2412 break; 2413 } 2414 } 2415 2416 if (already_added) 2417 continue; 2418 2419 s = kzalloc(sizeof(*s), GFP_KERNEL); 2420 if (!s) { 2421 dev_err(priv->ds->dev, "Failed to allocate memory\n"); 2422 rc = -ENOMEM; 2423 goto out; 2424 } 2425 s->other_ds = c->other_ds; 2426 list_add(&s->list, &crosschip_switches); 2427 } 2428 2429 list_for_each_entry(s, &crosschip_switches, list) { 2430 struct sja1105_private *other_priv = s->other_ds->priv; 2431 2432 rc = sja1105_build_vlan_table(other_priv, false); 2433 if (rc) 2434 goto out; 2435 } 2436 2437 out: 2438 list_for_each_entry_safe(s, pos, &crosschip_switches, list) { 2439 list_del(&s->list); 2440 kfree(s); 2441 } 2442 2443 return rc; 2444 } 2445 2446 static int sja1105_build_vlan_table(struct sja1105_private *priv, bool notify) 2447 { 2448 u16 subvlan_map[SJA1105_NUM_PORTS][DSA_8021Q_N_SUBVLAN]; 2449 struct sja1105_retagging_entry *new_retagging; 2450 struct sja1105_vlan_lookup_entry *new_vlan; 2451 struct sja1105_table *table; 2452 int i, num_retagging = 0; 2453 int rc; 2454 2455 table = &priv->static_config.tables[BLK_IDX_VLAN_LOOKUP]; 2456 new_vlan = kcalloc(VLAN_N_VID, 2457 table->ops->unpacked_entry_size, GFP_KERNEL); 2458 if (!new_vlan) 2459 return -ENOMEM; 2460 2461 table = &priv->static_config.tables[BLK_IDX_VLAN_LOOKUP]; 2462 new_retagging = kcalloc(SJA1105_MAX_RETAGGING_COUNT, 2463 table->ops->unpacked_entry_size, GFP_KERNEL); 2464 if (!new_retagging) { 2465 kfree(new_vlan); 2466 return -ENOMEM; 2467 } 2468 2469 for (i = 0; i < VLAN_N_VID; i++) 2470 new_vlan[i].vlanid = VLAN_N_VID; 2471 2472 for (i = 0; i < SJA1105_MAX_RETAGGING_COUNT; i++) 2473 new_retagging[i].vlan_ing = VLAN_N_VID; 2474 2475 for (i = 0; i < priv->ds->num_ports; i++) 2476 sja1105_init_subvlan_map(subvlan_map[i]); 2477 2478 /* Bridge VLANs */ 2479 rc = sja1105_build_bridge_vlans(priv, new_vlan); 2480 if (rc) 2481 goto out; 2482 2483 /* VLANs necessary for dsa_8021q operation, given to us by tag_8021q.c: 2484 * - RX VLANs 2485 * - TX VLANs 2486 * - Crosschip links 2487 */ 2488 rc = sja1105_build_dsa_8021q_vlans(priv, new_vlan); 2489 if (rc) 2490 goto out; 2491 2492 /* Private VLANs necessary for dsa_8021q operation, which we need to 2493 * determine on our own: 2494 * - Sub-VLANs 2495 * - Sub-VLANs of crosschip switches 2496 */ 2497 rc = sja1105_build_subvlans(priv, subvlan_map, new_vlan, new_retagging, 2498 &num_retagging); 2499 if (rc) 2500 goto out; 2501 2502 rc = sja1105_build_crosschip_subvlans(priv, new_vlan, new_retagging, 2503 &num_retagging); 2504 if (rc) 2505 goto out; 2506 2507 rc = sja1105_commit_vlans(priv, new_vlan, new_retagging, num_retagging); 2508 if (rc) 2509 goto out; 2510 2511 rc = sja1105_commit_pvid(priv); 2512 if (rc) 2513 goto out; 2514 2515 for (i = 0; i < priv->ds->num_ports; i++) 2516 sja1105_commit_subvlan_map(priv, i, subvlan_map[i]); 2517 2518 if (notify) { 2519 rc = sja1105_notify_crosschip_switches(priv); 2520 if (rc) 2521 goto out; 2522 } 2523 2524 out: 2525 kfree(new_vlan); 2526 kfree(new_retagging); 2527 2528 return rc; 2529 } 2530 2531 /* Select the list to which we should add this VLAN. */ 2532 static struct list_head *sja1105_classify_vlan(struct sja1105_private *priv, 2533 u16 vid) 2534 { 2535 if (priv->expect_dsa_8021q) 2536 return &priv->dsa_8021q_vlans; 2537 2538 return &priv->bridge_vlans; 2539 } 2540 2541 static int sja1105_vlan_prepare(struct dsa_switch *ds, int port, 2542 const struct switchdev_obj_port_vlan *vlan) 2543 { 2544 struct sja1105_private *priv = ds->priv; 2545 u16 vid; 2546 2547 if (priv->vlan_state == SJA1105_VLAN_FILTERING_FULL) 2548 return 0; 2549 2550 /* If the user wants best-effort VLAN filtering (aka vlan_filtering 2551 * bridge plus tagging), be sure to at least deny alterations to the 2552 * configuration done by dsa_8021q. 2553 */ 2554 for (vid = vlan->vid_begin; vid <= vlan->vid_end; vid++) { 2555 if (!priv->expect_dsa_8021q && vid_is_dsa_8021q(vid)) { 2556 dev_err(ds->dev, "Range 1024-3071 reserved for dsa_8021q operation\n"); 2557 return -EBUSY; 2558 } 2559 } 2560 2561 return 0; 2562 } 2563 2564 /* The TPID setting belongs to the General Parameters table, 2565 * which can only be partially reconfigured at runtime (and not the TPID). 2566 * So a switch reset is required. 2567 */ 2568 static int sja1105_vlan_filtering(struct dsa_switch *ds, int port, bool enabled) 2569 { 2570 struct sja1105_l2_lookup_params_entry *l2_lookup_params; 2571 struct sja1105_general_params_entry *general_params; 2572 struct sja1105_private *priv = ds->priv; 2573 enum sja1105_vlan_state state; 2574 struct sja1105_table *table; 2575 struct sja1105_rule *rule; 2576 bool want_tagging; 2577 u16 tpid, tpid2; 2578 int rc; 2579 2580 list_for_each_entry(rule, &priv->flow_block.rules, list) { 2581 if (rule->type == SJA1105_RULE_VL) { 2582 dev_err(ds->dev, 2583 "Cannot change VLAN filtering state while VL rules are active\n"); 2584 return -EBUSY; 2585 } 2586 } 2587 2588 if (enabled) { 2589 /* Enable VLAN filtering. */ 2590 tpid = ETH_P_8021Q; 2591 tpid2 = ETH_P_8021AD; 2592 } else { 2593 /* Disable VLAN filtering. */ 2594 tpid = ETH_P_SJA1105; 2595 tpid2 = ETH_P_SJA1105; 2596 } 2597 2598 for (port = 0; port < ds->num_ports; port++) { 2599 struct sja1105_port *sp = &priv->ports[port]; 2600 2601 if (enabled) 2602 sp->xmit_tpid = priv->info->qinq_tpid; 2603 else 2604 sp->xmit_tpid = ETH_P_SJA1105; 2605 } 2606 2607 if (!enabled) 2608 state = SJA1105_VLAN_UNAWARE; 2609 else if (priv->best_effort_vlan_filtering) 2610 state = SJA1105_VLAN_BEST_EFFORT; 2611 else 2612 state = SJA1105_VLAN_FILTERING_FULL; 2613 2614 if (priv->vlan_state == state) 2615 return 0; 2616 2617 priv->vlan_state = state; 2618 want_tagging = (state == SJA1105_VLAN_UNAWARE || 2619 state == SJA1105_VLAN_BEST_EFFORT); 2620 2621 table = &priv->static_config.tables[BLK_IDX_GENERAL_PARAMS]; 2622 general_params = table->entries; 2623 /* EtherType used to identify inner tagged (C-tag) VLAN traffic */ 2624 general_params->tpid = tpid; 2625 /* EtherType used to identify outer tagged (S-tag) VLAN traffic */ 2626 general_params->tpid2 = tpid2; 2627 /* When VLAN filtering is on, we need to at least be able to 2628 * decode management traffic through the "backup plan". 2629 */ 2630 general_params->incl_srcpt1 = enabled; 2631 general_params->incl_srcpt0 = enabled; 2632 2633 want_tagging = priv->best_effort_vlan_filtering || !enabled; 2634 2635 /* VLAN filtering => independent VLAN learning. 2636 * No VLAN filtering (or best effort) => shared VLAN learning. 2637 * 2638 * In shared VLAN learning mode, untagged traffic still gets 2639 * pvid-tagged, and the FDB table gets populated with entries 2640 * containing the "real" (pvid or from VLAN tag) VLAN ID. 2641 * However the switch performs a masked L2 lookup in the FDB, 2642 * effectively only looking up a frame's DMAC (and not VID) for the 2643 * forwarding decision. 2644 * 2645 * This is extremely convenient for us, because in modes with 2646 * vlan_filtering=0, dsa_8021q actually installs unique pvid's into 2647 * each front panel port. This is good for identification but breaks 2648 * learning badly - the VID of the learnt FDB entry is unique, aka 2649 * no frames coming from any other port are going to have it. So 2650 * for forwarding purposes, this is as though learning was broken 2651 * (all frames get flooded). 2652 */ 2653 table = &priv->static_config.tables[BLK_IDX_L2_LOOKUP_PARAMS]; 2654 l2_lookup_params = table->entries; 2655 l2_lookup_params->shared_learn = want_tagging; 2656 2657 sja1105_frame_memory_partitioning(priv); 2658 2659 rc = sja1105_static_config_reload(priv, SJA1105_VLAN_FILTERING); 2660 if (rc) 2661 dev_err(ds->dev, "Failed to change VLAN Ethertype\n"); 2662 2663 /* Switch port identification based on 802.1Q is only passable 2664 * if we are not under a vlan_filtering bridge. So make sure 2665 * the two configurations are mutually exclusive (of course, the 2666 * user may know better, i.e. best_effort_vlan_filtering). 2667 */ 2668 return sja1105_setup_8021q_tagging(ds, want_tagging); 2669 } 2670 2671 static void sja1105_vlan_add(struct dsa_switch *ds, int port, 2672 const struct switchdev_obj_port_vlan *vlan) 2673 { 2674 struct sja1105_private *priv = ds->priv; 2675 bool vlan_table_changed = false; 2676 u16 vid; 2677 int rc; 2678 2679 for (vid = vlan->vid_begin; vid <= vlan->vid_end; vid++) { 2680 bool untagged = vlan->flags & BRIDGE_VLAN_INFO_UNTAGGED; 2681 bool pvid = vlan->flags & BRIDGE_VLAN_INFO_PVID; 2682 struct sja1105_bridge_vlan *v; 2683 struct list_head *vlan_list; 2684 bool already_added = false; 2685 2686 vlan_list = sja1105_classify_vlan(priv, vid); 2687 2688 list_for_each_entry(v, vlan_list, list) { 2689 if (v->port == port && v->vid == vid && 2690 v->untagged == untagged && v->pvid == pvid) { 2691 already_added = true; 2692 break; 2693 } 2694 } 2695 2696 if (already_added) 2697 continue; 2698 2699 v = kzalloc(sizeof(*v), GFP_KERNEL); 2700 if (!v) { 2701 dev_err(ds->dev, "Out of memory while storing VLAN\n"); 2702 return; 2703 } 2704 2705 v->port = port; 2706 v->vid = vid; 2707 v->untagged = untagged; 2708 v->pvid = pvid; 2709 list_add(&v->list, vlan_list); 2710 2711 vlan_table_changed = true; 2712 } 2713 2714 if (!vlan_table_changed) 2715 return; 2716 2717 rc = sja1105_build_vlan_table(priv, true); 2718 if (rc) 2719 dev_err(ds->dev, "Failed to build VLAN table: %d\n", rc); 2720 } 2721 2722 static int sja1105_vlan_del(struct dsa_switch *ds, int port, 2723 const struct switchdev_obj_port_vlan *vlan) 2724 { 2725 struct sja1105_private *priv = ds->priv; 2726 bool vlan_table_changed = false; 2727 u16 vid; 2728 2729 for (vid = vlan->vid_begin; vid <= vlan->vid_end; vid++) { 2730 struct sja1105_bridge_vlan *v, *n; 2731 struct list_head *vlan_list; 2732 2733 vlan_list = sja1105_classify_vlan(priv, vid); 2734 2735 list_for_each_entry_safe(v, n, vlan_list, list) { 2736 if (v->port == port && v->vid == vid) { 2737 list_del(&v->list); 2738 kfree(v); 2739 vlan_table_changed = true; 2740 break; 2741 } 2742 } 2743 } 2744 2745 if (!vlan_table_changed) 2746 return 0; 2747 2748 return sja1105_build_vlan_table(priv, true); 2749 } 2750 2751 static int sja1105_best_effort_vlan_filtering_get(struct sja1105_private *priv, 2752 bool *be_vlan) 2753 { 2754 *be_vlan = priv->best_effort_vlan_filtering; 2755 2756 return 0; 2757 } 2758 2759 static int sja1105_best_effort_vlan_filtering_set(struct sja1105_private *priv, 2760 bool be_vlan) 2761 { 2762 struct dsa_switch *ds = priv->ds; 2763 bool vlan_filtering; 2764 int port; 2765 int rc; 2766 2767 priv->best_effort_vlan_filtering = be_vlan; 2768 2769 rtnl_lock(); 2770 for (port = 0; port < ds->num_ports; port++) { 2771 struct dsa_port *dp; 2772 2773 if (!dsa_is_user_port(ds, port)) 2774 continue; 2775 2776 dp = dsa_to_port(ds, port); 2777 vlan_filtering = dsa_port_is_vlan_filtering(dp); 2778 2779 rc = sja1105_vlan_filtering(ds, port, vlan_filtering); 2780 if (rc) 2781 break; 2782 } 2783 rtnl_unlock(); 2784 2785 return rc; 2786 } 2787 2788 enum sja1105_devlink_param_id { 2789 SJA1105_DEVLINK_PARAM_ID_BASE = DEVLINK_PARAM_GENERIC_ID_MAX, 2790 SJA1105_DEVLINK_PARAM_ID_BEST_EFFORT_VLAN_FILTERING, 2791 }; 2792 2793 static int sja1105_devlink_param_get(struct dsa_switch *ds, u32 id, 2794 struct devlink_param_gset_ctx *ctx) 2795 { 2796 struct sja1105_private *priv = ds->priv; 2797 int err; 2798 2799 switch (id) { 2800 case SJA1105_DEVLINK_PARAM_ID_BEST_EFFORT_VLAN_FILTERING: 2801 err = sja1105_best_effort_vlan_filtering_get(priv, 2802 &ctx->val.vbool); 2803 break; 2804 default: 2805 err = -EOPNOTSUPP; 2806 break; 2807 } 2808 2809 return err; 2810 } 2811 2812 static int sja1105_devlink_param_set(struct dsa_switch *ds, u32 id, 2813 struct devlink_param_gset_ctx *ctx) 2814 { 2815 struct sja1105_private *priv = ds->priv; 2816 int err; 2817 2818 switch (id) { 2819 case SJA1105_DEVLINK_PARAM_ID_BEST_EFFORT_VLAN_FILTERING: 2820 err = sja1105_best_effort_vlan_filtering_set(priv, 2821 ctx->val.vbool); 2822 break; 2823 default: 2824 err = -EOPNOTSUPP; 2825 break; 2826 } 2827 2828 return err; 2829 } 2830 2831 static const struct devlink_param sja1105_devlink_params[] = { 2832 DSA_DEVLINK_PARAM_DRIVER(SJA1105_DEVLINK_PARAM_ID_BEST_EFFORT_VLAN_FILTERING, 2833 "best_effort_vlan_filtering", 2834 DEVLINK_PARAM_TYPE_BOOL, 2835 BIT(DEVLINK_PARAM_CMODE_RUNTIME)), 2836 }; 2837 2838 static int sja1105_setup_devlink_params(struct dsa_switch *ds) 2839 { 2840 return dsa_devlink_params_register(ds, sja1105_devlink_params, 2841 ARRAY_SIZE(sja1105_devlink_params)); 2842 } 2843 2844 static void sja1105_teardown_devlink_params(struct dsa_switch *ds) 2845 { 2846 dsa_devlink_params_unregister(ds, sja1105_devlink_params, 2847 ARRAY_SIZE(sja1105_devlink_params)); 2848 } 2849 2850 /* The programming model for the SJA1105 switch is "all-at-once" via static 2851 * configuration tables. Some of these can be dynamically modified at runtime, 2852 * but not the xMII mode parameters table. 2853 * Furthermode, some PHYs may not have crystals for generating their clocks 2854 * (e.g. RMII). Instead, their 50MHz clock is supplied via the SJA1105 port's 2855 * ref_clk pin. So port clocking needs to be initialized early, before 2856 * connecting to PHYs is attempted, otherwise they won't respond through MDIO. 2857 * Setting correct PHY link speed does not matter now. 2858 * But dsa_slave_phy_setup is called later than sja1105_setup, so the PHY 2859 * bindings are not yet parsed by DSA core. We need to parse early so that we 2860 * can populate the xMII mode parameters table. 2861 */ 2862 static int sja1105_setup(struct dsa_switch *ds) 2863 { 2864 struct sja1105_dt_port ports[SJA1105_NUM_PORTS]; 2865 struct sja1105_private *priv = ds->priv; 2866 int rc; 2867 2868 rc = sja1105_parse_dt(priv, ports); 2869 if (rc < 0) { 2870 dev_err(ds->dev, "Failed to parse DT: %d\n", rc); 2871 return rc; 2872 } 2873 2874 /* Error out early if internal delays are required through DT 2875 * and we can't apply them. 2876 */ 2877 rc = sja1105_parse_rgmii_delays(priv, ports); 2878 if (rc < 0) { 2879 dev_err(ds->dev, "RGMII delay not supported\n"); 2880 return rc; 2881 } 2882 2883 rc = sja1105_ptp_clock_register(ds); 2884 if (rc < 0) { 2885 dev_err(ds->dev, "Failed to register PTP clock: %d\n", rc); 2886 return rc; 2887 } 2888 /* Create and send configuration down to device */ 2889 rc = sja1105_static_config_load(priv, ports); 2890 if (rc < 0) { 2891 dev_err(ds->dev, "Failed to load static config: %d\n", rc); 2892 return rc; 2893 } 2894 /* Configure the CGU (PHY link modes and speeds) */ 2895 rc = sja1105_clocking_setup(priv); 2896 if (rc < 0) { 2897 dev_err(ds->dev, "Failed to configure MII clocking: %d\n", rc); 2898 return rc; 2899 } 2900 /* On SJA1105, VLAN filtering per se is always enabled in hardware. 2901 * The only thing we can do to disable it is lie about what the 802.1Q 2902 * EtherType is. 2903 * So it will still try to apply VLAN filtering, but all ingress 2904 * traffic (except frames received with EtherType of ETH_P_SJA1105) 2905 * will be internally tagged with a distorted VLAN header where the 2906 * TPID is ETH_P_SJA1105, and the VLAN ID is the port pvid. 2907 */ 2908 ds->vlan_filtering_is_global = true; 2909 2910 /* Advertise the 8 egress queues */ 2911 ds->num_tx_queues = SJA1105_NUM_TC; 2912 2913 ds->mtu_enforcement_ingress = true; 2914 2915 ds->configure_vlan_while_not_filtering = true; 2916 2917 rc = sja1105_setup_devlink_params(ds); 2918 if (rc < 0) 2919 return rc; 2920 2921 /* The DSA/switchdev model brings up switch ports in standalone mode by 2922 * default, and that means vlan_filtering is 0 since they're not under 2923 * a bridge, so it's safe to set up switch tagging at this time. 2924 */ 2925 return sja1105_setup_8021q_tagging(ds, true); 2926 } 2927 2928 static void sja1105_teardown(struct dsa_switch *ds) 2929 { 2930 struct sja1105_private *priv = ds->priv; 2931 struct sja1105_bridge_vlan *v, *n; 2932 int port; 2933 2934 for (port = 0; port < SJA1105_NUM_PORTS; port++) { 2935 struct sja1105_port *sp = &priv->ports[port]; 2936 2937 if (!dsa_is_user_port(ds, port)) 2938 continue; 2939 2940 if (sp->xmit_worker) 2941 kthread_destroy_worker(sp->xmit_worker); 2942 } 2943 2944 sja1105_teardown_devlink_params(ds); 2945 sja1105_flower_teardown(ds); 2946 sja1105_tas_teardown(ds); 2947 sja1105_ptp_clock_unregister(ds); 2948 sja1105_static_config_free(&priv->static_config); 2949 2950 list_for_each_entry_safe(v, n, &priv->dsa_8021q_vlans, list) { 2951 list_del(&v->list); 2952 kfree(v); 2953 } 2954 2955 list_for_each_entry_safe(v, n, &priv->bridge_vlans, list) { 2956 list_del(&v->list); 2957 kfree(v); 2958 } 2959 } 2960 2961 static int sja1105_port_enable(struct dsa_switch *ds, int port, 2962 struct phy_device *phy) 2963 { 2964 struct net_device *slave; 2965 2966 if (!dsa_is_user_port(ds, port)) 2967 return 0; 2968 2969 slave = dsa_to_port(ds, port)->slave; 2970 2971 slave->features &= ~NETIF_F_HW_VLAN_CTAG_FILTER; 2972 2973 return 0; 2974 } 2975 2976 static void sja1105_port_disable(struct dsa_switch *ds, int port) 2977 { 2978 struct sja1105_private *priv = ds->priv; 2979 struct sja1105_port *sp = &priv->ports[port]; 2980 2981 if (!dsa_is_user_port(ds, port)) 2982 return; 2983 2984 kthread_cancel_work_sync(&sp->xmit_work); 2985 skb_queue_purge(&sp->xmit_queue); 2986 } 2987 2988 static int sja1105_mgmt_xmit(struct dsa_switch *ds, int port, int slot, 2989 struct sk_buff *skb, bool takets) 2990 { 2991 struct sja1105_mgmt_entry mgmt_route = {0}; 2992 struct sja1105_private *priv = ds->priv; 2993 struct ethhdr *hdr; 2994 int timeout = 10; 2995 int rc; 2996 2997 hdr = eth_hdr(skb); 2998 2999 mgmt_route.macaddr = ether_addr_to_u64(hdr->h_dest); 3000 mgmt_route.destports = BIT(port); 3001 mgmt_route.enfport = 1; 3002 mgmt_route.tsreg = 0; 3003 mgmt_route.takets = takets; 3004 3005 rc = sja1105_dynamic_config_write(priv, BLK_IDX_MGMT_ROUTE, 3006 slot, &mgmt_route, true); 3007 if (rc < 0) { 3008 kfree_skb(skb); 3009 return rc; 3010 } 3011 3012 /* Transfer skb to the host port. */ 3013 dsa_enqueue_skb(skb, dsa_to_port(ds, port)->slave); 3014 3015 /* Wait until the switch has processed the frame */ 3016 do { 3017 rc = sja1105_dynamic_config_read(priv, BLK_IDX_MGMT_ROUTE, 3018 slot, &mgmt_route); 3019 if (rc < 0) { 3020 dev_err_ratelimited(priv->ds->dev, 3021 "failed to poll for mgmt route\n"); 3022 continue; 3023 } 3024 3025 /* UM10944: The ENFPORT flag of the respective entry is 3026 * cleared when a match is found. The host can use this 3027 * flag as an acknowledgment. 3028 */ 3029 cpu_relax(); 3030 } while (mgmt_route.enfport && --timeout); 3031 3032 if (!timeout) { 3033 /* Clean up the management route so that a follow-up 3034 * frame may not match on it by mistake. 3035 * This is only hardware supported on P/Q/R/S - on E/T it is 3036 * a no-op and we are silently discarding the -EOPNOTSUPP. 3037 */ 3038 sja1105_dynamic_config_write(priv, BLK_IDX_MGMT_ROUTE, 3039 slot, &mgmt_route, false); 3040 dev_err_ratelimited(priv->ds->dev, "xmit timed out\n"); 3041 } 3042 3043 return NETDEV_TX_OK; 3044 } 3045 3046 #define work_to_port(work) \ 3047 container_of((work), struct sja1105_port, xmit_work) 3048 #define tagger_to_sja1105(t) \ 3049 container_of((t), struct sja1105_private, tagger_data) 3050 3051 /* Deferred work is unfortunately necessary because setting up the management 3052 * route cannot be done from atomit context (SPI transfer takes a sleepable 3053 * lock on the bus) 3054 */ 3055 static void sja1105_port_deferred_xmit(struct kthread_work *work) 3056 { 3057 struct sja1105_port *sp = work_to_port(work); 3058 struct sja1105_tagger_data *tagger_data = sp->data; 3059 struct sja1105_private *priv = tagger_to_sja1105(tagger_data); 3060 int port = sp - priv->ports; 3061 struct sk_buff *skb; 3062 3063 while ((skb = skb_dequeue(&sp->xmit_queue)) != NULL) { 3064 struct sk_buff *clone = DSA_SKB_CB(skb)->clone; 3065 3066 mutex_lock(&priv->mgmt_lock); 3067 3068 sja1105_mgmt_xmit(priv->ds, port, 0, skb, !!clone); 3069 3070 /* The clone, if there, was made by dsa_skb_tx_timestamp */ 3071 if (clone) 3072 sja1105_ptp_txtstamp_skb(priv->ds, port, clone); 3073 3074 mutex_unlock(&priv->mgmt_lock); 3075 } 3076 } 3077 3078 /* The MAXAGE setting belongs to the L2 Forwarding Parameters table, 3079 * which cannot be reconfigured at runtime. So a switch reset is required. 3080 */ 3081 static int sja1105_set_ageing_time(struct dsa_switch *ds, 3082 unsigned int ageing_time) 3083 { 3084 struct sja1105_l2_lookup_params_entry *l2_lookup_params; 3085 struct sja1105_private *priv = ds->priv; 3086 struct sja1105_table *table; 3087 unsigned int maxage; 3088 3089 table = &priv->static_config.tables[BLK_IDX_L2_LOOKUP_PARAMS]; 3090 l2_lookup_params = table->entries; 3091 3092 maxage = SJA1105_AGEING_TIME_MS(ageing_time); 3093 3094 if (l2_lookup_params->maxage == maxage) 3095 return 0; 3096 3097 l2_lookup_params->maxage = maxage; 3098 3099 return sja1105_static_config_reload(priv, SJA1105_AGEING_TIME); 3100 } 3101 3102 static int sja1105_change_mtu(struct dsa_switch *ds, int port, int new_mtu) 3103 { 3104 struct sja1105_l2_policing_entry *policing; 3105 struct sja1105_private *priv = ds->priv; 3106 3107 new_mtu += VLAN_ETH_HLEN + ETH_FCS_LEN; 3108 3109 if (dsa_is_cpu_port(ds, port)) 3110 new_mtu += VLAN_HLEN; 3111 3112 policing = priv->static_config.tables[BLK_IDX_L2_POLICING].entries; 3113 3114 if (policing[port].maxlen == new_mtu) 3115 return 0; 3116 3117 policing[port].maxlen = new_mtu; 3118 3119 return sja1105_static_config_reload(priv, SJA1105_BEST_EFFORT_POLICING); 3120 } 3121 3122 static int sja1105_get_max_mtu(struct dsa_switch *ds, int port) 3123 { 3124 return 2043 - VLAN_ETH_HLEN - ETH_FCS_LEN; 3125 } 3126 3127 static int sja1105_port_setup_tc(struct dsa_switch *ds, int port, 3128 enum tc_setup_type type, 3129 void *type_data) 3130 { 3131 switch (type) { 3132 case TC_SETUP_QDISC_TAPRIO: 3133 return sja1105_setup_tc_taprio(ds, port, type_data); 3134 default: 3135 return -EOPNOTSUPP; 3136 } 3137 } 3138 3139 /* We have a single mirror (@to) port, but can configure ingress and egress 3140 * mirroring on all other (@from) ports. 3141 * We need to allow mirroring rules only as long as the @to port is always the 3142 * same, and we need to unset the @to port from mirr_port only when there is no 3143 * mirroring rule that references it. 3144 */ 3145 static int sja1105_mirror_apply(struct sja1105_private *priv, int from, int to, 3146 bool ingress, bool enabled) 3147 { 3148 struct sja1105_general_params_entry *general_params; 3149 struct sja1105_mac_config_entry *mac; 3150 struct sja1105_table *table; 3151 bool already_enabled; 3152 u64 new_mirr_port; 3153 int rc; 3154 3155 table = &priv->static_config.tables[BLK_IDX_GENERAL_PARAMS]; 3156 general_params = table->entries; 3157 3158 mac = priv->static_config.tables[BLK_IDX_MAC_CONFIG].entries; 3159 3160 already_enabled = (general_params->mirr_port != SJA1105_NUM_PORTS); 3161 if (already_enabled && enabled && general_params->mirr_port != to) { 3162 dev_err(priv->ds->dev, 3163 "Delete mirroring rules towards port %llu first\n", 3164 general_params->mirr_port); 3165 return -EBUSY; 3166 } 3167 3168 new_mirr_port = to; 3169 if (!enabled) { 3170 bool keep = false; 3171 int port; 3172 3173 /* Anybody still referencing mirr_port? */ 3174 for (port = 0; port < SJA1105_NUM_PORTS; port++) { 3175 if (mac[port].ing_mirr || mac[port].egr_mirr) { 3176 keep = true; 3177 break; 3178 } 3179 } 3180 /* Unset already_enabled for next time */ 3181 if (!keep) 3182 new_mirr_port = SJA1105_NUM_PORTS; 3183 } 3184 if (new_mirr_port != general_params->mirr_port) { 3185 general_params->mirr_port = new_mirr_port; 3186 3187 rc = sja1105_dynamic_config_write(priv, BLK_IDX_GENERAL_PARAMS, 3188 0, general_params, true); 3189 if (rc < 0) 3190 return rc; 3191 } 3192 3193 if (ingress) 3194 mac[from].ing_mirr = enabled; 3195 else 3196 mac[from].egr_mirr = enabled; 3197 3198 return sja1105_dynamic_config_write(priv, BLK_IDX_MAC_CONFIG, from, 3199 &mac[from], true); 3200 } 3201 3202 static int sja1105_mirror_add(struct dsa_switch *ds, int port, 3203 struct dsa_mall_mirror_tc_entry *mirror, 3204 bool ingress) 3205 { 3206 return sja1105_mirror_apply(ds->priv, port, mirror->to_local_port, 3207 ingress, true); 3208 } 3209 3210 static void sja1105_mirror_del(struct dsa_switch *ds, int port, 3211 struct dsa_mall_mirror_tc_entry *mirror) 3212 { 3213 sja1105_mirror_apply(ds->priv, port, mirror->to_local_port, 3214 mirror->ingress, false); 3215 } 3216 3217 static int sja1105_port_policer_add(struct dsa_switch *ds, int port, 3218 struct dsa_mall_policer_tc_entry *policer) 3219 { 3220 struct sja1105_l2_policing_entry *policing; 3221 struct sja1105_private *priv = ds->priv; 3222 3223 policing = priv->static_config.tables[BLK_IDX_L2_POLICING].entries; 3224 3225 /* In hardware, every 8 microseconds the credit level is incremented by 3226 * the value of RATE bytes divided by 64, up to a maximum of SMAX 3227 * bytes. 3228 */ 3229 policing[port].rate = div_u64(512 * policer->rate_bytes_per_sec, 3230 1000000); 3231 policing[port].smax = div_u64(policer->rate_bytes_per_sec * 3232 PSCHED_NS2TICKS(policer->burst), 3233 PSCHED_TICKS_PER_SEC); 3234 3235 return sja1105_static_config_reload(priv, SJA1105_BEST_EFFORT_POLICING); 3236 } 3237 3238 static void sja1105_port_policer_del(struct dsa_switch *ds, int port) 3239 { 3240 struct sja1105_l2_policing_entry *policing; 3241 struct sja1105_private *priv = ds->priv; 3242 3243 policing = priv->static_config.tables[BLK_IDX_L2_POLICING].entries; 3244 3245 policing[port].rate = SJA1105_RATE_MBPS(1000); 3246 policing[port].smax = 65535; 3247 3248 sja1105_static_config_reload(priv, SJA1105_BEST_EFFORT_POLICING); 3249 } 3250 3251 static const struct dsa_switch_ops sja1105_switch_ops = { 3252 .get_tag_protocol = sja1105_get_tag_protocol, 3253 .setup = sja1105_setup, 3254 .teardown = sja1105_teardown, 3255 .set_ageing_time = sja1105_set_ageing_time, 3256 .port_change_mtu = sja1105_change_mtu, 3257 .port_max_mtu = sja1105_get_max_mtu, 3258 .phylink_validate = sja1105_phylink_validate, 3259 .phylink_mac_link_state = sja1105_mac_pcs_get_state, 3260 .phylink_mac_config = sja1105_mac_config, 3261 .phylink_mac_link_up = sja1105_mac_link_up, 3262 .phylink_mac_link_down = sja1105_mac_link_down, 3263 .get_strings = sja1105_get_strings, 3264 .get_ethtool_stats = sja1105_get_ethtool_stats, 3265 .get_sset_count = sja1105_get_sset_count, 3266 .get_ts_info = sja1105_get_ts_info, 3267 .port_enable = sja1105_port_enable, 3268 .port_disable = sja1105_port_disable, 3269 .port_fdb_dump = sja1105_fdb_dump, 3270 .port_fdb_add = sja1105_fdb_add, 3271 .port_fdb_del = sja1105_fdb_del, 3272 .port_bridge_join = sja1105_bridge_join, 3273 .port_bridge_leave = sja1105_bridge_leave, 3274 .port_stp_state_set = sja1105_bridge_stp_state_set, 3275 .port_vlan_prepare = sja1105_vlan_prepare, 3276 .port_vlan_filtering = sja1105_vlan_filtering, 3277 .port_vlan_add = sja1105_vlan_add, 3278 .port_vlan_del = sja1105_vlan_del, 3279 .port_mdb_prepare = sja1105_mdb_prepare, 3280 .port_mdb_add = sja1105_mdb_add, 3281 .port_mdb_del = sja1105_mdb_del, 3282 .port_hwtstamp_get = sja1105_hwtstamp_get, 3283 .port_hwtstamp_set = sja1105_hwtstamp_set, 3284 .port_rxtstamp = sja1105_port_rxtstamp, 3285 .port_txtstamp = sja1105_port_txtstamp, 3286 .port_setup_tc = sja1105_port_setup_tc, 3287 .port_mirror_add = sja1105_mirror_add, 3288 .port_mirror_del = sja1105_mirror_del, 3289 .port_policer_add = sja1105_port_policer_add, 3290 .port_policer_del = sja1105_port_policer_del, 3291 .cls_flower_add = sja1105_cls_flower_add, 3292 .cls_flower_del = sja1105_cls_flower_del, 3293 .cls_flower_stats = sja1105_cls_flower_stats, 3294 .crosschip_bridge_join = sja1105_crosschip_bridge_join, 3295 .crosschip_bridge_leave = sja1105_crosschip_bridge_leave, 3296 .devlink_param_get = sja1105_devlink_param_get, 3297 .devlink_param_set = sja1105_devlink_param_set, 3298 }; 3299 3300 static int sja1105_check_device_id(struct sja1105_private *priv) 3301 { 3302 const struct sja1105_regs *regs = priv->info->regs; 3303 u8 prod_id[SJA1105_SIZE_DEVICE_ID] = {0}; 3304 struct device *dev = &priv->spidev->dev; 3305 u32 device_id; 3306 u64 part_no; 3307 int rc; 3308 3309 rc = sja1105_xfer_u32(priv, SPI_READ, regs->device_id, &device_id, 3310 NULL); 3311 if (rc < 0) 3312 return rc; 3313 3314 if (device_id != priv->info->device_id) { 3315 dev_err(dev, "Expected device ID 0x%llx but read 0x%x\n", 3316 priv->info->device_id, device_id); 3317 return -ENODEV; 3318 } 3319 3320 rc = sja1105_xfer_buf(priv, SPI_READ, regs->prod_id, prod_id, 3321 SJA1105_SIZE_DEVICE_ID); 3322 if (rc < 0) 3323 return rc; 3324 3325 sja1105_unpack(prod_id, &part_no, 19, 4, SJA1105_SIZE_DEVICE_ID); 3326 3327 if (part_no != priv->info->part_no) { 3328 dev_err(dev, "Expected part number 0x%llx but read 0x%llx\n", 3329 priv->info->part_no, part_no); 3330 return -ENODEV; 3331 } 3332 3333 return 0; 3334 } 3335 3336 static int sja1105_probe(struct spi_device *spi) 3337 { 3338 struct sja1105_tagger_data *tagger_data; 3339 struct device *dev = &spi->dev; 3340 struct sja1105_private *priv; 3341 struct dsa_switch *ds; 3342 int rc, port; 3343 3344 if (!dev->of_node) { 3345 dev_err(dev, "No DTS bindings for SJA1105 driver\n"); 3346 return -EINVAL; 3347 } 3348 3349 priv = devm_kzalloc(dev, sizeof(struct sja1105_private), GFP_KERNEL); 3350 if (!priv) 3351 return -ENOMEM; 3352 3353 /* Configure the optional reset pin and bring up switch */ 3354 priv->reset_gpio = devm_gpiod_get(dev, "reset", GPIOD_OUT_HIGH); 3355 if (IS_ERR(priv->reset_gpio)) 3356 dev_dbg(dev, "reset-gpios not defined, ignoring\n"); 3357 else 3358 sja1105_hw_reset(priv->reset_gpio, 1, 1); 3359 3360 /* Populate our driver private structure (priv) based on 3361 * the device tree node that was probed (spi) 3362 */ 3363 priv->spidev = spi; 3364 spi_set_drvdata(spi, priv); 3365 3366 /* Configure the SPI bus */ 3367 spi->bits_per_word = 8; 3368 rc = spi_setup(spi); 3369 if (rc < 0) { 3370 dev_err(dev, "Could not init SPI\n"); 3371 return rc; 3372 } 3373 3374 priv->info = of_device_get_match_data(dev); 3375 3376 /* Detect hardware device */ 3377 rc = sja1105_check_device_id(priv); 3378 if (rc < 0) { 3379 dev_err(dev, "Device ID check failed: %d\n", rc); 3380 return rc; 3381 } 3382 3383 dev_info(dev, "Probed switch chip: %s\n", priv->info->name); 3384 3385 ds = devm_kzalloc(dev, sizeof(*ds), GFP_KERNEL); 3386 if (!ds) 3387 return -ENOMEM; 3388 3389 ds->dev = dev; 3390 ds->num_ports = SJA1105_NUM_PORTS; 3391 ds->ops = &sja1105_switch_ops; 3392 ds->priv = priv; 3393 priv->ds = ds; 3394 3395 tagger_data = &priv->tagger_data; 3396 3397 mutex_init(&priv->ptp_data.lock); 3398 mutex_init(&priv->mgmt_lock); 3399 3400 INIT_LIST_HEAD(&priv->crosschip_links); 3401 INIT_LIST_HEAD(&priv->bridge_vlans); 3402 INIT_LIST_HEAD(&priv->dsa_8021q_vlans); 3403 3404 sja1105_tas_setup(ds); 3405 sja1105_flower_setup(ds); 3406 3407 rc = dsa_register_switch(priv->ds); 3408 if (rc) 3409 return rc; 3410 3411 /* Connections between dsa_port and sja1105_port */ 3412 for (port = 0; port < SJA1105_NUM_PORTS; port++) { 3413 struct sja1105_port *sp = &priv->ports[port]; 3414 struct dsa_port *dp = dsa_to_port(ds, port); 3415 struct net_device *slave; 3416 int subvlan; 3417 3418 if (!dsa_is_user_port(ds, port)) 3419 continue; 3420 3421 dp->priv = sp; 3422 sp->dp = dp; 3423 sp->data = tagger_data; 3424 slave = dp->slave; 3425 kthread_init_work(&sp->xmit_work, sja1105_port_deferred_xmit); 3426 sp->xmit_worker = kthread_create_worker(0, "%s_xmit", 3427 slave->name); 3428 if (IS_ERR(sp->xmit_worker)) { 3429 rc = PTR_ERR(sp->xmit_worker); 3430 dev_err(ds->dev, 3431 "failed to create deferred xmit thread: %d\n", 3432 rc); 3433 goto out; 3434 } 3435 skb_queue_head_init(&sp->xmit_queue); 3436 sp->xmit_tpid = ETH_P_SJA1105; 3437 3438 for (subvlan = 0; subvlan < DSA_8021Q_N_SUBVLAN; subvlan++) 3439 sp->subvlan_map[subvlan] = VLAN_N_VID; 3440 } 3441 3442 return 0; 3443 out: 3444 while (port-- > 0) { 3445 struct sja1105_port *sp = &priv->ports[port]; 3446 3447 if (!dsa_is_user_port(ds, port)) 3448 continue; 3449 3450 kthread_destroy_worker(sp->xmit_worker); 3451 } 3452 return rc; 3453 } 3454 3455 static int sja1105_remove(struct spi_device *spi) 3456 { 3457 struct sja1105_private *priv = spi_get_drvdata(spi); 3458 3459 dsa_unregister_switch(priv->ds); 3460 return 0; 3461 } 3462 3463 static const struct of_device_id sja1105_dt_ids[] = { 3464 { .compatible = "nxp,sja1105e", .data = &sja1105e_info }, 3465 { .compatible = "nxp,sja1105t", .data = &sja1105t_info }, 3466 { .compatible = "nxp,sja1105p", .data = &sja1105p_info }, 3467 { .compatible = "nxp,sja1105q", .data = &sja1105q_info }, 3468 { .compatible = "nxp,sja1105r", .data = &sja1105r_info }, 3469 { .compatible = "nxp,sja1105s", .data = &sja1105s_info }, 3470 { /* sentinel */ }, 3471 }; 3472 MODULE_DEVICE_TABLE(of, sja1105_dt_ids); 3473 3474 static struct spi_driver sja1105_driver = { 3475 .driver = { 3476 .name = "sja1105", 3477 .owner = THIS_MODULE, 3478 .of_match_table = of_match_ptr(sja1105_dt_ids), 3479 }, 3480 .probe = sja1105_probe, 3481 .remove = sja1105_remove, 3482 }; 3483 3484 module_spi_driver(sja1105_driver); 3485 3486 MODULE_AUTHOR("Vladimir Oltean <olteanv@gmail.com>"); 3487 MODULE_AUTHOR("Georg Waibel <georg.waibel@sensor-technik.de>"); 3488 MODULE_DESCRIPTION("SJA1105 Driver"); 3489 MODULE_LICENSE("GPL v2"); 3490