net/mlx5: Remove redundant EQ API exports
[linux-2.6-block.git] / include / linux / mlx5 / driver.h
CommitLineData
e126ba97 1/*
302bdf68 2 * Copyright (c) 2013-2015, Mellanox Technologies. All rights reserved.
e126ba97
EC
3 *
4 * This software is available to you under a choice of one of two
5 * licenses. You may choose to be licensed under the terms of the GNU
6 * General Public License (GPL) Version 2, available from the file
7 * COPYING in the main directory of this source tree, or the
8 * OpenIB.org BSD license below:
9 *
10 * Redistribution and use in source and binary forms, with or
11 * without modification, are permitted provided that the following
12 * conditions are met:
13 *
14 * - Redistributions of source code must retain the above
15 * copyright notice, this list of conditions and the following
16 * disclaimer.
17 *
18 * - Redistributions in binary form must reproduce the above
19 * copyright notice, this list of conditions and the following
20 * disclaimer in the documentation and/or other materials
21 * provided with the distribution.
22 *
23 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
24 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
25 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
26 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
27 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
28 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
29 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
30 * SOFTWARE.
31 */
32
33#ifndef MLX5_DRIVER_H
34#define MLX5_DRIVER_H
35
36#include <linux/kernel.h>
37#include <linux/completion.h>
38#include <linux/pci.h>
05e0cc84 39#include <linux/irq.h>
e126ba97
EC
40#include <linux/spinlock_types.h>
41#include <linux/semaphore.h>
6ecde51d 42#include <linux/slab.h>
e126ba97
EC
43#include <linux/vmalloc.h>
44#include <linux/radix-tree.h>
43a335e0 45#include <linux/workqueue.h>
d9aaed83 46#include <linux/mempool.h>
94c6825e 47#include <linux/interrupt.h>
52ec462e 48#include <linux/idr.h>
6ecde51d 49
e126ba97
EC
50#include <linux/mlx5/device.h>
51#include <linux/mlx5/doorbell.h>
af1ba291 52#include <linux/mlx5/srq.h>
7c39afb3
FD
53#include <linux/timecounter.h>
54#include <linux/ptp_clock_kernel.h>
e126ba97
EC
55
56enum {
57 MLX5_BOARD_ID_LEN = 64,
58 MLX5_MAX_NAME_LEN = 16,
59};
60
61enum {
62 /* one minute for the sake of bringup. Generally, commands must always
63 * complete and we may need to increase this timeout value
64 */
6b6c07bd 65 MLX5_CMD_TIMEOUT_MSEC = 60 * 1000,
e126ba97
EC
66 MLX5_CMD_WQ_MAX_NAME = 32,
67};
68
69enum {
70 CMD_OWNER_SW = 0x0,
71 CMD_OWNER_HW = 0x1,
72 CMD_STATUS_SUCCESS = 0,
73};
74
75enum mlx5_sqp_t {
76 MLX5_SQP_SMI = 0,
77 MLX5_SQP_GSI = 1,
78 MLX5_SQP_IEEE_1588 = 2,
79 MLX5_SQP_SNIFFER = 3,
80 MLX5_SQP_SYNC_UMR = 4,
81};
82
83enum {
84 MLX5_MAX_PORTS = 2,
85};
86
87enum {
88 MLX5_EQ_VEC_PAGES = 0,
89 MLX5_EQ_VEC_CMD = 1,
90 MLX5_EQ_VEC_ASYNC = 2,
d9aaed83 91 MLX5_EQ_VEC_PFAULT = 3,
e126ba97
EC
92 MLX5_EQ_VEC_COMP_BASE,
93};
94
95enum {
db058a18 96 MLX5_MAX_IRQ_NAME = 32
e126ba97
EC
97};
98
99enum {
100 MLX5_ATOMIC_MODE_IB_COMP = 1 << 16,
101 MLX5_ATOMIC_MODE_CX = 2 << 16,
102 MLX5_ATOMIC_MODE_8B = 3 << 16,
103 MLX5_ATOMIC_MODE_16B = 4 << 16,
104 MLX5_ATOMIC_MODE_32B = 5 << 16,
105 MLX5_ATOMIC_MODE_64B = 6 << 16,
106 MLX5_ATOMIC_MODE_128B = 7 << 16,
107 MLX5_ATOMIC_MODE_256B = 8 << 16,
108};
109
e126ba97 110enum {
415a64aa 111 MLX5_REG_QPTS = 0x4002,
4f3961ee
SM
112 MLX5_REG_QETCR = 0x4005,
113 MLX5_REG_QTCT = 0x400a,
415a64aa 114 MLX5_REG_QPDPM = 0x4013,
c02762eb 115 MLX5_REG_QCAM = 0x4019,
341c5ee2
HN
116 MLX5_REG_DCBX_PARAM = 0x4020,
117 MLX5_REG_DCBX_APP = 0x4021,
e29341fb
IT
118 MLX5_REG_FPGA_CAP = 0x4022,
119 MLX5_REG_FPGA_CTRL = 0x4023,
a9956d35 120 MLX5_REG_FPGA_ACCESS_REG = 0x4024,
e126ba97
EC
121 MLX5_REG_PCAP = 0x5001,
122 MLX5_REG_PMTU = 0x5003,
123 MLX5_REG_PTYS = 0x5004,
124 MLX5_REG_PAOS = 0x5006,
3c2d18ef 125 MLX5_REG_PFCC = 0x5007,
efea389d 126 MLX5_REG_PPCNT = 0x5008,
e126ba97
EC
127 MLX5_REG_PMAOS = 0x5012,
128 MLX5_REG_PUDE = 0x5009,
129 MLX5_REG_PMPE = 0x5010,
130 MLX5_REG_PELC = 0x500e,
a124d13e 131 MLX5_REG_PVLC = 0x500f,
94cb1ebb 132 MLX5_REG_PCMR = 0x5041,
bb64143e 133 MLX5_REG_PMLP = 0x5002,
cfdcbcea 134 MLX5_REG_PCAM = 0x507f,
e126ba97
EC
135 MLX5_REG_NODE_DESC = 0x6001,
136 MLX5_REG_HOST_ENDIANNESS = 0x7004,
bb64143e 137 MLX5_REG_MCIA = 0x9014,
da54d24e 138 MLX5_REG_MLCR = 0x902b,
8ed1a630 139 MLX5_REG_MPCNT = 0x9051,
f9a1ef72
EE
140 MLX5_REG_MTPPS = 0x9053,
141 MLX5_REG_MTPPSE = 0x9054,
47176289
OG
142 MLX5_REG_MCQI = 0x9061,
143 MLX5_REG_MCC = 0x9062,
144 MLX5_REG_MCDA = 0x9063,
cfdcbcea 145 MLX5_REG_MCAM = 0x907f,
e126ba97
EC
146};
147
415a64aa
HN
148enum mlx5_qpts_trust_state {
149 MLX5_QPTS_TRUST_PCP = 1,
150 MLX5_QPTS_TRUST_DSCP = 2,
151};
152
341c5ee2
HN
153enum mlx5_dcbx_oper_mode {
154 MLX5E_DCBX_PARAM_VER_OPER_HOST = 0x0,
155 MLX5E_DCBX_PARAM_VER_OPER_AUTO = 0x3,
156};
157
57cda166
MS
158enum mlx5_dct_atomic_mode {
159 MLX5_ATOMIC_MODE_DCT_OFF = 20,
160 MLX5_ATOMIC_MODE_DCT_NONE = 0 << MLX5_ATOMIC_MODE_DCT_OFF,
161 MLX5_ATOMIC_MODE_DCT_IB_COMP = 1 << MLX5_ATOMIC_MODE_DCT_OFF,
162 MLX5_ATOMIC_MODE_DCT_CX = 2 << MLX5_ATOMIC_MODE_DCT_OFF,
163};
164
da7525d2
EBE
165enum {
166 MLX5_ATOMIC_OPS_CMP_SWAP = 1 << 0,
167 MLX5_ATOMIC_OPS_FETCH_ADD = 1 << 1,
168};
169
e420f0c0
HE
170enum mlx5_page_fault_resume_flags {
171 MLX5_PAGE_FAULT_RESUME_REQUESTOR = 1 << 0,
172 MLX5_PAGE_FAULT_RESUME_WRITE = 1 << 1,
173 MLX5_PAGE_FAULT_RESUME_RDMA = 1 << 2,
174 MLX5_PAGE_FAULT_RESUME_ERROR = 1 << 7,
175};
176
e126ba97
EC
177enum dbg_rsc_type {
178 MLX5_DBG_RSC_QP,
179 MLX5_DBG_RSC_EQ,
180 MLX5_DBG_RSC_CQ,
181};
182
7ecf6d8f
BW
183enum port_state_policy {
184 MLX5_POLICY_DOWN = 0,
185 MLX5_POLICY_UP = 1,
186 MLX5_POLICY_FOLLOW = 2,
187 MLX5_POLICY_INVALID = 0xffffffff
188};
189
e126ba97
EC
190struct mlx5_field_desc {
191 struct dentry *dent;
192 int i;
193};
194
195struct mlx5_rsc_debug {
196 struct mlx5_core_dev *dev;
197 void *object;
198 enum dbg_rsc_type type;
199 struct dentry *root;
200 struct mlx5_field_desc fields[0];
201};
202
203enum mlx5_dev_event {
204 MLX5_DEV_EVENT_SYS_ERROR,
205 MLX5_DEV_EVENT_PORT_UP,
206 MLX5_DEV_EVENT_PORT_DOWN,
207 MLX5_DEV_EVENT_PORT_INITIALIZED,
208 MLX5_DEV_EVENT_LID_CHANGE,
209 MLX5_DEV_EVENT_PKEY_CHANGE,
210 MLX5_DEV_EVENT_GUID_CHANGE,
211 MLX5_DEV_EVENT_CLIENT_REREG,
f9a1ef72 212 MLX5_DEV_EVENT_PPS,
246ac981 213 MLX5_DEV_EVENT_DELAY_DROP_TIMEOUT,
e126ba97
EC
214};
215
4c916a79 216enum mlx5_port_status {
6fa1bcab
AS
217 MLX5_PORT_UP = 1,
218 MLX5_PORT_DOWN = 2,
4c916a79
RS
219};
220
d9aaed83
AK
221enum mlx5_eq_type {
222 MLX5_EQ_TYPE_COMP,
223 MLX5_EQ_TYPE_ASYNC,
224#ifdef CONFIG_INFINIBAND_ON_DEMAND_PAGING
225 MLX5_EQ_TYPE_PF,
226#endif
227};
228
2f5ff264 229struct mlx5_bfreg_info {
b037c29a 230 u32 *sys_pages;
2f5ff264 231 int num_low_latency_bfregs;
e126ba97 232 unsigned int *count;
e126ba97
EC
233
234 /*
2f5ff264 235 * protect bfreg allocation data structs
e126ba97
EC
236 */
237 struct mutex lock;
78c0f98c 238 u32 ver;
b037c29a
EC
239 bool lib_uar_4k;
240 u32 num_sys_pages;
31a78a5a
YH
241 u32 num_static_sys_pages;
242 u32 total_num_bfregs;
243 u32 num_dyn_bfregs;
e126ba97
EC
244};
245
246struct mlx5_cmd_first {
247 __be32 data[4];
248};
249
250struct mlx5_cmd_msg {
251 struct list_head list;
0ac3ea70 252 struct cmd_msg_cache *parent;
e126ba97
EC
253 u32 len;
254 struct mlx5_cmd_first first;
255 struct mlx5_cmd_mailbox *next;
256};
257
258struct mlx5_cmd_debug {
259 struct dentry *dbg_root;
260 struct dentry *dbg_in;
261 struct dentry *dbg_out;
262 struct dentry *dbg_outlen;
263 struct dentry *dbg_status;
264 struct dentry *dbg_run;
265 void *in_msg;
266 void *out_msg;
267 u8 status;
268 u16 inlen;
269 u16 outlen;
270};
271
0ac3ea70 272struct cmd_msg_cache {
e126ba97
EC
273 /* protect block chain allocations
274 */
275 spinlock_t lock;
276 struct list_head head;
0ac3ea70
MHY
277 unsigned int max_inbox_size;
278 unsigned int num_ent;
e126ba97
EC
279};
280
0ac3ea70
MHY
281enum {
282 MLX5_NUM_COMMAND_CACHES = 5,
e126ba97
EC
283};
284
285struct mlx5_cmd_stats {
286 u64 sum;
287 u64 n;
288 struct dentry *root;
289 struct dentry *avg;
290 struct dentry *count;
291 /* protect command average calculations */
292 spinlock_t lock;
293};
294
295struct mlx5_cmd {
64599cca
EC
296 void *cmd_alloc_buf;
297 dma_addr_t alloc_dma;
298 int alloc_size;
e126ba97
EC
299 void *cmd_buf;
300 dma_addr_t dma;
301 u16 cmdif_rev;
302 u8 log_sz;
303 u8 log_stride;
304 int max_reg_cmds;
305 int events;
306 u32 __iomem *vector;
307
308 /* protect command queue allocations
309 */
310 spinlock_t alloc_lock;
311
312 /* protect token allocations
313 */
314 spinlock_t token_lock;
315 u8 token;
316 unsigned long bitmask;
317 char wq_name[MLX5_CMD_WQ_MAX_NAME];
318 struct workqueue_struct *wq;
319 struct semaphore sem;
320 struct semaphore pages_sem;
321 int mode;
322 struct mlx5_cmd_work_ent *ent_arr[MLX5_MAX_COMMANDS];
18c90df9 323 struct dma_pool *pool;
e126ba97 324 struct mlx5_cmd_debug dbg;
0ac3ea70 325 struct cmd_msg_cache cache[MLX5_NUM_COMMAND_CACHES];
e126ba97
EC
326 int checksum_disabled;
327 struct mlx5_cmd_stats stats[MLX5_CMD_OP_MAX];
328};
329
330struct mlx5_port_caps {
331 int gid_table_len;
332 int pkey_table_len;
938fe83c 333 u8 ext_port_cap;
c43f1112 334 bool has_smi;
e126ba97
EC
335};
336
337struct mlx5_cmd_mailbox {
338 void *buf;
339 dma_addr_t dma;
340 struct mlx5_cmd_mailbox *next;
341};
342
343struct mlx5_buf_list {
344 void *buf;
345 dma_addr_t map;
346};
347
348struct mlx5_buf {
349 struct mlx5_buf_list direct;
e126ba97 350 int npages;
e126ba97 351 int size;
f241e749 352 u8 page_shift;
e126ba97
EC
353};
354
1c1b5228
TT
355struct mlx5_frag_buf {
356 struct mlx5_buf_list *frags;
357 int npages;
358 int size;
359 u8 page_shift;
360};
361
94c6825e
MB
362struct mlx5_eq_tasklet {
363 struct list_head list;
364 struct list_head process_list;
365 struct tasklet_struct task;
366 /* lock on completion tasklet list */
367 spinlock_t lock;
368};
369
d9aaed83
AK
370struct mlx5_eq_pagefault {
371 struct work_struct work;
372 /* Pagefaults lock */
373 spinlock_t lock;
374 struct workqueue_struct *wq;
375 mempool_t *pool;
376};
377
02d92f79
SM
378struct mlx5_cq_table {
379 /* protect radix tree */
380 spinlock_t lock;
381 struct radix_tree_root tree;
382};
383
e126ba97
EC
384struct mlx5_eq {
385 struct mlx5_core_dev *dev;
02d92f79 386 struct mlx5_cq_table cq_table;
e126ba97
EC
387 __be32 __iomem *doorbell;
388 u32 cons_index;
389 struct mlx5_buf buf;
390 int size;
0b6e26ce 391 unsigned int irqn;
e126ba97
EC
392 u8 eqn;
393 int nent;
394 u64 mask;
e126ba97
EC
395 struct list_head list;
396 int index;
397 struct mlx5_rsc_debug *dbg;
d9aaed83
AK
398 enum mlx5_eq_type type;
399 union {
400 struct mlx5_eq_tasklet tasklet_ctx;
401#ifdef CONFIG_INFINIBAND_ON_DEMAND_PAGING
402 struct mlx5_eq_pagefault pf_ctx;
403#endif
404 };
e126ba97
EC
405};
406
3121e3c4
SG
407struct mlx5_core_psv {
408 u32 psv_idx;
409 struct psv_layout {
410 u32 pd;
411 u16 syndrome;
412 u16 reserved;
413 u16 bg;
414 u16 app_tag;
415 u32 ref_tag;
416 } psv;
417};
418
419struct mlx5_core_sig_ctx {
420 struct mlx5_core_psv psv_memory;
421 struct mlx5_core_psv psv_wire;
d5436ba0
SG
422 struct ib_sig_err err_item;
423 bool sig_status_checked;
424 bool sig_err_exists;
425 u32 sigerr_count;
3121e3c4 426};
e126ba97 427
aa8e08d2
AK
428enum {
429 MLX5_MKEY_MR = 1,
430 MLX5_MKEY_MW,
431};
432
a606b0f6 433struct mlx5_core_mkey {
e126ba97
EC
434 u64 iova;
435 u64 size;
436 u32 key;
437 u32 pd;
aa8e08d2 438 u32 type;
e126ba97
EC
439};
440
d9aaed83
AK
441#define MLX5_24BIT_MASK ((1 << 24) - 1)
442
5903325a 443enum mlx5_res_type {
e2013b21 444 MLX5_RES_QP = MLX5_EVENT_QUEUE_TYPE_QP,
445 MLX5_RES_RQ = MLX5_EVENT_QUEUE_TYPE_RQ,
446 MLX5_RES_SQ = MLX5_EVENT_QUEUE_TYPE_SQ,
447 MLX5_RES_SRQ = 3,
448 MLX5_RES_XSRQ = 4,
5b3ec3fc 449 MLX5_RES_XRQ = 5,
57cda166 450 MLX5_RES_DCT = MLX5_EVENT_QUEUE_TYPE_DCT,
5903325a
EC
451};
452
453struct mlx5_core_rsc_common {
454 enum mlx5_res_type res;
455 atomic_t refcount;
456 struct completion free;
457};
458
e126ba97 459struct mlx5_core_srq {
01949d01 460 struct mlx5_core_rsc_common common; /* must be first */
e126ba97
EC
461 u32 srqn;
462 int max;
463 int max_gs;
464 int max_avail_gather;
465 int wqe_shift;
466 void (*event) (struct mlx5_core_srq *, enum mlx5_event);
467
468 atomic_t refcount;
469 struct completion free;
470};
471
472struct mlx5_eq_table {
473 void __iomem *update_ci;
474 void __iomem *update_arm_ci;
233d05d2 475 struct list_head comp_eqs_list;
e126ba97
EC
476 struct mlx5_eq pages_eq;
477 struct mlx5_eq async_eq;
478 struct mlx5_eq cmd_eq;
d9aaed83
AK
479#ifdef CONFIG_INFINIBAND_ON_DEMAND_PAGING
480 struct mlx5_eq pfault_eq;
481#endif
e126ba97
EC
482 int num_comp_vectors;
483 /* protect EQs list
484 */
485 spinlock_t lock;
486};
487
a6d51b68 488struct mlx5_uars_page {
e126ba97 489 void __iomem *map;
a6d51b68
EC
490 bool wc;
491 u32 index;
492 struct list_head list;
493 unsigned int bfregs;
494 unsigned long *reg_bitmap; /* for non fast path bf regs */
495 unsigned long *fp_bitmap;
496 unsigned int reg_avail;
497 unsigned int fp_avail;
498 struct kref ref_count;
499 struct mlx5_core_dev *mdev;
e126ba97
EC
500};
501
a6d51b68
EC
502struct mlx5_bfreg_head {
503 /* protect blue flame registers allocations */
504 struct mutex lock;
505 struct list_head list;
506};
507
508struct mlx5_bfreg_data {
509 struct mlx5_bfreg_head reg_head;
510 struct mlx5_bfreg_head wc_head;
511};
512
513struct mlx5_sq_bfreg {
514 void __iomem *map;
515 struct mlx5_uars_page *up;
516 bool wc;
517 u32 index;
518 unsigned int offset;
519};
e126ba97
EC
520
521struct mlx5_core_health {
522 struct health_buffer __iomem *health;
523 __be32 __iomem *health_counter;
524 struct timer_list timer;
e126ba97
EC
525 u32 prev;
526 int miss_counter;
fd76ee4d 527 bool sick;
05ac2c0b
MHY
528 /* wq spinlock to synchronize draining */
529 spinlock_t wq_lock;
ac6ea6e8 530 struct workqueue_struct *wq;
05ac2c0b 531 unsigned long flags;
ac6ea6e8 532 struct work_struct work;
04c0c1ab 533 struct delayed_work recover_work;
e126ba97
EC
534};
535
e126ba97
EC
536struct mlx5_qp_table {
537 /* protect radix tree
538 */
539 spinlock_t lock;
540 struct radix_tree_root tree;
541};
542
543struct mlx5_srq_table {
544 /* protect radix tree
545 */
546 spinlock_t lock;
547 struct radix_tree_root tree;
548};
549
a606b0f6 550struct mlx5_mkey_table {
3bcdb17a
SG
551 /* protect radix tree
552 */
553 rwlock_t lock;
554 struct radix_tree_root tree;
555};
556
fc50db98
EC
557struct mlx5_vf_context {
558 int enabled;
7ecf6d8f
BW
559 u64 port_guid;
560 u64 node_guid;
561 enum port_state_policy policy;
fc50db98
EC
562};
563
564struct mlx5_core_sriov {
565 struct mlx5_vf_context *vfs_ctx;
566 int num_vfs;
567 int enabled_vfs;
568};
569
db058a18 570struct mlx5_irq_info {
231243c8 571 cpumask_var_t mask;
db058a18
SM
572 char name[MLX5_MAX_IRQ_NAME];
573};
574
43a335e0 575struct mlx5_fc_stats {
29cc6679 576 struct rb_root counters;
43a335e0
AV
577 struct list_head addlist;
578 /* protect addlist add/splice operations */
579 spinlock_t addlist_lock;
580
581 struct workqueue_struct *wq;
582 struct delayed_work work;
583 unsigned long next_query;
f6dfb4c3 584 unsigned long sampling_interval; /* jiffies */
43a335e0
AV
585};
586
eeb66cdb 587struct mlx5_mpfs;
073bb189 588struct mlx5_eswitch;
7907f23a 589struct mlx5_lag;
d9aaed83 590struct mlx5_pagefault;
073bb189 591
1466cc5b
YP
592struct mlx5_rl_entry {
593 u32 rate;
594 u16 index;
595 u16 refcount;
596};
597
598struct mlx5_rl_table {
599 /* protect rate limit table */
600 struct mutex rl_lock;
601 u16 max_size;
602 u32 max_rate;
603 u32 min_rate;
604 struct mlx5_rl_entry *rl_entry;
605};
606
d4eb4cd7
HN
607enum port_module_event_status_type {
608 MLX5_MODULE_STATUS_PLUGGED = 0x1,
609 MLX5_MODULE_STATUS_UNPLUGGED = 0x2,
610 MLX5_MODULE_STATUS_ERROR = 0x3,
611 MLX5_MODULE_STATUS_NUM = 0x3,
612};
613
614enum port_module_event_error_type {
615 MLX5_MODULE_EVENT_ERROR_POWER_BUDGET_EXCEEDED,
616 MLX5_MODULE_EVENT_ERROR_LONG_RANGE_FOR_NON_MLNX_CABLE_MODULE,
617 MLX5_MODULE_EVENT_ERROR_BUS_STUCK,
618 MLX5_MODULE_EVENT_ERROR_NO_EEPROM_RETRY_TIMEOUT,
619 MLX5_MODULE_EVENT_ERROR_ENFORCE_PART_NUMBER_LIST,
620 MLX5_MODULE_EVENT_ERROR_UNKNOWN_IDENTIFIER,
621 MLX5_MODULE_EVENT_ERROR_HIGH_TEMPERATURE,
622 MLX5_MODULE_EVENT_ERROR_BAD_CABLE,
623 MLX5_MODULE_EVENT_ERROR_UNKNOWN,
624 MLX5_MODULE_EVENT_ERROR_NUM,
625};
626
627struct mlx5_port_module_event_stats {
628 u64 status_counters[MLX5_MODULE_STATUS_NUM];
629 u64 error_counters[MLX5_MODULE_EVENT_ERROR_NUM];
630};
631
e126ba97
EC
632struct mlx5_priv {
633 char name[MLX5_MAX_NAME_LEN];
634 struct mlx5_eq_table eq_table;
db058a18 635 struct mlx5_irq_info *irq_info;
e126ba97
EC
636
637 /* pages stuff */
638 struct workqueue_struct *pg_wq;
639 struct rb_root page_root;
640 int fw_pages;
6aec21f6 641 atomic_t reg_pages;
bf0bf77f 642 struct list_head free_list;
fc50db98 643 int vfs_pages;
e126ba97
EC
644
645 struct mlx5_core_health health;
646
647 struct mlx5_srq_table srq_table;
648
649 /* start: qp staff */
650 struct mlx5_qp_table qp_table;
651 struct dentry *qp_debugfs;
652 struct dentry *eq_debugfs;
653 struct dentry *cq_debugfs;
654 struct dentry *cmdif_debugfs;
655 /* end: qp staff */
656
a606b0f6
MB
657 /* start: mkey staff */
658 struct mlx5_mkey_table mkey_table;
659 /* end: mkey staff */
3bcdb17a 660
e126ba97 661 /* start: alloc staff */
311c7c71
SM
662 /* protect buffer alocation according to numa node */
663 struct mutex alloc_mutex;
664 int numa_node;
665
e126ba97
EC
666 struct mutex pgdir_mutex;
667 struct list_head pgdir_list;
668 /* end: alloc staff */
669 struct dentry *dbg_root;
670
671 /* protect mkey key part */
672 spinlock_t mkey_lock;
673 u8 mkey_key;
9603b61d
JM
674
675 struct list_head dev_list;
676 struct list_head ctx_list;
677 spinlock_t ctx_lock;
073bb189 678
97834eba
ES
679 struct list_head waiting_events_list;
680 bool is_accum_events;
681
fba53f7b 682 struct mlx5_flow_steering *steering;
eeb66cdb 683 struct mlx5_mpfs *mpfs;
073bb189 684 struct mlx5_eswitch *eswitch;
fc50db98 685 struct mlx5_core_sriov sriov;
7907f23a 686 struct mlx5_lag *lag;
fc50db98 687 unsigned long pci_dev_data;
43a335e0 688 struct mlx5_fc_stats fc_stats;
1466cc5b 689 struct mlx5_rl_table rl_table;
d4eb4cd7
HN
690
691 struct mlx5_port_module_event_stats pme_stats;
d9aaed83
AK
692
693#ifdef CONFIG_INFINIBAND_ON_DEMAND_PAGING
694 void (*pfault)(struct mlx5_core_dev *dev,
695 void *context,
696 struct mlx5_pagefault *pfault);
697 void *pfault_ctx;
698 struct srcu_struct pfault_srcu;
699#endif
a6d51b68 700 struct mlx5_bfreg_data bfregs;
01187175 701 struct mlx5_uars_page *uar;
e126ba97
EC
702};
703
89d44f0a
MD
704enum mlx5_device_state {
705 MLX5_DEVICE_STATE_UP,
706 MLX5_DEVICE_STATE_INTERNAL_ERROR,
707};
708
709enum mlx5_interface_state {
b3cb5388 710 MLX5_INTERFACE_STATE_UP = BIT(0),
89d44f0a
MD
711};
712
713enum mlx5_pci_status {
714 MLX5_PCI_STATUS_DISABLED,
715 MLX5_PCI_STATUS_ENABLED,
716};
717
d9aaed83
AK
718enum mlx5_pagefault_type_flags {
719 MLX5_PFAULT_REQUESTOR = 1 << 0,
720 MLX5_PFAULT_WRITE = 1 << 1,
721 MLX5_PFAULT_RDMA = 1 << 2,
722};
723
724/* Contains the details of a pagefault. */
725struct mlx5_pagefault {
726 u32 bytes_committed;
727 u32 token;
728 u8 event_subtype;
729 u8 type;
730 union {
731 /* Initiator or send message responder pagefault details. */
732 struct {
733 /* Received packet size, only valid for responders. */
734 u32 packet_size;
735 /*
736 * Number of resource holding WQE, depends on type.
737 */
738 u32 wq_num;
739 /*
740 * WQE index. Refers to either the send queue or
741 * receive queue, according to event_subtype.
742 */
743 u16 wqe_index;
744 } wqe;
745 /* RDMA responder pagefault details */
746 struct {
747 u32 r_key;
748 /*
749 * Received packet size, minimal size page fault
750 * resolution required for forward progress.
751 */
752 u32 packet_size;
753 u32 rdma_op_len;
754 u64 rdma_va;
755 } rdma;
756 };
757
758 struct mlx5_eq *eq;
759 struct work_struct work;
760};
761
b50d292b
HHZ
762struct mlx5_td {
763 struct list_head tirs_list;
764 u32 tdn;
765};
766
767struct mlx5e_resources {
b50d292b
HHZ
768 u32 pdn;
769 struct mlx5_td td;
770 struct mlx5_core_mkey mkey;
aff26157 771 struct mlx5_sq_bfreg bfreg;
b50d292b
HHZ
772};
773
52ec462e
IT
774#define MLX5_MAX_RESERVED_GIDS 8
775
776struct mlx5_rsvd_gids {
777 unsigned int start;
778 unsigned int count;
779 struct ida ida;
780};
781
7c39afb3
FD
782#define MAX_PIN_NUM 8
783struct mlx5_pps {
784 u8 pin_caps[MAX_PIN_NUM];
785 struct work_struct out_work;
786 u64 start[MAX_PIN_NUM];
787 u8 enabled;
788};
789
790struct mlx5_clock {
791 rwlock_t lock;
792 struct cyclecounter cycles;
793 struct timecounter tc;
794 struct hwtstamp_config hwtstamp_config;
795 u32 nominal_c_mult;
796 unsigned long overflow_period;
797 struct delayed_work overflow_work;
24d33d2c 798 struct mlx5_core_dev *mdev;
7c39afb3
FD
799 struct ptp_clock *ptp;
800 struct ptp_clock_info ptp_info;
801 struct mlx5_pps pps_info;
802};
803
e126ba97
EC
804struct mlx5_core_dev {
805 struct pci_dev *pdev;
89d44f0a
MD
806 /* sync pci state */
807 struct mutex pci_status_mutex;
808 enum mlx5_pci_status pci_status;
e126ba97
EC
809 u8 rev_id;
810 char board_id[MLX5_BOARD_ID_LEN];
811 struct mlx5_cmd cmd;
938fe83c 812 struct mlx5_port_caps port_caps[MLX5_MAX_PORTS];
71862561 813 struct {
701052c5
GP
814 u32 hca_cur[MLX5_CAP_NUM][MLX5_UN_SZ_DW(hca_cap_union)];
815 u32 hca_max[MLX5_CAP_NUM][MLX5_UN_SZ_DW(hca_cap_union)];
71862561
GP
816 u32 pcam[MLX5_ST_SZ_DW(pcam_reg)];
817 u32 mcam[MLX5_ST_SZ_DW(mcam_reg)];
99d3cd27 818 u32 fpga[MLX5_ST_SZ_DW(fpga_cap)];
c02762eb 819 u32 qcam[MLX5_ST_SZ_DW(qcam_reg)];
71862561 820 } caps;
e126ba97
EC
821 phys_addr_t iseg_base;
822 struct mlx5_init_seg __iomem *iseg;
89d44f0a
MD
823 enum mlx5_device_state state;
824 /* sync interface state */
825 struct mutex intf_state_mutex;
5fc7197d 826 unsigned long intf_state;
e126ba97
EC
827 void (*event) (struct mlx5_core_dev *dev,
828 enum mlx5_dev_event event,
4d2f9bbb 829 unsigned long param);
e126ba97
EC
830 struct mlx5_priv priv;
831 struct mlx5_profile *profile;
832 atomic_t num_qps;
f62b8bb8 833 u32 issi;
b50d292b 834 struct mlx5e_resources mlx5e_res;
52ec462e
IT
835 struct {
836 struct mlx5_rsvd_gids reserved_gids;
734dc065 837 u32 roce_en;
52ec462e 838 } roce;
e29341fb
IT
839#ifdef CONFIG_MLX5_FPGA
840 struct mlx5_fpga_device *fpga;
841#endif
5a7b27eb
MG
842#ifdef CONFIG_RFS_ACCEL
843 struct cpu_rmap *rmap;
844#endif
7c39afb3 845 struct mlx5_clock clock;
24d33d2c
FD
846 struct mlx5_ib_clock_info *clock_info;
847 struct page *clock_info_page;
e126ba97
EC
848};
849
850struct mlx5_db {
851 __be32 *db;
852 union {
853 struct mlx5_db_pgdir *pgdir;
854 struct mlx5_ib_user_db_page *user_page;
855 } u;
856 dma_addr_t dma;
857 int index;
858};
859
e126ba97
EC
860enum {
861 MLX5_COMP_EQ_SIZE = 1024,
862};
863
adb0c954
SM
864enum {
865 MLX5_PTYS_IB = 1 << 0,
866 MLX5_PTYS_EN = 1 << 2,
867};
868
e126ba97
EC
869typedef void (*mlx5_cmd_cbk_t)(int status, void *context);
870
73dd3a48
MHY
871enum {
872 MLX5_CMD_ENT_STATE_PENDING_COMP,
873};
874
e126ba97 875struct mlx5_cmd_work_ent {
73dd3a48 876 unsigned long state;
e126ba97
EC
877 struct mlx5_cmd_msg *in;
878 struct mlx5_cmd_msg *out;
746b5583
EC
879 void *uout;
880 int uout_size;
e126ba97 881 mlx5_cmd_cbk_t callback;
65ee6708 882 struct delayed_work cb_timeout_work;
e126ba97 883 void *context;
746b5583 884 int idx;
e126ba97
EC
885 struct completion done;
886 struct mlx5_cmd *cmd;
887 struct work_struct work;
888 struct mlx5_cmd_layout *lay;
889 int ret;
890 int page_queue;
891 u8 status;
892 u8 token;
14a70046
TG
893 u64 ts1;
894 u64 ts2;
746b5583 895 u16 op;
4525abea 896 bool polling;
e126ba97
EC
897};
898
899struct mlx5_pas {
900 u64 pa;
901 u8 log_sz;
902};
903
707c4602
MD
904enum phy_port_state {
905 MLX5_AAA_111
906};
907
908struct mlx5_hca_vport_context {
909 u32 field_select;
910 bool sm_virt_aware;
911 bool has_smi;
912 bool has_raw;
913 enum port_state_policy policy;
914 enum phy_port_state phys_state;
915 enum ib_port_state vport_state;
916 u8 port_physical_state;
917 u64 sys_image_guid;
918 u64 port_guid;
919 u64 node_guid;
920 u32 cap_mask1;
921 u32 cap_mask1_perm;
922 u32 cap_mask2;
923 u32 cap_mask2_perm;
924 u16 lid;
925 u8 init_type_reply; /* bitmask: see ib spec 14.2.5.6 InitTypeReply */
926 u8 lmc;
927 u8 subnet_timeout;
928 u16 sm_lid;
929 u8 sm_sl;
930 u16 qkey_violation_counter;
931 u16 pkey_violation_counter;
932 bool grh_required;
933};
934
e126ba97
EC
935static inline void *mlx5_buf_offset(struct mlx5_buf *buf, int offset)
936{
e126ba97 937 return buf->direct.buf + offset;
e126ba97
EC
938}
939
e126ba97
EC
940#define STRUCT_FIELD(header, field) \
941 .struct_offset_bytes = offsetof(struct ib_unpacked_ ## header, field), \
942 .struct_size_bytes = sizeof((struct ib_unpacked_ ## header *)0)->field
943
e126ba97
EC
944static inline struct mlx5_core_dev *pci2mlx5_core_dev(struct pci_dev *pdev)
945{
946 return pci_get_drvdata(pdev);
947}
948
949extern struct dentry *mlx5_debugfs_root;
950
951static inline u16 fw_rev_maj(struct mlx5_core_dev *dev)
952{
953 return ioread32be(&dev->iseg->fw_rev) & 0xffff;
954}
955
956static inline u16 fw_rev_min(struct mlx5_core_dev *dev)
957{
958 return ioread32be(&dev->iseg->fw_rev) >> 16;
959}
960
961static inline u16 fw_rev_sub(struct mlx5_core_dev *dev)
962{
963 return ioread32be(&dev->iseg->cmdif_rev_fw_sub) & 0xffff;
964}
965
966static inline u16 cmdif_rev(struct mlx5_core_dev *dev)
967{
968 return ioread32be(&dev->iseg->cmdif_rev_fw_sub) >> 16;
969}
970
3bcdb17a
SG
971static inline u32 mlx5_base_mkey(const u32 key)
972{
973 return key & 0xffffff00u;
974}
975
e126ba97
EC
976int mlx5_cmd_init(struct mlx5_core_dev *dev);
977void mlx5_cmd_cleanup(struct mlx5_core_dev *dev);
978void mlx5_cmd_use_events(struct mlx5_core_dev *dev);
979void mlx5_cmd_use_polling(struct mlx5_core_dev *dev);
c4f287c4 980
e126ba97
EC
981int mlx5_cmd_exec(struct mlx5_core_dev *dev, void *in, int in_size, void *out,
982 int out_size);
746b5583
EC
983int mlx5_cmd_exec_cb(struct mlx5_core_dev *dev, void *in, int in_size,
984 void *out, int out_size, mlx5_cmd_cbk_t callback,
985 void *context);
4525abea
MD
986int mlx5_cmd_exec_polling(struct mlx5_core_dev *dev, void *in, int in_size,
987 void *out, int out_size);
c4f287c4
SM
988void mlx5_cmd_mbox_status(void *out, u8 *status, u32 *syndrome);
989
990int mlx5_core_get_caps(struct mlx5_core_dev *dev, enum mlx5_cap_type cap_type);
e126ba97
EC
991int mlx5_cmd_alloc_uar(struct mlx5_core_dev *dev, u32 *uarn);
992int mlx5_cmd_free_uar(struct mlx5_core_dev *dev, u32 uarn);
ac6ea6e8
EC
993void mlx5_health_cleanup(struct mlx5_core_dev *dev);
994int mlx5_health_init(struct mlx5_core_dev *dev);
e126ba97
EC
995void mlx5_start_health_poll(struct mlx5_core_dev *dev);
996void mlx5_stop_health_poll(struct mlx5_core_dev *dev);
05ac2c0b 997void mlx5_drain_health_wq(struct mlx5_core_dev *dev);
0179720d 998void mlx5_trigger_health_work(struct mlx5_core_dev *dev);
2a0165a0 999void mlx5_drain_health_recovery(struct mlx5_core_dev *dev);
311c7c71
SM
1000int mlx5_buf_alloc_node(struct mlx5_core_dev *dev, int size,
1001 struct mlx5_buf *buf, int node);
64ffaa21 1002int mlx5_buf_alloc(struct mlx5_core_dev *dev, int size, struct mlx5_buf *buf);
e126ba97 1003void mlx5_buf_free(struct mlx5_core_dev *dev, struct mlx5_buf *buf);
1c1b5228
TT
1004int mlx5_frag_buf_alloc_node(struct mlx5_core_dev *dev, int size,
1005 struct mlx5_frag_buf *buf, int node);
1006void mlx5_frag_buf_free(struct mlx5_core_dev *dev, struct mlx5_frag_buf *buf);
e126ba97
EC
1007struct mlx5_cmd_mailbox *mlx5_alloc_cmd_mailbox_chain(struct mlx5_core_dev *dev,
1008 gfp_t flags, int npages);
1009void mlx5_free_cmd_mailbox_chain(struct mlx5_core_dev *dev,
1010 struct mlx5_cmd_mailbox *head);
1011int mlx5_core_create_srq(struct mlx5_core_dev *dev, struct mlx5_core_srq *srq,
af1ba291 1012 struct mlx5_srq_attr *in);
e126ba97
EC
1013int mlx5_core_destroy_srq(struct mlx5_core_dev *dev, struct mlx5_core_srq *srq);
1014int mlx5_core_query_srq(struct mlx5_core_dev *dev, struct mlx5_core_srq *srq,
af1ba291 1015 struct mlx5_srq_attr *out);
e126ba97
EC
1016int mlx5_core_arm_srq(struct mlx5_core_dev *dev, struct mlx5_core_srq *srq,
1017 u16 lwm, int is_srq);
a606b0f6
MB
1018void mlx5_init_mkey_table(struct mlx5_core_dev *dev);
1019void mlx5_cleanup_mkey_table(struct mlx5_core_dev *dev);
ec22eb53
SM
1020int mlx5_core_create_mkey_cb(struct mlx5_core_dev *dev,
1021 struct mlx5_core_mkey *mkey,
1022 u32 *in, int inlen,
1023 u32 *out, int outlen,
1024 mlx5_cmd_cbk_t callback, void *context);
a606b0f6
MB
1025int mlx5_core_create_mkey(struct mlx5_core_dev *dev,
1026 struct mlx5_core_mkey *mkey,
ec22eb53 1027 u32 *in, int inlen);
a606b0f6
MB
1028int mlx5_core_destroy_mkey(struct mlx5_core_dev *dev,
1029 struct mlx5_core_mkey *mkey);
1030int mlx5_core_query_mkey(struct mlx5_core_dev *dev, struct mlx5_core_mkey *mkey,
ec22eb53 1031 u32 *out, int outlen);
a606b0f6 1032int mlx5_core_dump_fill_mkey(struct mlx5_core_dev *dev, struct mlx5_core_mkey *_mkey,
e126ba97
EC
1033 u32 *mkey);
1034int mlx5_core_alloc_pd(struct mlx5_core_dev *dev, u32 *pdn);
1035int mlx5_core_dealloc_pd(struct mlx5_core_dev *dev, u32 pdn);
a97e2d86 1036int mlx5_core_mad_ifc(struct mlx5_core_dev *dev, const void *inb, void *outb,
f241e749 1037 u16 opmod, u8 port);
e126ba97
EC
1038void mlx5_pagealloc_init(struct mlx5_core_dev *dev);
1039void mlx5_pagealloc_cleanup(struct mlx5_core_dev *dev);
1040int mlx5_pagealloc_start(struct mlx5_core_dev *dev);
1041void mlx5_pagealloc_stop(struct mlx5_core_dev *dev);
1042void mlx5_core_req_pages_handler(struct mlx5_core_dev *dev, u16 func_id,
0a324f31 1043 s32 npages);
cd23b14b 1044int mlx5_satisfy_startup_pages(struct mlx5_core_dev *dev, int boot);
e126ba97
EC
1045int mlx5_reclaim_startup_pages(struct mlx5_core_dev *dev);
1046void mlx5_register_debugfs(void);
1047void mlx5_unregister_debugfs(void);
e126ba97 1048void mlx5_fill_page_array(struct mlx5_buf *buf, __be64 *pas);
1c1b5228 1049void mlx5_fill_page_frag_array(struct mlx5_frag_buf *frag_buf, __be64 *pas);
5903325a 1050void mlx5_rsc_event(struct mlx5_core_dev *dev, u32 rsn, int event_type);
e126ba97
EC
1051void mlx5_srq_event(struct mlx5_core_dev *dev, u32 srqn, int event_type);
1052struct mlx5_core_srq *mlx5_core_get_srq(struct mlx5_core_dev *dev, u32 srqn);
0b6e26ce
DT
1053int mlx5_vector2eqn(struct mlx5_core_dev *dev, int vector, int *eqn,
1054 unsigned int *irqn);
e126ba97
EC
1055int mlx5_core_attach_mcg(struct mlx5_core_dev *dev, union ib_gid *mgid, u32 qpn);
1056int mlx5_core_detach_mcg(struct mlx5_core_dev *dev, union ib_gid *mgid, u32 qpn);
1057
1058int mlx5_qp_debugfs_init(struct mlx5_core_dev *dev);
1059void mlx5_qp_debugfs_cleanup(struct mlx5_core_dev *dev);
1060int mlx5_core_access_reg(struct mlx5_core_dev *dev, void *data_in,
1061 int size_in, void *data_out, int size_out,
1062 u16 reg_num, int arg, int write);
adb0c954 1063
e126ba97 1064int mlx5_db_alloc(struct mlx5_core_dev *dev, struct mlx5_db *db);
311c7c71
SM
1065int mlx5_db_alloc_node(struct mlx5_core_dev *dev, struct mlx5_db *db,
1066 int node);
e126ba97
EC
1067void mlx5_db_free(struct mlx5_core_dev *dev, struct mlx5_db *db);
1068
e126ba97
EC
1069const char *mlx5_command_str(int command);
1070int mlx5_cmdif_debugfs_init(struct mlx5_core_dev *dev);
1071void mlx5_cmdif_debugfs_cleanup(struct mlx5_core_dev *dev);
3121e3c4
SG
1072int mlx5_core_create_psv(struct mlx5_core_dev *dev, u32 pdn,
1073 int npsvs, u32 *sig_index);
1074int mlx5_core_destroy_psv(struct mlx5_core_dev *dev, int psv_num);
5903325a 1075void mlx5_core_put_rsc(struct mlx5_core_rsc_common *common);
e420f0c0
HE
1076int mlx5_query_odp_caps(struct mlx5_core_dev *dev,
1077 struct mlx5_odp_caps *odp_caps);
1c64bf6f
MY
1078int mlx5_core_query_ib_ppcnt(struct mlx5_core_dev *dev,
1079 u8 port_num, void *out, size_t sz);
d9aaed83
AK
1080#ifdef CONFIG_INFINIBAND_ON_DEMAND_PAGING
1081int mlx5_core_page_fault_resume(struct mlx5_core_dev *dev, u32 token,
1082 u32 wq_num, u8 type, int error);
1083#endif
e126ba97 1084
1466cc5b
YP
1085int mlx5_init_rl_table(struct mlx5_core_dev *dev);
1086void mlx5_cleanup_rl_table(struct mlx5_core_dev *dev);
1087int mlx5_rl_add_rate(struct mlx5_core_dev *dev, u32 rate, u16 *index);
1088void mlx5_rl_remove_rate(struct mlx5_core_dev *dev, u32 rate);
1089bool mlx5_rl_is_in_range(struct mlx5_core_dev *dev, u32 rate);
a6d51b68
EC
1090int mlx5_alloc_bfreg(struct mlx5_core_dev *mdev, struct mlx5_sq_bfreg *bfreg,
1091 bool map_wc, bool fast_path);
1092void mlx5_free_bfreg(struct mlx5_core_dev *mdev, struct mlx5_sq_bfreg *bfreg);
1466cc5b 1093
52ec462e
IT
1094unsigned int mlx5_core_reserved_gids_count(struct mlx5_core_dev *dev);
1095int mlx5_core_roce_gid_set(struct mlx5_core_dev *dev, unsigned int index,
1096 u8 roce_version, u8 roce_l3_type, const u8 *gid,
cfe4e37f 1097 const u8 *mac, bool vlan, u16 vlan_id, u8 port_num);
52ec462e 1098
e3297246
EC
1099static inline int fw_initializing(struct mlx5_core_dev *dev)
1100{
1101 return ioread32be(&dev->iseg->initializing) >> 31;
1102}
1103
e126ba97
EC
1104static inline u32 mlx5_mkey_to_idx(u32 mkey)
1105{
1106 return mkey >> 8;
1107}
1108
1109static inline u32 mlx5_idx_to_mkey(u32 mkey_idx)
1110{
1111 return mkey_idx << 8;
1112}
1113
746b5583
EC
1114static inline u8 mlx5_mkey_variant(u32 mkey)
1115{
1116 return mkey & 0xff;
1117}
1118
e126ba97
EC
1119enum {
1120 MLX5_PROF_MASK_QP_SIZE = (u64)1 << 0,
c1868b82 1121 MLX5_PROF_MASK_MR_CACHE = (u64)1 << 1,
e126ba97
EC
1122};
1123
1124enum {
8b7ff7f3 1125 MR_CACHE_LAST_STD_ENTRY = 20,
81713d37
AK
1126 MLX5_IMR_MTT_CACHE_ENTRY,
1127 MLX5_IMR_KSM_CACHE_ENTRY,
49780d42 1128 MAX_MR_CACHE_ENTRIES
e126ba97
EC
1129};
1130
64613d94
SM
1131enum {
1132 MLX5_INTERFACE_PROTOCOL_IB = 0,
1133 MLX5_INTERFACE_PROTOCOL_ETH = 1,
1134};
1135
9603b61d
JM
1136struct mlx5_interface {
1137 void * (*add)(struct mlx5_core_dev *dev);
1138 void (*remove)(struct mlx5_core_dev *dev, void *context);
737a234b
MHY
1139 int (*attach)(struct mlx5_core_dev *dev, void *context);
1140 void (*detach)(struct mlx5_core_dev *dev, void *context);
9603b61d 1141 void (*event)(struct mlx5_core_dev *dev, void *context,
4d2f9bbb 1142 enum mlx5_dev_event event, unsigned long param);
d9aaed83
AK
1143 void (*pfault)(struct mlx5_core_dev *dev,
1144 void *context,
1145 struct mlx5_pagefault *pfault);
64613d94
SM
1146 void * (*get_dev)(void *context);
1147 int protocol;
9603b61d
JM
1148 struct list_head list;
1149};
1150
64613d94 1151void *mlx5_get_protocol_dev(struct mlx5_core_dev *mdev, int protocol);
9603b61d
JM
1152int mlx5_register_interface(struct mlx5_interface *intf);
1153void mlx5_unregister_interface(struct mlx5_interface *intf);
211e6c80 1154int mlx5_core_query_vendor_id(struct mlx5_core_dev *mdev, u32 *vendor_id);
9603b61d 1155
3bc34f3b
AH
1156int mlx5_cmd_create_vport_lag(struct mlx5_core_dev *dev);
1157int mlx5_cmd_destroy_vport_lag(struct mlx5_core_dev *dev);
7907f23a 1158bool mlx5_lag_is_active(struct mlx5_core_dev *dev);
6a32047a 1159struct net_device *mlx5_lag_get_roce_netdev(struct mlx5_core_dev *dev);
71a0ff65
MD
1160int mlx5_lag_query_cong_counters(struct mlx5_core_dev *dev,
1161 u64 *values,
1162 int num_counters,
1163 size_t *offsets);
01187175
EC
1164struct mlx5_uars_page *mlx5_get_uars_page(struct mlx5_core_dev *mdev);
1165void mlx5_put_uars_page(struct mlx5_core_dev *mdev, struct mlx5_uars_page *up);
7907f23a 1166
693dfd5a
ES
1167#ifndef CONFIG_MLX5_CORE_IPOIB
1168static inline
1169struct net_device *mlx5_rdma_netdev_alloc(struct mlx5_core_dev *mdev,
1170 struct ib_device *ibdev,
1171 const char *name,
1172 void (*setup)(struct net_device *))
1173{
1174 return ERR_PTR(-EOPNOTSUPP);
1175}
1176
1177static inline void mlx5_rdma_netdev_free(struct net_device *netdev) {}
1178#else
1179struct net_device *mlx5_rdma_netdev_alloc(struct mlx5_core_dev *mdev,
1180 struct ib_device *ibdev,
1181 const char *name,
1182 void (*setup)(struct net_device *));
1183void mlx5_rdma_netdev_free(struct net_device *netdev);
1184#endif /* CONFIG_MLX5_CORE_IPOIB */
1185
e126ba97
EC
1186struct mlx5_profile {
1187 u64 mask;
f241e749 1188 u8 log_max_qp;
e126ba97
EC
1189 struct {
1190 int size;
1191 int limit;
1192 } mr_cache[MAX_MR_CACHE_ENTRIES];
1193};
1194
fc50db98
EC
1195enum {
1196 MLX5_PCI_DEV_IS_VF = 1 << 0,
1197};
1198
1199static inline int mlx5_core_is_pf(struct mlx5_core_dev *dev)
1200{
1201 return !(dev->priv.pci_dev_data & MLX5_PCI_DEV_IS_VF);
1202}
1203
707c4602
MD
1204static inline int mlx5_get_gid_table_len(u16 param)
1205{
1206 if (param > 4) {
1207 pr_warn("gid table length is zero\n");
1208 return 0;
1209 }
1210
1211 return 8 * (1 << param);
1212}
1213
1466cc5b
YP
1214static inline bool mlx5_rl_is_supported(struct mlx5_core_dev *dev)
1215{
1216 return !!(dev->priv.rl_table.max_size);
1217}
1218
32f69e4b
DJ
1219static inline int mlx5_core_is_mp_slave(struct mlx5_core_dev *dev)
1220{
1221 return MLX5_CAP_GEN(dev, affiliate_nic_vport_criteria) &&
1222 MLX5_CAP_GEN(dev, num_vhca_ports) <= 1;
1223}
1224
1225static inline int mlx5_core_is_mp_master(struct mlx5_core_dev *dev)
1226{
1227 return MLX5_CAP_GEN(dev, num_vhca_ports) > 1;
1228}
1229
1230static inline int mlx5_core_mp_enabled(struct mlx5_core_dev *dev)
1231{
1232 return mlx5_core_is_mp_slave(dev) ||
1233 mlx5_core_is_mp_master(dev);
1234}
1235
7fd8aefb
DJ
1236static inline int mlx5_core_native_port_num(struct mlx5_core_dev *dev)
1237{
32f69e4b
DJ
1238 if (!mlx5_core_mp_enabled(dev))
1239 return 1;
1240
1241 return MLX5_CAP_GEN(dev, native_port_num);
7fd8aefb
DJ
1242}
1243
020446e0
EC
1244enum {
1245 MLX5_TRIGGERED_CMD_COMP = (u64)1 << 32,
1246};
1247
a435393a
SG
1248static inline const struct cpumask *
1249mlx5_get_vector_affinity(struct mlx5_core_dev *dev, int vector)
1250{
05e0cc84
SM
1251 const struct cpumask *mask;
1252 struct irq_desc *desc;
1253 unsigned int irq;
1254 int eqn;
1255 int err;
1256
2572cf57 1257 err = mlx5_vector2eqn(dev, MLX5_EQ_VEC_COMP_BASE + vector, &eqn, &irq);
05e0cc84
SM
1258 if (err)
1259 return NULL;
1260
1261 desc = irq_to_desc(irq);
1262#ifdef CONFIG_GENERIC_IRQ_EFFECTIVE_AFF_MASK
1263 mask = irq_data_get_effective_affinity_mask(&desc->irq_data);
1264#else
1265 mask = desc->irq_common_data.affinity;
1266#endif
1267 return mask;
a435393a
SG
1268}
1269
e126ba97 1270#endif /* MLX5_DRIVER_H */