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