1 // SPDX-License-Identifier: GPL-2.0 2 /* Copyright 2019 NXP Semiconductors 3 * 4 * This is an umbrella module for all network switches that are 5 * register-compatible with Ocelot and that perform I/O to their host CPU 6 * through an NPI (Node Processor Interface) Ethernet port. 7 */ 8 #include <uapi/linux/if_bridge.h> 9 #include <soc/mscc/ocelot_vcap.h> 10 #include <soc/mscc/ocelot_qsys.h> 11 #include <soc/mscc/ocelot_sys.h> 12 #include <soc/mscc/ocelot_dev.h> 13 #include <soc/mscc/ocelot_ana.h> 14 #include <soc/mscc/ocelot_ptp.h> 15 #include <soc/mscc/ocelot.h> 16 #include <linux/platform_device.h> 17 #include <linux/packing.h> 18 #include <linux/module.h> 19 #include <linux/of_net.h> 20 #include <linux/pci.h> 21 #include <linux/of.h> 22 #include <linux/pcs-lynx.h> 23 #include <net/pkt_sched.h> 24 #include <net/dsa.h> 25 #include "felix.h" 26 27 static enum dsa_tag_protocol felix_get_tag_protocol(struct dsa_switch *ds, 28 int port, 29 enum dsa_tag_protocol mp) 30 { 31 return DSA_TAG_PROTO_OCELOT; 32 } 33 34 static int felix_set_ageing_time(struct dsa_switch *ds, 35 unsigned int ageing_time) 36 { 37 struct ocelot *ocelot = ds->priv; 38 39 ocelot_set_ageing_time(ocelot, ageing_time); 40 41 return 0; 42 } 43 44 static int felix_fdb_dump(struct dsa_switch *ds, int port, 45 dsa_fdb_dump_cb_t *cb, void *data) 46 { 47 struct ocelot *ocelot = ds->priv; 48 49 return ocelot_fdb_dump(ocelot, port, cb, data); 50 } 51 52 static int felix_fdb_add(struct dsa_switch *ds, int port, 53 const unsigned char *addr, u16 vid) 54 { 55 struct ocelot *ocelot = ds->priv; 56 57 return ocelot_fdb_add(ocelot, port, addr, vid); 58 } 59 60 static int felix_fdb_del(struct dsa_switch *ds, int port, 61 const unsigned char *addr, u16 vid) 62 { 63 struct ocelot *ocelot = ds->priv; 64 65 return ocelot_fdb_del(ocelot, port, addr, vid); 66 } 67 68 /* This callback needs to be present */ 69 static int felix_mdb_prepare(struct dsa_switch *ds, int port, 70 const struct switchdev_obj_port_mdb *mdb) 71 { 72 return 0; 73 } 74 75 static void felix_mdb_add(struct dsa_switch *ds, int port, 76 const struct switchdev_obj_port_mdb *mdb) 77 { 78 struct ocelot *ocelot = ds->priv; 79 80 ocelot_port_mdb_add(ocelot, port, mdb); 81 } 82 83 static int felix_mdb_del(struct dsa_switch *ds, int port, 84 const struct switchdev_obj_port_mdb *mdb) 85 { 86 struct ocelot *ocelot = ds->priv; 87 88 return ocelot_port_mdb_del(ocelot, port, mdb); 89 } 90 91 static void felix_bridge_stp_state_set(struct dsa_switch *ds, int port, 92 u8 state) 93 { 94 struct ocelot *ocelot = ds->priv; 95 96 return ocelot_bridge_stp_state_set(ocelot, port, state); 97 } 98 99 static int felix_bridge_join(struct dsa_switch *ds, int port, 100 struct net_device *br) 101 { 102 struct ocelot *ocelot = ds->priv; 103 104 return ocelot_port_bridge_join(ocelot, port, br); 105 } 106 107 static void felix_bridge_leave(struct dsa_switch *ds, int port, 108 struct net_device *br) 109 { 110 struct ocelot *ocelot = ds->priv; 111 112 ocelot_port_bridge_leave(ocelot, port, br); 113 } 114 115 /* This callback needs to be present */ 116 static int felix_vlan_prepare(struct dsa_switch *ds, int port, 117 const struct switchdev_obj_port_vlan *vlan) 118 { 119 return 0; 120 } 121 122 static int felix_vlan_filtering(struct dsa_switch *ds, int port, bool enabled) 123 { 124 struct ocelot *ocelot = ds->priv; 125 126 ocelot_port_vlan_filtering(ocelot, port, enabled); 127 128 return 0; 129 } 130 131 static void felix_vlan_add(struct dsa_switch *ds, int port, 132 const struct switchdev_obj_port_vlan *vlan) 133 { 134 struct ocelot *ocelot = ds->priv; 135 u16 flags = vlan->flags; 136 u16 vid; 137 int err; 138 139 if (dsa_is_cpu_port(ds, port)) 140 flags &= ~BRIDGE_VLAN_INFO_UNTAGGED; 141 142 for (vid = vlan->vid_begin; vid <= vlan->vid_end; vid++) { 143 err = ocelot_vlan_add(ocelot, port, vid, 144 flags & BRIDGE_VLAN_INFO_PVID, 145 flags & BRIDGE_VLAN_INFO_UNTAGGED); 146 if (err) { 147 dev_err(ds->dev, "Failed to add VLAN %d to port %d: %d\n", 148 vid, port, err); 149 return; 150 } 151 } 152 } 153 154 static int felix_vlan_del(struct dsa_switch *ds, int port, 155 const struct switchdev_obj_port_vlan *vlan) 156 { 157 struct ocelot *ocelot = ds->priv; 158 u16 vid; 159 int err; 160 161 for (vid = vlan->vid_begin; vid <= vlan->vid_end; vid++) { 162 err = ocelot_vlan_del(ocelot, port, vid); 163 if (err) { 164 dev_err(ds->dev, "Failed to remove VLAN %d from port %d: %d\n", 165 vid, port, err); 166 return err; 167 } 168 } 169 return 0; 170 } 171 172 static int felix_port_enable(struct dsa_switch *ds, int port, 173 struct phy_device *phy) 174 { 175 struct ocelot *ocelot = ds->priv; 176 177 ocelot_port_enable(ocelot, port, phy); 178 179 return 0; 180 } 181 182 static void felix_port_disable(struct dsa_switch *ds, int port) 183 { 184 struct ocelot *ocelot = ds->priv; 185 186 return ocelot_port_disable(ocelot, port); 187 } 188 189 static void felix_phylink_validate(struct dsa_switch *ds, int port, 190 unsigned long *supported, 191 struct phylink_link_state *state) 192 { 193 struct ocelot *ocelot = ds->priv; 194 struct felix *felix = ocelot_to_felix(ocelot); 195 196 if (felix->info->phylink_validate) 197 felix->info->phylink_validate(ocelot, port, supported, state); 198 } 199 200 static void felix_phylink_mac_config(struct dsa_switch *ds, int port, 201 unsigned int link_an_mode, 202 const struct phylink_link_state *state) 203 { 204 struct ocelot *ocelot = ds->priv; 205 struct felix *felix = ocelot_to_felix(ocelot); 206 struct dsa_port *dp = dsa_to_port(ds, port); 207 208 if (felix->pcs[port]) 209 phylink_set_pcs(dp->pl, &felix->pcs[port]->pcs); 210 } 211 212 static void felix_phylink_mac_link_down(struct dsa_switch *ds, int port, 213 unsigned int link_an_mode, 214 phy_interface_t interface) 215 { 216 struct ocelot *ocelot = ds->priv; 217 struct ocelot_port *ocelot_port = ocelot->ports[port]; 218 219 ocelot_port_writel(ocelot_port, 0, DEV_MAC_ENA_CFG); 220 ocelot_fields_write(ocelot, port, QSYS_SWITCH_PORT_MODE_PORT_ENA, 0); 221 } 222 223 static void felix_phylink_mac_link_up(struct dsa_switch *ds, int port, 224 unsigned int link_an_mode, 225 phy_interface_t interface, 226 struct phy_device *phydev, 227 int speed, int duplex, 228 bool tx_pause, bool rx_pause) 229 { 230 struct ocelot *ocelot = ds->priv; 231 struct ocelot_port *ocelot_port = ocelot->ports[port]; 232 struct felix *felix = ocelot_to_felix(ocelot); 233 u32 mac_fc_cfg; 234 235 /* Take port out of reset by clearing the MAC_TX_RST, MAC_RX_RST and 236 * PORT_RST bits in DEV_CLOCK_CFG. Note that the way this system is 237 * integrated is that the MAC speed is fixed and it's the PCS who is 238 * performing the rate adaptation, so we have to write "1000Mbps" into 239 * the LINK_SPEED field of DEV_CLOCK_CFG (which is also its default 240 * value). 241 */ 242 ocelot_port_writel(ocelot_port, 243 DEV_CLOCK_CFG_LINK_SPEED(OCELOT_SPEED_1000), 244 DEV_CLOCK_CFG); 245 246 switch (speed) { 247 case SPEED_10: 248 mac_fc_cfg = SYS_MAC_FC_CFG_FC_LINK_SPEED(3); 249 break; 250 case SPEED_100: 251 mac_fc_cfg = SYS_MAC_FC_CFG_FC_LINK_SPEED(2); 252 break; 253 case SPEED_1000: 254 case SPEED_2500: 255 mac_fc_cfg = SYS_MAC_FC_CFG_FC_LINK_SPEED(1); 256 break; 257 default: 258 dev_err(ocelot->dev, "Unsupported speed on port %d: %d\n", 259 port, speed); 260 return; 261 } 262 263 /* handle Rx pause in all cases, with 2500base-X this is used for rate 264 * adaptation. 265 */ 266 mac_fc_cfg |= SYS_MAC_FC_CFG_RX_FC_ENA; 267 268 if (tx_pause) 269 mac_fc_cfg |= SYS_MAC_FC_CFG_TX_FC_ENA | 270 SYS_MAC_FC_CFG_PAUSE_VAL_CFG(0xffff) | 271 SYS_MAC_FC_CFG_FC_LATENCY_CFG(0x7) | 272 SYS_MAC_FC_CFG_ZERO_PAUSE_ENA; 273 274 /* Flow control. Link speed is only used here to evaluate the time 275 * specification in incoming pause frames. 276 */ 277 ocelot_write_rix(ocelot, mac_fc_cfg, SYS_MAC_FC_CFG, port); 278 279 ocelot_write_rix(ocelot, 0, ANA_POL_FLOWC, port); 280 281 /* Undo the effects of felix_phylink_mac_link_down: 282 * enable MAC module 283 */ 284 ocelot_port_writel(ocelot_port, DEV_MAC_ENA_CFG_RX_ENA | 285 DEV_MAC_ENA_CFG_TX_ENA, DEV_MAC_ENA_CFG); 286 287 /* Enable receiving frames on the port, and activate auto-learning of 288 * MAC addresses. 289 */ 290 ocelot_write_gix(ocelot, ANA_PORT_PORT_CFG_LEARNAUTO | 291 ANA_PORT_PORT_CFG_RECV_ENA | 292 ANA_PORT_PORT_CFG_PORTID_VAL(port), 293 ANA_PORT_PORT_CFG, port); 294 295 /* Core: Enable port for frame transfer */ 296 ocelot_fields_write(ocelot, port, 297 QSYS_SWITCH_PORT_MODE_PORT_ENA, 1); 298 299 if (felix->info->port_sched_speed_set) 300 felix->info->port_sched_speed_set(ocelot, port, speed); 301 } 302 303 static void felix_port_qos_map_init(struct ocelot *ocelot, int port) 304 { 305 int i; 306 307 ocelot_rmw_gix(ocelot, 308 ANA_PORT_QOS_CFG_QOS_PCP_ENA, 309 ANA_PORT_QOS_CFG_QOS_PCP_ENA, 310 ANA_PORT_QOS_CFG, 311 port); 312 313 for (i = 0; i < FELIX_NUM_TC * 2; i++) { 314 ocelot_rmw_ix(ocelot, 315 (ANA_PORT_PCP_DEI_MAP_DP_PCP_DEI_VAL & i) | 316 ANA_PORT_PCP_DEI_MAP_QOS_PCP_DEI_VAL(i), 317 ANA_PORT_PCP_DEI_MAP_DP_PCP_DEI_VAL | 318 ANA_PORT_PCP_DEI_MAP_QOS_PCP_DEI_VAL_M, 319 ANA_PORT_PCP_DEI_MAP, 320 port, i); 321 } 322 } 323 324 static void felix_get_strings(struct dsa_switch *ds, int port, 325 u32 stringset, u8 *data) 326 { 327 struct ocelot *ocelot = ds->priv; 328 329 return ocelot_get_strings(ocelot, port, stringset, data); 330 } 331 332 static void felix_get_ethtool_stats(struct dsa_switch *ds, int port, u64 *data) 333 { 334 struct ocelot *ocelot = ds->priv; 335 336 ocelot_get_ethtool_stats(ocelot, port, data); 337 } 338 339 static int felix_get_sset_count(struct dsa_switch *ds, int port, int sset) 340 { 341 struct ocelot *ocelot = ds->priv; 342 343 return ocelot_get_sset_count(ocelot, port, sset); 344 } 345 346 static int felix_get_ts_info(struct dsa_switch *ds, int port, 347 struct ethtool_ts_info *info) 348 { 349 struct ocelot *ocelot = ds->priv; 350 351 return ocelot_get_ts_info(ocelot, port, info); 352 } 353 354 static int felix_parse_ports_node(struct felix *felix, 355 struct device_node *ports_node, 356 phy_interface_t *port_phy_modes) 357 { 358 struct ocelot *ocelot = &felix->ocelot; 359 struct device *dev = felix->ocelot.dev; 360 struct device_node *child; 361 362 for_each_available_child_of_node(ports_node, child) { 363 phy_interface_t phy_mode; 364 u32 port; 365 int err; 366 367 /* Get switch port number from DT */ 368 if (of_property_read_u32(child, "reg", &port) < 0) { 369 dev_err(dev, "Port number not defined in device tree " 370 "(property \"reg\")\n"); 371 of_node_put(child); 372 return -ENODEV; 373 } 374 375 /* Get PHY mode from DT */ 376 err = of_get_phy_mode(child, &phy_mode); 377 if (err) { 378 dev_err(dev, "Failed to read phy-mode or " 379 "phy-interface-type property for port %d\n", 380 port); 381 of_node_put(child); 382 return -ENODEV; 383 } 384 385 err = felix->info->prevalidate_phy_mode(ocelot, port, phy_mode); 386 if (err < 0) { 387 dev_err(dev, "Unsupported PHY mode %s on port %d\n", 388 phy_modes(phy_mode), port); 389 of_node_put(child); 390 return err; 391 } 392 393 port_phy_modes[port] = phy_mode; 394 } 395 396 return 0; 397 } 398 399 static int felix_parse_dt(struct felix *felix, phy_interface_t *port_phy_modes) 400 { 401 struct device *dev = felix->ocelot.dev; 402 struct device_node *switch_node; 403 struct device_node *ports_node; 404 int err; 405 406 switch_node = dev->of_node; 407 408 ports_node = of_get_child_by_name(switch_node, "ports"); 409 if (!ports_node) { 410 dev_err(dev, "Incorrect bindings: absent \"ports\" node\n"); 411 return -ENODEV; 412 } 413 414 err = felix_parse_ports_node(felix, ports_node, port_phy_modes); 415 of_node_put(ports_node); 416 417 return err; 418 } 419 420 static int felix_init_structs(struct felix *felix, int num_phys_ports) 421 { 422 struct ocelot *ocelot = &felix->ocelot; 423 phy_interface_t *port_phy_modes; 424 struct resource res; 425 int port, i, err; 426 427 ocelot->num_phys_ports = num_phys_ports; 428 ocelot->ports = devm_kcalloc(ocelot->dev, num_phys_ports, 429 sizeof(struct ocelot_port *), GFP_KERNEL); 430 if (!ocelot->ports) 431 return -ENOMEM; 432 433 ocelot->map = felix->info->map; 434 ocelot->stats_layout = felix->info->stats_layout; 435 ocelot->num_stats = felix->info->num_stats; 436 ocelot->shared_queue_sz = felix->info->shared_queue_sz; 437 ocelot->num_mact_rows = felix->info->num_mact_rows; 438 ocelot->vcap_is2_keys = felix->info->vcap_is2_keys; 439 ocelot->vcap_is2_actions= felix->info->vcap_is2_actions; 440 ocelot->vcap = felix->info->vcap; 441 ocelot->ops = felix->info->ops; 442 ocelot->inj_prefix = OCELOT_TAG_PREFIX_SHORT; 443 ocelot->xtr_prefix = OCELOT_TAG_PREFIX_SHORT; 444 445 port_phy_modes = kcalloc(num_phys_ports, sizeof(phy_interface_t), 446 GFP_KERNEL); 447 if (!port_phy_modes) 448 return -ENOMEM; 449 450 err = felix_parse_dt(felix, port_phy_modes); 451 if (err) { 452 kfree(port_phy_modes); 453 return err; 454 } 455 456 for (i = 0; i < TARGET_MAX; i++) { 457 struct regmap *target; 458 459 if (!felix->info->target_io_res[i].name) 460 continue; 461 462 memcpy(&res, &felix->info->target_io_res[i], sizeof(res)); 463 res.flags = IORESOURCE_MEM; 464 res.start += felix->switch_base; 465 res.end += felix->switch_base; 466 467 target = ocelot_regmap_init(ocelot, &res); 468 if (IS_ERR(target)) { 469 dev_err(ocelot->dev, 470 "Failed to map device memory space\n"); 471 kfree(port_phy_modes); 472 return PTR_ERR(target); 473 } 474 475 ocelot->targets[i] = target; 476 } 477 478 err = ocelot_regfields_init(ocelot, felix->info->regfields); 479 if (err) { 480 dev_err(ocelot->dev, "failed to init reg fields map\n"); 481 kfree(port_phy_modes); 482 return err; 483 } 484 485 for (port = 0; port < num_phys_ports; port++) { 486 struct ocelot_port *ocelot_port; 487 struct regmap *target; 488 u8 *template; 489 490 ocelot_port = devm_kzalloc(ocelot->dev, 491 sizeof(struct ocelot_port), 492 GFP_KERNEL); 493 if (!ocelot_port) { 494 dev_err(ocelot->dev, 495 "failed to allocate port memory\n"); 496 kfree(port_phy_modes); 497 return -ENOMEM; 498 } 499 500 memcpy(&res, &felix->info->port_io_res[port], sizeof(res)); 501 res.flags = IORESOURCE_MEM; 502 res.start += felix->switch_base; 503 res.end += felix->switch_base; 504 505 target = ocelot_regmap_init(ocelot, &res); 506 if (IS_ERR(target)) { 507 dev_err(ocelot->dev, 508 "Failed to map memory space for port %d\n", 509 port); 510 kfree(port_phy_modes); 511 return PTR_ERR(target); 512 } 513 514 template = devm_kzalloc(ocelot->dev, OCELOT_TOTAL_TAG_LEN, 515 GFP_KERNEL); 516 if (!template) { 517 dev_err(ocelot->dev, 518 "Failed to allocate memory for DSA tag\n"); 519 kfree(port_phy_modes); 520 return -ENOMEM; 521 } 522 523 ocelot_port->phy_mode = port_phy_modes[port]; 524 ocelot_port->ocelot = ocelot; 525 ocelot_port->target = target; 526 ocelot_port->xmit_template = template; 527 ocelot->ports[port] = ocelot_port; 528 529 felix->info->xmit_template_populate(ocelot, port); 530 } 531 532 kfree(port_phy_modes); 533 534 if (felix->info->mdio_bus_alloc) { 535 err = felix->info->mdio_bus_alloc(ocelot); 536 if (err < 0) 537 return err; 538 } 539 540 return 0; 541 } 542 543 /* The CPU port module is connected to the Node Processor Interface (NPI). This 544 * is the mode through which frames can be injected from and extracted to an 545 * external CPU, over Ethernet. 546 */ 547 static void felix_npi_port_init(struct ocelot *ocelot, int port) 548 { 549 ocelot->npi = port; 550 551 ocelot_write(ocelot, QSYS_EXT_CPU_CFG_EXT_CPUQ_MSK_M | 552 QSYS_EXT_CPU_CFG_EXT_CPU_PORT(port), 553 QSYS_EXT_CPU_CFG); 554 555 /* NPI port Injection/Extraction configuration */ 556 ocelot_fields_write(ocelot, port, SYS_PORT_MODE_INCL_XTR_HDR, 557 ocelot->xtr_prefix); 558 ocelot_fields_write(ocelot, port, SYS_PORT_MODE_INCL_INJ_HDR, 559 ocelot->inj_prefix); 560 561 /* Disable transmission of pause frames */ 562 ocelot_fields_write(ocelot, port, SYS_PAUSE_CFG_PAUSE_ENA, 0); 563 } 564 565 /* Hardware initialization done here so that we can allocate structures with 566 * devm without fear of dsa_register_switch returning -EPROBE_DEFER and causing 567 * us to allocate structures twice (leak memory) and map PCI memory twice 568 * (which will not work). 569 */ 570 static int felix_setup(struct dsa_switch *ds) 571 { 572 struct ocelot *ocelot = ds->priv; 573 struct felix *felix = ocelot_to_felix(ocelot); 574 int port, err; 575 int tc; 576 577 err = felix_init_structs(felix, ds->num_ports); 578 if (err) 579 return err; 580 581 err = ocelot_init(ocelot); 582 if (err) 583 return err; 584 585 if (ocelot->ptp) { 586 err = ocelot_init_timestamp(ocelot, felix->info->ptp_caps); 587 if (err) { 588 dev_err(ocelot->dev, 589 "Timestamp initialization failed\n"); 590 ocelot->ptp = 0; 591 } 592 } 593 594 for (port = 0; port < ds->num_ports; port++) { 595 ocelot_init_port(ocelot, port); 596 597 if (dsa_is_cpu_port(ds, port)) 598 felix_npi_port_init(ocelot, port); 599 600 /* Set the default QoS Classification based on PCP and DEI 601 * bits of vlan tag. 602 */ 603 felix_port_qos_map_init(ocelot, port); 604 } 605 606 /* Include the CPU port module in the forwarding mask for unknown 607 * unicast - the hardware default value for ANA_FLOODING_FLD_UNICAST 608 * excludes BIT(ocelot->num_phys_ports), and so does ocelot_init, since 609 * Ocelot relies on whitelisting MAC addresses towards PGID_CPU. 610 */ 611 ocelot_write_rix(ocelot, 612 ANA_PGID_PGID_PGID(GENMASK(ocelot->num_phys_ports, 0)), 613 ANA_PGID_PGID, PGID_UC); 614 /* Setup the per-traffic class flooding PGIDs */ 615 for (tc = 0; tc < FELIX_NUM_TC; tc++) 616 ocelot_write_rix(ocelot, ANA_FLOODING_FLD_MULTICAST(PGID_MC) | 617 ANA_FLOODING_FLD_BROADCAST(PGID_MC) | 618 ANA_FLOODING_FLD_UNICAST(PGID_UC), 619 ANA_FLOODING, tc); 620 621 ds->mtu_enforcement_ingress = true; 622 ds->configure_vlan_while_not_filtering = true; 623 624 return 0; 625 } 626 627 static void felix_teardown(struct dsa_switch *ds) 628 { 629 struct ocelot *ocelot = ds->priv; 630 struct felix *felix = ocelot_to_felix(ocelot); 631 int port; 632 633 if (felix->info->mdio_bus_free) 634 felix->info->mdio_bus_free(ocelot); 635 636 for (port = 0; port < ocelot->num_phys_ports; port++) 637 ocelot_deinit_port(ocelot, port); 638 ocelot_deinit_timestamp(ocelot); 639 /* stop workqueue thread */ 640 ocelot_deinit(ocelot); 641 } 642 643 static int felix_hwtstamp_get(struct dsa_switch *ds, int port, 644 struct ifreq *ifr) 645 { 646 struct ocelot *ocelot = ds->priv; 647 648 return ocelot_hwstamp_get(ocelot, port, ifr); 649 } 650 651 static int felix_hwtstamp_set(struct dsa_switch *ds, int port, 652 struct ifreq *ifr) 653 { 654 struct ocelot *ocelot = ds->priv; 655 656 return ocelot_hwstamp_set(ocelot, port, ifr); 657 } 658 659 static bool felix_rxtstamp(struct dsa_switch *ds, int port, 660 struct sk_buff *skb, unsigned int type) 661 { 662 struct skb_shared_hwtstamps *shhwtstamps; 663 struct ocelot *ocelot = ds->priv; 664 u8 *extraction = skb->data - ETH_HLEN - OCELOT_TAG_LEN; 665 u32 tstamp_lo, tstamp_hi; 666 struct timespec64 ts; 667 u64 tstamp, val; 668 669 ocelot_ptp_gettime64(&ocelot->ptp_info, &ts); 670 tstamp = ktime_set(ts.tv_sec, ts.tv_nsec); 671 672 packing(extraction, &val, 116, 85, OCELOT_TAG_LEN, UNPACK, 0); 673 tstamp_lo = (u32)val; 674 675 tstamp_hi = tstamp >> 32; 676 if ((tstamp & 0xffffffff) < tstamp_lo) 677 tstamp_hi--; 678 679 tstamp = ((u64)tstamp_hi << 32) | tstamp_lo; 680 681 shhwtstamps = skb_hwtstamps(skb); 682 memset(shhwtstamps, 0, sizeof(struct skb_shared_hwtstamps)); 683 shhwtstamps->hwtstamp = tstamp; 684 return false; 685 } 686 687 static bool felix_txtstamp(struct dsa_switch *ds, int port, 688 struct sk_buff *clone, unsigned int type) 689 { 690 struct ocelot *ocelot = ds->priv; 691 struct ocelot_port *ocelot_port = ocelot->ports[port]; 692 693 if (ocelot->ptp && (skb_shinfo(clone)->tx_flags & SKBTX_HW_TSTAMP) && 694 ocelot_port->ptp_cmd == IFH_REW_OP_TWO_STEP_PTP) { 695 ocelot_port_add_txtstamp_skb(ocelot, port, clone); 696 return true; 697 } 698 699 return false; 700 } 701 702 static int felix_change_mtu(struct dsa_switch *ds, int port, int new_mtu) 703 { 704 struct ocelot *ocelot = ds->priv; 705 706 ocelot_port_set_maxlen(ocelot, port, new_mtu); 707 708 return 0; 709 } 710 711 static int felix_get_max_mtu(struct dsa_switch *ds, int port) 712 { 713 struct ocelot *ocelot = ds->priv; 714 715 return ocelot_get_max_mtu(ocelot, port); 716 } 717 718 static int felix_cls_flower_add(struct dsa_switch *ds, int port, 719 struct flow_cls_offload *cls, bool ingress) 720 { 721 struct ocelot *ocelot = ds->priv; 722 723 return ocelot_cls_flower_replace(ocelot, port, cls, ingress); 724 } 725 726 static int felix_cls_flower_del(struct dsa_switch *ds, int port, 727 struct flow_cls_offload *cls, bool ingress) 728 { 729 struct ocelot *ocelot = ds->priv; 730 731 return ocelot_cls_flower_destroy(ocelot, port, cls, ingress); 732 } 733 734 static int felix_cls_flower_stats(struct dsa_switch *ds, int port, 735 struct flow_cls_offload *cls, bool ingress) 736 { 737 struct ocelot *ocelot = ds->priv; 738 739 return ocelot_cls_flower_stats(ocelot, port, cls, ingress); 740 } 741 742 static int felix_port_policer_add(struct dsa_switch *ds, int port, 743 struct dsa_mall_policer_tc_entry *policer) 744 { 745 struct ocelot *ocelot = ds->priv; 746 struct ocelot_policer pol = { 747 .rate = div_u64(policer->rate_bytes_per_sec, 1000) * 8, 748 .burst = policer->burst, 749 }; 750 751 return ocelot_port_policer_add(ocelot, port, &pol); 752 } 753 754 static void felix_port_policer_del(struct dsa_switch *ds, int port) 755 { 756 struct ocelot *ocelot = ds->priv; 757 758 ocelot_port_policer_del(ocelot, port); 759 } 760 761 static int felix_port_setup_tc(struct dsa_switch *ds, int port, 762 enum tc_setup_type type, 763 void *type_data) 764 { 765 struct ocelot *ocelot = ds->priv; 766 struct felix *felix = ocelot_to_felix(ocelot); 767 768 if (felix->info->port_setup_tc) 769 return felix->info->port_setup_tc(ds, port, type, type_data); 770 else 771 return -EOPNOTSUPP; 772 } 773 774 const struct dsa_switch_ops felix_switch_ops = { 775 .get_tag_protocol = felix_get_tag_protocol, 776 .setup = felix_setup, 777 .teardown = felix_teardown, 778 .set_ageing_time = felix_set_ageing_time, 779 .get_strings = felix_get_strings, 780 .get_ethtool_stats = felix_get_ethtool_stats, 781 .get_sset_count = felix_get_sset_count, 782 .get_ts_info = felix_get_ts_info, 783 .phylink_validate = felix_phylink_validate, 784 .phylink_mac_config = felix_phylink_mac_config, 785 .phylink_mac_link_down = felix_phylink_mac_link_down, 786 .phylink_mac_link_up = felix_phylink_mac_link_up, 787 .port_enable = felix_port_enable, 788 .port_disable = felix_port_disable, 789 .port_fdb_dump = felix_fdb_dump, 790 .port_fdb_add = felix_fdb_add, 791 .port_fdb_del = felix_fdb_del, 792 .port_mdb_prepare = felix_mdb_prepare, 793 .port_mdb_add = felix_mdb_add, 794 .port_mdb_del = felix_mdb_del, 795 .port_bridge_join = felix_bridge_join, 796 .port_bridge_leave = felix_bridge_leave, 797 .port_stp_state_set = felix_bridge_stp_state_set, 798 .port_vlan_prepare = felix_vlan_prepare, 799 .port_vlan_filtering = felix_vlan_filtering, 800 .port_vlan_add = felix_vlan_add, 801 .port_vlan_del = felix_vlan_del, 802 .port_hwtstamp_get = felix_hwtstamp_get, 803 .port_hwtstamp_set = felix_hwtstamp_set, 804 .port_rxtstamp = felix_rxtstamp, 805 .port_txtstamp = felix_txtstamp, 806 .port_change_mtu = felix_change_mtu, 807 .port_max_mtu = felix_get_max_mtu, 808 .port_policer_add = felix_port_policer_add, 809 .port_policer_del = felix_port_policer_del, 810 .cls_flower_add = felix_cls_flower_add, 811 .cls_flower_del = felix_cls_flower_del, 812 .cls_flower_stats = felix_cls_flower_stats, 813 .port_setup_tc = felix_port_setup_tc, 814 }; 815