linux/drivers/net/ethernet/cavium/thunder/nicvf_main.c
<<
>>
Prefs
   1/*
   2 * Copyright (C) 2015 Cavium, Inc.
   3 *
   4 * This program is free software; you can redistribute it and/or modify it
   5 * under the terms of version 2 of the GNU General Public License
   6 * as published by the Free Software Foundation.
   7 */
   8
   9#include <linux/module.h>
  10#include <linux/interrupt.h>
  11#include <linux/pci.h>
  12#include <linux/netdevice.h>
  13#include <linux/if_vlan.h>
  14#include <linux/etherdevice.h>
  15#include <linux/ethtool.h>
  16#include <linux/log2.h>
  17#include <linux/prefetch.h>
  18#include <linux/irq.h>
  19
  20#include "nic_reg.h"
  21#include "nic.h"
  22#include "nicvf_queues.h"
  23#include "thunder_bgx.h"
  24
  25#define DRV_NAME        "thunder-nicvf"
  26#define DRV_VERSION     "1.0"
  27
  28/* Supported devices */
  29static const struct pci_device_id nicvf_id_table[] = {
  30        { PCI_DEVICE_SUB(PCI_VENDOR_ID_CAVIUM,
  31                         PCI_DEVICE_ID_THUNDER_NIC_VF,
  32                         PCI_VENDOR_ID_CAVIUM,
  33                         PCI_SUBSYS_DEVID_88XX_NIC_VF) },
  34        { PCI_DEVICE_SUB(PCI_VENDOR_ID_CAVIUM,
  35                         PCI_DEVICE_ID_THUNDER_PASS1_NIC_VF,
  36                         PCI_VENDOR_ID_CAVIUM,
  37                         PCI_SUBSYS_DEVID_88XX_PASS1_NIC_VF) },
  38        { PCI_DEVICE_SUB(PCI_VENDOR_ID_CAVIUM,
  39                         PCI_DEVICE_ID_THUNDER_NIC_VF,
  40                         PCI_VENDOR_ID_CAVIUM,
  41                         PCI_SUBSYS_DEVID_81XX_NIC_VF) },
  42        { PCI_DEVICE_SUB(PCI_VENDOR_ID_CAVIUM,
  43                         PCI_DEVICE_ID_THUNDER_NIC_VF,
  44                         PCI_VENDOR_ID_CAVIUM,
  45                         PCI_SUBSYS_DEVID_83XX_NIC_VF) },
  46        { 0, }  /* end of table */
  47};
  48
  49MODULE_AUTHOR("Sunil Goutham");
  50MODULE_DESCRIPTION("Cavium Thunder NIC Virtual Function Driver");
  51MODULE_LICENSE("GPL v2");
  52MODULE_VERSION(DRV_VERSION);
  53MODULE_DEVICE_TABLE(pci, nicvf_id_table);
  54
  55static int debug = 0x00;
  56module_param(debug, int, 0644);
  57MODULE_PARM_DESC(debug, "Debug message level bitmap");
  58
  59static int cpi_alg = CPI_ALG_NONE;
  60module_param(cpi_alg, int, S_IRUGO);
  61MODULE_PARM_DESC(cpi_alg,
  62                 "PFC algorithm (0=none, 1=VLAN, 2=VLAN16, 3=IP Diffserv)");
  63
  64static inline u8 nicvf_netdev_qidx(struct nicvf *nic, u8 qidx)
  65{
  66        if (nic->sqs_mode)
  67                return qidx + ((nic->sqs_id + 1) * MAX_CMP_QUEUES_PER_QS);
  68        else
  69                return qidx;
  70}
  71
  72/* The Cavium ThunderX network controller can *only* be found in SoCs
  73 * containing the ThunderX ARM64 CPU implementation.  All accesses to the device
  74 * registers on this platform are implicitly strongly ordered with respect
  75 * to memory accesses. So writeq_relaxed() and readq_relaxed() are safe to use
  76 * with no memory barriers in this driver.  The readq()/writeq() functions add
  77 * explicit ordering operation which in this case are redundant, and only
  78 * add overhead.
  79 */
  80
  81/* Register read/write APIs */
  82void nicvf_reg_write(struct nicvf *nic, u64 offset, u64 val)
  83{
  84        writeq_relaxed(val, nic->reg_base + offset);
  85}
  86
  87u64 nicvf_reg_read(struct nicvf *nic, u64 offset)
  88{
  89        return readq_relaxed(nic->reg_base + offset);
  90}
  91
  92void nicvf_queue_reg_write(struct nicvf *nic, u64 offset,
  93                           u64 qidx, u64 val)
  94{
  95        void __iomem *addr = nic->reg_base + offset;
  96
  97        writeq_relaxed(val, addr + (qidx << NIC_Q_NUM_SHIFT));
  98}
  99
 100u64 nicvf_queue_reg_read(struct nicvf *nic, u64 offset, u64 qidx)
 101{
 102        void __iomem *addr = nic->reg_base + offset;
 103
 104        return readq_relaxed(addr + (qidx << NIC_Q_NUM_SHIFT));
 105}
 106
 107/* VF -> PF mailbox communication */
 108static void nicvf_write_to_mbx(struct nicvf *nic, union nic_mbx *mbx)
 109{
 110        u64 *msg = (u64 *)mbx;
 111
 112        nicvf_reg_write(nic, NIC_VF_PF_MAILBOX_0_1 + 0, msg[0]);
 113        nicvf_reg_write(nic, NIC_VF_PF_MAILBOX_0_1 + 8, msg[1]);
 114}
 115
 116int nicvf_send_msg_to_pf(struct nicvf *nic, union nic_mbx *mbx)
 117{
 118        int timeout = NIC_MBOX_MSG_TIMEOUT;
 119        int sleep = 10;
 120
 121        nic->pf_acked = false;
 122        nic->pf_nacked = false;
 123
 124        nicvf_write_to_mbx(nic, mbx);
 125
 126        /* Wait for previous message to be acked, timeout 2sec */
 127        while (!nic->pf_acked) {
 128                if (nic->pf_nacked) {
 129                        netdev_err(nic->netdev,
 130                                   "PF NACK to mbox msg 0x%02x from VF%d\n",
 131                                   (mbx->msg.msg & 0xFF), nic->vf_id);
 132                        return -EINVAL;
 133                }
 134                msleep(sleep);
 135                if (nic->pf_acked)
 136                        break;
 137                timeout -= sleep;
 138                if (!timeout) {
 139                        netdev_err(nic->netdev,
 140                                   "PF didn't ACK to mbox msg 0x%02x from VF%d\n",
 141                                   (mbx->msg.msg & 0xFF), nic->vf_id);
 142                        return -EBUSY;
 143                }
 144        }
 145        return 0;
 146}
 147
 148/* Checks if VF is able to comminicate with PF
 149* and also gets the VNIC number this VF is associated to.
 150*/
 151static int nicvf_check_pf_ready(struct nicvf *nic)
 152{
 153        union nic_mbx mbx = {};
 154
 155        mbx.msg.msg = NIC_MBOX_MSG_READY;
 156        if (nicvf_send_msg_to_pf(nic, &mbx)) {
 157                netdev_err(nic->netdev,
 158                           "PF didn't respond to READY msg\n");
 159                return 0;
 160        }
 161
 162        return 1;
 163}
 164
 165static void nicvf_read_bgx_stats(struct nicvf *nic, struct bgx_stats_msg *bgx)
 166{
 167        if (bgx->rx)
 168                nic->bgx_stats.rx_stats[bgx->idx] = bgx->stats;
 169        else
 170                nic->bgx_stats.tx_stats[bgx->idx] = bgx->stats;
 171}
 172
 173static void  nicvf_handle_mbx_intr(struct nicvf *nic)
 174{
 175        union nic_mbx mbx = {};
 176        u64 *mbx_data;
 177        u64 mbx_addr;
 178        int i;
 179
 180        mbx_addr = NIC_VF_PF_MAILBOX_0_1;
 181        mbx_data = (u64 *)&mbx;
 182
 183        for (i = 0; i < NIC_PF_VF_MAILBOX_SIZE; i++) {
 184                *mbx_data = nicvf_reg_read(nic, mbx_addr);
 185                mbx_data++;
 186                mbx_addr += sizeof(u64);
 187        }
 188
 189        netdev_dbg(nic->netdev, "Mbox message: msg: 0x%x\n", mbx.msg.msg);
 190        switch (mbx.msg.msg) {
 191        case NIC_MBOX_MSG_READY:
 192                nic->pf_acked = true;
 193                nic->vf_id = mbx.nic_cfg.vf_id & 0x7F;
 194                nic->tns_mode = mbx.nic_cfg.tns_mode & 0x7F;
 195                nic->node = mbx.nic_cfg.node_id;
 196                if (!nic->set_mac_pending)
 197                        ether_addr_copy(nic->netdev->dev_addr,
 198                                        mbx.nic_cfg.mac_addr);
 199                nic->sqs_mode = mbx.nic_cfg.sqs_mode;
 200                nic->loopback_supported = mbx.nic_cfg.loopback_supported;
 201                nic->link_up = false;
 202                nic->duplex = 0;
 203                nic->speed = 0;
 204                break;
 205        case NIC_MBOX_MSG_ACK:
 206                nic->pf_acked = true;
 207                break;
 208        case NIC_MBOX_MSG_NACK:
 209                nic->pf_nacked = true;
 210                break;
 211        case NIC_MBOX_MSG_RSS_SIZE:
 212                nic->rss_info.rss_size = mbx.rss_size.ind_tbl_size;
 213                nic->pf_acked = true;
 214                break;
 215        case NIC_MBOX_MSG_BGX_STATS:
 216                nicvf_read_bgx_stats(nic, &mbx.bgx_stats);
 217                nic->pf_acked = true;
 218                break;
 219        case NIC_MBOX_MSG_BGX_LINK_CHANGE:
 220                nic->pf_acked = true;
 221                nic->link_up = mbx.link_status.link_up;
 222                nic->duplex = mbx.link_status.duplex;
 223                nic->speed = mbx.link_status.speed;
 224                if (nic->link_up) {
 225                        netdev_info(nic->netdev, "%s: Link is Up %d Mbps %s\n",
 226                                    nic->netdev->name, nic->speed,
 227                                    nic->duplex == DUPLEX_FULL ?
 228                                "Full duplex" : "Half duplex");
 229                        netif_carrier_on(nic->netdev);
 230                        netif_tx_start_all_queues(nic->netdev);
 231                } else {
 232                        netdev_info(nic->netdev, "%s: Link is Down\n",
 233                                    nic->netdev->name);
 234                        netif_carrier_off(nic->netdev);
 235                        netif_tx_stop_all_queues(nic->netdev);
 236                }
 237                break;
 238        case NIC_MBOX_MSG_ALLOC_SQS:
 239                nic->sqs_count = mbx.sqs_alloc.qs_count;
 240                nic->pf_acked = true;
 241                break;
 242        case NIC_MBOX_MSG_SNICVF_PTR:
 243                /* Primary VF: make note of secondary VF's pointer
 244                 * to be used while packet transmission.
 245                 */
 246                nic->snicvf[mbx.nicvf.sqs_id] =
 247                        (struct nicvf *)mbx.nicvf.nicvf;
 248                nic->pf_acked = true;
 249                break;
 250        case NIC_MBOX_MSG_PNICVF_PTR:
 251                /* Secondary VF/Qset: make note of primary VF's pointer
 252                 * to be used while packet reception, to handover packet
 253                 * to primary VF's netdev.
 254                 */
 255                nic->pnicvf = (struct nicvf *)mbx.nicvf.nicvf;
 256                nic->pf_acked = true;
 257                break;
 258        default:
 259                netdev_err(nic->netdev,
 260                           "Invalid message from PF, msg 0x%x\n", mbx.msg.msg);
 261                break;
 262        }
 263        nicvf_clear_intr(nic, NICVF_INTR_MBOX, 0);
 264}
 265
 266static int nicvf_hw_set_mac_addr(struct nicvf *nic, struct net_device *netdev)
 267{
 268        union nic_mbx mbx = {};
 269
 270        mbx.mac.msg = NIC_MBOX_MSG_SET_MAC;
 271        mbx.mac.vf_id = nic->vf_id;
 272        ether_addr_copy(mbx.mac.mac_addr, netdev->dev_addr);
 273
 274        return nicvf_send_msg_to_pf(nic, &mbx);
 275}
 276
 277static void nicvf_config_cpi(struct nicvf *nic)
 278{
 279        union nic_mbx mbx = {};
 280
 281        mbx.cpi_cfg.msg = NIC_MBOX_MSG_CPI_CFG;
 282        mbx.cpi_cfg.vf_id = nic->vf_id;
 283        mbx.cpi_cfg.cpi_alg = nic->cpi_alg;
 284        mbx.cpi_cfg.rq_cnt = nic->qs->rq_cnt;
 285
 286        nicvf_send_msg_to_pf(nic, &mbx);
 287}
 288
 289static void nicvf_get_rss_size(struct nicvf *nic)
 290{
 291        union nic_mbx mbx = {};
 292
 293        mbx.rss_size.msg = NIC_MBOX_MSG_RSS_SIZE;
 294        mbx.rss_size.vf_id = nic->vf_id;
 295        nicvf_send_msg_to_pf(nic, &mbx);
 296}
 297
 298void nicvf_config_rss(struct nicvf *nic)
 299{
 300        union nic_mbx mbx = {};
 301        struct nicvf_rss_info *rss = &nic->rss_info;
 302        int ind_tbl_len = rss->rss_size;
 303        int i, nextq = 0;
 304
 305        mbx.rss_cfg.vf_id = nic->vf_id;
 306        mbx.rss_cfg.hash_bits = rss->hash_bits;
 307        while (ind_tbl_len) {
 308                mbx.rss_cfg.tbl_offset = nextq;
 309                mbx.rss_cfg.tbl_len = min(ind_tbl_len,
 310                                               RSS_IND_TBL_LEN_PER_MBX_MSG);
 311                mbx.rss_cfg.msg = mbx.rss_cfg.tbl_offset ?
 312                          NIC_MBOX_MSG_RSS_CFG_CONT : NIC_MBOX_MSG_RSS_CFG;
 313
 314                for (i = 0; i < mbx.rss_cfg.tbl_len; i++)
 315                        mbx.rss_cfg.ind_tbl[i] = rss->ind_tbl[nextq++];
 316
 317                nicvf_send_msg_to_pf(nic, &mbx);
 318
 319                ind_tbl_len -= mbx.rss_cfg.tbl_len;
 320        }
 321}
 322
 323void nicvf_set_rss_key(struct nicvf *nic)
 324{
 325        struct nicvf_rss_info *rss = &nic->rss_info;
 326        u64 key_addr = NIC_VNIC_RSS_KEY_0_4;
 327        int idx;
 328
 329        for (idx = 0; idx < RSS_HASH_KEY_SIZE; idx++) {
 330                nicvf_reg_write(nic, key_addr, rss->key[idx]);
 331                key_addr += sizeof(u64);
 332        }
 333}
 334
 335static int nicvf_rss_init(struct nicvf *nic)
 336{
 337        struct nicvf_rss_info *rss = &nic->rss_info;
 338        int idx;
 339
 340        nicvf_get_rss_size(nic);
 341
 342        if (cpi_alg != CPI_ALG_NONE) {
 343                rss->enable = false;
 344                rss->hash_bits = 0;
 345                return 0;
 346        }
 347
 348        rss->enable = true;
 349
 350        netdev_rss_key_fill(rss->key, RSS_HASH_KEY_SIZE * sizeof(u64));
 351        nicvf_set_rss_key(nic);
 352
 353        rss->cfg = RSS_IP_HASH_ENA | RSS_TCP_HASH_ENA | RSS_UDP_HASH_ENA;
 354        nicvf_reg_write(nic, NIC_VNIC_RSS_CFG, rss->cfg);
 355
 356        rss->hash_bits =  ilog2(rounddown_pow_of_two(rss->rss_size));
 357
 358        for (idx = 0; idx < rss->rss_size; idx++)
 359                rss->ind_tbl[idx] = ethtool_rxfh_indir_default(idx,
 360                                                               nic->rx_queues);
 361        nicvf_config_rss(nic);
 362        return 1;
 363}
 364
 365/* Request PF to allocate additional Qsets */
 366static void nicvf_request_sqs(struct nicvf *nic)
 367{
 368        union nic_mbx mbx = {};
 369        int sqs;
 370        int sqs_count = nic->sqs_count;
 371        int rx_queues = 0, tx_queues = 0;
 372
 373        /* Only primary VF should request */
 374        if (nic->sqs_mode ||  !nic->sqs_count)
 375                return;
 376
 377        mbx.sqs_alloc.msg = NIC_MBOX_MSG_ALLOC_SQS;
 378        mbx.sqs_alloc.vf_id = nic->vf_id;
 379        mbx.sqs_alloc.qs_count = nic->sqs_count;
 380        if (nicvf_send_msg_to_pf(nic, &mbx)) {
 381                /* No response from PF */
 382                nic->sqs_count = 0;
 383                return;
 384        }
 385
 386        /* Return if no Secondary Qsets available */
 387        if (!nic->sqs_count)
 388                return;
 389
 390        if (nic->rx_queues > MAX_RCV_QUEUES_PER_QS)
 391                rx_queues = nic->rx_queues - MAX_RCV_QUEUES_PER_QS;
 392        if (nic->tx_queues > MAX_SND_QUEUES_PER_QS)
 393                tx_queues = nic->tx_queues - MAX_SND_QUEUES_PER_QS;
 394
 395        /* Set no of Rx/Tx queues in each of the SQsets */
 396        for (sqs = 0; sqs < nic->sqs_count; sqs++) {
 397                mbx.nicvf.msg = NIC_MBOX_MSG_SNICVF_PTR;
 398                mbx.nicvf.vf_id = nic->vf_id;
 399                mbx.nicvf.sqs_id = sqs;
 400                nicvf_send_msg_to_pf(nic, &mbx);
 401
 402                nic->snicvf[sqs]->sqs_id = sqs;
 403                if (rx_queues > MAX_RCV_QUEUES_PER_QS) {
 404                        nic->snicvf[sqs]->qs->rq_cnt = MAX_RCV_QUEUES_PER_QS;
 405                        rx_queues -= MAX_RCV_QUEUES_PER_QS;
 406                } else {
 407                        nic->snicvf[sqs]->qs->rq_cnt = rx_queues;
 408                        rx_queues = 0;
 409                }
 410
 411                if (tx_queues > MAX_SND_QUEUES_PER_QS) {
 412                        nic->snicvf[sqs]->qs->sq_cnt = MAX_SND_QUEUES_PER_QS;
 413                        tx_queues -= MAX_SND_QUEUES_PER_QS;
 414                } else {
 415                        nic->snicvf[sqs]->qs->sq_cnt = tx_queues;
 416                        tx_queues = 0;
 417                }
 418
 419                nic->snicvf[sqs]->qs->cq_cnt =
 420                max(nic->snicvf[sqs]->qs->rq_cnt, nic->snicvf[sqs]->qs->sq_cnt);
 421
 422                /* Initialize secondary Qset's queues and its interrupts */
 423                nicvf_open(nic->snicvf[sqs]->netdev);
 424        }
 425
 426        /* Update stack with actual Rx/Tx queue count allocated */
 427        if (sqs_count != nic->sqs_count)
 428                nicvf_set_real_num_queues(nic->netdev,
 429                                          nic->tx_queues, nic->rx_queues);
 430}
 431
 432/* Send this Qset's nicvf pointer to PF.
 433 * PF inturn sends primary VF's nicvf struct to secondary Qsets/VFs
 434 * so that packets received by these Qsets can use primary VF's netdev
 435 */
 436static void nicvf_send_vf_struct(struct nicvf *nic)
 437{
 438        union nic_mbx mbx = {};
 439
 440        mbx.nicvf.msg = NIC_MBOX_MSG_NICVF_PTR;
 441        mbx.nicvf.sqs_mode = nic->sqs_mode;
 442        mbx.nicvf.nicvf = (u64)nic;
 443        nicvf_send_msg_to_pf(nic, &mbx);
 444}
 445
 446static void nicvf_get_primary_vf_struct(struct nicvf *nic)
 447{
 448        union nic_mbx mbx = {};
 449
 450        mbx.nicvf.msg = NIC_MBOX_MSG_PNICVF_PTR;
 451        nicvf_send_msg_to_pf(nic, &mbx);
 452}
 453
 454int nicvf_set_real_num_queues(struct net_device *netdev,
 455                              int tx_queues, int rx_queues)
 456{
 457        int err = 0;
 458
 459        err = netif_set_real_num_tx_queues(netdev, tx_queues);
 460        if (err) {
 461                netdev_err(netdev,
 462                           "Failed to set no of Tx queues: %d\n", tx_queues);
 463                return err;
 464        }
 465
 466        err = netif_set_real_num_rx_queues(netdev, rx_queues);
 467        if (err)
 468                netdev_err(netdev,
 469                           "Failed to set no of Rx queues: %d\n", rx_queues);
 470        return err;
 471}
 472
 473static int nicvf_init_resources(struct nicvf *nic)
 474{
 475        int err;
 476
 477        /* Enable Qset */
 478        nicvf_qset_config(nic, true);
 479
 480        /* Initialize queues and HW for data transfer */
 481        err = nicvf_config_data_transfer(nic, true);
 482        if (err) {
 483                netdev_err(nic->netdev,
 484                           "Failed to alloc/config VF's QSet resources\n");
 485                return err;
 486        }
 487
 488        return 0;
 489}
 490
 491static void nicvf_snd_pkt_handler(struct net_device *netdev,
 492                                  struct cqe_send_t *cqe_tx,
 493                                  int cqe_type, int budget,
 494                                  unsigned int *tx_pkts, unsigned int *tx_bytes)
 495{
 496        struct sk_buff *skb = NULL;
 497        struct nicvf *nic = netdev_priv(netdev);
 498        struct snd_queue *sq;
 499        struct sq_hdr_subdesc *hdr;
 500        struct sq_hdr_subdesc *tso_sqe;
 501
 502        sq = &nic->qs->sq[cqe_tx->sq_idx];
 503
 504        hdr = (struct sq_hdr_subdesc *)GET_SQ_DESC(sq, cqe_tx->sqe_ptr);
 505        if (hdr->subdesc_type != SQ_DESC_TYPE_HEADER)
 506                return;
 507
 508        netdev_dbg(nic->netdev,
 509                   "%s Qset #%d SQ #%d SQ ptr #%d subdesc count %d\n",
 510                   __func__, cqe_tx->sq_qs, cqe_tx->sq_idx,
 511                   cqe_tx->sqe_ptr, hdr->subdesc_cnt);
 512
 513        nicvf_check_cqe_tx_errs(nic, cqe_tx);
 514        skb = (struct sk_buff *)sq->skbuff[cqe_tx->sqe_ptr];
 515        if (skb) {
 516                /* Check for dummy descriptor used for HW TSO offload on 88xx */
 517                if (hdr->dont_send) {
 518                        /* Get actual TSO descriptors and free them */
 519                        tso_sqe =
 520                         (struct sq_hdr_subdesc *)GET_SQ_DESC(sq, hdr->rsvd2);
 521                        nicvf_put_sq_desc(sq, tso_sqe->subdesc_cnt + 1);
 522                }
 523                nicvf_put_sq_desc(sq, hdr->subdesc_cnt + 1);
 524                prefetch(skb);
 525                (*tx_pkts)++;
 526                *tx_bytes += skb->len;
 527                napi_consume_skb(skb, budget);
 528                sq->skbuff[cqe_tx->sqe_ptr] = (u64)NULL;
 529        } else {
 530                /* In case of SW TSO on 88xx, only last segment will have
 531                 * a SKB attached, so just free SQEs here.
 532                 */
 533                if (!nic->hw_tso)
 534                        nicvf_put_sq_desc(sq, hdr->subdesc_cnt + 1);
 535        }
 536}
 537
 538static inline void nicvf_set_rxhash(struct net_device *netdev,
 539                                    struct cqe_rx_t *cqe_rx,
 540                                    struct sk_buff *skb)
 541{
 542        u8 hash_type;
 543        u32 hash;
 544
 545        if (!(netdev->features & NETIF_F_RXHASH))
 546                return;
 547
 548        switch (cqe_rx->rss_alg) {
 549        case RSS_ALG_TCP_IP:
 550        case RSS_ALG_UDP_IP:
 551                hash_type = PKT_HASH_TYPE_L4;
 552                hash = cqe_rx->rss_tag;
 553                break;
 554        case RSS_ALG_IP:
 555                hash_type = PKT_HASH_TYPE_L3;
 556                hash = cqe_rx->rss_tag;
 557                break;
 558        default:
 559                hash_type = PKT_HASH_TYPE_NONE;
 560                hash = 0;
 561        }
 562
 563        skb_set_hash(skb, hash, hash_type);
 564}
 565
 566static void nicvf_rcv_pkt_handler(struct net_device *netdev,
 567                                  struct napi_struct *napi,
 568                                  struct cqe_rx_t *cqe_rx)
 569{
 570        struct sk_buff *skb;
 571        struct nicvf *nic = netdev_priv(netdev);
 572        int err = 0;
 573        int rq_idx;
 574
 575        rq_idx = nicvf_netdev_qidx(nic, cqe_rx->rq_idx);
 576
 577        if (nic->sqs_mode) {
 578                /* Use primary VF's 'nicvf' struct */
 579                nic = nic->pnicvf;
 580                netdev = nic->netdev;
 581        }
 582
 583        /* Check for errors */
 584        err = nicvf_check_cqe_rx_errs(nic, cqe_rx);
 585        if (err && !cqe_rx->rb_cnt)
 586                return;
 587
 588        skb = nicvf_get_rcv_skb(nic, cqe_rx);
 589        if (!skb) {
 590                netdev_dbg(nic->netdev, "Packet not received\n");
 591                return;
 592        }
 593
 594        if (netif_msg_pktdata(nic)) {
 595                netdev_info(nic->netdev, "%s: skb 0x%p, len=%d\n", netdev->name,
 596                            skb, skb->len);
 597                print_hex_dump(KERN_INFO, "", DUMP_PREFIX_OFFSET, 16, 1,
 598                               skb->data, skb->len, true);
 599        }
 600
 601        /* If error packet, drop it here */
 602        if (err) {
 603                dev_kfree_skb_any(skb);
 604                return;
 605        }
 606
 607        nicvf_set_rxhash(netdev, cqe_rx, skb);
 608
 609        skb_record_rx_queue(skb, rq_idx);
 610        if (netdev->hw_features & NETIF_F_RXCSUM) {
 611                /* HW by default verifies TCP/UDP/SCTP checksums */
 612                skb->ip_summed = CHECKSUM_UNNECESSARY;
 613        } else {
 614                skb_checksum_none_assert(skb);
 615        }
 616
 617        skb->protocol = eth_type_trans(skb, netdev);
 618
 619        /* Check for stripped VLAN */
 620        if (cqe_rx->vlan_found && cqe_rx->vlan_stripped)
 621                __vlan_hwaccel_put_tag(skb, htons(ETH_P_8021Q),
 622                                       ntohs((__force __be16)cqe_rx->vlan_tci));
 623
 624        if (napi && (netdev->features & NETIF_F_GRO))
 625                napi_gro_receive(napi, skb);
 626        else
 627                netif_receive_skb(skb);
 628}
 629
 630static int nicvf_cq_intr_handler(struct net_device *netdev, u8 cq_idx,
 631                                 struct napi_struct *napi, int budget)
 632{
 633        int processed_cqe, work_done = 0, tx_done = 0;
 634        int cqe_count, cqe_head;
 635        struct nicvf *nic = netdev_priv(netdev);
 636        struct queue_set *qs = nic->qs;
 637        struct cmp_queue *cq = &qs->cq[cq_idx];
 638        struct cqe_rx_t *cq_desc;
 639        struct netdev_queue *txq;
 640        unsigned int tx_pkts = 0, tx_bytes = 0;
 641
 642        spin_lock_bh(&cq->lock);
 643loop:
 644        processed_cqe = 0;
 645        /* Get no of valid CQ entries to process */
 646        cqe_count = nicvf_queue_reg_read(nic, NIC_QSET_CQ_0_7_STATUS, cq_idx);
 647        cqe_count &= CQ_CQE_COUNT;
 648        if (!cqe_count)
 649                goto done;
 650
 651        /* Get head of the valid CQ entries */
 652        cqe_head = nicvf_queue_reg_read(nic, NIC_QSET_CQ_0_7_HEAD, cq_idx) >> 9;
 653        cqe_head &= 0xFFFF;
 654
 655        netdev_dbg(nic->netdev, "%s CQ%d cqe_count %d cqe_head %d\n",
 656                   __func__, cq_idx, cqe_count, cqe_head);
 657        while (processed_cqe < cqe_count) {
 658                /* Get the CQ descriptor */
 659                cq_desc = (struct cqe_rx_t *)GET_CQ_DESC(cq, cqe_head);
 660                cqe_head++;
 661                cqe_head &= (cq->dmem.q_len - 1);
 662                /* Initiate prefetch for next descriptor */
 663                prefetch((struct cqe_rx_t *)GET_CQ_DESC(cq, cqe_head));
 664
 665                if ((work_done >= budget) && napi &&
 666                    (cq_desc->cqe_type != CQE_TYPE_SEND)) {
 667                        break;
 668                }
 669
 670                netdev_dbg(nic->netdev, "CQ%d cq_desc->cqe_type %d\n",
 671                           cq_idx, cq_desc->cqe_type);
 672                switch (cq_desc->cqe_type) {
 673                case CQE_TYPE_RX:
 674                        nicvf_rcv_pkt_handler(netdev, napi, cq_desc);
 675                        work_done++;
 676                break;
 677                case CQE_TYPE_SEND:
 678                        nicvf_snd_pkt_handler(netdev,
 679                                              (void *)cq_desc, CQE_TYPE_SEND,
 680                                              budget, &tx_pkts, &tx_bytes);
 681                        tx_done++;
 682                break;
 683                case CQE_TYPE_INVALID:
 684                case CQE_TYPE_RX_SPLIT:
 685                case CQE_TYPE_RX_TCP:
 686                case CQE_TYPE_SEND_PTP:
 687                        /* Ignore for now */
 688                break;
 689                }
 690                processed_cqe++;
 691        }
 692        netdev_dbg(nic->netdev,
 693                   "%s CQ%d processed_cqe %d work_done %d budget %d\n",
 694                   __func__, cq_idx, processed_cqe, work_done, budget);
 695
 696        /* Ring doorbell to inform H/W to reuse processed CQEs */
 697        nicvf_queue_reg_write(nic, NIC_QSET_CQ_0_7_DOOR,
 698                              cq_idx, processed_cqe);
 699
 700        if ((work_done < budget) && napi)
 701                goto loop;
 702
 703done:
 704        /* Wakeup TXQ if its stopped earlier due to SQ full */
 705        if (tx_done) {
 706                netdev = nic->pnicvf->netdev;
 707                txq = netdev_get_tx_queue(netdev,
 708                                          nicvf_netdev_qidx(nic, cq_idx));
 709                if (tx_pkts)
 710                        netdev_tx_completed_queue(txq, tx_pkts, tx_bytes);
 711
 712                nic = nic->pnicvf;
 713                if (netif_tx_queue_stopped(txq) && netif_carrier_ok(netdev)) {
 714                        netif_tx_start_queue(txq);
 715                        this_cpu_inc(nic->drv_stats->txq_wake);
 716                        if (netif_msg_tx_err(nic))
 717                                netdev_warn(netdev,
 718                                            "%s: Transmit queue wakeup SQ%d\n",
 719                                            netdev->name, cq_idx);
 720                }
 721        }
 722
 723        spin_unlock_bh(&cq->lock);
 724        return work_done;
 725}
 726
 727static int nicvf_poll(struct napi_struct *napi, int budget)
 728{
 729        u64  cq_head;
 730        int  work_done = 0;
 731        struct net_device *netdev = napi->dev;
 732        struct nicvf *nic = netdev_priv(netdev);
 733        struct nicvf_cq_poll *cq;
 734
 735        cq = container_of(napi, struct nicvf_cq_poll, napi);
 736        work_done = nicvf_cq_intr_handler(netdev, cq->cq_idx, napi, budget);
 737
 738        if (work_done < budget) {
 739                /* Slow packet rate, exit polling */
 740                napi_complete(napi);
 741                /* Re-enable interrupts */
 742                cq_head = nicvf_queue_reg_read(nic, NIC_QSET_CQ_0_7_HEAD,
 743                                               cq->cq_idx);
 744                nicvf_clear_intr(nic, NICVF_INTR_CQ, cq->cq_idx);
 745                nicvf_queue_reg_write(nic, NIC_QSET_CQ_0_7_HEAD,
 746                                      cq->cq_idx, cq_head);
 747                nicvf_enable_intr(nic, NICVF_INTR_CQ, cq->cq_idx);
 748        }
 749        return work_done;
 750}
 751
 752/* Qset error interrupt handler
 753 *
 754 * As of now only CQ errors are handled
 755 */
 756static void nicvf_handle_qs_err(unsigned long data)
 757{
 758        struct nicvf *nic = (struct nicvf *)data;
 759        struct queue_set *qs = nic->qs;
 760        int qidx;
 761        u64 status;
 762
 763        netif_tx_disable(nic->netdev);
 764
 765        /* Check if it is CQ err */
 766        for (qidx = 0; qidx < qs->cq_cnt; qidx++) {
 767                status = nicvf_queue_reg_read(nic, NIC_QSET_CQ_0_7_STATUS,
 768                                              qidx);
 769                if (!(status & CQ_ERR_MASK))
 770                        continue;
 771                /* Process already queued CQEs and reconfig CQ */
 772                nicvf_disable_intr(nic, NICVF_INTR_CQ, qidx);
 773                nicvf_sq_disable(nic, qidx);
 774                nicvf_cq_intr_handler(nic->netdev, qidx, NULL, 0);
 775                nicvf_cmp_queue_config(nic, qs, qidx, true);
 776                nicvf_sq_free_used_descs(nic->netdev, &qs->sq[qidx], qidx);
 777                nicvf_sq_enable(nic, &qs->sq[qidx], qidx);
 778
 779                nicvf_enable_intr(nic, NICVF_INTR_CQ, qidx);
 780        }
 781
 782        netif_tx_start_all_queues(nic->netdev);
 783        /* Re-enable Qset error interrupt */
 784        nicvf_enable_intr(nic, NICVF_INTR_QS_ERR, 0);
 785}
 786
 787static void nicvf_dump_intr_status(struct nicvf *nic)
 788{
 789        if (netif_msg_intr(nic))
 790                netdev_info(nic->netdev, "%s: interrupt status 0x%llx\n",
 791                            nic->netdev->name, nicvf_reg_read(nic, NIC_VF_INT));
 792}
 793
 794static irqreturn_t nicvf_misc_intr_handler(int irq, void *nicvf_irq)
 795{
 796        struct nicvf *nic = (struct nicvf *)nicvf_irq;
 797        u64 intr;
 798
 799        nicvf_dump_intr_status(nic);
 800
 801        intr = nicvf_reg_read(nic, NIC_VF_INT);
 802        /* Check for spurious interrupt */
 803        if (!(intr & NICVF_INTR_MBOX_MASK))
 804                return IRQ_HANDLED;
 805
 806        nicvf_handle_mbx_intr(nic);
 807
 808        return IRQ_HANDLED;
 809}
 810
 811static irqreturn_t nicvf_intr_handler(int irq, void *cq_irq)
 812{
 813        struct nicvf_cq_poll *cq_poll = (struct nicvf_cq_poll *)cq_irq;
 814        struct nicvf *nic = cq_poll->nicvf;
 815        int qidx = cq_poll->cq_idx;
 816
 817        nicvf_dump_intr_status(nic);
 818
 819        /* Disable interrupts */
 820        nicvf_disable_intr(nic, NICVF_INTR_CQ, qidx);
 821
 822        /* Schedule NAPI */
 823        napi_schedule_irqoff(&cq_poll->napi);
 824
 825        /* Clear interrupt */
 826        nicvf_clear_intr(nic, NICVF_INTR_CQ, qidx);
 827
 828        return IRQ_HANDLED;
 829}
 830
 831static irqreturn_t nicvf_rbdr_intr_handler(int irq, void *nicvf_irq)
 832{
 833        struct nicvf *nic = (struct nicvf *)nicvf_irq;
 834        u8 qidx;
 835
 836
 837        nicvf_dump_intr_status(nic);
 838
 839        /* Disable RBDR interrupt and schedule softirq */
 840        for (qidx = 0; qidx < nic->qs->rbdr_cnt; qidx++) {
 841                if (!nicvf_is_intr_enabled(nic, NICVF_INTR_RBDR, qidx))
 842                        continue;
 843                nicvf_disable_intr(nic, NICVF_INTR_RBDR, qidx);
 844                tasklet_hi_schedule(&nic->rbdr_task);
 845                /* Clear interrupt */
 846                nicvf_clear_intr(nic, NICVF_INTR_RBDR, qidx);
 847        }
 848
 849        return IRQ_HANDLED;
 850}
 851
 852static irqreturn_t nicvf_qs_err_intr_handler(int irq, void *nicvf_irq)
 853{
 854        struct nicvf *nic = (struct nicvf *)nicvf_irq;
 855
 856        nicvf_dump_intr_status(nic);
 857
 858        /* Disable Qset err interrupt and schedule softirq */
 859        nicvf_disable_intr(nic, NICVF_INTR_QS_ERR, 0);
 860        tasklet_hi_schedule(&nic->qs_err_task);
 861        nicvf_clear_intr(nic, NICVF_INTR_QS_ERR, 0);
 862
 863        return IRQ_HANDLED;
 864}
 865
 866static int nicvf_enable_msix(struct nicvf *nic)
 867{
 868        int ret, vec;
 869
 870        nic->num_vec = NIC_VF_MSIX_VECTORS;
 871
 872        for (vec = 0; vec < nic->num_vec; vec++)
 873                nic->msix_entries[vec].entry = vec;
 874
 875        ret = pci_enable_msix(nic->pdev, nic->msix_entries, nic->num_vec);
 876        if (ret) {
 877                netdev_err(nic->netdev,
 878                           "Req for #%d msix vectors failed\n", nic->num_vec);
 879                return 0;
 880        }
 881        nic->msix_enabled = 1;
 882        return 1;
 883}
 884
 885static void nicvf_disable_msix(struct nicvf *nic)
 886{
 887        if (nic->msix_enabled) {
 888                pci_disable_msix(nic->pdev);
 889                nic->msix_enabled = 0;
 890                nic->num_vec = 0;
 891        }
 892}
 893
 894static void nicvf_set_irq_affinity(struct nicvf *nic)
 895{
 896        int vec, cpu;
 897        int irqnum;
 898
 899        for (vec = 0; vec < nic->num_vec; vec++) {
 900                if (!nic->irq_allocated[vec])
 901                        continue;
 902
 903                if (!zalloc_cpumask_var(&nic->affinity_mask[vec], GFP_KERNEL))
 904                        return;
 905                 /* CQ interrupts */
 906                if (vec < NICVF_INTR_ID_SQ)
 907                        /* Leave CPU0 for RBDR and other interrupts */
 908                        cpu = nicvf_netdev_qidx(nic, vec) + 1;
 909                else
 910                        cpu = 0;
 911
 912                cpumask_set_cpu(cpumask_local_spread(cpu, nic->node),
 913                                nic->affinity_mask[vec]);
 914                irqnum = nic->msix_entries[vec].vector;
 915                irq_set_affinity_hint(irqnum, nic->affinity_mask[vec]);
 916        }
 917}
 918
 919static int nicvf_register_interrupts(struct nicvf *nic)
 920{
 921        int irq, ret = 0;
 922        int vector;
 923
 924        for_each_cq_irq(irq)
 925                sprintf(nic->irq_name[irq], "%s-rxtx-%d",
 926                        nic->pnicvf->netdev->name,
 927                        nicvf_netdev_qidx(nic, irq));
 928
 929        for_each_sq_irq(irq)
 930                sprintf(nic->irq_name[irq], "%s-sq-%d",
 931                        nic->pnicvf->netdev->name,
 932                        nicvf_netdev_qidx(nic, irq - NICVF_INTR_ID_SQ));
 933
 934        for_each_rbdr_irq(irq)
 935                sprintf(nic->irq_name[irq], "%s-rbdr-%d",
 936                        nic->pnicvf->netdev->name,
 937                        nic->sqs_mode ? (nic->sqs_id + 1) : 0);
 938
 939        /* Register CQ interrupts */
 940        for (irq = 0; irq < nic->qs->cq_cnt; irq++) {
 941                vector = nic->msix_entries[irq].vector;
 942                ret = request_irq(vector, nicvf_intr_handler,
 943                                  0, nic->irq_name[irq], nic->napi[irq]);
 944                if (ret)
 945                        goto err;
 946                nic->irq_allocated[irq] = true;
 947        }
 948
 949        /* Register RBDR interrupt */
 950        for (irq = NICVF_INTR_ID_RBDR;
 951             irq < (NICVF_INTR_ID_RBDR + nic->qs->rbdr_cnt); irq++) {
 952                vector = nic->msix_entries[irq].vector;
 953                ret = request_irq(vector, nicvf_rbdr_intr_handler,
 954                                  0, nic->irq_name[irq], nic);
 955                if (ret)
 956                        goto err;
 957                nic->irq_allocated[irq] = true;
 958        }
 959
 960        /* Register QS error interrupt */
 961        sprintf(nic->irq_name[NICVF_INTR_ID_QS_ERR], "%s-qset-err-%d",
 962                nic->pnicvf->netdev->name,
 963                nic->sqs_mode ? (nic->sqs_id + 1) : 0);
 964        irq = NICVF_INTR_ID_QS_ERR;
 965        ret = request_irq(nic->msix_entries[irq].vector,
 966                          nicvf_qs_err_intr_handler,
 967                          0, nic->irq_name[irq], nic);
 968        if (ret)
 969                goto err;
 970
 971        nic->irq_allocated[irq] = true;
 972
 973        /* Set IRQ affinities */
 974        nicvf_set_irq_affinity(nic);
 975
 976err:
 977        if (ret)
 978                netdev_err(nic->netdev, "request_irq failed, vector %d\n", irq);
 979
 980        return ret;
 981}
 982
 983static void nicvf_unregister_interrupts(struct nicvf *nic)
 984{
 985        int irq;
 986
 987        /* Free registered interrupts */
 988        for (irq = 0; irq < nic->num_vec; irq++) {
 989                if (!nic->irq_allocated[irq])
 990                        continue;
 991
 992                irq_set_affinity_hint(nic->msix_entries[irq].vector, NULL);
 993                free_cpumask_var(nic->affinity_mask[irq]);
 994
 995                if (irq < NICVF_INTR_ID_SQ)
 996                        free_irq(nic->msix_entries[irq].vector, nic->napi[irq]);
 997                else
 998                        free_irq(nic->msix_entries[irq].vector, nic);
 999
1000                nic->irq_allocated[irq] = false;
1001        }
1002
1003        /* Disable MSI-X */
1004        nicvf_disable_msix(nic);
1005}
1006
1007/* Initialize MSIX vectors and register MISC interrupt.
1008 * Send READY message to PF to check if its alive
1009 */
1010static int nicvf_register_misc_interrupt(struct nicvf *nic)
1011{
1012        int ret = 0;
1013        int irq = NICVF_INTR_ID_MISC;
1014
1015        /* Return if mailbox interrupt is already registered */
1016        if (nic->msix_enabled)
1017                return 0;
1018
1019        /* Enable MSI-X */
1020        if (!nicvf_enable_msix(nic))
1021                return 1;
1022
1023        sprintf(nic->irq_name[irq], "%s Mbox", "NICVF");
1024        /* Register Misc interrupt */
1025        ret = request_irq(nic->msix_entries[irq].vector,
1026                          nicvf_misc_intr_handler, 0, nic->irq_name[irq], nic);
1027
1028        if (ret)
1029                return ret;
1030        nic->irq_allocated[irq] = true;
1031
1032        /* Enable mailbox interrupt */
1033        nicvf_enable_intr(nic, NICVF_INTR_MBOX, 0);
1034
1035        /* Check if VF is able to communicate with PF */
1036        if (!nicvf_check_pf_ready(nic)) {
1037                nicvf_disable_intr(nic, NICVF_INTR_MBOX, 0);
1038                nicvf_unregister_interrupts(nic);
1039                return 1;
1040        }
1041
1042        return 0;
1043}
1044
1045static netdev_tx_t nicvf_xmit(struct sk_buff *skb, struct net_device *netdev)
1046{
1047        struct nicvf *nic = netdev_priv(netdev);
1048        int qid = skb_get_queue_mapping(skb);
1049        struct netdev_queue *txq = netdev_get_tx_queue(netdev, qid);
1050
1051        /* Check for minimum packet length */
1052        if (skb->len <= ETH_HLEN) {
1053                dev_kfree_skb(skb);
1054                return NETDEV_TX_OK;
1055        }
1056
1057        if (!netif_tx_queue_stopped(txq) && !nicvf_sq_append_skb(nic, skb)) {
1058                netif_tx_stop_queue(txq);
1059                this_cpu_inc(nic->drv_stats->txq_stop);
1060                if (netif_msg_tx_err(nic))
1061                        netdev_warn(netdev,
1062                                    "%s: Transmit ring full, stopping SQ%d\n",
1063                                    netdev->name, qid);
1064                return NETDEV_TX_BUSY;
1065        }
1066
1067        return NETDEV_TX_OK;
1068}
1069
1070static inline void nicvf_free_cq_poll(struct nicvf *nic)
1071{
1072        struct nicvf_cq_poll *cq_poll;
1073        int qidx;
1074
1075        for (qidx = 0; qidx < nic->qs->cq_cnt; qidx++) {
1076                cq_poll = nic->napi[qidx];
1077                if (!cq_poll)
1078                        continue;
1079                nic->napi[qidx] = NULL;
1080                kfree(cq_poll);
1081        }
1082}
1083
1084int nicvf_stop(struct net_device *netdev)
1085{
1086        int irq, qidx;
1087        struct nicvf *nic = netdev_priv(netdev);
1088        struct queue_set *qs = nic->qs;
1089        struct nicvf_cq_poll *cq_poll = NULL;
1090        union nic_mbx mbx = {};
1091
1092        mbx.msg.msg = NIC_MBOX_MSG_SHUTDOWN;
1093        nicvf_send_msg_to_pf(nic, &mbx);
1094
1095        netif_carrier_off(netdev);
1096        netif_tx_stop_all_queues(nic->netdev);
1097        nic->link_up = false;
1098
1099        /* Teardown secondary qsets first */
1100        if (!nic->sqs_mode) {
1101                for (qidx = 0; qidx < nic->sqs_count; qidx++) {
1102                        if (!nic->snicvf[qidx])
1103                                continue;
1104                        nicvf_stop(nic->snicvf[qidx]->netdev);
1105                        nic->snicvf[qidx] = NULL;
1106                }
1107        }
1108
1109        /* Disable RBDR & QS error interrupts */
1110        for (qidx = 0; qidx < qs->rbdr_cnt; qidx++) {
1111                nicvf_disable_intr(nic, NICVF_INTR_RBDR, qidx);
1112                nicvf_clear_intr(nic, NICVF_INTR_RBDR, qidx);
1113        }
1114        nicvf_disable_intr(nic, NICVF_INTR_QS_ERR, 0);
1115        nicvf_clear_intr(nic, NICVF_INTR_QS_ERR, 0);
1116
1117        /* Wait for pending IRQ handlers to finish */
1118        for (irq = 0; irq < nic->num_vec; irq++)
1119                synchronize_irq(nic->msix_entries[irq].vector);
1120
1121        tasklet_kill(&nic->rbdr_task);
1122        tasklet_kill(&nic->qs_err_task);
1123        if (nic->rb_work_scheduled)
1124                cancel_delayed_work_sync(&nic->rbdr_work);
1125
1126        for (qidx = 0; qidx < nic->qs->cq_cnt; qidx++) {
1127                cq_poll = nic->napi[qidx];
1128                if (!cq_poll)
1129                        continue;
1130                napi_synchronize(&cq_poll->napi);
1131                /* CQ intr is enabled while napi_complete,
1132                 * so disable it now
1133                 */
1134                nicvf_disable_intr(nic, NICVF_INTR_CQ, qidx);
1135                nicvf_clear_intr(nic, NICVF_INTR_CQ, qidx);
1136                napi_disable(&cq_poll->napi);
1137                netif_napi_del(&cq_poll->napi);
1138        }
1139
1140        netif_tx_disable(netdev);
1141
1142        for (qidx = 0; qidx < netdev->num_tx_queues; qidx++)
1143                netdev_tx_reset_queue(netdev_get_tx_queue(netdev, qidx));
1144
1145        /* Free resources */
1146        nicvf_config_data_transfer(nic, false);
1147
1148        /* Disable HW Qset */
1149        nicvf_qset_config(nic, false);
1150
1151        /* disable mailbox interrupt */
1152        nicvf_disable_intr(nic, NICVF_INTR_MBOX, 0);
1153
1154        nicvf_unregister_interrupts(nic);
1155
1156        nicvf_free_cq_poll(nic);
1157
1158        /* Clear multiqset info */
1159        nic->pnicvf = nic;
1160
1161        return 0;
1162}
1163
1164static int nicvf_update_hw_max_frs(struct nicvf *nic, int mtu)
1165{
1166        union nic_mbx mbx = {};
1167
1168        mbx.frs.msg = NIC_MBOX_MSG_SET_MAX_FRS;
1169        mbx.frs.max_frs = mtu;
1170        mbx.frs.vf_id = nic->vf_id;
1171
1172        return nicvf_send_msg_to_pf(nic, &mbx);
1173}
1174
1175int nicvf_open(struct net_device *netdev)
1176{
1177        int cpu, err, qidx;
1178        struct nicvf *nic = netdev_priv(netdev);
1179        struct queue_set *qs = nic->qs;
1180        struct nicvf_cq_poll *cq_poll = NULL;
1181        union nic_mbx mbx = {};
1182
1183        netif_carrier_off(netdev);
1184
1185        err = nicvf_register_misc_interrupt(nic);
1186        if (err)
1187                return err;
1188
1189        /* Register NAPI handler for processing CQEs */
1190        for (qidx = 0; qidx < qs->cq_cnt; qidx++) {
1191                cq_poll = kzalloc(sizeof(*cq_poll), GFP_KERNEL);
1192                if (!cq_poll) {
1193                        err = -ENOMEM;
1194                        goto napi_del;
1195                }
1196                cq_poll->cq_idx = qidx;
1197                cq_poll->nicvf = nic;
1198                netif_napi_add(netdev, &cq_poll->napi, nicvf_poll,
1199                               NAPI_POLL_WEIGHT);
1200                napi_enable(&cq_poll->napi);
1201                nic->napi[qidx] = cq_poll;
1202        }
1203
1204        /* Check if we got MAC address from PF or else generate a radom MAC */
1205        if (!nic->sqs_mode && is_zero_ether_addr(netdev->dev_addr)) {
1206                eth_hw_addr_random(netdev);
1207                nicvf_hw_set_mac_addr(nic, netdev);
1208        }
1209
1210        if (nic->set_mac_pending) {
1211                nic->set_mac_pending = false;
1212                nicvf_hw_set_mac_addr(nic, netdev);
1213        }
1214
1215        /* Init tasklet for handling Qset err interrupt */
1216        tasklet_init(&nic->qs_err_task, nicvf_handle_qs_err,
1217                     (unsigned long)nic);
1218
1219        /* Init RBDR tasklet which will refill RBDR */
1220        tasklet_init(&nic->rbdr_task, nicvf_rbdr_task,
1221                     (unsigned long)nic);
1222        INIT_DELAYED_WORK(&nic->rbdr_work, nicvf_rbdr_work);
1223
1224        /* Configure CPI alorithm */
1225        nic->cpi_alg = cpi_alg;
1226        if (!nic->sqs_mode)
1227                nicvf_config_cpi(nic);
1228
1229        nicvf_request_sqs(nic);
1230        if (nic->sqs_mode)
1231                nicvf_get_primary_vf_struct(nic);
1232
1233        /* Configure receive side scaling and MTU */
1234        if (!nic->sqs_mode) {
1235                nicvf_rss_init(nic);
1236                if (nicvf_update_hw_max_frs(nic, netdev->mtu))
1237                        goto cleanup;
1238
1239                /* Clear percpu stats */
1240                for_each_possible_cpu(cpu)
1241                        memset(per_cpu_ptr(nic->drv_stats, cpu), 0,
1242                               sizeof(struct nicvf_drv_stats));
1243        }
1244
1245        err = nicvf_register_interrupts(nic);
1246        if (err)
1247                goto cleanup;
1248
1249        /* Initialize the queues */
1250        err = nicvf_init_resources(nic);
1251        if (err)
1252                goto cleanup;
1253
1254        /* Make sure queue initialization is written */
1255        wmb();
1256
1257        nicvf_reg_write(nic, NIC_VF_INT, -1);
1258        /* Enable Qset err interrupt */
1259        nicvf_enable_intr(nic, NICVF_INTR_QS_ERR, 0);
1260
1261        /* Enable completion queue interrupt */
1262        for (qidx = 0; qidx < qs->cq_cnt; qidx++)
1263                nicvf_enable_intr(nic, NICVF_INTR_CQ, qidx);
1264
1265        /* Enable RBDR threshold interrupt */
1266        for (qidx = 0; qidx < qs->rbdr_cnt; qidx++)
1267                nicvf_enable_intr(nic, NICVF_INTR_RBDR, qidx);
1268
1269        /* Send VF config done msg to PF */
1270        mbx.msg.msg = NIC_MBOX_MSG_CFG_DONE;
1271        nicvf_write_to_mbx(nic, &mbx);
1272
1273        return 0;
1274cleanup:
1275        nicvf_disable_intr(nic, NICVF_INTR_MBOX, 0);
1276        nicvf_unregister_interrupts(nic);
1277        tasklet_kill(&nic->qs_err_task);
1278        tasklet_kill(&nic->rbdr_task);
1279napi_del:
1280        for (qidx = 0; qidx < qs->cq_cnt; qidx++) {
1281                cq_poll = nic->napi[qidx];
1282                if (!cq_poll)
1283                        continue;
1284                napi_disable(&cq_poll->napi);
1285                netif_napi_del(&cq_poll->napi);
1286        }
1287        nicvf_free_cq_poll(nic);
1288        return err;
1289}
1290
1291static int nicvf_change_mtu(struct net_device *netdev, int new_mtu)
1292{
1293        struct nicvf *nic = netdev_priv(netdev);
1294
1295        if (new_mtu > NIC_HW_MAX_FRS)
1296                return -EINVAL;
1297
1298        if (new_mtu < NIC_HW_MIN_FRS)
1299                return -EINVAL;
1300
1301        netdev->mtu = new_mtu;
1302
1303        if (!netif_running(netdev))
1304                return 0;
1305
1306        if (nicvf_update_hw_max_frs(nic, new_mtu))
1307                return -EINVAL;
1308
1309        return 0;
1310}
1311
1312static int nicvf_set_mac_address(struct net_device *netdev, void *p)
1313{
1314        struct sockaddr *addr = p;
1315        struct nicvf *nic = netdev_priv(netdev);
1316
1317        if (!is_valid_ether_addr(addr->sa_data))
1318                return -EADDRNOTAVAIL;
1319
1320        memcpy(netdev->dev_addr, addr->sa_data, netdev->addr_len);
1321
1322        if (nic->msix_enabled) {
1323                if (nicvf_hw_set_mac_addr(nic, netdev))
1324                        return -EBUSY;
1325        } else {
1326                nic->set_mac_pending = true;
1327        }
1328
1329        return 0;
1330}
1331
1332void nicvf_update_lmac_stats(struct nicvf *nic)
1333{
1334        int stat = 0;
1335        union nic_mbx mbx = {};
1336
1337        if (!netif_running(nic->netdev))
1338                return;
1339
1340        mbx.bgx_stats.msg = NIC_MBOX_MSG_BGX_STATS;
1341        mbx.bgx_stats.vf_id = nic->vf_id;
1342        /* Rx stats */
1343        mbx.bgx_stats.rx = 1;
1344        while (stat < BGX_RX_STATS_COUNT) {
1345                mbx.bgx_stats.idx = stat;
1346                if (nicvf_send_msg_to_pf(nic, &mbx))
1347                        return;
1348                stat++;
1349        }
1350
1351        stat = 0;
1352
1353        /* Tx stats */
1354        mbx.bgx_stats.rx = 0;
1355        while (stat < BGX_TX_STATS_COUNT) {
1356                mbx.bgx_stats.idx = stat;
1357                if (nicvf_send_msg_to_pf(nic, &mbx))
1358                        return;
1359                stat++;
1360        }
1361}
1362
1363void nicvf_update_stats(struct nicvf *nic)
1364{
1365        int qidx, cpu;
1366        u64 tmp_stats = 0;
1367        struct nicvf_hw_stats *stats = &nic->hw_stats;
1368        struct nicvf_drv_stats *drv_stats;
1369        struct queue_set *qs = nic->qs;
1370
1371#define GET_RX_STATS(reg) \
1372        nicvf_reg_read(nic, NIC_VNIC_RX_STAT_0_13 | (reg << 3))
1373#define GET_TX_STATS(reg) \
1374        nicvf_reg_read(nic, NIC_VNIC_TX_STAT_0_4 | (reg << 3))
1375
1376        stats->rx_bytes = GET_RX_STATS(RX_OCTS);
1377        stats->rx_ucast_frames = GET_RX_STATS(RX_UCAST);
1378        stats->rx_bcast_frames = GET_RX_STATS(RX_BCAST);
1379        stats->rx_mcast_frames = GET_RX_STATS(RX_MCAST);
1380        stats->rx_fcs_errors = GET_RX_STATS(RX_FCS);
1381        stats->rx_l2_errors = GET_RX_STATS(RX_L2ERR);
1382        stats->rx_drop_red = GET_RX_STATS(RX_RED);
1383        stats->rx_drop_red_bytes = GET_RX_STATS(RX_RED_OCTS);
1384        stats->rx_drop_overrun = GET_RX_STATS(RX_ORUN);
1385        stats->rx_drop_overrun_bytes = GET_RX_STATS(RX_ORUN_OCTS);
1386        stats->rx_drop_bcast = GET_RX_STATS(RX_DRP_BCAST);
1387        stats->rx_drop_mcast = GET_RX_STATS(RX_DRP_MCAST);
1388        stats->rx_drop_l3_bcast = GET_RX_STATS(RX_DRP_L3BCAST);
1389        stats->rx_drop_l3_mcast = GET_RX_STATS(RX_DRP_L3MCAST);
1390
1391        stats->tx_bytes = GET_TX_STATS(TX_OCTS);
1392        stats->tx_ucast_frames = GET_TX_STATS(TX_UCAST);
1393        stats->tx_bcast_frames = GET_TX_STATS(TX_BCAST);
1394        stats->tx_mcast_frames = GET_TX_STATS(TX_MCAST);
1395        stats->tx_drops = GET_TX_STATS(TX_DROP);
1396
1397        /* On T88 pass 2.0, the dummy SQE added for TSO notification
1398         * via CQE has 'dont_send' set. Hence HW drops the pkt pointed
1399         * pointed by dummy SQE and results in tx_drops counter being
1400         * incremented. Subtracting it from tx_tso counter will give
1401         * exact tx_drops counter.
1402         */
1403        if (nic->t88 && nic->hw_tso) {
1404                for_each_possible_cpu(cpu) {
1405                        drv_stats = per_cpu_ptr(nic->drv_stats, cpu);
1406                        tmp_stats += drv_stats->tx_tso;
1407                }
1408                stats->tx_drops = tmp_stats - stats->tx_drops;
1409        }
1410        stats->tx_frames = stats->tx_ucast_frames +
1411                           stats->tx_bcast_frames +
1412                           stats->tx_mcast_frames;
1413        stats->rx_frames = stats->rx_ucast_frames +
1414                           stats->rx_bcast_frames +
1415                           stats->rx_mcast_frames;
1416        stats->rx_drops = stats->rx_drop_red +
1417                          stats->rx_drop_overrun;
1418
1419        /* Update RQ and SQ stats */
1420        for (qidx = 0; qidx < qs->rq_cnt; qidx++)
1421                nicvf_update_rq_stats(nic, qidx);
1422        for (qidx = 0; qidx < qs->sq_cnt; qidx++)
1423                nicvf_update_sq_stats(nic, qidx);
1424}
1425
1426static struct rtnl_link_stats64 *nicvf_get_stats64(struct net_device *netdev,
1427                                            struct rtnl_link_stats64 *stats)
1428{
1429        struct nicvf *nic = netdev_priv(netdev);
1430        struct nicvf_hw_stats *hw_stats = &nic->hw_stats;
1431
1432        nicvf_update_stats(nic);
1433
1434        stats->rx_bytes = hw_stats->rx_bytes;
1435        stats->rx_packets = hw_stats->rx_frames;
1436        stats->rx_dropped = hw_stats->rx_drops;
1437        stats->multicast = hw_stats->rx_mcast_frames;
1438
1439        stats->tx_bytes = hw_stats->tx_bytes;
1440        stats->tx_packets = hw_stats->tx_frames;
1441        stats->tx_dropped = hw_stats->tx_drops;
1442
1443        return stats;
1444}
1445
1446static void nicvf_tx_timeout(struct net_device *dev)
1447{
1448        struct nicvf *nic = netdev_priv(dev);
1449
1450        if (netif_msg_tx_err(nic))
1451                netdev_warn(dev, "%s: Transmit timed out, resetting\n",
1452                            dev->name);
1453
1454        this_cpu_inc(nic->drv_stats->tx_timeout);
1455        schedule_work(&nic->reset_task);
1456}
1457
1458static void nicvf_reset_task(struct work_struct *work)
1459{
1460        struct nicvf *nic;
1461
1462        nic = container_of(work, struct nicvf, reset_task);
1463
1464        if (!netif_running(nic->netdev))
1465                return;
1466
1467        nicvf_stop(nic->netdev);
1468        nicvf_open(nic->netdev);
1469        netif_trans_update(nic->netdev);
1470}
1471
1472static int nicvf_config_loopback(struct nicvf *nic,
1473                                 netdev_features_t features)
1474{
1475        union nic_mbx mbx = {};
1476
1477        mbx.lbk.msg = NIC_MBOX_MSG_LOOPBACK;
1478        mbx.lbk.vf_id = nic->vf_id;
1479        mbx.lbk.enable = (features & NETIF_F_LOOPBACK) != 0;
1480
1481        return nicvf_send_msg_to_pf(nic, &mbx);
1482}
1483
1484static netdev_features_t nicvf_fix_features(struct net_device *netdev,
1485                                            netdev_features_t features)
1486{
1487        struct nicvf *nic = netdev_priv(netdev);
1488
1489        if ((features & NETIF_F_LOOPBACK) &&
1490            netif_running(netdev) && !nic->loopback_supported)
1491                features &= ~NETIF_F_LOOPBACK;
1492
1493        return features;
1494}
1495
1496static int nicvf_set_features(struct net_device *netdev,
1497                              netdev_features_t features)
1498{
1499        struct nicvf *nic = netdev_priv(netdev);
1500        netdev_features_t changed = features ^ netdev->features;
1501
1502        if (changed & NETIF_F_HW_VLAN_CTAG_RX)
1503                nicvf_config_vlan_stripping(nic, features);
1504
1505        if ((changed & NETIF_F_LOOPBACK) && netif_running(netdev))
1506                return nicvf_config_loopback(nic, features);
1507
1508        return 0;
1509}
1510
1511static const struct net_device_ops nicvf_netdev_ops = {
1512        .ndo_open               = nicvf_open,
1513        .ndo_stop               = nicvf_stop,
1514        .ndo_start_xmit         = nicvf_xmit,
1515        .ndo_change_mtu         = nicvf_change_mtu,
1516        .ndo_set_mac_address    = nicvf_set_mac_address,
1517        .ndo_get_stats64        = nicvf_get_stats64,
1518        .ndo_tx_timeout         = nicvf_tx_timeout,
1519        .ndo_fix_features       = nicvf_fix_features,
1520        .ndo_set_features       = nicvf_set_features,
1521};
1522
1523static int nicvf_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
1524{
1525        struct device *dev = &pdev->dev;
1526        struct net_device *netdev;
1527        struct nicvf *nic;
1528        int    err, qcount;
1529        u16    sdevid;
1530
1531        err = pci_enable_device(pdev);
1532        if (err) {
1533                dev_err(dev, "Failed to enable PCI device\n");
1534                return err;
1535        }
1536
1537        err = pci_request_regions(pdev, DRV_NAME);
1538        if (err) {
1539                dev_err(dev, "PCI request regions failed 0x%x\n", err);
1540                goto err_disable_device;
1541        }
1542
1543        err = pci_set_dma_mask(pdev, DMA_BIT_MASK(48));
1544        if (err) {
1545                dev_err(dev, "Unable to get usable DMA configuration\n");
1546                goto err_release_regions;
1547        }
1548
1549        err = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(48));
1550        if (err) {
1551                dev_err(dev, "unable to get 48-bit DMA for consistent allocations\n");
1552                goto err_release_regions;
1553        }
1554
1555        qcount = netif_get_num_default_rss_queues();
1556
1557        /* Restrict multiqset support only for host bound VFs */
1558        if (pdev->is_virtfn) {
1559                /* Set max number of queues per VF */
1560                qcount = min_t(int, num_online_cpus(),
1561                               (MAX_SQS_PER_VF + 1) * MAX_CMP_QUEUES_PER_QS);
1562        }
1563
1564        netdev = alloc_etherdev_mqs(sizeof(struct nicvf), qcount, qcount);
1565        if (!netdev) {
1566                err = -ENOMEM;
1567                goto err_release_regions;
1568        }
1569
1570        pci_set_drvdata(pdev, netdev);
1571
1572        SET_NETDEV_DEV(netdev, &pdev->dev);
1573
1574        nic = netdev_priv(netdev);
1575        nic->netdev = netdev;
1576        nic->pdev = pdev;
1577        nic->pnicvf = nic;
1578        nic->max_queues = qcount;
1579
1580        /* MAP VF's configuration registers */
1581        nic->reg_base = pcim_iomap(pdev, PCI_CFG_REG_BAR_NUM, 0);
1582        if (!nic->reg_base) {
1583                dev_err(dev, "Cannot map config register space, aborting\n");
1584                err = -ENOMEM;
1585                goto err_free_netdev;
1586        }
1587
1588        nic->drv_stats = netdev_alloc_pcpu_stats(struct nicvf_drv_stats);
1589        if (!nic->drv_stats) {
1590                err = -ENOMEM;
1591                goto err_free_netdev;
1592        }
1593
1594        err = nicvf_set_qset_resources(nic);
1595        if (err)
1596                goto err_free_netdev;
1597
1598        /* Check if PF is alive and get MAC address for this VF */
1599        err = nicvf_register_misc_interrupt(nic);
1600        if (err)
1601                goto err_free_netdev;
1602
1603        nicvf_send_vf_struct(nic);
1604
1605        if (!pass1_silicon(nic->pdev))
1606                nic->hw_tso = true;
1607
1608        pci_read_config_word(nic->pdev, PCI_SUBSYSTEM_ID, &sdevid);
1609        if (sdevid == 0xA134)
1610                nic->t88 = true;
1611
1612        /* Check if this VF is in QS only mode */
1613        if (nic->sqs_mode)
1614                return 0;
1615
1616        err = nicvf_set_real_num_queues(netdev, nic->tx_queues, nic->rx_queues);
1617        if (err)
1618                goto err_unregister_interrupts;
1619
1620        netdev->hw_features = (NETIF_F_RXCSUM | NETIF_F_IP_CSUM | NETIF_F_SG |
1621                               NETIF_F_TSO | NETIF_F_GRO |
1622                               NETIF_F_HW_VLAN_CTAG_RX);
1623
1624        netdev->hw_features |= NETIF_F_RXHASH;
1625
1626        netdev->features |= netdev->hw_features;
1627        netdev->hw_features |= NETIF_F_LOOPBACK;
1628
1629        netdev->vlan_features = NETIF_F_SG | NETIF_F_IP_CSUM | NETIF_F_TSO;
1630
1631        netdev->netdev_ops = &nicvf_netdev_ops;
1632        netdev->watchdog_timeo = NICVF_TX_TIMEOUT;
1633
1634        INIT_WORK(&nic->reset_task, nicvf_reset_task);
1635
1636        err = register_netdev(netdev);
1637        if (err) {
1638                dev_err(dev, "Failed to register netdevice\n");
1639                goto err_unregister_interrupts;
1640        }
1641
1642        nic->msg_enable = debug;
1643
1644        nicvf_set_ethtool_ops(netdev);
1645
1646        return 0;
1647
1648err_unregister_interrupts:
1649        nicvf_unregister_interrupts(nic);
1650err_free_netdev:
1651        pci_set_drvdata(pdev, NULL);
1652        if (nic->drv_stats)
1653                free_percpu(nic->drv_stats);
1654        free_netdev(netdev);
1655err_release_regions:
1656        pci_release_regions(pdev);
1657err_disable_device:
1658        pci_disable_device(pdev);
1659        return err;
1660}
1661
1662static void nicvf_remove(struct pci_dev *pdev)
1663{
1664        struct net_device *netdev = pci_get_drvdata(pdev);
1665        struct nicvf *nic;
1666        struct net_device *pnetdev;
1667
1668        if (!netdev)
1669                return;
1670
1671        nic = netdev_priv(netdev);
1672        pnetdev = nic->pnicvf->netdev;
1673
1674        /* Check if this Qset is assigned to different VF.
1675         * If yes, clean primary and all secondary Qsets.
1676         */
1677        if (pnetdev && (pnetdev->reg_state == NETREG_REGISTERED))
1678                unregister_netdev(pnetdev);
1679        nicvf_unregister_interrupts(nic);
1680        pci_set_drvdata(pdev, NULL);
1681        if (nic->drv_stats)
1682                free_percpu(nic->drv_stats);
1683        free_netdev(netdev);
1684        pci_release_regions(pdev);
1685        pci_disable_device(pdev);
1686}
1687
1688static void nicvf_shutdown(struct pci_dev *pdev)
1689{
1690        nicvf_remove(pdev);
1691}
1692
1693static struct pci_driver nicvf_driver = {
1694        .name = DRV_NAME,
1695        .id_table = nicvf_id_table,
1696        .probe = nicvf_probe,
1697        .remove = nicvf_remove,
1698        .shutdown = nicvf_shutdown,
1699};
1700
1701static int __init nicvf_init_module(void)
1702{
1703        pr_info("%s, ver %s\n", DRV_NAME, DRV_VERSION);
1704
1705        return pci_register_driver(&nicvf_driver);
1706}
1707
1708static void __exit nicvf_cleanup_module(void)
1709{
1710        pci_unregister_driver(&nicvf_driver);
1711}
1712
1713module_init(nicvf_init_module);
1714module_exit(nicvf_cleanup_module);
1715