1 // SPDX-License-Identifier: BSD-3-Clause OR GPL-2.0-or-later 2 /* 3 * Copyright 2008 - 2016 Freescale Semiconductor Inc. 4 * Copyright 2020 NXP 5 */ 6 7 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt 8 9 #include <linux/init.h> 10 #include <linux/mod_devicetable.h> 11 #include <linux/module.h> 12 #include <linux/of_mdio.h> 13 #include <linux/of_net.h> 14 #include <linux/io.h> 15 #include <linux/if_arp.h> 16 #include <linux/if_vlan.h> 17 #include <linux/icmp.h> 18 #include <linux/ip.h> 19 #include <linux/ipv6.h> 20 #include <linux/platform_device.h> 21 #include <linux/udp.h> 22 #include <linux/tcp.h> 23 #include <linux/net.h> 24 #include <linux/skbuff.h> 25 #include <linux/etherdevice.h> 26 #include <linux/if_ether.h> 27 #include <linux/highmem.h> 28 #include <linux/percpu.h> 29 #include <linux/dma-mapping.h> 30 #include <linux/sort.h> 31 #include <linux/phy_fixed.h> 32 #include <linux/bpf.h> 33 #include <linux/bpf_trace.h> 34 #include <soc/fsl/bman.h> 35 #include <soc/fsl/qman.h> 36 #include "fman.h" 37 #include "fman_port.h" 38 #include "mac.h" 39 #include "dpaa_eth.h" 40 41 /* CREATE_TRACE_POINTS only needs to be defined once. Other dpaa files 42 * using trace events only need to #include <trace/events/sched.h> 43 */ 44 #define CREATE_TRACE_POINTS 45 #include "dpaa_eth_trace.h" 46 47 static int debug = -1; 48 module_param(debug, int, 0444); 49 MODULE_PARM_DESC(debug, "Module/Driver verbosity level (0=none,...,16=all)"); 50 51 static u16 tx_timeout = 1000; 52 module_param(tx_timeout, ushort, 0444); 53 MODULE_PARM_DESC(tx_timeout, "The Tx timeout in ms"); 54 55 #define FM_FD_STAT_RX_ERRORS \ 56 (FM_FD_ERR_DMA | FM_FD_ERR_PHYSICAL | \ 57 FM_FD_ERR_SIZE | FM_FD_ERR_CLS_DISCARD | \ 58 FM_FD_ERR_EXTRACTION | FM_FD_ERR_NO_SCHEME | \ 59 FM_FD_ERR_PRS_TIMEOUT | FM_FD_ERR_PRS_ILL_INSTRUCT | \ 60 FM_FD_ERR_PRS_HDR_ERR) 61 62 #define FM_FD_STAT_TX_ERRORS \ 63 (FM_FD_ERR_UNSUPPORTED_FORMAT | \ 64 FM_FD_ERR_LENGTH | FM_FD_ERR_DMA) 65 66 #define DPAA_MSG_DEFAULT (NETIF_MSG_DRV | NETIF_MSG_PROBE | \ 67 NETIF_MSG_LINK | NETIF_MSG_IFUP | \ 68 NETIF_MSG_IFDOWN | NETIF_MSG_HW) 69 70 #define DPAA_INGRESS_CS_THRESHOLD 0x10000000 71 /* Ingress congestion threshold on FMan ports 72 * The size in bytes of the ingress tail-drop threshold on FMan ports. 73 * Traffic piling up above this value will be rejected by QMan and discarded 74 * by FMan. 75 */ 76 77 /* Size in bytes of the FQ taildrop threshold */ 78 #define DPAA_FQ_TD 0x200000 79 80 #define DPAA_CS_THRESHOLD_1G 0x06000000 81 /* Egress congestion threshold on 1G ports, range 0x1000 .. 0x10000000 82 * The size in bytes of the egress Congestion State notification threshold on 83 * 1G ports. The 1G dTSECs can quite easily be flooded by cores doing Tx in a 84 * tight loop (e.g. by sending UDP datagrams at "while(1) speed"), 85 * and the larger the frame size, the more acute the problem. 86 * So we have to find a balance between these factors: 87 * - avoiding the device staying congested for a prolonged time (risking 88 * the netdev watchdog to fire - see also the tx_timeout module param); 89 * - affecting performance of protocols such as TCP, which otherwise 90 * behave well under the congestion notification mechanism; 91 * - preventing the Tx cores from tightly-looping (as if the congestion 92 * threshold was too low to be effective); 93 * - running out of memory if the CS threshold is set too high. 94 */ 95 96 #define DPAA_CS_THRESHOLD_10G 0x10000000 97 /* The size in bytes of the egress Congestion State notification threshold on 98 * 10G ports, range 0x1000 .. 0x10000000 99 */ 100 101 /* Largest value that the FQD's OAL field can hold */ 102 #define FSL_QMAN_MAX_OAL 127 103 104 /* Default alignment for start of data in an Rx FD */ 105 #ifdef CONFIG_DPAA_ERRATUM_A050385 106 /* aligning data start to 64 avoids DMA transaction splits, unless the buffer 107 * is crossing a 4k page boundary 108 */ 109 #define DPAA_FD_DATA_ALIGNMENT (fman_has_errata_a050385() ? 64 : 16) 110 /* aligning to 256 avoids DMA transaction splits caused by 4k page boundary 111 * crossings; also, all SG fragments except the last must have a size multiple 112 * of 256 to avoid DMA transaction splits 113 */ 114 #define DPAA_A050385_ALIGN 256 115 #define DPAA_FD_RX_DATA_ALIGNMENT (fman_has_errata_a050385() ? \ 116 DPAA_A050385_ALIGN : 16) 117 #else 118 #define DPAA_FD_DATA_ALIGNMENT 16 119 #define DPAA_FD_RX_DATA_ALIGNMENT DPAA_FD_DATA_ALIGNMENT 120 #endif 121 122 /* The DPAA requires 256 bytes reserved and mapped for the SGT */ 123 #define DPAA_SGT_SIZE 256 124 125 /* Values for the L3R field of the FM Parse Results 126 */ 127 /* L3 Type field: First IP Present IPv4 */ 128 #define FM_L3_PARSE_RESULT_IPV4 0x8000 129 /* L3 Type field: First IP Present IPv6 */ 130 #define FM_L3_PARSE_RESULT_IPV6 0x4000 131 /* Values for the L4R field of the FM Parse Results */ 132 /* L4 Type field: UDP */ 133 #define FM_L4_PARSE_RESULT_UDP 0x40 134 /* L4 Type field: TCP */ 135 #define FM_L4_PARSE_RESULT_TCP 0x20 136 137 /* FD status field indicating whether the FM Parser has attempted to validate 138 * the L4 csum of the frame. 139 * Note that having this bit set doesn't necessarily imply that the checksum 140 * is valid. One would have to check the parse results to find that out. 141 */ 142 #define FM_FD_STAT_L4CV 0x00000004 143 144 #define DPAA_SGT_MAX_ENTRIES 16 /* maximum number of entries in SG Table */ 145 #define DPAA_BUFF_RELEASE_MAX 8 /* maximum number of buffers released at once */ 146 147 #define FSL_DPAA_BPID_INV 0xff 148 #define FSL_DPAA_ETH_MAX_BUF_COUNT 128 149 #define FSL_DPAA_ETH_REFILL_THRESHOLD 80 150 151 #define DPAA_TX_PRIV_DATA_SIZE 16 152 #define DPAA_PARSE_RESULTS_SIZE sizeof(struct fman_prs_result) 153 #define DPAA_TIME_STAMP_SIZE 8 154 #define DPAA_HASH_RESULTS_SIZE 8 155 #define DPAA_HWA_SIZE (DPAA_PARSE_RESULTS_SIZE + DPAA_TIME_STAMP_SIZE \ 156 + DPAA_HASH_RESULTS_SIZE) 157 #define DPAA_RX_PRIV_DATA_DEFAULT_SIZE (DPAA_TX_PRIV_DATA_SIZE + \ 158 XDP_PACKET_HEADROOM - DPAA_HWA_SIZE) 159 #ifdef CONFIG_DPAA_ERRATUM_A050385 160 #define DPAA_RX_PRIV_DATA_A050385_SIZE (DPAA_A050385_ALIGN - DPAA_HWA_SIZE) 161 #define DPAA_RX_PRIV_DATA_SIZE (fman_has_errata_a050385() ? \ 162 DPAA_RX_PRIV_DATA_A050385_SIZE : \ 163 DPAA_RX_PRIV_DATA_DEFAULT_SIZE) 164 #else 165 #define DPAA_RX_PRIV_DATA_SIZE DPAA_RX_PRIV_DATA_DEFAULT_SIZE 166 #endif 167 168 #define DPAA_ETH_PCD_RXQ_NUM 128 169 170 #define DPAA_ENQUEUE_RETRIES 100000 171 172 enum port_type {RX, TX}; 173 174 struct fm_port_fqs { 175 struct dpaa_fq *tx_defq; 176 struct dpaa_fq *tx_errq; 177 struct dpaa_fq *rx_defq; 178 struct dpaa_fq *rx_errq; 179 struct dpaa_fq *rx_pcdq; 180 }; 181 182 /* All the dpa bps in use at any moment */ 183 static struct dpaa_bp *dpaa_bp_array[BM_MAX_NUM_OF_POOLS]; 184 185 #define DPAA_BP_RAW_SIZE 4096 186 187 #ifdef CONFIG_DPAA_ERRATUM_A050385 188 #define dpaa_bp_size(raw_size) (SKB_WITH_OVERHEAD(raw_size) & \ 189 ~(DPAA_A050385_ALIGN - 1)) 190 #else 191 #define dpaa_bp_size(raw_size) SKB_WITH_OVERHEAD(raw_size) 192 #endif 193 194 static int dpaa_max_frm; 195 196 static int dpaa_rx_extra_headroom; 197 198 #define dpaa_get_max_mtu() \ 199 (dpaa_max_frm - (VLAN_ETH_HLEN + ETH_FCS_LEN)) 200 201 static void dpaa_eth_cgr_set_speed(struct mac_device *mac_dev, int speed); 202 203 static int dpaa_netdev_init(struct net_device *net_dev, 204 const struct net_device_ops *dpaa_ops, 205 u16 tx_timeout) 206 { 207 struct dpaa_priv *priv = netdev_priv(net_dev); 208 struct device *dev = net_dev->dev.parent; 209 struct mac_device *mac_dev = priv->mac_dev; 210 struct dpaa_percpu_priv *percpu_priv; 211 const u8 *mac_addr; 212 int i, err; 213 214 /* Although we access another CPU's private data here 215 * we do it at initialization so it is safe 216 */ 217 for_each_possible_cpu(i) { 218 percpu_priv = per_cpu_ptr(priv->percpu_priv, i); 219 percpu_priv->net_dev = net_dev; 220 } 221 222 net_dev->netdev_ops = dpaa_ops; 223 mac_addr = mac_dev->addr; 224 225 net_dev->mem_start = (unsigned long)priv->mac_dev->res->start; 226 net_dev->mem_end = (unsigned long)priv->mac_dev->res->end; 227 228 net_dev->min_mtu = ETH_MIN_MTU; 229 net_dev->max_mtu = dpaa_get_max_mtu(); 230 231 net_dev->hw_features |= (NETIF_F_IP_CSUM | NETIF_F_IPV6_CSUM | 232 NETIF_F_RXHASH); 233 234 net_dev->hw_features |= NETIF_F_SG | NETIF_F_HIGHDMA; 235 /* The kernels enables GSO automatically, if we declare NETIF_F_SG. 236 * For conformity, we'll still declare GSO explicitly. 237 */ 238 net_dev->features |= NETIF_F_GSO; 239 net_dev->features |= NETIF_F_RXCSUM; 240 241 net_dev->priv_flags |= IFF_LIVE_ADDR_CHANGE; 242 net_dev->lltx = true; 243 /* we do not want shared skbs on TX */ 244 net_dev->priv_flags &= ~IFF_TX_SKB_SHARING; 245 246 net_dev->features |= net_dev->hw_features; 247 net_dev->vlan_features = net_dev->features; 248 249 net_dev->xdp_features = NETDEV_XDP_ACT_BASIC | 250 NETDEV_XDP_ACT_REDIRECT | 251 NETDEV_XDP_ACT_NDO_XMIT; 252 253 if (is_valid_ether_addr(mac_addr)) { 254 memcpy(net_dev->perm_addr, mac_addr, net_dev->addr_len); 255 eth_hw_addr_set(net_dev, mac_addr); 256 } else { 257 eth_hw_addr_random(net_dev); 258 err = mac_dev->change_addr(mac_dev->fman_mac, 259 (const enet_addr_t *)net_dev->dev_addr); 260 if (err) { 261 dev_err(dev, "Failed to set random MAC address\n"); 262 return -EINVAL; 263 } 264 dev_info(dev, "Using random MAC address: %pM\n", 265 net_dev->dev_addr); 266 } 267 268 net_dev->ethtool_ops = &dpaa_ethtool_ops; 269 270 net_dev->needed_headroom = priv->tx_headroom; 271 net_dev->watchdog_timeo = msecs_to_jiffies(tx_timeout); 272 273 /* The rest of the config is filled in by the mac device already */ 274 mac_dev->phylink_config.dev = &net_dev->dev; 275 mac_dev->phylink_config.type = PHYLINK_NETDEV; 276 mac_dev->update_speed = dpaa_eth_cgr_set_speed; 277 mac_dev->phylink = phylink_create(&mac_dev->phylink_config, 278 dev_fwnode(mac_dev->dev), 279 mac_dev->phy_if, 280 mac_dev->phylink_ops); 281 if (IS_ERR(mac_dev->phylink)) { 282 err = PTR_ERR(mac_dev->phylink); 283 dev_err_probe(dev, err, "Could not create phylink\n"); 284 return err; 285 } 286 287 /* start without the RUNNING flag, phylib controls it later */ 288 netif_carrier_off(net_dev); 289 290 err = register_netdev(net_dev); 291 if (err < 0) { 292 dev_err(dev, "register_netdev() = %d\n", err); 293 phylink_destroy(mac_dev->phylink); 294 return err; 295 } 296 297 return 0; 298 } 299 300 static int dpaa_stop(struct net_device *net_dev) 301 { 302 struct mac_device *mac_dev; 303 struct dpaa_priv *priv; 304 int i, error; 305 int err = 0; 306 307 priv = netdev_priv(net_dev); 308 mac_dev = priv->mac_dev; 309 310 netif_tx_stop_all_queues(net_dev); 311 /* Allow the Fman (Tx) port to process in-flight frames before we 312 * try switching it off. 313 */ 314 msleep(200); 315 316 phylink_stop(mac_dev->phylink); 317 mac_dev->disable(mac_dev->fman_mac); 318 319 for (i = 0; i < ARRAY_SIZE(mac_dev->port); i++) { 320 error = fman_port_disable(mac_dev->port[i]); 321 if (error) 322 err = error; 323 } 324 325 phylink_disconnect_phy(mac_dev->phylink); 326 net_dev->phydev = NULL; 327 328 msleep(200); 329 330 return err; 331 } 332 333 static void dpaa_tx_timeout(struct net_device *net_dev, unsigned int txqueue) 334 { 335 struct dpaa_percpu_priv *percpu_priv; 336 const struct dpaa_priv *priv; 337 338 priv = netdev_priv(net_dev); 339 percpu_priv = this_cpu_ptr(priv->percpu_priv); 340 341 netif_crit(priv, timer, net_dev, "Transmit timeout latency: %u ms\n", 342 jiffies_to_msecs(jiffies - dev_trans_start(net_dev))); 343 344 percpu_priv->stats.tx_errors++; 345 } 346 347 /* Calculates the statistics for the given device by adding the statistics 348 * collected by each CPU. 349 */ 350 static void dpaa_get_stats64(struct net_device *net_dev, 351 struct rtnl_link_stats64 *s) 352 { 353 int numstats = sizeof(struct rtnl_link_stats64) / sizeof(u64); 354 struct dpaa_priv *priv = netdev_priv(net_dev); 355 struct dpaa_percpu_priv *percpu_priv; 356 u64 *netstats = (u64 *)s; 357 u64 *cpustats; 358 int i, j; 359 360 for_each_possible_cpu(i) { 361 percpu_priv = per_cpu_ptr(priv->percpu_priv, i); 362 363 cpustats = (u64 *)&percpu_priv->stats; 364 365 /* add stats from all CPUs */ 366 for (j = 0; j < numstats; j++) 367 netstats[j] += cpustats[j]; 368 } 369 } 370 371 static int dpaa_setup_tc(struct net_device *net_dev, enum tc_setup_type type, 372 void *type_data) 373 { 374 struct dpaa_priv *priv = netdev_priv(net_dev); 375 int num_txqs_per_tc = dpaa_num_txqs_per_tc(); 376 struct tc_mqprio_qopt *mqprio = type_data; 377 u8 num_tc; 378 int i; 379 380 if (type != TC_SETUP_QDISC_MQPRIO) 381 return -EOPNOTSUPP; 382 383 mqprio->hw = TC_MQPRIO_HW_OFFLOAD_TCS; 384 num_tc = mqprio->num_tc; 385 386 if (num_tc == priv->num_tc) 387 return 0; 388 389 if (!num_tc) { 390 netdev_reset_tc(net_dev); 391 goto out; 392 } 393 394 if (num_tc > DPAA_TC_NUM) { 395 netdev_err(net_dev, "Too many traffic classes: max %d supported.\n", 396 DPAA_TC_NUM); 397 return -EINVAL; 398 } 399 400 netdev_set_num_tc(net_dev, num_tc); 401 402 for (i = 0; i < num_tc; i++) 403 netdev_set_tc_queue(net_dev, i, num_txqs_per_tc, 404 i * num_txqs_per_tc); 405 406 out: 407 priv->num_tc = num_tc ? : 1; 408 netif_set_real_num_tx_queues(net_dev, priv->num_tc * num_txqs_per_tc); 409 return 0; 410 } 411 412 static struct mac_device *dpaa_mac_dev_get(struct platform_device *pdev) 413 { 414 struct dpaa_eth_data *eth_data; 415 struct device *dpaa_dev; 416 struct mac_device *mac_dev; 417 418 dpaa_dev = &pdev->dev; 419 eth_data = dpaa_dev->platform_data; 420 if (!eth_data) { 421 dev_err(dpaa_dev, "eth_data missing\n"); 422 return ERR_PTR(-ENODEV); 423 } 424 mac_dev = eth_data->mac_dev; 425 if (!mac_dev) { 426 dev_err(dpaa_dev, "mac_dev missing\n"); 427 return ERR_PTR(-EINVAL); 428 } 429 430 return mac_dev; 431 } 432 433 static int dpaa_set_mac_address(struct net_device *net_dev, void *addr) 434 { 435 const struct dpaa_priv *priv; 436 struct mac_device *mac_dev; 437 struct sockaddr old_addr; 438 int err; 439 440 priv = netdev_priv(net_dev); 441 442 memcpy(old_addr.sa_data, net_dev->dev_addr, ETH_ALEN); 443 444 err = eth_mac_addr(net_dev, addr); 445 if (err < 0) { 446 netif_err(priv, drv, net_dev, "eth_mac_addr() = %d\n", err); 447 return err; 448 } 449 450 mac_dev = priv->mac_dev; 451 452 err = mac_dev->change_addr(mac_dev->fman_mac, 453 (const enet_addr_t *)net_dev->dev_addr); 454 if (err < 0) { 455 netif_err(priv, drv, net_dev, "mac_dev->change_addr() = %d\n", 456 err); 457 /* reverting to previous address */ 458 eth_mac_addr(net_dev, &old_addr); 459 460 return err; 461 } 462 463 return 0; 464 } 465 466 static int dpaa_addr_sync(struct net_device *net_dev, const u8 *addr) 467 { 468 const struct dpaa_priv *priv = netdev_priv(net_dev); 469 470 return priv->mac_dev->add_hash_mac_addr(priv->mac_dev->fman_mac, 471 (enet_addr_t *)addr); 472 } 473 474 static int dpaa_addr_unsync(struct net_device *net_dev, const u8 *addr) 475 { 476 const struct dpaa_priv *priv = netdev_priv(net_dev); 477 478 return priv->mac_dev->remove_hash_mac_addr(priv->mac_dev->fman_mac, 479 (enet_addr_t *)addr); 480 } 481 482 static void dpaa_set_rx_mode(struct net_device *net_dev) 483 { 484 const struct dpaa_priv *priv; 485 int err; 486 487 priv = netdev_priv(net_dev); 488 489 if (!!(net_dev->flags & IFF_PROMISC) != priv->mac_dev->promisc) { 490 priv->mac_dev->promisc = !priv->mac_dev->promisc; 491 err = priv->mac_dev->set_promisc(priv->mac_dev->fman_mac, 492 priv->mac_dev->promisc); 493 if (err < 0) 494 netif_err(priv, drv, net_dev, 495 "mac_dev->set_promisc() = %d\n", 496 err); 497 } 498 499 if (!!(net_dev->flags & IFF_ALLMULTI) != priv->mac_dev->allmulti) { 500 priv->mac_dev->allmulti = !priv->mac_dev->allmulti; 501 err = priv->mac_dev->set_allmulti(priv->mac_dev->fman_mac, 502 priv->mac_dev->allmulti); 503 if (err < 0) 504 netif_err(priv, drv, net_dev, 505 "mac_dev->set_allmulti() = %d\n", 506 err); 507 } 508 509 err = __dev_mc_sync(net_dev, dpaa_addr_sync, dpaa_addr_unsync); 510 if (err < 0) 511 netif_err(priv, drv, net_dev, "dpaa_addr_sync() = %d\n", 512 err); 513 } 514 515 static struct dpaa_bp *dpaa_bpid2pool(int bpid) 516 { 517 if (WARN_ON(bpid < 0 || bpid >= BM_MAX_NUM_OF_POOLS)) 518 return NULL; 519 520 return dpaa_bp_array[bpid]; 521 } 522 523 /* checks if this bpool is already allocated */ 524 static bool dpaa_bpid2pool_use(int bpid) 525 { 526 if (dpaa_bpid2pool(bpid)) { 527 refcount_inc(&dpaa_bp_array[bpid]->refs); 528 return true; 529 } 530 531 return false; 532 } 533 534 /* called only once per bpid by dpaa_bp_alloc_pool() */ 535 static void dpaa_bpid2pool_map(int bpid, struct dpaa_bp *dpaa_bp) 536 { 537 dpaa_bp_array[bpid] = dpaa_bp; 538 refcount_set(&dpaa_bp->refs, 1); 539 } 540 541 static int dpaa_bp_alloc_pool(struct dpaa_bp *dpaa_bp) 542 { 543 int err; 544 545 if (dpaa_bp->size == 0 || dpaa_bp->config_count == 0) { 546 pr_err("%s: Buffer pool is not properly initialized! Missing size or initial number of buffers\n", 547 __func__); 548 return -EINVAL; 549 } 550 551 /* If the pool is already specified, we only create one per bpid */ 552 if (dpaa_bp->bpid != FSL_DPAA_BPID_INV && 553 dpaa_bpid2pool_use(dpaa_bp->bpid)) 554 return 0; 555 556 if (dpaa_bp->bpid == FSL_DPAA_BPID_INV) { 557 dpaa_bp->pool = bman_new_pool(); 558 if (!dpaa_bp->pool) { 559 pr_err("%s: bman_new_pool() failed\n", 560 __func__); 561 return -ENODEV; 562 } 563 564 dpaa_bp->bpid = (u8)bman_get_bpid(dpaa_bp->pool); 565 } 566 567 if (dpaa_bp->seed_cb) { 568 err = dpaa_bp->seed_cb(dpaa_bp); 569 if (err) 570 goto pool_seed_failed; 571 } 572 573 dpaa_bpid2pool_map(dpaa_bp->bpid, dpaa_bp); 574 575 return 0; 576 577 pool_seed_failed: 578 pr_err("%s: pool seeding failed\n", __func__); 579 bman_free_pool(dpaa_bp->pool); 580 581 return err; 582 } 583 584 /* remove and free all the buffers from the given buffer pool */ 585 static void dpaa_bp_drain(struct dpaa_bp *bp) 586 { 587 u8 num = 8; 588 int ret; 589 590 do { 591 struct bm_buffer bmb[8]; 592 int i; 593 594 ret = bman_acquire(bp->pool, bmb, num); 595 if (ret < 0) { 596 if (num == 8) { 597 /* we have less than 8 buffers left; 598 * drain them one by one 599 */ 600 num = 1; 601 ret = 1; 602 continue; 603 } else { 604 /* Pool is fully drained */ 605 break; 606 } 607 } 608 609 if (bp->free_buf_cb) 610 for (i = 0; i < num; i++) 611 bp->free_buf_cb(bp, &bmb[i]); 612 } while (ret > 0); 613 } 614 615 static void dpaa_bp_free(struct dpaa_bp *dpaa_bp) 616 { 617 struct dpaa_bp *bp = dpaa_bpid2pool(dpaa_bp->bpid); 618 619 /* the mapping between bpid and dpaa_bp is done very late in the 620 * allocation procedure; if something failed before the mapping, the bp 621 * was not configured, therefore we don't need the below instructions 622 */ 623 if (!bp) 624 return; 625 626 if (!refcount_dec_and_test(&bp->refs)) 627 return; 628 629 if (bp->free_buf_cb) 630 dpaa_bp_drain(bp); 631 632 dpaa_bp_array[bp->bpid] = NULL; 633 bman_free_pool(bp->pool); 634 } 635 636 static void dpaa_bps_free(struct dpaa_priv *priv) 637 { 638 dpaa_bp_free(priv->dpaa_bp); 639 } 640 641 /* Use multiple WQs for FQ assignment: 642 * - Tx Confirmation queues go to WQ1. 643 * - Rx Error and Tx Error queues go to WQ5 (giving them a better chance 644 * to be scheduled, in case there are many more FQs in WQ6). 645 * - Rx Default goes to WQ6. 646 * - Tx queues go to different WQs depending on their priority. Equal 647 * chunks of NR_CPUS queues go to WQ6 (lowest priority), WQ2, WQ1 and 648 * WQ0 (highest priority). 649 * This ensures that Tx-confirmed buffers are timely released. In particular, 650 * it avoids congestion on the Tx Confirm FQs, which can pile up PFDRs if they 651 * are greatly outnumbered by other FQs in the system, while 652 * dequeue scheduling is round-robin. 653 */ 654 static inline void dpaa_assign_wq(struct dpaa_fq *fq, int idx) 655 { 656 switch (fq->fq_type) { 657 case FQ_TYPE_TX_CONFIRM: 658 case FQ_TYPE_TX_CONF_MQ: 659 fq->wq = 1; 660 break; 661 case FQ_TYPE_RX_ERROR: 662 case FQ_TYPE_TX_ERROR: 663 fq->wq = 5; 664 break; 665 case FQ_TYPE_RX_DEFAULT: 666 case FQ_TYPE_RX_PCD: 667 fq->wq = 6; 668 break; 669 case FQ_TYPE_TX: 670 switch (idx / dpaa_num_txqs_per_tc()) { 671 case 0: 672 /* Low priority (best effort) */ 673 fq->wq = 6; 674 break; 675 case 1: 676 /* Medium priority */ 677 fq->wq = 2; 678 break; 679 case 2: 680 /* High priority */ 681 fq->wq = 1; 682 break; 683 case 3: 684 /* Very high priority */ 685 fq->wq = 0; 686 break; 687 default: 688 WARN(1, "Too many TX FQs: more than %zu!\n", 689 dpaa_max_num_txqs()); 690 } 691 break; 692 default: 693 WARN(1, "Invalid FQ type %d for FQID %d!\n", 694 fq->fq_type, fq->fqid); 695 } 696 } 697 698 static struct dpaa_fq *dpaa_fq_alloc(struct device *dev, 699 u32 start, u32 count, 700 struct list_head *list, 701 enum dpaa_fq_type fq_type) 702 { 703 struct dpaa_fq *dpaa_fq; 704 int i; 705 706 dpaa_fq = devm_kcalloc(dev, count, sizeof(*dpaa_fq), 707 GFP_KERNEL); 708 if (!dpaa_fq) 709 return NULL; 710 711 for (i = 0; i < count; i++) { 712 dpaa_fq[i].fq_type = fq_type; 713 dpaa_fq[i].fqid = start ? start + i : 0; 714 list_add_tail(&dpaa_fq[i].list, list); 715 } 716 717 for (i = 0; i < count; i++) 718 dpaa_assign_wq(dpaa_fq + i, i); 719 720 return dpaa_fq; 721 } 722 723 static int dpaa_alloc_all_fqs(struct device *dev, struct list_head *list, 724 struct fm_port_fqs *port_fqs) 725 { 726 struct dpaa_fq *dpaa_fq; 727 u32 fq_base, fq_base_aligned, i; 728 729 dpaa_fq = dpaa_fq_alloc(dev, 0, 1, list, FQ_TYPE_RX_ERROR); 730 if (!dpaa_fq) 731 goto fq_alloc_failed; 732 733 port_fqs->rx_errq = &dpaa_fq[0]; 734 735 dpaa_fq = dpaa_fq_alloc(dev, 0, 1, list, FQ_TYPE_RX_DEFAULT); 736 if (!dpaa_fq) 737 goto fq_alloc_failed; 738 739 port_fqs->rx_defq = &dpaa_fq[0]; 740 741 /* the PCD FQIDs range needs to be aligned for correct operation */ 742 if (qman_alloc_fqid_range(&fq_base, 2 * DPAA_ETH_PCD_RXQ_NUM)) 743 goto fq_alloc_failed; 744 745 fq_base_aligned = ALIGN(fq_base, DPAA_ETH_PCD_RXQ_NUM); 746 747 for (i = fq_base; i < fq_base_aligned; i++) 748 qman_release_fqid(i); 749 750 for (i = fq_base_aligned + DPAA_ETH_PCD_RXQ_NUM; 751 i < (fq_base + 2 * DPAA_ETH_PCD_RXQ_NUM); i++) 752 qman_release_fqid(i); 753 754 dpaa_fq = dpaa_fq_alloc(dev, fq_base_aligned, DPAA_ETH_PCD_RXQ_NUM, 755 list, FQ_TYPE_RX_PCD); 756 if (!dpaa_fq) 757 goto fq_alloc_failed; 758 759 port_fqs->rx_pcdq = &dpaa_fq[0]; 760 761 if (!dpaa_fq_alloc(dev, 0, dpaa_max_num_txqs(), list, 762 FQ_TYPE_TX_CONF_MQ)) 763 goto fq_alloc_failed; 764 765 dpaa_fq = dpaa_fq_alloc(dev, 0, 1, list, FQ_TYPE_TX_ERROR); 766 if (!dpaa_fq) 767 goto fq_alloc_failed; 768 769 port_fqs->tx_errq = &dpaa_fq[0]; 770 771 dpaa_fq = dpaa_fq_alloc(dev, 0, 1, list, FQ_TYPE_TX_CONFIRM); 772 if (!dpaa_fq) 773 goto fq_alloc_failed; 774 775 port_fqs->tx_defq = &dpaa_fq[0]; 776 777 if (!dpaa_fq_alloc(dev, 0, dpaa_max_num_txqs(), list, FQ_TYPE_TX)) 778 goto fq_alloc_failed; 779 780 return 0; 781 782 fq_alloc_failed: 783 dev_err(dev, "dpaa_fq_alloc() failed\n"); 784 return -ENOMEM; 785 } 786 787 static u32 rx_pool_channel; 788 static DEFINE_SPINLOCK(rx_pool_channel_init); 789 790 static int dpaa_get_channel(void) 791 { 792 spin_lock(&rx_pool_channel_init); 793 if (!rx_pool_channel) { 794 u32 pool; 795 int ret; 796 797 ret = qman_alloc_pool(&pool); 798 799 if (!ret) 800 rx_pool_channel = pool; 801 } 802 spin_unlock(&rx_pool_channel_init); 803 if (!rx_pool_channel) 804 return -ENOMEM; 805 return rx_pool_channel; 806 } 807 808 static void dpaa_release_channel(void) 809 { 810 qman_release_pool(rx_pool_channel); 811 } 812 813 static void dpaa_eth_add_channel(u16 channel, struct device *dev) 814 { 815 u32 pool = QM_SDQCR_CHANNELS_POOL_CONV(channel); 816 const cpumask_t *cpus = qman_affine_cpus(); 817 struct qman_portal *portal; 818 int cpu; 819 820 for_each_cpu_and(cpu, cpus, cpu_online_mask) { 821 portal = qman_get_affine_portal(cpu); 822 qman_p_static_dequeue_add(portal, pool); 823 qman_start_using_portal(portal, dev); 824 } 825 } 826 827 /* Congestion group state change notification callback. 828 * Stops the device's egress queues while they are congested and 829 * wakes them upon exiting congested state. 830 * Also updates some CGR-related stats. 831 */ 832 static void dpaa_eth_cgscn(struct qman_portal *qm, struct qman_cgr *cgr, 833 int congested) 834 { 835 struct dpaa_priv *priv = (struct dpaa_priv *)container_of(cgr, 836 struct dpaa_priv, cgr_data.cgr); 837 838 if (congested) { 839 priv->cgr_data.congestion_start_jiffies = jiffies; 840 netif_tx_stop_all_queues(priv->net_dev); 841 priv->cgr_data.cgr_congested_count++; 842 } else { 843 priv->cgr_data.congested_jiffies += 844 (jiffies - priv->cgr_data.congestion_start_jiffies); 845 netif_tx_wake_all_queues(priv->net_dev); 846 } 847 } 848 849 static int dpaa_eth_cgr_init(struct dpaa_priv *priv) 850 { 851 struct qm_mcc_initcgr initcgr; 852 u32 cs_th; 853 int err; 854 855 err = qman_alloc_cgrid(&priv->cgr_data.cgr.cgrid); 856 if (err < 0) { 857 if (netif_msg_drv(priv)) 858 pr_err("%s: Error %d allocating CGR ID\n", 859 __func__, err); 860 goto out_error; 861 } 862 priv->cgr_data.cgr.cb = dpaa_eth_cgscn; 863 864 /* Enable Congestion State Change Notifications and CS taildrop */ 865 memset(&initcgr, 0, sizeof(initcgr)); 866 initcgr.we_mask = cpu_to_be16(QM_CGR_WE_CSCN_EN | QM_CGR_WE_CS_THRES); 867 initcgr.cgr.cscn_en = QM_CGR_EN; 868 869 /* Set different thresholds based on the configured MAC speed. 870 * This may turn suboptimal if the MAC is reconfigured at another 871 * speed, so MACs must call dpaa_eth_cgr_set_speed in their link_up 872 * callback. 873 */ 874 if (priv->mac_dev->phylink_config.mac_capabilities & MAC_10000FD) 875 cs_th = DPAA_CS_THRESHOLD_10G; 876 else 877 cs_th = DPAA_CS_THRESHOLD_1G; 878 qm_cgr_cs_thres_set64(&initcgr.cgr.cs_thres, cs_th, 1); 879 880 initcgr.we_mask |= cpu_to_be16(QM_CGR_WE_CSTD_EN); 881 initcgr.cgr.cstd_en = QM_CGR_EN; 882 883 err = qman_create_cgr(&priv->cgr_data.cgr, QMAN_CGR_FLAG_USE_INIT, 884 &initcgr); 885 if (err < 0) { 886 if (netif_msg_drv(priv)) 887 pr_err("%s: Error %d creating CGR with ID %d\n", 888 __func__, err, priv->cgr_data.cgr.cgrid); 889 qman_release_cgrid(priv->cgr_data.cgr.cgrid); 890 goto out_error; 891 } 892 if (netif_msg_drv(priv)) 893 pr_debug("Created CGR %d for netdev with hwaddr %pM on QMan channel %d\n", 894 priv->cgr_data.cgr.cgrid, priv->mac_dev->addr, 895 priv->cgr_data.cgr.chan); 896 897 out_error: 898 return err; 899 } 900 901 static void dpaa_eth_cgr_set_speed(struct mac_device *mac_dev, int speed) 902 { 903 struct net_device *net_dev = to_net_dev(mac_dev->phylink_config.dev); 904 struct dpaa_priv *priv = netdev_priv(net_dev); 905 struct qm_mcc_initcgr opts = { }; 906 u32 cs_th; 907 int err; 908 909 opts.we_mask = cpu_to_be16(QM_CGR_WE_CS_THRES); 910 switch (speed) { 911 case SPEED_10000: 912 cs_th = DPAA_CS_THRESHOLD_10G; 913 break; 914 case SPEED_1000: 915 default: 916 cs_th = DPAA_CS_THRESHOLD_1G; 917 break; 918 } 919 qm_cgr_cs_thres_set64(&opts.cgr.cs_thres, cs_th, 1); 920 921 err = qman_update_cgr_safe(&priv->cgr_data.cgr, &opts); 922 if (err) 923 netdev_err(net_dev, "could not update speed: %d\n", err); 924 } 925 926 static inline void dpaa_setup_ingress(const struct dpaa_priv *priv, 927 struct dpaa_fq *fq, 928 const struct qman_fq *template) 929 { 930 fq->fq_base = *template; 931 fq->net_dev = priv->net_dev; 932 933 fq->flags = QMAN_FQ_FLAG_NO_ENQUEUE; 934 fq->channel = priv->channel; 935 } 936 937 static inline void dpaa_setup_egress(const struct dpaa_priv *priv, 938 struct dpaa_fq *fq, 939 struct fman_port *port, 940 const struct qman_fq *template) 941 { 942 fq->fq_base = *template; 943 fq->net_dev = priv->net_dev; 944 945 if (port) { 946 fq->flags = QMAN_FQ_FLAG_TO_DCPORTAL; 947 fq->channel = (u16)fman_port_get_qman_channel_id(port); 948 } else { 949 fq->flags = QMAN_FQ_FLAG_NO_MODIFY; 950 } 951 } 952 953 static int dpaa_fq_setup(struct dpaa_priv *priv, 954 const struct dpaa_fq_cbs *fq_cbs, 955 struct fman_port *tx_port) 956 { 957 int egress_cnt = 0, conf_cnt = 0, num_portals = 0, portal_cnt = 0, cpu; 958 const cpumask_t *affine_cpus = qman_affine_cpus(); 959 struct dpaa_fq *fq; 960 u16 *channels; 961 962 channels = kcalloc(num_possible_cpus(), sizeof(u16), GFP_KERNEL); 963 if (!channels) 964 return -ENOMEM; 965 966 for_each_cpu_and(cpu, affine_cpus, cpu_online_mask) 967 channels[num_portals++] = qman_affine_channel(cpu); 968 969 if (num_portals == 0) 970 dev_err(priv->net_dev->dev.parent, 971 "No Qman software (affine) channels found\n"); 972 973 /* Initialize each FQ in the list */ 974 list_for_each_entry(fq, &priv->dpaa_fq_list, list) { 975 switch (fq->fq_type) { 976 case FQ_TYPE_RX_DEFAULT: 977 dpaa_setup_ingress(priv, fq, &fq_cbs->rx_defq); 978 break; 979 case FQ_TYPE_RX_ERROR: 980 dpaa_setup_ingress(priv, fq, &fq_cbs->rx_errq); 981 break; 982 case FQ_TYPE_RX_PCD: 983 if (!num_portals) 984 continue; 985 dpaa_setup_ingress(priv, fq, &fq_cbs->rx_defq); 986 fq->channel = channels[portal_cnt++ % num_portals]; 987 break; 988 case FQ_TYPE_TX: 989 dpaa_setup_egress(priv, fq, tx_port, 990 &fq_cbs->egress_ern); 991 priv->egress_fqs[egress_cnt++] = &fq->fq_base; 992 break; 993 case FQ_TYPE_TX_CONF_MQ: 994 priv->conf_fqs[conf_cnt++] = &fq->fq_base; 995 fallthrough; 996 case FQ_TYPE_TX_CONFIRM: 997 dpaa_setup_ingress(priv, fq, &fq_cbs->tx_defq); 998 break; 999 case FQ_TYPE_TX_ERROR: 1000 dpaa_setup_ingress(priv, fq, &fq_cbs->tx_errq); 1001 break; 1002 default: 1003 dev_warn(priv->net_dev->dev.parent, 1004 "Unknown FQ type detected!\n"); 1005 break; 1006 } 1007 } 1008 1009 kfree(channels); 1010 1011 return 0; 1012 } 1013 1014 static inline int dpaa_tx_fq_to_id(const struct dpaa_priv *priv, 1015 struct qman_fq *tx_fq) 1016 { 1017 int i; 1018 1019 for (i = 0; i < dpaa_max_num_txqs(); i++) 1020 if (priv->egress_fqs[i] == tx_fq) 1021 return i; 1022 1023 return -EINVAL; 1024 } 1025 1026 static int dpaa_fq_init(struct dpaa_fq *dpaa_fq, bool td_enable) 1027 { 1028 const struct dpaa_priv *priv; 1029 struct qman_fq *confq = NULL; 1030 struct qm_mcc_initfq initfq; 1031 struct device *dev; 1032 struct qman_fq *fq; 1033 int queue_id; 1034 int err; 1035 1036 priv = netdev_priv(dpaa_fq->net_dev); 1037 dev = dpaa_fq->net_dev->dev.parent; 1038 1039 if (dpaa_fq->fqid == 0) 1040 dpaa_fq->flags |= QMAN_FQ_FLAG_DYNAMIC_FQID; 1041 1042 dpaa_fq->init = !(dpaa_fq->flags & QMAN_FQ_FLAG_NO_MODIFY); 1043 1044 err = qman_create_fq(dpaa_fq->fqid, dpaa_fq->flags, &dpaa_fq->fq_base); 1045 if (err) { 1046 dev_err(dev, "qman_create_fq() failed\n"); 1047 return err; 1048 } 1049 fq = &dpaa_fq->fq_base; 1050 1051 if (dpaa_fq->init) { 1052 memset(&initfq, 0, sizeof(initfq)); 1053 1054 initfq.we_mask = cpu_to_be16(QM_INITFQ_WE_FQCTRL); 1055 /* Note: we may get to keep an empty FQ in cache */ 1056 initfq.fqd.fq_ctrl = cpu_to_be16(QM_FQCTRL_PREFERINCACHE); 1057 1058 /* Try to reduce the number of portal interrupts for 1059 * Tx Confirmation FQs. 1060 */ 1061 if (dpaa_fq->fq_type == FQ_TYPE_TX_CONFIRM) 1062 initfq.fqd.fq_ctrl |= cpu_to_be16(QM_FQCTRL_AVOIDBLOCK); 1063 1064 /* FQ placement */ 1065 initfq.we_mask |= cpu_to_be16(QM_INITFQ_WE_DESTWQ); 1066 1067 qm_fqd_set_destwq(&initfq.fqd, dpaa_fq->channel, dpaa_fq->wq); 1068 1069 /* Put all egress queues in a congestion group of their own. 1070 * Sensu stricto, the Tx confirmation queues are Rx FQs, 1071 * rather than Tx - but they nonetheless account for the 1072 * memory footprint on behalf of egress traffic. We therefore 1073 * place them in the netdev's CGR, along with the Tx FQs. 1074 */ 1075 if (dpaa_fq->fq_type == FQ_TYPE_TX || 1076 dpaa_fq->fq_type == FQ_TYPE_TX_CONFIRM || 1077 dpaa_fq->fq_type == FQ_TYPE_TX_CONF_MQ) { 1078 initfq.we_mask |= cpu_to_be16(QM_INITFQ_WE_CGID); 1079 initfq.fqd.fq_ctrl |= cpu_to_be16(QM_FQCTRL_CGE); 1080 initfq.fqd.cgid = (u8)priv->cgr_data.cgr.cgrid; 1081 /* Set a fixed overhead accounting, in an attempt to 1082 * reduce the impact of fixed-size skb shells and the 1083 * driver's needed headroom on system memory. This is 1084 * especially the case when the egress traffic is 1085 * composed of small datagrams. 1086 * Unfortunately, QMan's OAL value is capped to an 1087 * insufficient value, but even that is better than 1088 * no overhead accounting at all. 1089 */ 1090 initfq.we_mask |= cpu_to_be16(QM_INITFQ_WE_OAC); 1091 qm_fqd_set_oac(&initfq.fqd, QM_OAC_CG); 1092 qm_fqd_set_oal(&initfq.fqd, 1093 min(sizeof(struct sk_buff) + 1094 priv->tx_headroom, 1095 (size_t)FSL_QMAN_MAX_OAL)); 1096 } 1097 1098 if (td_enable) { 1099 initfq.we_mask |= cpu_to_be16(QM_INITFQ_WE_TDTHRESH); 1100 qm_fqd_set_taildrop(&initfq.fqd, DPAA_FQ_TD, 1); 1101 initfq.fqd.fq_ctrl = cpu_to_be16(QM_FQCTRL_TDE); 1102 } 1103 1104 if (dpaa_fq->fq_type == FQ_TYPE_TX) { 1105 queue_id = dpaa_tx_fq_to_id(priv, &dpaa_fq->fq_base); 1106 if (queue_id >= 0) 1107 confq = priv->conf_fqs[queue_id]; 1108 if (confq) { 1109 initfq.we_mask |= 1110 cpu_to_be16(QM_INITFQ_WE_CONTEXTA); 1111 /* ContextA: OVOM=1(use contextA2 bits instead of ICAD) 1112 * A2V=1 (contextA A2 field is valid) 1113 * A0V=1 (contextA A0 field is valid) 1114 * B0V=1 (contextB field is valid) 1115 * ContextA A2: EBD=1 (deallocate buffers inside FMan) 1116 * ContextB B0(ASPID): 0 (absolute Virtual Storage ID) 1117 */ 1118 qm_fqd_context_a_set64(&initfq.fqd, 1119 0x1e00000080000000ULL); 1120 } 1121 } 1122 1123 /* Put all the ingress queues in our "ingress CGR". */ 1124 if (priv->use_ingress_cgr && 1125 (dpaa_fq->fq_type == FQ_TYPE_RX_DEFAULT || 1126 dpaa_fq->fq_type == FQ_TYPE_RX_ERROR || 1127 dpaa_fq->fq_type == FQ_TYPE_RX_PCD)) { 1128 initfq.we_mask |= cpu_to_be16(QM_INITFQ_WE_CGID); 1129 initfq.fqd.fq_ctrl |= cpu_to_be16(QM_FQCTRL_CGE); 1130 initfq.fqd.cgid = (u8)priv->ingress_cgr.cgrid; 1131 /* Set a fixed overhead accounting, just like for the 1132 * egress CGR. 1133 */ 1134 initfq.we_mask |= cpu_to_be16(QM_INITFQ_WE_OAC); 1135 qm_fqd_set_oac(&initfq.fqd, QM_OAC_CG); 1136 qm_fqd_set_oal(&initfq.fqd, 1137 min(sizeof(struct sk_buff) + 1138 priv->tx_headroom, 1139 (size_t)FSL_QMAN_MAX_OAL)); 1140 } 1141 1142 /* Initialization common to all ingress queues */ 1143 if (dpaa_fq->flags & QMAN_FQ_FLAG_NO_ENQUEUE) { 1144 initfq.we_mask |= cpu_to_be16(QM_INITFQ_WE_CONTEXTA); 1145 initfq.fqd.fq_ctrl |= cpu_to_be16(QM_FQCTRL_HOLDACTIVE | 1146 QM_FQCTRL_CTXASTASHING); 1147 initfq.fqd.context_a.stashing.exclusive = 1148 QM_STASHING_EXCL_DATA | QM_STASHING_EXCL_CTX | 1149 QM_STASHING_EXCL_ANNOTATION; 1150 qm_fqd_set_stashing(&initfq.fqd, 1, 2, 1151 DIV_ROUND_UP(sizeof(struct qman_fq), 1152 64)); 1153 } 1154 1155 err = qman_init_fq(fq, QMAN_INITFQ_FLAG_SCHED, &initfq); 1156 if (err < 0) { 1157 dev_err(dev, "qman_init_fq(%u) = %d\n", 1158 qman_fq_fqid(fq), err); 1159 qman_destroy_fq(fq); 1160 return err; 1161 } 1162 } 1163 1164 dpaa_fq->fqid = qman_fq_fqid(fq); 1165 1166 if (dpaa_fq->fq_type == FQ_TYPE_RX_DEFAULT || 1167 dpaa_fq->fq_type == FQ_TYPE_RX_PCD) { 1168 err = xdp_rxq_info_reg(&dpaa_fq->xdp_rxq, dpaa_fq->net_dev, 1169 dpaa_fq->fqid, 0); 1170 if (err) { 1171 dev_err(dev, "xdp_rxq_info_reg() = %d\n", err); 1172 return err; 1173 } 1174 1175 err = xdp_rxq_info_reg_mem_model(&dpaa_fq->xdp_rxq, 1176 MEM_TYPE_PAGE_ORDER0, NULL); 1177 if (err) { 1178 dev_err(dev, "xdp_rxq_info_reg_mem_model() = %d\n", 1179 err); 1180 xdp_rxq_info_unreg(&dpaa_fq->xdp_rxq); 1181 return err; 1182 } 1183 } 1184 1185 return 0; 1186 } 1187 1188 static int dpaa_fq_free_entry(struct device *dev, struct qman_fq *fq) 1189 { 1190 const struct dpaa_priv *priv; 1191 struct dpaa_fq *dpaa_fq; 1192 int err, error; 1193 1194 err = 0; 1195 1196 dpaa_fq = container_of(fq, struct dpaa_fq, fq_base); 1197 priv = netdev_priv(dpaa_fq->net_dev); 1198 1199 if (dpaa_fq->init) { 1200 err = qman_retire_fq(fq, NULL); 1201 if (err < 0 && netif_msg_drv(priv)) 1202 dev_err(dev, "qman_retire_fq(%u) = %d\n", 1203 qman_fq_fqid(fq), err); 1204 1205 error = qman_oos_fq(fq); 1206 if (error < 0 && netif_msg_drv(priv)) { 1207 dev_err(dev, "qman_oos_fq(%u) = %d\n", 1208 qman_fq_fqid(fq), error); 1209 if (err >= 0) 1210 err = error; 1211 } 1212 } 1213 1214 if ((dpaa_fq->fq_type == FQ_TYPE_RX_DEFAULT || 1215 dpaa_fq->fq_type == FQ_TYPE_RX_PCD) && 1216 xdp_rxq_info_is_reg(&dpaa_fq->xdp_rxq)) 1217 xdp_rxq_info_unreg(&dpaa_fq->xdp_rxq); 1218 1219 qman_destroy_fq(fq); 1220 list_del(&dpaa_fq->list); 1221 1222 return err; 1223 } 1224 1225 static int dpaa_fq_free(struct device *dev, struct list_head *list) 1226 { 1227 struct dpaa_fq *dpaa_fq, *tmp; 1228 int err, error; 1229 1230 err = 0; 1231 list_for_each_entry_safe(dpaa_fq, tmp, list, list) { 1232 error = dpaa_fq_free_entry(dev, (struct qman_fq *)dpaa_fq); 1233 if (error < 0 && err >= 0) 1234 err = error; 1235 } 1236 1237 return err; 1238 } 1239 1240 static int dpaa_eth_init_tx_port(struct fman_port *port, struct dpaa_fq *errq, 1241 struct dpaa_fq *defq, 1242 struct dpaa_buffer_layout *buf_layout) 1243 { 1244 struct fman_buffer_prefix_content buf_prefix_content; 1245 struct fman_port_params params; 1246 int err; 1247 1248 memset(¶ms, 0, sizeof(params)); 1249 memset(&buf_prefix_content, 0, sizeof(buf_prefix_content)); 1250 1251 buf_prefix_content.priv_data_size = buf_layout->priv_data_size; 1252 buf_prefix_content.pass_prs_result = true; 1253 buf_prefix_content.pass_hash_result = true; 1254 buf_prefix_content.pass_time_stamp = true; 1255 buf_prefix_content.data_align = DPAA_FD_DATA_ALIGNMENT; 1256 1257 params.specific_params.non_rx_params.err_fqid = errq->fqid; 1258 params.specific_params.non_rx_params.dflt_fqid = defq->fqid; 1259 1260 err = fman_port_config(port, ¶ms); 1261 if (err) { 1262 pr_err("%s: fman_port_config failed\n", __func__); 1263 return err; 1264 } 1265 1266 err = fman_port_cfg_buf_prefix_content(port, &buf_prefix_content); 1267 if (err) { 1268 pr_err("%s: fman_port_cfg_buf_prefix_content failed\n", 1269 __func__); 1270 return err; 1271 } 1272 1273 err = fman_port_init(port); 1274 if (err) 1275 pr_err("%s: fm_port_init failed\n", __func__); 1276 1277 return err; 1278 } 1279 1280 static int dpaa_eth_init_rx_port(struct fman_port *port, struct dpaa_bp *bp, 1281 struct dpaa_fq *errq, 1282 struct dpaa_fq *defq, struct dpaa_fq *pcdq, 1283 struct dpaa_buffer_layout *buf_layout) 1284 { 1285 struct fman_buffer_prefix_content buf_prefix_content; 1286 struct fman_port_rx_params *rx_p; 1287 struct fman_port_params params; 1288 int err; 1289 1290 memset(¶ms, 0, sizeof(params)); 1291 memset(&buf_prefix_content, 0, sizeof(buf_prefix_content)); 1292 1293 buf_prefix_content.priv_data_size = buf_layout->priv_data_size; 1294 buf_prefix_content.pass_prs_result = true; 1295 buf_prefix_content.pass_hash_result = true; 1296 buf_prefix_content.pass_time_stamp = true; 1297 buf_prefix_content.data_align = DPAA_FD_RX_DATA_ALIGNMENT; 1298 1299 rx_p = ¶ms.specific_params.rx_params; 1300 rx_p->err_fqid = errq->fqid; 1301 rx_p->dflt_fqid = defq->fqid; 1302 if (pcdq) { 1303 rx_p->pcd_base_fqid = pcdq->fqid; 1304 rx_p->pcd_fqs_count = DPAA_ETH_PCD_RXQ_NUM; 1305 } 1306 1307 rx_p->ext_buf_pools.num_of_pools_used = 1; 1308 rx_p->ext_buf_pools.ext_buf_pool[0].id = bp->bpid; 1309 rx_p->ext_buf_pools.ext_buf_pool[0].size = (u16)bp->size; 1310 1311 err = fman_port_config(port, ¶ms); 1312 if (err) { 1313 pr_err("%s: fman_port_config failed\n", __func__); 1314 return err; 1315 } 1316 1317 err = fman_port_cfg_buf_prefix_content(port, &buf_prefix_content); 1318 if (err) { 1319 pr_err("%s: fman_port_cfg_buf_prefix_content failed\n", 1320 __func__); 1321 return err; 1322 } 1323 1324 err = fman_port_init(port); 1325 if (err) 1326 pr_err("%s: fm_port_init failed\n", __func__); 1327 1328 return err; 1329 } 1330 1331 static int dpaa_eth_init_ports(struct mac_device *mac_dev, 1332 struct dpaa_bp *bp, 1333 struct fm_port_fqs *port_fqs, 1334 struct dpaa_buffer_layout *buf_layout, 1335 struct device *dev) 1336 { 1337 struct fman_port *rxport = mac_dev->port[RX]; 1338 struct fman_port *txport = mac_dev->port[TX]; 1339 int err; 1340 1341 err = dpaa_eth_init_tx_port(txport, port_fqs->tx_errq, 1342 port_fqs->tx_defq, &buf_layout[TX]); 1343 if (err) 1344 return err; 1345 1346 err = dpaa_eth_init_rx_port(rxport, bp, port_fqs->rx_errq, 1347 port_fqs->rx_defq, port_fqs->rx_pcdq, 1348 &buf_layout[RX]); 1349 1350 return err; 1351 } 1352 1353 static int dpaa_bman_release(const struct dpaa_bp *dpaa_bp, 1354 struct bm_buffer *bmb, int cnt) 1355 { 1356 int err; 1357 1358 err = bman_release(dpaa_bp->pool, bmb, cnt); 1359 /* Should never occur, address anyway to avoid leaking the buffers */ 1360 if (WARN_ON(err) && dpaa_bp->free_buf_cb) 1361 while (cnt-- > 0) 1362 dpaa_bp->free_buf_cb(dpaa_bp, &bmb[cnt]); 1363 1364 return cnt; 1365 } 1366 1367 static void dpaa_release_sgt_members(struct qm_sg_entry *sgt) 1368 { 1369 struct bm_buffer bmb[DPAA_BUFF_RELEASE_MAX]; 1370 struct dpaa_bp *dpaa_bp; 1371 int i = 0, j; 1372 1373 memset(bmb, 0, sizeof(bmb)); 1374 1375 do { 1376 dpaa_bp = dpaa_bpid2pool(sgt[i].bpid); 1377 if (!dpaa_bp) 1378 return; 1379 1380 j = 0; 1381 do { 1382 WARN_ON(qm_sg_entry_is_ext(&sgt[i])); 1383 1384 bm_buffer_set64(&bmb[j], qm_sg_entry_get64(&sgt[i])); 1385 1386 j++; i++; 1387 } while (j < ARRAY_SIZE(bmb) && 1388 !qm_sg_entry_is_final(&sgt[i - 1]) && 1389 sgt[i - 1].bpid == sgt[i].bpid); 1390 1391 dpaa_bman_release(dpaa_bp, bmb, j); 1392 } while (!qm_sg_entry_is_final(&sgt[i - 1])); 1393 } 1394 1395 static void dpaa_fd_release(const struct net_device *net_dev, 1396 const struct qm_fd *fd) 1397 { 1398 struct qm_sg_entry *sgt; 1399 struct dpaa_bp *dpaa_bp; 1400 struct bm_buffer bmb; 1401 dma_addr_t addr; 1402 void *vaddr; 1403 1404 bmb.data = 0; 1405 bm_buffer_set64(&bmb, qm_fd_addr(fd)); 1406 1407 dpaa_bp = dpaa_bpid2pool(fd->bpid); 1408 if (!dpaa_bp) 1409 return; 1410 1411 if (qm_fd_get_format(fd) == qm_fd_sg) { 1412 vaddr = phys_to_virt(qm_fd_addr(fd)); 1413 sgt = vaddr + qm_fd_get_offset(fd); 1414 1415 dma_unmap_page(dpaa_bp->priv->rx_dma_dev, qm_fd_addr(fd), 1416 DPAA_BP_RAW_SIZE, DMA_FROM_DEVICE); 1417 1418 dpaa_release_sgt_members(sgt); 1419 1420 addr = dma_map_page(dpaa_bp->priv->rx_dma_dev, 1421 virt_to_page(vaddr), 0, DPAA_BP_RAW_SIZE, 1422 DMA_FROM_DEVICE); 1423 if (dma_mapping_error(dpaa_bp->priv->rx_dma_dev, addr)) { 1424 netdev_err(net_dev, "DMA mapping failed\n"); 1425 return; 1426 } 1427 bm_buffer_set64(&bmb, addr); 1428 } 1429 1430 dpaa_bman_release(dpaa_bp, &bmb, 1); 1431 } 1432 1433 static void count_ern(struct dpaa_percpu_priv *percpu_priv, 1434 const union qm_mr_entry *msg) 1435 { 1436 switch (msg->ern.rc & QM_MR_RC_MASK) { 1437 case QM_MR_RC_CGR_TAILDROP: 1438 percpu_priv->ern_cnt.cg_tdrop++; 1439 break; 1440 case QM_MR_RC_WRED: 1441 percpu_priv->ern_cnt.wred++; 1442 break; 1443 case QM_MR_RC_ERROR: 1444 percpu_priv->ern_cnt.err_cond++; 1445 break; 1446 case QM_MR_RC_ORPWINDOW_EARLY: 1447 percpu_priv->ern_cnt.early_window++; 1448 break; 1449 case QM_MR_RC_ORPWINDOW_LATE: 1450 percpu_priv->ern_cnt.late_window++; 1451 break; 1452 case QM_MR_RC_FQ_TAILDROP: 1453 percpu_priv->ern_cnt.fq_tdrop++; 1454 break; 1455 case QM_MR_RC_ORPWINDOW_RETIRED: 1456 percpu_priv->ern_cnt.fq_retired++; 1457 break; 1458 case QM_MR_RC_ORP_ZERO: 1459 percpu_priv->ern_cnt.orp_zero++; 1460 break; 1461 } 1462 } 1463 1464 /* Turn on HW checksum computation for this outgoing frame. 1465 * If the current protocol is not something we support in this regard 1466 * (or if the stack has already computed the SW checksum), we do nothing. 1467 * 1468 * Returns 0 if all goes well (or HW csum doesn't apply), and a negative value 1469 * otherwise. 1470 * 1471 * Note that this function may modify the fd->cmd field and the skb data buffer 1472 * (the Parse Results area). 1473 */ 1474 static int dpaa_enable_tx_csum(struct dpaa_priv *priv, 1475 struct sk_buff *skb, 1476 struct qm_fd *fd, 1477 void *parse_results) 1478 { 1479 struct fman_prs_result *parse_result; 1480 u16 ethertype = ntohs(skb->protocol); 1481 struct ipv6hdr *ipv6h = NULL; 1482 struct iphdr *iph; 1483 int retval = 0; 1484 u8 l4_proto; 1485 1486 if (skb->ip_summed != CHECKSUM_PARTIAL) 1487 return 0; 1488 1489 /* Note: L3 csum seems to be already computed in sw, but we can't choose 1490 * L4 alone from the FM configuration anyway. 1491 */ 1492 1493 /* Fill in some fields of the Parse Results array, so the FMan 1494 * can find them as if they came from the FMan Parser. 1495 */ 1496 parse_result = (struct fman_prs_result *)parse_results; 1497 1498 /* If we're dealing with VLAN, get the real Ethernet type */ 1499 if (ethertype == ETH_P_8021Q) 1500 ethertype = ntohs(skb_vlan_eth_hdr(skb)->h_vlan_encapsulated_proto); 1501 1502 /* Fill in the relevant L3 parse result fields 1503 * and read the L4 protocol type 1504 */ 1505 switch (ethertype) { 1506 case ETH_P_IP: 1507 parse_result->l3r = cpu_to_be16(FM_L3_PARSE_RESULT_IPV4); 1508 iph = ip_hdr(skb); 1509 WARN_ON(!iph); 1510 l4_proto = iph->protocol; 1511 break; 1512 case ETH_P_IPV6: 1513 parse_result->l3r = cpu_to_be16(FM_L3_PARSE_RESULT_IPV6); 1514 ipv6h = ipv6_hdr(skb); 1515 WARN_ON(!ipv6h); 1516 l4_proto = ipv6h->nexthdr; 1517 break; 1518 default: 1519 /* We shouldn't even be here */ 1520 if (net_ratelimit()) 1521 netif_alert(priv, tx_err, priv->net_dev, 1522 "Can't compute HW csum for L3 proto 0x%x\n", 1523 ntohs(skb->protocol)); 1524 retval = -EIO; 1525 goto return_error; 1526 } 1527 1528 /* Fill in the relevant L4 parse result fields */ 1529 switch (l4_proto) { 1530 case IPPROTO_UDP: 1531 parse_result->l4r = FM_L4_PARSE_RESULT_UDP; 1532 break; 1533 case IPPROTO_TCP: 1534 parse_result->l4r = FM_L4_PARSE_RESULT_TCP; 1535 break; 1536 default: 1537 if (net_ratelimit()) 1538 netif_alert(priv, tx_err, priv->net_dev, 1539 "Can't compute HW csum for L4 proto 0x%x\n", 1540 l4_proto); 1541 retval = -EIO; 1542 goto return_error; 1543 } 1544 1545 /* At index 0 is IPOffset_1 as defined in the Parse Results */ 1546 parse_result->ip_off[0] = (u8)skb_network_offset(skb); 1547 parse_result->l4_off = (u8)skb_transport_offset(skb); 1548 1549 /* Enable L3 (and L4, if TCP or UDP) HW checksum. */ 1550 fd->cmd |= cpu_to_be32(FM_FD_CMD_RPD | FM_FD_CMD_DTC); 1551 1552 /* On P1023 and similar platforms fd->cmd interpretation could 1553 * be disabled by setting CONTEXT_A bit ICMD; currently this bit 1554 * is not set so we do not need to check; in the future, if/when 1555 * using context_a we need to check this bit 1556 */ 1557 1558 return_error: 1559 return retval; 1560 } 1561 1562 static int dpaa_bp_add_8_bufs(const struct dpaa_bp *dpaa_bp) 1563 { 1564 struct net_device *net_dev = dpaa_bp->priv->net_dev; 1565 struct bm_buffer bmb[8]; 1566 dma_addr_t addr; 1567 struct page *p; 1568 u8 i; 1569 1570 for (i = 0; i < 8; i++) { 1571 p = dev_alloc_pages(0); 1572 if (unlikely(!p)) { 1573 netdev_err(net_dev, "dev_alloc_pages() failed\n"); 1574 goto release_previous_buffs; 1575 } 1576 1577 addr = dma_map_page(dpaa_bp->priv->rx_dma_dev, p, 0, 1578 DPAA_BP_RAW_SIZE, DMA_FROM_DEVICE); 1579 if (unlikely(dma_mapping_error(dpaa_bp->priv->rx_dma_dev, 1580 addr))) { 1581 netdev_err(net_dev, "DMA map failed\n"); 1582 goto release_previous_buffs; 1583 } 1584 1585 bmb[i].data = 0; 1586 bm_buffer_set64(&bmb[i], addr); 1587 } 1588 1589 release_bufs: 1590 return dpaa_bman_release(dpaa_bp, bmb, i); 1591 1592 release_previous_buffs: 1593 WARN_ONCE(1, "dpaa_eth: failed to add buffers on Rx\n"); 1594 1595 bm_buffer_set64(&bmb[i], 0); 1596 /* Avoid releasing a completely null buffer; bman_release() requires 1597 * at least one buffer. 1598 */ 1599 if (likely(i)) 1600 goto release_bufs; 1601 1602 return 0; 1603 } 1604 1605 static int dpaa_bp_seed(struct dpaa_bp *dpaa_bp) 1606 { 1607 int i; 1608 1609 /* Give each CPU an allotment of "config_count" buffers */ 1610 for_each_possible_cpu(i) { 1611 int *count_ptr = per_cpu_ptr(dpaa_bp->percpu_count, i); 1612 int j; 1613 1614 /* Although we access another CPU's counters here 1615 * we do it at boot time so it is safe 1616 */ 1617 for (j = 0; j < dpaa_bp->config_count; j += 8) 1618 *count_ptr += dpaa_bp_add_8_bufs(dpaa_bp); 1619 } 1620 return 0; 1621 } 1622 1623 /* Add buffers/(pages) for Rx processing whenever bpool count falls below 1624 * REFILL_THRESHOLD. 1625 */ 1626 static int dpaa_eth_refill_bpool(struct dpaa_bp *dpaa_bp, int *countptr) 1627 { 1628 int count = *countptr; 1629 int new_bufs; 1630 1631 if (unlikely(count < FSL_DPAA_ETH_REFILL_THRESHOLD)) { 1632 do { 1633 new_bufs = dpaa_bp_add_8_bufs(dpaa_bp); 1634 if (unlikely(!new_bufs)) { 1635 /* Avoid looping forever if we've temporarily 1636 * run out of memory. We'll try again at the 1637 * next NAPI cycle. 1638 */ 1639 break; 1640 } 1641 count += new_bufs; 1642 } while (count < FSL_DPAA_ETH_MAX_BUF_COUNT); 1643 1644 *countptr = count; 1645 if (unlikely(count < FSL_DPAA_ETH_MAX_BUF_COUNT)) 1646 return -ENOMEM; 1647 } 1648 1649 return 0; 1650 } 1651 1652 static int dpaa_eth_refill_bpools(struct dpaa_priv *priv) 1653 { 1654 struct dpaa_bp *dpaa_bp; 1655 int *countptr; 1656 1657 dpaa_bp = priv->dpaa_bp; 1658 if (!dpaa_bp) 1659 return -EINVAL; 1660 countptr = this_cpu_ptr(dpaa_bp->percpu_count); 1661 1662 return dpaa_eth_refill_bpool(dpaa_bp, countptr); 1663 } 1664 1665 /* Cleanup function for outgoing frame descriptors that were built on Tx path, 1666 * either contiguous frames or scatter/gather ones. 1667 * Skb freeing is not handled here. 1668 * 1669 * This function may be called on error paths in the Tx function, so guard 1670 * against cases when not all fd relevant fields were filled in. To avoid 1671 * reading the invalid transmission timestamp for the error paths set ts to 1672 * false. 1673 * 1674 * Return the skb backpointer, since for S/G frames the buffer containing it 1675 * gets freed here. 1676 * 1677 * No skb backpointer is set when transmitting XDP frames. Cleanup the buffer 1678 * and return NULL in this case. 1679 */ 1680 static struct sk_buff *dpaa_cleanup_tx_fd(const struct dpaa_priv *priv, 1681 const struct qm_fd *fd, bool ts) 1682 { 1683 const enum dma_data_direction dma_dir = DMA_TO_DEVICE; 1684 struct device *dev = priv->net_dev->dev.parent; 1685 struct skb_shared_hwtstamps shhwtstamps; 1686 dma_addr_t addr = qm_fd_addr(fd); 1687 void *vaddr = phys_to_virt(addr); 1688 const struct qm_sg_entry *sgt; 1689 struct dpaa_eth_swbp *swbp; 1690 struct sk_buff *skb; 1691 u64 ns; 1692 int i; 1693 1694 if (unlikely(qm_fd_get_format(fd) == qm_fd_sg)) { 1695 dma_unmap_page(priv->tx_dma_dev, addr, 1696 qm_fd_get_offset(fd) + DPAA_SGT_SIZE, 1697 dma_dir); 1698 1699 /* The sgt buffer has been allocated with netdev_alloc_frag(), 1700 * it's from lowmem. 1701 */ 1702 sgt = vaddr + qm_fd_get_offset(fd); 1703 1704 /* sgt[0] is from lowmem, was dma_map_single()-ed */ 1705 dma_unmap_single(priv->tx_dma_dev, qm_sg_addr(&sgt[0]), 1706 qm_sg_entry_get_len(&sgt[0]), dma_dir); 1707 1708 /* remaining pages were mapped with skb_frag_dma_map() */ 1709 for (i = 1; (i < DPAA_SGT_MAX_ENTRIES) && 1710 !qm_sg_entry_is_final(&sgt[i - 1]); i++) { 1711 WARN_ON(qm_sg_entry_is_ext(&sgt[i])); 1712 1713 dma_unmap_page(priv->tx_dma_dev, qm_sg_addr(&sgt[i]), 1714 qm_sg_entry_get_len(&sgt[i]), dma_dir); 1715 } 1716 } else { 1717 dma_unmap_single(priv->tx_dma_dev, addr, 1718 qm_fd_get_offset(fd) + qm_fd_get_length(fd), 1719 dma_dir); 1720 } 1721 1722 swbp = (struct dpaa_eth_swbp *)vaddr; 1723 skb = swbp->skb; 1724 1725 /* No skb backpointer is set when running XDP. An xdp_frame 1726 * backpointer is saved instead. 1727 */ 1728 if (!skb) { 1729 xdp_return_frame(swbp->xdpf); 1730 return NULL; 1731 } 1732 1733 /* DMA unmapping is required before accessing the HW provided info */ 1734 if (ts && priv->tx_tstamp && 1735 skb_shinfo(skb)->tx_flags & SKBTX_HW_TSTAMP) { 1736 memset(&shhwtstamps, 0, sizeof(shhwtstamps)); 1737 1738 if (!fman_port_get_tstamp(priv->mac_dev->port[TX], vaddr, 1739 &ns)) { 1740 shhwtstamps.hwtstamp = ns_to_ktime(ns); 1741 skb_tstamp_tx(skb, &shhwtstamps); 1742 } else { 1743 dev_warn(dev, "fman_port_get_tstamp failed!\n"); 1744 } 1745 } 1746 1747 if (qm_fd_get_format(fd) == qm_fd_sg) 1748 /* Free the page that we allocated on Tx for the SGT */ 1749 free_pages((unsigned long)vaddr, 0); 1750 1751 return skb; 1752 } 1753 1754 static u8 rx_csum_offload(const struct dpaa_priv *priv, const struct qm_fd *fd) 1755 { 1756 /* The parser has run and performed L4 checksum validation. 1757 * We know there were no parser errors (and implicitly no 1758 * L4 csum error), otherwise we wouldn't be here. 1759 */ 1760 if ((priv->net_dev->features & NETIF_F_RXCSUM) && 1761 (be32_to_cpu(fd->status) & FM_FD_STAT_L4CV)) 1762 return CHECKSUM_UNNECESSARY; 1763 1764 /* We're here because either the parser didn't run or the L4 checksum 1765 * was not verified. This may include the case of a UDP frame with 1766 * checksum zero or an L4 proto other than TCP/UDP 1767 */ 1768 return CHECKSUM_NONE; 1769 } 1770 1771 #define PTR_IS_ALIGNED(x, a) (IS_ALIGNED((unsigned long)(x), (a))) 1772 1773 /* Build a linear skb around the received buffer. 1774 * We are guaranteed there is enough room at the end of the data buffer to 1775 * accommodate the shared info area of the skb. 1776 */ 1777 static struct sk_buff *contig_fd_to_skb(const struct dpaa_priv *priv, 1778 const struct qm_fd *fd) 1779 { 1780 ssize_t fd_off = qm_fd_get_offset(fd); 1781 dma_addr_t addr = qm_fd_addr(fd); 1782 struct dpaa_bp *dpaa_bp; 1783 struct sk_buff *skb; 1784 void *vaddr; 1785 1786 vaddr = phys_to_virt(addr); 1787 WARN_ON(!IS_ALIGNED((unsigned long)vaddr, SMP_CACHE_BYTES)); 1788 1789 dpaa_bp = dpaa_bpid2pool(fd->bpid); 1790 if (!dpaa_bp) 1791 goto free_buffer; 1792 1793 skb = build_skb(vaddr, dpaa_bp->size + 1794 SKB_DATA_ALIGN(sizeof(struct skb_shared_info))); 1795 if (WARN_ONCE(!skb, "Build skb failure on Rx\n")) 1796 goto free_buffer; 1797 skb_reserve(skb, fd_off); 1798 skb_put(skb, qm_fd_get_length(fd)); 1799 1800 skb->ip_summed = rx_csum_offload(priv, fd); 1801 1802 return skb; 1803 1804 free_buffer: 1805 free_pages((unsigned long)vaddr, 0); 1806 return NULL; 1807 } 1808 1809 /* Build an skb with the data of the first S/G entry in the linear portion and 1810 * the rest of the frame as skb fragments. 1811 * 1812 * The page fragment holding the S/G Table is recycled here. 1813 */ 1814 static struct sk_buff *sg_fd_to_skb(const struct dpaa_priv *priv, 1815 const struct qm_fd *fd) 1816 { 1817 ssize_t fd_off = qm_fd_get_offset(fd); 1818 dma_addr_t addr = qm_fd_addr(fd); 1819 const struct qm_sg_entry *sgt; 1820 struct page *page, *head_page; 1821 struct dpaa_bp *dpaa_bp; 1822 void *vaddr, *sg_vaddr; 1823 int frag_off, frag_len; 1824 struct sk_buff *skb; 1825 dma_addr_t sg_addr; 1826 int page_offset; 1827 unsigned int sz; 1828 int *count_ptr; 1829 int i, j; 1830 1831 vaddr = phys_to_virt(addr); 1832 WARN_ON(!IS_ALIGNED((unsigned long)vaddr, SMP_CACHE_BYTES)); 1833 1834 /* Iterate through the SGT entries and add data buffers to the skb */ 1835 sgt = vaddr + fd_off; 1836 skb = NULL; 1837 for (i = 0; i < DPAA_SGT_MAX_ENTRIES; i++) { 1838 /* Extension bit is not supported */ 1839 WARN_ON(qm_sg_entry_is_ext(&sgt[i])); 1840 1841 sg_addr = qm_sg_addr(&sgt[i]); 1842 sg_vaddr = phys_to_virt(sg_addr); 1843 WARN_ON(!PTR_IS_ALIGNED(sg_vaddr, SMP_CACHE_BYTES)); 1844 1845 dma_unmap_page(priv->rx_dma_dev, sg_addr, 1846 DPAA_BP_RAW_SIZE, DMA_FROM_DEVICE); 1847 1848 /* We may use multiple Rx pools */ 1849 dpaa_bp = dpaa_bpid2pool(sgt[i].bpid); 1850 if (!dpaa_bp) 1851 goto free_buffers; 1852 1853 if (!skb) { 1854 sz = dpaa_bp->size + 1855 SKB_DATA_ALIGN(sizeof(struct skb_shared_info)); 1856 skb = build_skb(sg_vaddr, sz); 1857 if (WARN_ON(!skb)) 1858 goto free_buffers; 1859 1860 skb->ip_summed = rx_csum_offload(priv, fd); 1861 1862 /* Make sure forwarded skbs will have enough space 1863 * on Tx, if extra headers are added. 1864 */ 1865 WARN_ON(fd_off != priv->rx_headroom); 1866 skb_reserve(skb, fd_off); 1867 skb_put(skb, qm_sg_entry_get_len(&sgt[i])); 1868 } else { 1869 /* Not the first S/G entry; all data from buffer will 1870 * be added in an skb fragment; fragment index is offset 1871 * by one since first S/G entry was incorporated in the 1872 * linear part of the skb. 1873 * 1874 * Caution: 'page' may be a tail page. 1875 */ 1876 page = virt_to_page(sg_vaddr); 1877 head_page = virt_to_head_page(sg_vaddr); 1878 1879 /* Compute offset in (possibly tail) page */ 1880 page_offset = ((unsigned long)sg_vaddr & 1881 (PAGE_SIZE - 1)) + 1882 (page_address(page) - page_address(head_page)); 1883 /* page_offset only refers to the beginning of sgt[i]; 1884 * but the buffer itself may have an internal offset. 1885 */ 1886 frag_off = qm_sg_entry_get_off(&sgt[i]) + page_offset; 1887 frag_len = qm_sg_entry_get_len(&sgt[i]); 1888 /* skb_add_rx_frag() does no checking on the page; if 1889 * we pass it a tail page, we'll end up with 1890 * bad page accounting and eventually with segafults. 1891 */ 1892 skb_add_rx_frag(skb, i - 1, head_page, frag_off, 1893 frag_len, dpaa_bp->size); 1894 } 1895 1896 /* Update the pool count for the current {cpu x bpool} */ 1897 count_ptr = this_cpu_ptr(dpaa_bp->percpu_count); 1898 (*count_ptr)--; 1899 1900 if (qm_sg_entry_is_final(&sgt[i])) 1901 break; 1902 } 1903 WARN_ONCE(i == DPAA_SGT_MAX_ENTRIES, "No final bit on SGT\n"); 1904 1905 /* free the SG table buffer */ 1906 free_pages((unsigned long)vaddr, 0); 1907 1908 return skb; 1909 1910 free_buffers: 1911 /* free all the SG entries */ 1912 for (j = 0; j < DPAA_SGT_MAX_ENTRIES ; j++) { 1913 sg_addr = qm_sg_addr(&sgt[j]); 1914 sg_vaddr = phys_to_virt(sg_addr); 1915 /* all pages 0..i were unmaped */ 1916 if (j > i) 1917 dma_unmap_page(priv->rx_dma_dev, qm_sg_addr(&sgt[j]), 1918 DPAA_BP_RAW_SIZE, DMA_FROM_DEVICE); 1919 free_pages((unsigned long)sg_vaddr, 0); 1920 /* counters 0..i-1 were decremented */ 1921 if (j >= i) { 1922 dpaa_bp = dpaa_bpid2pool(sgt[j].bpid); 1923 if (dpaa_bp) { 1924 count_ptr = this_cpu_ptr(dpaa_bp->percpu_count); 1925 (*count_ptr)--; 1926 } 1927 } 1928 1929 if (qm_sg_entry_is_final(&sgt[j])) 1930 break; 1931 } 1932 /* free the SGT fragment */ 1933 free_pages((unsigned long)vaddr, 0); 1934 1935 return NULL; 1936 } 1937 1938 static int skb_to_contig_fd(struct dpaa_priv *priv, 1939 struct sk_buff *skb, struct qm_fd *fd, 1940 int *offset) 1941 { 1942 struct net_device *net_dev = priv->net_dev; 1943 enum dma_data_direction dma_dir; 1944 struct dpaa_eth_swbp *swbp; 1945 unsigned char *buff_start; 1946 dma_addr_t addr; 1947 int err; 1948 1949 /* We are guaranteed to have at least tx_headroom bytes 1950 * available, so just use that for offset. 1951 */ 1952 fd->bpid = FSL_DPAA_BPID_INV; 1953 buff_start = skb->data - priv->tx_headroom; 1954 dma_dir = DMA_TO_DEVICE; 1955 1956 swbp = (struct dpaa_eth_swbp *)buff_start; 1957 swbp->skb = skb; 1958 1959 /* Enable L3/L4 hardware checksum computation. 1960 * 1961 * We must do this before dma_map_single(DMA_TO_DEVICE), because we may 1962 * need to write into the skb. 1963 */ 1964 err = dpaa_enable_tx_csum(priv, skb, fd, 1965 buff_start + DPAA_TX_PRIV_DATA_SIZE); 1966 if (unlikely(err < 0)) { 1967 if (net_ratelimit()) 1968 netif_err(priv, tx_err, net_dev, "HW csum error: %d\n", 1969 err); 1970 return err; 1971 } 1972 1973 /* Fill in the rest of the FD fields */ 1974 qm_fd_set_contig(fd, priv->tx_headroom, skb->len); 1975 fd->cmd |= cpu_to_be32(FM_FD_CMD_FCO); 1976 1977 /* Map the entire buffer size that may be seen by FMan, but no more */ 1978 addr = dma_map_single(priv->tx_dma_dev, buff_start, 1979 priv->tx_headroom + skb->len, dma_dir); 1980 if (unlikely(dma_mapping_error(priv->tx_dma_dev, addr))) { 1981 if (net_ratelimit()) 1982 netif_err(priv, tx_err, net_dev, "dma_map_single() failed\n"); 1983 return -EINVAL; 1984 } 1985 qm_fd_addr_set64(fd, addr); 1986 1987 return 0; 1988 } 1989 1990 static int skb_to_sg_fd(struct dpaa_priv *priv, 1991 struct sk_buff *skb, struct qm_fd *fd) 1992 { 1993 const enum dma_data_direction dma_dir = DMA_TO_DEVICE; 1994 const int nr_frags = skb_shinfo(skb)->nr_frags; 1995 struct net_device *net_dev = priv->net_dev; 1996 struct dpaa_eth_swbp *swbp; 1997 struct qm_sg_entry *sgt; 1998 void *buff_start; 1999 skb_frag_t *frag; 2000 dma_addr_t addr; 2001 size_t frag_len; 2002 struct page *p; 2003 int i, j, err; 2004 2005 /* get a page to store the SGTable */ 2006 p = dev_alloc_pages(0); 2007 if (unlikely(!p)) { 2008 netdev_err(net_dev, "dev_alloc_pages() failed\n"); 2009 return -ENOMEM; 2010 } 2011 buff_start = page_address(p); 2012 2013 /* Enable L3/L4 hardware checksum computation. 2014 * 2015 * We must do this before dma_map_single(DMA_TO_DEVICE), because we may 2016 * need to write into the skb. 2017 */ 2018 err = dpaa_enable_tx_csum(priv, skb, fd, 2019 buff_start + DPAA_TX_PRIV_DATA_SIZE); 2020 if (unlikely(err < 0)) { 2021 if (net_ratelimit()) 2022 netif_err(priv, tx_err, net_dev, "HW csum error: %d\n", 2023 err); 2024 goto csum_failed; 2025 } 2026 2027 /* SGT[0] is used by the linear part */ 2028 sgt = (struct qm_sg_entry *)(buff_start + priv->tx_headroom); 2029 frag_len = skb_headlen(skb); 2030 qm_sg_entry_set_len(&sgt[0], frag_len); 2031 sgt[0].bpid = FSL_DPAA_BPID_INV; 2032 sgt[0].offset = 0; 2033 addr = dma_map_single(priv->tx_dma_dev, skb->data, 2034 skb_headlen(skb), dma_dir); 2035 if (unlikely(dma_mapping_error(priv->tx_dma_dev, addr))) { 2036 netdev_err(priv->net_dev, "DMA mapping failed\n"); 2037 err = -EINVAL; 2038 goto sg0_map_failed; 2039 } 2040 qm_sg_entry_set64(&sgt[0], addr); 2041 2042 /* populate the rest of SGT entries */ 2043 for (i = 0; i < nr_frags; i++) { 2044 frag = &skb_shinfo(skb)->frags[i]; 2045 frag_len = skb_frag_size(frag); 2046 WARN_ON(!skb_frag_page(frag)); 2047 addr = skb_frag_dma_map(priv->tx_dma_dev, frag, 0, 2048 frag_len, dma_dir); 2049 if (unlikely(dma_mapping_error(priv->tx_dma_dev, addr))) { 2050 netdev_err(priv->net_dev, "DMA mapping failed\n"); 2051 err = -EINVAL; 2052 goto sg_map_failed; 2053 } 2054 2055 qm_sg_entry_set_len(&sgt[i + 1], frag_len); 2056 sgt[i + 1].bpid = FSL_DPAA_BPID_INV; 2057 sgt[i + 1].offset = 0; 2058 2059 /* keep the offset in the address */ 2060 qm_sg_entry_set64(&sgt[i + 1], addr); 2061 } 2062 2063 /* Set the final bit in the last used entry of the SGT */ 2064 qm_sg_entry_set_f(&sgt[nr_frags], frag_len); 2065 2066 /* set fd offset to priv->tx_headroom */ 2067 qm_fd_set_sg(fd, priv->tx_headroom, skb->len); 2068 2069 /* DMA map the SGT page */ 2070 swbp = (struct dpaa_eth_swbp *)buff_start; 2071 swbp->skb = skb; 2072 2073 addr = dma_map_page(priv->tx_dma_dev, p, 0, 2074 priv->tx_headroom + DPAA_SGT_SIZE, dma_dir); 2075 if (unlikely(dma_mapping_error(priv->tx_dma_dev, addr))) { 2076 netdev_err(priv->net_dev, "DMA mapping failed\n"); 2077 err = -EINVAL; 2078 goto sgt_map_failed; 2079 } 2080 2081 fd->bpid = FSL_DPAA_BPID_INV; 2082 fd->cmd |= cpu_to_be32(FM_FD_CMD_FCO); 2083 qm_fd_addr_set64(fd, addr); 2084 2085 return 0; 2086 2087 sgt_map_failed: 2088 sg_map_failed: 2089 for (j = 0; j < i; j++) 2090 dma_unmap_page(priv->tx_dma_dev, qm_sg_addr(&sgt[j]), 2091 qm_sg_entry_get_len(&sgt[j]), dma_dir); 2092 sg0_map_failed: 2093 csum_failed: 2094 free_pages((unsigned long)buff_start, 0); 2095 2096 return err; 2097 } 2098 2099 static inline int dpaa_xmit(struct dpaa_priv *priv, 2100 struct rtnl_link_stats64 *percpu_stats, 2101 int queue, 2102 struct qm_fd *fd) 2103 { 2104 struct qman_fq *egress_fq; 2105 int err, i; 2106 2107 egress_fq = priv->egress_fqs[queue]; 2108 if (fd->bpid == FSL_DPAA_BPID_INV) 2109 fd->cmd |= cpu_to_be32(qman_fq_fqid(priv->conf_fqs[queue])); 2110 2111 /* Trace this Tx fd */ 2112 trace_dpaa_tx_fd(priv->net_dev, egress_fq, fd); 2113 2114 for (i = 0; i < DPAA_ENQUEUE_RETRIES; i++) { 2115 err = qman_enqueue(egress_fq, fd); 2116 if (err != -EBUSY) 2117 break; 2118 } 2119 2120 if (unlikely(err < 0)) { 2121 percpu_stats->tx_fifo_errors++; 2122 return err; 2123 } 2124 2125 percpu_stats->tx_packets++; 2126 percpu_stats->tx_bytes += qm_fd_get_length(fd); 2127 2128 return 0; 2129 } 2130 2131 #ifdef CONFIG_DPAA_ERRATUM_A050385 2132 static int dpaa_a050385_wa_skb(struct net_device *net_dev, struct sk_buff **s) 2133 { 2134 struct dpaa_priv *priv = netdev_priv(net_dev); 2135 struct sk_buff *new_skb, *skb = *s; 2136 unsigned char *start, i; 2137 2138 /* check linear buffer alignment */ 2139 if (!PTR_IS_ALIGNED(skb->data, DPAA_A050385_ALIGN)) 2140 goto workaround; 2141 2142 /* linear buffers just need to have an aligned start */ 2143 if (!skb_is_nonlinear(skb)) 2144 return 0; 2145 2146 /* linear data size for nonlinear skbs needs to be aligned */ 2147 if (!IS_ALIGNED(skb_headlen(skb), DPAA_A050385_ALIGN)) 2148 goto workaround; 2149 2150 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) { 2151 skb_frag_t *frag = &skb_shinfo(skb)->frags[i]; 2152 2153 /* all fragments need to have aligned start addresses */ 2154 if (!IS_ALIGNED(skb_frag_off(frag), DPAA_A050385_ALIGN)) 2155 goto workaround; 2156 2157 /* all but last fragment need to have aligned sizes */ 2158 if (!IS_ALIGNED(skb_frag_size(frag), DPAA_A050385_ALIGN) && 2159 (i < skb_shinfo(skb)->nr_frags - 1)) 2160 goto workaround; 2161 } 2162 2163 return 0; 2164 2165 workaround: 2166 /* copy all the skb content into a new linear buffer */ 2167 new_skb = netdev_alloc_skb(net_dev, skb->len + DPAA_A050385_ALIGN - 1 + 2168 priv->tx_headroom); 2169 if (!new_skb) 2170 return -ENOMEM; 2171 2172 /* NET_SKB_PAD bytes already reserved, adding up to tx_headroom */ 2173 skb_reserve(new_skb, priv->tx_headroom - NET_SKB_PAD); 2174 2175 /* Workaround for DPAA_A050385 requires data start to be aligned */ 2176 start = PTR_ALIGN(new_skb->data, DPAA_A050385_ALIGN); 2177 if (start - new_skb->data) 2178 skb_reserve(new_skb, start - new_skb->data); 2179 2180 skb_put(new_skb, skb->len); 2181 skb_copy_bits(skb, 0, new_skb->data, skb->len); 2182 skb_copy_header(new_skb, skb); 2183 new_skb->dev = skb->dev; 2184 2185 /* Copy relevant timestamp info from the old skb to the new */ 2186 if (priv->tx_tstamp) { 2187 skb_shinfo(new_skb)->tx_flags = skb_shinfo(skb)->tx_flags; 2188 skb_shinfo(new_skb)->hwtstamps = skb_shinfo(skb)->hwtstamps; 2189 skb_shinfo(new_skb)->tskey = skb_shinfo(skb)->tskey; 2190 if (skb->sk) 2191 skb_set_owner_w(new_skb, skb->sk); 2192 } 2193 2194 /* We move the headroom when we align it so we have to reset the 2195 * network and transport header offsets relative to the new data 2196 * pointer. The checksum offload relies on these offsets. 2197 */ 2198 skb_set_network_header(new_skb, skb_network_offset(skb)); 2199 skb_set_transport_header(new_skb, skb_transport_offset(skb)); 2200 2201 dev_kfree_skb(skb); 2202 *s = new_skb; 2203 2204 return 0; 2205 } 2206 2207 static int dpaa_a050385_wa_xdpf(struct dpaa_priv *priv, 2208 struct xdp_frame **init_xdpf) 2209 { 2210 struct xdp_frame *new_xdpf, *xdpf = *init_xdpf; 2211 void *new_buff, *aligned_data; 2212 struct page *p; 2213 u32 data_shift; 2214 int headroom; 2215 2216 /* Check the data alignment and make sure the headroom is large 2217 * enough to store the xdpf backpointer. Use an aligned headroom 2218 * value. 2219 * 2220 * Due to alignment constraints, we give XDP access to the full 256 2221 * byte frame headroom. If the XDP program uses all of it, copy the 2222 * data to a new buffer and make room for storing the backpointer. 2223 */ 2224 if (PTR_IS_ALIGNED(xdpf->data, DPAA_FD_DATA_ALIGNMENT) && 2225 xdpf->headroom >= priv->tx_headroom) { 2226 xdpf->headroom = priv->tx_headroom; 2227 return 0; 2228 } 2229 2230 /* Try to move the data inside the buffer just enough to align it and 2231 * store the xdpf backpointer. If the available headroom isn't large 2232 * enough, resort to allocating a new buffer and copying the data. 2233 */ 2234 aligned_data = PTR_ALIGN_DOWN(xdpf->data, DPAA_FD_DATA_ALIGNMENT); 2235 data_shift = xdpf->data - aligned_data; 2236 2237 /* The XDP frame's headroom needs to be large enough to accommodate 2238 * shifting the data as well as storing the xdpf backpointer. 2239 */ 2240 if (xdpf->headroom >= data_shift + priv->tx_headroom) { 2241 memmove(aligned_data, xdpf->data, xdpf->len); 2242 xdpf->data = aligned_data; 2243 xdpf->headroom = priv->tx_headroom; 2244 return 0; 2245 } 2246 2247 /* The new xdp_frame is stored in the new buffer. Reserve enough space 2248 * in the headroom for storing it along with the driver's private 2249 * info. The headroom needs to be aligned to DPAA_FD_DATA_ALIGNMENT to 2250 * guarantee the data's alignment in the buffer. 2251 */ 2252 headroom = ALIGN(sizeof(*new_xdpf) + priv->tx_headroom, 2253 DPAA_FD_DATA_ALIGNMENT); 2254 2255 /* Assure the extended headroom and data don't overflow the buffer, 2256 * while maintaining the mandatory tailroom. 2257 */ 2258 if (headroom + xdpf->len > DPAA_BP_RAW_SIZE - 2259 SKB_DATA_ALIGN(sizeof(struct skb_shared_info))) 2260 return -ENOMEM; 2261 2262 p = dev_alloc_pages(0); 2263 if (unlikely(!p)) 2264 return -ENOMEM; 2265 2266 /* Copy the data to the new buffer at a properly aligned offset */ 2267 new_buff = page_address(p); 2268 memcpy(new_buff + headroom, xdpf->data, xdpf->len); 2269 2270 /* Create an XDP frame around the new buffer in a similar fashion 2271 * to xdp_convert_buff_to_frame. 2272 */ 2273 new_xdpf = new_buff; 2274 new_xdpf->data = new_buff + headroom; 2275 new_xdpf->len = xdpf->len; 2276 new_xdpf->headroom = priv->tx_headroom; 2277 new_xdpf->frame_sz = DPAA_BP_RAW_SIZE; 2278 new_xdpf->mem.type = MEM_TYPE_PAGE_ORDER0; 2279 2280 /* Release the initial buffer */ 2281 xdp_return_frame_rx_napi(xdpf); 2282 2283 *init_xdpf = new_xdpf; 2284 return 0; 2285 } 2286 #endif 2287 2288 static netdev_tx_t 2289 dpaa_start_xmit(struct sk_buff *skb, struct net_device *net_dev) 2290 { 2291 const int queue_mapping = skb_get_queue_mapping(skb); 2292 struct rtnl_link_stats64 *percpu_stats; 2293 struct dpaa_percpu_priv *percpu_priv; 2294 struct netdev_queue *txq; 2295 struct dpaa_priv *priv; 2296 struct qm_fd fd; 2297 bool nonlinear; 2298 int offset = 0; 2299 int err = 0; 2300 2301 priv = netdev_priv(net_dev); 2302 percpu_priv = this_cpu_ptr(priv->percpu_priv); 2303 percpu_stats = &percpu_priv->stats; 2304 2305 qm_fd_clear_fd(&fd); 2306 2307 /* Packet data is always read as 32-bit words, so zero out any part of 2308 * the skb which might be sent if we have to pad the packet 2309 */ 2310 if (__skb_put_padto(skb, ETH_ZLEN, false)) 2311 goto enomem; 2312 2313 nonlinear = skb_is_nonlinear(skb); 2314 if (!nonlinear) { 2315 /* We're going to store the skb backpointer at the beginning 2316 * of the data buffer, so we need a privately owned skb 2317 * 2318 * We've made sure skb is not shared in dev->priv_flags, 2319 * we need to verify the skb head is not cloned 2320 */ 2321 if (skb_cow_head(skb, priv->tx_headroom)) 2322 goto enomem; 2323 2324 WARN_ON(skb_is_nonlinear(skb)); 2325 } 2326 2327 /* MAX_SKB_FRAGS is equal or larger than our dpaa_SGT_MAX_ENTRIES; 2328 * make sure we don't feed FMan with more fragments than it supports. 2329 */ 2330 if (unlikely(nonlinear && 2331 (skb_shinfo(skb)->nr_frags >= DPAA_SGT_MAX_ENTRIES))) { 2332 /* If the egress skb contains more fragments than we support 2333 * we have no choice but to linearize it ourselves. 2334 */ 2335 if (__skb_linearize(skb)) 2336 goto enomem; 2337 2338 nonlinear = skb_is_nonlinear(skb); 2339 } 2340 2341 #ifdef CONFIG_DPAA_ERRATUM_A050385 2342 if (unlikely(fman_has_errata_a050385())) { 2343 if (dpaa_a050385_wa_skb(net_dev, &skb)) 2344 goto enomem; 2345 nonlinear = skb_is_nonlinear(skb); 2346 } 2347 #endif 2348 2349 if (nonlinear) { 2350 /* Just create a S/G fd based on the skb */ 2351 err = skb_to_sg_fd(priv, skb, &fd); 2352 percpu_priv->tx_frag_skbuffs++; 2353 } else { 2354 /* Create a contig FD from this skb */ 2355 err = skb_to_contig_fd(priv, skb, &fd, &offset); 2356 } 2357 if (unlikely(err < 0)) 2358 goto skb_to_fd_failed; 2359 2360 txq = netdev_get_tx_queue(net_dev, queue_mapping); 2361 2362 /* LLTX requires to do our own update of trans_start */ 2363 txq_trans_cond_update(txq); 2364 2365 if (priv->tx_tstamp && skb_shinfo(skb)->tx_flags & SKBTX_HW_TSTAMP) { 2366 fd.cmd |= cpu_to_be32(FM_FD_CMD_UPD); 2367 skb_shinfo(skb)->tx_flags |= SKBTX_IN_PROGRESS; 2368 } 2369 2370 if (likely(dpaa_xmit(priv, percpu_stats, queue_mapping, &fd) == 0)) 2371 return NETDEV_TX_OK; 2372 2373 dpaa_cleanup_tx_fd(priv, &fd, false); 2374 skb_to_fd_failed: 2375 enomem: 2376 percpu_stats->tx_errors++; 2377 dev_kfree_skb(skb); 2378 return NETDEV_TX_OK; 2379 } 2380 2381 static void dpaa_rx_error(struct net_device *net_dev, 2382 const struct dpaa_priv *priv, 2383 struct dpaa_percpu_priv *percpu_priv, 2384 const struct qm_fd *fd, 2385 u32 fqid) 2386 { 2387 if (net_ratelimit()) 2388 netif_err(priv, hw, net_dev, "Err FD status = 0x%08x\n", 2389 be32_to_cpu(fd->status) & FM_FD_STAT_RX_ERRORS); 2390 2391 percpu_priv->stats.rx_errors++; 2392 2393 if (be32_to_cpu(fd->status) & FM_FD_ERR_DMA) 2394 percpu_priv->rx_errors.dme++; 2395 if (be32_to_cpu(fd->status) & FM_FD_ERR_PHYSICAL) 2396 percpu_priv->rx_errors.fpe++; 2397 if (be32_to_cpu(fd->status) & FM_FD_ERR_SIZE) 2398 percpu_priv->rx_errors.fse++; 2399 if (be32_to_cpu(fd->status) & FM_FD_ERR_PRS_HDR_ERR) 2400 percpu_priv->rx_errors.phe++; 2401 2402 dpaa_fd_release(net_dev, fd); 2403 } 2404 2405 static void dpaa_tx_error(struct net_device *net_dev, 2406 const struct dpaa_priv *priv, 2407 struct dpaa_percpu_priv *percpu_priv, 2408 const struct qm_fd *fd, 2409 u32 fqid) 2410 { 2411 struct sk_buff *skb; 2412 2413 if (net_ratelimit()) 2414 netif_warn(priv, hw, net_dev, "FD status = 0x%08x\n", 2415 be32_to_cpu(fd->status) & FM_FD_STAT_TX_ERRORS); 2416 2417 percpu_priv->stats.tx_errors++; 2418 2419 skb = dpaa_cleanup_tx_fd(priv, fd, false); 2420 dev_kfree_skb(skb); 2421 } 2422 2423 static int dpaa_eth_poll(struct napi_struct *napi, int budget) 2424 { 2425 struct dpaa_napi_portal *np = 2426 container_of(napi, struct dpaa_napi_portal, napi); 2427 int cleaned; 2428 2429 np->xdp_act = 0; 2430 2431 cleaned = qman_p_poll_dqrr(np->p, budget); 2432 2433 if (np->xdp_act & XDP_REDIRECT) 2434 xdp_do_flush(); 2435 2436 if (cleaned < budget) { 2437 napi_complete_done(napi, cleaned); 2438 qman_p_irqsource_add(np->p, QM_PIRQ_DQRI); 2439 } else if (np->down) { 2440 qman_p_irqsource_add(np->p, QM_PIRQ_DQRI); 2441 } 2442 2443 return cleaned; 2444 } 2445 2446 static void dpaa_tx_conf(struct net_device *net_dev, 2447 const struct dpaa_priv *priv, 2448 struct dpaa_percpu_priv *percpu_priv, 2449 const struct qm_fd *fd, 2450 u32 fqid) 2451 { 2452 struct sk_buff *skb; 2453 2454 if (unlikely(be32_to_cpu(fd->status) & FM_FD_STAT_TX_ERRORS)) { 2455 if (net_ratelimit()) 2456 netif_warn(priv, hw, net_dev, "FD status = 0x%08x\n", 2457 be32_to_cpu(fd->status) & 2458 FM_FD_STAT_TX_ERRORS); 2459 2460 percpu_priv->stats.tx_errors++; 2461 } 2462 2463 percpu_priv->tx_confirm++; 2464 2465 skb = dpaa_cleanup_tx_fd(priv, fd, true); 2466 2467 consume_skb(skb); 2468 } 2469 2470 static inline int dpaa_eth_napi_schedule(struct dpaa_percpu_priv *percpu_priv, 2471 struct qman_portal *portal, bool sched_napi) 2472 { 2473 if (sched_napi) { 2474 /* Disable QMan IRQ and invoke NAPI */ 2475 qman_p_irqsource_remove(portal, QM_PIRQ_DQRI); 2476 2477 percpu_priv->np.p = portal; 2478 napi_schedule(&percpu_priv->np.napi); 2479 percpu_priv->in_interrupt++; 2480 return 1; 2481 } 2482 return 0; 2483 } 2484 2485 static enum qman_cb_dqrr_result rx_error_dqrr(struct qman_portal *portal, 2486 struct qman_fq *fq, 2487 const struct qm_dqrr_entry *dq, 2488 bool sched_napi) 2489 { 2490 struct dpaa_fq *dpaa_fq = container_of(fq, struct dpaa_fq, fq_base); 2491 struct dpaa_percpu_priv *percpu_priv; 2492 struct net_device *net_dev; 2493 struct dpaa_bp *dpaa_bp; 2494 struct dpaa_priv *priv; 2495 2496 net_dev = dpaa_fq->net_dev; 2497 priv = netdev_priv(net_dev); 2498 dpaa_bp = dpaa_bpid2pool(dq->fd.bpid); 2499 if (!dpaa_bp) 2500 return qman_cb_dqrr_consume; 2501 2502 percpu_priv = this_cpu_ptr(priv->percpu_priv); 2503 2504 if (dpaa_eth_napi_schedule(percpu_priv, portal, sched_napi)) 2505 return qman_cb_dqrr_stop; 2506 2507 dpaa_eth_refill_bpools(priv); 2508 dpaa_rx_error(net_dev, priv, percpu_priv, &dq->fd, fq->fqid); 2509 2510 return qman_cb_dqrr_consume; 2511 } 2512 2513 static int dpaa_xdp_xmit_frame(struct net_device *net_dev, 2514 struct xdp_frame *xdpf) 2515 { 2516 struct dpaa_priv *priv = netdev_priv(net_dev); 2517 struct rtnl_link_stats64 *percpu_stats; 2518 struct dpaa_percpu_priv *percpu_priv; 2519 struct dpaa_eth_swbp *swbp; 2520 struct netdev_queue *txq; 2521 void *buff_start; 2522 struct qm_fd fd; 2523 dma_addr_t addr; 2524 int err; 2525 2526 percpu_priv = this_cpu_ptr(priv->percpu_priv); 2527 percpu_stats = &percpu_priv->stats; 2528 2529 #ifdef CONFIG_DPAA_ERRATUM_A050385 2530 if (unlikely(fman_has_errata_a050385())) { 2531 if (dpaa_a050385_wa_xdpf(priv, &xdpf)) { 2532 err = -ENOMEM; 2533 goto out_error; 2534 } 2535 } 2536 #endif 2537 2538 if (xdpf->headroom < DPAA_TX_PRIV_DATA_SIZE) { 2539 err = -EINVAL; 2540 goto out_error; 2541 } 2542 2543 buff_start = xdpf->data - xdpf->headroom; 2544 2545 /* Leave empty the skb backpointer at the start of the buffer. 2546 * Save the XDP frame for easy cleanup on confirmation. 2547 */ 2548 swbp = (struct dpaa_eth_swbp *)buff_start; 2549 swbp->skb = NULL; 2550 swbp->xdpf = xdpf; 2551 2552 qm_fd_clear_fd(&fd); 2553 fd.bpid = FSL_DPAA_BPID_INV; 2554 fd.cmd |= cpu_to_be32(FM_FD_CMD_FCO); 2555 qm_fd_set_contig(&fd, xdpf->headroom, xdpf->len); 2556 2557 addr = dma_map_single(priv->tx_dma_dev, buff_start, 2558 xdpf->headroom + xdpf->len, 2559 DMA_TO_DEVICE); 2560 if (unlikely(dma_mapping_error(priv->tx_dma_dev, addr))) { 2561 err = -EINVAL; 2562 goto out_error; 2563 } 2564 2565 qm_fd_addr_set64(&fd, addr); 2566 2567 /* Bump the trans_start */ 2568 txq = netdev_get_tx_queue(net_dev, smp_processor_id()); 2569 txq_trans_cond_update(txq); 2570 2571 err = dpaa_xmit(priv, percpu_stats, smp_processor_id(), &fd); 2572 if (err) { 2573 dma_unmap_single(priv->tx_dma_dev, addr, 2574 qm_fd_get_offset(&fd) + qm_fd_get_length(&fd), 2575 DMA_TO_DEVICE); 2576 goto out_error; 2577 } 2578 2579 return 0; 2580 2581 out_error: 2582 percpu_stats->tx_errors++; 2583 return err; 2584 } 2585 2586 static u32 dpaa_run_xdp(struct dpaa_priv *priv, struct qm_fd *fd, void *vaddr, 2587 struct dpaa_fq *dpaa_fq, unsigned int *xdp_meta_len) 2588 { 2589 ssize_t fd_off = qm_fd_get_offset(fd); 2590 struct bpf_prog *xdp_prog; 2591 struct xdp_frame *xdpf; 2592 struct xdp_buff xdp; 2593 u32 xdp_act; 2594 int err; 2595 2596 xdp_prog = READ_ONCE(priv->xdp_prog); 2597 if (!xdp_prog) 2598 return XDP_PASS; 2599 2600 xdp_init_buff(&xdp, DPAA_BP_RAW_SIZE - DPAA_TX_PRIV_DATA_SIZE, 2601 &dpaa_fq->xdp_rxq); 2602 xdp_prepare_buff(&xdp, vaddr + fd_off - XDP_PACKET_HEADROOM, 2603 XDP_PACKET_HEADROOM, qm_fd_get_length(fd), true); 2604 2605 /* We reserve a fixed headroom of 256 bytes under the erratum and we 2606 * offer it all to XDP programs to use. If no room is left for the 2607 * xdpf backpointer on TX, we will need to copy the data. 2608 * Disable metadata support since data realignments might be required 2609 * and the information can be lost. 2610 */ 2611 #ifdef CONFIG_DPAA_ERRATUM_A050385 2612 if (unlikely(fman_has_errata_a050385())) { 2613 xdp_set_data_meta_invalid(&xdp); 2614 xdp.data_hard_start = vaddr; 2615 xdp.frame_sz = DPAA_BP_RAW_SIZE; 2616 } 2617 #endif 2618 2619 xdp_act = bpf_prog_run_xdp(xdp_prog, &xdp); 2620 2621 /* Update the length and the offset of the FD */ 2622 qm_fd_set_contig(fd, xdp.data - vaddr, xdp.data_end - xdp.data); 2623 2624 switch (xdp_act) { 2625 case XDP_PASS: 2626 #ifdef CONFIG_DPAA_ERRATUM_A050385 2627 *xdp_meta_len = xdp_data_meta_unsupported(&xdp) ? 0 : 2628 xdp.data - xdp.data_meta; 2629 #else 2630 *xdp_meta_len = xdp.data - xdp.data_meta; 2631 #endif 2632 break; 2633 case XDP_TX: 2634 /* We can access the full headroom when sending the frame 2635 * back out 2636 */ 2637 xdp.data_hard_start = vaddr; 2638 xdp.frame_sz = DPAA_BP_RAW_SIZE; 2639 xdpf = xdp_convert_buff_to_frame(&xdp); 2640 if (unlikely(!xdpf)) { 2641 free_pages((unsigned long)vaddr, 0); 2642 break; 2643 } 2644 2645 if (dpaa_xdp_xmit_frame(priv->net_dev, xdpf)) 2646 xdp_return_frame_rx_napi(xdpf); 2647 2648 break; 2649 case XDP_REDIRECT: 2650 /* Allow redirect to use the full headroom */ 2651 xdp.data_hard_start = vaddr; 2652 xdp.frame_sz = DPAA_BP_RAW_SIZE; 2653 2654 err = xdp_do_redirect(priv->net_dev, &xdp, xdp_prog); 2655 if (err) { 2656 trace_xdp_exception(priv->net_dev, xdp_prog, xdp_act); 2657 free_pages((unsigned long)vaddr, 0); 2658 } 2659 break; 2660 default: 2661 bpf_warn_invalid_xdp_action(priv->net_dev, xdp_prog, xdp_act); 2662 fallthrough; 2663 case XDP_ABORTED: 2664 trace_xdp_exception(priv->net_dev, xdp_prog, xdp_act); 2665 fallthrough; 2666 case XDP_DROP: 2667 /* Free the buffer */ 2668 free_pages((unsigned long)vaddr, 0); 2669 break; 2670 } 2671 2672 return xdp_act; 2673 } 2674 2675 static enum qman_cb_dqrr_result rx_default_dqrr(struct qman_portal *portal, 2676 struct qman_fq *fq, 2677 const struct qm_dqrr_entry *dq, 2678 bool sched_napi) 2679 { 2680 bool ts_valid = false, hash_valid = false; 2681 struct skb_shared_hwtstamps *shhwtstamps; 2682 unsigned int skb_len, xdp_meta_len = 0; 2683 struct rtnl_link_stats64 *percpu_stats; 2684 struct dpaa_percpu_priv *percpu_priv; 2685 const struct qm_fd *fd = &dq->fd; 2686 dma_addr_t addr = qm_fd_addr(fd); 2687 struct dpaa_napi_portal *np; 2688 enum qm_fd_format fd_format; 2689 struct net_device *net_dev; 2690 u32 fd_status, hash_offset; 2691 struct qm_sg_entry *sgt; 2692 struct dpaa_bp *dpaa_bp; 2693 struct dpaa_fq *dpaa_fq; 2694 struct dpaa_priv *priv; 2695 struct sk_buff *skb; 2696 int *count_ptr; 2697 u32 xdp_act; 2698 void *vaddr; 2699 u32 hash; 2700 u64 ns; 2701 2702 dpaa_fq = container_of(fq, struct dpaa_fq, fq_base); 2703 fd_status = be32_to_cpu(fd->status); 2704 fd_format = qm_fd_get_format(fd); 2705 net_dev = dpaa_fq->net_dev; 2706 priv = netdev_priv(net_dev); 2707 dpaa_bp = dpaa_bpid2pool(dq->fd.bpid); 2708 if (!dpaa_bp) 2709 return qman_cb_dqrr_consume; 2710 2711 /* Trace the Rx fd */ 2712 trace_dpaa_rx_fd(net_dev, fq, &dq->fd); 2713 2714 percpu_priv = this_cpu_ptr(priv->percpu_priv); 2715 percpu_stats = &percpu_priv->stats; 2716 np = &percpu_priv->np; 2717 2718 if (unlikely(dpaa_eth_napi_schedule(percpu_priv, portal, sched_napi))) 2719 return qman_cb_dqrr_stop; 2720 2721 /* Make sure we didn't run out of buffers */ 2722 if (unlikely(dpaa_eth_refill_bpools(priv))) { 2723 /* Unable to refill the buffer pool due to insufficient 2724 * system memory. Just release the frame back into the pool, 2725 * otherwise we'll soon end up with an empty buffer pool. 2726 */ 2727 dpaa_fd_release(net_dev, &dq->fd); 2728 return qman_cb_dqrr_consume; 2729 } 2730 2731 if (unlikely(fd_status & FM_FD_STAT_RX_ERRORS) != 0) { 2732 if (net_ratelimit()) 2733 netif_warn(priv, hw, net_dev, "FD status = 0x%08x\n", 2734 fd_status & FM_FD_STAT_RX_ERRORS); 2735 2736 percpu_stats->rx_errors++; 2737 dpaa_fd_release(net_dev, fd); 2738 return qman_cb_dqrr_consume; 2739 } 2740 2741 dma_unmap_page(dpaa_bp->priv->rx_dma_dev, addr, DPAA_BP_RAW_SIZE, 2742 DMA_FROM_DEVICE); 2743 2744 /* prefetch the first 64 bytes of the frame or the SGT start */ 2745 vaddr = phys_to_virt(addr); 2746 prefetch(vaddr + qm_fd_get_offset(fd)); 2747 2748 /* The only FD types that we may receive are contig and S/G */ 2749 WARN_ON((fd_format != qm_fd_contig) && (fd_format != qm_fd_sg)); 2750 2751 /* Account for either the contig buffer or the SGT buffer (depending on 2752 * which case we were in) having been removed from the pool. 2753 */ 2754 count_ptr = this_cpu_ptr(dpaa_bp->percpu_count); 2755 (*count_ptr)--; 2756 2757 /* Extract the timestamp stored in the headroom before running XDP */ 2758 if (priv->rx_tstamp) { 2759 if (!fman_port_get_tstamp(priv->mac_dev->port[RX], vaddr, &ns)) 2760 ts_valid = true; 2761 else 2762 WARN_ONCE(1, "fman_port_get_tstamp failed!\n"); 2763 } 2764 2765 /* Extract the hash stored in the headroom before running XDP */ 2766 if (net_dev->features & NETIF_F_RXHASH && priv->keygen_in_use && 2767 !fman_port_get_hash_result_offset(priv->mac_dev->port[RX], 2768 &hash_offset)) { 2769 hash = be32_to_cpu(*(u32 *)(vaddr + hash_offset)); 2770 hash_valid = true; 2771 } 2772 2773 if (likely(fd_format == qm_fd_contig)) { 2774 xdp_act = dpaa_run_xdp(priv, (struct qm_fd *)fd, vaddr, 2775 dpaa_fq, &xdp_meta_len); 2776 np->xdp_act |= xdp_act; 2777 if (xdp_act != XDP_PASS) { 2778 percpu_stats->rx_packets++; 2779 percpu_stats->rx_bytes += qm_fd_get_length(fd); 2780 return qman_cb_dqrr_consume; 2781 } 2782 skb = contig_fd_to_skb(priv, fd); 2783 } else { 2784 /* XDP doesn't support S/G frames. Return the fragments to the 2785 * buffer pool and release the SGT. 2786 */ 2787 if (READ_ONCE(priv->xdp_prog)) { 2788 WARN_ONCE(1, "S/G frames not supported under XDP\n"); 2789 sgt = vaddr + qm_fd_get_offset(fd); 2790 dpaa_release_sgt_members(sgt); 2791 free_pages((unsigned long)vaddr, 0); 2792 return qman_cb_dqrr_consume; 2793 } 2794 skb = sg_fd_to_skb(priv, fd); 2795 } 2796 if (!skb) 2797 return qman_cb_dqrr_consume; 2798 2799 if (xdp_meta_len) 2800 skb_metadata_set(skb, xdp_meta_len); 2801 2802 /* Set the previously extracted timestamp */ 2803 if (ts_valid) { 2804 shhwtstamps = skb_hwtstamps(skb); 2805 memset(shhwtstamps, 0, sizeof(*shhwtstamps)); 2806 shhwtstamps->hwtstamp = ns_to_ktime(ns); 2807 } 2808 2809 skb->protocol = eth_type_trans(skb, net_dev); 2810 2811 /* Set the previously extracted hash */ 2812 if (hash_valid) { 2813 enum pkt_hash_types type; 2814 2815 /* if L4 exists, it was used in the hash generation */ 2816 type = be32_to_cpu(fd->status) & FM_FD_STAT_L4CV ? 2817 PKT_HASH_TYPE_L4 : PKT_HASH_TYPE_L3; 2818 skb_set_hash(skb, hash, type); 2819 } 2820 2821 skb_len = skb->len; 2822 2823 if (unlikely(netif_receive_skb(skb) == NET_RX_DROP)) { 2824 percpu_stats->rx_dropped++; 2825 return qman_cb_dqrr_consume; 2826 } 2827 2828 percpu_stats->rx_packets++; 2829 percpu_stats->rx_bytes += skb_len; 2830 2831 return qman_cb_dqrr_consume; 2832 } 2833 2834 static enum qman_cb_dqrr_result conf_error_dqrr(struct qman_portal *portal, 2835 struct qman_fq *fq, 2836 const struct qm_dqrr_entry *dq, 2837 bool sched_napi) 2838 { 2839 struct dpaa_percpu_priv *percpu_priv; 2840 struct net_device *net_dev; 2841 struct dpaa_priv *priv; 2842 2843 net_dev = ((struct dpaa_fq *)fq)->net_dev; 2844 priv = netdev_priv(net_dev); 2845 2846 percpu_priv = this_cpu_ptr(priv->percpu_priv); 2847 2848 if (dpaa_eth_napi_schedule(percpu_priv, portal, sched_napi)) 2849 return qman_cb_dqrr_stop; 2850 2851 dpaa_tx_error(net_dev, priv, percpu_priv, &dq->fd, fq->fqid); 2852 2853 return qman_cb_dqrr_consume; 2854 } 2855 2856 static enum qman_cb_dqrr_result conf_dflt_dqrr(struct qman_portal *portal, 2857 struct qman_fq *fq, 2858 const struct qm_dqrr_entry *dq, 2859 bool sched_napi) 2860 { 2861 struct dpaa_percpu_priv *percpu_priv; 2862 struct net_device *net_dev; 2863 struct dpaa_priv *priv; 2864 2865 net_dev = ((struct dpaa_fq *)fq)->net_dev; 2866 priv = netdev_priv(net_dev); 2867 2868 /* Trace the fd */ 2869 trace_dpaa_tx_conf_fd(net_dev, fq, &dq->fd); 2870 2871 percpu_priv = this_cpu_ptr(priv->percpu_priv); 2872 2873 if (dpaa_eth_napi_schedule(percpu_priv, portal, sched_napi)) 2874 return qman_cb_dqrr_stop; 2875 2876 dpaa_tx_conf(net_dev, priv, percpu_priv, &dq->fd, fq->fqid); 2877 2878 return qman_cb_dqrr_consume; 2879 } 2880 2881 static void egress_ern(struct qman_portal *portal, 2882 struct qman_fq *fq, 2883 const union qm_mr_entry *msg) 2884 { 2885 const struct qm_fd *fd = &msg->ern.fd; 2886 struct dpaa_percpu_priv *percpu_priv; 2887 const struct dpaa_priv *priv; 2888 struct net_device *net_dev; 2889 struct sk_buff *skb; 2890 2891 net_dev = ((struct dpaa_fq *)fq)->net_dev; 2892 priv = netdev_priv(net_dev); 2893 percpu_priv = this_cpu_ptr(priv->percpu_priv); 2894 2895 percpu_priv->stats.tx_dropped++; 2896 percpu_priv->stats.tx_fifo_errors++; 2897 count_ern(percpu_priv, msg); 2898 2899 skb = dpaa_cleanup_tx_fd(priv, fd, false); 2900 dev_kfree_skb_any(skb); 2901 } 2902 2903 static const struct dpaa_fq_cbs dpaa_fq_cbs = { 2904 .rx_defq = { .cb = { .dqrr = rx_default_dqrr } }, 2905 .tx_defq = { .cb = { .dqrr = conf_dflt_dqrr } }, 2906 .rx_errq = { .cb = { .dqrr = rx_error_dqrr } }, 2907 .tx_errq = { .cb = { .dqrr = conf_error_dqrr } }, 2908 .egress_ern = { .cb = { .ern = egress_ern } } 2909 }; 2910 2911 static void dpaa_eth_napi_enable(struct dpaa_priv *priv) 2912 { 2913 struct dpaa_percpu_priv *percpu_priv; 2914 int i; 2915 2916 for_each_online_cpu(i) { 2917 percpu_priv = per_cpu_ptr(priv->percpu_priv, i); 2918 2919 percpu_priv->np.down = false; 2920 napi_enable(&percpu_priv->np.napi); 2921 } 2922 } 2923 2924 static void dpaa_eth_napi_disable(struct dpaa_priv *priv) 2925 { 2926 struct dpaa_percpu_priv *percpu_priv; 2927 int i; 2928 2929 for_each_online_cpu(i) { 2930 percpu_priv = per_cpu_ptr(priv->percpu_priv, i); 2931 2932 percpu_priv->np.down = true; 2933 napi_disable(&percpu_priv->np.napi); 2934 } 2935 } 2936 2937 static int dpaa_open(struct net_device *net_dev) 2938 { 2939 struct mac_device *mac_dev; 2940 struct dpaa_priv *priv; 2941 int err, i; 2942 2943 priv = netdev_priv(net_dev); 2944 mac_dev = priv->mac_dev; 2945 dpaa_eth_napi_enable(priv); 2946 2947 err = phylink_of_phy_connect(mac_dev->phylink, 2948 mac_dev->dev->of_node, 0); 2949 if (err) 2950 goto phy_init_failed; 2951 2952 for (i = 0; i < ARRAY_SIZE(mac_dev->port); i++) { 2953 err = fman_port_enable(mac_dev->port[i]); 2954 if (err) 2955 goto mac_start_failed; 2956 } 2957 2958 err = priv->mac_dev->enable(mac_dev->fman_mac); 2959 if (err < 0) { 2960 netif_err(priv, ifup, net_dev, "mac_dev->enable() = %d\n", err); 2961 goto mac_start_failed; 2962 } 2963 phylink_start(mac_dev->phylink); 2964 2965 netif_tx_start_all_queues(net_dev); 2966 2967 return 0; 2968 2969 mac_start_failed: 2970 for (i = 0; i < ARRAY_SIZE(mac_dev->port); i++) 2971 fman_port_disable(mac_dev->port[i]); 2972 phylink_disconnect_phy(mac_dev->phylink); 2973 2974 phy_init_failed: 2975 dpaa_eth_napi_disable(priv); 2976 2977 return err; 2978 } 2979 2980 static int dpaa_eth_stop(struct net_device *net_dev) 2981 { 2982 struct dpaa_priv *priv; 2983 int err; 2984 2985 err = dpaa_stop(net_dev); 2986 2987 priv = netdev_priv(net_dev); 2988 dpaa_eth_napi_disable(priv); 2989 2990 return err; 2991 } 2992 2993 static bool xdp_validate_mtu(struct dpaa_priv *priv, int mtu) 2994 { 2995 int max_contig_data = priv->dpaa_bp->size - priv->rx_headroom; 2996 2997 /* We do not support S/G fragments when XDP is enabled. 2998 * Limit the MTU in relation to the buffer size. 2999 */ 3000 if (mtu + VLAN_ETH_HLEN + ETH_FCS_LEN > max_contig_data) { 3001 dev_warn(priv->net_dev->dev.parent, 3002 "The maximum MTU for XDP is %d\n", 3003 max_contig_data - VLAN_ETH_HLEN - ETH_FCS_LEN); 3004 return false; 3005 } 3006 3007 return true; 3008 } 3009 3010 static int dpaa_change_mtu(struct net_device *net_dev, int new_mtu) 3011 { 3012 struct dpaa_priv *priv = netdev_priv(net_dev); 3013 3014 if (priv->xdp_prog && !xdp_validate_mtu(priv, new_mtu)) 3015 return -EINVAL; 3016 3017 WRITE_ONCE(net_dev->mtu, new_mtu); 3018 return 0; 3019 } 3020 3021 static int dpaa_setup_xdp(struct net_device *net_dev, struct netdev_bpf *bpf) 3022 { 3023 struct dpaa_priv *priv = netdev_priv(net_dev); 3024 struct bpf_prog *old_prog; 3025 int err; 3026 bool up; 3027 3028 /* S/G fragments are not supported in XDP-mode */ 3029 if (bpf->prog && !xdp_validate_mtu(priv, net_dev->mtu)) { 3030 NL_SET_ERR_MSG_MOD(bpf->extack, "MTU too large for XDP"); 3031 return -EINVAL; 3032 } 3033 3034 up = netif_running(net_dev); 3035 3036 if (up) 3037 dpaa_eth_stop(net_dev); 3038 3039 old_prog = xchg(&priv->xdp_prog, bpf->prog); 3040 if (old_prog) 3041 bpf_prog_put(old_prog); 3042 3043 if (up) { 3044 err = dpaa_open(net_dev); 3045 if (err) { 3046 NL_SET_ERR_MSG_MOD(bpf->extack, "dpaa_open() failed"); 3047 return err; 3048 } 3049 } 3050 3051 return 0; 3052 } 3053 3054 static int dpaa_xdp(struct net_device *net_dev, struct netdev_bpf *xdp) 3055 { 3056 switch (xdp->command) { 3057 case XDP_SETUP_PROG: 3058 return dpaa_setup_xdp(net_dev, xdp); 3059 default: 3060 return -EINVAL; 3061 } 3062 } 3063 3064 static int dpaa_xdp_xmit(struct net_device *net_dev, int n, 3065 struct xdp_frame **frames, u32 flags) 3066 { 3067 struct xdp_frame *xdpf; 3068 int i, nxmit = 0; 3069 3070 if (unlikely(flags & ~XDP_XMIT_FLAGS_MASK)) 3071 return -EINVAL; 3072 3073 if (!netif_running(net_dev)) 3074 return -ENETDOWN; 3075 3076 for (i = 0; i < n; i++) { 3077 xdpf = frames[i]; 3078 if (dpaa_xdp_xmit_frame(net_dev, xdpf)) 3079 break; 3080 nxmit++; 3081 } 3082 3083 return nxmit; 3084 } 3085 3086 static int dpaa_ts_ioctl(struct net_device *dev, struct ifreq *rq, int cmd) 3087 { 3088 struct dpaa_priv *priv = netdev_priv(dev); 3089 struct hwtstamp_config config; 3090 3091 if (copy_from_user(&config, rq->ifr_data, sizeof(config))) 3092 return -EFAULT; 3093 3094 switch (config.tx_type) { 3095 case HWTSTAMP_TX_OFF: 3096 /* Couldn't disable rx/tx timestamping separately. 3097 * Do nothing here. 3098 */ 3099 priv->tx_tstamp = false; 3100 break; 3101 case HWTSTAMP_TX_ON: 3102 priv->mac_dev->set_tstamp(priv->mac_dev->fman_mac, true); 3103 priv->tx_tstamp = true; 3104 break; 3105 default: 3106 return -ERANGE; 3107 } 3108 3109 if (config.rx_filter == HWTSTAMP_FILTER_NONE) { 3110 /* Couldn't disable rx/tx timestamping separately. 3111 * Do nothing here. 3112 */ 3113 priv->rx_tstamp = false; 3114 } else { 3115 priv->mac_dev->set_tstamp(priv->mac_dev->fman_mac, true); 3116 priv->rx_tstamp = true; 3117 /* TS is set for all frame types, not only those requested */ 3118 config.rx_filter = HWTSTAMP_FILTER_ALL; 3119 } 3120 3121 return copy_to_user(rq->ifr_data, &config, sizeof(config)) ? 3122 -EFAULT : 0; 3123 } 3124 3125 static int dpaa_ioctl(struct net_device *net_dev, struct ifreq *rq, int cmd) 3126 { 3127 int ret = -EINVAL; 3128 struct dpaa_priv *priv = netdev_priv(net_dev); 3129 3130 if (cmd == SIOCGMIIREG) { 3131 if (net_dev->phydev) 3132 return phylink_mii_ioctl(priv->mac_dev->phylink, rq, 3133 cmd); 3134 } 3135 3136 if (cmd == SIOCSHWTSTAMP) 3137 return dpaa_ts_ioctl(net_dev, rq, cmd); 3138 3139 return ret; 3140 } 3141 3142 static const struct net_device_ops dpaa_ops = { 3143 .ndo_open = dpaa_open, 3144 .ndo_start_xmit = dpaa_start_xmit, 3145 .ndo_stop = dpaa_eth_stop, 3146 .ndo_tx_timeout = dpaa_tx_timeout, 3147 .ndo_get_stats64 = dpaa_get_stats64, 3148 .ndo_change_carrier = fixed_phy_change_carrier, 3149 .ndo_set_mac_address = dpaa_set_mac_address, 3150 .ndo_validate_addr = eth_validate_addr, 3151 .ndo_set_rx_mode = dpaa_set_rx_mode, 3152 .ndo_eth_ioctl = dpaa_ioctl, 3153 .ndo_setup_tc = dpaa_setup_tc, 3154 .ndo_change_mtu = dpaa_change_mtu, 3155 .ndo_bpf = dpaa_xdp, 3156 .ndo_xdp_xmit = dpaa_xdp_xmit, 3157 }; 3158 3159 static int dpaa_napi_add(struct net_device *net_dev) 3160 { 3161 struct dpaa_priv *priv = netdev_priv(net_dev); 3162 struct dpaa_percpu_priv *percpu_priv; 3163 int cpu; 3164 3165 for_each_possible_cpu(cpu) { 3166 percpu_priv = per_cpu_ptr(priv->percpu_priv, cpu); 3167 3168 netif_napi_add(net_dev, &percpu_priv->np.napi, dpaa_eth_poll); 3169 } 3170 3171 return 0; 3172 } 3173 3174 static void dpaa_napi_del(struct net_device *net_dev) 3175 { 3176 struct dpaa_priv *priv = netdev_priv(net_dev); 3177 struct dpaa_percpu_priv *percpu_priv; 3178 int cpu; 3179 3180 for_each_possible_cpu(cpu) { 3181 percpu_priv = per_cpu_ptr(priv->percpu_priv, cpu); 3182 3183 __netif_napi_del(&percpu_priv->np.napi); 3184 } 3185 synchronize_net(); 3186 } 3187 3188 static inline void dpaa_bp_free_pf(const struct dpaa_bp *bp, 3189 struct bm_buffer *bmb) 3190 { 3191 dma_addr_t addr = bm_buf_addr(bmb); 3192 3193 dma_unmap_page(bp->priv->rx_dma_dev, addr, DPAA_BP_RAW_SIZE, 3194 DMA_FROM_DEVICE); 3195 3196 skb_free_frag(phys_to_virt(addr)); 3197 } 3198 3199 /* Alloc the dpaa_bp struct and configure default values */ 3200 static struct dpaa_bp *dpaa_bp_alloc(struct device *dev) 3201 { 3202 struct dpaa_bp *dpaa_bp; 3203 3204 dpaa_bp = devm_kzalloc(dev, sizeof(*dpaa_bp), GFP_KERNEL); 3205 if (!dpaa_bp) 3206 return ERR_PTR(-ENOMEM); 3207 3208 dpaa_bp->bpid = FSL_DPAA_BPID_INV; 3209 dpaa_bp->percpu_count = devm_alloc_percpu(dev, *dpaa_bp->percpu_count); 3210 if (!dpaa_bp->percpu_count) 3211 return ERR_PTR(-ENOMEM); 3212 3213 dpaa_bp->config_count = FSL_DPAA_ETH_MAX_BUF_COUNT; 3214 3215 dpaa_bp->seed_cb = dpaa_bp_seed; 3216 dpaa_bp->free_buf_cb = dpaa_bp_free_pf; 3217 3218 return dpaa_bp; 3219 } 3220 3221 /* Place all ingress FQs (Rx Default, Rx Error) in a dedicated CGR. 3222 * We won't be sending congestion notifications to FMan; for now, we just use 3223 * this CGR to generate enqueue rejections to FMan in order to drop the frames 3224 * before they reach our ingress queues and eat up memory. 3225 */ 3226 static int dpaa_ingress_cgr_init(struct dpaa_priv *priv) 3227 { 3228 struct qm_mcc_initcgr initcgr; 3229 u32 cs_th; 3230 int err; 3231 3232 err = qman_alloc_cgrid(&priv->ingress_cgr.cgrid); 3233 if (err < 0) { 3234 if (netif_msg_drv(priv)) 3235 pr_err("Error %d allocating CGR ID\n", err); 3236 goto out_error; 3237 } 3238 3239 /* Enable CS TD, but disable Congestion State Change Notifications. */ 3240 memset(&initcgr, 0, sizeof(initcgr)); 3241 initcgr.we_mask = cpu_to_be16(QM_CGR_WE_CS_THRES); 3242 initcgr.cgr.cscn_en = QM_CGR_EN; 3243 cs_th = DPAA_INGRESS_CS_THRESHOLD; 3244 qm_cgr_cs_thres_set64(&initcgr.cgr.cs_thres, cs_th, 1); 3245 3246 initcgr.we_mask |= cpu_to_be16(QM_CGR_WE_CSTD_EN); 3247 initcgr.cgr.cstd_en = QM_CGR_EN; 3248 3249 /* This CGR will be associated with the SWP affined to the current CPU. 3250 * However, we'll place all our ingress FQs in it. 3251 */ 3252 err = qman_create_cgr(&priv->ingress_cgr, QMAN_CGR_FLAG_USE_INIT, 3253 &initcgr); 3254 if (err < 0) { 3255 if (netif_msg_drv(priv)) 3256 pr_err("Error %d creating ingress CGR with ID %d\n", 3257 err, priv->ingress_cgr.cgrid); 3258 qman_release_cgrid(priv->ingress_cgr.cgrid); 3259 goto out_error; 3260 } 3261 if (netif_msg_drv(priv)) 3262 pr_debug("Created ingress CGR %d for netdev with hwaddr %pM\n", 3263 priv->ingress_cgr.cgrid, priv->mac_dev->addr); 3264 3265 priv->use_ingress_cgr = true; 3266 3267 out_error: 3268 return err; 3269 } 3270 3271 static u16 dpaa_get_headroom(struct dpaa_buffer_layout *bl, 3272 enum port_type port) 3273 { 3274 u16 headroom; 3275 3276 /* The frame headroom must accommodate: 3277 * - the driver private data area 3278 * - parse results, hash results, timestamp if selected 3279 * If either hash results or time stamp are selected, both will 3280 * be copied to/from the frame headroom, as TS is located between PR and 3281 * HR in the IC and IC copy size has a granularity of 16bytes 3282 * (see description of FMBM_RICP and FMBM_TICP registers in DPAARM) 3283 * 3284 * Also make sure the headroom is a multiple of data_align bytes 3285 */ 3286 headroom = (u16)(bl[port].priv_data_size + DPAA_HWA_SIZE); 3287 3288 if (port == RX) { 3289 #ifdef CONFIG_DPAA_ERRATUM_A050385 3290 if (unlikely(fman_has_errata_a050385())) 3291 headroom = XDP_PACKET_HEADROOM; 3292 #endif 3293 3294 return ALIGN(headroom, DPAA_FD_RX_DATA_ALIGNMENT); 3295 } else { 3296 return ALIGN(headroom, DPAA_FD_DATA_ALIGNMENT); 3297 } 3298 } 3299 3300 static int dpaa_eth_probe(struct platform_device *pdev) 3301 { 3302 struct net_device *net_dev = NULL; 3303 struct dpaa_bp *dpaa_bp = NULL; 3304 struct dpaa_fq *dpaa_fq, *tmp; 3305 struct dpaa_priv *priv = NULL; 3306 struct fm_port_fqs port_fqs; 3307 struct mac_device *mac_dev; 3308 int err = 0, channel; 3309 struct device *dev; 3310 3311 dev = &pdev->dev; 3312 3313 err = bman_is_probed(); 3314 if (!err) 3315 return -EPROBE_DEFER; 3316 if (err < 0) { 3317 dev_err(dev, "failing probe due to bman probe error\n"); 3318 return -ENODEV; 3319 } 3320 err = qman_is_probed(); 3321 if (!err) 3322 return -EPROBE_DEFER; 3323 if (err < 0) { 3324 dev_err(dev, "failing probe due to qman probe error\n"); 3325 return -ENODEV; 3326 } 3327 err = bman_portals_probed(); 3328 if (!err) 3329 return -EPROBE_DEFER; 3330 if (err < 0) { 3331 dev_err(dev, 3332 "failing probe due to bman portals probe error\n"); 3333 return -ENODEV; 3334 } 3335 err = qman_portals_probed(); 3336 if (!err) 3337 return -EPROBE_DEFER; 3338 if (err < 0) { 3339 dev_err(dev, 3340 "failing probe due to qman portals probe error\n"); 3341 return -ENODEV; 3342 } 3343 3344 /* Allocate this early, so we can store relevant information in 3345 * the private area 3346 */ 3347 net_dev = alloc_etherdev_mq(sizeof(*priv), dpaa_max_num_txqs()); 3348 if (!net_dev) { 3349 dev_err(dev, "alloc_etherdev_mq() failed\n"); 3350 return -ENOMEM; 3351 } 3352 3353 /* Do this here, so we can be verbose early */ 3354 SET_NETDEV_DEV(net_dev, dev->parent); 3355 dev_set_drvdata(dev, net_dev); 3356 3357 priv = netdev_priv(net_dev); 3358 priv->net_dev = net_dev; 3359 3360 priv->msg_enable = netif_msg_init(debug, DPAA_MSG_DEFAULT); 3361 3362 priv->egress_fqs = devm_kcalloc(dev, dpaa_max_num_txqs(), 3363 sizeof(*priv->egress_fqs), 3364 GFP_KERNEL); 3365 if (!priv->egress_fqs) { 3366 err = -ENOMEM; 3367 goto free_netdev; 3368 } 3369 3370 priv->conf_fqs = devm_kcalloc(dev, dpaa_max_num_txqs(), 3371 sizeof(*priv->conf_fqs), 3372 GFP_KERNEL); 3373 if (!priv->conf_fqs) { 3374 err = -ENOMEM; 3375 goto free_netdev; 3376 } 3377 3378 mac_dev = dpaa_mac_dev_get(pdev); 3379 if (IS_ERR(mac_dev)) { 3380 netdev_err(net_dev, "dpaa_mac_dev_get() failed\n"); 3381 err = PTR_ERR(mac_dev); 3382 goto free_netdev; 3383 } 3384 3385 /* Devices used for DMA mapping */ 3386 priv->rx_dma_dev = fman_port_get_device(mac_dev->port[RX]); 3387 priv->tx_dma_dev = fman_port_get_device(mac_dev->port[TX]); 3388 err = dma_coerce_mask_and_coherent(priv->rx_dma_dev, DMA_BIT_MASK(40)); 3389 if (!err) 3390 err = dma_coerce_mask_and_coherent(priv->tx_dma_dev, 3391 DMA_BIT_MASK(40)); 3392 if (err) { 3393 netdev_err(net_dev, "dma_coerce_mask_and_coherent() failed\n"); 3394 goto free_netdev; 3395 } 3396 3397 /* If fsl_fm_max_frm is set to a higher value than the all-common 1500, 3398 * we choose conservatively and let the user explicitly set a higher 3399 * MTU via ifconfig. Otherwise, the user may end up with different MTUs 3400 * in the same LAN. 3401 * If on the other hand fsl_fm_max_frm has been chosen below 1500, 3402 * start with the maximum allowed. 3403 */ 3404 net_dev->mtu = min(dpaa_get_max_mtu(), ETH_DATA_LEN); 3405 3406 netdev_dbg(net_dev, "Setting initial MTU on net device: %d\n", 3407 net_dev->mtu); 3408 3409 priv->buf_layout[RX].priv_data_size = DPAA_RX_PRIV_DATA_SIZE; /* Rx */ 3410 priv->buf_layout[TX].priv_data_size = DPAA_TX_PRIV_DATA_SIZE; /* Tx */ 3411 3412 /* bp init */ 3413 dpaa_bp = dpaa_bp_alloc(dev); 3414 if (IS_ERR(dpaa_bp)) { 3415 err = PTR_ERR(dpaa_bp); 3416 goto free_dpaa_bps; 3417 } 3418 /* the raw size of the buffers used for reception */ 3419 dpaa_bp->raw_size = DPAA_BP_RAW_SIZE; 3420 /* avoid runtime computations by keeping the usable size here */ 3421 dpaa_bp->size = dpaa_bp_size(dpaa_bp->raw_size); 3422 dpaa_bp->priv = priv; 3423 3424 err = dpaa_bp_alloc_pool(dpaa_bp); 3425 if (err < 0) 3426 goto free_dpaa_bps; 3427 priv->dpaa_bp = dpaa_bp; 3428 3429 INIT_LIST_HEAD(&priv->dpaa_fq_list); 3430 3431 memset(&port_fqs, 0, sizeof(port_fqs)); 3432 3433 err = dpaa_alloc_all_fqs(dev, &priv->dpaa_fq_list, &port_fqs); 3434 if (err < 0) { 3435 dev_err(dev, "dpaa_alloc_all_fqs() failed\n"); 3436 goto free_dpaa_bps; 3437 } 3438 3439 priv->mac_dev = mac_dev; 3440 3441 channel = dpaa_get_channel(); 3442 if (channel < 0) { 3443 dev_err(dev, "dpaa_get_channel() failed\n"); 3444 err = channel; 3445 goto free_dpaa_bps; 3446 } 3447 3448 priv->channel = (u16)channel; 3449 3450 /* Walk the CPUs with affine portals 3451 * and add this pool channel to each's dequeue mask. 3452 */ 3453 dpaa_eth_add_channel(priv->channel, &pdev->dev); 3454 3455 err = dpaa_fq_setup(priv, &dpaa_fq_cbs, priv->mac_dev->port[TX]); 3456 if (err) 3457 goto free_dpaa_bps; 3458 3459 /* Create a congestion group for this netdev, with 3460 * dynamically-allocated CGR ID. 3461 * Must be executed after probing the MAC, but before 3462 * assigning the egress FQs to the CGRs. 3463 */ 3464 err = dpaa_eth_cgr_init(priv); 3465 if (err < 0) { 3466 dev_err(dev, "Error initializing CGR\n"); 3467 goto free_dpaa_bps; 3468 } 3469 3470 err = dpaa_ingress_cgr_init(priv); 3471 if (err < 0) { 3472 dev_err(dev, "Error initializing ingress CGR\n"); 3473 goto delete_egress_cgr; 3474 } 3475 3476 /* Add the FQs to the interface, and make them active */ 3477 list_for_each_entry_safe(dpaa_fq, tmp, &priv->dpaa_fq_list, list) { 3478 err = dpaa_fq_init(dpaa_fq, false); 3479 if (err < 0) 3480 goto free_dpaa_fqs; 3481 } 3482 3483 priv->tx_headroom = dpaa_get_headroom(priv->buf_layout, TX); 3484 priv->rx_headroom = dpaa_get_headroom(priv->buf_layout, RX); 3485 3486 /* All real interfaces need their ports initialized */ 3487 err = dpaa_eth_init_ports(mac_dev, dpaa_bp, &port_fqs, 3488 &priv->buf_layout[0], dev); 3489 if (err) 3490 goto free_dpaa_fqs; 3491 3492 /* Rx traffic distribution based on keygen hashing defaults to on */ 3493 priv->keygen_in_use = true; 3494 3495 priv->percpu_priv = devm_alloc_percpu(dev, *priv->percpu_priv); 3496 if (!priv->percpu_priv) { 3497 dev_err(dev, "devm_alloc_percpu() failed\n"); 3498 err = -ENOMEM; 3499 goto free_dpaa_fqs; 3500 } 3501 3502 priv->num_tc = 1; 3503 netif_set_real_num_tx_queues(net_dev, 3504 priv->num_tc * dpaa_num_txqs_per_tc()); 3505 3506 /* Initialize NAPI */ 3507 err = dpaa_napi_add(net_dev); 3508 if (err < 0) 3509 goto delete_dpaa_napi; 3510 3511 err = dpaa_netdev_init(net_dev, &dpaa_ops, tx_timeout); 3512 if (err < 0) 3513 goto delete_dpaa_napi; 3514 3515 dpaa_eth_sysfs_init(&net_dev->dev); 3516 3517 netif_info(priv, probe, net_dev, "Probed interface %s\n", 3518 net_dev->name); 3519 3520 return 0; 3521 3522 delete_dpaa_napi: 3523 dpaa_napi_del(net_dev); 3524 free_dpaa_fqs: 3525 dpaa_fq_free(dev, &priv->dpaa_fq_list); 3526 qman_delete_cgr_safe(&priv->ingress_cgr); 3527 qman_release_cgrid(priv->ingress_cgr.cgrid); 3528 delete_egress_cgr: 3529 qman_delete_cgr_safe(&priv->cgr_data.cgr); 3530 qman_release_cgrid(priv->cgr_data.cgr.cgrid); 3531 free_dpaa_bps: 3532 dpaa_bps_free(priv); 3533 free_netdev: 3534 dev_set_drvdata(dev, NULL); 3535 free_netdev(net_dev); 3536 3537 return err; 3538 } 3539 3540 static void dpaa_remove(struct platform_device *pdev) 3541 { 3542 struct net_device *net_dev; 3543 struct dpaa_priv *priv; 3544 struct device *dev; 3545 int err; 3546 3547 dev = &pdev->dev; 3548 net_dev = dev_get_drvdata(dev); 3549 3550 priv = netdev_priv(net_dev); 3551 3552 dpaa_eth_sysfs_remove(dev); 3553 3554 dev_set_drvdata(dev, NULL); 3555 unregister_netdev(net_dev); 3556 phylink_destroy(priv->mac_dev->phylink); 3557 3558 err = dpaa_fq_free(dev, &priv->dpaa_fq_list); 3559 if (err) 3560 dev_err(dev, "Failed to free FQs on remove (%pE)\n", 3561 ERR_PTR(err)); 3562 3563 qman_delete_cgr_safe(&priv->ingress_cgr); 3564 qman_release_cgrid(priv->ingress_cgr.cgrid); 3565 qman_delete_cgr_safe(&priv->cgr_data.cgr); 3566 qman_release_cgrid(priv->cgr_data.cgr.cgrid); 3567 3568 dpaa_napi_del(net_dev); 3569 3570 dpaa_bps_free(priv); 3571 3572 free_netdev(net_dev); 3573 } 3574 3575 static const struct platform_device_id dpaa_devtype[] = { 3576 { 3577 .name = "dpaa-ethernet", 3578 .driver_data = 0, 3579 }, { 3580 } 3581 }; 3582 MODULE_DEVICE_TABLE(platform, dpaa_devtype); 3583 3584 static struct platform_driver dpaa_driver = { 3585 .driver = { 3586 .name = KBUILD_MODNAME, 3587 }, 3588 .id_table = dpaa_devtype, 3589 .probe = dpaa_eth_probe, 3590 .remove = dpaa_remove 3591 }; 3592 3593 static int __init dpaa_load(void) 3594 { 3595 int err; 3596 3597 pr_debug("FSL DPAA Ethernet driver\n"); 3598 3599 /* initialize dpaa_eth mirror values */ 3600 dpaa_rx_extra_headroom = fman_get_rx_extra_headroom(); 3601 dpaa_max_frm = fman_get_max_frm(); 3602 3603 err = platform_driver_register(&dpaa_driver); 3604 if (err < 0) 3605 pr_err("Error, platform_driver_register() = %d\n", err); 3606 3607 return err; 3608 } 3609 module_init(dpaa_load); 3610 3611 static void __exit dpaa_unload(void) 3612 { 3613 platform_driver_unregister(&dpaa_driver); 3614 3615 /* Only one channel is used and needs to be released after all 3616 * interfaces are removed 3617 */ 3618 dpaa_release_channel(); 3619 } 3620 module_exit(dpaa_unload); 3621 3622 MODULE_LICENSE("Dual BSD/GPL"); 3623 MODULE_DESCRIPTION("FSL DPAA Ethernet driver"); 3624