1 // SPDX-License-Identifier: BSD-3-Clause OR GPL-2.0 2 /* Copyright (c) 2015-2018 Mellanox Technologies. All rights reserved */ 3 4 #include <linux/kernel.h> 5 #include <linux/module.h> 6 #include <linux/export.h> 7 #include <linux/err.h> 8 #include <linux/device.h> 9 #include <linux/pci.h> 10 #include <linux/interrupt.h> 11 #include <linux/wait.h> 12 #include <linux/types.h> 13 #include <linux/skbuff.h> 14 #include <linux/if_vlan.h> 15 #include <linux/log2.h> 16 #include <linux/string.h> 17 18 #include "pci_hw.h" 19 #include "pci.h" 20 #include "core.h" 21 #include "cmd.h" 22 #include "port.h" 23 #include "resources.h" 24 25 #define mlxsw_pci_write32(mlxsw_pci, reg, val) \ 26 iowrite32be(val, (mlxsw_pci)->hw_addr + (MLXSW_PCI_ ## reg)) 27 #define mlxsw_pci_read32(mlxsw_pci, reg) \ 28 ioread32be((mlxsw_pci)->hw_addr + (MLXSW_PCI_ ## reg)) 29 30 enum mlxsw_pci_queue_type { 31 MLXSW_PCI_QUEUE_TYPE_SDQ, 32 MLXSW_PCI_QUEUE_TYPE_RDQ, 33 MLXSW_PCI_QUEUE_TYPE_CQ, 34 MLXSW_PCI_QUEUE_TYPE_EQ, 35 }; 36 37 #define MLXSW_PCI_QUEUE_TYPE_COUNT 4 38 39 static const u16 mlxsw_pci_doorbell_type_offset[] = { 40 MLXSW_PCI_DOORBELL_SDQ_OFFSET, /* for type MLXSW_PCI_QUEUE_TYPE_SDQ */ 41 MLXSW_PCI_DOORBELL_RDQ_OFFSET, /* for type MLXSW_PCI_QUEUE_TYPE_RDQ */ 42 MLXSW_PCI_DOORBELL_CQ_OFFSET, /* for type MLXSW_PCI_QUEUE_TYPE_CQ */ 43 MLXSW_PCI_DOORBELL_EQ_OFFSET, /* for type MLXSW_PCI_QUEUE_TYPE_EQ */ 44 }; 45 46 static const u16 mlxsw_pci_doorbell_arm_type_offset[] = { 47 0, /* unused */ 48 0, /* unused */ 49 MLXSW_PCI_DOORBELL_ARM_CQ_OFFSET, /* for type MLXSW_PCI_QUEUE_TYPE_CQ */ 50 MLXSW_PCI_DOORBELL_ARM_EQ_OFFSET, /* for type MLXSW_PCI_QUEUE_TYPE_EQ */ 51 }; 52 53 struct mlxsw_pci_mem_item { 54 char *buf; 55 dma_addr_t mapaddr; 56 size_t size; 57 }; 58 59 struct mlxsw_pci_queue_elem_info { 60 char *elem; /* pointer to actual dma mapped element mem chunk */ 61 union { 62 struct { 63 struct sk_buff *skb; 64 } sdq; 65 struct { 66 struct sk_buff *skb; 67 } rdq; 68 } u; 69 }; 70 71 struct mlxsw_pci_queue { 72 spinlock_t lock; /* for queue accesses */ 73 struct mlxsw_pci_mem_item mem_item; 74 struct mlxsw_pci_queue_elem_info *elem_info; 75 u16 producer_counter; 76 u16 consumer_counter; 77 u16 count; /* number of elements in queue */ 78 u8 num; /* queue number */ 79 u8 elem_size; /* size of one element */ 80 enum mlxsw_pci_queue_type type; 81 struct tasklet_struct tasklet; /* queue processing tasklet */ 82 struct mlxsw_pci *pci; 83 union { 84 struct { 85 u32 comp_sdq_count; 86 u32 comp_rdq_count; 87 enum mlxsw_pci_cqe_v v; 88 } cq; 89 struct { 90 u32 ev_cmd_count; 91 u32 ev_comp_count; 92 u32 ev_other_count; 93 } eq; 94 } u; 95 }; 96 97 struct mlxsw_pci_queue_type_group { 98 struct mlxsw_pci_queue *q; 99 u8 count; /* number of queues in group */ 100 }; 101 102 struct mlxsw_pci { 103 struct pci_dev *pdev; 104 u8 __iomem *hw_addr; 105 u64 free_running_clock_offset; 106 struct mlxsw_pci_queue_type_group queues[MLXSW_PCI_QUEUE_TYPE_COUNT]; 107 u32 doorbell_offset; 108 struct mlxsw_core *core; 109 struct { 110 struct mlxsw_pci_mem_item *items; 111 unsigned int count; 112 } fw_area; 113 struct { 114 struct mlxsw_pci_mem_item out_mbox; 115 struct mlxsw_pci_mem_item in_mbox; 116 struct mutex lock; /* Lock access to command registers */ 117 bool nopoll; 118 wait_queue_head_t wait; 119 bool wait_done; 120 struct { 121 u8 status; 122 u64 out_param; 123 } comp; 124 } cmd; 125 struct mlxsw_bus_info bus_info; 126 const struct pci_device_id *id; 127 enum mlxsw_pci_cqe_v max_cqe_ver; /* Maximal supported CQE version */ 128 u8 num_sdq_cqs; /* Number of CQs used for SDQs */ 129 }; 130 131 static void mlxsw_pci_queue_tasklet_schedule(struct mlxsw_pci_queue *q) 132 { 133 tasklet_schedule(&q->tasklet); 134 } 135 136 static char *__mlxsw_pci_queue_elem_get(struct mlxsw_pci_queue *q, 137 size_t elem_size, int elem_index) 138 { 139 return q->mem_item.buf + (elem_size * elem_index); 140 } 141 142 static struct mlxsw_pci_queue_elem_info * 143 mlxsw_pci_queue_elem_info_get(struct mlxsw_pci_queue *q, int elem_index) 144 { 145 return &q->elem_info[elem_index]; 146 } 147 148 static struct mlxsw_pci_queue_elem_info * 149 mlxsw_pci_queue_elem_info_producer_get(struct mlxsw_pci_queue *q) 150 { 151 int index = q->producer_counter & (q->count - 1); 152 153 if ((u16) (q->producer_counter - q->consumer_counter) == q->count) 154 return NULL; 155 return mlxsw_pci_queue_elem_info_get(q, index); 156 } 157 158 static struct mlxsw_pci_queue_elem_info * 159 mlxsw_pci_queue_elem_info_consumer_get(struct mlxsw_pci_queue *q) 160 { 161 int index = q->consumer_counter & (q->count - 1); 162 163 return mlxsw_pci_queue_elem_info_get(q, index); 164 } 165 166 static char *mlxsw_pci_queue_elem_get(struct mlxsw_pci_queue *q, int elem_index) 167 { 168 return mlxsw_pci_queue_elem_info_get(q, elem_index)->elem; 169 } 170 171 static bool mlxsw_pci_elem_hw_owned(struct mlxsw_pci_queue *q, bool owner_bit) 172 { 173 return owner_bit != !!(q->consumer_counter & q->count); 174 } 175 176 static struct mlxsw_pci_queue_type_group * 177 mlxsw_pci_queue_type_group_get(struct mlxsw_pci *mlxsw_pci, 178 enum mlxsw_pci_queue_type q_type) 179 { 180 return &mlxsw_pci->queues[q_type]; 181 } 182 183 static u8 __mlxsw_pci_queue_count(struct mlxsw_pci *mlxsw_pci, 184 enum mlxsw_pci_queue_type q_type) 185 { 186 struct mlxsw_pci_queue_type_group *queue_group; 187 188 queue_group = mlxsw_pci_queue_type_group_get(mlxsw_pci, q_type); 189 return queue_group->count; 190 } 191 192 static u8 mlxsw_pci_sdq_count(struct mlxsw_pci *mlxsw_pci) 193 { 194 return __mlxsw_pci_queue_count(mlxsw_pci, MLXSW_PCI_QUEUE_TYPE_SDQ); 195 } 196 197 static u8 mlxsw_pci_cq_count(struct mlxsw_pci *mlxsw_pci) 198 { 199 return __mlxsw_pci_queue_count(mlxsw_pci, MLXSW_PCI_QUEUE_TYPE_CQ); 200 } 201 202 static struct mlxsw_pci_queue * 203 __mlxsw_pci_queue_get(struct mlxsw_pci *mlxsw_pci, 204 enum mlxsw_pci_queue_type q_type, u8 q_num) 205 { 206 return &mlxsw_pci->queues[q_type].q[q_num]; 207 } 208 209 static struct mlxsw_pci_queue *mlxsw_pci_sdq_get(struct mlxsw_pci *mlxsw_pci, 210 u8 q_num) 211 { 212 return __mlxsw_pci_queue_get(mlxsw_pci, 213 MLXSW_PCI_QUEUE_TYPE_SDQ, q_num); 214 } 215 216 static struct mlxsw_pci_queue *mlxsw_pci_rdq_get(struct mlxsw_pci *mlxsw_pci, 217 u8 q_num) 218 { 219 return __mlxsw_pci_queue_get(mlxsw_pci, 220 MLXSW_PCI_QUEUE_TYPE_RDQ, q_num); 221 } 222 223 static struct mlxsw_pci_queue *mlxsw_pci_cq_get(struct mlxsw_pci *mlxsw_pci, 224 u8 q_num) 225 { 226 return __mlxsw_pci_queue_get(mlxsw_pci, MLXSW_PCI_QUEUE_TYPE_CQ, q_num); 227 } 228 229 static struct mlxsw_pci_queue *mlxsw_pci_eq_get(struct mlxsw_pci *mlxsw_pci, 230 u8 q_num) 231 { 232 return __mlxsw_pci_queue_get(mlxsw_pci, MLXSW_PCI_QUEUE_TYPE_EQ, q_num); 233 } 234 235 static void __mlxsw_pci_queue_doorbell_set(struct mlxsw_pci *mlxsw_pci, 236 struct mlxsw_pci_queue *q, 237 u16 val) 238 { 239 mlxsw_pci_write32(mlxsw_pci, 240 DOORBELL(mlxsw_pci->doorbell_offset, 241 mlxsw_pci_doorbell_type_offset[q->type], 242 q->num), val); 243 } 244 245 static void __mlxsw_pci_queue_doorbell_arm_set(struct mlxsw_pci *mlxsw_pci, 246 struct mlxsw_pci_queue *q, 247 u16 val) 248 { 249 mlxsw_pci_write32(mlxsw_pci, 250 DOORBELL(mlxsw_pci->doorbell_offset, 251 mlxsw_pci_doorbell_arm_type_offset[q->type], 252 q->num), val); 253 } 254 255 static void mlxsw_pci_queue_doorbell_producer_ring(struct mlxsw_pci *mlxsw_pci, 256 struct mlxsw_pci_queue *q) 257 { 258 wmb(); /* ensure all writes are done before we ring a bell */ 259 __mlxsw_pci_queue_doorbell_set(mlxsw_pci, q, q->producer_counter); 260 } 261 262 static void mlxsw_pci_queue_doorbell_consumer_ring(struct mlxsw_pci *mlxsw_pci, 263 struct mlxsw_pci_queue *q) 264 { 265 wmb(); /* ensure all writes are done before we ring a bell */ 266 __mlxsw_pci_queue_doorbell_set(mlxsw_pci, q, 267 q->consumer_counter + q->count); 268 } 269 270 static void 271 mlxsw_pci_queue_doorbell_arm_consumer_ring(struct mlxsw_pci *mlxsw_pci, 272 struct mlxsw_pci_queue *q) 273 { 274 wmb(); /* ensure all writes are done before we ring a bell */ 275 __mlxsw_pci_queue_doorbell_arm_set(mlxsw_pci, q, q->consumer_counter); 276 } 277 278 static dma_addr_t __mlxsw_pci_queue_page_get(struct mlxsw_pci_queue *q, 279 int page_index) 280 { 281 return q->mem_item.mapaddr + MLXSW_PCI_PAGE_SIZE * page_index; 282 } 283 284 static int mlxsw_pci_sdq_init(struct mlxsw_pci *mlxsw_pci, char *mbox, 285 struct mlxsw_pci_queue *q) 286 { 287 int tclass; 288 int lp; 289 int i; 290 int err; 291 292 q->producer_counter = 0; 293 q->consumer_counter = 0; 294 tclass = q->num == MLXSW_PCI_SDQ_EMAD_INDEX ? MLXSW_PCI_SDQ_EMAD_TC : 295 MLXSW_PCI_SDQ_CTL_TC; 296 lp = q->num == MLXSW_PCI_SDQ_EMAD_INDEX ? MLXSW_CMD_MBOX_SW2HW_DQ_SDQ_LP_IGNORE_WQE : 297 MLXSW_CMD_MBOX_SW2HW_DQ_SDQ_LP_WQE; 298 299 /* Set CQ of same number of this SDQ. */ 300 mlxsw_cmd_mbox_sw2hw_dq_cq_set(mbox, q->num); 301 mlxsw_cmd_mbox_sw2hw_dq_sdq_lp_set(mbox, lp); 302 mlxsw_cmd_mbox_sw2hw_dq_sdq_tclass_set(mbox, tclass); 303 mlxsw_cmd_mbox_sw2hw_dq_log2_dq_sz_set(mbox, 3); /* 8 pages */ 304 for (i = 0; i < MLXSW_PCI_AQ_PAGES; i++) { 305 dma_addr_t mapaddr = __mlxsw_pci_queue_page_get(q, i); 306 307 mlxsw_cmd_mbox_sw2hw_dq_pa_set(mbox, i, mapaddr); 308 } 309 310 err = mlxsw_cmd_sw2hw_sdq(mlxsw_pci->core, mbox, q->num); 311 if (err) 312 return err; 313 mlxsw_pci_queue_doorbell_producer_ring(mlxsw_pci, q); 314 return 0; 315 } 316 317 static void mlxsw_pci_sdq_fini(struct mlxsw_pci *mlxsw_pci, 318 struct mlxsw_pci_queue *q) 319 { 320 mlxsw_cmd_hw2sw_sdq(mlxsw_pci->core, q->num); 321 } 322 323 static int mlxsw_pci_wqe_frag_map(struct mlxsw_pci *mlxsw_pci, char *wqe, 324 int index, char *frag_data, size_t frag_len, 325 int direction) 326 { 327 struct pci_dev *pdev = mlxsw_pci->pdev; 328 dma_addr_t mapaddr; 329 330 mapaddr = dma_map_single(&pdev->dev, frag_data, frag_len, direction); 331 if (unlikely(dma_mapping_error(&pdev->dev, mapaddr))) { 332 dev_err_ratelimited(&pdev->dev, "failed to dma map tx frag\n"); 333 return -EIO; 334 } 335 mlxsw_pci_wqe_address_set(wqe, index, mapaddr); 336 mlxsw_pci_wqe_byte_count_set(wqe, index, frag_len); 337 return 0; 338 } 339 340 static void mlxsw_pci_wqe_frag_unmap(struct mlxsw_pci *mlxsw_pci, char *wqe, 341 int index, int direction) 342 { 343 struct pci_dev *pdev = mlxsw_pci->pdev; 344 size_t frag_len = mlxsw_pci_wqe_byte_count_get(wqe, index); 345 dma_addr_t mapaddr = mlxsw_pci_wqe_address_get(wqe, index); 346 347 if (!frag_len) 348 return; 349 dma_unmap_single(&pdev->dev, mapaddr, frag_len, direction); 350 } 351 352 static int mlxsw_pci_rdq_skb_alloc(struct mlxsw_pci *mlxsw_pci, 353 struct mlxsw_pci_queue_elem_info *elem_info) 354 { 355 size_t buf_len = MLXSW_PORT_MAX_MTU; 356 char *wqe = elem_info->elem; 357 struct sk_buff *skb; 358 int err; 359 360 skb = netdev_alloc_skb_ip_align(NULL, buf_len); 361 if (!skb) 362 return -ENOMEM; 363 364 err = mlxsw_pci_wqe_frag_map(mlxsw_pci, wqe, 0, skb->data, 365 buf_len, DMA_FROM_DEVICE); 366 if (err) 367 goto err_frag_map; 368 369 elem_info->u.rdq.skb = skb; 370 return 0; 371 372 err_frag_map: 373 dev_kfree_skb_any(skb); 374 return err; 375 } 376 377 static void mlxsw_pci_rdq_skb_free(struct mlxsw_pci *mlxsw_pci, 378 struct mlxsw_pci_queue_elem_info *elem_info) 379 { 380 struct sk_buff *skb; 381 char *wqe; 382 383 skb = elem_info->u.rdq.skb; 384 wqe = elem_info->elem; 385 386 mlxsw_pci_wqe_frag_unmap(mlxsw_pci, wqe, 0, DMA_FROM_DEVICE); 387 dev_kfree_skb_any(skb); 388 } 389 390 static int mlxsw_pci_rdq_init(struct mlxsw_pci *mlxsw_pci, char *mbox, 391 struct mlxsw_pci_queue *q) 392 { 393 struct mlxsw_pci_queue_elem_info *elem_info; 394 u8 sdq_count = mlxsw_pci_sdq_count(mlxsw_pci); 395 int i; 396 int err; 397 398 q->producer_counter = 0; 399 q->consumer_counter = 0; 400 401 /* Set CQ of same number of this RDQ with base 402 * above SDQ count as the lower ones are assigned to SDQs. 403 */ 404 mlxsw_cmd_mbox_sw2hw_dq_cq_set(mbox, sdq_count + q->num); 405 mlxsw_cmd_mbox_sw2hw_dq_log2_dq_sz_set(mbox, 3); /* 8 pages */ 406 for (i = 0; i < MLXSW_PCI_AQ_PAGES; i++) { 407 dma_addr_t mapaddr = __mlxsw_pci_queue_page_get(q, i); 408 409 mlxsw_cmd_mbox_sw2hw_dq_pa_set(mbox, i, mapaddr); 410 } 411 412 err = mlxsw_cmd_sw2hw_rdq(mlxsw_pci->core, mbox, q->num); 413 if (err) 414 return err; 415 416 mlxsw_pci_queue_doorbell_producer_ring(mlxsw_pci, q); 417 418 for (i = 0; i < q->count; i++) { 419 elem_info = mlxsw_pci_queue_elem_info_producer_get(q); 420 BUG_ON(!elem_info); 421 err = mlxsw_pci_rdq_skb_alloc(mlxsw_pci, elem_info); 422 if (err) 423 goto rollback; 424 /* Everything is set up, ring doorbell to pass elem to HW */ 425 q->producer_counter++; 426 mlxsw_pci_queue_doorbell_producer_ring(mlxsw_pci, q); 427 } 428 429 return 0; 430 431 rollback: 432 for (i--; i >= 0; i--) { 433 elem_info = mlxsw_pci_queue_elem_info_get(q, i); 434 mlxsw_pci_rdq_skb_free(mlxsw_pci, elem_info); 435 } 436 mlxsw_cmd_hw2sw_rdq(mlxsw_pci->core, q->num); 437 438 return err; 439 } 440 441 static void mlxsw_pci_rdq_fini(struct mlxsw_pci *mlxsw_pci, 442 struct mlxsw_pci_queue *q) 443 { 444 struct mlxsw_pci_queue_elem_info *elem_info; 445 int i; 446 447 mlxsw_cmd_hw2sw_rdq(mlxsw_pci->core, q->num); 448 for (i = 0; i < q->count; i++) { 449 elem_info = mlxsw_pci_queue_elem_info_get(q, i); 450 mlxsw_pci_rdq_skb_free(mlxsw_pci, elem_info); 451 } 452 } 453 454 static void mlxsw_pci_cq_pre_init(struct mlxsw_pci *mlxsw_pci, 455 struct mlxsw_pci_queue *q) 456 { 457 q->u.cq.v = mlxsw_pci->max_cqe_ver; 458 459 /* For SDQ it is pointless to use CQEv2, so use CQEv1 instead */ 460 if (q->u.cq.v == MLXSW_PCI_CQE_V2 && 461 q->num < mlxsw_pci->num_sdq_cqs) 462 q->u.cq.v = MLXSW_PCI_CQE_V1; 463 } 464 465 static int mlxsw_pci_cq_init(struct mlxsw_pci *mlxsw_pci, char *mbox, 466 struct mlxsw_pci_queue *q) 467 { 468 int i; 469 int err; 470 471 q->consumer_counter = 0; 472 473 for (i = 0; i < q->count; i++) { 474 char *elem = mlxsw_pci_queue_elem_get(q, i); 475 476 mlxsw_pci_cqe_owner_set(q->u.cq.v, elem, 1); 477 } 478 479 if (q->u.cq.v == MLXSW_PCI_CQE_V1) 480 mlxsw_cmd_mbox_sw2hw_cq_cqe_ver_set(mbox, 481 MLXSW_CMD_MBOX_SW2HW_CQ_CQE_VER_1); 482 else if (q->u.cq.v == MLXSW_PCI_CQE_V2) 483 mlxsw_cmd_mbox_sw2hw_cq_cqe_ver_set(mbox, 484 MLXSW_CMD_MBOX_SW2HW_CQ_CQE_VER_2); 485 486 mlxsw_cmd_mbox_sw2hw_cq_c_eqn_set(mbox, MLXSW_PCI_EQ_COMP_NUM); 487 mlxsw_cmd_mbox_sw2hw_cq_st_set(mbox, 0); 488 mlxsw_cmd_mbox_sw2hw_cq_log_cq_size_set(mbox, ilog2(q->count)); 489 for (i = 0; i < MLXSW_PCI_AQ_PAGES; i++) { 490 dma_addr_t mapaddr = __mlxsw_pci_queue_page_get(q, i); 491 492 mlxsw_cmd_mbox_sw2hw_cq_pa_set(mbox, i, mapaddr); 493 } 494 err = mlxsw_cmd_sw2hw_cq(mlxsw_pci->core, mbox, q->num); 495 if (err) 496 return err; 497 mlxsw_pci_queue_doorbell_consumer_ring(mlxsw_pci, q); 498 mlxsw_pci_queue_doorbell_arm_consumer_ring(mlxsw_pci, q); 499 return 0; 500 } 501 502 static void mlxsw_pci_cq_fini(struct mlxsw_pci *mlxsw_pci, 503 struct mlxsw_pci_queue *q) 504 { 505 mlxsw_cmd_hw2sw_cq(mlxsw_pci->core, q->num); 506 } 507 508 static void mlxsw_pci_cqe_sdq_handle(struct mlxsw_pci *mlxsw_pci, 509 struct mlxsw_pci_queue *q, 510 u16 consumer_counter_limit, 511 char *cqe) 512 { 513 struct pci_dev *pdev = mlxsw_pci->pdev; 514 struct mlxsw_pci_queue_elem_info *elem_info; 515 struct mlxsw_tx_info tx_info; 516 char *wqe; 517 struct sk_buff *skb; 518 int i; 519 520 spin_lock(&q->lock); 521 elem_info = mlxsw_pci_queue_elem_info_consumer_get(q); 522 tx_info = mlxsw_skb_cb(elem_info->u.sdq.skb)->tx_info; 523 skb = elem_info->u.sdq.skb; 524 wqe = elem_info->elem; 525 for (i = 0; i < MLXSW_PCI_WQE_SG_ENTRIES; i++) 526 mlxsw_pci_wqe_frag_unmap(mlxsw_pci, wqe, i, DMA_TO_DEVICE); 527 528 if (unlikely(!tx_info.is_emad && 529 skb_shinfo(skb)->tx_flags & SKBTX_HW_TSTAMP)) { 530 mlxsw_core_ptp_transmitted(mlxsw_pci->core, skb, 531 tx_info.local_port); 532 skb = NULL; 533 } 534 535 if (skb) 536 dev_kfree_skb_any(skb); 537 elem_info->u.sdq.skb = NULL; 538 539 if (q->consumer_counter++ != consumer_counter_limit) 540 dev_dbg_ratelimited(&pdev->dev, "Consumer counter does not match limit in SDQ\n"); 541 spin_unlock(&q->lock); 542 } 543 544 static void mlxsw_pci_cqe_rdq_md_tx_port_init(struct sk_buff *skb, 545 const char *cqe) 546 { 547 struct mlxsw_skb_cb *cb = mlxsw_skb_cb(skb); 548 549 if (mlxsw_pci_cqe2_tx_lag_get(cqe)) { 550 cb->rx_md_info.tx_port_is_lag = true; 551 cb->rx_md_info.tx_lag_id = mlxsw_pci_cqe2_tx_lag_id_get(cqe); 552 cb->rx_md_info.tx_lag_port_index = 553 mlxsw_pci_cqe2_tx_lag_subport_get(cqe); 554 } else { 555 cb->rx_md_info.tx_port_is_lag = false; 556 cb->rx_md_info.tx_sys_port = 557 mlxsw_pci_cqe2_tx_system_port_get(cqe); 558 } 559 560 if (cb->rx_md_info.tx_sys_port != MLXSW_PCI_CQE2_TX_PORT_MULTI_PORT && 561 cb->rx_md_info.tx_sys_port != MLXSW_PCI_CQE2_TX_PORT_INVALID) 562 cb->rx_md_info.tx_port_valid = 1; 563 else 564 cb->rx_md_info.tx_port_valid = 0; 565 } 566 567 static void mlxsw_pci_cqe_rdq_md_init(struct sk_buff *skb, const char *cqe) 568 { 569 struct mlxsw_skb_cb *cb = mlxsw_skb_cb(skb); 570 571 cb->rx_md_info.tx_congestion = mlxsw_pci_cqe2_mirror_cong_get(cqe); 572 if (cb->rx_md_info.tx_congestion != MLXSW_PCI_CQE2_MIRROR_CONG_INVALID) 573 cb->rx_md_info.tx_congestion_valid = 1; 574 else 575 cb->rx_md_info.tx_congestion_valid = 0; 576 cb->rx_md_info.tx_congestion <<= MLXSW_PCI_CQE2_MIRROR_CONG_SHIFT; 577 578 cb->rx_md_info.latency = mlxsw_pci_cqe2_mirror_latency_get(cqe); 579 if (cb->rx_md_info.latency != MLXSW_PCI_CQE2_MIRROR_LATENCY_INVALID) 580 cb->rx_md_info.latency_valid = 1; 581 else 582 cb->rx_md_info.latency_valid = 0; 583 584 cb->rx_md_info.tx_tc = mlxsw_pci_cqe2_mirror_tclass_get(cqe); 585 if (cb->rx_md_info.tx_tc != MLXSW_PCI_CQE2_MIRROR_TCLASS_INVALID) 586 cb->rx_md_info.tx_tc_valid = 1; 587 else 588 cb->rx_md_info.tx_tc_valid = 0; 589 590 mlxsw_pci_cqe_rdq_md_tx_port_init(skb, cqe); 591 } 592 593 static void mlxsw_pci_cqe_rdq_handle(struct mlxsw_pci *mlxsw_pci, 594 struct mlxsw_pci_queue *q, 595 u16 consumer_counter_limit, 596 enum mlxsw_pci_cqe_v cqe_v, char *cqe) 597 { 598 struct pci_dev *pdev = mlxsw_pci->pdev; 599 struct mlxsw_pci_queue_elem_info *elem_info; 600 struct mlxsw_rx_info rx_info = {}; 601 char wqe[MLXSW_PCI_WQE_SIZE]; 602 struct sk_buff *skb; 603 u16 byte_count; 604 int err; 605 606 elem_info = mlxsw_pci_queue_elem_info_consumer_get(q); 607 skb = elem_info->u.rdq.skb; 608 memcpy(wqe, elem_info->elem, MLXSW_PCI_WQE_SIZE); 609 610 if (q->consumer_counter++ != consumer_counter_limit) 611 dev_dbg_ratelimited(&pdev->dev, "Consumer counter does not match limit in RDQ\n"); 612 613 err = mlxsw_pci_rdq_skb_alloc(mlxsw_pci, elem_info); 614 if (err) { 615 dev_err_ratelimited(&pdev->dev, "Failed to alloc skb for RDQ\n"); 616 goto out; 617 } 618 619 mlxsw_pci_wqe_frag_unmap(mlxsw_pci, wqe, 0, DMA_FROM_DEVICE); 620 621 if (mlxsw_pci_cqe_lag_get(cqe_v, cqe)) { 622 rx_info.is_lag = true; 623 rx_info.u.lag_id = mlxsw_pci_cqe_lag_id_get(cqe_v, cqe); 624 rx_info.lag_port_index = 625 mlxsw_pci_cqe_lag_subport_get(cqe_v, cqe); 626 } else { 627 rx_info.is_lag = false; 628 rx_info.u.sys_port = mlxsw_pci_cqe_system_port_get(cqe); 629 } 630 631 rx_info.trap_id = mlxsw_pci_cqe_trap_id_get(cqe); 632 633 if (rx_info.trap_id == MLXSW_TRAP_ID_DISCARD_INGRESS_ACL || 634 rx_info.trap_id == MLXSW_TRAP_ID_DISCARD_EGRESS_ACL) { 635 u32 cookie_index = 0; 636 637 if (mlxsw_pci->max_cqe_ver >= MLXSW_PCI_CQE_V2) 638 cookie_index = mlxsw_pci_cqe2_user_def_val_orig_pkt_len_get(cqe); 639 mlxsw_skb_cb(skb)->rx_md_info.cookie_index = cookie_index; 640 } else if (rx_info.trap_id >= MLXSW_TRAP_ID_MIRROR_SESSION0 && 641 rx_info.trap_id <= MLXSW_TRAP_ID_MIRROR_SESSION7 && 642 mlxsw_pci->max_cqe_ver >= MLXSW_PCI_CQE_V2) { 643 rx_info.mirror_reason = mlxsw_pci_cqe2_mirror_reason_get(cqe); 644 mlxsw_pci_cqe_rdq_md_init(skb, cqe); 645 } else if (rx_info.trap_id == MLXSW_TRAP_ID_PKT_SAMPLE && 646 mlxsw_pci->max_cqe_ver >= MLXSW_PCI_CQE_V2) { 647 mlxsw_pci_cqe_rdq_md_tx_port_init(skb, cqe); 648 } 649 650 byte_count = mlxsw_pci_cqe_byte_count_get(cqe); 651 if (mlxsw_pci_cqe_crc_get(cqe_v, cqe)) 652 byte_count -= ETH_FCS_LEN; 653 skb_put(skb, byte_count); 654 mlxsw_core_skb_receive(mlxsw_pci->core, skb, &rx_info); 655 656 out: 657 /* Everything is set up, ring doorbell to pass elem to HW */ 658 q->producer_counter++; 659 mlxsw_pci_queue_doorbell_producer_ring(mlxsw_pci, q); 660 return; 661 } 662 663 static char *mlxsw_pci_cq_sw_cqe_get(struct mlxsw_pci_queue *q) 664 { 665 struct mlxsw_pci_queue_elem_info *elem_info; 666 char *elem; 667 bool owner_bit; 668 669 elem_info = mlxsw_pci_queue_elem_info_consumer_get(q); 670 elem = elem_info->elem; 671 owner_bit = mlxsw_pci_cqe_owner_get(q->u.cq.v, elem); 672 if (mlxsw_pci_elem_hw_owned(q, owner_bit)) 673 return NULL; 674 q->consumer_counter++; 675 rmb(); /* make sure we read owned bit before the rest of elem */ 676 return elem; 677 } 678 679 static void mlxsw_pci_cq_tasklet(struct tasklet_struct *t) 680 { 681 struct mlxsw_pci_queue *q = from_tasklet(q, t, tasklet); 682 struct mlxsw_pci *mlxsw_pci = q->pci; 683 char *cqe; 684 int items = 0; 685 int credits = q->count >> 1; 686 687 while ((cqe = mlxsw_pci_cq_sw_cqe_get(q))) { 688 u16 wqe_counter = mlxsw_pci_cqe_wqe_counter_get(cqe); 689 u8 sendq = mlxsw_pci_cqe_sr_get(q->u.cq.v, cqe); 690 u8 dqn = mlxsw_pci_cqe_dqn_get(q->u.cq.v, cqe); 691 char ncqe[MLXSW_PCI_CQE_SIZE_MAX]; 692 693 memcpy(ncqe, cqe, q->elem_size); 694 mlxsw_pci_queue_doorbell_consumer_ring(mlxsw_pci, q); 695 696 if (sendq) { 697 struct mlxsw_pci_queue *sdq; 698 699 sdq = mlxsw_pci_sdq_get(mlxsw_pci, dqn); 700 mlxsw_pci_cqe_sdq_handle(mlxsw_pci, sdq, 701 wqe_counter, ncqe); 702 q->u.cq.comp_sdq_count++; 703 } else { 704 struct mlxsw_pci_queue *rdq; 705 706 rdq = mlxsw_pci_rdq_get(mlxsw_pci, dqn); 707 mlxsw_pci_cqe_rdq_handle(mlxsw_pci, rdq, 708 wqe_counter, q->u.cq.v, ncqe); 709 q->u.cq.comp_rdq_count++; 710 } 711 if (++items == credits) 712 break; 713 } 714 if (items) 715 mlxsw_pci_queue_doorbell_arm_consumer_ring(mlxsw_pci, q); 716 } 717 718 static u16 mlxsw_pci_cq_elem_count(const struct mlxsw_pci_queue *q) 719 { 720 return q->u.cq.v == MLXSW_PCI_CQE_V2 ? MLXSW_PCI_CQE2_COUNT : 721 MLXSW_PCI_CQE01_COUNT; 722 } 723 724 static u8 mlxsw_pci_cq_elem_size(const struct mlxsw_pci_queue *q) 725 { 726 return q->u.cq.v == MLXSW_PCI_CQE_V2 ? MLXSW_PCI_CQE2_SIZE : 727 MLXSW_PCI_CQE01_SIZE; 728 } 729 730 static int mlxsw_pci_eq_init(struct mlxsw_pci *mlxsw_pci, char *mbox, 731 struct mlxsw_pci_queue *q) 732 { 733 int i; 734 int err; 735 736 q->consumer_counter = 0; 737 738 for (i = 0; i < q->count; i++) { 739 char *elem = mlxsw_pci_queue_elem_get(q, i); 740 741 mlxsw_pci_eqe_owner_set(elem, 1); 742 } 743 744 mlxsw_cmd_mbox_sw2hw_eq_int_msix_set(mbox, 1); /* MSI-X used */ 745 mlxsw_cmd_mbox_sw2hw_eq_st_set(mbox, 1); /* armed */ 746 mlxsw_cmd_mbox_sw2hw_eq_log_eq_size_set(mbox, ilog2(q->count)); 747 for (i = 0; i < MLXSW_PCI_AQ_PAGES; i++) { 748 dma_addr_t mapaddr = __mlxsw_pci_queue_page_get(q, i); 749 750 mlxsw_cmd_mbox_sw2hw_eq_pa_set(mbox, i, mapaddr); 751 } 752 err = mlxsw_cmd_sw2hw_eq(mlxsw_pci->core, mbox, q->num); 753 if (err) 754 return err; 755 mlxsw_pci_queue_doorbell_consumer_ring(mlxsw_pci, q); 756 mlxsw_pci_queue_doorbell_arm_consumer_ring(mlxsw_pci, q); 757 return 0; 758 } 759 760 static void mlxsw_pci_eq_fini(struct mlxsw_pci *mlxsw_pci, 761 struct mlxsw_pci_queue *q) 762 { 763 mlxsw_cmd_hw2sw_eq(mlxsw_pci->core, q->num); 764 } 765 766 static void mlxsw_pci_eq_cmd_event(struct mlxsw_pci *mlxsw_pci, char *eqe) 767 { 768 mlxsw_pci->cmd.comp.status = mlxsw_pci_eqe_cmd_status_get(eqe); 769 mlxsw_pci->cmd.comp.out_param = 770 ((u64) mlxsw_pci_eqe_cmd_out_param_h_get(eqe)) << 32 | 771 mlxsw_pci_eqe_cmd_out_param_l_get(eqe); 772 mlxsw_pci->cmd.wait_done = true; 773 wake_up(&mlxsw_pci->cmd.wait); 774 } 775 776 static char *mlxsw_pci_eq_sw_eqe_get(struct mlxsw_pci_queue *q) 777 { 778 struct mlxsw_pci_queue_elem_info *elem_info; 779 char *elem; 780 bool owner_bit; 781 782 elem_info = mlxsw_pci_queue_elem_info_consumer_get(q); 783 elem = elem_info->elem; 784 owner_bit = mlxsw_pci_eqe_owner_get(elem); 785 if (mlxsw_pci_elem_hw_owned(q, owner_bit)) 786 return NULL; 787 q->consumer_counter++; 788 rmb(); /* make sure we read owned bit before the rest of elem */ 789 return elem; 790 } 791 792 static void mlxsw_pci_eq_tasklet(struct tasklet_struct *t) 793 { 794 struct mlxsw_pci_queue *q = from_tasklet(q, t, tasklet); 795 struct mlxsw_pci *mlxsw_pci = q->pci; 796 u8 cq_count = mlxsw_pci_cq_count(mlxsw_pci); 797 unsigned long active_cqns[BITS_TO_LONGS(MLXSW_PCI_CQS_MAX)]; 798 char *eqe; 799 u8 cqn; 800 bool cq_handle = false; 801 int items = 0; 802 int credits = q->count >> 1; 803 804 memset(&active_cqns, 0, sizeof(active_cqns)); 805 806 while ((eqe = mlxsw_pci_eq_sw_eqe_get(q))) { 807 808 /* Command interface completion events are always received on 809 * queue MLXSW_PCI_EQ_ASYNC_NUM (EQ0) and completion events 810 * are mapped to queue MLXSW_PCI_EQ_COMP_NUM (EQ1). 811 */ 812 switch (q->num) { 813 case MLXSW_PCI_EQ_ASYNC_NUM: 814 mlxsw_pci_eq_cmd_event(mlxsw_pci, eqe); 815 q->u.eq.ev_cmd_count++; 816 break; 817 case MLXSW_PCI_EQ_COMP_NUM: 818 cqn = mlxsw_pci_eqe_cqn_get(eqe); 819 set_bit(cqn, active_cqns); 820 cq_handle = true; 821 q->u.eq.ev_comp_count++; 822 break; 823 default: 824 q->u.eq.ev_other_count++; 825 } 826 if (++items == credits) 827 break; 828 } 829 if (items) { 830 mlxsw_pci_queue_doorbell_consumer_ring(mlxsw_pci, q); 831 mlxsw_pci_queue_doorbell_arm_consumer_ring(mlxsw_pci, q); 832 } 833 834 if (!cq_handle) 835 return; 836 for_each_set_bit(cqn, active_cqns, cq_count) { 837 q = mlxsw_pci_cq_get(mlxsw_pci, cqn); 838 mlxsw_pci_queue_tasklet_schedule(q); 839 } 840 } 841 842 struct mlxsw_pci_queue_ops { 843 const char *name; 844 enum mlxsw_pci_queue_type type; 845 void (*pre_init)(struct mlxsw_pci *mlxsw_pci, 846 struct mlxsw_pci_queue *q); 847 int (*init)(struct mlxsw_pci *mlxsw_pci, char *mbox, 848 struct mlxsw_pci_queue *q); 849 void (*fini)(struct mlxsw_pci *mlxsw_pci, 850 struct mlxsw_pci_queue *q); 851 void (*tasklet)(struct tasklet_struct *t); 852 u16 (*elem_count_f)(const struct mlxsw_pci_queue *q); 853 u8 (*elem_size_f)(const struct mlxsw_pci_queue *q); 854 u16 elem_count; 855 u8 elem_size; 856 }; 857 858 static const struct mlxsw_pci_queue_ops mlxsw_pci_sdq_ops = { 859 .type = MLXSW_PCI_QUEUE_TYPE_SDQ, 860 .init = mlxsw_pci_sdq_init, 861 .fini = mlxsw_pci_sdq_fini, 862 .elem_count = MLXSW_PCI_WQE_COUNT, 863 .elem_size = MLXSW_PCI_WQE_SIZE, 864 }; 865 866 static const struct mlxsw_pci_queue_ops mlxsw_pci_rdq_ops = { 867 .type = MLXSW_PCI_QUEUE_TYPE_RDQ, 868 .init = mlxsw_pci_rdq_init, 869 .fini = mlxsw_pci_rdq_fini, 870 .elem_count = MLXSW_PCI_WQE_COUNT, 871 .elem_size = MLXSW_PCI_WQE_SIZE 872 }; 873 874 static const struct mlxsw_pci_queue_ops mlxsw_pci_cq_ops = { 875 .type = MLXSW_PCI_QUEUE_TYPE_CQ, 876 .pre_init = mlxsw_pci_cq_pre_init, 877 .init = mlxsw_pci_cq_init, 878 .fini = mlxsw_pci_cq_fini, 879 .tasklet = mlxsw_pci_cq_tasklet, 880 .elem_count_f = mlxsw_pci_cq_elem_count, 881 .elem_size_f = mlxsw_pci_cq_elem_size 882 }; 883 884 static const struct mlxsw_pci_queue_ops mlxsw_pci_eq_ops = { 885 .type = MLXSW_PCI_QUEUE_TYPE_EQ, 886 .init = mlxsw_pci_eq_init, 887 .fini = mlxsw_pci_eq_fini, 888 .tasklet = mlxsw_pci_eq_tasklet, 889 .elem_count = MLXSW_PCI_EQE_COUNT, 890 .elem_size = MLXSW_PCI_EQE_SIZE 891 }; 892 893 static int mlxsw_pci_queue_init(struct mlxsw_pci *mlxsw_pci, char *mbox, 894 const struct mlxsw_pci_queue_ops *q_ops, 895 struct mlxsw_pci_queue *q, u8 q_num) 896 { 897 struct mlxsw_pci_mem_item *mem_item = &q->mem_item; 898 int i; 899 int err; 900 901 q->num = q_num; 902 if (q_ops->pre_init) 903 q_ops->pre_init(mlxsw_pci, q); 904 905 spin_lock_init(&q->lock); 906 q->count = q_ops->elem_count_f ? q_ops->elem_count_f(q) : 907 q_ops->elem_count; 908 q->elem_size = q_ops->elem_size_f ? q_ops->elem_size_f(q) : 909 q_ops->elem_size; 910 q->type = q_ops->type; 911 q->pci = mlxsw_pci; 912 913 if (q_ops->tasklet) 914 tasklet_setup(&q->tasklet, q_ops->tasklet); 915 916 mem_item->size = MLXSW_PCI_AQ_SIZE; 917 mem_item->buf = dma_alloc_coherent(&mlxsw_pci->pdev->dev, 918 mem_item->size, &mem_item->mapaddr, 919 GFP_KERNEL); 920 if (!mem_item->buf) 921 return -ENOMEM; 922 923 q->elem_info = kcalloc(q->count, sizeof(*q->elem_info), GFP_KERNEL); 924 if (!q->elem_info) { 925 err = -ENOMEM; 926 goto err_elem_info_alloc; 927 } 928 929 /* Initialize dma mapped elements info elem_info for 930 * future easy access. 931 */ 932 for (i = 0; i < q->count; i++) { 933 struct mlxsw_pci_queue_elem_info *elem_info; 934 935 elem_info = mlxsw_pci_queue_elem_info_get(q, i); 936 elem_info->elem = 937 __mlxsw_pci_queue_elem_get(q, q->elem_size, i); 938 } 939 940 mlxsw_cmd_mbox_zero(mbox); 941 err = q_ops->init(mlxsw_pci, mbox, q); 942 if (err) 943 goto err_q_ops_init; 944 return 0; 945 946 err_q_ops_init: 947 kfree(q->elem_info); 948 err_elem_info_alloc: 949 dma_free_coherent(&mlxsw_pci->pdev->dev, mem_item->size, 950 mem_item->buf, mem_item->mapaddr); 951 return err; 952 } 953 954 static void mlxsw_pci_queue_fini(struct mlxsw_pci *mlxsw_pci, 955 const struct mlxsw_pci_queue_ops *q_ops, 956 struct mlxsw_pci_queue *q) 957 { 958 struct mlxsw_pci_mem_item *mem_item = &q->mem_item; 959 960 q_ops->fini(mlxsw_pci, q); 961 kfree(q->elem_info); 962 dma_free_coherent(&mlxsw_pci->pdev->dev, mem_item->size, 963 mem_item->buf, mem_item->mapaddr); 964 } 965 966 static int mlxsw_pci_queue_group_init(struct mlxsw_pci *mlxsw_pci, char *mbox, 967 const struct mlxsw_pci_queue_ops *q_ops, 968 u8 num_qs) 969 { 970 struct mlxsw_pci_queue_type_group *queue_group; 971 int i; 972 int err; 973 974 queue_group = mlxsw_pci_queue_type_group_get(mlxsw_pci, q_ops->type); 975 queue_group->q = kcalloc(num_qs, sizeof(*queue_group->q), GFP_KERNEL); 976 if (!queue_group->q) 977 return -ENOMEM; 978 979 for (i = 0; i < num_qs; i++) { 980 err = mlxsw_pci_queue_init(mlxsw_pci, mbox, q_ops, 981 &queue_group->q[i], i); 982 if (err) 983 goto err_queue_init; 984 } 985 queue_group->count = num_qs; 986 987 return 0; 988 989 err_queue_init: 990 for (i--; i >= 0; i--) 991 mlxsw_pci_queue_fini(mlxsw_pci, q_ops, &queue_group->q[i]); 992 kfree(queue_group->q); 993 return err; 994 } 995 996 static void mlxsw_pci_queue_group_fini(struct mlxsw_pci *mlxsw_pci, 997 const struct mlxsw_pci_queue_ops *q_ops) 998 { 999 struct mlxsw_pci_queue_type_group *queue_group; 1000 int i; 1001 1002 queue_group = mlxsw_pci_queue_type_group_get(mlxsw_pci, q_ops->type); 1003 for (i = 0; i < queue_group->count; i++) 1004 mlxsw_pci_queue_fini(mlxsw_pci, q_ops, &queue_group->q[i]); 1005 kfree(queue_group->q); 1006 } 1007 1008 static int mlxsw_pci_aqs_init(struct mlxsw_pci *mlxsw_pci, char *mbox) 1009 { 1010 struct pci_dev *pdev = mlxsw_pci->pdev; 1011 u8 num_sdqs; 1012 u8 sdq_log2sz; 1013 u8 num_rdqs; 1014 u8 rdq_log2sz; 1015 u8 num_cqs; 1016 u8 cq_log2sz; 1017 u8 cqv2_log2sz; 1018 u8 num_eqs; 1019 u8 eq_log2sz; 1020 int err; 1021 1022 mlxsw_cmd_mbox_zero(mbox); 1023 err = mlxsw_cmd_query_aq_cap(mlxsw_pci->core, mbox); 1024 if (err) 1025 return err; 1026 1027 num_sdqs = mlxsw_cmd_mbox_query_aq_cap_max_num_sdqs_get(mbox); 1028 sdq_log2sz = mlxsw_cmd_mbox_query_aq_cap_log_max_sdq_sz_get(mbox); 1029 num_rdqs = mlxsw_cmd_mbox_query_aq_cap_max_num_rdqs_get(mbox); 1030 rdq_log2sz = mlxsw_cmd_mbox_query_aq_cap_log_max_rdq_sz_get(mbox); 1031 num_cqs = mlxsw_cmd_mbox_query_aq_cap_max_num_cqs_get(mbox); 1032 cq_log2sz = mlxsw_cmd_mbox_query_aq_cap_log_max_cq_sz_get(mbox); 1033 cqv2_log2sz = mlxsw_cmd_mbox_query_aq_cap_log_max_cqv2_sz_get(mbox); 1034 num_eqs = mlxsw_cmd_mbox_query_aq_cap_max_num_eqs_get(mbox); 1035 eq_log2sz = mlxsw_cmd_mbox_query_aq_cap_log_max_eq_sz_get(mbox); 1036 1037 if (num_sdqs + num_rdqs > num_cqs || 1038 num_sdqs < MLXSW_PCI_SDQS_MIN || 1039 num_cqs > MLXSW_PCI_CQS_MAX || num_eqs != MLXSW_PCI_EQS_COUNT) { 1040 dev_err(&pdev->dev, "Unsupported number of queues\n"); 1041 return -EINVAL; 1042 } 1043 1044 if ((1 << sdq_log2sz != MLXSW_PCI_WQE_COUNT) || 1045 (1 << rdq_log2sz != MLXSW_PCI_WQE_COUNT) || 1046 (1 << cq_log2sz != MLXSW_PCI_CQE01_COUNT) || 1047 (mlxsw_pci->max_cqe_ver == MLXSW_PCI_CQE_V2 && 1048 (1 << cqv2_log2sz != MLXSW_PCI_CQE2_COUNT)) || 1049 (1 << eq_log2sz != MLXSW_PCI_EQE_COUNT)) { 1050 dev_err(&pdev->dev, "Unsupported number of async queue descriptors\n"); 1051 return -EINVAL; 1052 } 1053 1054 mlxsw_pci->num_sdq_cqs = num_sdqs; 1055 1056 err = mlxsw_pci_queue_group_init(mlxsw_pci, mbox, &mlxsw_pci_eq_ops, 1057 num_eqs); 1058 if (err) { 1059 dev_err(&pdev->dev, "Failed to initialize event queues\n"); 1060 return err; 1061 } 1062 1063 err = mlxsw_pci_queue_group_init(mlxsw_pci, mbox, &mlxsw_pci_cq_ops, 1064 num_cqs); 1065 if (err) { 1066 dev_err(&pdev->dev, "Failed to initialize completion queues\n"); 1067 goto err_cqs_init; 1068 } 1069 1070 err = mlxsw_pci_queue_group_init(mlxsw_pci, mbox, &mlxsw_pci_sdq_ops, 1071 num_sdqs); 1072 if (err) { 1073 dev_err(&pdev->dev, "Failed to initialize send descriptor queues\n"); 1074 goto err_sdqs_init; 1075 } 1076 1077 err = mlxsw_pci_queue_group_init(mlxsw_pci, mbox, &mlxsw_pci_rdq_ops, 1078 num_rdqs); 1079 if (err) { 1080 dev_err(&pdev->dev, "Failed to initialize receive descriptor queues\n"); 1081 goto err_rdqs_init; 1082 } 1083 1084 /* We have to poll in command interface until queues are initialized */ 1085 mlxsw_pci->cmd.nopoll = true; 1086 return 0; 1087 1088 err_rdqs_init: 1089 mlxsw_pci_queue_group_fini(mlxsw_pci, &mlxsw_pci_sdq_ops); 1090 err_sdqs_init: 1091 mlxsw_pci_queue_group_fini(mlxsw_pci, &mlxsw_pci_cq_ops); 1092 err_cqs_init: 1093 mlxsw_pci_queue_group_fini(mlxsw_pci, &mlxsw_pci_eq_ops); 1094 return err; 1095 } 1096 1097 static void mlxsw_pci_aqs_fini(struct mlxsw_pci *mlxsw_pci) 1098 { 1099 mlxsw_pci->cmd.nopoll = false; 1100 mlxsw_pci_queue_group_fini(mlxsw_pci, &mlxsw_pci_rdq_ops); 1101 mlxsw_pci_queue_group_fini(mlxsw_pci, &mlxsw_pci_sdq_ops); 1102 mlxsw_pci_queue_group_fini(mlxsw_pci, &mlxsw_pci_cq_ops); 1103 mlxsw_pci_queue_group_fini(mlxsw_pci, &mlxsw_pci_eq_ops); 1104 } 1105 1106 static void 1107 mlxsw_pci_config_profile_swid_config(struct mlxsw_pci *mlxsw_pci, 1108 char *mbox, int index, 1109 const struct mlxsw_swid_config *swid) 1110 { 1111 u8 mask = 0; 1112 1113 if (swid->used_type) { 1114 mlxsw_cmd_mbox_config_profile_swid_config_type_set( 1115 mbox, index, swid->type); 1116 mask |= 1; 1117 } 1118 if (swid->used_properties) { 1119 mlxsw_cmd_mbox_config_profile_swid_config_properties_set( 1120 mbox, index, swid->properties); 1121 mask |= 2; 1122 } 1123 mlxsw_cmd_mbox_config_profile_swid_config_mask_set(mbox, index, mask); 1124 } 1125 1126 static int 1127 mlxsw_pci_profile_get_kvd_sizes(const struct mlxsw_pci *mlxsw_pci, 1128 const struct mlxsw_config_profile *profile, 1129 struct mlxsw_res *res) 1130 { 1131 u64 single_size, double_size, linear_size; 1132 int err; 1133 1134 err = mlxsw_core_kvd_sizes_get(mlxsw_pci->core, profile, 1135 &single_size, &double_size, 1136 &linear_size); 1137 if (err) 1138 return err; 1139 1140 MLXSW_RES_SET(res, KVD_SINGLE_SIZE, single_size); 1141 MLXSW_RES_SET(res, KVD_DOUBLE_SIZE, double_size); 1142 MLXSW_RES_SET(res, KVD_LINEAR_SIZE, linear_size); 1143 1144 return 0; 1145 } 1146 1147 static int mlxsw_pci_config_profile(struct mlxsw_pci *mlxsw_pci, char *mbox, 1148 const struct mlxsw_config_profile *profile, 1149 struct mlxsw_res *res) 1150 { 1151 int i; 1152 int err; 1153 1154 mlxsw_cmd_mbox_zero(mbox); 1155 1156 if (profile->used_max_vepa_channels) { 1157 mlxsw_cmd_mbox_config_profile_set_max_vepa_channels_set( 1158 mbox, 1); 1159 mlxsw_cmd_mbox_config_profile_max_vepa_channels_set( 1160 mbox, profile->max_vepa_channels); 1161 } 1162 if (profile->used_max_mid) { 1163 mlxsw_cmd_mbox_config_profile_set_max_mid_set( 1164 mbox, 1); 1165 mlxsw_cmd_mbox_config_profile_max_mid_set( 1166 mbox, profile->max_mid); 1167 } 1168 if (profile->used_max_pgt) { 1169 mlxsw_cmd_mbox_config_profile_set_max_pgt_set( 1170 mbox, 1); 1171 mlxsw_cmd_mbox_config_profile_max_pgt_set( 1172 mbox, profile->max_pgt); 1173 } 1174 if (profile->used_max_system_port) { 1175 mlxsw_cmd_mbox_config_profile_set_max_system_port_set( 1176 mbox, 1); 1177 mlxsw_cmd_mbox_config_profile_max_system_port_set( 1178 mbox, profile->max_system_port); 1179 } 1180 if (profile->used_max_vlan_groups) { 1181 mlxsw_cmd_mbox_config_profile_set_max_vlan_groups_set( 1182 mbox, 1); 1183 mlxsw_cmd_mbox_config_profile_max_vlan_groups_set( 1184 mbox, profile->max_vlan_groups); 1185 } 1186 if (profile->used_max_regions) { 1187 mlxsw_cmd_mbox_config_profile_set_max_regions_set( 1188 mbox, 1); 1189 mlxsw_cmd_mbox_config_profile_max_regions_set( 1190 mbox, profile->max_regions); 1191 } 1192 if (profile->used_flood_tables) { 1193 mlxsw_cmd_mbox_config_profile_set_flood_tables_set( 1194 mbox, 1); 1195 mlxsw_cmd_mbox_config_profile_max_flood_tables_set( 1196 mbox, profile->max_flood_tables); 1197 mlxsw_cmd_mbox_config_profile_max_vid_flood_tables_set( 1198 mbox, profile->max_vid_flood_tables); 1199 mlxsw_cmd_mbox_config_profile_max_fid_offset_flood_tables_set( 1200 mbox, profile->max_fid_offset_flood_tables); 1201 mlxsw_cmd_mbox_config_profile_fid_offset_flood_table_size_set( 1202 mbox, profile->fid_offset_flood_table_size); 1203 mlxsw_cmd_mbox_config_profile_max_fid_flood_tables_set( 1204 mbox, profile->max_fid_flood_tables); 1205 mlxsw_cmd_mbox_config_profile_fid_flood_table_size_set( 1206 mbox, profile->fid_flood_table_size); 1207 } 1208 if (profile->used_flood_mode) { 1209 mlxsw_cmd_mbox_config_profile_set_flood_mode_set( 1210 mbox, 1); 1211 mlxsw_cmd_mbox_config_profile_flood_mode_set( 1212 mbox, profile->flood_mode); 1213 } 1214 if (profile->used_max_ib_mc) { 1215 mlxsw_cmd_mbox_config_profile_set_max_ib_mc_set( 1216 mbox, 1); 1217 mlxsw_cmd_mbox_config_profile_max_ib_mc_set( 1218 mbox, profile->max_ib_mc); 1219 } 1220 if (profile->used_max_pkey) { 1221 mlxsw_cmd_mbox_config_profile_set_max_pkey_set( 1222 mbox, 1); 1223 mlxsw_cmd_mbox_config_profile_max_pkey_set( 1224 mbox, profile->max_pkey); 1225 } 1226 if (profile->used_ar_sec) { 1227 mlxsw_cmd_mbox_config_profile_set_ar_sec_set( 1228 mbox, 1); 1229 mlxsw_cmd_mbox_config_profile_ar_sec_set( 1230 mbox, profile->ar_sec); 1231 } 1232 if (profile->used_adaptive_routing_group_cap) { 1233 mlxsw_cmd_mbox_config_profile_set_adaptive_routing_group_cap_set( 1234 mbox, 1); 1235 mlxsw_cmd_mbox_config_profile_adaptive_routing_group_cap_set( 1236 mbox, profile->adaptive_routing_group_cap); 1237 } 1238 if (profile->used_kvd_sizes && MLXSW_RES_VALID(res, KVD_SIZE)) { 1239 err = mlxsw_pci_profile_get_kvd_sizes(mlxsw_pci, profile, res); 1240 if (err) 1241 return err; 1242 1243 mlxsw_cmd_mbox_config_profile_set_kvd_linear_size_set(mbox, 1); 1244 mlxsw_cmd_mbox_config_profile_kvd_linear_size_set(mbox, 1245 MLXSW_RES_GET(res, KVD_LINEAR_SIZE)); 1246 mlxsw_cmd_mbox_config_profile_set_kvd_hash_single_size_set(mbox, 1247 1); 1248 mlxsw_cmd_mbox_config_profile_kvd_hash_single_size_set(mbox, 1249 MLXSW_RES_GET(res, KVD_SINGLE_SIZE)); 1250 mlxsw_cmd_mbox_config_profile_set_kvd_hash_double_size_set( 1251 mbox, 1); 1252 mlxsw_cmd_mbox_config_profile_kvd_hash_double_size_set(mbox, 1253 MLXSW_RES_GET(res, KVD_DOUBLE_SIZE)); 1254 } 1255 1256 for (i = 0; i < MLXSW_CONFIG_PROFILE_SWID_COUNT; i++) 1257 mlxsw_pci_config_profile_swid_config(mlxsw_pci, mbox, i, 1258 &profile->swid_config[i]); 1259 1260 if (mlxsw_pci->max_cqe_ver > MLXSW_PCI_CQE_V0) { 1261 mlxsw_cmd_mbox_config_profile_set_cqe_version_set(mbox, 1); 1262 mlxsw_cmd_mbox_config_profile_cqe_version_set(mbox, 1); 1263 } 1264 1265 return mlxsw_cmd_config_profile_set(mlxsw_pci->core, mbox); 1266 } 1267 1268 static int mlxsw_pci_boardinfo(struct mlxsw_pci *mlxsw_pci, char *mbox) 1269 { 1270 struct mlxsw_bus_info *bus_info = &mlxsw_pci->bus_info; 1271 int err; 1272 1273 mlxsw_cmd_mbox_zero(mbox); 1274 err = mlxsw_cmd_boardinfo(mlxsw_pci->core, mbox); 1275 if (err) 1276 return err; 1277 mlxsw_cmd_mbox_boardinfo_vsd_memcpy_from(mbox, bus_info->vsd); 1278 mlxsw_cmd_mbox_boardinfo_psid_memcpy_from(mbox, bus_info->psid); 1279 return 0; 1280 } 1281 1282 static int mlxsw_pci_fw_area_init(struct mlxsw_pci *mlxsw_pci, char *mbox, 1283 u16 num_pages) 1284 { 1285 struct mlxsw_pci_mem_item *mem_item; 1286 int nent = 0; 1287 int i; 1288 int err; 1289 1290 mlxsw_pci->fw_area.items = kcalloc(num_pages, sizeof(*mem_item), 1291 GFP_KERNEL); 1292 if (!mlxsw_pci->fw_area.items) 1293 return -ENOMEM; 1294 mlxsw_pci->fw_area.count = num_pages; 1295 1296 mlxsw_cmd_mbox_zero(mbox); 1297 for (i = 0; i < num_pages; i++) { 1298 mem_item = &mlxsw_pci->fw_area.items[i]; 1299 1300 mem_item->size = MLXSW_PCI_PAGE_SIZE; 1301 mem_item->buf = dma_alloc_coherent(&mlxsw_pci->pdev->dev, 1302 mem_item->size, 1303 &mem_item->mapaddr, GFP_KERNEL); 1304 if (!mem_item->buf) { 1305 err = -ENOMEM; 1306 goto err_alloc; 1307 } 1308 mlxsw_cmd_mbox_map_fa_pa_set(mbox, nent, mem_item->mapaddr); 1309 mlxsw_cmd_mbox_map_fa_log2size_set(mbox, nent, 0); /* 1 page */ 1310 if (++nent == MLXSW_CMD_MAP_FA_VPM_ENTRIES_MAX) { 1311 err = mlxsw_cmd_map_fa(mlxsw_pci->core, mbox, nent); 1312 if (err) 1313 goto err_cmd_map_fa; 1314 nent = 0; 1315 mlxsw_cmd_mbox_zero(mbox); 1316 } 1317 } 1318 1319 if (nent) { 1320 err = mlxsw_cmd_map_fa(mlxsw_pci->core, mbox, nent); 1321 if (err) 1322 goto err_cmd_map_fa; 1323 } 1324 1325 return 0; 1326 1327 err_cmd_map_fa: 1328 err_alloc: 1329 for (i--; i >= 0; i--) { 1330 mem_item = &mlxsw_pci->fw_area.items[i]; 1331 1332 dma_free_coherent(&mlxsw_pci->pdev->dev, mem_item->size, 1333 mem_item->buf, mem_item->mapaddr); 1334 } 1335 kfree(mlxsw_pci->fw_area.items); 1336 return err; 1337 } 1338 1339 static void mlxsw_pci_fw_area_fini(struct mlxsw_pci *mlxsw_pci) 1340 { 1341 struct mlxsw_pci_mem_item *mem_item; 1342 int i; 1343 1344 mlxsw_cmd_unmap_fa(mlxsw_pci->core); 1345 1346 for (i = 0; i < mlxsw_pci->fw_area.count; i++) { 1347 mem_item = &mlxsw_pci->fw_area.items[i]; 1348 1349 dma_free_coherent(&mlxsw_pci->pdev->dev, mem_item->size, 1350 mem_item->buf, mem_item->mapaddr); 1351 } 1352 kfree(mlxsw_pci->fw_area.items); 1353 } 1354 1355 static irqreturn_t mlxsw_pci_eq_irq_handler(int irq, void *dev_id) 1356 { 1357 struct mlxsw_pci *mlxsw_pci = dev_id; 1358 struct mlxsw_pci_queue *q; 1359 int i; 1360 1361 for (i = 0; i < MLXSW_PCI_EQS_COUNT; i++) { 1362 q = mlxsw_pci_eq_get(mlxsw_pci, i); 1363 mlxsw_pci_queue_tasklet_schedule(q); 1364 } 1365 return IRQ_HANDLED; 1366 } 1367 1368 static int mlxsw_pci_mbox_alloc(struct mlxsw_pci *mlxsw_pci, 1369 struct mlxsw_pci_mem_item *mbox) 1370 { 1371 struct pci_dev *pdev = mlxsw_pci->pdev; 1372 int err = 0; 1373 1374 mbox->size = MLXSW_CMD_MBOX_SIZE; 1375 mbox->buf = dma_alloc_coherent(&pdev->dev, MLXSW_CMD_MBOX_SIZE, 1376 &mbox->mapaddr, GFP_KERNEL); 1377 if (!mbox->buf) { 1378 dev_err(&pdev->dev, "Failed allocating memory for mailbox\n"); 1379 err = -ENOMEM; 1380 } 1381 1382 return err; 1383 } 1384 1385 static void mlxsw_pci_mbox_free(struct mlxsw_pci *mlxsw_pci, 1386 struct mlxsw_pci_mem_item *mbox) 1387 { 1388 struct pci_dev *pdev = mlxsw_pci->pdev; 1389 1390 dma_free_coherent(&pdev->dev, MLXSW_CMD_MBOX_SIZE, mbox->buf, 1391 mbox->mapaddr); 1392 } 1393 1394 static int mlxsw_pci_sys_ready_wait(struct mlxsw_pci *mlxsw_pci, 1395 const struct pci_device_id *id, 1396 u32 *p_sys_status) 1397 { 1398 unsigned long end; 1399 u32 val; 1400 1401 /* We must wait for the HW to become responsive. */ 1402 msleep(MLXSW_PCI_SW_RESET_WAIT_MSECS); 1403 1404 end = jiffies + msecs_to_jiffies(MLXSW_PCI_SW_RESET_TIMEOUT_MSECS); 1405 do { 1406 val = mlxsw_pci_read32(mlxsw_pci, FW_READY); 1407 if ((val & MLXSW_PCI_FW_READY_MASK) == MLXSW_PCI_FW_READY_MAGIC) 1408 return 0; 1409 cond_resched(); 1410 } while (time_before(jiffies, end)); 1411 1412 *p_sys_status = val & MLXSW_PCI_FW_READY_MASK; 1413 1414 return -EBUSY; 1415 } 1416 1417 static int mlxsw_pci_sw_reset(struct mlxsw_pci *mlxsw_pci, 1418 const struct pci_device_id *id) 1419 { 1420 struct pci_dev *pdev = mlxsw_pci->pdev; 1421 char mrsr_pl[MLXSW_REG_MRSR_LEN]; 1422 u32 sys_status; 1423 int err; 1424 1425 err = mlxsw_pci_sys_ready_wait(mlxsw_pci, id, &sys_status); 1426 if (err) { 1427 dev_err(&pdev->dev, "Failed to reach system ready status before reset. Status is 0x%x\n", 1428 sys_status); 1429 return err; 1430 } 1431 1432 mlxsw_reg_mrsr_pack(mrsr_pl); 1433 err = mlxsw_reg_write(mlxsw_pci->core, MLXSW_REG(mrsr), mrsr_pl); 1434 if (err) 1435 return err; 1436 1437 err = mlxsw_pci_sys_ready_wait(mlxsw_pci, id, &sys_status); 1438 if (err) { 1439 dev_err(&pdev->dev, "Failed to reach system ready status after reset. Status is 0x%x\n", 1440 sys_status); 1441 return err; 1442 } 1443 1444 return 0; 1445 } 1446 1447 static int mlxsw_pci_alloc_irq_vectors(struct mlxsw_pci *mlxsw_pci) 1448 { 1449 int err; 1450 1451 err = pci_alloc_irq_vectors(mlxsw_pci->pdev, 1, 1, PCI_IRQ_MSIX); 1452 if (err < 0) 1453 dev_err(&mlxsw_pci->pdev->dev, "MSI-X init failed\n"); 1454 return err; 1455 } 1456 1457 static void mlxsw_pci_free_irq_vectors(struct mlxsw_pci *mlxsw_pci) 1458 { 1459 pci_free_irq_vectors(mlxsw_pci->pdev); 1460 } 1461 1462 static int mlxsw_pci_init(void *bus_priv, struct mlxsw_core *mlxsw_core, 1463 const struct mlxsw_config_profile *profile, 1464 struct mlxsw_res *res) 1465 { 1466 struct mlxsw_pci *mlxsw_pci = bus_priv; 1467 struct pci_dev *pdev = mlxsw_pci->pdev; 1468 char *mbox; 1469 u16 num_pages; 1470 int err; 1471 1472 mlxsw_pci->core = mlxsw_core; 1473 1474 mbox = mlxsw_cmd_mbox_alloc(); 1475 if (!mbox) 1476 return -ENOMEM; 1477 1478 err = mlxsw_pci_sw_reset(mlxsw_pci, mlxsw_pci->id); 1479 if (err) 1480 goto err_sw_reset; 1481 1482 err = mlxsw_pci_alloc_irq_vectors(mlxsw_pci); 1483 if (err < 0) { 1484 dev_err(&pdev->dev, "MSI-X init failed\n"); 1485 goto err_alloc_irq; 1486 } 1487 1488 err = mlxsw_cmd_query_fw(mlxsw_core, mbox); 1489 if (err) 1490 goto err_query_fw; 1491 1492 mlxsw_pci->bus_info.fw_rev.major = 1493 mlxsw_cmd_mbox_query_fw_fw_rev_major_get(mbox); 1494 mlxsw_pci->bus_info.fw_rev.minor = 1495 mlxsw_cmd_mbox_query_fw_fw_rev_minor_get(mbox); 1496 mlxsw_pci->bus_info.fw_rev.subminor = 1497 mlxsw_cmd_mbox_query_fw_fw_rev_subminor_get(mbox); 1498 1499 if (mlxsw_cmd_mbox_query_fw_cmd_interface_rev_get(mbox) != 1) { 1500 dev_err(&pdev->dev, "Unsupported cmd interface revision ID queried from hw\n"); 1501 err = -EINVAL; 1502 goto err_iface_rev; 1503 } 1504 if (mlxsw_cmd_mbox_query_fw_doorbell_page_bar_get(mbox) != 0) { 1505 dev_err(&pdev->dev, "Unsupported doorbell page bar queried from hw\n"); 1506 err = -EINVAL; 1507 goto err_doorbell_page_bar; 1508 } 1509 1510 mlxsw_pci->doorbell_offset = 1511 mlxsw_cmd_mbox_query_fw_doorbell_page_offset_get(mbox); 1512 1513 if (mlxsw_cmd_mbox_query_fw_fr_rn_clk_bar_get(mbox) != 0) { 1514 dev_err(&pdev->dev, "Unsupported free running clock BAR queried from hw\n"); 1515 err = -EINVAL; 1516 goto err_fr_rn_clk_bar; 1517 } 1518 1519 mlxsw_pci->free_running_clock_offset = 1520 mlxsw_cmd_mbox_query_fw_free_running_clock_offset_get(mbox); 1521 1522 num_pages = mlxsw_cmd_mbox_query_fw_fw_pages_get(mbox); 1523 err = mlxsw_pci_fw_area_init(mlxsw_pci, mbox, num_pages); 1524 if (err) 1525 goto err_fw_area_init; 1526 1527 err = mlxsw_pci_boardinfo(mlxsw_pci, mbox); 1528 if (err) 1529 goto err_boardinfo; 1530 1531 err = mlxsw_core_resources_query(mlxsw_core, mbox, res); 1532 if (err) 1533 goto err_query_resources; 1534 1535 if (MLXSW_CORE_RES_VALID(mlxsw_core, CQE_V2) && 1536 MLXSW_CORE_RES_GET(mlxsw_core, CQE_V2)) 1537 mlxsw_pci->max_cqe_ver = MLXSW_PCI_CQE_V2; 1538 else if (MLXSW_CORE_RES_VALID(mlxsw_core, CQE_V1) && 1539 MLXSW_CORE_RES_GET(mlxsw_core, CQE_V1)) 1540 mlxsw_pci->max_cqe_ver = MLXSW_PCI_CQE_V1; 1541 else if ((MLXSW_CORE_RES_VALID(mlxsw_core, CQE_V0) && 1542 MLXSW_CORE_RES_GET(mlxsw_core, CQE_V0)) || 1543 !MLXSW_CORE_RES_VALID(mlxsw_core, CQE_V0)) { 1544 mlxsw_pci->max_cqe_ver = MLXSW_PCI_CQE_V0; 1545 } else { 1546 dev_err(&pdev->dev, "Invalid supported CQE version combination reported\n"); 1547 goto err_cqe_v_check; 1548 } 1549 1550 err = mlxsw_pci_config_profile(mlxsw_pci, mbox, profile, res); 1551 if (err) 1552 goto err_config_profile; 1553 1554 /* Some resources depend on unified bridge model, which is configured 1555 * as part of config_profile. Query the resources again to get correct 1556 * values. 1557 */ 1558 err = mlxsw_core_resources_query(mlxsw_core, mbox, res); 1559 if (err) 1560 goto err_requery_resources; 1561 1562 err = mlxsw_pci_aqs_init(mlxsw_pci, mbox); 1563 if (err) 1564 goto err_aqs_init; 1565 1566 err = request_irq(pci_irq_vector(pdev, 0), 1567 mlxsw_pci_eq_irq_handler, 0, 1568 mlxsw_pci->bus_info.device_kind, mlxsw_pci); 1569 if (err) { 1570 dev_err(&pdev->dev, "IRQ request failed\n"); 1571 goto err_request_eq_irq; 1572 } 1573 1574 goto mbox_put; 1575 1576 err_request_eq_irq: 1577 mlxsw_pci_aqs_fini(mlxsw_pci); 1578 err_aqs_init: 1579 err_requery_resources: 1580 err_config_profile: 1581 err_cqe_v_check: 1582 err_query_resources: 1583 err_boardinfo: 1584 mlxsw_pci_fw_area_fini(mlxsw_pci); 1585 err_fw_area_init: 1586 err_fr_rn_clk_bar: 1587 err_doorbell_page_bar: 1588 err_iface_rev: 1589 err_query_fw: 1590 mlxsw_pci_free_irq_vectors(mlxsw_pci); 1591 err_alloc_irq: 1592 err_sw_reset: 1593 mbox_put: 1594 mlxsw_cmd_mbox_free(mbox); 1595 return err; 1596 } 1597 1598 static void mlxsw_pci_fini(void *bus_priv) 1599 { 1600 struct mlxsw_pci *mlxsw_pci = bus_priv; 1601 1602 free_irq(pci_irq_vector(mlxsw_pci->pdev, 0), mlxsw_pci); 1603 mlxsw_pci_aqs_fini(mlxsw_pci); 1604 mlxsw_pci_fw_area_fini(mlxsw_pci); 1605 mlxsw_pci_free_irq_vectors(mlxsw_pci); 1606 } 1607 1608 static struct mlxsw_pci_queue * 1609 mlxsw_pci_sdq_pick(struct mlxsw_pci *mlxsw_pci, 1610 const struct mlxsw_tx_info *tx_info) 1611 { 1612 u8 ctl_sdq_count = mlxsw_pci_sdq_count(mlxsw_pci) - 1; 1613 u8 sdqn; 1614 1615 if (tx_info->is_emad) { 1616 sdqn = MLXSW_PCI_SDQ_EMAD_INDEX; 1617 } else { 1618 BUILD_BUG_ON(MLXSW_PCI_SDQ_EMAD_INDEX != 0); 1619 sdqn = 1 + (tx_info->local_port % ctl_sdq_count); 1620 } 1621 1622 return mlxsw_pci_sdq_get(mlxsw_pci, sdqn); 1623 } 1624 1625 static bool mlxsw_pci_skb_transmit_busy(void *bus_priv, 1626 const struct mlxsw_tx_info *tx_info) 1627 { 1628 struct mlxsw_pci *mlxsw_pci = bus_priv; 1629 struct mlxsw_pci_queue *q = mlxsw_pci_sdq_pick(mlxsw_pci, tx_info); 1630 1631 return !mlxsw_pci_queue_elem_info_producer_get(q); 1632 } 1633 1634 static int mlxsw_pci_skb_transmit(void *bus_priv, struct sk_buff *skb, 1635 const struct mlxsw_tx_info *tx_info) 1636 { 1637 struct mlxsw_pci *mlxsw_pci = bus_priv; 1638 struct mlxsw_pci_queue *q; 1639 struct mlxsw_pci_queue_elem_info *elem_info; 1640 char *wqe; 1641 int i; 1642 int err; 1643 1644 if (skb_shinfo(skb)->nr_frags > MLXSW_PCI_WQE_SG_ENTRIES - 1) { 1645 err = skb_linearize(skb); 1646 if (err) 1647 return err; 1648 } 1649 1650 q = mlxsw_pci_sdq_pick(mlxsw_pci, tx_info); 1651 spin_lock_bh(&q->lock); 1652 elem_info = mlxsw_pci_queue_elem_info_producer_get(q); 1653 if (!elem_info) { 1654 /* queue is full */ 1655 err = -EAGAIN; 1656 goto unlock; 1657 } 1658 mlxsw_skb_cb(skb)->tx_info = *tx_info; 1659 elem_info->u.sdq.skb = skb; 1660 1661 wqe = elem_info->elem; 1662 mlxsw_pci_wqe_c_set(wqe, 1); /* always report completion */ 1663 mlxsw_pci_wqe_lp_set(wqe, 0); 1664 mlxsw_pci_wqe_type_set(wqe, MLXSW_PCI_WQE_TYPE_ETHERNET); 1665 1666 err = mlxsw_pci_wqe_frag_map(mlxsw_pci, wqe, 0, skb->data, 1667 skb_headlen(skb), DMA_TO_DEVICE); 1668 if (err) 1669 goto unlock; 1670 1671 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) { 1672 const skb_frag_t *frag = &skb_shinfo(skb)->frags[i]; 1673 1674 err = mlxsw_pci_wqe_frag_map(mlxsw_pci, wqe, i + 1, 1675 skb_frag_address(frag), 1676 skb_frag_size(frag), 1677 DMA_TO_DEVICE); 1678 if (err) 1679 goto unmap_frags; 1680 } 1681 1682 if (unlikely(skb_shinfo(skb)->tx_flags & SKBTX_HW_TSTAMP)) 1683 skb_shinfo(skb)->tx_flags |= SKBTX_IN_PROGRESS; 1684 1685 /* Set unused sq entries byte count to zero. */ 1686 for (i++; i < MLXSW_PCI_WQE_SG_ENTRIES; i++) 1687 mlxsw_pci_wqe_byte_count_set(wqe, i, 0); 1688 1689 /* Everything is set up, ring producer doorbell to get HW going */ 1690 q->producer_counter++; 1691 mlxsw_pci_queue_doorbell_producer_ring(mlxsw_pci, q); 1692 1693 goto unlock; 1694 1695 unmap_frags: 1696 for (; i >= 0; i--) 1697 mlxsw_pci_wqe_frag_unmap(mlxsw_pci, wqe, i, DMA_TO_DEVICE); 1698 unlock: 1699 spin_unlock_bh(&q->lock); 1700 return err; 1701 } 1702 1703 static int mlxsw_pci_cmd_exec(void *bus_priv, u16 opcode, u8 opcode_mod, 1704 u32 in_mod, bool out_mbox_direct, 1705 char *in_mbox, size_t in_mbox_size, 1706 char *out_mbox, size_t out_mbox_size, 1707 u8 *p_status) 1708 { 1709 struct mlxsw_pci *mlxsw_pci = bus_priv; 1710 dma_addr_t in_mapaddr = 0, out_mapaddr = 0; 1711 bool evreq = mlxsw_pci->cmd.nopoll; 1712 unsigned long timeout = msecs_to_jiffies(MLXSW_PCI_CIR_TIMEOUT_MSECS); 1713 bool *p_wait_done = &mlxsw_pci->cmd.wait_done; 1714 int err; 1715 1716 *p_status = MLXSW_CMD_STATUS_OK; 1717 1718 err = mutex_lock_interruptible(&mlxsw_pci->cmd.lock); 1719 if (err) 1720 return err; 1721 1722 if (in_mbox) { 1723 memcpy(mlxsw_pci->cmd.in_mbox.buf, in_mbox, in_mbox_size); 1724 in_mapaddr = mlxsw_pci->cmd.in_mbox.mapaddr; 1725 } 1726 mlxsw_pci_write32(mlxsw_pci, CIR_IN_PARAM_HI, upper_32_bits(in_mapaddr)); 1727 mlxsw_pci_write32(mlxsw_pci, CIR_IN_PARAM_LO, lower_32_bits(in_mapaddr)); 1728 1729 if (out_mbox) 1730 out_mapaddr = mlxsw_pci->cmd.out_mbox.mapaddr; 1731 mlxsw_pci_write32(mlxsw_pci, CIR_OUT_PARAM_HI, upper_32_bits(out_mapaddr)); 1732 mlxsw_pci_write32(mlxsw_pci, CIR_OUT_PARAM_LO, lower_32_bits(out_mapaddr)); 1733 1734 mlxsw_pci_write32(mlxsw_pci, CIR_IN_MODIFIER, in_mod); 1735 mlxsw_pci_write32(mlxsw_pci, CIR_TOKEN, 0); 1736 1737 *p_wait_done = false; 1738 1739 wmb(); /* all needs to be written before we write control register */ 1740 mlxsw_pci_write32(mlxsw_pci, CIR_CTRL, 1741 MLXSW_PCI_CIR_CTRL_GO_BIT | 1742 (evreq ? MLXSW_PCI_CIR_CTRL_EVREQ_BIT : 0) | 1743 (opcode_mod << MLXSW_PCI_CIR_CTRL_OPCODE_MOD_SHIFT) | 1744 opcode); 1745 1746 if (!evreq) { 1747 unsigned long end; 1748 1749 end = jiffies + timeout; 1750 do { 1751 u32 ctrl = mlxsw_pci_read32(mlxsw_pci, CIR_CTRL); 1752 1753 if (!(ctrl & MLXSW_PCI_CIR_CTRL_GO_BIT)) { 1754 *p_wait_done = true; 1755 *p_status = ctrl >> MLXSW_PCI_CIR_CTRL_STATUS_SHIFT; 1756 break; 1757 } 1758 cond_resched(); 1759 } while (time_before(jiffies, end)); 1760 } else { 1761 wait_event_timeout(mlxsw_pci->cmd.wait, *p_wait_done, timeout); 1762 *p_status = mlxsw_pci->cmd.comp.status; 1763 } 1764 1765 err = 0; 1766 if (*p_wait_done) { 1767 if (*p_status) 1768 err = -EIO; 1769 } else { 1770 err = -ETIMEDOUT; 1771 } 1772 1773 if (!err && out_mbox && out_mbox_direct) { 1774 /* Some commands don't use output param as address to mailbox 1775 * but they store output directly into registers. In that case, 1776 * copy registers into mbox buffer. 1777 */ 1778 __be32 tmp; 1779 1780 if (!evreq) { 1781 tmp = cpu_to_be32(mlxsw_pci_read32(mlxsw_pci, 1782 CIR_OUT_PARAM_HI)); 1783 memcpy(out_mbox, &tmp, sizeof(tmp)); 1784 tmp = cpu_to_be32(mlxsw_pci_read32(mlxsw_pci, 1785 CIR_OUT_PARAM_LO)); 1786 memcpy(out_mbox + sizeof(tmp), &tmp, sizeof(tmp)); 1787 } 1788 } else if (!err && out_mbox) { 1789 memcpy(out_mbox, mlxsw_pci->cmd.out_mbox.buf, out_mbox_size); 1790 } 1791 1792 mutex_unlock(&mlxsw_pci->cmd.lock); 1793 1794 return err; 1795 } 1796 1797 static u32 mlxsw_pci_read_frc_h(void *bus_priv) 1798 { 1799 struct mlxsw_pci *mlxsw_pci = bus_priv; 1800 u64 frc_offset; 1801 1802 frc_offset = mlxsw_pci->free_running_clock_offset; 1803 return mlxsw_pci_read32(mlxsw_pci, FREE_RUNNING_CLOCK_H(frc_offset)); 1804 } 1805 1806 static u32 mlxsw_pci_read_frc_l(void *bus_priv) 1807 { 1808 struct mlxsw_pci *mlxsw_pci = bus_priv; 1809 u64 frc_offset; 1810 1811 frc_offset = mlxsw_pci->free_running_clock_offset; 1812 return mlxsw_pci_read32(mlxsw_pci, FREE_RUNNING_CLOCK_L(frc_offset)); 1813 } 1814 1815 static const struct mlxsw_bus mlxsw_pci_bus = { 1816 .kind = "pci", 1817 .init = mlxsw_pci_init, 1818 .fini = mlxsw_pci_fini, 1819 .skb_transmit_busy = mlxsw_pci_skb_transmit_busy, 1820 .skb_transmit = mlxsw_pci_skb_transmit, 1821 .cmd_exec = mlxsw_pci_cmd_exec, 1822 .read_frc_h = mlxsw_pci_read_frc_h, 1823 .read_frc_l = mlxsw_pci_read_frc_l, 1824 .features = MLXSW_BUS_F_TXRX | MLXSW_BUS_F_RESET, 1825 }; 1826 1827 static int mlxsw_pci_cmd_init(struct mlxsw_pci *mlxsw_pci) 1828 { 1829 int err; 1830 1831 mutex_init(&mlxsw_pci->cmd.lock); 1832 init_waitqueue_head(&mlxsw_pci->cmd.wait); 1833 1834 err = mlxsw_pci_mbox_alloc(mlxsw_pci, &mlxsw_pci->cmd.in_mbox); 1835 if (err) 1836 goto err_in_mbox_alloc; 1837 1838 err = mlxsw_pci_mbox_alloc(mlxsw_pci, &mlxsw_pci->cmd.out_mbox); 1839 if (err) 1840 goto err_out_mbox_alloc; 1841 1842 return 0; 1843 1844 err_out_mbox_alloc: 1845 mlxsw_pci_mbox_free(mlxsw_pci, &mlxsw_pci->cmd.in_mbox); 1846 err_in_mbox_alloc: 1847 mutex_destroy(&mlxsw_pci->cmd.lock); 1848 return err; 1849 } 1850 1851 static void mlxsw_pci_cmd_fini(struct mlxsw_pci *mlxsw_pci) 1852 { 1853 mlxsw_pci_mbox_free(mlxsw_pci, &mlxsw_pci->cmd.out_mbox); 1854 mlxsw_pci_mbox_free(mlxsw_pci, &mlxsw_pci->cmd.in_mbox); 1855 mutex_destroy(&mlxsw_pci->cmd.lock); 1856 } 1857 1858 static int mlxsw_pci_probe(struct pci_dev *pdev, const struct pci_device_id *id) 1859 { 1860 const char *driver_name = dev_driver_string(&pdev->dev); 1861 struct mlxsw_pci *mlxsw_pci; 1862 int err; 1863 1864 mlxsw_pci = kzalloc(sizeof(*mlxsw_pci), GFP_KERNEL); 1865 if (!mlxsw_pci) 1866 return -ENOMEM; 1867 1868 err = pci_enable_device(pdev); 1869 if (err) { 1870 dev_err(&pdev->dev, "pci_enable_device failed\n"); 1871 goto err_pci_enable_device; 1872 } 1873 1874 err = pci_request_regions(pdev, driver_name); 1875 if (err) { 1876 dev_err(&pdev->dev, "pci_request_regions failed\n"); 1877 goto err_pci_request_regions; 1878 } 1879 1880 err = dma_set_mask_and_coherent(&pdev->dev, DMA_BIT_MASK(64)); 1881 if (err) { 1882 err = dma_set_mask(&pdev->dev, DMA_BIT_MASK(32)); 1883 if (err) { 1884 dev_err(&pdev->dev, "dma_set_mask failed\n"); 1885 goto err_pci_set_dma_mask; 1886 } 1887 } 1888 1889 if (pci_resource_len(pdev, 0) < MLXSW_PCI_BAR0_SIZE) { 1890 dev_err(&pdev->dev, "invalid PCI region size\n"); 1891 err = -EINVAL; 1892 goto err_pci_resource_len_check; 1893 } 1894 1895 mlxsw_pci->hw_addr = ioremap(pci_resource_start(pdev, 0), 1896 pci_resource_len(pdev, 0)); 1897 if (!mlxsw_pci->hw_addr) { 1898 dev_err(&pdev->dev, "ioremap failed\n"); 1899 err = -EIO; 1900 goto err_ioremap; 1901 } 1902 pci_set_master(pdev); 1903 1904 mlxsw_pci->pdev = pdev; 1905 pci_set_drvdata(pdev, mlxsw_pci); 1906 1907 err = mlxsw_pci_cmd_init(mlxsw_pci); 1908 if (err) 1909 goto err_pci_cmd_init; 1910 1911 mlxsw_pci->bus_info.device_kind = driver_name; 1912 mlxsw_pci->bus_info.device_name = pci_name(mlxsw_pci->pdev); 1913 mlxsw_pci->bus_info.dev = &pdev->dev; 1914 mlxsw_pci->bus_info.read_frc_capable = true; 1915 mlxsw_pci->id = id; 1916 1917 err = mlxsw_core_bus_device_register(&mlxsw_pci->bus_info, 1918 &mlxsw_pci_bus, mlxsw_pci, false, 1919 NULL, NULL); 1920 if (err) { 1921 dev_err(&pdev->dev, "cannot register bus device\n"); 1922 goto err_bus_device_register; 1923 } 1924 1925 return 0; 1926 1927 err_bus_device_register: 1928 mlxsw_pci_cmd_fini(mlxsw_pci); 1929 err_pci_cmd_init: 1930 iounmap(mlxsw_pci->hw_addr); 1931 err_ioremap: 1932 err_pci_resource_len_check: 1933 err_pci_set_dma_mask: 1934 pci_release_regions(pdev); 1935 err_pci_request_regions: 1936 pci_disable_device(pdev); 1937 err_pci_enable_device: 1938 kfree(mlxsw_pci); 1939 return err; 1940 } 1941 1942 static void mlxsw_pci_remove(struct pci_dev *pdev) 1943 { 1944 struct mlxsw_pci *mlxsw_pci = pci_get_drvdata(pdev); 1945 1946 mlxsw_core_bus_device_unregister(mlxsw_pci->core, false); 1947 mlxsw_pci_cmd_fini(mlxsw_pci); 1948 iounmap(mlxsw_pci->hw_addr); 1949 pci_release_regions(mlxsw_pci->pdev); 1950 pci_disable_device(mlxsw_pci->pdev); 1951 kfree(mlxsw_pci); 1952 } 1953 1954 int mlxsw_pci_driver_register(struct pci_driver *pci_driver) 1955 { 1956 pci_driver->probe = mlxsw_pci_probe; 1957 pci_driver->remove = mlxsw_pci_remove; 1958 pci_driver->shutdown = mlxsw_pci_remove; 1959 return pci_register_driver(pci_driver); 1960 } 1961 EXPORT_SYMBOL(mlxsw_pci_driver_register); 1962 1963 void mlxsw_pci_driver_unregister(struct pci_driver *pci_driver) 1964 { 1965 pci_unregister_driver(pci_driver); 1966 } 1967 EXPORT_SYMBOL(mlxsw_pci_driver_unregister); 1968 1969 static int __init mlxsw_pci_module_init(void) 1970 { 1971 return 0; 1972 } 1973 1974 static void __exit mlxsw_pci_module_exit(void) 1975 { 1976 } 1977 1978 module_init(mlxsw_pci_module_init); 1979 module_exit(mlxsw_pci_module_exit); 1980 1981 MODULE_LICENSE("Dual BSD/GPL"); 1982 MODULE_AUTHOR("Jiri Pirko <jiri@mellanox.com>"); 1983 MODULE_DESCRIPTION("Mellanox switch PCI interface driver"); 1984