1 // SPDX-License-Identifier: GPL-2.0 2 /* 3 * Texas Instruments Ethernet Switch Driver 4 * 5 * Copyright (C) 2019 Texas Instruments 6 */ 7 8 #include <linux/io.h> 9 #include <linux/clk.h> 10 #include <linux/timer.h> 11 #include <linux/module.h> 12 #include <linux/irqreturn.h> 13 #include <linux/interrupt.h> 14 #include <linux/if_ether.h> 15 #include <linux/etherdevice.h> 16 #include <linux/net_tstamp.h> 17 #include <linux/phy.h> 18 #include <linux/phy/phy.h> 19 #include <linux/delay.h> 20 #include <linux/pm_runtime.h> 21 #include <linux/gpio/consumer.h> 22 #include <linux/of.h> 23 #include <linux/of_mdio.h> 24 #include <linux/of_net.h> 25 #include <linux/of_device.h> 26 #include <linux/if_vlan.h> 27 #include <linux/kmemleak.h> 28 #include <linux/sys_soc.h> 29 30 #include <net/page_pool.h> 31 #include <net/pkt_cls.h> 32 #include <net/devlink.h> 33 34 #include "cpsw.h" 35 #include "cpsw_ale.h" 36 #include "cpsw_priv.h" 37 #include "cpsw_sl.h" 38 #include "cpsw_switchdev.h" 39 #include "cpts.h" 40 #include "davinci_cpdma.h" 41 42 #include <net/pkt_sched.h> 43 44 static int debug_level; 45 static int ale_ageout = CPSW_ALE_AGEOUT_DEFAULT; 46 static int rx_packet_max = CPSW_MAX_PACKET_SIZE; 47 static int descs_pool_size = CPSW_CPDMA_DESCS_POOL_SIZE_DEFAULT; 48 49 struct cpsw_devlink { 50 struct cpsw_common *cpsw; 51 }; 52 53 enum cpsw_devlink_param_id { 54 CPSW_DEVLINK_PARAM_ID_BASE = DEVLINK_PARAM_GENERIC_ID_MAX, 55 CPSW_DL_PARAM_SWITCH_MODE, 56 CPSW_DL_PARAM_ALE_BYPASS, 57 }; 58 59 /* struct cpsw_common is not needed, kept here for compatibility 60 * reasons witrh the old driver 61 */ 62 static int cpsw_slave_index_priv(struct cpsw_common *cpsw, 63 struct cpsw_priv *priv) 64 { 65 if (priv->emac_port == HOST_PORT_NUM) 66 return -1; 67 68 return priv->emac_port - 1; 69 } 70 71 static bool cpsw_is_switch_en(struct cpsw_common *cpsw) 72 { 73 return !cpsw->data.dual_emac; 74 } 75 76 static void cpsw_set_promiscious(struct net_device *ndev, bool enable) 77 { 78 struct cpsw_common *cpsw = ndev_to_cpsw(ndev); 79 bool enable_uni = false; 80 int i; 81 82 if (cpsw_is_switch_en(cpsw)) 83 return; 84 85 /* Enabling promiscuous mode for one interface will be 86 * common for both the interface as the interface shares 87 * the same hardware resource. 88 */ 89 for (i = 0; i < cpsw->data.slaves; i++) 90 if (cpsw->slaves[i].ndev && 91 (cpsw->slaves[i].ndev->flags & IFF_PROMISC)) 92 enable_uni = true; 93 94 if (!enable && enable_uni) { 95 enable = enable_uni; 96 dev_dbg(cpsw->dev, "promiscuity not disabled as the other interface is still in promiscuity mode\n"); 97 } 98 99 if (enable) { 100 /* Enable unknown unicast, reg/unreg mcast */ 101 cpsw_ale_control_set(cpsw->ale, HOST_PORT_NUM, 102 ALE_P0_UNI_FLOOD, 1); 103 104 dev_dbg(cpsw->dev, "promiscuity enabled\n"); 105 } else { 106 /* Disable unknown unicast */ 107 cpsw_ale_control_set(cpsw->ale, HOST_PORT_NUM, 108 ALE_P0_UNI_FLOOD, 0); 109 dev_dbg(cpsw->dev, "promiscuity disabled\n"); 110 } 111 } 112 113 /** 114 * cpsw_set_mc - adds multicast entry to the table if it's not added or deletes 115 * if it's not deleted 116 * @ndev: device to sync 117 * @addr: address to be added or deleted 118 * @vid: vlan id, if vid < 0 set/unset address for real device 119 * @add: add address if the flag is set or remove otherwise 120 */ 121 static int cpsw_set_mc(struct net_device *ndev, const u8 *addr, 122 int vid, int add) 123 { 124 struct cpsw_priv *priv = netdev_priv(ndev); 125 struct cpsw_common *cpsw = priv->cpsw; 126 int mask, flags, ret, slave_no; 127 128 slave_no = cpsw_slave_index(cpsw, priv); 129 if (vid < 0) 130 vid = cpsw->slaves[slave_no].port_vlan; 131 132 mask = ALE_PORT_HOST; 133 flags = vid ? ALE_VLAN : 0; 134 135 if (add) 136 ret = cpsw_ale_add_mcast(cpsw->ale, addr, mask, flags, vid, 0); 137 else 138 ret = cpsw_ale_del_mcast(cpsw->ale, addr, 0, flags, vid); 139 140 return ret; 141 } 142 143 static int cpsw_update_vlan_mc(struct net_device *vdev, int vid, void *ctx) 144 { 145 struct addr_sync_ctx *sync_ctx = ctx; 146 struct netdev_hw_addr *ha; 147 int found = 0, ret = 0; 148 149 if (!vdev || !(vdev->flags & IFF_UP)) 150 return 0; 151 152 /* vlan address is relevant if its sync_cnt != 0 */ 153 netdev_for_each_mc_addr(ha, vdev) { 154 if (ether_addr_equal(ha->addr, sync_ctx->addr)) { 155 found = ha->sync_cnt; 156 break; 157 } 158 } 159 160 if (found) 161 sync_ctx->consumed++; 162 163 if (sync_ctx->flush) { 164 if (!found) 165 cpsw_set_mc(sync_ctx->ndev, sync_ctx->addr, vid, 0); 166 return 0; 167 } 168 169 if (found) 170 ret = cpsw_set_mc(sync_ctx->ndev, sync_ctx->addr, vid, 1); 171 172 return ret; 173 } 174 175 static int cpsw_add_mc_addr(struct net_device *ndev, const u8 *addr, int num) 176 { 177 struct addr_sync_ctx sync_ctx; 178 int ret; 179 180 sync_ctx.consumed = 0; 181 sync_ctx.addr = addr; 182 sync_ctx.ndev = ndev; 183 sync_ctx.flush = 0; 184 185 ret = vlan_for_each(ndev, cpsw_update_vlan_mc, &sync_ctx); 186 if (sync_ctx.consumed < num && !ret) 187 ret = cpsw_set_mc(ndev, addr, -1, 1); 188 189 return ret; 190 } 191 192 static int cpsw_del_mc_addr(struct net_device *ndev, const u8 *addr, int num) 193 { 194 struct addr_sync_ctx sync_ctx; 195 196 sync_ctx.consumed = 0; 197 sync_ctx.addr = addr; 198 sync_ctx.ndev = ndev; 199 sync_ctx.flush = 1; 200 201 vlan_for_each(ndev, cpsw_update_vlan_mc, &sync_ctx); 202 if (sync_ctx.consumed == num) 203 cpsw_set_mc(ndev, addr, -1, 0); 204 205 return 0; 206 } 207 208 static int cpsw_purge_vlan_mc(struct net_device *vdev, int vid, void *ctx) 209 { 210 struct addr_sync_ctx *sync_ctx = ctx; 211 struct netdev_hw_addr *ha; 212 int found = 0; 213 214 if (!vdev || !(vdev->flags & IFF_UP)) 215 return 0; 216 217 /* vlan address is relevant if its sync_cnt != 0 */ 218 netdev_for_each_mc_addr(ha, vdev) { 219 if (ether_addr_equal(ha->addr, sync_ctx->addr)) { 220 found = ha->sync_cnt; 221 break; 222 } 223 } 224 225 if (!found) 226 return 0; 227 228 sync_ctx->consumed++; 229 cpsw_set_mc(sync_ctx->ndev, sync_ctx->addr, vid, 0); 230 return 0; 231 } 232 233 static int cpsw_purge_all_mc(struct net_device *ndev, const u8 *addr, int num) 234 { 235 struct addr_sync_ctx sync_ctx; 236 237 sync_ctx.addr = addr; 238 sync_ctx.ndev = ndev; 239 sync_ctx.consumed = 0; 240 241 vlan_for_each(ndev, cpsw_purge_vlan_mc, &sync_ctx); 242 if (sync_ctx.consumed < num) 243 cpsw_set_mc(ndev, addr, -1, 0); 244 245 return 0; 246 } 247 248 static void cpsw_ndo_set_rx_mode(struct net_device *ndev) 249 { 250 struct cpsw_priv *priv = netdev_priv(ndev); 251 struct cpsw_common *cpsw = priv->cpsw; 252 253 if (ndev->flags & IFF_PROMISC) { 254 /* Enable promiscuous mode */ 255 cpsw_set_promiscious(ndev, true); 256 cpsw_ale_set_allmulti(cpsw->ale, IFF_ALLMULTI, priv->emac_port); 257 return; 258 } 259 260 /* Disable promiscuous mode */ 261 cpsw_set_promiscious(ndev, false); 262 263 /* Restore allmulti on vlans if necessary */ 264 cpsw_ale_set_allmulti(cpsw->ale, 265 ndev->flags & IFF_ALLMULTI, priv->emac_port); 266 267 /* add/remove mcast address either for real netdev or for vlan */ 268 __hw_addr_ref_sync_dev(&ndev->mc, ndev, cpsw_add_mc_addr, 269 cpsw_del_mc_addr); 270 } 271 272 static unsigned int cpsw_rxbuf_total_len(unsigned int len) 273 { 274 len += CPSW_HEADROOM; 275 len += SKB_DATA_ALIGN(sizeof(struct skb_shared_info)); 276 277 return SKB_DATA_ALIGN(len); 278 } 279 280 static void cpsw_rx_handler(void *token, int len, int status) 281 { 282 struct page *new_page, *page = token; 283 void *pa = page_address(page); 284 int headroom = CPSW_HEADROOM; 285 struct cpsw_meta_xdp *xmeta; 286 struct cpsw_common *cpsw; 287 struct net_device *ndev; 288 int port, ch, pkt_size; 289 struct cpsw_priv *priv; 290 struct page_pool *pool; 291 struct sk_buff *skb; 292 struct xdp_buff xdp; 293 int ret = 0; 294 dma_addr_t dma; 295 296 xmeta = pa + CPSW_XMETA_OFFSET; 297 cpsw = ndev_to_cpsw(xmeta->ndev); 298 ndev = xmeta->ndev; 299 pkt_size = cpsw->rx_packet_max; 300 ch = xmeta->ch; 301 302 if (status >= 0) { 303 port = CPDMA_RX_SOURCE_PORT(status); 304 if (port) 305 ndev = cpsw->slaves[--port].ndev; 306 } 307 308 priv = netdev_priv(ndev); 309 pool = cpsw->page_pool[ch]; 310 311 if (unlikely(status < 0) || unlikely(!netif_running(ndev))) { 312 /* In dual emac mode check for all interfaces */ 313 if (cpsw->usage_count && status >= 0) { 314 /* The packet received is for the interface which 315 * is already down and the other interface is up 316 * and running, instead of freeing which results 317 * in reducing of the number of rx descriptor in 318 * DMA engine, requeue page back to cpdma. 319 */ 320 new_page = page; 321 goto requeue; 322 } 323 324 /* the interface is going down, pages are purged */ 325 page_pool_recycle_direct(pool, page); 326 return; 327 } 328 329 new_page = page_pool_dev_alloc_pages(pool); 330 if (unlikely(!new_page)) { 331 new_page = page; 332 ndev->stats.rx_dropped++; 333 goto requeue; 334 } 335 336 if (priv->xdp_prog) { 337 if (status & CPDMA_RX_VLAN_ENCAP) { 338 xdp.data = pa + CPSW_HEADROOM + 339 CPSW_RX_VLAN_ENCAP_HDR_SIZE; 340 xdp.data_end = xdp.data + len - 341 CPSW_RX_VLAN_ENCAP_HDR_SIZE; 342 } else { 343 xdp.data = pa + CPSW_HEADROOM; 344 xdp.data_end = xdp.data + len; 345 } 346 347 xdp_set_data_meta_invalid(&xdp); 348 349 xdp.data_hard_start = pa; 350 xdp.rxq = &priv->xdp_rxq[ch]; 351 352 ret = cpsw_run_xdp(priv, ch, &xdp, page, priv->emac_port); 353 if (ret != CPSW_XDP_PASS) 354 goto requeue; 355 356 /* XDP prog might have changed packet data and boundaries */ 357 len = xdp.data_end - xdp.data; 358 headroom = xdp.data - xdp.data_hard_start; 359 360 /* XDP prog can modify vlan tag, so can't use encap header */ 361 status &= ~CPDMA_RX_VLAN_ENCAP; 362 } 363 364 /* pass skb to netstack if no XDP prog or returned XDP_PASS */ 365 skb = build_skb(pa, cpsw_rxbuf_total_len(pkt_size)); 366 if (!skb) { 367 ndev->stats.rx_dropped++; 368 page_pool_recycle_direct(pool, page); 369 goto requeue; 370 } 371 372 skb->offload_fwd_mark = priv->offload_fwd_mark; 373 skb_reserve(skb, headroom); 374 skb_put(skb, len); 375 skb->dev = ndev; 376 if (status & CPDMA_RX_VLAN_ENCAP) 377 cpsw_rx_vlan_encap(skb); 378 if (priv->rx_ts_enabled) 379 cpts_rx_timestamp(cpsw->cpts, skb); 380 skb->protocol = eth_type_trans(skb, ndev); 381 382 /* unmap page as no netstack skb page recycling */ 383 page_pool_release_page(pool, page); 384 netif_receive_skb(skb); 385 386 ndev->stats.rx_bytes += len; 387 ndev->stats.rx_packets++; 388 389 requeue: 390 xmeta = page_address(new_page) + CPSW_XMETA_OFFSET; 391 xmeta->ndev = ndev; 392 xmeta->ch = ch; 393 394 dma = page_pool_get_dma_addr(new_page) + CPSW_HEADROOM; 395 ret = cpdma_chan_submit_mapped(cpsw->rxv[ch].ch, new_page, dma, 396 pkt_size, 0); 397 if (ret < 0) { 398 WARN_ON(ret == -ENOMEM); 399 page_pool_recycle_direct(pool, new_page); 400 } 401 } 402 403 static int cpsw_add_vlan_ale_entry(struct cpsw_priv *priv, 404 unsigned short vid) 405 { 406 struct cpsw_common *cpsw = priv->cpsw; 407 int unreg_mcast_mask = 0; 408 int mcast_mask; 409 u32 port_mask; 410 int ret; 411 412 port_mask = (1 << priv->emac_port) | ALE_PORT_HOST; 413 414 mcast_mask = ALE_PORT_HOST; 415 if (priv->ndev->flags & IFF_ALLMULTI) 416 unreg_mcast_mask = mcast_mask; 417 418 ret = cpsw_ale_add_vlan(cpsw->ale, vid, port_mask, 0, port_mask, 419 unreg_mcast_mask); 420 if (ret != 0) 421 return ret; 422 423 ret = cpsw_ale_add_ucast(cpsw->ale, priv->mac_addr, 424 HOST_PORT_NUM, ALE_VLAN, vid); 425 if (ret != 0) 426 goto clean_vid; 427 428 ret = cpsw_ale_add_mcast(cpsw->ale, priv->ndev->broadcast, 429 mcast_mask, ALE_VLAN, vid, 0); 430 if (ret != 0) 431 goto clean_vlan_ucast; 432 return 0; 433 434 clean_vlan_ucast: 435 cpsw_ale_del_ucast(cpsw->ale, priv->mac_addr, 436 HOST_PORT_NUM, ALE_VLAN, vid); 437 clean_vid: 438 cpsw_ale_del_vlan(cpsw->ale, vid, 0); 439 return ret; 440 } 441 442 static int cpsw_ndo_vlan_rx_add_vid(struct net_device *ndev, 443 __be16 proto, u16 vid) 444 { 445 struct cpsw_priv *priv = netdev_priv(ndev); 446 struct cpsw_common *cpsw = priv->cpsw; 447 int ret, i; 448 449 if (cpsw_is_switch_en(cpsw)) { 450 dev_dbg(cpsw->dev, ".ndo_vlan_rx_add_vid called in switch mode\n"); 451 return 0; 452 } 453 454 if (vid == cpsw->data.default_vlan) 455 return 0; 456 457 ret = pm_runtime_get_sync(cpsw->dev); 458 if (ret < 0) { 459 pm_runtime_put_noidle(cpsw->dev); 460 return ret; 461 } 462 463 /* In dual EMAC, reserved VLAN id should not be used for 464 * creating VLAN interfaces as this can break the dual 465 * EMAC port separation 466 */ 467 for (i = 0; i < cpsw->data.slaves; i++) { 468 if (cpsw->slaves[i].ndev && 469 vid == cpsw->slaves[i].port_vlan) { 470 ret = -EINVAL; 471 goto err; 472 } 473 } 474 475 dev_dbg(priv->dev, "Adding vlanid %d to vlan filter\n", vid); 476 ret = cpsw_add_vlan_ale_entry(priv, vid); 477 err: 478 pm_runtime_put(cpsw->dev); 479 return ret; 480 } 481 482 static int cpsw_restore_vlans(struct net_device *vdev, int vid, void *arg) 483 { 484 struct cpsw_priv *priv = arg; 485 486 if (!vdev || !vid) 487 return 0; 488 489 cpsw_ndo_vlan_rx_add_vid(priv->ndev, 0, vid); 490 return 0; 491 } 492 493 /* restore resources after port reset */ 494 static void cpsw_restore(struct cpsw_priv *priv) 495 { 496 struct cpsw_common *cpsw = priv->cpsw; 497 498 /* restore vlan configurations */ 499 vlan_for_each(priv->ndev, cpsw_restore_vlans, priv); 500 501 /* restore MQPRIO offload */ 502 cpsw_mqprio_resume(&cpsw->slaves[priv->emac_port - 1], priv); 503 504 /* restore CBS offload */ 505 cpsw_cbs_resume(&cpsw->slaves[priv->emac_port - 1], priv); 506 } 507 508 static void cpsw_init_stp_ale_entry(struct cpsw_common *cpsw) 509 { 510 char stpa[] = {0x01, 0x80, 0xc2, 0x0, 0x0, 0x0}; 511 512 cpsw_ale_add_mcast(cpsw->ale, stpa, 513 ALE_PORT_HOST, ALE_SUPER, 0, 514 ALE_MCAST_BLOCK_LEARN_FWD); 515 } 516 517 static void cpsw_init_host_port_switch(struct cpsw_common *cpsw) 518 { 519 int vlan = cpsw->data.default_vlan; 520 521 writel(CPSW_FIFO_NORMAL_MODE, &cpsw->host_port_regs->tx_in_ctl); 522 523 writel(vlan, &cpsw->host_port_regs->port_vlan); 524 525 cpsw_ale_add_vlan(cpsw->ale, vlan, ALE_ALL_PORTS, 526 ALE_ALL_PORTS, ALE_ALL_PORTS, 527 ALE_PORT_1 | ALE_PORT_2); 528 529 cpsw_init_stp_ale_entry(cpsw); 530 531 cpsw_ale_control_set(cpsw->ale, HOST_PORT_NUM, ALE_P0_UNI_FLOOD, 1); 532 dev_dbg(cpsw->dev, "Set P0_UNI_FLOOD\n"); 533 cpsw_ale_control_set(cpsw->ale, HOST_PORT_NUM, ALE_PORT_NOLEARN, 0); 534 } 535 536 static void cpsw_init_host_port_dual_mac(struct cpsw_common *cpsw) 537 { 538 int vlan = cpsw->data.default_vlan; 539 540 writel(CPSW_FIFO_DUAL_MAC_MODE, &cpsw->host_port_regs->tx_in_ctl); 541 542 cpsw_ale_control_set(cpsw->ale, HOST_PORT_NUM, ALE_P0_UNI_FLOOD, 0); 543 dev_dbg(cpsw->dev, "unset P0_UNI_FLOOD\n"); 544 545 writel(vlan, &cpsw->host_port_regs->port_vlan); 546 547 cpsw_ale_add_vlan(cpsw->ale, vlan, ALE_ALL_PORTS, ALE_ALL_PORTS, 0, 0); 548 /* learning make no sense in dual_mac mode */ 549 cpsw_ale_control_set(cpsw->ale, HOST_PORT_NUM, ALE_PORT_NOLEARN, 1); 550 } 551 552 static void cpsw_init_host_port(struct cpsw_priv *priv) 553 { 554 struct cpsw_common *cpsw = priv->cpsw; 555 u32 control_reg; 556 557 /* soft reset the controller and initialize ale */ 558 soft_reset("cpsw", &cpsw->regs->soft_reset); 559 cpsw_ale_start(cpsw->ale); 560 561 /* switch to vlan unaware mode */ 562 cpsw_ale_control_set(cpsw->ale, HOST_PORT_NUM, ALE_VLAN_AWARE, 563 CPSW_ALE_VLAN_AWARE); 564 control_reg = readl(&cpsw->regs->control); 565 control_reg |= CPSW_VLAN_AWARE | CPSW_RX_VLAN_ENCAP; 566 writel(control_reg, &cpsw->regs->control); 567 568 /* setup host port priority mapping */ 569 writel_relaxed(CPDMA_TX_PRIORITY_MAP, 570 &cpsw->host_port_regs->cpdma_tx_pri_map); 571 writel_relaxed(0, &cpsw->host_port_regs->cpdma_rx_chan_map); 572 573 /* disable priority elevation */ 574 writel_relaxed(0, &cpsw->regs->ptype); 575 576 /* enable statistics collection only on all ports */ 577 writel_relaxed(0x7, &cpsw->regs->stat_port_en); 578 579 /* Enable internal fifo flow control */ 580 writel(0x7, &cpsw->regs->flow_control); 581 582 if (cpsw_is_switch_en(cpsw)) 583 cpsw_init_host_port_switch(cpsw); 584 else 585 cpsw_init_host_port_dual_mac(cpsw); 586 587 cpsw_ale_control_set(cpsw->ale, HOST_PORT_NUM, 588 ALE_PORT_STATE, ALE_PORT_STATE_FORWARD); 589 } 590 591 static void cpsw_port_add_dual_emac_def_ale_entries(struct cpsw_priv *priv, 592 struct cpsw_slave *slave) 593 { 594 u32 port_mask = 1 << priv->emac_port | ALE_PORT_HOST; 595 struct cpsw_common *cpsw = priv->cpsw; 596 u32 reg; 597 598 reg = (cpsw->version == CPSW_VERSION_1) ? CPSW1_PORT_VLAN : 599 CPSW2_PORT_VLAN; 600 slave_write(slave, slave->port_vlan, reg); 601 602 cpsw_ale_add_vlan(cpsw->ale, slave->port_vlan, port_mask, 603 port_mask, port_mask, 0); 604 cpsw_ale_add_mcast(cpsw->ale, priv->ndev->broadcast, 605 ALE_PORT_HOST, ALE_VLAN, slave->port_vlan, 606 ALE_MCAST_FWD); 607 cpsw_ale_add_ucast(cpsw->ale, priv->mac_addr, 608 HOST_PORT_NUM, ALE_VLAN | 609 ALE_SECURE, slave->port_vlan); 610 cpsw_ale_control_set(cpsw->ale, priv->emac_port, 611 ALE_PORT_DROP_UNKNOWN_VLAN, 1); 612 /* learning make no sense in dual_mac mode */ 613 cpsw_ale_control_set(cpsw->ale, priv->emac_port, 614 ALE_PORT_NOLEARN, 1); 615 } 616 617 static void cpsw_port_add_switch_def_ale_entries(struct cpsw_priv *priv, 618 struct cpsw_slave *slave) 619 { 620 u32 port_mask = 1 << priv->emac_port | ALE_PORT_HOST; 621 struct cpsw_common *cpsw = priv->cpsw; 622 u32 reg; 623 624 cpsw_ale_control_set(cpsw->ale, priv->emac_port, 625 ALE_PORT_DROP_UNKNOWN_VLAN, 0); 626 cpsw_ale_control_set(cpsw->ale, priv->emac_port, 627 ALE_PORT_NOLEARN, 0); 628 /* disabling SA_UPDATE required to make stp work, without this setting 629 * Host MAC addresses will jump between ports. 630 * As per TRM MAC address can be defined as unicast supervisory (super) 631 * by setting both (ALE_BLOCKED | ALE_SECURE) which should prevent 632 * SA_UPDATE, but HW seems works incorrectly and setting ALE_SECURE 633 * causes STP packets to be dropped due to ingress filter 634 * if (source address found) and (secure) and 635 * (receive port number != port_number)) 636 * then discard the packet 637 */ 638 cpsw_ale_control_set(cpsw->ale, priv->emac_port, 639 ALE_PORT_NO_SA_UPDATE, 1); 640 641 cpsw_ale_add_mcast(cpsw->ale, priv->ndev->broadcast, 642 port_mask, ALE_VLAN, slave->port_vlan, 643 ALE_MCAST_FWD_2); 644 cpsw_ale_add_ucast(cpsw->ale, priv->mac_addr, 645 HOST_PORT_NUM, ALE_VLAN, slave->port_vlan); 646 647 reg = (cpsw->version == CPSW_VERSION_1) ? CPSW1_PORT_VLAN : 648 CPSW2_PORT_VLAN; 649 slave_write(slave, slave->port_vlan, reg); 650 } 651 652 static void cpsw_adjust_link(struct net_device *ndev) 653 { 654 struct cpsw_priv *priv = netdev_priv(ndev); 655 struct cpsw_common *cpsw = priv->cpsw; 656 struct cpsw_slave *slave; 657 struct phy_device *phy; 658 u32 mac_control = 0; 659 660 slave = &cpsw->slaves[priv->emac_port - 1]; 661 phy = slave->phy; 662 663 if (!phy) 664 return; 665 666 if (phy->link) { 667 mac_control = CPSW_SL_CTL_GMII_EN; 668 669 if (phy->speed == 1000) 670 mac_control |= CPSW_SL_CTL_GIG; 671 if (phy->duplex) 672 mac_control |= CPSW_SL_CTL_FULLDUPLEX; 673 674 /* set speed_in input in case RMII mode is used in 100Mbps */ 675 if (phy->speed == 100) 676 mac_control |= CPSW_SL_CTL_IFCTL_A; 677 /* in band mode only works in 10Mbps RGMII mode */ 678 else if ((phy->speed == 10) && phy_interface_is_rgmii(phy)) 679 mac_control |= CPSW_SL_CTL_EXT_EN; /* In Band mode */ 680 681 if (priv->rx_pause) 682 mac_control |= CPSW_SL_CTL_RX_FLOW_EN; 683 684 if (priv->tx_pause) 685 mac_control |= CPSW_SL_CTL_TX_FLOW_EN; 686 687 if (mac_control != slave->mac_control) 688 cpsw_sl_ctl_set(slave->mac_sl, mac_control); 689 690 /* enable forwarding */ 691 cpsw_ale_control_set(cpsw->ale, priv->emac_port, 692 ALE_PORT_STATE, ALE_PORT_STATE_FORWARD); 693 694 netif_tx_wake_all_queues(ndev); 695 696 if (priv->shp_cfg_speed && 697 priv->shp_cfg_speed != slave->phy->speed && 698 !cpsw_shp_is_off(priv)) 699 dev_warn(priv->dev, "Speed was changed, CBS shaper speeds are changed!"); 700 } else { 701 netif_tx_stop_all_queues(ndev); 702 703 mac_control = 0; 704 /* disable forwarding */ 705 cpsw_ale_control_set(cpsw->ale, priv->emac_port, 706 ALE_PORT_STATE, ALE_PORT_STATE_DISABLE); 707 708 cpsw_sl_wait_for_idle(slave->mac_sl, 100); 709 710 cpsw_sl_ctl_reset(slave->mac_sl); 711 } 712 713 if (mac_control != slave->mac_control) 714 phy_print_status(phy); 715 716 slave->mac_control = mac_control; 717 718 if (phy->link && cpsw_need_resplit(cpsw)) 719 cpsw_split_res(cpsw); 720 } 721 722 static void cpsw_slave_open(struct cpsw_slave *slave, struct cpsw_priv *priv) 723 { 724 struct cpsw_common *cpsw = priv->cpsw; 725 struct phy_device *phy; 726 727 cpsw_sl_reset(slave->mac_sl, 100); 728 cpsw_sl_ctl_reset(slave->mac_sl); 729 730 /* setup priority mapping */ 731 cpsw_sl_reg_write(slave->mac_sl, CPSW_SL_RX_PRI_MAP, 732 RX_PRIORITY_MAPPING); 733 734 switch (cpsw->version) { 735 case CPSW_VERSION_1: 736 slave_write(slave, TX_PRIORITY_MAPPING, CPSW1_TX_PRI_MAP); 737 /* Increase RX FIFO size to 5 for supporting fullduplex 738 * flow control mode 739 */ 740 slave_write(slave, 741 (CPSW_MAX_BLKS_TX << CPSW_MAX_BLKS_TX_SHIFT) | 742 CPSW_MAX_BLKS_RX, CPSW1_MAX_BLKS); 743 break; 744 case CPSW_VERSION_2: 745 case CPSW_VERSION_3: 746 case CPSW_VERSION_4: 747 slave_write(slave, TX_PRIORITY_MAPPING, CPSW2_TX_PRI_MAP); 748 /* Increase RX FIFO size to 5 for supporting fullduplex 749 * flow control mode 750 */ 751 slave_write(slave, 752 (CPSW_MAX_BLKS_TX << CPSW_MAX_BLKS_TX_SHIFT) | 753 CPSW_MAX_BLKS_RX, CPSW2_MAX_BLKS); 754 break; 755 } 756 757 /* setup max packet size, and mac address */ 758 cpsw_sl_reg_write(slave->mac_sl, CPSW_SL_RX_MAXLEN, 759 cpsw->rx_packet_max); 760 cpsw_set_slave_mac(slave, priv); 761 762 slave->mac_control = 0; /* no link yet */ 763 764 if (cpsw_is_switch_en(cpsw)) 765 cpsw_port_add_switch_def_ale_entries(priv, slave); 766 else 767 cpsw_port_add_dual_emac_def_ale_entries(priv, slave); 768 769 if (!slave->data->phy_node) 770 dev_err(priv->dev, "no phy found on slave %d\n", 771 slave->slave_num); 772 phy = of_phy_connect(priv->ndev, slave->data->phy_node, 773 &cpsw_adjust_link, 0, slave->data->phy_if); 774 if (!phy) { 775 dev_err(priv->dev, "phy \"%pOF\" not found on slave %d\n", 776 slave->data->phy_node, 777 slave->slave_num); 778 return; 779 } 780 slave->phy = phy; 781 782 phy_attached_info(slave->phy); 783 784 phy_start(slave->phy); 785 786 /* Configure GMII_SEL register */ 787 phy_set_mode_ext(slave->data->ifphy, PHY_MODE_ETHERNET, 788 slave->data->phy_if); 789 } 790 791 static int cpsw_ndo_stop(struct net_device *ndev) 792 { 793 struct cpsw_priv *priv = netdev_priv(ndev); 794 struct cpsw_common *cpsw = priv->cpsw; 795 struct cpsw_slave *slave; 796 797 cpsw_info(priv, ifdown, "shutting down ndev\n"); 798 slave = &cpsw->slaves[priv->emac_port - 1]; 799 if (slave->phy) 800 phy_stop(slave->phy); 801 802 netif_tx_stop_all_queues(priv->ndev); 803 804 if (slave->phy) { 805 phy_disconnect(slave->phy); 806 slave->phy = NULL; 807 } 808 809 __hw_addr_ref_unsync_dev(&ndev->mc, ndev, cpsw_purge_all_mc); 810 811 if (cpsw->usage_count <= 1) { 812 napi_disable(&cpsw->napi_rx); 813 napi_disable(&cpsw->napi_tx); 814 cpts_unregister(cpsw->cpts); 815 cpsw_intr_disable(cpsw); 816 cpdma_ctlr_stop(cpsw->dma); 817 cpsw_ale_stop(cpsw->ale); 818 cpsw_destroy_xdp_rxqs(cpsw); 819 } 820 821 if (cpsw_need_resplit(cpsw)) 822 cpsw_split_res(cpsw); 823 824 cpsw->usage_count--; 825 pm_runtime_put_sync(cpsw->dev); 826 return 0; 827 } 828 829 static int cpsw_ndo_open(struct net_device *ndev) 830 { 831 struct cpsw_priv *priv = netdev_priv(ndev); 832 struct cpsw_common *cpsw = priv->cpsw; 833 int ret; 834 835 dev_info(priv->dev, "starting ndev. mode: %s\n", 836 cpsw_is_switch_en(cpsw) ? "switch" : "dual_mac"); 837 ret = pm_runtime_get_sync(cpsw->dev); 838 if (ret < 0) { 839 pm_runtime_put_noidle(cpsw->dev); 840 return ret; 841 } 842 843 /* Notify the stack of the actual queue counts. */ 844 ret = netif_set_real_num_tx_queues(ndev, cpsw->tx_ch_num); 845 if (ret) { 846 dev_err(priv->dev, "cannot set real number of tx queues\n"); 847 goto pm_cleanup; 848 } 849 850 ret = netif_set_real_num_rx_queues(ndev, cpsw->rx_ch_num); 851 if (ret) { 852 dev_err(priv->dev, "cannot set real number of rx queues\n"); 853 goto pm_cleanup; 854 } 855 856 /* Initialize host and slave ports */ 857 if (!cpsw->usage_count) 858 cpsw_init_host_port(priv); 859 cpsw_slave_open(&cpsw->slaves[priv->emac_port - 1], priv); 860 861 /* initialize shared resources for every ndev */ 862 if (!cpsw->usage_count) { 863 /* create rxqs for both infs in dual mac as they use same pool 864 * and must be destroyed together when no users. 865 */ 866 ret = cpsw_create_xdp_rxqs(cpsw); 867 if (ret < 0) 868 goto err_cleanup; 869 870 ret = cpsw_fill_rx_channels(priv); 871 if (ret < 0) 872 goto err_cleanup; 873 874 if (cpts_register(cpsw->cpts)) 875 dev_err(priv->dev, "error registering cpts device\n"); 876 877 napi_enable(&cpsw->napi_rx); 878 napi_enable(&cpsw->napi_tx); 879 880 if (cpsw->tx_irq_disabled) { 881 cpsw->tx_irq_disabled = false; 882 enable_irq(cpsw->irqs_table[1]); 883 } 884 885 if (cpsw->rx_irq_disabled) { 886 cpsw->rx_irq_disabled = false; 887 enable_irq(cpsw->irqs_table[0]); 888 } 889 } 890 891 cpsw_restore(priv); 892 893 /* Enable Interrupt pacing if configured */ 894 if (cpsw->coal_intvl != 0) { 895 struct ethtool_coalesce coal; 896 897 coal.rx_coalesce_usecs = cpsw->coal_intvl; 898 cpsw_set_coalesce(ndev, &coal); 899 } 900 901 cpdma_ctlr_start(cpsw->dma); 902 cpsw_intr_enable(cpsw); 903 cpsw->usage_count++; 904 905 return 0; 906 907 err_cleanup: 908 cpsw_ndo_stop(ndev); 909 910 pm_cleanup: 911 pm_runtime_put_sync(cpsw->dev); 912 return ret; 913 } 914 915 static netdev_tx_t cpsw_ndo_start_xmit(struct sk_buff *skb, 916 struct net_device *ndev) 917 { 918 struct cpsw_priv *priv = netdev_priv(ndev); 919 struct cpsw_common *cpsw = priv->cpsw; 920 struct cpts *cpts = cpsw->cpts; 921 struct netdev_queue *txq; 922 struct cpdma_chan *txch; 923 int ret, q_idx; 924 925 if (skb_padto(skb, CPSW_MIN_PACKET_SIZE)) { 926 cpsw_err(priv, tx_err, "packet pad failed\n"); 927 ndev->stats.tx_dropped++; 928 return NET_XMIT_DROP; 929 } 930 931 if (skb_shinfo(skb)->tx_flags & SKBTX_HW_TSTAMP && 932 priv->tx_ts_enabled && cpts_can_timestamp(cpts, skb)) 933 skb_shinfo(skb)->tx_flags |= SKBTX_IN_PROGRESS; 934 935 q_idx = skb_get_queue_mapping(skb); 936 if (q_idx >= cpsw->tx_ch_num) 937 q_idx = q_idx % cpsw->tx_ch_num; 938 939 txch = cpsw->txv[q_idx].ch; 940 txq = netdev_get_tx_queue(ndev, q_idx); 941 skb_tx_timestamp(skb); 942 ret = cpdma_chan_submit(txch, skb, skb->data, skb->len, 943 priv->emac_port); 944 if (unlikely(ret != 0)) { 945 cpsw_err(priv, tx_err, "desc submit failed\n"); 946 goto fail; 947 } 948 949 /* If there is no more tx desc left free then we need to 950 * tell the kernel to stop sending us tx frames. 951 */ 952 if (unlikely(!cpdma_check_free_tx_desc(txch))) { 953 netif_tx_stop_queue(txq); 954 955 /* Barrier, so that stop_queue visible to other cpus */ 956 smp_mb__after_atomic(); 957 958 if (cpdma_check_free_tx_desc(txch)) 959 netif_tx_wake_queue(txq); 960 } 961 962 return NETDEV_TX_OK; 963 fail: 964 ndev->stats.tx_dropped++; 965 netif_tx_stop_queue(txq); 966 967 /* Barrier, so that stop_queue visible to other cpus */ 968 smp_mb__after_atomic(); 969 970 if (cpdma_check_free_tx_desc(txch)) 971 netif_tx_wake_queue(txq); 972 973 return NETDEV_TX_BUSY; 974 } 975 976 static int cpsw_ndo_set_mac_address(struct net_device *ndev, void *p) 977 { 978 struct sockaddr *addr = (struct sockaddr *)p; 979 struct cpsw_priv *priv = netdev_priv(ndev); 980 struct cpsw_common *cpsw = priv->cpsw; 981 int ret, slave_no; 982 int flags = 0; 983 u16 vid = 0; 984 985 slave_no = cpsw_slave_index(cpsw, priv); 986 if (!is_valid_ether_addr(addr->sa_data)) 987 return -EADDRNOTAVAIL; 988 989 ret = pm_runtime_get_sync(cpsw->dev); 990 if (ret < 0) { 991 pm_runtime_put_noidle(cpsw->dev); 992 return ret; 993 } 994 995 vid = cpsw->slaves[slave_no].port_vlan; 996 flags = ALE_VLAN | ALE_SECURE; 997 998 cpsw_ale_del_ucast(cpsw->ale, priv->mac_addr, HOST_PORT_NUM, 999 flags, vid); 1000 cpsw_ale_add_ucast(cpsw->ale, addr->sa_data, HOST_PORT_NUM, 1001 flags, vid); 1002 1003 ether_addr_copy(priv->mac_addr, addr->sa_data); 1004 ether_addr_copy(ndev->dev_addr, priv->mac_addr); 1005 cpsw_set_slave_mac(&cpsw->slaves[slave_no], priv); 1006 1007 pm_runtime_put(cpsw->dev); 1008 1009 return 0; 1010 } 1011 1012 static int cpsw_ndo_vlan_rx_kill_vid(struct net_device *ndev, 1013 __be16 proto, u16 vid) 1014 { 1015 struct cpsw_priv *priv = netdev_priv(ndev); 1016 struct cpsw_common *cpsw = priv->cpsw; 1017 int ret; 1018 int i; 1019 1020 if (cpsw_is_switch_en(cpsw)) { 1021 dev_dbg(cpsw->dev, "ndo del vlan is called in switch mode\n"); 1022 return 0; 1023 } 1024 1025 if (vid == cpsw->data.default_vlan) 1026 return 0; 1027 1028 ret = pm_runtime_get_sync(cpsw->dev); 1029 if (ret < 0) { 1030 pm_runtime_put_noidle(cpsw->dev); 1031 return ret; 1032 } 1033 1034 for (i = 0; i < cpsw->data.slaves; i++) { 1035 if (cpsw->slaves[i].ndev && 1036 vid == cpsw->slaves[i].port_vlan) 1037 goto err; 1038 } 1039 1040 dev_dbg(priv->dev, "removing vlanid %d from vlan filter\n", vid); 1041 cpsw_ale_del_vlan(cpsw->ale, vid, 0); 1042 cpsw_ale_del_ucast(cpsw->ale, priv->mac_addr, 1043 HOST_PORT_NUM, ALE_VLAN, vid); 1044 cpsw_ale_del_mcast(cpsw->ale, priv->ndev->broadcast, 1045 0, ALE_VLAN, vid); 1046 cpsw_ale_flush_multicast(cpsw->ale, 0, vid); 1047 err: 1048 pm_runtime_put(cpsw->dev); 1049 return ret; 1050 } 1051 1052 static int cpsw_ndo_get_phys_port_name(struct net_device *ndev, char *name, 1053 size_t len) 1054 { 1055 struct cpsw_priv *priv = netdev_priv(ndev); 1056 int err; 1057 1058 err = snprintf(name, len, "p%d", priv->emac_port); 1059 1060 if (err >= len) 1061 return -EINVAL; 1062 1063 return 0; 1064 } 1065 1066 #ifdef CONFIG_NET_POLL_CONTROLLER 1067 static void cpsw_ndo_poll_controller(struct net_device *ndev) 1068 { 1069 struct cpsw_common *cpsw = ndev_to_cpsw(ndev); 1070 1071 cpsw_intr_disable(cpsw); 1072 cpsw_rx_interrupt(cpsw->irqs_table[0], cpsw); 1073 cpsw_tx_interrupt(cpsw->irqs_table[1], cpsw); 1074 cpsw_intr_enable(cpsw); 1075 } 1076 #endif 1077 1078 static int cpsw_ndo_xdp_xmit(struct net_device *ndev, int n, 1079 struct xdp_frame **frames, u32 flags) 1080 { 1081 struct cpsw_priv *priv = netdev_priv(ndev); 1082 struct xdp_frame *xdpf; 1083 int i, drops = 0; 1084 1085 if (unlikely(flags & ~XDP_XMIT_FLAGS_MASK)) 1086 return -EINVAL; 1087 1088 for (i = 0; i < n; i++) { 1089 xdpf = frames[i]; 1090 if (xdpf->len < CPSW_MIN_PACKET_SIZE) { 1091 xdp_return_frame_rx_napi(xdpf); 1092 drops++; 1093 continue; 1094 } 1095 1096 if (cpsw_xdp_tx_frame(priv, xdpf, NULL, priv->emac_port)) 1097 drops++; 1098 } 1099 1100 return n - drops; 1101 } 1102 1103 static int cpsw_get_port_parent_id(struct net_device *ndev, 1104 struct netdev_phys_item_id *ppid) 1105 { 1106 struct cpsw_common *cpsw = ndev_to_cpsw(ndev); 1107 1108 ppid->id_len = sizeof(cpsw->base_mac); 1109 memcpy(&ppid->id, &cpsw->base_mac, ppid->id_len); 1110 1111 return 0; 1112 } 1113 1114 static const struct net_device_ops cpsw_netdev_ops = { 1115 .ndo_open = cpsw_ndo_open, 1116 .ndo_stop = cpsw_ndo_stop, 1117 .ndo_start_xmit = cpsw_ndo_start_xmit, 1118 .ndo_set_mac_address = cpsw_ndo_set_mac_address, 1119 .ndo_do_ioctl = cpsw_ndo_ioctl, 1120 .ndo_validate_addr = eth_validate_addr, 1121 .ndo_tx_timeout = cpsw_ndo_tx_timeout, 1122 .ndo_set_rx_mode = cpsw_ndo_set_rx_mode, 1123 .ndo_set_tx_maxrate = cpsw_ndo_set_tx_maxrate, 1124 #ifdef CONFIG_NET_POLL_CONTROLLER 1125 .ndo_poll_controller = cpsw_ndo_poll_controller, 1126 #endif 1127 .ndo_vlan_rx_add_vid = cpsw_ndo_vlan_rx_add_vid, 1128 .ndo_vlan_rx_kill_vid = cpsw_ndo_vlan_rx_kill_vid, 1129 .ndo_setup_tc = cpsw_ndo_setup_tc, 1130 .ndo_get_phys_port_name = cpsw_ndo_get_phys_port_name, 1131 .ndo_bpf = cpsw_ndo_bpf, 1132 .ndo_xdp_xmit = cpsw_ndo_xdp_xmit, 1133 .ndo_get_port_parent_id = cpsw_get_port_parent_id, 1134 }; 1135 1136 static void cpsw_get_drvinfo(struct net_device *ndev, 1137 struct ethtool_drvinfo *info) 1138 { 1139 struct cpsw_common *cpsw = ndev_to_cpsw(ndev); 1140 struct platform_device *pdev; 1141 1142 pdev = to_platform_device(cpsw->dev); 1143 strlcpy(info->driver, "cpsw-switch", sizeof(info->driver)); 1144 strlcpy(info->version, "2.0", sizeof(info->version)); 1145 strlcpy(info->bus_info, pdev->name, sizeof(info->bus_info)); 1146 } 1147 1148 static int cpsw_set_pauseparam(struct net_device *ndev, 1149 struct ethtool_pauseparam *pause) 1150 { 1151 struct cpsw_common *cpsw = ndev_to_cpsw(ndev); 1152 struct cpsw_priv *priv = netdev_priv(ndev); 1153 int slave_no; 1154 1155 slave_no = cpsw_slave_index(cpsw, priv); 1156 if (!cpsw->slaves[slave_no].phy) 1157 return -EINVAL; 1158 1159 if (!phy_validate_pause(cpsw->slaves[slave_no].phy, pause)) 1160 return -EINVAL; 1161 1162 priv->rx_pause = pause->rx_pause ? true : false; 1163 priv->tx_pause = pause->tx_pause ? true : false; 1164 1165 phy_set_asym_pause(cpsw->slaves[slave_no].phy, 1166 priv->rx_pause, priv->tx_pause); 1167 1168 return 0; 1169 } 1170 1171 static int cpsw_set_channels(struct net_device *ndev, 1172 struct ethtool_channels *chs) 1173 { 1174 return cpsw_set_channels_common(ndev, chs, cpsw_rx_handler); 1175 } 1176 1177 static const struct ethtool_ops cpsw_ethtool_ops = { 1178 .supported_coalesce_params = ETHTOOL_COALESCE_RX_USECS, 1179 .get_drvinfo = cpsw_get_drvinfo, 1180 .get_msglevel = cpsw_get_msglevel, 1181 .set_msglevel = cpsw_set_msglevel, 1182 .get_link = ethtool_op_get_link, 1183 .get_ts_info = cpsw_get_ts_info, 1184 .get_coalesce = cpsw_get_coalesce, 1185 .set_coalesce = cpsw_set_coalesce, 1186 .get_sset_count = cpsw_get_sset_count, 1187 .get_strings = cpsw_get_strings, 1188 .get_ethtool_stats = cpsw_get_ethtool_stats, 1189 .get_pauseparam = cpsw_get_pauseparam, 1190 .set_pauseparam = cpsw_set_pauseparam, 1191 .get_wol = cpsw_get_wol, 1192 .set_wol = cpsw_set_wol, 1193 .get_regs_len = cpsw_get_regs_len, 1194 .get_regs = cpsw_get_regs, 1195 .begin = cpsw_ethtool_op_begin, 1196 .complete = cpsw_ethtool_op_complete, 1197 .get_channels = cpsw_get_channels, 1198 .set_channels = cpsw_set_channels, 1199 .get_link_ksettings = cpsw_get_link_ksettings, 1200 .set_link_ksettings = cpsw_set_link_ksettings, 1201 .get_eee = cpsw_get_eee, 1202 .set_eee = cpsw_set_eee, 1203 .nway_reset = cpsw_nway_reset, 1204 .get_ringparam = cpsw_get_ringparam, 1205 .set_ringparam = cpsw_set_ringparam, 1206 }; 1207 1208 static int cpsw_probe_dt(struct cpsw_common *cpsw) 1209 { 1210 struct device_node *node = cpsw->dev->of_node, *tmp_node, *port_np; 1211 struct cpsw_platform_data *data = &cpsw->data; 1212 struct device *dev = cpsw->dev; 1213 int ret; 1214 u32 prop; 1215 1216 if (!node) 1217 return -EINVAL; 1218 1219 tmp_node = of_get_child_by_name(node, "ethernet-ports"); 1220 if (!tmp_node) 1221 return -ENOENT; 1222 data->slaves = of_get_child_count(tmp_node); 1223 if (data->slaves != CPSW_SLAVE_PORTS_NUM) { 1224 of_node_put(tmp_node); 1225 return -ENOENT; 1226 } 1227 1228 data->active_slave = 0; 1229 data->channels = CPSW_MAX_QUEUES; 1230 data->ale_entries = CPSW_ALE_NUM_ENTRIES; 1231 data->dual_emac = 1; 1232 data->bd_ram_size = CPSW_BD_RAM_SIZE; 1233 data->mac_control = 0; 1234 1235 data->slave_data = devm_kcalloc(dev, CPSW_SLAVE_PORTS_NUM, 1236 sizeof(struct cpsw_slave_data), 1237 GFP_KERNEL); 1238 if (!data->slave_data) 1239 return -ENOMEM; 1240 1241 /* Populate all the child nodes here... 1242 */ 1243 ret = devm_of_platform_populate(dev); 1244 /* We do not want to force this, as in some cases may not have child */ 1245 if (ret) 1246 dev_warn(dev, "Doesn't have any child node\n"); 1247 1248 for_each_child_of_node(tmp_node, port_np) { 1249 struct cpsw_slave_data *slave_data; 1250 const void *mac_addr; 1251 u32 port_id; 1252 1253 ret = of_property_read_u32(port_np, "reg", &port_id); 1254 if (ret < 0) { 1255 dev_err(dev, "%pOF error reading port_id %d\n", 1256 port_np, ret); 1257 goto err_node_put; 1258 } 1259 1260 if (!port_id || port_id > CPSW_SLAVE_PORTS_NUM) { 1261 dev_err(dev, "%pOF has invalid port_id %u\n", 1262 port_np, port_id); 1263 ret = -EINVAL; 1264 goto err_node_put; 1265 } 1266 1267 slave_data = &data->slave_data[port_id - 1]; 1268 1269 slave_data->disabled = !of_device_is_available(port_np); 1270 if (slave_data->disabled) 1271 continue; 1272 1273 slave_data->slave_node = port_np; 1274 slave_data->ifphy = devm_of_phy_get(dev, port_np, NULL); 1275 if (IS_ERR(slave_data->ifphy)) { 1276 ret = PTR_ERR(slave_data->ifphy); 1277 dev_err(dev, "%pOF: Error retrieving port phy: %d\n", 1278 port_np, ret); 1279 goto err_node_put; 1280 } 1281 1282 if (of_phy_is_fixed_link(port_np)) { 1283 ret = of_phy_register_fixed_link(port_np); 1284 if (ret) { 1285 if (ret != -EPROBE_DEFER) 1286 dev_err(dev, "%pOF failed to register fixed-link phy: %d\n", 1287 port_np, ret); 1288 goto err_node_put; 1289 } 1290 slave_data->phy_node = of_node_get(port_np); 1291 } else { 1292 slave_data->phy_node = 1293 of_parse_phandle(port_np, "phy-handle", 0); 1294 } 1295 1296 if (!slave_data->phy_node) { 1297 dev_err(dev, "%pOF no phy found\n", port_np); 1298 ret = -ENODEV; 1299 goto err_node_put; 1300 } 1301 1302 ret = of_get_phy_mode(port_np, &slave_data->phy_if); 1303 if (ret) { 1304 dev_err(dev, "%pOF read phy-mode err %d\n", 1305 port_np, ret); 1306 goto err_node_put; 1307 } 1308 1309 mac_addr = of_get_mac_address(port_np); 1310 if (!IS_ERR(mac_addr)) { 1311 ether_addr_copy(slave_data->mac_addr, mac_addr); 1312 } else { 1313 ret = ti_cm_get_macid(dev, port_id - 1, 1314 slave_data->mac_addr); 1315 if (ret) 1316 goto err_node_put; 1317 } 1318 1319 if (of_property_read_u32(port_np, "ti,dual-emac-pvid", 1320 &prop)) { 1321 dev_err(dev, "%pOF Missing dual_emac_res_vlan in DT.\n", 1322 port_np); 1323 slave_data->dual_emac_res_vlan = port_id; 1324 dev_err(dev, "%pOF Using %d as Reserved VLAN\n", 1325 port_np, slave_data->dual_emac_res_vlan); 1326 } else { 1327 slave_data->dual_emac_res_vlan = prop; 1328 } 1329 } 1330 1331 of_node_put(tmp_node); 1332 return 0; 1333 1334 err_node_put: 1335 of_node_put(port_np); 1336 return ret; 1337 } 1338 1339 static void cpsw_remove_dt(struct cpsw_common *cpsw) 1340 { 1341 struct cpsw_platform_data *data = &cpsw->data; 1342 int i = 0; 1343 1344 for (i = 0; i < cpsw->data.slaves; i++) { 1345 struct cpsw_slave_data *slave_data = &data->slave_data[i]; 1346 struct device_node *port_np = slave_data->phy_node; 1347 1348 if (port_np) { 1349 if (of_phy_is_fixed_link(port_np)) 1350 of_phy_deregister_fixed_link(port_np); 1351 1352 of_node_put(port_np); 1353 } 1354 } 1355 } 1356 1357 static int cpsw_create_ports(struct cpsw_common *cpsw) 1358 { 1359 struct cpsw_platform_data *data = &cpsw->data; 1360 struct net_device *ndev, *napi_ndev = NULL; 1361 struct device *dev = cpsw->dev; 1362 struct cpsw_priv *priv; 1363 int ret = 0, i = 0; 1364 1365 for (i = 0; i < cpsw->data.slaves; i++) { 1366 struct cpsw_slave_data *slave_data = &data->slave_data[i]; 1367 1368 if (slave_data->disabled) 1369 continue; 1370 1371 ndev = devm_alloc_etherdev_mqs(dev, sizeof(struct cpsw_priv), 1372 CPSW_MAX_QUEUES, 1373 CPSW_MAX_QUEUES); 1374 if (!ndev) { 1375 dev_err(dev, "error allocating net_device\n"); 1376 return -ENOMEM; 1377 } 1378 1379 priv = netdev_priv(ndev); 1380 priv->cpsw = cpsw; 1381 priv->ndev = ndev; 1382 priv->dev = dev; 1383 priv->msg_enable = netif_msg_init(debug_level, CPSW_DEBUG); 1384 priv->emac_port = i + 1; 1385 1386 if (is_valid_ether_addr(slave_data->mac_addr)) { 1387 ether_addr_copy(priv->mac_addr, slave_data->mac_addr); 1388 dev_info(cpsw->dev, "Detected MACID = %pM\n", 1389 priv->mac_addr); 1390 } else { 1391 eth_random_addr(slave_data->mac_addr); 1392 dev_info(cpsw->dev, "Random MACID = %pM\n", 1393 priv->mac_addr); 1394 } 1395 ether_addr_copy(ndev->dev_addr, slave_data->mac_addr); 1396 ether_addr_copy(priv->mac_addr, slave_data->mac_addr); 1397 1398 cpsw->slaves[i].ndev = ndev; 1399 1400 ndev->features |= NETIF_F_HW_VLAN_CTAG_FILTER | 1401 NETIF_F_HW_VLAN_CTAG_RX | NETIF_F_NETNS_LOCAL; 1402 1403 ndev->netdev_ops = &cpsw_netdev_ops; 1404 ndev->ethtool_ops = &cpsw_ethtool_ops; 1405 SET_NETDEV_DEV(ndev, dev); 1406 1407 if (!napi_ndev) { 1408 /* CPSW Host port CPDMA interface is shared between 1409 * ports and there is only one TX and one RX IRQs 1410 * available for all possible TX and RX channels 1411 * accordingly. 1412 */ 1413 netif_napi_add(ndev, &cpsw->napi_rx, 1414 cpsw->quirk_irq ? 1415 cpsw_rx_poll : cpsw_rx_mq_poll, 1416 CPSW_POLL_WEIGHT); 1417 netif_tx_napi_add(ndev, &cpsw->napi_tx, 1418 cpsw->quirk_irq ? 1419 cpsw_tx_poll : cpsw_tx_mq_poll, 1420 CPSW_POLL_WEIGHT); 1421 } 1422 1423 napi_ndev = ndev; 1424 } 1425 1426 return ret; 1427 } 1428 1429 static void cpsw_unregister_ports(struct cpsw_common *cpsw) 1430 { 1431 int i = 0; 1432 1433 for (i = 0; i < cpsw->data.slaves; i++) { 1434 if (!cpsw->slaves[i].ndev) 1435 continue; 1436 1437 unregister_netdev(cpsw->slaves[i].ndev); 1438 } 1439 } 1440 1441 static int cpsw_register_ports(struct cpsw_common *cpsw) 1442 { 1443 int ret = 0, i = 0; 1444 1445 for (i = 0; i < cpsw->data.slaves; i++) { 1446 if (!cpsw->slaves[i].ndev) 1447 continue; 1448 1449 /* register the network device */ 1450 ret = register_netdev(cpsw->slaves[i].ndev); 1451 if (ret) { 1452 dev_err(cpsw->dev, 1453 "cpsw: err registering net device%d\n", i); 1454 cpsw->slaves[i].ndev = NULL; 1455 break; 1456 } 1457 } 1458 1459 if (ret) 1460 cpsw_unregister_ports(cpsw); 1461 return ret; 1462 } 1463 1464 bool cpsw_port_dev_check(const struct net_device *ndev) 1465 { 1466 if (ndev->netdev_ops == &cpsw_netdev_ops) { 1467 struct cpsw_common *cpsw = ndev_to_cpsw(ndev); 1468 1469 return !cpsw->data.dual_emac; 1470 } 1471 1472 return false; 1473 } 1474 1475 static void cpsw_port_offload_fwd_mark_update(struct cpsw_common *cpsw) 1476 { 1477 int set_val = 0; 1478 int i; 1479 1480 if (!cpsw->ale_bypass && 1481 (cpsw->br_members == (ALE_PORT_1 | ALE_PORT_2))) 1482 set_val = 1; 1483 1484 dev_dbg(cpsw->dev, "set offload_fwd_mark %d\n", set_val); 1485 1486 for (i = 0; i < cpsw->data.slaves; i++) { 1487 struct net_device *sl_ndev = cpsw->slaves[i].ndev; 1488 struct cpsw_priv *priv = netdev_priv(sl_ndev); 1489 1490 priv->offload_fwd_mark = set_val; 1491 } 1492 } 1493 1494 static int cpsw_netdevice_port_link(struct net_device *ndev, 1495 struct net_device *br_ndev) 1496 { 1497 struct cpsw_priv *priv = netdev_priv(ndev); 1498 struct cpsw_common *cpsw = priv->cpsw; 1499 1500 if (!cpsw->br_members) { 1501 cpsw->hw_bridge_dev = br_ndev; 1502 } else { 1503 /* This is adding the port to a second bridge, this is 1504 * unsupported 1505 */ 1506 if (cpsw->hw_bridge_dev != br_ndev) 1507 return -EOPNOTSUPP; 1508 } 1509 1510 cpsw->br_members |= BIT(priv->emac_port); 1511 1512 cpsw_port_offload_fwd_mark_update(cpsw); 1513 1514 return NOTIFY_DONE; 1515 } 1516 1517 static void cpsw_netdevice_port_unlink(struct net_device *ndev) 1518 { 1519 struct cpsw_priv *priv = netdev_priv(ndev); 1520 struct cpsw_common *cpsw = priv->cpsw; 1521 1522 cpsw->br_members &= ~BIT(priv->emac_port); 1523 1524 cpsw_port_offload_fwd_mark_update(cpsw); 1525 1526 if (!cpsw->br_members) 1527 cpsw->hw_bridge_dev = NULL; 1528 } 1529 1530 /* netdev notifier */ 1531 static int cpsw_netdevice_event(struct notifier_block *unused, 1532 unsigned long event, void *ptr) 1533 { 1534 struct net_device *ndev = netdev_notifier_info_to_dev(ptr); 1535 struct netdev_notifier_changeupper_info *info; 1536 int ret = NOTIFY_DONE; 1537 1538 if (!cpsw_port_dev_check(ndev)) 1539 return NOTIFY_DONE; 1540 1541 switch (event) { 1542 case NETDEV_CHANGEUPPER: 1543 info = ptr; 1544 1545 if (netif_is_bridge_master(info->upper_dev)) { 1546 if (info->linking) 1547 ret = cpsw_netdevice_port_link(ndev, 1548 info->upper_dev); 1549 else 1550 cpsw_netdevice_port_unlink(ndev); 1551 } 1552 break; 1553 default: 1554 return NOTIFY_DONE; 1555 } 1556 1557 return notifier_from_errno(ret); 1558 } 1559 1560 static struct notifier_block cpsw_netdevice_nb __read_mostly = { 1561 .notifier_call = cpsw_netdevice_event, 1562 }; 1563 1564 static int cpsw_register_notifiers(struct cpsw_common *cpsw) 1565 { 1566 int ret = 0; 1567 1568 ret = register_netdevice_notifier(&cpsw_netdevice_nb); 1569 if (ret) { 1570 dev_err(cpsw->dev, "can't register netdevice notifier\n"); 1571 return ret; 1572 } 1573 1574 ret = cpsw_switchdev_register_notifiers(cpsw); 1575 if (ret) 1576 unregister_netdevice_notifier(&cpsw_netdevice_nb); 1577 1578 return ret; 1579 } 1580 1581 static void cpsw_unregister_notifiers(struct cpsw_common *cpsw) 1582 { 1583 cpsw_switchdev_unregister_notifiers(cpsw); 1584 unregister_netdevice_notifier(&cpsw_netdevice_nb); 1585 } 1586 1587 static const struct devlink_ops cpsw_devlink_ops = { 1588 }; 1589 1590 static int cpsw_dl_switch_mode_get(struct devlink *dl, u32 id, 1591 struct devlink_param_gset_ctx *ctx) 1592 { 1593 struct cpsw_devlink *dl_priv = devlink_priv(dl); 1594 struct cpsw_common *cpsw = dl_priv->cpsw; 1595 1596 dev_dbg(cpsw->dev, "%s id:%u\n", __func__, id); 1597 1598 if (id != CPSW_DL_PARAM_SWITCH_MODE) 1599 return -EOPNOTSUPP; 1600 1601 ctx->val.vbool = !cpsw->data.dual_emac; 1602 1603 return 0; 1604 } 1605 1606 static int cpsw_dl_switch_mode_set(struct devlink *dl, u32 id, 1607 struct devlink_param_gset_ctx *ctx) 1608 { 1609 struct cpsw_devlink *dl_priv = devlink_priv(dl); 1610 struct cpsw_common *cpsw = dl_priv->cpsw; 1611 int vlan = cpsw->data.default_vlan; 1612 bool switch_en = ctx->val.vbool; 1613 bool if_running = false; 1614 int i; 1615 1616 dev_dbg(cpsw->dev, "%s id:%u\n", __func__, id); 1617 1618 if (id != CPSW_DL_PARAM_SWITCH_MODE) 1619 return -EOPNOTSUPP; 1620 1621 if (switch_en == !cpsw->data.dual_emac) 1622 return 0; 1623 1624 if (!switch_en && cpsw->br_members) { 1625 dev_err(cpsw->dev, "Remove ports from BR before disabling switch mode\n"); 1626 return -EINVAL; 1627 } 1628 1629 rtnl_lock(); 1630 1631 for (i = 0; i < cpsw->data.slaves; i++) { 1632 struct cpsw_slave *slave = &cpsw->slaves[i]; 1633 struct net_device *sl_ndev = slave->ndev; 1634 1635 if (!sl_ndev || !netif_running(sl_ndev)) 1636 continue; 1637 1638 if_running = true; 1639 } 1640 1641 if (!if_running) { 1642 /* all ndevs are down */ 1643 cpsw->data.dual_emac = !switch_en; 1644 for (i = 0; i < cpsw->data.slaves; i++) { 1645 struct cpsw_slave *slave = &cpsw->slaves[i]; 1646 struct net_device *sl_ndev = slave->ndev; 1647 struct cpsw_priv *priv; 1648 1649 if (!sl_ndev) 1650 continue; 1651 1652 priv = netdev_priv(sl_ndev); 1653 if (switch_en) 1654 vlan = cpsw->data.default_vlan; 1655 else 1656 vlan = slave->data->dual_emac_res_vlan; 1657 slave->port_vlan = vlan; 1658 } 1659 goto exit; 1660 } 1661 1662 if (switch_en) { 1663 dev_info(cpsw->dev, "Enable switch mode\n"); 1664 1665 /* enable bypass - no forwarding; all traffic goes to Host */ 1666 cpsw_ale_control_set(cpsw->ale, 0, ALE_BYPASS, 1); 1667 1668 /* clean up ALE table */ 1669 cpsw_ale_control_set(cpsw->ale, 0, ALE_CLEAR, 1); 1670 cpsw_ale_control_get(cpsw->ale, 0, ALE_AGEOUT); 1671 1672 cpsw_init_host_port_switch(cpsw); 1673 1674 for (i = 0; i < cpsw->data.slaves; i++) { 1675 struct cpsw_slave *slave = &cpsw->slaves[i]; 1676 struct net_device *sl_ndev = slave->ndev; 1677 struct cpsw_priv *priv; 1678 1679 if (!sl_ndev) 1680 continue; 1681 1682 priv = netdev_priv(sl_ndev); 1683 slave->port_vlan = vlan; 1684 if (netif_running(sl_ndev)) 1685 cpsw_port_add_switch_def_ale_entries(priv, 1686 slave); 1687 } 1688 1689 cpsw_ale_control_set(cpsw->ale, 0, ALE_BYPASS, 0); 1690 cpsw->data.dual_emac = false; 1691 } else { 1692 dev_info(cpsw->dev, "Disable switch mode\n"); 1693 1694 /* enable bypass - no forwarding; all traffic goes to Host */ 1695 cpsw_ale_control_set(cpsw->ale, 0, ALE_BYPASS, 1); 1696 1697 cpsw_ale_control_set(cpsw->ale, 0, ALE_CLEAR, 1); 1698 cpsw_ale_control_get(cpsw->ale, 0, ALE_AGEOUT); 1699 1700 cpsw_init_host_port_dual_mac(cpsw); 1701 1702 for (i = 0; i < cpsw->data.slaves; i++) { 1703 struct cpsw_slave *slave = &cpsw->slaves[i]; 1704 struct net_device *sl_ndev = slave->ndev; 1705 struct cpsw_priv *priv; 1706 1707 if (!sl_ndev) 1708 continue; 1709 1710 priv = netdev_priv(slave->ndev); 1711 slave->port_vlan = slave->data->dual_emac_res_vlan; 1712 cpsw_port_add_dual_emac_def_ale_entries(priv, slave); 1713 } 1714 1715 cpsw_ale_control_set(cpsw->ale, 0, ALE_BYPASS, 0); 1716 cpsw->data.dual_emac = true; 1717 } 1718 exit: 1719 rtnl_unlock(); 1720 1721 return 0; 1722 } 1723 1724 static int cpsw_dl_ale_ctrl_get(struct devlink *dl, u32 id, 1725 struct devlink_param_gset_ctx *ctx) 1726 { 1727 struct cpsw_devlink *dl_priv = devlink_priv(dl); 1728 struct cpsw_common *cpsw = dl_priv->cpsw; 1729 1730 dev_dbg(cpsw->dev, "%s id:%u\n", __func__, id); 1731 1732 switch (id) { 1733 case CPSW_DL_PARAM_ALE_BYPASS: 1734 ctx->val.vbool = cpsw_ale_control_get(cpsw->ale, 0, ALE_BYPASS); 1735 break; 1736 default: 1737 return -EOPNOTSUPP; 1738 } 1739 1740 return 0; 1741 } 1742 1743 static int cpsw_dl_ale_ctrl_set(struct devlink *dl, u32 id, 1744 struct devlink_param_gset_ctx *ctx) 1745 { 1746 struct cpsw_devlink *dl_priv = devlink_priv(dl); 1747 struct cpsw_common *cpsw = dl_priv->cpsw; 1748 int ret = -EOPNOTSUPP; 1749 1750 dev_dbg(cpsw->dev, "%s id:%u\n", __func__, id); 1751 1752 switch (id) { 1753 case CPSW_DL_PARAM_ALE_BYPASS: 1754 ret = cpsw_ale_control_set(cpsw->ale, 0, ALE_BYPASS, 1755 ctx->val.vbool); 1756 if (!ret) { 1757 cpsw->ale_bypass = ctx->val.vbool; 1758 cpsw_port_offload_fwd_mark_update(cpsw); 1759 } 1760 break; 1761 default: 1762 return -EOPNOTSUPP; 1763 } 1764 1765 return 0; 1766 } 1767 1768 static const struct devlink_param cpsw_devlink_params[] = { 1769 DEVLINK_PARAM_DRIVER(CPSW_DL_PARAM_SWITCH_MODE, 1770 "switch_mode", DEVLINK_PARAM_TYPE_BOOL, 1771 BIT(DEVLINK_PARAM_CMODE_RUNTIME), 1772 cpsw_dl_switch_mode_get, cpsw_dl_switch_mode_set, 1773 NULL), 1774 DEVLINK_PARAM_DRIVER(CPSW_DL_PARAM_ALE_BYPASS, 1775 "ale_bypass", DEVLINK_PARAM_TYPE_BOOL, 1776 BIT(DEVLINK_PARAM_CMODE_RUNTIME), 1777 cpsw_dl_ale_ctrl_get, cpsw_dl_ale_ctrl_set, NULL), 1778 }; 1779 1780 static int cpsw_register_devlink(struct cpsw_common *cpsw) 1781 { 1782 struct device *dev = cpsw->dev; 1783 struct cpsw_devlink *dl_priv; 1784 int ret = 0; 1785 1786 cpsw->devlink = devlink_alloc(&cpsw_devlink_ops, sizeof(*dl_priv)); 1787 if (!cpsw->devlink) 1788 return -ENOMEM; 1789 1790 dl_priv = devlink_priv(cpsw->devlink); 1791 dl_priv->cpsw = cpsw; 1792 1793 ret = devlink_register(cpsw->devlink, dev); 1794 if (ret) { 1795 dev_err(dev, "DL reg fail ret:%d\n", ret); 1796 goto dl_free; 1797 } 1798 1799 ret = devlink_params_register(cpsw->devlink, cpsw_devlink_params, 1800 ARRAY_SIZE(cpsw_devlink_params)); 1801 if (ret) { 1802 dev_err(dev, "DL params reg fail ret:%d\n", ret); 1803 goto dl_unreg; 1804 } 1805 1806 devlink_params_publish(cpsw->devlink); 1807 return ret; 1808 1809 dl_unreg: 1810 devlink_unregister(cpsw->devlink); 1811 dl_free: 1812 devlink_free(cpsw->devlink); 1813 return ret; 1814 } 1815 1816 static void cpsw_unregister_devlink(struct cpsw_common *cpsw) 1817 { 1818 devlink_params_unpublish(cpsw->devlink); 1819 devlink_params_unregister(cpsw->devlink, cpsw_devlink_params, 1820 ARRAY_SIZE(cpsw_devlink_params)); 1821 devlink_unregister(cpsw->devlink); 1822 devlink_free(cpsw->devlink); 1823 } 1824 1825 static const struct of_device_id cpsw_of_mtable[] = { 1826 { .compatible = "ti,cpsw-switch"}, 1827 { .compatible = "ti,am335x-cpsw-switch"}, 1828 { .compatible = "ti,am4372-cpsw-switch"}, 1829 { .compatible = "ti,dra7-cpsw-switch"}, 1830 { /* sentinel */ }, 1831 }; 1832 MODULE_DEVICE_TABLE(of, cpsw_of_mtable); 1833 1834 static const struct soc_device_attribute cpsw_soc_devices[] = { 1835 { .family = "AM33xx", .revision = "ES1.0"}, 1836 { /* sentinel */ } 1837 }; 1838 1839 static int cpsw_probe(struct platform_device *pdev) 1840 { 1841 const struct soc_device_attribute *soc; 1842 struct device *dev = &pdev->dev; 1843 struct cpsw_common *cpsw; 1844 struct resource *ss_res; 1845 struct gpio_descs *mode; 1846 void __iomem *ss_regs; 1847 int ret = 0, ch; 1848 struct clk *clk; 1849 int irq; 1850 1851 cpsw = devm_kzalloc(dev, sizeof(struct cpsw_common), GFP_KERNEL); 1852 if (!cpsw) 1853 return -ENOMEM; 1854 1855 cpsw_slave_index = cpsw_slave_index_priv; 1856 1857 cpsw->dev = dev; 1858 1859 cpsw->slaves = devm_kcalloc(dev, 1860 CPSW_SLAVE_PORTS_NUM, 1861 sizeof(struct cpsw_slave), 1862 GFP_KERNEL); 1863 if (!cpsw->slaves) 1864 return -ENOMEM; 1865 1866 mode = devm_gpiod_get_array_optional(dev, "mode", GPIOD_OUT_LOW); 1867 if (IS_ERR(mode)) { 1868 ret = PTR_ERR(mode); 1869 dev_err(dev, "gpio request failed, ret %d\n", ret); 1870 return ret; 1871 } 1872 1873 clk = devm_clk_get(dev, "fck"); 1874 if (IS_ERR(clk)) { 1875 ret = PTR_ERR(clk); 1876 dev_err(dev, "fck is not found %d\n", ret); 1877 return ret; 1878 } 1879 cpsw->bus_freq_mhz = clk_get_rate(clk) / 1000000; 1880 1881 ss_res = platform_get_resource(pdev, IORESOURCE_MEM, 0); 1882 ss_regs = devm_ioremap_resource(dev, ss_res); 1883 if (IS_ERR(ss_regs)) { 1884 ret = PTR_ERR(ss_regs); 1885 return ret; 1886 } 1887 cpsw->regs = ss_regs; 1888 1889 irq = platform_get_irq_byname(pdev, "rx"); 1890 if (irq < 0) 1891 return irq; 1892 cpsw->irqs_table[0] = irq; 1893 1894 irq = platform_get_irq_byname(pdev, "tx"); 1895 if (irq < 0) 1896 return irq; 1897 cpsw->irqs_table[1] = irq; 1898 1899 platform_set_drvdata(pdev, cpsw); 1900 /* This may be required here for child devices. */ 1901 pm_runtime_enable(dev); 1902 1903 /* Need to enable clocks with runtime PM api to access module 1904 * registers 1905 */ 1906 ret = pm_runtime_get_sync(dev); 1907 if (ret < 0) { 1908 pm_runtime_put_noidle(dev); 1909 pm_runtime_disable(dev); 1910 return ret; 1911 } 1912 1913 ret = cpsw_probe_dt(cpsw); 1914 if (ret) 1915 goto clean_dt_ret; 1916 1917 soc = soc_device_match(cpsw_soc_devices); 1918 if (soc) 1919 cpsw->quirk_irq = 1; 1920 1921 cpsw->rx_packet_max = rx_packet_max; 1922 cpsw->descs_pool_size = descs_pool_size; 1923 eth_random_addr(cpsw->base_mac); 1924 1925 ret = cpsw_init_common(cpsw, ss_regs, ale_ageout, 1926 (u32 __force)ss_res->start + CPSW2_BD_OFFSET, 1927 descs_pool_size); 1928 if (ret) 1929 goto clean_dt_ret; 1930 1931 cpsw->wr_regs = cpsw->version == CPSW_VERSION_1 ? 1932 ss_regs + CPSW1_WR_OFFSET : 1933 ss_regs + CPSW2_WR_OFFSET; 1934 1935 ch = cpsw->quirk_irq ? 0 : 7; 1936 cpsw->txv[0].ch = cpdma_chan_create(cpsw->dma, ch, cpsw_tx_handler, 0); 1937 if (IS_ERR(cpsw->txv[0].ch)) { 1938 dev_err(dev, "error initializing tx dma channel\n"); 1939 ret = PTR_ERR(cpsw->txv[0].ch); 1940 goto clean_cpts; 1941 } 1942 1943 cpsw->rxv[0].ch = cpdma_chan_create(cpsw->dma, 0, cpsw_rx_handler, 1); 1944 if (IS_ERR(cpsw->rxv[0].ch)) { 1945 dev_err(dev, "error initializing rx dma channel\n"); 1946 ret = PTR_ERR(cpsw->rxv[0].ch); 1947 goto clean_cpts; 1948 } 1949 cpsw_split_res(cpsw); 1950 1951 /* setup netdevs */ 1952 ret = cpsw_create_ports(cpsw); 1953 if (ret) 1954 goto clean_unregister_netdev; 1955 1956 /* Grab RX and TX IRQs. Note that we also have RX_THRESHOLD and 1957 * MISC IRQs which are always kept disabled with this driver so 1958 * we will not request them. 1959 * 1960 * If anyone wants to implement support for those, make sure to 1961 * first request and append them to irqs_table array. 1962 */ 1963 1964 ret = devm_request_irq(dev, cpsw->irqs_table[0], cpsw_rx_interrupt, 1965 0, dev_name(dev), cpsw); 1966 if (ret < 0) { 1967 dev_err(dev, "error attaching irq (%d)\n", ret); 1968 goto clean_unregister_netdev; 1969 } 1970 1971 ret = devm_request_irq(dev, cpsw->irqs_table[1], cpsw_tx_interrupt, 1972 0, dev_name(dev), cpsw); 1973 if (ret < 0) { 1974 dev_err(dev, "error attaching irq (%d)\n", ret); 1975 goto clean_unregister_netdev; 1976 } 1977 1978 ret = cpsw_register_notifiers(cpsw); 1979 if (ret) 1980 goto clean_unregister_netdev; 1981 1982 ret = cpsw_register_devlink(cpsw); 1983 if (ret) 1984 goto clean_unregister_notifiers; 1985 1986 ret = cpsw_register_ports(cpsw); 1987 if (ret) 1988 goto clean_unregister_notifiers; 1989 1990 dev_notice(dev, "initialized (regs %pa, pool size %d) hw_ver:%08X %d.%d (%d)\n", 1991 &ss_res->start, descs_pool_size, 1992 cpsw->version, CPSW_MAJOR_VERSION(cpsw->version), 1993 CPSW_MINOR_VERSION(cpsw->version), 1994 CPSW_RTL_VERSION(cpsw->version)); 1995 1996 pm_runtime_put(dev); 1997 1998 return 0; 1999 2000 clean_unregister_notifiers: 2001 cpsw_unregister_notifiers(cpsw); 2002 clean_unregister_netdev: 2003 cpsw_unregister_ports(cpsw); 2004 clean_cpts: 2005 cpts_release(cpsw->cpts); 2006 cpdma_ctlr_destroy(cpsw->dma); 2007 clean_dt_ret: 2008 cpsw_remove_dt(cpsw); 2009 pm_runtime_put_sync(dev); 2010 pm_runtime_disable(dev); 2011 return ret; 2012 } 2013 2014 static int cpsw_remove(struct platform_device *pdev) 2015 { 2016 struct cpsw_common *cpsw = platform_get_drvdata(pdev); 2017 int ret; 2018 2019 ret = pm_runtime_get_sync(&pdev->dev); 2020 if (ret < 0) { 2021 pm_runtime_put_noidle(&pdev->dev); 2022 return ret; 2023 } 2024 2025 cpsw_unregister_notifiers(cpsw); 2026 cpsw_unregister_devlink(cpsw); 2027 cpsw_unregister_ports(cpsw); 2028 2029 cpts_release(cpsw->cpts); 2030 cpdma_ctlr_destroy(cpsw->dma); 2031 cpsw_remove_dt(cpsw); 2032 pm_runtime_put_sync(&pdev->dev); 2033 pm_runtime_disable(&pdev->dev); 2034 return 0; 2035 } 2036 2037 static struct platform_driver cpsw_driver = { 2038 .driver = { 2039 .name = "cpsw-switch", 2040 .of_match_table = cpsw_of_mtable, 2041 }, 2042 .probe = cpsw_probe, 2043 .remove = cpsw_remove, 2044 }; 2045 2046 module_platform_driver(cpsw_driver); 2047 2048 MODULE_LICENSE("GPL"); 2049 MODULE_DESCRIPTION("TI CPSW switchdev Ethernet driver"); 2050