1 /*- 2 * Copyright (c) 2013-2017, Mellanox Technologies, Ltd. All rights reserved. 3 * 4 * Redistribution and use in source and binary forms, with or without 5 * modification, are permitted provided that the following conditions 6 * are met: 7 * 1. Redistributions of source code must retain the above copyright 8 * notice, this list of conditions and the following disclaimer. 9 * 2. Redistributions in binary form must reproduce the above copyright 10 * notice, this list of conditions and the following disclaimer in the 11 * documentation and/or other materials provided with the distribution. 12 * 13 * THIS SOFTWARE IS PROVIDED BY AUTHOR AND CONTRIBUTORS `AS IS' AND 14 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 15 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 16 * ARE DISCLAIMED. IN NO EVENT SHALL AUTHOR OR CONTRIBUTORS BE LIABLE 17 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 18 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 19 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 20 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 21 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 22 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 23 * SUCH DAMAGE. 24 * 25 * $FreeBSD$ 26 */ 27 28 #ifndef MLX5_DRIVER_H 29 #define MLX5_DRIVER_H 30 31 #include "opt_ratelimit.h" 32 33 #include <linux/kernel.h> 34 #include <linux/completion.h> 35 #include <linux/pci.h> 36 #include <linux/cache.h> 37 #include <linux/rbtree.h> 38 #include <linux/if_ether.h> 39 #include <linux/semaphore.h> 40 #include <linux/slab.h> 41 #include <linux/vmalloc.h> 42 #include <linux/radix-tree.h> 43 44 #include <dev/mlx5/device.h> 45 #include <dev/mlx5/doorbell.h> 46 #include <dev/mlx5/srq.h> 47 48 #define MLX5_QCOUNTER_SETS_NETDEV 64 49 #define MLX5_MAX_NUMBER_OF_VFS 128 50 51 enum { 52 MLX5_BOARD_ID_LEN = 64, 53 MLX5_MAX_NAME_LEN = 16, 54 }; 55 56 enum { 57 MLX5_CMD_TIMEOUT_MSEC = 8 * 60 * 1000, 58 MLX5_CMD_WQ_MAX_NAME = 32, 59 }; 60 61 enum { 62 CMD_OWNER_SW = 0x0, 63 CMD_OWNER_HW = 0x1, 64 CMD_STATUS_SUCCESS = 0, 65 }; 66 67 enum mlx5_sqp_t { 68 MLX5_SQP_SMI = 0, 69 MLX5_SQP_GSI = 1, 70 MLX5_SQP_IEEE_1588 = 2, 71 MLX5_SQP_SNIFFER = 3, 72 MLX5_SQP_SYNC_UMR = 4, 73 }; 74 75 enum { 76 MLX5_MAX_PORTS = 2, 77 }; 78 79 enum { 80 MLX5_EQ_VEC_PAGES = 0, 81 MLX5_EQ_VEC_CMD = 1, 82 MLX5_EQ_VEC_ASYNC = 2, 83 MLX5_EQ_VEC_COMP_BASE, 84 }; 85 86 enum { 87 MLX5_MAX_IRQ_NAME = 32 88 }; 89 90 enum { 91 MLX5_ATOMIC_MODE_OFF = 16, 92 MLX5_ATOMIC_MODE_NONE = 0 << MLX5_ATOMIC_MODE_OFF, 93 MLX5_ATOMIC_MODE_IB_COMP = 1 << MLX5_ATOMIC_MODE_OFF, 94 MLX5_ATOMIC_MODE_CX = 2 << MLX5_ATOMIC_MODE_OFF, 95 MLX5_ATOMIC_MODE_8B = 3 << MLX5_ATOMIC_MODE_OFF, 96 MLX5_ATOMIC_MODE_16B = 4 << MLX5_ATOMIC_MODE_OFF, 97 MLX5_ATOMIC_MODE_32B = 5 << MLX5_ATOMIC_MODE_OFF, 98 MLX5_ATOMIC_MODE_64B = 6 << MLX5_ATOMIC_MODE_OFF, 99 MLX5_ATOMIC_MODE_128B = 7 << MLX5_ATOMIC_MODE_OFF, 100 MLX5_ATOMIC_MODE_256B = 8 << MLX5_ATOMIC_MODE_OFF, 101 }; 102 103 enum { 104 MLX5_ATOMIC_MODE_DCT_OFF = 20, 105 MLX5_ATOMIC_MODE_DCT_NONE = 0 << MLX5_ATOMIC_MODE_DCT_OFF, 106 MLX5_ATOMIC_MODE_DCT_IB_COMP = 1 << MLX5_ATOMIC_MODE_DCT_OFF, 107 MLX5_ATOMIC_MODE_DCT_CX = 2 << MLX5_ATOMIC_MODE_DCT_OFF, 108 MLX5_ATOMIC_MODE_DCT_8B = 3 << MLX5_ATOMIC_MODE_DCT_OFF, 109 MLX5_ATOMIC_MODE_DCT_16B = 4 << MLX5_ATOMIC_MODE_DCT_OFF, 110 MLX5_ATOMIC_MODE_DCT_32B = 5 << MLX5_ATOMIC_MODE_DCT_OFF, 111 MLX5_ATOMIC_MODE_DCT_64B = 6 << MLX5_ATOMIC_MODE_DCT_OFF, 112 MLX5_ATOMIC_MODE_DCT_128B = 7 << MLX5_ATOMIC_MODE_DCT_OFF, 113 MLX5_ATOMIC_MODE_DCT_256B = 8 << MLX5_ATOMIC_MODE_DCT_OFF, 114 }; 115 116 enum { 117 MLX5_ATOMIC_OPS_CMP_SWAP = 1 << 0, 118 MLX5_ATOMIC_OPS_FETCH_ADD = 1 << 1, 119 MLX5_ATOMIC_OPS_MASKED_CMP_SWAP = 1 << 2, 120 MLX5_ATOMIC_OPS_MASKED_FETCH_ADD = 1 << 3, 121 }; 122 123 enum { 124 MLX5_REG_QPTS = 0x4002, 125 MLX5_REG_QETCR = 0x4005, 126 MLX5_REG_QPDP = 0x4007, 127 MLX5_REG_QTCT = 0x400A, 128 MLX5_REG_QPDPM = 0x4013, 129 MLX5_REG_QHLL = 0x4016, 130 MLX5_REG_QCAM = 0x4019, 131 MLX5_REG_DCBX_PARAM = 0x4020, 132 MLX5_REG_DCBX_APP = 0x4021, 133 MLX5_REG_PCAP = 0x5001, 134 MLX5_REG_PMTU = 0x5003, 135 MLX5_REG_PTYS = 0x5004, 136 MLX5_REG_PAOS = 0x5006, 137 MLX5_REG_PFCC = 0x5007, 138 MLX5_REG_PPCNT = 0x5008, 139 MLX5_REG_PMAOS = 0x5012, 140 MLX5_REG_PUDE = 0x5009, 141 MLX5_REG_PPTB = 0x500B, 142 MLX5_REG_PBMC = 0x500C, 143 MLX5_REG_PMPE = 0x5010, 144 MLX5_REG_PELC = 0x500e, 145 MLX5_REG_PVLC = 0x500f, 146 MLX5_REG_PMLP = 0x5002, 147 MLX5_REG_NODE_DESC = 0x6001, 148 MLX5_REG_HOST_ENDIANNESS = 0x7004, 149 MLX5_REG_MCIA = 0x9014, 150 MLX5_REG_MPCNT = 0x9051, 151 }; 152 153 enum dbg_rsc_type { 154 MLX5_DBG_RSC_QP, 155 MLX5_DBG_RSC_EQ, 156 MLX5_DBG_RSC_CQ, 157 }; 158 159 enum { 160 MLX5_INTERFACE_PROTOCOL_IB = 0, 161 MLX5_INTERFACE_PROTOCOL_ETH = 1, 162 MLX5_INTERFACE_NUMBER = 2, 163 }; 164 165 struct mlx5_field_desc { 166 struct dentry *dent; 167 int i; 168 }; 169 170 struct mlx5_rsc_debug { 171 struct mlx5_core_dev *dev; 172 void *object; 173 enum dbg_rsc_type type; 174 struct dentry *root; 175 struct mlx5_field_desc fields[0]; 176 }; 177 178 enum mlx5_dev_event { 179 MLX5_DEV_EVENT_SYS_ERROR, 180 MLX5_DEV_EVENT_PORT_UP, 181 MLX5_DEV_EVENT_PORT_DOWN, 182 MLX5_DEV_EVENT_PORT_INITIALIZED, 183 MLX5_DEV_EVENT_LID_CHANGE, 184 MLX5_DEV_EVENT_PKEY_CHANGE, 185 MLX5_DEV_EVENT_GUID_CHANGE, 186 MLX5_DEV_EVENT_CLIENT_REREG, 187 MLX5_DEV_EVENT_VPORT_CHANGE, 188 MLX5_DEV_EVENT_ERROR_STATE_DCBX, 189 MLX5_DEV_EVENT_REMOTE_CONFIG_CHANGE, 190 MLX5_DEV_EVENT_LOCAL_OPER_CHANGE, 191 MLX5_DEV_EVENT_REMOTE_CONFIG_APPLICATION_PRIORITY_CHANGE, 192 }; 193 194 enum mlx5_port_status { 195 MLX5_PORT_UP = 1 << 0, 196 MLX5_PORT_DOWN = 1 << 1, 197 }; 198 199 enum mlx5_link_mode { 200 MLX5_1000BASE_CX_SGMII = 0, 201 MLX5_1000BASE_KX = 1, 202 MLX5_10GBASE_CX4 = 2, 203 MLX5_10GBASE_KX4 = 3, 204 MLX5_10GBASE_KR = 4, 205 MLX5_20GBASE_KR2 = 5, 206 MLX5_40GBASE_CR4 = 6, 207 MLX5_40GBASE_KR4 = 7, 208 MLX5_56GBASE_R4 = 8, 209 MLX5_10GBASE_CR = 12, 210 MLX5_10GBASE_SR = 13, 211 MLX5_10GBASE_ER = 14, 212 MLX5_40GBASE_SR4 = 15, 213 MLX5_40GBASE_LR4 = 16, 214 MLX5_100GBASE_CR4 = 20, 215 MLX5_100GBASE_SR4 = 21, 216 MLX5_100GBASE_KR4 = 22, 217 MLX5_100GBASE_LR4 = 23, 218 MLX5_100BASE_TX = 24, 219 MLX5_1000BASE_T = 25, 220 MLX5_10GBASE_T = 26, 221 MLX5_25GBASE_CR = 27, 222 MLX5_25GBASE_KR = 28, 223 MLX5_25GBASE_SR = 29, 224 MLX5_50GBASE_CR2 = 30, 225 MLX5_50GBASE_KR2 = 31, 226 MLX5_LINK_MODES_NUMBER, 227 }; 228 229 enum { 230 MLX5_VSC_SPACE_SUPPORTED = 0x1, 231 MLX5_VSC_SPACE_OFFSET = 0x4, 232 MLX5_VSC_COUNTER_OFFSET = 0x8, 233 MLX5_VSC_SEMA_OFFSET = 0xC, 234 MLX5_VSC_ADDR_OFFSET = 0x10, 235 MLX5_VSC_DATA_OFFSET = 0x14, 236 MLX5_VSC_MAX_RETRIES = 0x1000, 237 }; 238 239 #define MLX5_PROT_MASK(link_mode) (1 << link_mode) 240 241 struct mlx5_uuar_info { 242 struct mlx5_uar *uars; 243 int num_uars; 244 int num_low_latency_uuars; 245 unsigned long *bitmap; 246 unsigned int *count; 247 struct mlx5_bf *bfs; 248 249 /* 250 * protect uuar allocation data structs 251 */ 252 struct mutex lock; 253 u32 ver; 254 }; 255 256 struct mlx5_bf { 257 void __iomem *reg; 258 void __iomem *regreg; 259 int buf_size; 260 struct mlx5_uar *uar; 261 unsigned long offset; 262 int need_lock; 263 /* protect blue flame buffer selection when needed 264 */ 265 spinlock_t lock; 266 267 /* serialize 64 bit writes when done as two 32 bit accesses 268 */ 269 spinlock_t lock32; 270 int uuarn; 271 }; 272 273 struct mlx5_cmd_first { 274 __be32 data[4]; 275 }; 276 277 struct cache_ent; 278 struct mlx5_fw_page { 279 union { 280 struct rb_node rb_node; 281 struct list_head list; 282 }; 283 struct mlx5_cmd_first first; 284 struct mlx5_core_dev *dev; 285 bus_dmamap_t dma_map; 286 bus_addr_t dma_addr; 287 void *virt_addr; 288 struct cache_ent *cache; 289 u32 numpages; 290 u16 load_done; 291 #define MLX5_LOAD_ST_NONE 0 292 #define MLX5_LOAD_ST_SUCCESS 1 293 #define MLX5_LOAD_ST_FAILURE 2 294 u16 func_id; 295 }; 296 #define mlx5_cmd_msg mlx5_fw_page 297 298 struct mlx5_cmd_debug { 299 struct dentry *dbg_root; 300 struct dentry *dbg_in; 301 struct dentry *dbg_out; 302 struct dentry *dbg_outlen; 303 struct dentry *dbg_status; 304 struct dentry *dbg_run; 305 void *in_msg; 306 void *out_msg; 307 u8 status; 308 u16 inlen; 309 u16 outlen; 310 }; 311 312 struct cache_ent { 313 /* protect block chain allocations 314 */ 315 spinlock_t lock; 316 struct list_head head; 317 }; 318 319 struct cmd_msg_cache { 320 struct cache_ent large; 321 struct cache_ent med; 322 323 }; 324 325 struct mlx5_traffic_counter { 326 u64 packets; 327 u64 octets; 328 }; 329 330 struct mlx5_cmd_stats { 331 u64 sum; 332 u64 n; 333 struct dentry *root; 334 struct dentry *avg; 335 struct dentry *count; 336 /* protect command average calculations */ 337 spinlock_t lock; 338 }; 339 340 struct mlx5_cmd { 341 struct mlx5_fw_page *cmd_page; 342 bus_dma_tag_t dma_tag; 343 struct sx dma_sx; 344 struct mtx dma_mtx; 345 #define MLX5_DMA_OWNED(dev) mtx_owned(&(dev)->cmd.dma_mtx) 346 #define MLX5_DMA_LOCK(dev) mtx_lock(&(dev)->cmd.dma_mtx) 347 #define MLX5_DMA_UNLOCK(dev) mtx_unlock(&(dev)->cmd.dma_mtx) 348 struct cv dma_cv; 349 #define MLX5_DMA_DONE(dev) cv_broadcast(&(dev)->cmd.dma_cv) 350 #define MLX5_DMA_WAIT(dev) cv_wait(&(dev)->cmd.dma_cv, &(dev)->cmd.dma_mtx) 351 void *cmd_buf; 352 dma_addr_t dma; 353 u16 cmdif_rev; 354 u8 log_sz; 355 u8 log_stride; 356 int max_reg_cmds; 357 int events; 358 u32 __iomem *vector; 359 360 /* protect command queue allocations 361 */ 362 spinlock_t alloc_lock; 363 364 /* protect token allocations 365 */ 366 spinlock_t token_lock; 367 u8 token; 368 unsigned long bitmask; 369 char wq_name[MLX5_CMD_WQ_MAX_NAME]; 370 struct workqueue_struct *wq; 371 struct semaphore sem; 372 struct semaphore pages_sem; 373 int mode; 374 struct mlx5_cmd_work_ent *ent_arr[MLX5_MAX_COMMANDS]; 375 struct mlx5_cmd_debug dbg; 376 struct cmd_msg_cache cache; 377 int checksum_disabled; 378 struct mlx5_cmd_stats stats[MLX5_CMD_OP_MAX]; 379 }; 380 381 struct mlx5_port_caps { 382 int gid_table_len; 383 int pkey_table_len; 384 u8 ext_port_cap; 385 }; 386 387 struct mlx5_buf { 388 bus_dma_tag_t dma_tag; 389 bus_dmamap_t dma_map; 390 struct mlx5_core_dev *dev; 391 struct { 392 void *buf; 393 } direct; 394 u64 *page_list; 395 int npages; 396 int size; 397 u8 page_shift; 398 u8 load_done; 399 }; 400 401 struct mlx5_eq { 402 struct mlx5_core_dev *dev; 403 __be32 __iomem *doorbell; 404 u32 cons_index; 405 struct mlx5_buf buf; 406 int size; 407 u8 irqn; 408 u8 eqn; 409 int nent; 410 u64 mask; 411 struct list_head list; 412 int index; 413 struct mlx5_rsc_debug *dbg; 414 }; 415 416 struct mlx5_core_psv { 417 u32 psv_idx; 418 struct psv_layout { 419 u32 pd; 420 u16 syndrome; 421 u16 reserved; 422 u16 bg; 423 u16 app_tag; 424 u32 ref_tag; 425 } psv; 426 }; 427 428 struct mlx5_core_sig_ctx { 429 struct mlx5_core_psv psv_memory; 430 struct mlx5_core_psv psv_wire; 431 #if (__FreeBSD_version >= 1100000) 432 struct ib_sig_err err_item; 433 #endif 434 bool sig_status_checked; 435 bool sig_err_exists; 436 u32 sigerr_count; 437 }; 438 439 struct mlx5_core_mr { 440 u64 iova; 441 u64 size; 442 u32 key; 443 u32 pd; 444 }; 445 446 enum mlx5_res_type { 447 MLX5_RES_QP = MLX5_EVENT_QUEUE_TYPE_QP, 448 MLX5_RES_RQ = MLX5_EVENT_QUEUE_TYPE_RQ, 449 MLX5_RES_SQ = MLX5_EVENT_QUEUE_TYPE_SQ, 450 MLX5_RES_SRQ = 3, 451 MLX5_RES_XSRQ = 4, 452 MLX5_RES_DCT = 5, 453 }; 454 455 struct mlx5_core_rsc_common { 456 enum mlx5_res_type res; 457 atomic_t refcount; 458 struct completion free; 459 }; 460 461 struct mlx5_core_srq { 462 struct mlx5_core_rsc_common common; /* must be first */ 463 u32 srqn; 464 int max; 465 int max_gs; 466 int max_avail_gather; 467 int wqe_shift; 468 void (*event)(struct mlx5_core_srq *, int); 469 atomic_t refcount; 470 struct completion free; 471 }; 472 473 struct mlx5_eq_table { 474 void __iomem *update_ci; 475 void __iomem *update_arm_ci; 476 struct list_head comp_eqs_list; 477 struct mlx5_eq pages_eq; 478 struct mlx5_eq async_eq; 479 struct mlx5_eq cmd_eq; 480 int num_comp_vectors; 481 /* protect EQs list 482 */ 483 spinlock_t lock; 484 }; 485 486 struct mlx5_uar { 487 u32 index; 488 void __iomem *bf_map; 489 void __iomem *map; 490 }; 491 492 493 struct mlx5_core_health { 494 struct mlx5_health_buffer __iomem *health; 495 __be32 __iomem *health_counter; 496 struct timer_list timer; 497 u32 prev; 498 int miss_counter; 499 u32 fatal_error; 500 /* wq spinlock to synchronize draining */ 501 spinlock_t wq_lock; 502 struct workqueue_struct *wq; 503 unsigned long flags; 504 struct work_struct work; 505 struct delayed_work recover_work; 506 }; 507 508 #ifdef RATELIMIT 509 #define MLX5_CQ_LINEAR_ARRAY_SIZE (128 * 1024) 510 #else 511 #define MLX5_CQ_LINEAR_ARRAY_SIZE 1024 512 #endif 513 514 struct mlx5_cq_linear_array_entry { 515 spinlock_t lock; 516 struct mlx5_core_cq * volatile cq; 517 }; 518 519 struct mlx5_cq_table { 520 /* protect radix tree 521 */ 522 spinlock_t lock; 523 struct radix_tree_root tree; 524 struct mlx5_cq_linear_array_entry linear_array[MLX5_CQ_LINEAR_ARRAY_SIZE]; 525 }; 526 527 struct mlx5_qp_table { 528 /* protect radix tree 529 */ 530 spinlock_t lock; 531 struct radix_tree_root tree; 532 }; 533 534 struct mlx5_srq_table { 535 /* protect radix tree 536 */ 537 spinlock_t lock; 538 struct radix_tree_root tree; 539 }; 540 541 struct mlx5_mr_table { 542 /* protect radix tree 543 */ 544 spinlock_t lock; 545 struct radix_tree_root tree; 546 }; 547 548 struct mlx5_irq_info { 549 char name[MLX5_MAX_IRQ_NAME]; 550 }; 551 552 #ifdef RATELIMIT 553 struct mlx5_rl_entry { 554 u32 rate; 555 u16 burst; 556 u16 index; 557 u32 refcount; 558 }; 559 560 struct mlx5_rl_table { 561 struct mutex rl_lock; 562 u16 max_size; 563 u32 max_rate; 564 u32 min_rate; 565 struct mlx5_rl_entry *rl_entry; 566 }; 567 #endif 568 569 struct mlx5_priv { 570 char name[MLX5_MAX_NAME_LEN]; 571 struct mlx5_eq_table eq_table; 572 struct msix_entry *msix_arr; 573 struct mlx5_irq_info *irq_info; 574 struct mlx5_uuar_info uuari; 575 MLX5_DECLARE_DOORBELL_LOCK(cq_uar_lock); 576 577 struct io_mapping *bf_mapping; 578 579 /* pages stuff */ 580 struct workqueue_struct *pg_wq; 581 struct rb_root page_root; 582 s64 fw_pages; 583 atomic_t reg_pages; 584 s64 pages_per_func[MLX5_MAX_NUMBER_OF_VFS]; 585 struct mlx5_core_health health; 586 587 struct mlx5_srq_table srq_table; 588 589 /* start: qp staff */ 590 struct mlx5_qp_table qp_table; 591 struct dentry *qp_debugfs; 592 struct dentry *eq_debugfs; 593 struct dentry *cq_debugfs; 594 struct dentry *cmdif_debugfs; 595 /* end: qp staff */ 596 597 /* start: cq staff */ 598 struct mlx5_cq_table cq_table; 599 /* end: cq staff */ 600 601 /* start: mr staff */ 602 struct mlx5_mr_table mr_table; 603 /* end: mr staff */ 604 605 /* start: alloc staff */ 606 int numa_node; 607 608 struct mutex pgdir_mutex; 609 struct list_head pgdir_list; 610 /* end: alloc staff */ 611 struct dentry *dbg_root; 612 613 /* protect mkey key part */ 614 spinlock_t mkey_lock; 615 u8 mkey_key; 616 617 struct list_head dev_list; 618 struct list_head ctx_list; 619 spinlock_t ctx_lock; 620 unsigned long pci_dev_data; 621 #ifdef RATELIMIT 622 struct mlx5_rl_table rl_table; 623 #endif 624 }; 625 626 enum mlx5_device_state { 627 MLX5_DEVICE_STATE_UP, 628 MLX5_DEVICE_STATE_INTERNAL_ERROR, 629 }; 630 631 enum mlx5_interface_state { 632 MLX5_INTERFACE_STATE_DOWN = BIT(0), 633 MLX5_INTERFACE_STATE_UP = BIT(1), 634 MLX5_INTERFACE_STATE_SHUTDOWN = BIT(2), 635 }; 636 637 enum mlx5_pci_status { 638 MLX5_PCI_STATUS_DISABLED, 639 MLX5_PCI_STATUS_ENABLED, 640 }; 641 642 struct mlx5_special_contexts { 643 int resd_lkey; 644 }; 645 646 struct mlx5_flow_root_namespace; 647 struct mlx5_dump_data; 648 struct mlx5_core_dev { 649 struct pci_dev *pdev; 650 /* sync pci state */ 651 struct mutex pci_status_mutex; 652 enum mlx5_pci_status pci_status; 653 char board_id[MLX5_BOARD_ID_LEN]; 654 struct mlx5_cmd cmd; 655 struct mlx5_port_caps port_caps[MLX5_MAX_PORTS]; 656 u32 hca_caps_cur[MLX5_CAP_NUM][MLX5_UN_SZ_DW(hca_cap_union)]; 657 u32 hca_caps_max[MLX5_CAP_NUM][MLX5_UN_SZ_DW(hca_cap_union)]; 658 struct { 659 u32 qcam[MLX5_ST_SZ_DW(qcam_reg)]; 660 } caps; 661 phys_addr_t iseg_base; 662 struct mlx5_init_seg __iomem *iseg; 663 enum mlx5_device_state state; 664 /* sync interface state */ 665 struct mutex intf_state_mutex; 666 unsigned long intf_state; 667 void (*event) (struct mlx5_core_dev *dev, 668 enum mlx5_dev_event event, 669 unsigned long param); 670 struct mlx5_priv priv; 671 struct mlx5_profile *profile; 672 atomic_t num_qps; 673 u32 vsc_addr; 674 u32 issi; 675 struct mlx5_special_contexts special_contexts; 676 unsigned int module_status[MLX5_MAX_PORTS]; 677 struct mlx5_flow_root_namespace *root_ns; 678 struct mlx5_flow_root_namespace *fdb_root_ns; 679 struct mlx5_flow_root_namespace *esw_egress_root_ns; 680 struct mlx5_flow_root_namespace *esw_ingress_root_ns; 681 struct mlx5_flow_root_namespace *sniffer_rx_root_ns; 682 struct mlx5_flow_root_namespace *sniffer_tx_root_ns; 683 u32 num_q_counter_allocated[MLX5_INTERFACE_NUMBER]; 684 struct mlx5_dump_data *dump_data; 685 }; 686 687 enum { 688 MLX5_WOL_DISABLE = 0, 689 MLX5_WOL_SECURED_MAGIC = 1 << 1, 690 MLX5_WOL_MAGIC = 1 << 2, 691 MLX5_WOL_ARP = 1 << 3, 692 MLX5_WOL_BROADCAST = 1 << 4, 693 MLX5_WOL_MULTICAST = 1 << 5, 694 MLX5_WOL_UNICAST = 1 << 6, 695 MLX5_WOL_PHY_ACTIVITY = 1 << 7, 696 }; 697 698 struct mlx5_db { 699 __be32 *db; 700 union { 701 struct mlx5_db_pgdir *pgdir; 702 struct mlx5_ib_user_db_page *user_page; 703 } u; 704 dma_addr_t dma; 705 int index; 706 }; 707 708 struct mlx5_net_counters { 709 u64 packets; 710 u64 octets; 711 }; 712 713 struct mlx5_ptys_reg { 714 u8 an_dis_admin; 715 u8 an_dis_ap; 716 u8 local_port; 717 u8 proto_mask; 718 u32 eth_proto_cap; 719 u16 ib_link_width_cap; 720 u16 ib_proto_cap; 721 u32 eth_proto_admin; 722 u16 ib_link_width_admin; 723 u16 ib_proto_admin; 724 u32 eth_proto_oper; 725 u16 ib_link_width_oper; 726 u16 ib_proto_oper; 727 u32 eth_proto_lp_advertise; 728 }; 729 730 struct mlx5_pvlc_reg { 731 u8 local_port; 732 u8 vl_hw_cap; 733 u8 vl_admin; 734 u8 vl_operational; 735 }; 736 737 struct mlx5_pmtu_reg { 738 u8 local_port; 739 u16 max_mtu; 740 u16 admin_mtu; 741 u16 oper_mtu; 742 }; 743 744 struct mlx5_vport_counters { 745 struct mlx5_net_counters received_errors; 746 struct mlx5_net_counters transmit_errors; 747 struct mlx5_net_counters received_ib_unicast; 748 struct mlx5_net_counters transmitted_ib_unicast; 749 struct mlx5_net_counters received_ib_multicast; 750 struct mlx5_net_counters transmitted_ib_multicast; 751 struct mlx5_net_counters received_eth_broadcast; 752 struct mlx5_net_counters transmitted_eth_broadcast; 753 struct mlx5_net_counters received_eth_unicast; 754 struct mlx5_net_counters transmitted_eth_unicast; 755 struct mlx5_net_counters received_eth_multicast; 756 struct mlx5_net_counters transmitted_eth_multicast; 757 }; 758 759 enum { 760 MLX5_DB_PER_PAGE = MLX5_ADAPTER_PAGE_SIZE / L1_CACHE_BYTES, 761 }; 762 763 struct mlx5_core_dct { 764 struct mlx5_core_rsc_common common; /* must be first */ 765 void (*event)(struct mlx5_core_dct *, int); 766 int dctn; 767 struct completion drained; 768 struct mlx5_rsc_debug *dbg; 769 int pid; 770 }; 771 772 enum { 773 MLX5_COMP_EQ_SIZE = 1024, 774 }; 775 776 enum { 777 MLX5_PTYS_IB = 1 << 0, 778 MLX5_PTYS_EN = 1 << 2, 779 }; 780 781 struct mlx5_db_pgdir { 782 struct list_head list; 783 DECLARE_BITMAP(bitmap, MLX5_DB_PER_PAGE); 784 struct mlx5_fw_page *fw_page; 785 __be32 *db_page; 786 dma_addr_t db_dma; 787 }; 788 789 typedef void (*mlx5_cmd_cbk_t)(int status, void *context); 790 791 struct mlx5_cmd_work_ent { 792 struct mlx5_cmd_msg *in; 793 struct mlx5_cmd_msg *out; 794 int uin_size; 795 void *uout; 796 int uout_size; 797 mlx5_cmd_cbk_t callback; 798 struct delayed_work cb_timeout_work; 799 void *context; 800 int idx; 801 struct completion done; 802 struct mlx5_cmd *cmd; 803 struct work_struct work; 804 struct mlx5_cmd_layout *lay; 805 int ret; 806 int page_queue; 807 u8 status; 808 u8 token; 809 u64 ts1; 810 u64 ts2; 811 u16 op; 812 u8 busy; 813 bool polling; 814 }; 815 816 struct mlx5_pas { 817 u64 pa; 818 u8 log_sz; 819 }; 820 821 enum port_state_policy { 822 MLX5_POLICY_DOWN = 0, 823 MLX5_POLICY_UP = 1, 824 MLX5_POLICY_FOLLOW = 2, 825 MLX5_POLICY_INVALID = 0xffffffff 826 }; 827 828 static inline void * 829 mlx5_buf_offset(struct mlx5_buf *buf, int offset) 830 { 831 return ((char *)buf->direct.buf + offset); 832 } 833 834 835 extern struct workqueue_struct *mlx5_core_wq; 836 837 #define STRUCT_FIELD(header, field) \ 838 .struct_offset_bytes = offsetof(struct ib_unpacked_ ## header, field), \ 839 .struct_size_bytes = sizeof((struct ib_unpacked_ ## header *)0)->field 840 841 static inline struct mlx5_core_dev *pci2mlx5_core_dev(struct pci_dev *pdev) 842 { 843 return pci_get_drvdata(pdev); 844 } 845 846 extern struct dentry *mlx5_debugfs_root; 847 848 static inline u16 fw_rev_maj(struct mlx5_core_dev *dev) 849 { 850 return ioread32be(&dev->iseg->fw_rev) & 0xffff; 851 } 852 853 static inline u16 fw_rev_min(struct mlx5_core_dev *dev) 854 { 855 return ioread32be(&dev->iseg->fw_rev) >> 16; 856 } 857 858 static inline u16 fw_rev_sub(struct mlx5_core_dev *dev) 859 { 860 return ioread32be(&dev->iseg->cmdif_rev_fw_sub) & 0xffff; 861 } 862 863 static inline u16 cmdif_rev_get(struct mlx5_core_dev *dev) 864 { 865 return ioread32be(&dev->iseg->cmdif_rev_fw_sub) >> 16; 866 } 867 868 static inline int mlx5_get_gid_table_len(u16 param) 869 { 870 if (param > 4) { 871 printf("M4_CORE_DRV_NAME: WARN: ""gid table length is zero\n"); 872 return 0; 873 } 874 875 return 8 * (1 << param); 876 } 877 878 static inline void *mlx5_vzalloc(unsigned long size) 879 { 880 void *rtn; 881 882 rtn = kzalloc(size, GFP_KERNEL | __GFP_NOWARN); 883 return rtn; 884 } 885 886 static inline void *mlx5_vmalloc(unsigned long size) 887 { 888 void *rtn; 889 890 rtn = kmalloc(size, GFP_KERNEL | __GFP_NOWARN); 891 if (!rtn) 892 rtn = vmalloc(size); 893 return rtn; 894 } 895 896 static inline u32 mlx5_base_mkey(const u32 key) 897 { 898 return key & 0xffffff00u; 899 } 900 901 int mlx5_cmd_init(struct mlx5_core_dev *dev); 902 void mlx5_cmd_cleanup(struct mlx5_core_dev *dev); 903 void mlx5_cmd_use_events(struct mlx5_core_dev *dev); 904 void mlx5_cmd_use_polling(struct mlx5_core_dev *dev); 905 void mlx5_cmd_mbox_status(void *out, u8 *status, u32 *syndrome); 906 int mlx5_core_get_caps(struct mlx5_core_dev *dev, enum mlx5_cap_type cap_type); 907 int mlx5_cmd_exec(struct mlx5_core_dev *dev, void *in, int in_size, void *out, 908 int out_size); 909 int mlx5_cmd_exec_cb(struct mlx5_core_dev *dev, void *in, int in_size, 910 void *out, int out_size, mlx5_cmd_cbk_t callback, 911 void *context); 912 int mlx5_cmd_exec_polling(struct mlx5_core_dev *dev, void *in, int in_size, 913 void *out, int out_size); 914 int mlx5_cmd_alloc_uar(struct mlx5_core_dev *dev, u32 *uarn); 915 int mlx5_cmd_free_uar(struct mlx5_core_dev *dev, u32 uarn); 916 int mlx5_alloc_uuars(struct mlx5_core_dev *dev, struct mlx5_uuar_info *uuari); 917 int mlx5_free_uuars(struct mlx5_core_dev *dev, struct mlx5_uuar_info *uuari); 918 int mlx5_alloc_map_uar(struct mlx5_core_dev *mdev, struct mlx5_uar *uar); 919 void mlx5_unmap_free_uar(struct mlx5_core_dev *mdev, struct mlx5_uar *uar); 920 void mlx5_health_cleanup(struct mlx5_core_dev *dev); 921 int mlx5_health_init(struct mlx5_core_dev *dev); 922 void mlx5_start_health_poll(struct mlx5_core_dev *dev); 923 void mlx5_stop_health_poll(struct mlx5_core_dev *dev); 924 void mlx5_drain_health_wq(struct mlx5_core_dev *dev); 925 void mlx5_drain_health_recovery(struct mlx5_core_dev *dev); 926 void mlx5_trigger_health_work(struct mlx5_core_dev *dev); 927 928 #define mlx5_buf_alloc_node(dev, size, direct, buf, node) \ 929 mlx5_buf_alloc(dev, size, direct, buf) 930 int mlx5_buf_alloc(struct mlx5_core_dev *dev, int size, int max_direct, 931 struct mlx5_buf *buf); 932 void mlx5_buf_free(struct mlx5_core_dev *dev, struct mlx5_buf *buf); 933 int mlx5_core_create_srq(struct mlx5_core_dev *dev, struct mlx5_core_srq *srq, 934 struct mlx5_srq_attr *in); 935 int mlx5_core_destroy_srq(struct mlx5_core_dev *dev, struct mlx5_core_srq *srq); 936 int mlx5_core_query_srq(struct mlx5_core_dev *dev, struct mlx5_core_srq *srq, 937 struct mlx5_srq_attr *out); 938 int mlx5_core_query_vendor_id(struct mlx5_core_dev *mdev, u32 *vendor_id); 939 int mlx5_core_arm_srq(struct mlx5_core_dev *dev, struct mlx5_core_srq *srq, 940 u16 lwm, int is_srq); 941 void mlx5_init_mr_table(struct mlx5_core_dev *dev); 942 void mlx5_cleanup_mr_table(struct mlx5_core_dev *dev); 943 int mlx5_core_create_mkey_cb(struct mlx5_core_dev *dev, 944 struct mlx5_core_mr *mkey, 945 u32 *in, int inlen, 946 u32 *out, int outlen, 947 mlx5_cmd_cbk_t callback, void *context); 948 int mlx5_core_create_mkey(struct mlx5_core_dev *dev, 949 struct mlx5_core_mr *mr, 950 u32 *in, int inlen); 951 int mlx5_core_destroy_mkey(struct mlx5_core_dev *dev, struct mlx5_core_mr *mkey); 952 int mlx5_core_query_mkey(struct mlx5_core_dev *dev, struct mlx5_core_mr *mkey, 953 u32 *out, int outlen); 954 int mlx5_core_dump_fill_mkey(struct mlx5_core_dev *dev, struct mlx5_core_mr *mr, 955 u32 *mkey); 956 int mlx5_core_alloc_pd(struct mlx5_core_dev *dev, u32 *pdn); 957 int mlx5_core_dealloc_pd(struct mlx5_core_dev *dev, u32 pdn); 958 int mlx5_core_mad_ifc(struct mlx5_core_dev *dev, const void *inb, void *outb, 959 u16 opmod, u8 port); 960 void mlx5_fwp_flush(struct mlx5_fw_page *fwp); 961 void mlx5_fwp_invalidate(struct mlx5_fw_page *fwp); 962 struct mlx5_fw_page *mlx5_fwp_alloc(struct mlx5_core_dev *dev, gfp_t flags, unsigned num); 963 void mlx5_fwp_free(struct mlx5_fw_page *fwp); 964 u64 mlx5_fwp_get_dma(struct mlx5_fw_page *fwp, size_t offset); 965 void *mlx5_fwp_get_virt(struct mlx5_fw_page *fwp, size_t offset); 966 void mlx5_pagealloc_init(struct mlx5_core_dev *dev); 967 void mlx5_pagealloc_cleanup(struct mlx5_core_dev *dev); 968 int mlx5_pagealloc_start(struct mlx5_core_dev *dev); 969 void mlx5_pagealloc_stop(struct mlx5_core_dev *dev); 970 void mlx5_core_req_pages_handler(struct mlx5_core_dev *dev, u16 func_id, 971 s32 npages); 972 int mlx5_satisfy_startup_pages(struct mlx5_core_dev *dev, int boot); 973 int mlx5_reclaim_startup_pages(struct mlx5_core_dev *dev); 974 s64 mlx5_wait_for_reclaim_vfs_pages(struct mlx5_core_dev *dev); 975 void mlx5_register_debugfs(void); 976 void mlx5_unregister_debugfs(void); 977 int mlx5_eq_init(struct mlx5_core_dev *dev); 978 void mlx5_eq_cleanup(struct mlx5_core_dev *dev); 979 void mlx5_fill_page_array(struct mlx5_buf *buf, __be64 *pas); 980 void mlx5_cq_completion(struct mlx5_core_dev *dev, u32 cqn); 981 void mlx5_rsc_event(struct mlx5_core_dev *dev, u32 rsn, int event_type); 982 void mlx5_srq_event(struct mlx5_core_dev *dev, u32 srqn, int event_type); 983 struct mlx5_core_srq *mlx5_core_get_srq(struct mlx5_core_dev *dev, u32 srqn); 984 void mlx5_cmd_comp_handler(struct mlx5_core_dev *dev, u32 vector); 985 void mlx5_cq_event(struct mlx5_core_dev *dev, u32 cqn, int event_type); 986 int mlx5_create_map_eq(struct mlx5_core_dev *dev, struct mlx5_eq *eq, u8 vecidx, 987 int nent, u64 mask, const char *name, struct mlx5_uar *uar); 988 int mlx5_destroy_unmap_eq(struct mlx5_core_dev *dev, struct mlx5_eq *eq); 989 int mlx5_start_eqs(struct mlx5_core_dev *dev); 990 int mlx5_stop_eqs(struct mlx5_core_dev *dev); 991 int mlx5_vector2eqn(struct mlx5_core_dev *dev, int vector, int *eqn, int *irqn); 992 int mlx5_core_attach_mcg(struct mlx5_core_dev *dev, union ib_gid *mgid, u32 qpn); 993 int mlx5_core_detach_mcg(struct mlx5_core_dev *dev, union ib_gid *mgid, u32 qpn); 994 int mlx5_core_set_dc_cnak_trace(struct mlx5_core_dev *dev, int enable, 995 u64 addr); 996 997 int mlx5_qp_debugfs_init(struct mlx5_core_dev *dev); 998 void mlx5_qp_debugfs_cleanup(struct mlx5_core_dev *dev); 999 int mlx5_core_access_reg(struct mlx5_core_dev *dev, void *data_in, 1000 int size_in, void *data_out, int size_out, 1001 u16 reg_num, int arg, int write); 1002 1003 void mlx5_toggle_port_link(struct mlx5_core_dev *dev); 1004 1005 int mlx5_debug_eq_add(struct mlx5_core_dev *dev, struct mlx5_eq *eq); 1006 void mlx5_debug_eq_remove(struct mlx5_core_dev *dev, struct mlx5_eq *eq); 1007 int mlx5_core_eq_query(struct mlx5_core_dev *dev, struct mlx5_eq *eq, 1008 u32 *out, int outlen); 1009 int mlx5_eq_debugfs_init(struct mlx5_core_dev *dev); 1010 void mlx5_eq_debugfs_cleanup(struct mlx5_core_dev *dev); 1011 int mlx5_cq_debugfs_init(struct mlx5_core_dev *dev); 1012 void mlx5_cq_debugfs_cleanup(struct mlx5_core_dev *dev); 1013 int mlx5_db_alloc(struct mlx5_core_dev *dev, struct mlx5_db *db); 1014 int mlx5_db_alloc_node(struct mlx5_core_dev *dev, struct mlx5_db *db, 1015 int node); 1016 void mlx5_db_free(struct mlx5_core_dev *dev, struct mlx5_db *db); 1017 1018 const char *mlx5_command_str(int command); 1019 int mlx5_cmdif_debugfs_init(struct mlx5_core_dev *dev); 1020 void mlx5_cmdif_debugfs_cleanup(struct mlx5_core_dev *dev); 1021 int mlx5_core_create_psv(struct mlx5_core_dev *dev, u32 pdn, 1022 int npsvs, u32 *sig_index); 1023 int mlx5_core_destroy_psv(struct mlx5_core_dev *dev, int psv_num); 1024 void mlx5_core_put_rsc(struct mlx5_core_rsc_common *common); 1025 u8 mlx5_is_wol_supported(struct mlx5_core_dev *dev); 1026 int mlx5_set_wol(struct mlx5_core_dev *dev, u8 wol_mode); 1027 int mlx5_set_dropless_mode(struct mlx5_core_dev *dev, u16 timeout); 1028 int mlx5_query_dropless_mode(struct mlx5_core_dev *dev, u16 *timeout); 1029 int mlx5_query_wol(struct mlx5_core_dev *dev, u8 *wol_mode); 1030 int mlx5_core_access_pvlc(struct mlx5_core_dev *dev, 1031 struct mlx5_pvlc_reg *pvlc, int write); 1032 int mlx5_core_access_ptys(struct mlx5_core_dev *dev, 1033 struct mlx5_ptys_reg *ptys, int write); 1034 int mlx5_core_access_pmtu(struct mlx5_core_dev *dev, 1035 struct mlx5_pmtu_reg *pmtu, int write); 1036 int mlx5_vxlan_udp_port_add(struct mlx5_core_dev *dev, u16 port); 1037 int mlx5_vxlan_udp_port_delete(struct mlx5_core_dev *dev, u16 port); 1038 int mlx5_query_port_cong_status(struct mlx5_core_dev *mdev, int protocol, 1039 int priority, int *is_enable); 1040 int mlx5_modify_port_cong_status(struct mlx5_core_dev *mdev, int protocol, 1041 int priority, int enable); 1042 int mlx5_query_port_cong_params(struct mlx5_core_dev *mdev, int protocol, 1043 void *out, int out_size); 1044 int mlx5_modify_port_cong_params(struct mlx5_core_dev *mdev, 1045 void *in, int in_size); 1046 int mlx5_query_port_cong_statistics(struct mlx5_core_dev *mdev, int clear, 1047 void *out, int out_size); 1048 int mlx5_set_diagnostic_params(struct mlx5_core_dev *mdev, void *in, 1049 int in_size); 1050 int mlx5_query_diagnostic_counters(struct mlx5_core_dev *mdev, 1051 u8 num_of_samples, u16 sample_index, 1052 void *out, int out_size); 1053 int mlx5_vsc_find_cap(struct mlx5_core_dev *mdev); 1054 int mlx5_vsc_lock(struct mlx5_core_dev *mdev); 1055 void mlx5_vsc_unlock(struct mlx5_core_dev *mdev); 1056 int mlx5_vsc_set_space(struct mlx5_core_dev *mdev, u16 space); 1057 int mlx5_vsc_write(struct mlx5_core_dev *mdev, u32 addr, const u32 *data); 1058 int mlx5_vsc_read(struct mlx5_core_dev *mdev, u32 addr, u32 *data); 1059 int mlx5_vsc_lock_addr_space(struct mlx5_core_dev *mdev, u32 addr); 1060 int mlx5_vsc_unlock_addr_space(struct mlx5_core_dev *mdev, u32 addr); 1061 1062 static inline u32 mlx5_mkey_to_idx(u32 mkey) 1063 { 1064 return mkey >> 8; 1065 } 1066 1067 static inline u32 mlx5_idx_to_mkey(u32 mkey_idx) 1068 { 1069 return mkey_idx << 8; 1070 } 1071 1072 static inline u8 mlx5_mkey_variant(u32 mkey) 1073 { 1074 return mkey & 0xff; 1075 } 1076 1077 enum { 1078 MLX5_PROF_MASK_QP_SIZE = (u64)1 << 0, 1079 MLX5_PROF_MASK_MR_CACHE = (u64)1 << 1, 1080 }; 1081 1082 enum { 1083 MAX_MR_CACHE_ENTRIES = 15, 1084 }; 1085 1086 struct mlx5_interface { 1087 void * (*add)(struct mlx5_core_dev *dev); 1088 void (*remove)(struct mlx5_core_dev *dev, void *context); 1089 void (*event)(struct mlx5_core_dev *dev, void *context, 1090 enum mlx5_dev_event event, unsigned long param); 1091 void * (*get_dev)(void *context); 1092 int protocol; 1093 struct list_head list; 1094 }; 1095 1096 void *mlx5_get_protocol_dev(struct mlx5_core_dev *mdev, int protocol); 1097 int mlx5_register_interface(struct mlx5_interface *intf); 1098 void mlx5_unregister_interface(struct mlx5_interface *intf); 1099 1100 struct mlx5_profile { 1101 u64 mask; 1102 u8 log_max_qp; 1103 struct { 1104 int size; 1105 int limit; 1106 } mr_cache[MAX_MR_CACHE_ENTRIES]; 1107 }; 1108 1109 enum { 1110 MLX5_PCI_DEV_IS_VF = 1 << 0, 1111 }; 1112 1113 enum { 1114 MLX5_TRIGGERED_CMD_COMP = (u64)1 << 32, 1115 }; 1116 1117 static inline int mlx5_core_is_pf(struct mlx5_core_dev *dev) 1118 { 1119 return !(dev->priv.pci_dev_data & MLX5_PCI_DEV_IS_VF); 1120 } 1121 #ifdef RATELIMIT 1122 int mlx5_init_rl_table(struct mlx5_core_dev *dev); 1123 void mlx5_cleanup_rl_table(struct mlx5_core_dev *dev); 1124 int mlx5_rl_add_rate(struct mlx5_core_dev *dev, u32 rate, u32 burst, u16 *index); 1125 void mlx5_rl_remove_rate(struct mlx5_core_dev *dev, u32 rate, u32 burst); 1126 bool mlx5_rl_is_in_range(const struct mlx5_core_dev *dev, u32 rate, u32 burst); 1127 1128 static inline bool mlx5_rl_is_supported(struct mlx5_core_dev *dev) 1129 { 1130 return !!(dev->priv.rl_table.max_size); 1131 } 1132 #endif 1133 1134 #endif /* MLX5_DRIVER_H */ 1135