1 // SPDX-License-Identifier: GPL-2.0 2 /* Marvell RVU Physical Function ethernet driver 3 * 4 * Copyright (C) 2020 Marvell. 5 * 6 */ 7 8 #include <linux/module.h> 9 #include <linux/interrupt.h> 10 #include <linux/pci.h> 11 #include <linux/etherdevice.h> 12 #include <linux/of.h> 13 #include <linux/if_vlan.h> 14 #include <linux/iommu.h> 15 #include <net/ip.h> 16 17 #include "otx2_reg.h" 18 #include "otx2_common.h" 19 #include "otx2_txrx.h" 20 #include "otx2_struct.h" 21 #include "otx2_ptp.h" 22 #include "cn10k.h" 23 #include <rvu_trace.h> 24 25 #define DRV_NAME "rvu_nicpf" 26 #define DRV_STRING "Marvell RVU NIC Physical Function Driver" 27 28 /* Supported devices */ 29 static const struct pci_device_id otx2_pf_id_table[] = { 30 { PCI_DEVICE(PCI_VENDOR_ID_CAVIUM, PCI_DEVID_OCTEONTX2_RVU_PF) }, 31 { 0, } /* end of table */ 32 }; 33 34 MODULE_AUTHOR("Sunil Goutham <sgoutham@marvell.com>"); 35 MODULE_DESCRIPTION(DRV_STRING); 36 MODULE_LICENSE("GPL v2"); 37 MODULE_DEVICE_TABLE(pci, otx2_pf_id_table); 38 39 static void otx2_vf_link_event_task(struct work_struct *work); 40 41 enum { 42 TYPE_PFAF, 43 TYPE_PFVF, 44 }; 45 46 static int otx2_config_hw_tx_tstamp(struct otx2_nic *pfvf, bool enable); 47 static int otx2_config_hw_rx_tstamp(struct otx2_nic *pfvf, bool enable); 48 49 static int otx2_change_mtu(struct net_device *netdev, int new_mtu) 50 { 51 bool if_up = netif_running(netdev); 52 int err = 0; 53 54 if (if_up) 55 otx2_stop(netdev); 56 57 netdev_info(netdev, "Changing MTU from %d to %d\n", 58 netdev->mtu, new_mtu); 59 netdev->mtu = new_mtu; 60 61 if (if_up) 62 err = otx2_open(netdev); 63 64 return err; 65 } 66 67 static void otx2_disable_flr_me_intr(struct otx2_nic *pf) 68 { 69 int irq, vfs = pf->total_vfs; 70 71 /* Disable VFs ME interrupts */ 72 otx2_write64(pf, RVU_PF_VFME_INT_ENA_W1CX(0), INTR_MASK(vfs)); 73 irq = pci_irq_vector(pf->pdev, RVU_PF_INT_VEC_VFME0); 74 free_irq(irq, pf); 75 76 /* Disable VFs FLR interrupts */ 77 otx2_write64(pf, RVU_PF_VFFLR_INT_ENA_W1CX(0), INTR_MASK(vfs)); 78 irq = pci_irq_vector(pf->pdev, RVU_PF_INT_VEC_VFFLR0); 79 free_irq(irq, pf); 80 81 if (vfs <= 64) 82 return; 83 84 otx2_write64(pf, RVU_PF_VFME_INT_ENA_W1CX(1), INTR_MASK(vfs - 64)); 85 irq = pci_irq_vector(pf->pdev, RVU_PF_INT_VEC_VFME1); 86 free_irq(irq, pf); 87 88 otx2_write64(pf, RVU_PF_VFFLR_INT_ENA_W1CX(1), INTR_MASK(vfs - 64)); 89 irq = pci_irq_vector(pf->pdev, RVU_PF_INT_VEC_VFFLR1); 90 free_irq(irq, pf); 91 } 92 93 static void otx2_flr_wq_destroy(struct otx2_nic *pf) 94 { 95 if (!pf->flr_wq) 96 return; 97 destroy_workqueue(pf->flr_wq); 98 pf->flr_wq = NULL; 99 devm_kfree(pf->dev, pf->flr_wrk); 100 } 101 102 static void otx2_flr_handler(struct work_struct *work) 103 { 104 struct flr_work *flrwork = container_of(work, struct flr_work, work); 105 struct otx2_nic *pf = flrwork->pf; 106 struct mbox *mbox = &pf->mbox; 107 struct msg_req *req; 108 int vf, reg = 0; 109 110 vf = flrwork - pf->flr_wrk; 111 112 mutex_lock(&mbox->lock); 113 req = otx2_mbox_alloc_msg_vf_flr(mbox); 114 if (!req) { 115 mutex_unlock(&mbox->lock); 116 return; 117 } 118 req->hdr.pcifunc &= RVU_PFVF_FUNC_MASK; 119 req->hdr.pcifunc |= (vf + 1) & RVU_PFVF_FUNC_MASK; 120 121 if (!otx2_sync_mbox_msg(&pf->mbox)) { 122 if (vf >= 64) { 123 reg = 1; 124 vf = vf - 64; 125 } 126 /* clear transcation pending bit */ 127 otx2_write64(pf, RVU_PF_VFTRPENDX(reg), BIT_ULL(vf)); 128 otx2_write64(pf, RVU_PF_VFFLR_INT_ENA_W1SX(reg), BIT_ULL(vf)); 129 } 130 131 mutex_unlock(&mbox->lock); 132 } 133 134 static irqreturn_t otx2_pf_flr_intr_handler(int irq, void *pf_irq) 135 { 136 struct otx2_nic *pf = (struct otx2_nic *)pf_irq; 137 int reg, dev, vf, start_vf, num_reg = 1; 138 u64 intr; 139 140 if (pf->total_vfs > 64) 141 num_reg = 2; 142 143 for (reg = 0; reg < num_reg; reg++) { 144 intr = otx2_read64(pf, RVU_PF_VFFLR_INTX(reg)); 145 if (!intr) 146 continue; 147 start_vf = 64 * reg; 148 for (vf = 0; vf < 64; vf++) { 149 if (!(intr & BIT_ULL(vf))) 150 continue; 151 dev = vf + start_vf; 152 queue_work(pf->flr_wq, &pf->flr_wrk[dev].work); 153 /* Clear interrupt */ 154 otx2_write64(pf, RVU_PF_VFFLR_INTX(reg), BIT_ULL(vf)); 155 /* Disable the interrupt */ 156 otx2_write64(pf, RVU_PF_VFFLR_INT_ENA_W1CX(reg), 157 BIT_ULL(vf)); 158 } 159 } 160 return IRQ_HANDLED; 161 } 162 163 static irqreturn_t otx2_pf_me_intr_handler(int irq, void *pf_irq) 164 { 165 struct otx2_nic *pf = (struct otx2_nic *)pf_irq; 166 int vf, reg, num_reg = 1; 167 u64 intr; 168 169 if (pf->total_vfs > 64) 170 num_reg = 2; 171 172 for (reg = 0; reg < num_reg; reg++) { 173 intr = otx2_read64(pf, RVU_PF_VFME_INTX(reg)); 174 if (!intr) 175 continue; 176 for (vf = 0; vf < 64; vf++) { 177 if (!(intr & BIT_ULL(vf))) 178 continue; 179 /* clear trpend bit */ 180 otx2_write64(pf, RVU_PF_VFTRPENDX(reg), BIT_ULL(vf)); 181 /* clear interrupt */ 182 otx2_write64(pf, RVU_PF_VFME_INTX(reg), BIT_ULL(vf)); 183 } 184 } 185 return IRQ_HANDLED; 186 } 187 188 static int otx2_register_flr_me_intr(struct otx2_nic *pf, int numvfs) 189 { 190 struct otx2_hw *hw = &pf->hw; 191 char *irq_name; 192 int ret; 193 194 /* Register ME interrupt handler*/ 195 irq_name = &hw->irq_name[RVU_PF_INT_VEC_VFME0 * NAME_SIZE]; 196 snprintf(irq_name, NAME_SIZE, "RVUPF%d_ME0", rvu_get_pf(pf->pcifunc)); 197 ret = request_irq(pci_irq_vector(pf->pdev, RVU_PF_INT_VEC_VFME0), 198 otx2_pf_me_intr_handler, 0, irq_name, pf); 199 if (ret) { 200 dev_err(pf->dev, 201 "RVUPF: IRQ registration failed for ME0\n"); 202 } 203 204 /* Register FLR interrupt handler */ 205 irq_name = &hw->irq_name[RVU_PF_INT_VEC_VFFLR0 * NAME_SIZE]; 206 snprintf(irq_name, NAME_SIZE, "RVUPF%d_FLR0", rvu_get_pf(pf->pcifunc)); 207 ret = request_irq(pci_irq_vector(pf->pdev, RVU_PF_INT_VEC_VFFLR0), 208 otx2_pf_flr_intr_handler, 0, irq_name, pf); 209 if (ret) { 210 dev_err(pf->dev, 211 "RVUPF: IRQ registration failed for FLR0\n"); 212 return ret; 213 } 214 215 if (numvfs > 64) { 216 irq_name = &hw->irq_name[RVU_PF_INT_VEC_VFME1 * NAME_SIZE]; 217 snprintf(irq_name, NAME_SIZE, "RVUPF%d_ME1", 218 rvu_get_pf(pf->pcifunc)); 219 ret = request_irq(pci_irq_vector 220 (pf->pdev, RVU_PF_INT_VEC_VFME1), 221 otx2_pf_me_intr_handler, 0, irq_name, pf); 222 if (ret) { 223 dev_err(pf->dev, 224 "RVUPF: IRQ registration failed for ME1\n"); 225 } 226 irq_name = &hw->irq_name[RVU_PF_INT_VEC_VFFLR1 * NAME_SIZE]; 227 snprintf(irq_name, NAME_SIZE, "RVUPF%d_FLR1", 228 rvu_get_pf(pf->pcifunc)); 229 ret = request_irq(pci_irq_vector 230 (pf->pdev, RVU_PF_INT_VEC_VFFLR1), 231 otx2_pf_flr_intr_handler, 0, irq_name, pf); 232 if (ret) { 233 dev_err(pf->dev, 234 "RVUPF: IRQ registration failed for FLR1\n"); 235 return ret; 236 } 237 } 238 239 /* Enable ME interrupt for all VFs*/ 240 otx2_write64(pf, RVU_PF_VFME_INTX(0), INTR_MASK(numvfs)); 241 otx2_write64(pf, RVU_PF_VFME_INT_ENA_W1SX(0), INTR_MASK(numvfs)); 242 243 /* Enable FLR interrupt for all VFs*/ 244 otx2_write64(pf, RVU_PF_VFFLR_INTX(0), INTR_MASK(numvfs)); 245 otx2_write64(pf, RVU_PF_VFFLR_INT_ENA_W1SX(0), INTR_MASK(numvfs)); 246 247 if (numvfs > 64) { 248 numvfs -= 64; 249 250 otx2_write64(pf, RVU_PF_VFME_INTX(1), INTR_MASK(numvfs)); 251 otx2_write64(pf, RVU_PF_VFME_INT_ENA_W1SX(1), 252 INTR_MASK(numvfs)); 253 254 otx2_write64(pf, RVU_PF_VFFLR_INTX(1), INTR_MASK(numvfs)); 255 otx2_write64(pf, RVU_PF_VFFLR_INT_ENA_W1SX(1), 256 INTR_MASK(numvfs)); 257 } 258 return 0; 259 } 260 261 static int otx2_pf_flr_init(struct otx2_nic *pf, int num_vfs) 262 { 263 int vf; 264 265 pf->flr_wq = alloc_workqueue("otx2_pf_flr_wq", 266 WQ_UNBOUND | WQ_HIGHPRI, 1); 267 if (!pf->flr_wq) 268 return -ENOMEM; 269 270 pf->flr_wrk = devm_kcalloc(pf->dev, num_vfs, 271 sizeof(struct flr_work), GFP_KERNEL); 272 if (!pf->flr_wrk) { 273 destroy_workqueue(pf->flr_wq); 274 return -ENOMEM; 275 } 276 277 for (vf = 0; vf < num_vfs; vf++) { 278 pf->flr_wrk[vf].pf = pf; 279 INIT_WORK(&pf->flr_wrk[vf].work, otx2_flr_handler); 280 } 281 282 return 0; 283 } 284 285 static void otx2_queue_work(struct mbox *mw, struct workqueue_struct *mbox_wq, 286 int first, int mdevs, u64 intr, int type) 287 { 288 struct otx2_mbox_dev *mdev; 289 struct otx2_mbox *mbox; 290 struct mbox_hdr *hdr; 291 int i; 292 293 for (i = first; i < mdevs; i++) { 294 /* start from 0 */ 295 if (!(intr & BIT_ULL(i - first))) 296 continue; 297 298 mbox = &mw->mbox; 299 mdev = &mbox->dev[i]; 300 if (type == TYPE_PFAF) 301 otx2_sync_mbox_bbuf(mbox, i); 302 hdr = mdev->mbase + mbox->rx_start; 303 /* The hdr->num_msgs is set to zero immediately in the interrupt 304 * handler to ensure that it holds a correct value next time 305 * when the interrupt handler is called. 306 * pf->mbox.num_msgs holds the data for use in pfaf_mbox_handler 307 * pf>mbox.up_num_msgs holds the data for use in 308 * pfaf_mbox_up_handler. 309 */ 310 if (hdr->num_msgs) { 311 mw[i].num_msgs = hdr->num_msgs; 312 hdr->num_msgs = 0; 313 if (type == TYPE_PFAF) 314 memset(mbox->hwbase + mbox->rx_start, 0, 315 ALIGN(sizeof(struct mbox_hdr), 316 sizeof(u64))); 317 318 queue_work(mbox_wq, &mw[i].mbox_wrk); 319 } 320 321 mbox = &mw->mbox_up; 322 mdev = &mbox->dev[i]; 323 if (type == TYPE_PFAF) 324 otx2_sync_mbox_bbuf(mbox, i); 325 hdr = mdev->mbase + mbox->rx_start; 326 if (hdr->num_msgs) { 327 mw[i].up_num_msgs = hdr->num_msgs; 328 hdr->num_msgs = 0; 329 if (type == TYPE_PFAF) 330 memset(mbox->hwbase + mbox->rx_start, 0, 331 ALIGN(sizeof(struct mbox_hdr), 332 sizeof(u64))); 333 334 queue_work(mbox_wq, &mw[i].mbox_up_wrk); 335 } 336 } 337 } 338 339 static void otx2_forward_msg_pfvf(struct otx2_mbox_dev *mdev, 340 struct otx2_mbox *pfvf_mbox, void *bbuf_base, 341 int devid) 342 { 343 struct otx2_mbox_dev *src_mdev = mdev; 344 int offset; 345 346 /* Msgs are already copied, trigger VF's mbox irq */ 347 smp_wmb(); 348 349 offset = pfvf_mbox->trigger | (devid << pfvf_mbox->tr_shift); 350 writeq(1, (void __iomem *)pfvf_mbox->reg_base + offset); 351 352 /* Restore VF's mbox bounce buffer region address */ 353 src_mdev->mbase = bbuf_base; 354 } 355 356 static int otx2_forward_vf_mbox_msgs(struct otx2_nic *pf, 357 struct otx2_mbox *src_mbox, 358 int dir, int vf, int num_msgs) 359 { 360 struct otx2_mbox_dev *src_mdev, *dst_mdev; 361 struct mbox_hdr *mbox_hdr; 362 struct mbox_hdr *req_hdr; 363 struct mbox *dst_mbox; 364 int dst_size, err; 365 366 if (dir == MBOX_DIR_PFAF) { 367 /* Set VF's mailbox memory as PF's bounce buffer memory, so 368 * that explicit copying of VF's msgs to PF=>AF mbox region 369 * and AF=>PF responses to VF's mbox region can be avoided. 370 */ 371 src_mdev = &src_mbox->dev[vf]; 372 mbox_hdr = src_mbox->hwbase + 373 src_mbox->rx_start + (vf * MBOX_SIZE); 374 375 dst_mbox = &pf->mbox; 376 dst_size = dst_mbox->mbox.tx_size - 377 ALIGN(sizeof(*mbox_hdr), MBOX_MSG_ALIGN); 378 /* Check if msgs fit into destination area and has valid size */ 379 if (mbox_hdr->msg_size > dst_size || !mbox_hdr->msg_size) 380 return -EINVAL; 381 382 dst_mdev = &dst_mbox->mbox.dev[0]; 383 384 mutex_lock(&pf->mbox.lock); 385 dst_mdev->mbase = src_mdev->mbase; 386 dst_mdev->msg_size = mbox_hdr->msg_size; 387 dst_mdev->num_msgs = num_msgs; 388 err = otx2_sync_mbox_msg(dst_mbox); 389 if (err) { 390 dev_warn(pf->dev, 391 "AF not responding to VF%d messages\n", vf); 392 /* restore PF mbase and exit */ 393 dst_mdev->mbase = pf->mbox.bbuf_base; 394 mutex_unlock(&pf->mbox.lock); 395 return err; 396 } 397 /* At this point, all the VF messages sent to AF are acked 398 * with proper responses and responses are copied to VF 399 * mailbox hence raise interrupt to VF. 400 */ 401 req_hdr = (struct mbox_hdr *)(dst_mdev->mbase + 402 dst_mbox->mbox.rx_start); 403 req_hdr->num_msgs = num_msgs; 404 405 otx2_forward_msg_pfvf(dst_mdev, &pf->mbox_pfvf[0].mbox, 406 pf->mbox.bbuf_base, vf); 407 mutex_unlock(&pf->mbox.lock); 408 } else if (dir == MBOX_DIR_PFVF_UP) { 409 src_mdev = &src_mbox->dev[0]; 410 mbox_hdr = src_mbox->hwbase + src_mbox->rx_start; 411 req_hdr = (struct mbox_hdr *)(src_mdev->mbase + 412 src_mbox->rx_start); 413 req_hdr->num_msgs = num_msgs; 414 415 dst_mbox = &pf->mbox_pfvf[0]; 416 dst_size = dst_mbox->mbox_up.tx_size - 417 ALIGN(sizeof(*mbox_hdr), MBOX_MSG_ALIGN); 418 /* Check if msgs fit into destination area */ 419 if (mbox_hdr->msg_size > dst_size) 420 return -EINVAL; 421 422 dst_mdev = &dst_mbox->mbox_up.dev[vf]; 423 dst_mdev->mbase = src_mdev->mbase; 424 dst_mdev->msg_size = mbox_hdr->msg_size; 425 dst_mdev->num_msgs = mbox_hdr->num_msgs; 426 err = otx2_sync_mbox_up_msg(dst_mbox, vf); 427 if (err) { 428 dev_warn(pf->dev, 429 "VF%d is not responding to mailbox\n", vf); 430 return err; 431 } 432 } else if (dir == MBOX_DIR_VFPF_UP) { 433 req_hdr = (struct mbox_hdr *)(src_mbox->dev[0].mbase + 434 src_mbox->rx_start); 435 req_hdr->num_msgs = num_msgs; 436 otx2_forward_msg_pfvf(&pf->mbox_pfvf->mbox_up.dev[vf], 437 &pf->mbox.mbox_up, 438 pf->mbox_pfvf[vf].bbuf_base, 439 0); 440 } 441 442 return 0; 443 } 444 445 static void otx2_pfvf_mbox_handler(struct work_struct *work) 446 { 447 struct mbox_msghdr *msg = NULL; 448 int offset, vf_idx, id, err; 449 struct otx2_mbox_dev *mdev; 450 struct mbox_hdr *req_hdr; 451 struct otx2_mbox *mbox; 452 struct mbox *vf_mbox; 453 struct otx2_nic *pf; 454 455 vf_mbox = container_of(work, struct mbox, mbox_wrk); 456 pf = vf_mbox->pfvf; 457 vf_idx = vf_mbox - pf->mbox_pfvf; 458 459 mbox = &pf->mbox_pfvf[0].mbox; 460 mdev = &mbox->dev[vf_idx]; 461 req_hdr = (struct mbox_hdr *)(mdev->mbase + mbox->rx_start); 462 463 offset = ALIGN(sizeof(*req_hdr), MBOX_MSG_ALIGN); 464 465 for (id = 0; id < vf_mbox->num_msgs; id++) { 466 msg = (struct mbox_msghdr *)(mdev->mbase + mbox->rx_start + 467 offset); 468 469 if (msg->sig != OTX2_MBOX_REQ_SIG) 470 goto inval_msg; 471 472 /* Set VF's number in each of the msg */ 473 msg->pcifunc &= RVU_PFVF_FUNC_MASK; 474 msg->pcifunc |= (vf_idx + 1) & RVU_PFVF_FUNC_MASK; 475 offset = msg->next_msgoff; 476 } 477 err = otx2_forward_vf_mbox_msgs(pf, mbox, MBOX_DIR_PFAF, vf_idx, 478 vf_mbox->num_msgs); 479 if (err) 480 goto inval_msg; 481 return; 482 483 inval_msg: 484 otx2_reply_invalid_msg(mbox, vf_idx, 0, msg->id); 485 otx2_mbox_msg_send(mbox, vf_idx); 486 } 487 488 static void otx2_pfvf_mbox_up_handler(struct work_struct *work) 489 { 490 struct mbox *vf_mbox = container_of(work, struct mbox, mbox_up_wrk); 491 struct otx2_nic *pf = vf_mbox->pfvf; 492 struct otx2_mbox_dev *mdev; 493 int offset, id, vf_idx = 0; 494 struct mbox_hdr *rsp_hdr; 495 struct mbox_msghdr *msg; 496 struct otx2_mbox *mbox; 497 498 vf_idx = vf_mbox - pf->mbox_pfvf; 499 mbox = &pf->mbox_pfvf[0].mbox_up; 500 mdev = &mbox->dev[vf_idx]; 501 502 rsp_hdr = (struct mbox_hdr *)(mdev->mbase + mbox->rx_start); 503 offset = mbox->rx_start + ALIGN(sizeof(*rsp_hdr), MBOX_MSG_ALIGN); 504 505 for (id = 0; id < vf_mbox->up_num_msgs; id++) { 506 msg = mdev->mbase + offset; 507 508 if (msg->id >= MBOX_MSG_MAX) { 509 dev_err(pf->dev, 510 "Mbox msg with unknown ID 0x%x\n", msg->id); 511 goto end; 512 } 513 514 if (msg->sig != OTX2_MBOX_RSP_SIG) { 515 dev_err(pf->dev, 516 "Mbox msg with wrong signature %x, ID 0x%x\n", 517 msg->sig, msg->id); 518 goto end; 519 } 520 521 switch (msg->id) { 522 case MBOX_MSG_CGX_LINK_EVENT: 523 break; 524 default: 525 if (msg->rc) 526 dev_err(pf->dev, 527 "Mbox msg response has err %d, ID 0x%x\n", 528 msg->rc, msg->id); 529 break; 530 } 531 532 end: 533 offset = mbox->rx_start + msg->next_msgoff; 534 if (mdev->msgs_acked == (vf_mbox->up_num_msgs - 1)) 535 __otx2_mbox_reset(mbox, 0); 536 mdev->msgs_acked++; 537 } 538 } 539 540 static irqreturn_t otx2_pfvf_mbox_intr_handler(int irq, void *pf_irq) 541 { 542 struct otx2_nic *pf = (struct otx2_nic *)(pf_irq); 543 int vfs = pf->total_vfs; 544 struct mbox *mbox; 545 u64 intr; 546 547 mbox = pf->mbox_pfvf; 548 /* Handle VF interrupts */ 549 if (vfs > 64) { 550 intr = otx2_read64(pf, RVU_PF_VFPF_MBOX_INTX(1)); 551 otx2_write64(pf, RVU_PF_VFPF_MBOX_INTX(1), intr); 552 otx2_queue_work(mbox, pf->mbox_pfvf_wq, 64, vfs, intr, 553 TYPE_PFVF); 554 vfs -= 64; 555 } 556 557 intr = otx2_read64(pf, RVU_PF_VFPF_MBOX_INTX(0)); 558 otx2_write64(pf, RVU_PF_VFPF_MBOX_INTX(0), intr); 559 560 otx2_queue_work(mbox, pf->mbox_pfvf_wq, 0, vfs, intr, TYPE_PFVF); 561 562 trace_otx2_msg_interrupt(mbox->mbox.pdev, "VF(s) to PF", intr); 563 564 return IRQ_HANDLED; 565 } 566 567 static int otx2_pfvf_mbox_init(struct otx2_nic *pf, int numvfs) 568 { 569 void __iomem *hwbase; 570 struct mbox *mbox; 571 int err, vf; 572 u64 base; 573 574 if (!numvfs) 575 return -EINVAL; 576 577 pf->mbox_pfvf = devm_kcalloc(&pf->pdev->dev, numvfs, 578 sizeof(struct mbox), GFP_KERNEL); 579 if (!pf->mbox_pfvf) 580 return -ENOMEM; 581 582 pf->mbox_pfvf_wq = alloc_workqueue("otx2_pfvf_mailbox", 583 WQ_UNBOUND | WQ_HIGHPRI | 584 WQ_MEM_RECLAIM, 1); 585 if (!pf->mbox_pfvf_wq) 586 return -ENOMEM; 587 588 /* On CN10K platform, PF <-> VF mailbox region follows after 589 * PF <-> AF mailbox region. 590 */ 591 if (test_bit(CN10K_MBOX, &pf->hw.cap_flag)) 592 base = pci_resource_start(pf->pdev, PCI_MBOX_BAR_NUM) + 593 MBOX_SIZE; 594 else 595 base = readq((void __iomem *)((u64)pf->reg_base + 596 RVU_PF_VF_BAR4_ADDR)); 597 598 hwbase = ioremap_wc(base, MBOX_SIZE * pf->total_vfs); 599 if (!hwbase) { 600 err = -ENOMEM; 601 goto free_wq; 602 } 603 604 mbox = &pf->mbox_pfvf[0]; 605 err = otx2_mbox_init(&mbox->mbox, hwbase, pf->pdev, pf->reg_base, 606 MBOX_DIR_PFVF, numvfs); 607 if (err) 608 goto free_iomem; 609 610 err = otx2_mbox_init(&mbox->mbox_up, hwbase, pf->pdev, pf->reg_base, 611 MBOX_DIR_PFVF_UP, numvfs); 612 if (err) 613 goto free_iomem; 614 615 for (vf = 0; vf < numvfs; vf++) { 616 mbox->pfvf = pf; 617 INIT_WORK(&mbox->mbox_wrk, otx2_pfvf_mbox_handler); 618 INIT_WORK(&mbox->mbox_up_wrk, otx2_pfvf_mbox_up_handler); 619 mbox++; 620 } 621 622 return 0; 623 624 free_iomem: 625 if (hwbase) 626 iounmap(hwbase); 627 free_wq: 628 destroy_workqueue(pf->mbox_pfvf_wq); 629 return err; 630 } 631 632 static void otx2_pfvf_mbox_destroy(struct otx2_nic *pf) 633 { 634 struct mbox *mbox = &pf->mbox_pfvf[0]; 635 636 if (!mbox) 637 return; 638 639 if (pf->mbox_pfvf_wq) { 640 destroy_workqueue(pf->mbox_pfvf_wq); 641 pf->mbox_pfvf_wq = NULL; 642 } 643 644 if (mbox->mbox.hwbase) 645 iounmap(mbox->mbox.hwbase); 646 647 otx2_mbox_destroy(&mbox->mbox); 648 } 649 650 static void otx2_enable_pfvf_mbox_intr(struct otx2_nic *pf, int numvfs) 651 { 652 /* Clear PF <=> VF mailbox IRQ */ 653 otx2_write64(pf, RVU_PF_VFPF_MBOX_INTX(0), ~0ull); 654 otx2_write64(pf, RVU_PF_VFPF_MBOX_INTX(1), ~0ull); 655 656 /* Enable PF <=> VF mailbox IRQ */ 657 otx2_write64(pf, RVU_PF_VFPF_MBOX_INT_ENA_W1SX(0), INTR_MASK(numvfs)); 658 if (numvfs > 64) { 659 numvfs -= 64; 660 otx2_write64(pf, RVU_PF_VFPF_MBOX_INT_ENA_W1SX(1), 661 INTR_MASK(numvfs)); 662 } 663 } 664 665 static void otx2_disable_pfvf_mbox_intr(struct otx2_nic *pf, int numvfs) 666 { 667 int vector; 668 669 /* Disable PF <=> VF mailbox IRQ */ 670 otx2_write64(pf, RVU_PF_VFPF_MBOX_INT_ENA_W1CX(0), ~0ull); 671 otx2_write64(pf, RVU_PF_VFPF_MBOX_INT_ENA_W1CX(1), ~0ull); 672 673 otx2_write64(pf, RVU_PF_VFPF_MBOX_INTX(0), ~0ull); 674 vector = pci_irq_vector(pf->pdev, RVU_PF_INT_VEC_VFPF_MBOX0); 675 free_irq(vector, pf); 676 677 if (numvfs > 64) { 678 otx2_write64(pf, RVU_PF_VFPF_MBOX_INTX(1), ~0ull); 679 vector = pci_irq_vector(pf->pdev, RVU_PF_INT_VEC_VFPF_MBOX1); 680 free_irq(vector, pf); 681 } 682 } 683 684 static int otx2_register_pfvf_mbox_intr(struct otx2_nic *pf, int numvfs) 685 { 686 struct otx2_hw *hw = &pf->hw; 687 char *irq_name; 688 int err; 689 690 /* Register MBOX0 interrupt handler */ 691 irq_name = &hw->irq_name[RVU_PF_INT_VEC_VFPF_MBOX0 * NAME_SIZE]; 692 if (pf->pcifunc) 693 snprintf(irq_name, NAME_SIZE, 694 "RVUPF%d_VF Mbox0", rvu_get_pf(pf->pcifunc)); 695 else 696 snprintf(irq_name, NAME_SIZE, "RVUPF_VF Mbox0"); 697 err = request_irq(pci_irq_vector(pf->pdev, RVU_PF_INT_VEC_VFPF_MBOX0), 698 otx2_pfvf_mbox_intr_handler, 0, irq_name, pf); 699 if (err) { 700 dev_err(pf->dev, 701 "RVUPF: IRQ registration failed for PFVF mbox0 irq\n"); 702 return err; 703 } 704 705 if (numvfs > 64) { 706 /* Register MBOX1 interrupt handler */ 707 irq_name = &hw->irq_name[RVU_PF_INT_VEC_VFPF_MBOX1 * NAME_SIZE]; 708 if (pf->pcifunc) 709 snprintf(irq_name, NAME_SIZE, 710 "RVUPF%d_VF Mbox1", rvu_get_pf(pf->pcifunc)); 711 else 712 snprintf(irq_name, NAME_SIZE, "RVUPF_VF Mbox1"); 713 err = request_irq(pci_irq_vector(pf->pdev, 714 RVU_PF_INT_VEC_VFPF_MBOX1), 715 otx2_pfvf_mbox_intr_handler, 716 0, irq_name, pf); 717 if (err) { 718 dev_err(pf->dev, 719 "RVUPF: IRQ registration failed for PFVF mbox1 irq\n"); 720 return err; 721 } 722 } 723 724 otx2_enable_pfvf_mbox_intr(pf, numvfs); 725 726 return 0; 727 } 728 729 static void otx2_process_pfaf_mbox_msg(struct otx2_nic *pf, 730 struct mbox_msghdr *msg) 731 { 732 int devid; 733 734 if (msg->id >= MBOX_MSG_MAX) { 735 dev_err(pf->dev, 736 "Mbox msg with unknown ID 0x%x\n", msg->id); 737 return; 738 } 739 740 if (msg->sig != OTX2_MBOX_RSP_SIG) { 741 dev_err(pf->dev, 742 "Mbox msg with wrong signature %x, ID 0x%x\n", 743 msg->sig, msg->id); 744 return; 745 } 746 747 /* message response heading VF */ 748 devid = msg->pcifunc & RVU_PFVF_FUNC_MASK; 749 if (devid) { 750 struct otx2_vf_config *config = &pf->vf_configs[devid - 1]; 751 struct delayed_work *dwork; 752 753 switch (msg->id) { 754 case MBOX_MSG_NIX_LF_START_RX: 755 config->intf_down = false; 756 dwork = &config->link_event_work; 757 schedule_delayed_work(dwork, msecs_to_jiffies(100)); 758 break; 759 case MBOX_MSG_NIX_LF_STOP_RX: 760 config->intf_down = true; 761 break; 762 } 763 764 return; 765 } 766 767 switch (msg->id) { 768 case MBOX_MSG_READY: 769 pf->pcifunc = msg->pcifunc; 770 break; 771 case MBOX_MSG_MSIX_OFFSET: 772 mbox_handler_msix_offset(pf, (struct msix_offset_rsp *)msg); 773 break; 774 case MBOX_MSG_NPA_LF_ALLOC: 775 mbox_handler_npa_lf_alloc(pf, (struct npa_lf_alloc_rsp *)msg); 776 break; 777 case MBOX_MSG_NIX_LF_ALLOC: 778 mbox_handler_nix_lf_alloc(pf, (struct nix_lf_alloc_rsp *)msg); 779 break; 780 case MBOX_MSG_NIX_TXSCH_ALLOC: 781 mbox_handler_nix_txsch_alloc(pf, 782 (struct nix_txsch_alloc_rsp *)msg); 783 break; 784 case MBOX_MSG_NIX_BP_ENABLE: 785 mbox_handler_nix_bp_enable(pf, (struct nix_bp_cfg_rsp *)msg); 786 break; 787 case MBOX_MSG_CGX_STATS: 788 mbox_handler_cgx_stats(pf, (struct cgx_stats_rsp *)msg); 789 break; 790 case MBOX_MSG_CGX_FEC_STATS: 791 mbox_handler_cgx_fec_stats(pf, (struct cgx_fec_stats_rsp *)msg); 792 break; 793 default: 794 if (msg->rc) 795 dev_err(pf->dev, 796 "Mbox msg response has err %d, ID 0x%x\n", 797 msg->rc, msg->id); 798 break; 799 } 800 } 801 802 static void otx2_pfaf_mbox_handler(struct work_struct *work) 803 { 804 struct otx2_mbox_dev *mdev; 805 struct mbox_hdr *rsp_hdr; 806 struct mbox_msghdr *msg; 807 struct otx2_mbox *mbox; 808 struct mbox *af_mbox; 809 struct otx2_nic *pf; 810 int offset, id; 811 812 af_mbox = container_of(work, struct mbox, mbox_wrk); 813 mbox = &af_mbox->mbox; 814 mdev = &mbox->dev[0]; 815 rsp_hdr = (struct mbox_hdr *)(mdev->mbase + mbox->rx_start); 816 817 offset = mbox->rx_start + ALIGN(sizeof(*rsp_hdr), MBOX_MSG_ALIGN); 818 pf = af_mbox->pfvf; 819 820 for (id = 0; id < af_mbox->num_msgs; id++) { 821 msg = (struct mbox_msghdr *)(mdev->mbase + offset); 822 otx2_process_pfaf_mbox_msg(pf, msg); 823 offset = mbox->rx_start + msg->next_msgoff; 824 if (mdev->msgs_acked == (af_mbox->num_msgs - 1)) 825 __otx2_mbox_reset(mbox, 0); 826 mdev->msgs_acked++; 827 } 828 829 } 830 831 static void otx2_handle_link_event(struct otx2_nic *pf) 832 { 833 struct cgx_link_user_info *linfo = &pf->linfo; 834 struct net_device *netdev = pf->netdev; 835 836 pr_info("%s NIC Link is %s %d Mbps %s duplex\n", netdev->name, 837 linfo->link_up ? "UP" : "DOWN", linfo->speed, 838 linfo->full_duplex ? "Full" : "Half"); 839 if (linfo->link_up) { 840 netif_carrier_on(netdev); 841 netif_tx_start_all_queues(netdev); 842 } else { 843 netif_tx_stop_all_queues(netdev); 844 netif_carrier_off(netdev); 845 } 846 } 847 848 int otx2_mbox_up_handler_cgx_link_event(struct otx2_nic *pf, 849 struct cgx_link_info_msg *msg, 850 struct msg_rsp *rsp) 851 { 852 int i; 853 854 /* Copy the link info sent by AF */ 855 pf->linfo = msg->link_info; 856 857 /* notify VFs about link event */ 858 for (i = 0; i < pci_num_vf(pf->pdev); i++) { 859 struct otx2_vf_config *config = &pf->vf_configs[i]; 860 struct delayed_work *dwork = &config->link_event_work; 861 862 if (config->intf_down) 863 continue; 864 865 schedule_delayed_work(dwork, msecs_to_jiffies(100)); 866 } 867 868 /* interface has not been fully configured yet */ 869 if (pf->flags & OTX2_FLAG_INTF_DOWN) 870 return 0; 871 872 otx2_handle_link_event(pf); 873 return 0; 874 } 875 876 static int otx2_process_mbox_msg_up(struct otx2_nic *pf, 877 struct mbox_msghdr *req) 878 { 879 /* Check if valid, if not reply with a invalid msg */ 880 if (req->sig != OTX2_MBOX_REQ_SIG) { 881 otx2_reply_invalid_msg(&pf->mbox.mbox_up, 0, 0, req->id); 882 return -ENODEV; 883 } 884 885 switch (req->id) { 886 #define M(_name, _id, _fn_name, _req_type, _rsp_type) \ 887 case _id: { \ 888 struct _rsp_type *rsp; \ 889 int err; \ 890 \ 891 rsp = (struct _rsp_type *)otx2_mbox_alloc_msg( \ 892 &pf->mbox.mbox_up, 0, \ 893 sizeof(struct _rsp_type)); \ 894 if (!rsp) \ 895 return -ENOMEM; \ 896 \ 897 rsp->hdr.id = _id; \ 898 rsp->hdr.sig = OTX2_MBOX_RSP_SIG; \ 899 rsp->hdr.pcifunc = 0; \ 900 rsp->hdr.rc = 0; \ 901 \ 902 err = otx2_mbox_up_handler_ ## _fn_name( \ 903 pf, (struct _req_type *)req, rsp); \ 904 return err; \ 905 } 906 MBOX_UP_CGX_MESSAGES 907 #undef M 908 break; 909 default: 910 otx2_reply_invalid_msg(&pf->mbox.mbox_up, 0, 0, req->id); 911 return -ENODEV; 912 } 913 return 0; 914 } 915 916 static void otx2_pfaf_mbox_up_handler(struct work_struct *work) 917 { 918 struct mbox *af_mbox = container_of(work, struct mbox, mbox_up_wrk); 919 struct otx2_mbox *mbox = &af_mbox->mbox_up; 920 struct otx2_mbox_dev *mdev = &mbox->dev[0]; 921 struct otx2_nic *pf = af_mbox->pfvf; 922 int offset, id, devid = 0; 923 struct mbox_hdr *rsp_hdr; 924 struct mbox_msghdr *msg; 925 926 rsp_hdr = (struct mbox_hdr *)(mdev->mbase + mbox->rx_start); 927 928 offset = mbox->rx_start + ALIGN(sizeof(*rsp_hdr), MBOX_MSG_ALIGN); 929 930 for (id = 0; id < af_mbox->up_num_msgs; id++) { 931 msg = (struct mbox_msghdr *)(mdev->mbase + offset); 932 933 devid = msg->pcifunc & RVU_PFVF_FUNC_MASK; 934 /* Skip processing VF's messages */ 935 if (!devid) 936 otx2_process_mbox_msg_up(pf, msg); 937 offset = mbox->rx_start + msg->next_msgoff; 938 } 939 if (devid) { 940 otx2_forward_vf_mbox_msgs(pf, &pf->mbox.mbox_up, 941 MBOX_DIR_PFVF_UP, devid - 1, 942 af_mbox->up_num_msgs); 943 return; 944 } 945 946 otx2_mbox_msg_send(mbox, 0); 947 } 948 949 static irqreturn_t otx2_pfaf_mbox_intr_handler(int irq, void *pf_irq) 950 { 951 struct otx2_nic *pf = (struct otx2_nic *)pf_irq; 952 struct mbox *mbox; 953 954 /* Clear the IRQ */ 955 otx2_write64(pf, RVU_PF_INT, BIT_ULL(0)); 956 957 mbox = &pf->mbox; 958 959 trace_otx2_msg_interrupt(mbox->mbox.pdev, "AF to PF", BIT_ULL(0)); 960 961 otx2_queue_work(mbox, pf->mbox_wq, 0, 1, 1, TYPE_PFAF); 962 963 return IRQ_HANDLED; 964 } 965 966 static void otx2_disable_mbox_intr(struct otx2_nic *pf) 967 { 968 int vector = pci_irq_vector(pf->pdev, RVU_PF_INT_VEC_AFPF_MBOX); 969 970 /* Disable AF => PF mailbox IRQ */ 971 otx2_write64(pf, RVU_PF_INT_ENA_W1C, BIT_ULL(0)); 972 free_irq(vector, pf); 973 } 974 975 static int otx2_register_mbox_intr(struct otx2_nic *pf, bool probe_af) 976 { 977 struct otx2_hw *hw = &pf->hw; 978 struct msg_req *req; 979 char *irq_name; 980 int err; 981 982 /* Register mailbox interrupt handler */ 983 irq_name = &hw->irq_name[RVU_PF_INT_VEC_AFPF_MBOX * NAME_SIZE]; 984 snprintf(irq_name, NAME_SIZE, "RVUPFAF Mbox"); 985 err = request_irq(pci_irq_vector(pf->pdev, RVU_PF_INT_VEC_AFPF_MBOX), 986 otx2_pfaf_mbox_intr_handler, 0, irq_name, pf); 987 if (err) { 988 dev_err(pf->dev, 989 "RVUPF: IRQ registration failed for PFAF mbox irq\n"); 990 return err; 991 } 992 993 /* Enable mailbox interrupt for msgs coming from AF. 994 * First clear to avoid spurious interrupts, if any. 995 */ 996 otx2_write64(pf, RVU_PF_INT, BIT_ULL(0)); 997 otx2_write64(pf, RVU_PF_INT_ENA_W1S, BIT_ULL(0)); 998 999 if (!probe_af) 1000 return 0; 1001 1002 /* Check mailbox communication with AF */ 1003 req = otx2_mbox_alloc_msg_ready(&pf->mbox); 1004 if (!req) { 1005 otx2_disable_mbox_intr(pf); 1006 return -ENOMEM; 1007 } 1008 err = otx2_sync_mbox_msg(&pf->mbox); 1009 if (err) { 1010 dev_warn(pf->dev, 1011 "AF not responding to mailbox, deferring probe\n"); 1012 otx2_disable_mbox_intr(pf); 1013 return -EPROBE_DEFER; 1014 } 1015 1016 return 0; 1017 } 1018 1019 static void otx2_pfaf_mbox_destroy(struct otx2_nic *pf) 1020 { 1021 struct mbox *mbox = &pf->mbox; 1022 1023 if (pf->mbox_wq) { 1024 destroy_workqueue(pf->mbox_wq); 1025 pf->mbox_wq = NULL; 1026 } 1027 1028 if (mbox->mbox.hwbase) 1029 iounmap((void __iomem *)mbox->mbox.hwbase); 1030 1031 otx2_mbox_destroy(&mbox->mbox); 1032 otx2_mbox_destroy(&mbox->mbox_up); 1033 } 1034 1035 static int otx2_pfaf_mbox_init(struct otx2_nic *pf) 1036 { 1037 struct mbox *mbox = &pf->mbox; 1038 void __iomem *hwbase; 1039 int err; 1040 1041 mbox->pfvf = pf; 1042 pf->mbox_wq = alloc_workqueue("otx2_pfaf_mailbox", 1043 WQ_UNBOUND | WQ_HIGHPRI | 1044 WQ_MEM_RECLAIM, 1); 1045 if (!pf->mbox_wq) 1046 return -ENOMEM; 1047 1048 /* Mailbox is a reserved memory (in RAM) region shared between 1049 * admin function (i.e AF) and this PF, shouldn't be mapped as 1050 * device memory to allow unaligned accesses. 1051 */ 1052 hwbase = ioremap_wc(pci_resource_start(pf->pdev, PCI_MBOX_BAR_NUM), 1053 MBOX_SIZE); 1054 if (!hwbase) { 1055 dev_err(pf->dev, "Unable to map PFAF mailbox region\n"); 1056 err = -ENOMEM; 1057 goto exit; 1058 } 1059 1060 err = otx2_mbox_init(&mbox->mbox, hwbase, pf->pdev, pf->reg_base, 1061 MBOX_DIR_PFAF, 1); 1062 if (err) 1063 goto exit; 1064 1065 err = otx2_mbox_init(&mbox->mbox_up, hwbase, pf->pdev, pf->reg_base, 1066 MBOX_DIR_PFAF_UP, 1); 1067 if (err) 1068 goto exit; 1069 1070 err = otx2_mbox_bbuf_init(mbox, pf->pdev); 1071 if (err) 1072 goto exit; 1073 1074 INIT_WORK(&mbox->mbox_wrk, otx2_pfaf_mbox_handler); 1075 INIT_WORK(&mbox->mbox_up_wrk, otx2_pfaf_mbox_up_handler); 1076 mutex_init(&mbox->lock); 1077 1078 return 0; 1079 exit: 1080 otx2_pfaf_mbox_destroy(pf); 1081 return err; 1082 } 1083 1084 static int otx2_cgx_config_linkevents(struct otx2_nic *pf, bool enable) 1085 { 1086 struct msg_req *msg; 1087 int err; 1088 1089 mutex_lock(&pf->mbox.lock); 1090 if (enable) 1091 msg = otx2_mbox_alloc_msg_cgx_start_linkevents(&pf->mbox); 1092 else 1093 msg = otx2_mbox_alloc_msg_cgx_stop_linkevents(&pf->mbox); 1094 1095 if (!msg) { 1096 mutex_unlock(&pf->mbox.lock); 1097 return -ENOMEM; 1098 } 1099 1100 err = otx2_sync_mbox_msg(&pf->mbox); 1101 mutex_unlock(&pf->mbox.lock); 1102 return err; 1103 } 1104 1105 static int otx2_cgx_config_loopback(struct otx2_nic *pf, bool enable) 1106 { 1107 struct msg_req *msg; 1108 int err; 1109 1110 if (enable && bitmap_weight(&pf->flow_cfg->dmacflt_bmap, 1111 pf->flow_cfg->dmacflt_max_flows)) 1112 netdev_warn(pf->netdev, 1113 "CGX/RPM internal loopback might not work as DMAC filters are active\n"); 1114 1115 mutex_lock(&pf->mbox.lock); 1116 if (enable) 1117 msg = otx2_mbox_alloc_msg_cgx_intlbk_enable(&pf->mbox); 1118 else 1119 msg = otx2_mbox_alloc_msg_cgx_intlbk_disable(&pf->mbox); 1120 1121 if (!msg) { 1122 mutex_unlock(&pf->mbox.lock); 1123 return -ENOMEM; 1124 } 1125 1126 err = otx2_sync_mbox_msg(&pf->mbox); 1127 mutex_unlock(&pf->mbox.lock); 1128 return err; 1129 } 1130 1131 int otx2_set_real_num_queues(struct net_device *netdev, 1132 int tx_queues, int rx_queues) 1133 { 1134 int err; 1135 1136 err = netif_set_real_num_tx_queues(netdev, tx_queues); 1137 if (err) { 1138 netdev_err(netdev, 1139 "Failed to set no of Tx queues: %d\n", tx_queues); 1140 return err; 1141 } 1142 1143 err = netif_set_real_num_rx_queues(netdev, rx_queues); 1144 if (err) 1145 netdev_err(netdev, 1146 "Failed to set no of Rx queues: %d\n", rx_queues); 1147 return err; 1148 } 1149 EXPORT_SYMBOL(otx2_set_real_num_queues); 1150 1151 static irqreturn_t otx2_q_intr_handler(int irq, void *data) 1152 { 1153 struct otx2_nic *pf = data; 1154 u64 val, *ptr; 1155 u64 qidx = 0; 1156 1157 /* CQ */ 1158 for (qidx = 0; qidx < pf->qset.cq_cnt; qidx++) { 1159 ptr = otx2_get_regaddr(pf, NIX_LF_CQ_OP_INT); 1160 val = otx2_atomic64_add((qidx << 44), ptr); 1161 1162 otx2_write64(pf, NIX_LF_CQ_OP_INT, (qidx << 44) | 1163 (val & NIX_CQERRINT_BITS)); 1164 if (!(val & (NIX_CQERRINT_BITS | BIT_ULL(42)))) 1165 continue; 1166 1167 if (val & BIT_ULL(42)) { 1168 netdev_err(pf->netdev, "CQ%lld: error reading NIX_LF_CQ_OP_INT, NIX_LF_ERR_INT 0x%llx\n", 1169 qidx, otx2_read64(pf, NIX_LF_ERR_INT)); 1170 } else { 1171 if (val & BIT_ULL(NIX_CQERRINT_DOOR_ERR)) 1172 netdev_err(pf->netdev, "CQ%lld: Doorbell error", 1173 qidx); 1174 if (val & BIT_ULL(NIX_CQERRINT_CQE_FAULT)) 1175 netdev_err(pf->netdev, "CQ%lld: Memory fault on CQE write to LLC/DRAM", 1176 qidx); 1177 } 1178 1179 schedule_work(&pf->reset_task); 1180 } 1181 1182 /* SQ */ 1183 for (qidx = 0; qidx < pf->hw.tx_queues; qidx++) { 1184 ptr = otx2_get_regaddr(pf, NIX_LF_SQ_OP_INT); 1185 val = otx2_atomic64_add((qidx << 44), ptr); 1186 otx2_write64(pf, NIX_LF_SQ_OP_INT, (qidx << 44) | 1187 (val & NIX_SQINT_BITS)); 1188 1189 if (!(val & (NIX_SQINT_BITS | BIT_ULL(42)))) 1190 continue; 1191 1192 if (val & BIT_ULL(42)) { 1193 netdev_err(pf->netdev, "SQ%lld: error reading NIX_LF_SQ_OP_INT, NIX_LF_ERR_INT 0x%llx\n", 1194 qidx, otx2_read64(pf, NIX_LF_ERR_INT)); 1195 } else { 1196 if (val & BIT_ULL(NIX_SQINT_LMT_ERR)) { 1197 netdev_err(pf->netdev, "SQ%lld: LMT store error NIX_LF_SQ_OP_ERR_DBG:0x%llx", 1198 qidx, 1199 otx2_read64(pf, 1200 NIX_LF_SQ_OP_ERR_DBG)); 1201 otx2_write64(pf, NIX_LF_SQ_OP_ERR_DBG, 1202 BIT_ULL(44)); 1203 } 1204 if (val & BIT_ULL(NIX_SQINT_MNQ_ERR)) { 1205 netdev_err(pf->netdev, "SQ%lld: Meta-descriptor enqueue error NIX_LF_MNQ_ERR_DGB:0x%llx\n", 1206 qidx, 1207 otx2_read64(pf, NIX_LF_MNQ_ERR_DBG)); 1208 otx2_write64(pf, NIX_LF_MNQ_ERR_DBG, 1209 BIT_ULL(44)); 1210 } 1211 if (val & BIT_ULL(NIX_SQINT_SEND_ERR)) { 1212 netdev_err(pf->netdev, "SQ%lld: Send error, NIX_LF_SEND_ERR_DBG 0x%llx", 1213 qidx, 1214 otx2_read64(pf, 1215 NIX_LF_SEND_ERR_DBG)); 1216 otx2_write64(pf, NIX_LF_SEND_ERR_DBG, 1217 BIT_ULL(44)); 1218 } 1219 if (val & BIT_ULL(NIX_SQINT_SQB_ALLOC_FAIL)) 1220 netdev_err(pf->netdev, "SQ%lld: SQB allocation failed", 1221 qidx); 1222 } 1223 1224 schedule_work(&pf->reset_task); 1225 } 1226 1227 return IRQ_HANDLED; 1228 } 1229 1230 static irqreturn_t otx2_cq_intr_handler(int irq, void *cq_irq) 1231 { 1232 struct otx2_cq_poll *cq_poll = (struct otx2_cq_poll *)cq_irq; 1233 struct otx2_nic *pf = (struct otx2_nic *)cq_poll->dev; 1234 int qidx = cq_poll->cint_idx; 1235 1236 /* Disable interrupts. 1237 * 1238 * Completion interrupts behave in a level-triggered interrupt 1239 * fashion, and hence have to be cleared only after it is serviced. 1240 */ 1241 otx2_write64(pf, NIX_LF_CINTX_ENA_W1C(qidx), BIT_ULL(0)); 1242 1243 /* Schedule NAPI */ 1244 napi_schedule_irqoff(&cq_poll->napi); 1245 1246 return IRQ_HANDLED; 1247 } 1248 1249 static void otx2_disable_napi(struct otx2_nic *pf) 1250 { 1251 struct otx2_qset *qset = &pf->qset; 1252 struct otx2_cq_poll *cq_poll; 1253 int qidx; 1254 1255 for (qidx = 0; qidx < pf->hw.cint_cnt; qidx++) { 1256 cq_poll = &qset->napi[qidx]; 1257 napi_disable(&cq_poll->napi); 1258 netif_napi_del(&cq_poll->napi); 1259 } 1260 } 1261 1262 static void otx2_free_cq_res(struct otx2_nic *pf) 1263 { 1264 struct otx2_qset *qset = &pf->qset; 1265 struct otx2_cq_queue *cq; 1266 int qidx; 1267 1268 /* Disable CQs */ 1269 otx2_ctx_disable(&pf->mbox, NIX_AQ_CTYPE_CQ, false); 1270 for (qidx = 0; qidx < qset->cq_cnt; qidx++) { 1271 cq = &qset->cq[qidx]; 1272 qmem_free(pf->dev, cq->cqe); 1273 } 1274 } 1275 1276 static void otx2_free_sq_res(struct otx2_nic *pf) 1277 { 1278 struct otx2_qset *qset = &pf->qset; 1279 struct otx2_snd_queue *sq; 1280 int qidx; 1281 1282 /* Disable SQs */ 1283 otx2_ctx_disable(&pf->mbox, NIX_AQ_CTYPE_SQ, false); 1284 /* Free SQB pointers */ 1285 otx2_sq_free_sqbs(pf); 1286 for (qidx = 0; qidx < pf->hw.tx_queues; qidx++) { 1287 sq = &qset->sq[qidx]; 1288 qmem_free(pf->dev, sq->sqe); 1289 qmem_free(pf->dev, sq->tso_hdrs); 1290 kfree(sq->sg); 1291 kfree(sq->sqb_ptrs); 1292 } 1293 } 1294 1295 static int otx2_get_rbuf_size(struct otx2_nic *pf, int mtu) 1296 { 1297 int frame_size; 1298 int total_size; 1299 int rbuf_size; 1300 1301 /* The data transferred by NIX to memory consists of actual packet 1302 * plus additional data which has timestamp and/or EDSA/HIGIG2 1303 * headers if interface is configured in corresponding modes. 1304 * NIX transfers entire data using 6 segments/buffers and writes 1305 * a CQE_RX descriptor with those segment addresses. First segment 1306 * has additional data prepended to packet. Also software omits a 1307 * headroom of 128 bytes and sizeof(struct skb_shared_info) in 1308 * each segment. Hence the total size of memory needed 1309 * to receive a packet with 'mtu' is: 1310 * frame size = mtu + additional data; 1311 * memory = frame_size + (headroom + struct skb_shared_info size) * 6; 1312 * each receive buffer size = memory / 6; 1313 */ 1314 frame_size = mtu + OTX2_ETH_HLEN + OTX2_HW_TIMESTAMP_LEN; 1315 total_size = frame_size + (OTX2_HEAD_ROOM + 1316 OTX2_DATA_ALIGN(sizeof(struct skb_shared_info))) * 6; 1317 rbuf_size = total_size / 6; 1318 1319 return ALIGN(rbuf_size, 2048); 1320 } 1321 1322 static int otx2_init_hw_resources(struct otx2_nic *pf) 1323 { 1324 struct nix_lf_free_req *free_req; 1325 struct mbox *mbox = &pf->mbox; 1326 struct otx2_hw *hw = &pf->hw; 1327 struct msg_req *req; 1328 int err = 0, lvl; 1329 1330 /* Set required NPA LF's pool counts 1331 * Auras and Pools are used in a 1:1 mapping, 1332 * so, aura count = pool count. 1333 */ 1334 hw->rqpool_cnt = hw->rx_queues; 1335 hw->sqpool_cnt = hw->tx_queues; 1336 hw->pool_cnt = hw->rqpool_cnt + hw->sqpool_cnt; 1337 1338 pf->max_frs = pf->netdev->mtu + OTX2_ETH_HLEN + OTX2_HW_TIMESTAMP_LEN; 1339 1340 pf->rbsize = otx2_get_rbuf_size(pf, pf->netdev->mtu); 1341 1342 mutex_lock(&mbox->lock); 1343 /* NPA init */ 1344 err = otx2_config_npa(pf); 1345 if (err) 1346 goto exit; 1347 1348 /* NIX init */ 1349 err = otx2_config_nix(pf); 1350 if (err) 1351 goto err_free_npa_lf; 1352 1353 /* Enable backpressure */ 1354 otx2_nix_config_bp(pf, true); 1355 1356 /* Init Auras and pools used by NIX RQ, for free buffer ptrs */ 1357 err = otx2_rq_aura_pool_init(pf); 1358 if (err) { 1359 mutex_unlock(&mbox->lock); 1360 goto err_free_nix_lf; 1361 } 1362 /* Init Auras and pools used by NIX SQ, for queueing SQEs */ 1363 err = otx2_sq_aura_pool_init(pf); 1364 if (err) { 1365 mutex_unlock(&mbox->lock); 1366 goto err_free_rq_ptrs; 1367 } 1368 1369 err = otx2_txsch_alloc(pf); 1370 if (err) { 1371 mutex_unlock(&mbox->lock); 1372 goto err_free_sq_ptrs; 1373 } 1374 1375 err = otx2_config_nix_queues(pf); 1376 if (err) { 1377 mutex_unlock(&mbox->lock); 1378 goto err_free_txsch; 1379 } 1380 for (lvl = 0; lvl < NIX_TXSCH_LVL_CNT; lvl++) { 1381 err = otx2_txschq_config(pf, lvl); 1382 if (err) { 1383 mutex_unlock(&mbox->lock); 1384 goto err_free_nix_queues; 1385 } 1386 } 1387 mutex_unlock(&mbox->lock); 1388 return err; 1389 1390 err_free_nix_queues: 1391 otx2_free_sq_res(pf); 1392 otx2_free_cq_res(pf); 1393 otx2_ctx_disable(mbox, NIX_AQ_CTYPE_RQ, false); 1394 err_free_txsch: 1395 if (otx2_txschq_stop(pf)) 1396 dev_err(pf->dev, "%s failed to stop TX schedulers\n", __func__); 1397 err_free_sq_ptrs: 1398 otx2_sq_free_sqbs(pf); 1399 err_free_rq_ptrs: 1400 otx2_free_aura_ptr(pf, AURA_NIX_RQ); 1401 otx2_ctx_disable(mbox, NPA_AQ_CTYPE_POOL, true); 1402 otx2_ctx_disable(mbox, NPA_AQ_CTYPE_AURA, true); 1403 otx2_aura_pool_free(pf); 1404 err_free_nix_lf: 1405 mutex_lock(&mbox->lock); 1406 free_req = otx2_mbox_alloc_msg_nix_lf_free(mbox); 1407 if (free_req) { 1408 free_req->flags = NIX_LF_DISABLE_FLOWS; 1409 if (otx2_sync_mbox_msg(mbox)) 1410 dev_err(pf->dev, "%s failed to free nixlf\n", __func__); 1411 } 1412 err_free_npa_lf: 1413 /* Reset NPA LF */ 1414 req = otx2_mbox_alloc_msg_npa_lf_free(mbox); 1415 if (req) { 1416 if (otx2_sync_mbox_msg(mbox)) 1417 dev_err(pf->dev, "%s failed to free npalf\n", __func__); 1418 } 1419 exit: 1420 mutex_unlock(&mbox->lock); 1421 return err; 1422 } 1423 1424 static void otx2_free_hw_resources(struct otx2_nic *pf) 1425 { 1426 struct otx2_qset *qset = &pf->qset; 1427 struct nix_lf_free_req *free_req; 1428 struct mbox *mbox = &pf->mbox; 1429 struct otx2_cq_queue *cq; 1430 struct msg_req *req; 1431 int qidx, err; 1432 1433 /* Ensure all SQE are processed */ 1434 otx2_sqb_flush(pf); 1435 1436 /* Stop transmission */ 1437 err = otx2_txschq_stop(pf); 1438 if (err) 1439 dev_err(pf->dev, "RVUPF: Failed to stop/free TX schedulers\n"); 1440 1441 mutex_lock(&mbox->lock); 1442 /* Disable backpressure */ 1443 if (!(pf->pcifunc & RVU_PFVF_FUNC_MASK)) 1444 otx2_nix_config_bp(pf, false); 1445 mutex_unlock(&mbox->lock); 1446 1447 /* Disable RQs */ 1448 otx2_ctx_disable(mbox, NIX_AQ_CTYPE_RQ, false); 1449 1450 /*Dequeue all CQEs */ 1451 for (qidx = 0; qidx < qset->cq_cnt; qidx++) { 1452 cq = &qset->cq[qidx]; 1453 if (cq->cq_type == CQ_RX) 1454 otx2_cleanup_rx_cqes(pf, cq); 1455 else 1456 otx2_cleanup_tx_cqes(pf, cq); 1457 } 1458 1459 otx2_free_sq_res(pf); 1460 1461 /* Free RQ buffer pointers*/ 1462 otx2_free_aura_ptr(pf, AURA_NIX_RQ); 1463 1464 otx2_free_cq_res(pf); 1465 1466 /* Free all ingress bandwidth profiles allocated */ 1467 cn10k_free_all_ipolicers(pf); 1468 1469 mutex_lock(&mbox->lock); 1470 /* Reset NIX LF */ 1471 free_req = otx2_mbox_alloc_msg_nix_lf_free(mbox); 1472 if (free_req) { 1473 free_req->flags = NIX_LF_DISABLE_FLOWS; 1474 if (!(pf->flags & OTX2_FLAG_PF_SHUTDOWN)) 1475 free_req->flags |= NIX_LF_DONT_FREE_TX_VTAG; 1476 if (otx2_sync_mbox_msg(mbox)) 1477 dev_err(pf->dev, "%s failed to free nixlf\n", __func__); 1478 } 1479 mutex_unlock(&mbox->lock); 1480 1481 /* Disable NPA Pool and Aura hw context */ 1482 otx2_ctx_disable(mbox, NPA_AQ_CTYPE_POOL, true); 1483 otx2_ctx_disable(mbox, NPA_AQ_CTYPE_AURA, true); 1484 otx2_aura_pool_free(pf); 1485 1486 mutex_lock(&mbox->lock); 1487 /* Reset NPA LF */ 1488 req = otx2_mbox_alloc_msg_npa_lf_free(mbox); 1489 if (req) { 1490 if (otx2_sync_mbox_msg(mbox)) 1491 dev_err(pf->dev, "%s failed to free npalf\n", __func__); 1492 } 1493 mutex_unlock(&mbox->lock); 1494 } 1495 1496 int otx2_open(struct net_device *netdev) 1497 { 1498 struct otx2_nic *pf = netdev_priv(netdev); 1499 struct otx2_cq_poll *cq_poll = NULL; 1500 struct otx2_qset *qset = &pf->qset; 1501 int err = 0, qidx, vec; 1502 char *irq_name; 1503 1504 netif_carrier_off(netdev); 1505 1506 pf->qset.cq_cnt = pf->hw.rx_queues + pf->hw.tx_queues; 1507 /* RQ and SQs are mapped to different CQs, 1508 * so find out max CQ IRQs (i.e CINTs) needed. 1509 */ 1510 pf->hw.cint_cnt = max(pf->hw.rx_queues, pf->hw.tx_queues); 1511 qset->napi = kcalloc(pf->hw.cint_cnt, sizeof(*cq_poll), GFP_KERNEL); 1512 if (!qset->napi) 1513 return -ENOMEM; 1514 1515 /* CQ size of RQ */ 1516 qset->rqe_cnt = qset->rqe_cnt ? qset->rqe_cnt : Q_COUNT(Q_SIZE_256); 1517 /* CQ size of SQ */ 1518 qset->sqe_cnt = qset->sqe_cnt ? qset->sqe_cnt : Q_COUNT(Q_SIZE_4K); 1519 1520 err = -ENOMEM; 1521 qset->cq = kcalloc(pf->qset.cq_cnt, 1522 sizeof(struct otx2_cq_queue), GFP_KERNEL); 1523 if (!qset->cq) 1524 goto err_free_mem; 1525 1526 qset->sq = kcalloc(pf->hw.tx_queues, 1527 sizeof(struct otx2_snd_queue), GFP_KERNEL); 1528 if (!qset->sq) 1529 goto err_free_mem; 1530 1531 qset->rq = kcalloc(pf->hw.rx_queues, 1532 sizeof(struct otx2_rcv_queue), GFP_KERNEL); 1533 if (!qset->rq) 1534 goto err_free_mem; 1535 1536 if (test_bit(CN10K_LMTST, &pf->hw.cap_flag)) { 1537 /* Reserve LMT lines for NPA AURA batch free */ 1538 pf->hw.npa_lmt_base = pf->hw.lmt_base; 1539 /* Reserve LMT lines for NIX TX */ 1540 pf->hw.nix_lmt_base = (u64 *)((u64)pf->hw.npa_lmt_base + 1541 (pf->npa_lmt_lines * LMT_LINE_SIZE)); 1542 } 1543 1544 err = otx2_init_hw_resources(pf); 1545 if (err) 1546 goto err_free_mem; 1547 1548 /* Register NAPI handler */ 1549 for (qidx = 0; qidx < pf->hw.cint_cnt; qidx++) { 1550 cq_poll = &qset->napi[qidx]; 1551 cq_poll->cint_idx = qidx; 1552 /* RQ0 & SQ0 are mapped to CINT0 and so on.. 1553 * 'cq_ids[0]' points to RQ's CQ and 1554 * 'cq_ids[1]' points to SQ's CQ and 1555 */ 1556 cq_poll->cq_ids[CQ_RX] = 1557 (qidx < pf->hw.rx_queues) ? qidx : CINT_INVALID_CQ; 1558 cq_poll->cq_ids[CQ_TX] = (qidx < pf->hw.tx_queues) ? 1559 qidx + pf->hw.rx_queues : CINT_INVALID_CQ; 1560 cq_poll->dev = (void *)pf; 1561 netif_napi_add(netdev, &cq_poll->napi, 1562 otx2_napi_handler, NAPI_POLL_WEIGHT); 1563 napi_enable(&cq_poll->napi); 1564 } 1565 1566 /* Set maximum frame size allowed in HW */ 1567 err = otx2_hw_set_mtu(pf, netdev->mtu); 1568 if (err) 1569 goto err_disable_napi; 1570 1571 /* Setup segmentation algorithms, if failed, clear offload capability */ 1572 otx2_setup_segmentation(pf); 1573 1574 /* Initialize RSS */ 1575 err = otx2_rss_init(pf); 1576 if (err) 1577 goto err_disable_napi; 1578 1579 /* Register Queue IRQ handlers */ 1580 vec = pf->hw.nix_msixoff + NIX_LF_QINT_VEC_START; 1581 irq_name = &pf->hw.irq_name[vec * NAME_SIZE]; 1582 1583 snprintf(irq_name, NAME_SIZE, "%s-qerr", pf->netdev->name); 1584 1585 err = request_irq(pci_irq_vector(pf->pdev, vec), 1586 otx2_q_intr_handler, 0, irq_name, pf); 1587 if (err) { 1588 dev_err(pf->dev, 1589 "RVUPF%d: IRQ registration failed for QERR\n", 1590 rvu_get_pf(pf->pcifunc)); 1591 goto err_disable_napi; 1592 } 1593 1594 /* Enable QINT IRQ */ 1595 otx2_write64(pf, NIX_LF_QINTX_ENA_W1S(0), BIT_ULL(0)); 1596 1597 /* Register CQ IRQ handlers */ 1598 vec = pf->hw.nix_msixoff + NIX_LF_CINT_VEC_START; 1599 for (qidx = 0; qidx < pf->hw.cint_cnt; qidx++) { 1600 irq_name = &pf->hw.irq_name[vec * NAME_SIZE]; 1601 1602 snprintf(irq_name, NAME_SIZE, "%s-rxtx-%d", pf->netdev->name, 1603 qidx); 1604 1605 err = request_irq(pci_irq_vector(pf->pdev, vec), 1606 otx2_cq_intr_handler, 0, irq_name, 1607 &qset->napi[qidx]); 1608 if (err) { 1609 dev_err(pf->dev, 1610 "RVUPF%d: IRQ registration failed for CQ%d\n", 1611 rvu_get_pf(pf->pcifunc), qidx); 1612 goto err_free_cints; 1613 } 1614 vec++; 1615 1616 otx2_config_irq_coalescing(pf, qidx); 1617 1618 /* Enable CQ IRQ */ 1619 otx2_write64(pf, NIX_LF_CINTX_INT(qidx), BIT_ULL(0)); 1620 otx2_write64(pf, NIX_LF_CINTX_ENA_W1S(qidx), BIT_ULL(0)); 1621 } 1622 1623 otx2_set_cints_affinity(pf); 1624 1625 if (pf->flags & OTX2_FLAG_RX_VLAN_SUPPORT) 1626 otx2_enable_rxvlan(pf, true); 1627 1628 /* When reinitializing enable time stamping if it is enabled before */ 1629 if (pf->flags & OTX2_FLAG_TX_TSTAMP_ENABLED) { 1630 pf->flags &= ~OTX2_FLAG_TX_TSTAMP_ENABLED; 1631 otx2_config_hw_tx_tstamp(pf, true); 1632 } 1633 if (pf->flags & OTX2_FLAG_RX_TSTAMP_ENABLED) { 1634 pf->flags &= ~OTX2_FLAG_RX_TSTAMP_ENABLED; 1635 otx2_config_hw_rx_tstamp(pf, true); 1636 } 1637 1638 pf->flags &= ~OTX2_FLAG_INTF_DOWN; 1639 /* 'intf_down' may be checked on any cpu */ 1640 smp_wmb(); 1641 1642 /* we have already received link status notification */ 1643 if (pf->linfo.link_up && !(pf->pcifunc & RVU_PFVF_FUNC_MASK)) 1644 otx2_handle_link_event(pf); 1645 1646 /* Restore pause frame settings */ 1647 otx2_config_pause_frm(pf); 1648 1649 /* Install DMAC Filters */ 1650 if (pf->flags & OTX2_FLAG_DMACFLTR_SUPPORT) 1651 otx2_dmacflt_reinstall_flows(pf); 1652 1653 err = otx2_rxtx_enable(pf, true); 1654 if (err) 1655 goto err_tx_stop_queues; 1656 1657 return 0; 1658 1659 err_tx_stop_queues: 1660 netif_tx_stop_all_queues(netdev); 1661 netif_carrier_off(netdev); 1662 pf->flags |= OTX2_FLAG_INTF_DOWN; 1663 err_free_cints: 1664 otx2_free_cints(pf, qidx); 1665 vec = pci_irq_vector(pf->pdev, 1666 pf->hw.nix_msixoff + NIX_LF_QINT_VEC_START); 1667 otx2_write64(pf, NIX_LF_QINTX_ENA_W1C(0), BIT_ULL(0)); 1668 synchronize_irq(vec); 1669 free_irq(vec, pf); 1670 err_disable_napi: 1671 otx2_disable_napi(pf); 1672 otx2_free_hw_resources(pf); 1673 err_free_mem: 1674 kfree(qset->sq); 1675 kfree(qset->cq); 1676 kfree(qset->rq); 1677 kfree(qset->napi); 1678 return err; 1679 } 1680 EXPORT_SYMBOL(otx2_open); 1681 1682 int otx2_stop(struct net_device *netdev) 1683 { 1684 struct otx2_nic *pf = netdev_priv(netdev); 1685 struct otx2_cq_poll *cq_poll = NULL; 1686 struct otx2_qset *qset = &pf->qset; 1687 struct otx2_rss_info *rss; 1688 int qidx, vec, wrk; 1689 1690 /* If the DOWN flag is set resources are already freed */ 1691 if (pf->flags & OTX2_FLAG_INTF_DOWN) 1692 return 0; 1693 1694 netif_carrier_off(netdev); 1695 netif_tx_stop_all_queues(netdev); 1696 1697 pf->flags |= OTX2_FLAG_INTF_DOWN; 1698 /* 'intf_down' may be checked on any cpu */ 1699 smp_wmb(); 1700 1701 /* First stop packet Rx/Tx */ 1702 otx2_rxtx_enable(pf, false); 1703 1704 /* Clear RSS enable flag */ 1705 rss = &pf->hw.rss_info; 1706 rss->enable = false; 1707 1708 /* Cleanup Queue IRQ */ 1709 vec = pci_irq_vector(pf->pdev, 1710 pf->hw.nix_msixoff + NIX_LF_QINT_VEC_START); 1711 otx2_write64(pf, NIX_LF_QINTX_ENA_W1C(0), BIT_ULL(0)); 1712 synchronize_irq(vec); 1713 free_irq(vec, pf); 1714 1715 /* Cleanup CQ NAPI and IRQ */ 1716 vec = pf->hw.nix_msixoff + NIX_LF_CINT_VEC_START; 1717 for (qidx = 0; qidx < pf->hw.cint_cnt; qidx++) { 1718 /* Disable interrupt */ 1719 otx2_write64(pf, NIX_LF_CINTX_ENA_W1C(qidx), BIT_ULL(0)); 1720 1721 synchronize_irq(pci_irq_vector(pf->pdev, vec)); 1722 1723 cq_poll = &qset->napi[qidx]; 1724 napi_synchronize(&cq_poll->napi); 1725 vec++; 1726 } 1727 1728 netif_tx_disable(netdev); 1729 1730 otx2_free_hw_resources(pf); 1731 otx2_free_cints(pf, pf->hw.cint_cnt); 1732 otx2_disable_napi(pf); 1733 1734 for (qidx = 0; qidx < netdev->num_tx_queues; qidx++) 1735 netdev_tx_reset_queue(netdev_get_tx_queue(netdev, qidx)); 1736 1737 for (wrk = 0; wrk < pf->qset.cq_cnt; wrk++) 1738 cancel_delayed_work_sync(&pf->refill_wrk[wrk].pool_refill_work); 1739 devm_kfree(pf->dev, pf->refill_wrk); 1740 1741 kfree(qset->sq); 1742 kfree(qset->cq); 1743 kfree(qset->rq); 1744 kfree(qset->napi); 1745 /* Do not clear RQ/SQ ringsize settings */ 1746 memset((void *)qset + offsetof(struct otx2_qset, sqe_cnt), 0, 1747 sizeof(*qset) - offsetof(struct otx2_qset, sqe_cnt)); 1748 return 0; 1749 } 1750 EXPORT_SYMBOL(otx2_stop); 1751 1752 static netdev_tx_t otx2_xmit(struct sk_buff *skb, struct net_device *netdev) 1753 { 1754 struct otx2_nic *pf = netdev_priv(netdev); 1755 int qidx = skb_get_queue_mapping(skb); 1756 struct otx2_snd_queue *sq; 1757 struct netdev_queue *txq; 1758 1759 /* Check for minimum and maximum packet length */ 1760 if (skb->len <= ETH_HLEN || 1761 (!skb_shinfo(skb)->gso_size && skb->len > pf->max_frs)) { 1762 dev_kfree_skb(skb); 1763 return NETDEV_TX_OK; 1764 } 1765 1766 sq = &pf->qset.sq[qidx]; 1767 txq = netdev_get_tx_queue(netdev, qidx); 1768 1769 if (!otx2_sq_append_skb(netdev, sq, skb, qidx)) { 1770 netif_tx_stop_queue(txq); 1771 1772 /* Check again, incase SQBs got freed up */ 1773 smp_mb(); 1774 if (((sq->num_sqbs - *sq->aura_fc_addr) * sq->sqe_per_sqb) 1775 > sq->sqe_thresh) 1776 netif_tx_wake_queue(txq); 1777 1778 return NETDEV_TX_BUSY; 1779 } 1780 1781 return NETDEV_TX_OK; 1782 } 1783 1784 static netdev_features_t otx2_fix_features(struct net_device *dev, 1785 netdev_features_t features) 1786 { 1787 if (features & NETIF_F_HW_VLAN_CTAG_RX) 1788 features |= NETIF_F_HW_VLAN_STAG_RX; 1789 else 1790 features &= ~NETIF_F_HW_VLAN_STAG_RX; 1791 1792 return features; 1793 } 1794 1795 static void otx2_set_rx_mode(struct net_device *netdev) 1796 { 1797 struct otx2_nic *pf = netdev_priv(netdev); 1798 1799 queue_work(pf->otx2_wq, &pf->rx_mode_work); 1800 } 1801 1802 static void otx2_do_set_rx_mode(struct work_struct *work) 1803 { 1804 struct otx2_nic *pf = container_of(work, struct otx2_nic, rx_mode_work); 1805 struct net_device *netdev = pf->netdev; 1806 struct nix_rx_mode *req; 1807 bool promisc = false; 1808 1809 if (!(netdev->flags & IFF_UP)) 1810 return; 1811 1812 if ((netdev->flags & IFF_PROMISC) || 1813 (netdev_uc_count(netdev) > OTX2_MAX_UNICAST_FLOWS)) { 1814 promisc = true; 1815 } 1816 1817 /* Write unicast address to mcam entries or del from mcam */ 1818 if (!promisc && netdev->priv_flags & IFF_UNICAST_FLT) 1819 __dev_uc_sync(netdev, otx2_add_macfilter, otx2_del_macfilter); 1820 1821 mutex_lock(&pf->mbox.lock); 1822 req = otx2_mbox_alloc_msg_nix_set_rx_mode(&pf->mbox); 1823 if (!req) { 1824 mutex_unlock(&pf->mbox.lock); 1825 return; 1826 } 1827 1828 req->mode = NIX_RX_MODE_UCAST; 1829 1830 if (promisc) 1831 req->mode |= NIX_RX_MODE_PROMISC; 1832 if (netdev->flags & (IFF_ALLMULTI | IFF_MULTICAST)) 1833 req->mode |= NIX_RX_MODE_ALLMULTI; 1834 1835 req->mode |= NIX_RX_MODE_USE_MCE; 1836 1837 otx2_sync_mbox_msg(&pf->mbox); 1838 mutex_unlock(&pf->mbox.lock); 1839 } 1840 1841 static int otx2_set_features(struct net_device *netdev, 1842 netdev_features_t features) 1843 { 1844 netdev_features_t changed = features ^ netdev->features; 1845 bool ntuple = !!(features & NETIF_F_NTUPLE); 1846 struct otx2_nic *pf = netdev_priv(netdev); 1847 bool tc = !!(features & NETIF_F_HW_TC); 1848 1849 if ((changed & NETIF_F_LOOPBACK) && netif_running(netdev)) 1850 return otx2_cgx_config_loopback(pf, 1851 features & NETIF_F_LOOPBACK); 1852 1853 if ((changed & NETIF_F_HW_VLAN_CTAG_RX) && netif_running(netdev)) 1854 return otx2_enable_rxvlan(pf, 1855 features & NETIF_F_HW_VLAN_CTAG_RX); 1856 1857 if ((changed & NETIF_F_NTUPLE) && !ntuple) 1858 otx2_destroy_ntuple_flows(pf); 1859 1860 if ((changed & NETIF_F_NTUPLE) && ntuple) { 1861 if (!pf->flow_cfg->max_flows) { 1862 netdev_err(netdev, 1863 "Can't enable NTUPLE, MCAM entries not allocated\n"); 1864 return -EINVAL; 1865 } 1866 } 1867 1868 if ((changed & NETIF_F_HW_TC) && tc) { 1869 if (!pf->flow_cfg->max_flows) { 1870 netdev_err(netdev, 1871 "Can't enable TC, MCAM entries not allocated\n"); 1872 return -EINVAL; 1873 } 1874 } 1875 1876 if ((changed & NETIF_F_HW_TC) && !tc && 1877 pf->flow_cfg && pf->flow_cfg->nr_flows) { 1878 netdev_err(netdev, "Can't disable TC hardware offload while flows are active\n"); 1879 return -EBUSY; 1880 } 1881 1882 if ((changed & NETIF_F_NTUPLE) && ntuple && 1883 (netdev->features & NETIF_F_HW_TC) && !(changed & NETIF_F_HW_TC)) { 1884 netdev_err(netdev, 1885 "Can't enable NTUPLE when TC is active, disable TC and retry\n"); 1886 return -EINVAL; 1887 } 1888 1889 if ((changed & NETIF_F_HW_TC) && tc && 1890 (netdev->features & NETIF_F_NTUPLE) && !(changed & NETIF_F_NTUPLE)) { 1891 netdev_err(netdev, 1892 "Can't enable TC when NTUPLE is active, disable NTUPLE and retry\n"); 1893 return -EINVAL; 1894 } 1895 1896 return 0; 1897 } 1898 1899 static void otx2_reset_task(struct work_struct *work) 1900 { 1901 struct otx2_nic *pf = container_of(work, struct otx2_nic, reset_task); 1902 1903 if (!netif_running(pf->netdev)) 1904 return; 1905 1906 rtnl_lock(); 1907 otx2_stop(pf->netdev); 1908 pf->reset_count++; 1909 otx2_open(pf->netdev); 1910 netif_trans_update(pf->netdev); 1911 rtnl_unlock(); 1912 } 1913 1914 static int otx2_config_hw_rx_tstamp(struct otx2_nic *pfvf, bool enable) 1915 { 1916 struct msg_req *req; 1917 int err; 1918 1919 if (pfvf->flags & OTX2_FLAG_RX_TSTAMP_ENABLED && enable) 1920 return 0; 1921 1922 mutex_lock(&pfvf->mbox.lock); 1923 if (enable) 1924 req = otx2_mbox_alloc_msg_cgx_ptp_rx_enable(&pfvf->mbox); 1925 else 1926 req = otx2_mbox_alloc_msg_cgx_ptp_rx_disable(&pfvf->mbox); 1927 if (!req) { 1928 mutex_unlock(&pfvf->mbox.lock); 1929 return -ENOMEM; 1930 } 1931 1932 err = otx2_sync_mbox_msg(&pfvf->mbox); 1933 if (err) { 1934 mutex_unlock(&pfvf->mbox.lock); 1935 return err; 1936 } 1937 1938 mutex_unlock(&pfvf->mbox.lock); 1939 if (enable) 1940 pfvf->flags |= OTX2_FLAG_RX_TSTAMP_ENABLED; 1941 else 1942 pfvf->flags &= ~OTX2_FLAG_RX_TSTAMP_ENABLED; 1943 return 0; 1944 } 1945 1946 static int otx2_config_hw_tx_tstamp(struct otx2_nic *pfvf, bool enable) 1947 { 1948 struct msg_req *req; 1949 int err; 1950 1951 if (pfvf->flags & OTX2_FLAG_TX_TSTAMP_ENABLED && enable) 1952 return 0; 1953 1954 mutex_lock(&pfvf->mbox.lock); 1955 if (enable) 1956 req = otx2_mbox_alloc_msg_nix_lf_ptp_tx_enable(&pfvf->mbox); 1957 else 1958 req = otx2_mbox_alloc_msg_nix_lf_ptp_tx_disable(&pfvf->mbox); 1959 if (!req) { 1960 mutex_unlock(&pfvf->mbox.lock); 1961 return -ENOMEM; 1962 } 1963 1964 err = otx2_sync_mbox_msg(&pfvf->mbox); 1965 if (err) { 1966 mutex_unlock(&pfvf->mbox.lock); 1967 return err; 1968 } 1969 1970 mutex_unlock(&pfvf->mbox.lock); 1971 if (enable) 1972 pfvf->flags |= OTX2_FLAG_TX_TSTAMP_ENABLED; 1973 else 1974 pfvf->flags &= ~OTX2_FLAG_TX_TSTAMP_ENABLED; 1975 return 0; 1976 } 1977 1978 static int otx2_config_hwtstamp(struct net_device *netdev, struct ifreq *ifr) 1979 { 1980 struct otx2_nic *pfvf = netdev_priv(netdev); 1981 struct hwtstamp_config config; 1982 1983 if (!pfvf->ptp) 1984 return -ENODEV; 1985 1986 if (copy_from_user(&config, ifr->ifr_data, sizeof(config))) 1987 return -EFAULT; 1988 1989 /* reserved for future extensions */ 1990 if (config.flags) 1991 return -EINVAL; 1992 1993 switch (config.tx_type) { 1994 case HWTSTAMP_TX_OFF: 1995 otx2_config_hw_tx_tstamp(pfvf, false); 1996 break; 1997 case HWTSTAMP_TX_ON: 1998 otx2_config_hw_tx_tstamp(pfvf, true); 1999 break; 2000 default: 2001 return -ERANGE; 2002 } 2003 2004 switch (config.rx_filter) { 2005 case HWTSTAMP_FILTER_NONE: 2006 otx2_config_hw_rx_tstamp(pfvf, false); 2007 break; 2008 case HWTSTAMP_FILTER_ALL: 2009 case HWTSTAMP_FILTER_SOME: 2010 case HWTSTAMP_FILTER_PTP_V1_L4_EVENT: 2011 case HWTSTAMP_FILTER_PTP_V1_L4_SYNC: 2012 case HWTSTAMP_FILTER_PTP_V1_L4_DELAY_REQ: 2013 case HWTSTAMP_FILTER_PTP_V2_L4_EVENT: 2014 case HWTSTAMP_FILTER_PTP_V2_L4_SYNC: 2015 case HWTSTAMP_FILTER_PTP_V2_L4_DELAY_REQ: 2016 case HWTSTAMP_FILTER_PTP_V2_L2_EVENT: 2017 case HWTSTAMP_FILTER_PTP_V2_L2_SYNC: 2018 case HWTSTAMP_FILTER_PTP_V2_L2_DELAY_REQ: 2019 case HWTSTAMP_FILTER_PTP_V2_EVENT: 2020 case HWTSTAMP_FILTER_PTP_V2_SYNC: 2021 case HWTSTAMP_FILTER_PTP_V2_DELAY_REQ: 2022 otx2_config_hw_rx_tstamp(pfvf, true); 2023 config.rx_filter = HWTSTAMP_FILTER_ALL; 2024 break; 2025 default: 2026 return -ERANGE; 2027 } 2028 2029 memcpy(&pfvf->tstamp, &config, sizeof(config)); 2030 2031 return copy_to_user(ifr->ifr_data, &config, 2032 sizeof(config)) ? -EFAULT : 0; 2033 } 2034 2035 static int otx2_ioctl(struct net_device *netdev, struct ifreq *req, int cmd) 2036 { 2037 struct otx2_nic *pfvf = netdev_priv(netdev); 2038 struct hwtstamp_config *cfg = &pfvf->tstamp; 2039 2040 switch (cmd) { 2041 case SIOCSHWTSTAMP: 2042 return otx2_config_hwtstamp(netdev, req); 2043 case SIOCGHWTSTAMP: 2044 return copy_to_user(req->ifr_data, cfg, 2045 sizeof(*cfg)) ? -EFAULT : 0; 2046 default: 2047 return -EOPNOTSUPP; 2048 } 2049 } 2050 2051 static int otx2_do_set_vf_mac(struct otx2_nic *pf, int vf, const u8 *mac) 2052 { 2053 struct npc_install_flow_req *req; 2054 int err; 2055 2056 mutex_lock(&pf->mbox.lock); 2057 req = otx2_mbox_alloc_msg_npc_install_flow(&pf->mbox); 2058 if (!req) { 2059 err = -ENOMEM; 2060 goto out; 2061 } 2062 2063 ether_addr_copy(req->packet.dmac, mac); 2064 eth_broadcast_addr((u8 *)&req->mask.dmac); 2065 req->features = BIT_ULL(NPC_DMAC); 2066 req->channel = pf->hw.rx_chan_base; 2067 req->intf = NIX_INTF_RX; 2068 req->default_rule = 1; 2069 req->append = 1; 2070 req->vf = vf + 1; 2071 req->op = NIX_RX_ACTION_DEFAULT; 2072 2073 err = otx2_sync_mbox_msg(&pf->mbox); 2074 out: 2075 mutex_unlock(&pf->mbox.lock); 2076 return err; 2077 } 2078 2079 static int otx2_set_vf_mac(struct net_device *netdev, int vf, u8 *mac) 2080 { 2081 struct otx2_nic *pf = netdev_priv(netdev); 2082 struct pci_dev *pdev = pf->pdev; 2083 struct otx2_vf_config *config; 2084 int ret; 2085 2086 if (!netif_running(netdev)) 2087 return -EAGAIN; 2088 2089 if (vf >= pf->total_vfs) 2090 return -EINVAL; 2091 2092 if (!is_valid_ether_addr(mac)) 2093 return -EINVAL; 2094 2095 config = &pf->vf_configs[vf]; 2096 ether_addr_copy(config->mac, mac); 2097 2098 ret = otx2_do_set_vf_mac(pf, vf, mac); 2099 if (ret == 0) 2100 dev_info(&pdev->dev, 2101 "Load/Reload VF driver\n"); 2102 2103 return ret; 2104 } 2105 2106 static int otx2_do_set_vf_vlan(struct otx2_nic *pf, int vf, u16 vlan, u8 qos, 2107 __be16 proto) 2108 { 2109 struct otx2_flow_config *flow_cfg = pf->flow_cfg; 2110 struct nix_vtag_config_rsp *vtag_rsp; 2111 struct npc_delete_flow_req *del_req; 2112 struct nix_vtag_config *vtag_req; 2113 struct npc_install_flow_req *req; 2114 struct otx2_vf_config *config; 2115 int err = 0; 2116 u32 idx; 2117 2118 config = &pf->vf_configs[vf]; 2119 2120 if (!vlan && !config->vlan) 2121 goto out; 2122 2123 mutex_lock(&pf->mbox.lock); 2124 2125 /* free old tx vtag entry */ 2126 if (config->vlan) { 2127 vtag_req = otx2_mbox_alloc_msg_nix_vtag_cfg(&pf->mbox); 2128 if (!vtag_req) { 2129 err = -ENOMEM; 2130 goto out; 2131 } 2132 vtag_req->cfg_type = 0; 2133 vtag_req->tx.free_vtag0 = 1; 2134 vtag_req->tx.vtag0_idx = config->tx_vtag_idx; 2135 2136 err = otx2_sync_mbox_msg(&pf->mbox); 2137 if (err) 2138 goto out; 2139 } 2140 2141 if (!vlan && config->vlan) { 2142 /* rx */ 2143 del_req = otx2_mbox_alloc_msg_npc_delete_flow(&pf->mbox); 2144 if (!del_req) { 2145 err = -ENOMEM; 2146 goto out; 2147 } 2148 idx = ((vf * OTX2_PER_VF_VLAN_FLOWS) + OTX2_VF_VLAN_RX_INDEX); 2149 del_req->entry = 2150 flow_cfg->def_ent[flow_cfg->vf_vlan_offset + idx]; 2151 err = otx2_sync_mbox_msg(&pf->mbox); 2152 if (err) 2153 goto out; 2154 2155 /* tx */ 2156 del_req = otx2_mbox_alloc_msg_npc_delete_flow(&pf->mbox); 2157 if (!del_req) { 2158 err = -ENOMEM; 2159 goto out; 2160 } 2161 idx = ((vf * OTX2_PER_VF_VLAN_FLOWS) + OTX2_VF_VLAN_TX_INDEX); 2162 del_req->entry = 2163 flow_cfg->def_ent[flow_cfg->vf_vlan_offset + idx]; 2164 err = otx2_sync_mbox_msg(&pf->mbox); 2165 2166 goto out; 2167 } 2168 2169 /* rx */ 2170 req = otx2_mbox_alloc_msg_npc_install_flow(&pf->mbox); 2171 if (!req) { 2172 err = -ENOMEM; 2173 goto out; 2174 } 2175 2176 idx = ((vf * OTX2_PER_VF_VLAN_FLOWS) + OTX2_VF_VLAN_RX_INDEX); 2177 req->entry = flow_cfg->def_ent[flow_cfg->vf_vlan_offset + idx]; 2178 req->packet.vlan_tci = htons(vlan); 2179 req->mask.vlan_tci = htons(VLAN_VID_MASK); 2180 /* af fills the destination mac addr */ 2181 eth_broadcast_addr((u8 *)&req->mask.dmac); 2182 req->features = BIT_ULL(NPC_OUTER_VID) | BIT_ULL(NPC_DMAC); 2183 req->channel = pf->hw.rx_chan_base; 2184 req->intf = NIX_INTF_RX; 2185 req->vf = vf + 1; 2186 req->op = NIX_RX_ACTION_DEFAULT; 2187 req->vtag0_valid = true; 2188 req->vtag0_type = NIX_AF_LFX_RX_VTAG_TYPE7; 2189 req->set_cntr = 1; 2190 2191 err = otx2_sync_mbox_msg(&pf->mbox); 2192 if (err) 2193 goto out; 2194 2195 /* tx */ 2196 vtag_req = otx2_mbox_alloc_msg_nix_vtag_cfg(&pf->mbox); 2197 if (!vtag_req) { 2198 err = -ENOMEM; 2199 goto out; 2200 } 2201 2202 /* configure tx vtag params */ 2203 vtag_req->vtag_size = VTAGSIZE_T4; 2204 vtag_req->cfg_type = 0; /* tx vlan cfg */ 2205 vtag_req->tx.cfg_vtag0 = 1; 2206 vtag_req->tx.vtag0 = ((u64)ntohs(proto) << 16) | vlan; 2207 2208 err = otx2_sync_mbox_msg(&pf->mbox); 2209 if (err) 2210 goto out; 2211 2212 vtag_rsp = (struct nix_vtag_config_rsp *)otx2_mbox_get_rsp 2213 (&pf->mbox.mbox, 0, &vtag_req->hdr); 2214 if (IS_ERR(vtag_rsp)) { 2215 err = PTR_ERR(vtag_rsp); 2216 goto out; 2217 } 2218 config->tx_vtag_idx = vtag_rsp->vtag0_idx; 2219 2220 req = otx2_mbox_alloc_msg_npc_install_flow(&pf->mbox); 2221 if (!req) { 2222 err = -ENOMEM; 2223 goto out; 2224 } 2225 2226 eth_zero_addr((u8 *)&req->mask.dmac); 2227 idx = ((vf * OTX2_PER_VF_VLAN_FLOWS) + OTX2_VF_VLAN_TX_INDEX); 2228 req->entry = flow_cfg->def_ent[flow_cfg->vf_vlan_offset + idx]; 2229 req->features = BIT_ULL(NPC_DMAC); 2230 req->channel = pf->hw.tx_chan_base; 2231 req->intf = NIX_INTF_TX; 2232 req->vf = vf + 1; 2233 req->op = NIX_TX_ACTIONOP_UCAST_DEFAULT; 2234 req->vtag0_def = vtag_rsp->vtag0_idx; 2235 req->vtag0_op = VTAG_INSERT; 2236 req->set_cntr = 1; 2237 2238 err = otx2_sync_mbox_msg(&pf->mbox); 2239 out: 2240 config->vlan = vlan; 2241 mutex_unlock(&pf->mbox.lock); 2242 return err; 2243 } 2244 2245 static int otx2_set_vf_vlan(struct net_device *netdev, int vf, u16 vlan, u8 qos, 2246 __be16 proto) 2247 { 2248 struct otx2_nic *pf = netdev_priv(netdev); 2249 struct pci_dev *pdev = pf->pdev; 2250 2251 if (!netif_running(netdev)) 2252 return -EAGAIN; 2253 2254 if (vf >= pci_num_vf(pdev)) 2255 return -EINVAL; 2256 2257 /* qos is currently unsupported */ 2258 if (vlan >= VLAN_N_VID || qos) 2259 return -EINVAL; 2260 2261 if (proto != htons(ETH_P_8021Q)) 2262 return -EPROTONOSUPPORT; 2263 2264 if (!(pf->flags & OTX2_FLAG_VF_VLAN_SUPPORT)) 2265 return -EOPNOTSUPP; 2266 2267 return otx2_do_set_vf_vlan(pf, vf, vlan, qos, proto); 2268 } 2269 2270 static int otx2_get_vf_config(struct net_device *netdev, int vf, 2271 struct ifla_vf_info *ivi) 2272 { 2273 struct otx2_nic *pf = netdev_priv(netdev); 2274 struct pci_dev *pdev = pf->pdev; 2275 struct otx2_vf_config *config; 2276 2277 if (!netif_running(netdev)) 2278 return -EAGAIN; 2279 2280 if (vf >= pci_num_vf(pdev)) 2281 return -EINVAL; 2282 2283 config = &pf->vf_configs[vf]; 2284 ivi->vf = vf; 2285 ether_addr_copy(ivi->mac, config->mac); 2286 ivi->vlan = config->vlan; 2287 ivi->trusted = config->trusted; 2288 2289 return 0; 2290 } 2291 2292 static int otx2_set_vf_permissions(struct otx2_nic *pf, int vf, 2293 int req_perm) 2294 { 2295 struct set_vf_perm *req; 2296 int rc; 2297 2298 mutex_lock(&pf->mbox.lock); 2299 req = otx2_mbox_alloc_msg_set_vf_perm(&pf->mbox); 2300 if (!req) { 2301 rc = -ENOMEM; 2302 goto out; 2303 } 2304 2305 /* Let AF reset VF permissions as sriov is disabled */ 2306 if (req_perm == OTX2_RESET_VF_PERM) { 2307 req->flags |= RESET_VF_PERM; 2308 } else if (req_perm == OTX2_TRUSTED_VF) { 2309 if (pf->vf_configs[vf].trusted) 2310 req->flags |= VF_TRUSTED; 2311 } 2312 2313 req->vf = vf; 2314 rc = otx2_sync_mbox_msg(&pf->mbox); 2315 out: 2316 mutex_unlock(&pf->mbox.lock); 2317 return rc; 2318 } 2319 2320 static int otx2_ndo_set_vf_trust(struct net_device *netdev, int vf, 2321 bool enable) 2322 { 2323 struct otx2_nic *pf = netdev_priv(netdev); 2324 struct pci_dev *pdev = pf->pdev; 2325 int rc; 2326 2327 if (vf >= pci_num_vf(pdev)) 2328 return -EINVAL; 2329 2330 if (pf->vf_configs[vf].trusted == enable) 2331 return 0; 2332 2333 pf->vf_configs[vf].trusted = enable; 2334 rc = otx2_set_vf_permissions(pf, vf, OTX2_TRUSTED_VF); 2335 2336 if (rc) 2337 pf->vf_configs[vf].trusted = !enable; 2338 else 2339 netdev_info(pf->netdev, "VF %d is %strusted\n", 2340 vf, enable ? "" : "not "); 2341 return rc; 2342 } 2343 2344 static const struct net_device_ops otx2_netdev_ops = { 2345 .ndo_open = otx2_open, 2346 .ndo_stop = otx2_stop, 2347 .ndo_start_xmit = otx2_xmit, 2348 .ndo_fix_features = otx2_fix_features, 2349 .ndo_set_mac_address = otx2_set_mac_address, 2350 .ndo_change_mtu = otx2_change_mtu, 2351 .ndo_set_rx_mode = otx2_set_rx_mode, 2352 .ndo_set_features = otx2_set_features, 2353 .ndo_tx_timeout = otx2_tx_timeout, 2354 .ndo_get_stats64 = otx2_get_stats64, 2355 .ndo_eth_ioctl = otx2_ioctl, 2356 .ndo_set_vf_mac = otx2_set_vf_mac, 2357 .ndo_set_vf_vlan = otx2_set_vf_vlan, 2358 .ndo_get_vf_config = otx2_get_vf_config, 2359 .ndo_setup_tc = otx2_setup_tc, 2360 .ndo_set_vf_trust = otx2_ndo_set_vf_trust, 2361 }; 2362 2363 static int otx2_wq_init(struct otx2_nic *pf) 2364 { 2365 pf->otx2_wq = create_singlethread_workqueue("otx2_wq"); 2366 if (!pf->otx2_wq) 2367 return -ENOMEM; 2368 2369 INIT_WORK(&pf->rx_mode_work, otx2_do_set_rx_mode); 2370 INIT_WORK(&pf->reset_task, otx2_reset_task); 2371 return 0; 2372 } 2373 2374 static int otx2_check_pf_usable(struct otx2_nic *nic) 2375 { 2376 u64 rev; 2377 2378 rev = otx2_read64(nic, RVU_PF_BLOCK_ADDRX_DISC(BLKADDR_RVUM)); 2379 rev = (rev >> 12) & 0xFF; 2380 /* Check if AF has setup revision for RVUM block, 2381 * otherwise this driver probe should be deferred 2382 * until AF driver comes up. 2383 */ 2384 if (!rev) { 2385 dev_warn(nic->dev, 2386 "AF is not initialized, deferring probe\n"); 2387 return -EPROBE_DEFER; 2388 } 2389 return 0; 2390 } 2391 2392 static int otx2_realloc_msix_vectors(struct otx2_nic *pf) 2393 { 2394 struct otx2_hw *hw = &pf->hw; 2395 int num_vec, err; 2396 2397 /* NPA interrupts are inot registered, so alloc only 2398 * upto NIX vector offset. 2399 */ 2400 num_vec = hw->nix_msixoff; 2401 num_vec += NIX_LF_CINT_VEC_START + hw->max_queues; 2402 2403 otx2_disable_mbox_intr(pf); 2404 pci_free_irq_vectors(hw->pdev); 2405 err = pci_alloc_irq_vectors(hw->pdev, num_vec, num_vec, PCI_IRQ_MSIX); 2406 if (err < 0) { 2407 dev_err(pf->dev, "%s: Failed to realloc %d IRQ vectors\n", 2408 __func__, num_vec); 2409 return err; 2410 } 2411 2412 return otx2_register_mbox_intr(pf, false); 2413 } 2414 2415 static int otx2_sriov_vfcfg_init(struct otx2_nic *pf) 2416 { 2417 int i; 2418 2419 pf->vf_configs = devm_kcalloc(pf->dev, pf->total_vfs, 2420 sizeof(struct otx2_vf_config), 2421 GFP_KERNEL); 2422 if (!pf->vf_configs) 2423 return -ENOMEM; 2424 2425 for (i = 0; i < pf->total_vfs; i++) { 2426 pf->vf_configs[i].pf = pf; 2427 pf->vf_configs[i].intf_down = true; 2428 pf->vf_configs[i].trusted = false; 2429 INIT_DELAYED_WORK(&pf->vf_configs[i].link_event_work, 2430 otx2_vf_link_event_task); 2431 } 2432 2433 return 0; 2434 } 2435 2436 static void otx2_sriov_vfcfg_cleanup(struct otx2_nic *pf) 2437 { 2438 int i; 2439 2440 if (!pf->vf_configs) 2441 return; 2442 2443 for (i = 0; i < pf->total_vfs; i++) { 2444 cancel_delayed_work_sync(&pf->vf_configs[i].link_event_work); 2445 otx2_set_vf_permissions(pf, i, OTX2_RESET_VF_PERM); 2446 } 2447 } 2448 2449 static int otx2_probe(struct pci_dev *pdev, const struct pci_device_id *id) 2450 { 2451 struct device *dev = &pdev->dev; 2452 struct net_device *netdev; 2453 struct otx2_nic *pf; 2454 struct otx2_hw *hw; 2455 int err, qcount; 2456 int num_vec; 2457 2458 err = pcim_enable_device(pdev); 2459 if (err) { 2460 dev_err(dev, "Failed to enable PCI device\n"); 2461 return err; 2462 } 2463 2464 err = pci_request_regions(pdev, DRV_NAME); 2465 if (err) { 2466 dev_err(dev, "PCI request regions failed 0x%x\n", err); 2467 return err; 2468 } 2469 2470 err = dma_set_mask_and_coherent(dev, DMA_BIT_MASK(48)); 2471 if (err) { 2472 dev_err(dev, "DMA mask config failed, abort\n"); 2473 goto err_release_regions; 2474 } 2475 2476 pci_set_master(pdev); 2477 2478 /* Set number of queues */ 2479 qcount = min_t(int, num_online_cpus(), OTX2_MAX_CQ_CNT); 2480 2481 netdev = alloc_etherdev_mqs(sizeof(*pf), qcount, qcount); 2482 if (!netdev) { 2483 err = -ENOMEM; 2484 goto err_release_regions; 2485 } 2486 2487 pci_set_drvdata(pdev, netdev); 2488 SET_NETDEV_DEV(netdev, &pdev->dev); 2489 pf = netdev_priv(netdev); 2490 pf->netdev = netdev; 2491 pf->pdev = pdev; 2492 pf->dev = dev; 2493 pf->total_vfs = pci_sriov_get_totalvfs(pdev); 2494 pf->flags |= OTX2_FLAG_INTF_DOWN; 2495 2496 hw = &pf->hw; 2497 hw->pdev = pdev; 2498 hw->rx_queues = qcount; 2499 hw->tx_queues = qcount; 2500 hw->max_queues = qcount; 2501 2502 num_vec = pci_msix_vec_count(pdev); 2503 hw->irq_name = devm_kmalloc_array(&hw->pdev->dev, num_vec, NAME_SIZE, 2504 GFP_KERNEL); 2505 if (!hw->irq_name) { 2506 err = -ENOMEM; 2507 goto err_free_netdev; 2508 } 2509 2510 hw->affinity_mask = devm_kcalloc(&hw->pdev->dev, num_vec, 2511 sizeof(cpumask_var_t), GFP_KERNEL); 2512 if (!hw->affinity_mask) { 2513 err = -ENOMEM; 2514 goto err_free_netdev; 2515 } 2516 2517 /* Map CSRs */ 2518 pf->reg_base = pcim_iomap(pdev, PCI_CFG_REG_BAR_NUM, 0); 2519 if (!pf->reg_base) { 2520 dev_err(dev, "Unable to map physical function CSRs, aborting\n"); 2521 err = -ENOMEM; 2522 goto err_free_netdev; 2523 } 2524 2525 err = otx2_check_pf_usable(pf); 2526 if (err) 2527 goto err_free_netdev; 2528 2529 err = pci_alloc_irq_vectors(hw->pdev, RVU_PF_INT_VEC_CNT, 2530 RVU_PF_INT_VEC_CNT, PCI_IRQ_MSIX); 2531 if (err < 0) { 2532 dev_err(dev, "%s: Failed to alloc %d IRQ vectors\n", 2533 __func__, num_vec); 2534 goto err_free_netdev; 2535 } 2536 2537 otx2_setup_dev_hw_settings(pf); 2538 2539 /* Init PF <=> AF mailbox stuff */ 2540 err = otx2_pfaf_mbox_init(pf); 2541 if (err) 2542 goto err_free_irq_vectors; 2543 2544 /* Register mailbox interrupt */ 2545 err = otx2_register_mbox_intr(pf, true); 2546 if (err) 2547 goto err_mbox_destroy; 2548 2549 /* Request AF to attach NPA and NIX LFs to this PF. 2550 * NIX and NPA LFs are needed for this PF to function as a NIC. 2551 */ 2552 err = otx2_attach_npa_nix(pf); 2553 if (err) 2554 goto err_disable_mbox_intr; 2555 2556 err = otx2_realloc_msix_vectors(pf); 2557 if (err) 2558 goto err_detach_rsrc; 2559 2560 err = otx2_set_real_num_queues(netdev, hw->tx_queues, hw->rx_queues); 2561 if (err) 2562 goto err_detach_rsrc; 2563 2564 err = cn10k_lmtst_init(pf); 2565 if (err) 2566 goto err_detach_rsrc; 2567 2568 /* Assign default mac address */ 2569 otx2_get_mac_from_af(netdev); 2570 2571 /* Don't check for error. Proceed without ptp */ 2572 otx2_ptp_init(pf); 2573 2574 /* NPA's pool is a stack to which SW frees buffer pointers via Aura. 2575 * HW allocates buffer pointer from stack and uses it for DMA'ing 2576 * ingress packet. In some scenarios HW can free back allocated buffer 2577 * pointers to pool. This makes it impossible for SW to maintain a 2578 * parallel list where physical addresses of buffer pointers (IOVAs) 2579 * given to HW can be saved for later reference. 2580 * 2581 * So the only way to convert Rx packet's buffer address is to use 2582 * IOMMU's iova_to_phys() handler which translates the address by 2583 * walking through the translation tables. 2584 */ 2585 pf->iommu_domain = iommu_get_domain_for_dev(dev); 2586 2587 netdev->hw_features = (NETIF_F_RXCSUM | NETIF_F_IP_CSUM | 2588 NETIF_F_IPV6_CSUM | NETIF_F_RXHASH | 2589 NETIF_F_SG | NETIF_F_TSO | NETIF_F_TSO6 | 2590 NETIF_F_GSO_UDP_L4); 2591 netdev->features |= netdev->hw_features; 2592 2593 err = otx2_mcam_flow_init(pf); 2594 if (err) 2595 goto err_ptp_destroy; 2596 2597 if (pf->flags & OTX2_FLAG_NTUPLE_SUPPORT) 2598 netdev->hw_features |= NETIF_F_NTUPLE; 2599 2600 if (pf->flags & OTX2_FLAG_UCAST_FLTR_SUPPORT) 2601 netdev->priv_flags |= IFF_UNICAST_FLT; 2602 2603 /* Support TSO on tag interface */ 2604 netdev->vlan_features |= netdev->features; 2605 netdev->hw_features |= NETIF_F_HW_VLAN_CTAG_TX | 2606 NETIF_F_HW_VLAN_STAG_TX; 2607 if (pf->flags & OTX2_FLAG_RX_VLAN_SUPPORT) 2608 netdev->hw_features |= NETIF_F_HW_VLAN_CTAG_RX | 2609 NETIF_F_HW_VLAN_STAG_RX; 2610 netdev->features |= netdev->hw_features; 2611 2612 /* HW supports tc offload but mutually exclusive with n-tuple filters */ 2613 if (pf->flags & OTX2_FLAG_TC_FLOWER_SUPPORT) 2614 netdev->hw_features |= NETIF_F_HW_TC; 2615 2616 netdev->hw_features |= NETIF_F_LOOPBACK | NETIF_F_RXALL; 2617 2618 netdev->gso_max_segs = OTX2_MAX_GSO_SEGS; 2619 netdev->watchdog_timeo = OTX2_TX_TIMEOUT; 2620 2621 netdev->netdev_ops = &otx2_netdev_ops; 2622 2623 netdev->min_mtu = OTX2_MIN_MTU; 2624 netdev->max_mtu = otx2_get_max_mtu(pf); 2625 2626 err = register_netdev(netdev); 2627 if (err) { 2628 dev_err(dev, "Failed to register netdevice\n"); 2629 goto err_del_mcam_entries; 2630 } 2631 2632 err = otx2_wq_init(pf); 2633 if (err) 2634 goto err_unreg_netdev; 2635 2636 otx2_set_ethtool_ops(netdev); 2637 2638 err = otx2_init_tc(pf); 2639 if (err) 2640 goto err_mcam_flow_del; 2641 2642 err = otx2_register_dl(pf); 2643 if (err) 2644 goto err_mcam_flow_del; 2645 2646 /* Initialize SR-IOV resources */ 2647 err = otx2_sriov_vfcfg_init(pf); 2648 if (err) 2649 goto err_pf_sriov_init; 2650 2651 /* Enable link notifications */ 2652 otx2_cgx_config_linkevents(pf, true); 2653 2654 /* Enable pause frames by default */ 2655 pf->flags |= OTX2_FLAG_RX_PAUSE_ENABLED; 2656 pf->flags |= OTX2_FLAG_TX_PAUSE_ENABLED; 2657 2658 return 0; 2659 2660 err_pf_sriov_init: 2661 otx2_shutdown_tc(pf); 2662 err_mcam_flow_del: 2663 otx2_mcam_flow_del(pf); 2664 err_unreg_netdev: 2665 unregister_netdev(netdev); 2666 err_del_mcam_entries: 2667 otx2_mcam_flow_del(pf); 2668 err_ptp_destroy: 2669 otx2_ptp_destroy(pf); 2670 err_detach_rsrc: 2671 if (test_bit(CN10K_LMTST, &pf->hw.cap_flag)) 2672 qmem_free(pf->dev, pf->dync_lmt); 2673 otx2_detach_resources(&pf->mbox); 2674 err_disable_mbox_intr: 2675 otx2_disable_mbox_intr(pf); 2676 err_mbox_destroy: 2677 otx2_pfaf_mbox_destroy(pf); 2678 err_free_irq_vectors: 2679 pci_free_irq_vectors(hw->pdev); 2680 err_free_netdev: 2681 pci_set_drvdata(pdev, NULL); 2682 free_netdev(netdev); 2683 err_release_regions: 2684 pci_release_regions(pdev); 2685 return err; 2686 } 2687 2688 static void otx2_vf_link_event_task(struct work_struct *work) 2689 { 2690 struct otx2_vf_config *config; 2691 struct cgx_link_info_msg *req; 2692 struct mbox_msghdr *msghdr; 2693 struct otx2_nic *pf; 2694 int vf_idx; 2695 2696 config = container_of(work, struct otx2_vf_config, 2697 link_event_work.work); 2698 vf_idx = config - config->pf->vf_configs; 2699 pf = config->pf; 2700 2701 msghdr = otx2_mbox_alloc_msg_rsp(&pf->mbox_pfvf[0].mbox_up, vf_idx, 2702 sizeof(*req), sizeof(struct msg_rsp)); 2703 if (!msghdr) { 2704 dev_err(pf->dev, "Failed to create VF%d link event\n", vf_idx); 2705 return; 2706 } 2707 2708 req = (struct cgx_link_info_msg *)msghdr; 2709 req->hdr.id = MBOX_MSG_CGX_LINK_EVENT; 2710 req->hdr.sig = OTX2_MBOX_REQ_SIG; 2711 memcpy(&req->link_info, &pf->linfo, sizeof(req->link_info)); 2712 2713 otx2_sync_mbox_up_msg(&pf->mbox_pfvf[0], vf_idx); 2714 } 2715 2716 static int otx2_sriov_enable(struct pci_dev *pdev, int numvfs) 2717 { 2718 struct net_device *netdev = pci_get_drvdata(pdev); 2719 struct otx2_nic *pf = netdev_priv(netdev); 2720 int ret; 2721 2722 /* Init PF <=> VF mailbox stuff */ 2723 ret = otx2_pfvf_mbox_init(pf, numvfs); 2724 if (ret) 2725 return ret; 2726 2727 ret = otx2_register_pfvf_mbox_intr(pf, numvfs); 2728 if (ret) 2729 goto free_mbox; 2730 2731 ret = otx2_pf_flr_init(pf, numvfs); 2732 if (ret) 2733 goto free_intr; 2734 2735 ret = otx2_register_flr_me_intr(pf, numvfs); 2736 if (ret) 2737 goto free_flr; 2738 2739 ret = pci_enable_sriov(pdev, numvfs); 2740 if (ret) 2741 goto free_flr_intr; 2742 2743 return numvfs; 2744 free_flr_intr: 2745 otx2_disable_flr_me_intr(pf); 2746 free_flr: 2747 otx2_flr_wq_destroy(pf); 2748 free_intr: 2749 otx2_disable_pfvf_mbox_intr(pf, numvfs); 2750 free_mbox: 2751 otx2_pfvf_mbox_destroy(pf); 2752 return ret; 2753 } 2754 2755 static int otx2_sriov_disable(struct pci_dev *pdev) 2756 { 2757 struct net_device *netdev = pci_get_drvdata(pdev); 2758 struct otx2_nic *pf = netdev_priv(netdev); 2759 int numvfs = pci_num_vf(pdev); 2760 2761 if (!numvfs) 2762 return 0; 2763 2764 pci_disable_sriov(pdev); 2765 2766 otx2_disable_flr_me_intr(pf); 2767 otx2_flr_wq_destroy(pf); 2768 otx2_disable_pfvf_mbox_intr(pf, numvfs); 2769 otx2_pfvf_mbox_destroy(pf); 2770 2771 return 0; 2772 } 2773 2774 static int otx2_sriov_configure(struct pci_dev *pdev, int numvfs) 2775 { 2776 if (numvfs == 0) 2777 return otx2_sriov_disable(pdev); 2778 else 2779 return otx2_sriov_enable(pdev, numvfs); 2780 } 2781 2782 static void otx2_remove(struct pci_dev *pdev) 2783 { 2784 struct net_device *netdev = pci_get_drvdata(pdev); 2785 struct otx2_nic *pf; 2786 2787 if (!netdev) 2788 return; 2789 2790 pf = netdev_priv(netdev); 2791 2792 pf->flags |= OTX2_FLAG_PF_SHUTDOWN; 2793 2794 if (pf->flags & OTX2_FLAG_TX_TSTAMP_ENABLED) 2795 otx2_config_hw_tx_tstamp(pf, false); 2796 if (pf->flags & OTX2_FLAG_RX_TSTAMP_ENABLED) 2797 otx2_config_hw_rx_tstamp(pf, false); 2798 2799 cancel_work_sync(&pf->reset_task); 2800 /* Disable link notifications */ 2801 otx2_cgx_config_linkevents(pf, false); 2802 2803 otx2_unregister_dl(pf); 2804 unregister_netdev(netdev); 2805 otx2_sriov_disable(pf->pdev); 2806 otx2_sriov_vfcfg_cleanup(pf); 2807 if (pf->otx2_wq) 2808 destroy_workqueue(pf->otx2_wq); 2809 2810 otx2_ptp_destroy(pf); 2811 otx2_mcam_flow_del(pf); 2812 otx2_shutdown_tc(pf); 2813 otx2_detach_resources(&pf->mbox); 2814 if (test_bit(CN10K_LMTST, &pf->hw.cap_flag)) 2815 qmem_free(pf->dev, pf->dync_lmt); 2816 otx2_disable_mbox_intr(pf); 2817 otx2_pfaf_mbox_destroy(pf); 2818 pci_free_irq_vectors(pf->pdev); 2819 pci_set_drvdata(pdev, NULL); 2820 free_netdev(netdev); 2821 2822 pci_release_regions(pdev); 2823 } 2824 2825 static struct pci_driver otx2_pf_driver = { 2826 .name = DRV_NAME, 2827 .id_table = otx2_pf_id_table, 2828 .probe = otx2_probe, 2829 .shutdown = otx2_remove, 2830 .remove = otx2_remove, 2831 .sriov_configure = otx2_sriov_configure 2832 }; 2833 2834 static int __init otx2_rvupf_init_module(void) 2835 { 2836 pr_info("%s: %s\n", DRV_NAME, DRV_STRING); 2837 2838 return pci_register_driver(&otx2_pf_driver); 2839 } 2840 2841 static void __exit otx2_rvupf_cleanup_module(void) 2842 { 2843 pci_unregister_driver(&otx2_pf_driver); 2844 } 2845 2846 module_init(otx2_rvupf_init_module); 2847 module_exit(otx2_rvupf_cleanup_module); 2848