]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blob - include/linux/mlx5/device.h
net/mlx5: EQ commands via mlx5 ifc
[mirror_ubuntu-bionic-kernel.git] / include / linux / mlx5 / device.h
1 /*
2 * Copyright (c) 2013-2015, Mellanox Technologies. All rights reserved.
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_DEVICE_H
34 #define MLX5_DEVICE_H
35
36 #include <linux/types.h>
37 #include <rdma/ib_verbs.h>
38 #include <linux/mlx5/mlx5_ifc.h>
39
40 #if defined(__LITTLE_ENDIAN)
41 #define MLX5_SET_HOST_ENDIANNESS 0
42 #elif defined(__BIG_ENDIAN)
43 #define MLX5_SET_HOST_ENDIANNESS 0x80
44 #else
45 #error Host endianness not defined
46 #endif
47
48 /* helper macros */
49 #define __mlx5_nullp(typ) ((struct mlx5_ifc_##typ##_bits *)0)
50 #define __mlx5_bit_sz(typ, fld) sizeof(__mlx5_nullp(typ)->fld)
51 #define __mlx5_bit_off(typ, fld) ((unsigned)(unsigned long)(&(__mlx5_nullp(typ)->fld)))
52 #define __mlx5_dw_off(typ, fld) (__mlx5_bit_off(typ, fld) / 32)
53 #define __mlx5_64_off(typ, fld) (__mlx5_bit_off(typ, fld) / 64)
54 #define __mlx5_dw_bit_off(typ, fld) (32 - __mlx5_bit_sz(typ, fld) - (__mlx5_bit_off(typ, fld) & 0x1f))
55 #define __mlx5_mask(typ, fld) ((u32)((1ull << __mlx5_bit_sz(typ, fld)) - 1))
56 #define __mlx5_dw_mask(typ, fld) (__mlx5_mask(typ, fld) << __mlx5_dw_bit_off(typ, fld))
57 #define __mlx5_st_sz_bits(typ) sizeof(struct mlx5_ifc_##typ##_bits)
58
59 #define MLX5_FLD_SZ_BYTES(typ, fld) (__mlx5_bit_sz(typ, fld) / 8)
60 #define MLX5_ST_SZ_BYTES(typ) (sizeof(struct mlx5_ifc_##typ##_bits) / 8)
61 #define MLX5_ST_SZ_DW(typ) (sizeof(struct mlx5_ifc_##typ##_bits) / 32)
62 #define MLX5_ST_SZ_QW(typ) (sizeof(struct mlx5_ifc_##typ##_bits) / 64)
63 #define MLX5_UN_SZ_BYTES(typ) (sizeof(union mlx5_ifc_##typ##_bits) / 8)
64 #define MLX5_UN_SZ_DW(typ) (sizeof(union mlx5_ifc_##typ##_bits) / 32)
65 #define MLX5_BYTE_OFF(typ, fld) (__mlx5_bit_off(typ, fld) / 8)
66 #define MLX5_ADDR_OF(typ, p, fld) ((char *)(p) + MLX5_BYTE_OFF(typ, fld))
67
68 /* insert a value to a struct */
69 #define MLX5_SET(typ, p, fld, v) do { \
70 BUILD_BUG_ON(__mlx5_st_sz_bits(typ) % 32); \
71 *((__be32 *)(p) + __mlx5_dw_off(typ, fld)) = \
72 cpu_to_be32((be32_to_cpu(*((__be32 *)(p) + __mlx5_dw_off(typ, fld))) & \
73 (~__mlx5_dw_mask(typ, fld))) | (((v) & __mlx5_mask(typ, fld)) \
74 << __mlx5_dw_bit_off(typ, fld))); \
75 } while (0)
76
77 #define MLX5_SET_TO_ONES(typ, p, fld) do { \
78 BUILD_BUG_ON(__mlx5_st_sz_bits(typ) % 32); \
79 *((__be32 *)(p) + __mlx5_dw_off(typ, fld)) = \
80 cpu_to_be32((be32_to_cpu(*((__be32 *)(p) + __mlx5_dw_off(typ, fld))) & \
81 (~__mlx5_dw_mask(typ, fld))) | ((__mlx5_mask(typ, fld)) \
82 << __mlx5_dw_bit_off(typ, fld))); \
83 } while (0)
84
85 #define MLX5_GET(typ, p, fld) ((be32_to_cpu(*((__be32 *)(p) +\
86 __mlx5_dw_off(typ, fld))) >> __mlx5_dw_bit_off(typ, fld)) & \
87 __mlx5_mask(typ, fld))
88
89 #define MLX5_GET_PR(typ, p, fld) ({ \
90 u32 ___t = MLX5_GET(typ, p, fld); \
91 pr_debug(#fld " = 0x%x\n", ___t); \
92 ___t; \
93 })
94
95 #define MLX5_SET64(typ, p, fld, v) do { \
96 BUILD_BUG_ON(__mlx5_bit_sz(typ, fld) != 64); \
97 BUILD_BUG_ON(__mlx5_bit_off(typ, fld) % 64); \
98 *((__be64 *)(p) + __mlx5_64_off(typ, fld)) = cpu_to_be64(v); \
99 } while (0)
100
101 #define MLX5_GET64(typ, p, fld) be64_to_cpu(*((__be64 *)(p) + __mlx5_64_off(typ, fld)))
102
103 #define MLX5_GET64_PR(typ, p, fld) ({ \
104 u64 ___t = MLX5_GET64(typ, p, fld); \
105 pr_debug(#fld " = 0x%llx\n", ___t); \
106 ___t; \
107 })
108
109 /* Big endian getters */
110 #define MLX5_GET64_BE(typ, p, fld) (*((__be64 *)(p) +\
111 __mlx5_64_off(typ, fld)))
112
113 #define MLX5_GET_BE(type_t, typ, p, fld) ({ \
114 type_t tmp; \
115 switch (sizeof(tmp)) { \
116 case sizeof(u8): \
117 tmp = (__force type_t)MLX5_GET(typ, p, fld); \
118 break; \
119 case sizeof(u16): \
120 tmp = (__force type_t)cpu_to_be16(MLX5_GET(typ, p, fld)); \
121 break; \
122 case sizeof(u32): \
123 tmp = (__force type_t)cpu_to_be32(MLX5_GET(typ, p, fld)); \
124 break; \
125 case sizeof(u64): \
126 tmp = (__force type_t)MLX5_GET64_BE(typ, p, fld); \
127 break; \
128 } \
129 tmp; \
130 })
131
132 enum mlx5_inline_modes {
133 MLX5_INLINE_MODE_NONE,
134 MLX5_INLINE_MODE_L2,
135 MLX5_INLINE_MODE_IP,
136 MLX5_INLINE_MODE_TCP_UDP,
137 };
138
139 enum {
140 MLX5_MAX_COMMANDS = 32,
141 MLX5_CMD_DATA_BLOCK_SIZE = 512,
142 MLX5_PCI_CMD_XPORT = 7,
143 MLX5_MKEY_BSF_OCTO_SIZE = 4,
144 MLX5_MAX_PSVS = 4,
145 };
146
147 enum {
148 MLX5_EXTENDED_UD_AV = 0x80000000,
149 };
150
151 enum {
152 MLX5_CQ_STATE_ARMED = 9,
153 MLX5_CQ_STATE_ALWAYS_ARMED = 0xb,
154 MLX5_CQ_STATE_FIRED = 0xa,
155 };
156
157 enum {
158 MLX5_STAT_RATE_OFFSET = 5,
159 };
160
161 enum {
162 MLX5_INLINE_SEG = 0x80000000,
163 };
164
165 enum {
166 MLX5_HW_START_PADDING = MLX5_INLINE_SEG,
167 };
168
169 enum {
170 MLX5_MIN_PKEY_TABLE_SIZE = 128,
171 MLX5_MAX_LOG_PKEY_TABLE = 5,
172 };
173
174 enum {
175 MLX5_MKEY_INBOX_PG_ACCESS = 1 << 31
176 };
177
178 enum {
179 MLX5_PFAULT_SUBTYPE_WQE = 0,
180 MLX5_PFAULT_SUBTYPE_RDMA = 1,
181 };
182
183 enum {
184 MLX5_PERM_LOCAL_READ = 1 << 2,
185 MLX5_PERM_LOCAL_WRITE = 1 << 3,
186 MLX5_PERM_REMOTE_READ = 1 << 4,
187 MLX5_PERM_REMOTE_WRITE = 1 << 5,
188 MLX5_PERM_ATOMIC = 1 << 6,
189 MLX5_PERM_UMR_EN = 1 << 7,
190 };
191
192 enum {
193 MLX5_PCIE_CTRL_SMALL_FENCE = 1 << 0,
194 MLX5_PCIE_CTRL_RELAXED_ORDERING = 1 << 2,
195 MLX5_PCIE_CTRL_NO_SNOOP = 1 << 3,
196 MLX5_PCIE_CTRL_TLP_PROCE_EN = 1 << 6,
197 MLX5_PCIE_CTRL_TPH_MASK = 3 << 4,
198 };
199
200 enum {
201 MLX5_ACCESS_MODE_PA = 0,
202 MLX5_ACCESS_MODE_MTT = 1,
203 MLX5_ACCESS_MODE_KLM = 2
204 };
205
206 enum {
207 MLX5_MKEY_REMOTE_INVAL = 1 << 24,
208 MLX5_MKEY_FLAG_SYNC_UMR = 1 << 29,
209 MLX5_MKEY_BSF_EN = 1 << 30,
210 MLX5_MKEY_LEN64 = 1 << 31,
211 };
212
213 enum {
214 MLX5_EN_RD = (u64)1,
215 MLX5_EN_WR = (u64)2
216 };
217
218 enum {
219 MLX5_BF_REGS_PER_PAGE = 4,
220 MLX5_MAX_UAR_PAGES = 1 << 8,
221 MLX5_NON_FP_BF_REGS_PER_PAGE = 2,
222 MLX5_MAX_UUARS = MLX5_MAX_UAR_PAGES * MLX5_NON_FP_BF_REGS_PER_PAGE,
223 };
224
225 enum {
226 MLX5_MKEY_MASK_LEN = 1ull << 0,
227 MLX5_MKEY_MASK_PAGE_SIZE = 1ull << 1,
228 MLX5_MKEY_MASK_START_ADDR = 1ull << 6,
229 MLX5_MKEY_MASK_PD = 1ull << 7,
230 MLX5_MKEY_MASK_EN_RINVAL = 1ull << 8,
231 MLX5_MKEY_MASK_EN_SIGERR = 1ull << 9,
232 MLX5_MKEY_MASK_BSF_EN = 1ull << 12,
233 MLX5_MKEY_MASK_KEY = 1ull << 13,
234 MLX5_MKEY_MASK_QPN = 1ull << 14,
235 MLX5_MKEY_MASK_LR = 1ull << 17,
236 MLX5_MKEY_MASK_LW = 1ull << 18,
237 MLX5_MKEY_MASK_RR = 1ull << 19,
238 MLX5_MKEY_MASK_RW = 1ull << 20,
239 MLX5_MKEY_MASK_A = 1ull << 21,
240 MLX5_MKEY_MASK_SMALL_FENCE = 1ull << 23,
241 MLX5_MKEY_MASK_FREE = 1ull << 29,
242 };
243
244 enum {
245 MLX5_UMR_TRANSLATION_OFFSET_EN = (1 << 4),
246
247 MLX5_UMR_CHECK_NOT_FREE = (1 << 5),
248 MLX5_UMR_CHECK_FREE = (2 << 5),
249
250 MLX5_UMR_INLINE = (1 << 7),
251 };
252
253 #define MLX5_UMR_MTT_ALIGNMENT 0x40
254 #define MLX5_UMR_MTT_MASK (MLX5_UMR_MTT_ALIGNMENT - 1)
255 #define MLX5_UMR_MTT_MIN_CHUNK_SIZE MLX5_UMR_MTT_ALIGNMENT
256
257 #define MLX5_USER_INDEX_LEN (MLX5_FLD_SZ_BYTES(qpc, user_index) * 8)
258
259 enum {
260 MLX5_EVENT_QUEUE_TYPE_QP = 0,
261 MLX5_EVENT_QUEUE_TYPE_RQ = 1,
262 MLX5_EVENT_QUEUE_TYPE_SQ = 2,
263 };
264
265 enum mlx5_event {
266 MLX5_EVENT_TYPE_COMP = 0x0,
267
268 MLX5_EVENT_TYPE_PATH_MIG = 0x01,
269 MLX5_EVENT_TYPE_COMM_EST = 0x02,
270 MLX5_EVENT_TYPE_SQ_DRAINED = 0x03,
271 MLX5_EVENT_TYPE_SRQ_LAST_WQE = 0x13,
272 MLX5_EVENT_TYPE_SRQ_RQ_LIMIT = 0x14,
273
274 MLX5_EVENT_TYPE_CQ_ERROR = 0x04,
275 MLX5_EVENT_TYPE_WQ_CATAS_ERROR = 0x05,
276 MLX5_EVENT_TYPE_PATH_MIG_FAILED = 0x07,
277 MLX5_EVENT_TYPE_WQ_INVAL_REQ_ERROR = 0x10,
278 MLX5_EVENT_TYPE_WQ_ACCESS_ERROR = 0x11,
279 MLX5_EVENT_TYPE_SRQ_CATAS_ERROR = 0x12,
280
281 MLX5_EVENT_TYPE_INTERNAL_ERROR = 0x08,
282 MLX5_EVENT_TYPE_PORT_CHANGE = 0x09,
283 MLX5_EVENT_TYPE_GPIO_EVENT = 0x15,
284 MLX5_EVENT_TYPE_REMOTE_CONFIG = 0x19,
285
286 MLX5_EVENT_TYPE_DB_BF_CONGESTION = 0x1a,
287 MLX5_EVENT_TYPE_STALL_EVENT = 0x1b,
288
289 MLX5_EVENT_TYPE_CMD = 0x0a,
290 MLX5_EVENT_TYPE_PAGE_REQUEST = 0xb,
291
292 MLX5_EVENT_TYPE_PAGE_FAULT = 0xc,
293 MLX5_EVENT_TYPE_NIC_VPORT_CHANGE = 0xd,
294 };
295
296 enum {
297 MLX5_PORT_CHANGE_SUBTYPE_DOWN = 1,
298 MLX5_PORT_CHANGE_SUBTYPE_ACTIVE = 4,
299 MLX5_PORT_CHANGE_SUBTYPE_INITIALIZED = 5,
300 MLX5_PORT_CHANGE_SUBTYPE_LID = 6,
301 MLX5_PORT_CHANGE_SUBTYPE_PKEY = 7,
302 MLX5_PORT_CHANGE_SUBTYPE_GUID = 8,
303 MLX5_PORT_CHANGE_SUBTYPE_CLIENT_REREG = 9,
304 };
305
306 enum {
307 MLX5_DEV_CAP_FLAG_XRC = 1LL << 3,
308 MLX5_DEV_CAP_FLAG_BAD_PKEY_CNTR = 1LL << 8,
309 MLX5_DEV_CAP_FLAG_BAD_QKEY_CNTR = 1LL << 9,
310 MLX5_DEV_CAP_FLAG_APM = 1LL << 17,
311 MLX5_DEV_CAP_FLAG_ATOMIC = 1LL << 18,
312 MLX5_DEV_CAP_FLAG_BLOCK_MCAST = 1LL << 23,
313 MLX5_DEV_CAP_FLAG_ON_DMND_PG = 1LL << 24,
314 MLX5_DEV_CAP_FLAG_CQ_MODER = 1LL << 29,
315 MLX5_DEV_CAP_FLAG_RESIZE_CQ = 1LL << 30,
316 MLX5_DEV_CAP_FLAG_DCT = 1LL << 37,
317 MLX5_DEV_CAP_FLAG_SIG_HAND_OVER = 1LL << 40,
318 MLX5_DEV_CAP_FLAG_CMDIF_CSUM = 3LL << 46,
319 };
320
321 enum {
322 MLX5_ROCE_VERSION_1 = 0,
323 MLX5_ROCE_VERSION_2 = 2,
324 };
325
326 enum {
327 MLX5_ROCE_VERSION_1_CAP = 1 << MLX5_ROCE_VERSION_1,
328 MLX5_ROCE_VERSION_2_CAP = 1 << MLX5_ROCE_VERSION_2,
329 };
330
331 enum {
332 MLX5_ROCE_L3_TYPE_IPV4 = 0,
333 MLX5_ROCE_L3_TYPE_IPV6 = 1,
334 };
335
336 enum {
337 MLX5_ROCE_L3_TYPE_IPV4_CAP = 1 << 1,
338 MLX5_ROCE_L3_TYPE_IPV6_CAP = 1 << 2,
339 };
340
341 enum {
342 MLX5_OPCODE_NOP = 0x00,
343 MLX5_OPCODE_SEND_INVAL = 0x01,
344 MLX5_OPCODE_RDMA_WRITE = 0x08,
345 MLX5_OPCODE_RDMA_WRITE_IMM = 0x09,
346 MLX5_OPCODE_SEND = 0x0a,
347 MLX5_OPCODE_SEND_IMM = 0x0b,
348 MLX5_OPCODE_LSO = 0x0e,
349 MLX5_OPCODE_RDMA_READ = 0x10,
350 MLX5_OPCODE_ATOMIC_CS = 0x11,
351 MLX5_OPCODE_ATOMIC_FA = 0x12,
352 MLX5_OPCODE_ATOMIC_MASKED_CS = 0x14,
353 MLX5_OPCODE_ATOMIC_MASKED_FA = 0x15,
354 MLX5_OPCODE_BIND_MW = 0x18,
355 MLX5_OPCODE_CONFIG_CMD = 0x1f,
356
357 MLX5_RECV_OPCODE_RDMA_WRITE_IMM = 0x00,
358 MLX5_RECV_OPCODE_SEND = 0x01,
359 MLX5_RECV_OPCODE_SEND_IMM = 0x02,
360 MLX5_RECV_OPCODE_SEND_INVAL = 0x03,
361
362 MLX5_CQE_OPCODE_ERROR = 0x1e,
363 MLX5_CQE_OPCODE_RESIZE = 0x16,
364
365 MLX5_OPCODE_SET_PSV = 0x20,
366 MLX5_OPCODE_GET_PSV = 0x21,
367 MLX5_OPCODE_CHECK_PSV = 0x22,
368 MLX5_OPCODE_RGET_PSV = 0x26,
369 MLX5_OPCODE_RCHECK_PSV = 0x27,
370
371 MLX5_OPCODE_UMR = 0x25,
372
373 };
374
375 enum {
376 MLX5_SET_PORT_RESET_QKEY = 0,
377 MLX5_SET_PORT_GUID0 = 16,
378 MLX5_SET_PORT_NODE_GUID = 17,
379 MLX5_SET_PORT_SYS_GUID = 18,
380 MLX5_SET_PORT_GID_TABLE = 19,
381 MLX5_SET_PORT_PKEY_TABLE = 20,
382 };
383
384 enum {
385 MLX5_BW_NO_LIMIT = 0,
386 MLX5_100_MBPS_UNIT = 3,
387 MLX5_GBPS_UNIT = 4,
388 };
389
390 enum {
391 MLX5_MAX_PAGE_SHIFT = 31
392 };
393
394 enum {
395 MLX5_ADAPTER_PAGE_SHIFT = 12,
396 MLX5_ADAPTER_PAGE_SIZE = 1 << MLX5_ADAPTER_PAGE_SHIFT,
397 };
398
399 enum {
400 MLX5_CAP_OFF_CMDIF_CSUM = 46,
401 };
402
403 enum {
404 /*
405 * Max wqe size for rdma read is 512 bytes, so this
406 * limits our max_sge_rd as the wqe needs to fit:
407 * - ctrl segment (16 bytes)
408 * - rdma segment (16 bytes)
409 * - scatter elements (16 bytes each)
410 */
411 MLX5_MAX_SGE_RD = (512 - 16 - 16) / 16
412 };
413
414 struct mlx5_inbox_hdr {
415 __be16 opcode;
416 u8 rsvd[4];
417 __be16 opmod;
418 };
419
420 struct mlx5_outbox_hdr {
421 u8 status;
422 u8 rsvd[3];
423 __be32 syndrome;
424 };
425
426 struct mlx5_cmd_query_adapter_mbox_in {
427 struct mlx5_inbox_hdr hdr;
428 u8 rsvd[8];
429 };
430
431 struct mlx5_cmd_query_adapter_mbox_out {
432 struct mlx5_outbox_hdr hdr;
433 u8 rsvd0[24];
434 u8 intapin;
435 u8 rsvd1[13];
436 __be16 vsd_vendor_id;
437 u8 vsd[208];
438 u8 vsd_psid[16];
439 };
440
441 enum mlx5_odp_transport_cap_bits {
442 MLX5_ODP_SUPPORT_SEND = 1 << 31,
443 MLX5_ODP_SUPPORT_RECV = 1 << 30,
444 MLX5_ODP_SUPPORT_WRITE = 1 << 29,
445 MLX5_ODP_SUPPORT_READ = 1 << 28,
446 };
447
448 struct mlx5_odp_caps {
449 char reserved[0x10];
450 struct {
451 __be32 rc_odp_caps;
452 __be32 uc_odp_caps;
453 __be32 ud_odp_caps;
454 } per_transport_caps;
455 char reserved2[0xe4];
456 };
457
458 struct mlx5_cmd_layout {
459 u8 type;
460 u8 rsvd0[3];
461 __be32 inlen;
462 __be64 in_ptr;
463 __be32 in[4];
464 __be32 out[4];
465 __be64 out_ptr;
466 __be32 outlen;
467 u8 token;
468 u8 sig;
469 u8 rsvd1;
470 u8 status_own;
471 };
472
473
474 struct health_buffer {
475 __be32 assert_var[5];
476 __be32 rsvd0[3];
477 __be32 assert_exit_ptr;
478 __be32 assert_callra;
479 __be32 rsvd1[2];
480 __be32 fw_ver;
481 __be32 hw_id;
482 __be32 rsvd2;
483 u8 irisc_index;
484 u8 synd;
485 __be16 ext_synd;
486 };
487
488 struct mlx5_init_seg {
489 __be32 fw_rev;
490 __be32 cmdif_rev_fw_sub;
491 __be32 rsvd0[2];
492 __be32 cmdq_addr_h;
493 __be32 cmdq_addr_l_sz;
494 __be32 cmd_dbell;
495 __be32 rsvd1[120];
496 __be32 initializing;
497 struct health_buffer health;
498 __be32 rsvd2[880];
499 __be32 internal_timer_h;
500 __be32 internal_timer_l;
501 __be32 rsvd3[2];
502 __be32 health_counter;
503 __be32 rsvd4[1019];
504 __be64 ieee1588_clk;
505 __be32 ieee1588_clk_type;
506 __be32 clr_intx;
507 };
508
509 struct mlx5_eqe_comp {
510 __be32 reserved[6];
511 __be32 cqn;
512 };
513
514 struct mlx5_eqe_qp_srq {
515 __be32 reserved1[5];
516 u8 type;
517 u8 reserved2[3];
518 __be32 qp_srq_n;
519 };
520
521 struct mlx5_eqe_cq_err {
522 __be32 cqn;
523 u8 reserved1[7];
524 u8 syndrome;
525 };
526
527 struct mlx5_eqe_port_state {
528 u8 reserved0[8];
529 u8 port;
530 };
531
532 struct mlx5_eqe_gpio {
533 __be32 reserved0[2];
534 __be64 gpio_event;
535 };
536
537 struct mlx5_eqe_congestion {
538 u8 type;
539 u8 rsvd0;
540 u8 congestion_level;
541 };
542
543 struct mlx5_eqe_stall_vl {
544 u8 rsvd0[3];
545 u8 port_vl;
546 };
547
548 struct mlx5_eqe_cmd {
549 __be32 vector;
550 __be32 rsvd[6];
551 };
552
553 struct mlx5_eqe_page_req {
554 u8 rsvd0[2];
555 __be16 func_id;
556 __be32 num_pages;
557 __be32 rsvd1[5];
558 };
559
560 struct mlx5_eqe_page_fault {
561 __be32 bytes_committed;
562 union {
563 struct {
564 u16 reserved1;
565 __be16 wqe_index;
566 u16 reserved2;
567 __be16 packet_length;
568 u8 reserved3[12];
569 } __packed wqe;
570 struct {
571 __be32 r_key;
572 u16 reserved1;
573 __be16 packet_length;
574 __be32 rdma_op_len;
575 __be64 rdma_va;
576 } __packed rdma;
577 } __packed;
578 __be32 flags_qpn;
579 } __packed;
580
581 struct mlx5_eqe_vport_change {
582 u8 rsvd0[2];
583 __be16 vport_num;
584 __be32 rsvd1[6];
585 } __packed;
586
587 union ev_data {
588 __be32 raw[7];
589 struct mlx5_eqe_cmd cmd;
590 struct mlx5_eqe_comp comp;
591 struct mlx5_eqe_qp_srq qp_srq;
592 struct mlx5_eqe_cq_err cq_err;
593 struct mlx5_eqe_port_state port;
594 struct mlx5_eqe_gpio gpio;
595 struct mlx5_eqe_congestion cong;
596 struct mlx5_eqe_stall_vl stall_vl;
597 struct mlx5_eqe_page_req req_pages;
598 struct mlx5_eqe_page_fault page_fault;
599 struct mlx5_eqe_vport_change vport_change;
600 } __packed;
601
602 struct mlx5_eqe {
603 u8 rsvd0;
604 u8 type;
605 u8 rsvd1;
606 u8 sub_type;
607 __be32 rsvd2[7];
608 union ev_data data;
609 __be16 rsvd3;
610 u8 signature;
611 u8 owner;
612 } __packed;
613
614 struct mlx5_cmd_prot_block {
615 u8 data[MLX5_CMD_DATA_BLOCK_SIZE];
616 u8 rsvd0[48];
617 __be64 next;
618 __be32 block_num;
619 u8 rsvd1;
620 u8 token;
621 u8 ctrl_sig;
622 u8 sig;
623 };
624
625 enum {
626 MLX5_CQE_SYND_FLUSHED_IN_ERROR = 5,
627 };
628
629 struct mlx5_err_cqe {
630 u8 rsvd0[32];
631 __be32 srqn;
632 u8 rsvd1[18];
633 u8 vendor_err_synd;
634 u8 syndrome;
635 __be32 s_wqe_opcode_qpn;
636 __be16 wqe_counter;
637 u8 signature;
638 u8 op_own;
639 };
640
641 struct mlx5_cqe64 {
642 u8 outer_l3_tunneled;
643 u8 rsvd0;
644 __be16 wqe_id;
645 u8 lro_tcppsh_abort_dupack;
646 u8 lro_min_ttl;
647 __be16 lro_tcp_win;
648 __be32 lro_ack_seq_num;
649 __be32 rss_hash_result;
650 u8 rss_hash_type;
651 u8 ml_path;
652 u8 rsvd20[2];
653 __be16 check_sum;
654 __be16 slid;
655 __be32 flags_rqpn;
656 u8 hds_ip_ext;
657 u8 l4_l3_hdr_type;
658 __be16 vlan_info;
659 __be32 srqn; /* [31:24]: lro_num_seg, [23:0]: srqn */
660 __be32 imm_inval_pkey;
661 u8 rsvd40[4];
662 __be32 byte_cnt;
663 __be32 timestamp_h;
664 __be32 timestamp_l;
665 __be32 sop_drop_qpn;
666 __be16 wqe_counter;
667 u8 signature;
668 u8 op_own;
669 };
670
671 struct mlx5_mini_cqe8 {
672 union {
673 __be32 rx_hash_result;
674 struct {
675 __be16 checksum;
676 __be16 rsvd;
677 };
678 struct {
679 __be16 wqe_counter;
680 u8 s_wqe_opcode;
681 u8 reserved;
682 } s_wqe_info;
683 };
684 __be32 byte_cnt;
685 };
686
687 enum {
688 MLX5_NO_INLINE_DATA,
689 MLX5_INLINE_DATA32_SEG,
690 MLX5_INLINE_DATA64_SEG,
691 MLX5_COMPRESSED,
692 };
693
694 enum {
695 MLX5_CQE_FORMAT_CSUM = 0x1,
696 };
697
698 #define MLX5_MINI_CQE_ARRAY_SIZE 8
699
700 static inline int mlx5_get_cqe_format(struct mlx5_cqe64 *cqe)
701 {
702 return (cqe->op_own >> 2) & 0x3;
703 }
704
705 static inline int get_cqe_lro_tcppsh(struct mlx5_cqe64 *cqe)
706 {
707 return (cqe->lro_tcppsh_abort_dupack >> 6) & 1;
708 }
709
710 static inline u8 get_cqe_l4_hdr_type(struct mlx5_cqe64 *cqe)
711 {
712 return (cqe->l4_l3_hdr_type >> 4) & 0x7;
713 }
714
715 static inline u8 get_cqe_l3_hdr_type(struct mlx5_cqe64 *cqe)
716 {
717 return (cqe->l4_l3_hdr_type >> 2) & 0x3;
718 }
719
720 static inline u8 cqe_is_tunneled(struct mlx5_cqe64 *cqe)
721 {
722 return cqe->outer_l3_tunneled & 0x1;
723 }
724
725 static inline int cqe_has_vlan(struct mlx5_cqe64 *cqe)
726 {
727 return !!(cqe->l4_l3_hdr_type & 0x1);
728 }
729
730 static inline u64 get_cqe_ts(struct mlx5_cqe64 *cqe)
731 {
732 u32 hi, lo;
733
734 hi = be32_to_cpu(cqe->timestamp_h);
735 lo = be32_to_cpu(cqe->timestamp_l);
736
737 return (u64)lo | ((u64)hi << 32);
738 }
739
740 struct mpwrq_cqe_bc {
741 __be16 filler_consumed_strides;
742 __be16 byte_cnt;
743 };
744
745 static inline u16 mpwrq_get_cqe_byte_cnt(struct mlx5_cqe64 *cqe)
746 {
747 struct mpwrq_cqe_bc *bc = (struct mpwrq_cqe_bc *)&cqe->byte_cnt;
748
749 return be16_to_cpu(bc->byte_cnt);
750 }
751
752 static inline u16 mpwrq_get_cqe_bc_consumed_strides(struct mpwrq_cqe_bc *bc)
753 {
754 return 0x7fff & be16_to_cpu(bc->filler_consumed_strides);
755 }
756
757 static inline u16 mpwrq_get_cqe_consumed_strides(struct mlx5_cqe64 *cqe)
758 {
759 struct mpwrq_cqe_bc *bc = (struct mpwrq_cqe_bc *)&cqe->byte_cnt;
760
761 return mpwrq_get_cqe_bc_consumed_strides(bc);
762 }
763
764 static inline bool mpwrq_is_filler_cqe(struct mlx5_cqe64 *cqe)
765 {
766 struct mpwrq_cqe_bc *bc = (struct mpwrq_cqe_bc *)&cqe->byte_cnt;
767
768 return 0x8000 & be16_to_cpu(bc->filler_consumed_strides);
769 }
770
771 static inline u16 mpwrq_get_cqe_stride_index(struct mlx5_cqe64 *cqe)
772 {
773 return be16_to_cpu(cqe->wqe_counter);
774 }
775
776 enum {
777 CQE_L4_HDR_TYPE_NONE = 0x0,
778 CQE_L4_HDR_TYPE_TCP_NO_ACK = 0x1,
779 CQE_L4_HDR_TYPE_UDP = 0x2,
780 CQE_L4_HDR_TYPE_TCP_ACK_NO_DATA = 0x3,
781 CQE_L4_HDR_TYPE_TCP_ACK_AND_DATA = 0x4,
782 };
783
784 enum {
785 CQE_RSS_HTYPE_IP = 0x3 << 6,
786 CQE_RSS_HTYPE_L4 = 0x3 << 2,
787 };
788
789 enum {
790 MLX5_CQE_ROCE_L3_HEADER_TYPE_GRH = 0x0,
791 MLX5_CQE_ROCE_L3_HEADER_TYPE_IPV6 = 0x1,
792 MLX5_CQE_ROCE_L3_HEADER_TYPE_IPV4 = 0x2,
793 };
794
795 enum {
796 CQE_L2_OK = 1 << 0,
797 CQE_L3_OK = 1 << 1,
798 CQE_L4_OK = 1 << 2,
799 };
800
801 struct mlx5_sig_err_cqe {
802 u8 rsvd0[16];
803 __be32 expected_trans_sig;
804 __be32 actual_trans_sig;
805 __be32 expected_reftag;
806 __be32 actual_reftag;
807 __be16 syndrome;
808 u8 rsvd22[2];
809 __be32 mkey;
810 __be64 err_offset;
811 u8 rsvd30[8];
812 __be32 qpn;
813 u8 rsvd38[2];
814 u8 signature;
815 u8 op_own;
816 };
817
818 struct mlx5_wqe_srq_next_seg {
819 u8 rsvd0[2];
820 __be16 next_wqe_index;
821 u8 signature;
822 u8 rsvd1[11];
823 };
824
825 union mlx5_ext_cqe {
826 struct ib_grh grh;
827 u8 inl[64];
828 };
829
830 struct mlx5_cqe128 {
831 union mlx5_ext_cqe inl_grh;
832 struct mlx5_cqe64 cqe64;
833 };
834
835 struct mlx5_srq_ctx {
836 u8 state_log_sz;
837 u8 rsvd0[3];
838 __be32 flags_xrcd;
839 __be32 pgoff_cqn;
840 u8 rsvd1[4];
841 u8 log_pg_sz;
842 u8 rsvd2[7];
843 __be32 pd;
844 __be16 lwm;
845 __be16 wqe_cnt;
846 u8 rsvd3[8];
847 __be64 db_record;
848 };
849
850 struct mlx5_create_srq_mbox_in {
851 struct mlx5_inbox_hdr hdr;
852 __be32 input_srqn;
853 u8 rsvd0[4];
854 struct mlx5_srq_ctx ctx;
855 u8 rsvd1[208];
856 __be64 pas[0];
857 };
858
859 struct mlx5_create_srq_mbox_out {
860 struct mlx5_outbox_hdr hdr;
861 __be32 srqn;
862 u8 rsvd[4];
863 };
864
865 struct mlx5_destroy_srq_mbox_in {
866 struct mlx5_inbox_hdr hdr;
867 __be32 srqn;
868 u8 rsvd[4];
869 };
870
871 struct mlx5_destroy_srq_mbox_out {
872 struct mlx5_outbox_hdr hdr;
873 u8 rsvd[8];
874 };
875
876 struct mlx5_query_srq_mbox_in {
877 struct mlx5_inbox_hdr hdr;
878 __be32 srqn;
879 u8 rsvd0[4];
880 };
881
882 struct mlx5_query_srq_mbox_out {
883 struct mlx5_outbox_hdr hdr;
884 u8 rsvd0[8];
885 struct mlx5_srq_ctx ctx;
886 u8 rsvd1[32];
887 __be64 pas[0];
888 };
889
890 struct mlx5_arm_srq_mbox_in {
891 struct mlx5_inbox_hdr hdr;
892 __be32 srqn;
893 __be16 rsvd;
894 __be16 lwm;
895 };
896
897 struct mlx5_arm_srq_mbox_out {
898 struct mlx5_outbox_hdr hdr;
899 u8 rsvd[8];
900 };
901
902 struct mlx5_cq_context {
903 u8 status;
904 u8 cqe_sz_flags;
905 u8 st;
906 u8 rsvd3;
907 u8 rsvd4[6];
908 __be16 page_offset;
909 __be32 log_sz_usr_page;
910 __be16 cq_period;
911 __be16 cq_max_count;
912 __be16 rsvd20;
913 __be16 c_eqn;
914 u8 log_pg_sz;
915 u8 rsvd25[7];
916 __be32 last_notified_index;
917 __be32 solicit_producer_index;
918 __be32 consumer_counter;
919 __be32 producer_counter;
920 u8 rsvd48[8];
921 __be64 db_record_addr;
922 };
923
924 struct mlx5_create_cq_mbox_in {
925 struct mlx5_inbox_hdr hdr;
926 __be32 input_cqn;
927 u8 rsvdx[4];
928 struct mlx5_cq_context ctx;
929 u8 rsvd6[192];
930 __be64 pas[0];
931 };
932
933 struct mlx5_create_cq_mbox_out {
934 struct mlx5_outbox_hdr hdr;
935 __be32 cqn;
936 u8 rsvd0[4];
937 };
938
939 struct mlx5_destroy_cq_mbox_in {
940 struct mlx5_inbox_hdr hdr;
941 __be32 cqn;
942 u8 rsvd0[4];
943 };
944
945 struct mlx5_destroy_cq_mbox_out {
946 struct mlx5_outbox_hdr hdr;
947 u8 rsvd0[8];
948 };
949
950 struct mlx5_query_cq_mbox_in {
951 struct mlx5_inbox_hdr hdr;
952 __be32 cqn;
953 u8 rsvd0[4];
954 };
955
956 struct mlx5_query_cq_mbox_out {
957 struct mlx5_outbox_hdr hdr;
958 u8 rsvd0[8];
959 struct mlx5_cq_context ctx;
960 u8 rsvd6[16];
961 __be64 pas[0];
962 };
963
964 struct mlx5_modify_cq_mbox_in {
965 struct mlx5_inbox_hdr hdr;
966 __be32 cqn;
967 __be32 field_select;
968 struct mlx5_cq_context ctx;
969 u8 rsvd[192];
970 __be64 pas[0];
971 };
972
973 struct mlx5_modify_cq_mbox_out {
974 struct mlx5_outbox_hdr hdr;
975 u8 rsvd[8];
976 };
977
978 struct mlx5_enable_hca_mbox_in {
979 struct mlx5_inbox_hdr hdr;
980 u8 rsvd[8];
981 };
982
983 struct mlx5_enable_hca_mbox_out {
984 struct mlx5_outbox_hdr hdr;
985 u8 rsvd[8];
986 };
987
988 struct mlx5_disable_hca_mbox_in {
989 struct mlx5_inbox_hdr hdr;
990 u8 rsvd[8];
991 };
992
993 struct mlx5_disable_hca_mbox_out {
994 struct mlx5_outbox_hdr hdr;
995 u8 rsvd[8];
996 };
997
998 enum {
999 MLX5_MKEY_STATUS_FREE = 1 << 6,
1000 };
1001
1002 struct mlx5_mkey_seg {
1003 /* This is a two bit field occupying bits 31-30.
1004 * bit 31 is always 0,
1005 * bit 30 is zero for regular MRs and 1 (e.g free) for UMRs that do not have tanslation
1006 */
1007 u8 status;
1008 u8 pcie_control;
1009 u8 flags;
1010 u8 version;
1011 __be32 qpn_mkey7_0;
1012 u8 rsvd1[4];
1013 __be32 flags_pd;
1014 __be64 start_addr;
1015 __be64 len;
1016 __be32 bsfs_octo_size;
1017 u8 rsvd2[16];
1018 __be32 xlt_oct_size;
1019 u8 rsvd3[3];
1020 u8 log2_page_size;
1021 u8 rsvd4[4];
1022 };
1023
1024 struct mlx5_query_special_ctxs_mbox_in {
1025 struct mlx5_inbox_hdr hdr;
1026 u8 rsvd[8];
1027 };
1028
1029 struct mlx5_query_special_ctxs_mbox_out {
1030 struct mlx5_outbox_hdr hdr;
1031 __be32 dump_fill_mkey;
1032 __be32 reserved_lkey;
1033 };
1034
1035 struct mlx5_create_mkey_mbox_in {
1036 struct mlx5_inbox_hdr hdr;
1037 __be32 input_mkey_index;
1038 __be32 flags;
1039 struct mlx5_mkey_seg seg;
1040 u8 rsvd1[16];
1041 __be32 xlat_oct_act_size;
1042 __be32 rsvd2;
1043 u8 rsvd3[168];
1044 __be64 pas[0];
1045 };
1046
1047 struct mlx5_create_mkey_mbox_out {
1048 struct mlx5_outbox_hdr hdr;
1049 __be32 mkey;
1050 u8 rsvd[4];
1051 };
1052
1053 struct mlx5_destroy_mkey_mbox_in {
1054 struct mlx5_inbox_hdr hdr;
1055 __be32 mkey;
1056 u8 rsvd[4];
1057 };
1058
1059 struct mlx5_destroy_mkey_mbox_out {
1060 struct mlx5_outbox_hdr hdr;
1061 u8 rsvd[8];
1062 };
1063
1064 struct mlx5_query_mkey_mbox_in {
1065 struct mlx5_inbox_hdr hdr;
1066 __be32 mkey;
1067 };
1068
1069 struct mlx5_query_mkey_mbox_out {
1070 struct mlx5_outbox_hdr hdr;
1071 __be64 pas[0];
1072 };
1073
1074 struct mlx5_modify_mkey_mbox_in {
1075 struct mlx5_inbox_hdr hdr;
1076 __be32 mkey;
1077 __be64 pas[0];
1078 };
1079
1080 struct mlx5_modify_mkey_mbox_out {
1081 struct mlx5_outbox_hdr hdr;
1082 u8 rsvd[8];
1083 };
1084
1085 struct mlx5_dump_mkey_mbox_in {
1086 struct mlx5_inbox_hdr hdr;
1087 };
1088
1089 struct mlx5_dump_mkey_mbox_out {
1090 struct mlx5_outbox_hdr hdr;
1091 __be32 mkey;
1092 };
1093
1094 #define MLX5_ATTR_EXTENDED_PORT_INFO cpu_to_be16(0xff90)
1095
1096 enum {
1097 MLX_EXT_PORT_CAP_FLAG_EXTENDED_PORT_INFO = 1 << 0
1098 };
1099
1100 struct mlx5_allocate_psv_in {
1101 struct mlx5_inbox_hdr hdr;
1102 __be32 npsv_pd;
1103 __be32 rsvd_psv0;
1104 };
1105
1106 struct mlx5_allocate_psv_out {
1107 struct mlx5_outbox_hdr hdr;
1108 u8 rsvd[8];
1109 __be32 psv_idx[4];
1110 };
1111
1112 struct mlx5_destroy_psv_in {
1113 struct mlx5_inbox_hdr hdr;
1114 __be32 psv_number;
1115 u8 rsvd[4];
1116 };
1117
1118 struct mlx5_destroy_psv_out {
1119 struct mlx5_outbox_hdr hdr;
1120 u8 rsvd[8];
1121 };
1122
1123 enum {
1124 VPORT_STATE_DOWN = 0x0,
1125 VPORT_STATE_UP = 0x1,
1126 };
1127
1128 enum {
1129 MLX5_ESW_VPORT_ADMIN_STATE_DOWN = 0x0,
1130 MLX5_ESW_VPORT_ADMIN_STATE_UP = 0x1,
1131 MLX5_ESW_VPORT_ADMIN_STATE_AUTO = 0x2,
1132 };
1133
1134 enum {
1135 MLX5_L3_PROT_TYPE_IPV4 = 0,
1136 MLX5_L3_PROT_TYPE_IPV6 = 1,
1137 };
1138
1139 enum {
1140 MLX5_L4_PROT_TYPE_TCP = 0,
1141 MLX5_L4_PROT_TYPE_UDP = 1,
1142 };
1143
1144 enum {
1145 MLX5_HASH_FIELD_SEL_SRC_IP = 1 << 0,
1146 MLX5_HASH_FIELD_SEL_DST_IP = 1 << 1,
1147 MLX5_HASH_FIELD_SEL_L4_SPORT = 1 << 2,
1148 MLX5_HASH_FIELD_SEL_L4_DPORT = 1 << 3,
1149 MLX5_HASH_FIELD_SEL_IPSEC_SPI = 1 << 4,
1150 };
1151
1152 enum {
1153 MLX5_MATCH_OUTER_HEADERS = 1 << 0,
1154 MLX5_MATCH_MISC_PARAMETERS = 1 << 1,
1155 MLX5_MATCH_INNER_HEADERS = 1 << 2,
1156
1157 };
1158
1159 enum {
1160 MLX5_FLOW_TABLE_TYPE_NIC_RCV = 0,
1161 MLX5_FLOW_TABLE_TYPE_ESWITCH = 4,
1162 };
1163
1164 enum {
1165 MLX5_FLOW_CONTEXT_DEST_TYPE_VPORT = 0,
1166 MLX5_FLOW_CONTEXT_DEST_TYPE_FLOW_TABLE = 1,
1167 MLX5_FLOW_CONTEXT_DEST_TYPE_TIR = 2,
1168 };
1169
1170 enum mlx5_list_type {
1171 MLX5_NVPRT_LIST_TYPE_UC = 0x0,
1172 MLX5_NVPRT_LIST_TYPE_MC = 0x1,
1173 MLX5_NVPRT_LIST_TYPE_VLAN = 0x2,
1174 };
1175
1176 enum {
1177 MLX5_RQC_RQ_TYPE_MEMORY_RQ_INLINE = 0x0,
1178 MLX5_RQC_RQ_TYPE_MEMORY_RQ_RPM = 0x1,
1179 };
1180
1181 enum mlx5_wol_mode {
1182 MLX5_WOL_DISABLE = 0,
1183 MLX5_WOL_SECURED_MAGIC = 1 << 1,
1184 MLX5_WOL_MAGIC = 1 << 2,
1185 MLX5_WOL_ARP = 1 << 3,
1186 MLX5_WOL_BROADCAST = 1 << 4,
1187 MLX5_WOL_MULTICAST = 1 << 5,
1188 MLX5_WOL_UNICAST = 1 << 6,
1189 MLX5_WOL_PHY_ACTIVITY = 1 << 7,
1190 };
1191
1192 /* MLX5 DEV CAPs */
1193
1194 /* TODO: EAT.ME */
1195 enum mlx5_cap_mode {
1196 HCA_CAP_OPMOD_GET_MAX = 0,
1197 HCA_CAP_OPMOD_GET_CUR = 1,
1198 };
1199
1200 enum mlx5_cap_type {
1201 MLX5_CAP_GENERAL = 0,
1202 MLX5_CAP_ETHERNET_OFFLOADS,
1203 MLX5_CAP_ODP,
1204 MLX5_CAP_ATOMIC,
1205 MLX5_CAP_ROCE,
1206 MLX5_CAP_IPOIB_OFFLOADS,
1207 MLX5_CAP_EOIB_OFFLOADS,
1208 MLX5_CAP_FLOW_TABLE,
1209 MLX5_CAP_ESWITCH_FLOW_TABLE,
1210 MLX5_CAP_ESWITCH,
1211 MLX5_CAP_RESERVED,
1212 MLX5_CAP_VECTOR_CALC,
1213 MLX5_CAP_QOS,
1214 /* NUM OF CAP Types */
1215 MLX5_CAP_NUM
1216 };
1217
1218 /* GET Dev Caps macros */
1219 #define MLX5_CAP_GEN(mdev, cap) \
1220 MLX5_GET(cmd_hca_cap, mdev->hca_caps_cur[MLX5_CAP_GENERAL], cap)
1221
1222 #define MLX5_CAP_GEN_MAX(mdev, cap) \
1223 MLX5_GET(cmd_hca_cap, mdev->hca_caps_max[MLX5_CAP_GENERAL], cap)
1224
1225 #define MLX5_CAP_ETH(mdev, cap) \
1226 MLX5_GET(per_protocol_networking_offload_caps,\
1227 mdev->hca_caps_cur[MLX5_CAP_ETHERNET_OFFLOADS], cap)
1228
1229 #define MLX5_CAP_ETH_MAX(mdev, cap) \
1230 MLX5_GET(per_protocol_networking_offload_caps,\
1231 mdev->hca_caps_max[MLX5_CAP_ETHERNET_OFFLOADS], cap)
1232
1233 #define MLX5_CAP_ROCE(mdev, cap) \
1234 MLX5_GET(roce_cap, mdev->hca_caps_cur[MLX5_CAP_ROCE], cap)
1235
1236 #define MLX5_CAP_ROCE_MAX(mdev, cap) \
1237 MLX5_GET(roce_cap, mdev->hca_caps_max[MLX5_CAP_ROCE], cap)
1238
1239 #define MLX5_CAP_ATOMIC(mdev, cap) \
1240 MLX5_GET(atomic_caps, mdev->hca_caps_cur[MLX5_CAP_ATOMIC], cap)
1241
1242 #define MLX5_CAP_ATOMIC_MAX(mdev, cap) \
1243 MLX5_GET(atomic_caps, mdev->hca_caps_max[MLX5_CAP_ATOMIC], cap)
1244
1245 #define MLX5_CAP_FLOWTABLE(mdev, cap) \
1246 MLX5_GET(flow_table_nic_cap, mdev->hca_caps_cur[MLX5_CAP_FLOW_TABLE], cap)
1247
1248 #define MLX5_CAP_FLOWTABLE_MAX(mdev, cap) \
1249 MLX5_GET(flow_table_nic_cap, mdev->hca_caps_max[MLX5_CAP_FLOW_TABLE], cap)
1250
1251 #define MLX5_CAP_FLOWTABLE_NIC_RX(mdev, cap) \
1252 MLX5_CAP_FLOWTABLE(mdev, flow_table_properties_nic_receive.cap)
1253
1254 #define MLX5_CAP_FLOWTABLE_NIC_RX_MAX(mdev, cap) \
1255 MLX5_CAP_FLOWTABLE_MAX(mdev, flow_table_properties_nic_receive.cap)
1256
1257 #define MLX5_CAP_ESW_FLOWTABLE(mdev, cap) \
1258 MLX5_GET(flow_table_eswitch_cap, \
1259 mdev->hca_caps_cur[MLX5_CAP_ESWITCH_FLOW_TABLE], cap)
1260
1261 #define MLX5_CAP_ESW_FLOWTABLE_MAX(mdev, cap) \
1262 MLX5_GET(flow_table_eswitch_cap, \
1263 mdev->hca_caps_max[MLX5_CAP_ESWITCH_FLOW_TABLE], cap)
1264
1265 #define MLX5_CAP_ESW_FLOWTABLE_FDB(mdev, cap) \
1266 MLX5_CAP_ESW_FLOWTABLE(mdev, flow_table_properties_nic_esw_fdb.cap)
1267
1268 #define MLX5_CAP_ESW_FLOWTABLE_FDB_MAX(mdev, cap) \
1269 MLX5_CAP_ESW_FLOWTABLE_MAX(mdev, flow_table_properties_nic_esw_fdb.cap)
1270
1271 #define MLX5_CAP_ESW_EGRESS_ACL(mdev, cap) \
1272 MLX5_CAP_ESW_FLOWTABLE(mdev, flow_table_properties_esw_acl_egress.cap)
1273
1274 #define MLX5_CAP_ESW_EGRESS_ACL_MAX(mdev, cap) \
1275 MLX5_CAP_ESW_FLOWTABLE_MAX(mdev, flow_table_properties_esw_acl_egress.cap)
1276
1277 #define MLX5_CAP_ESW_INGRESS_ACL(mdev, cap) \
1278 MLX5_CAP_ESW_FLOWTABLE(mdev, flow_table_properties_esw_acl_ingress.cap)
1279
1280 #define MLX5_CAP_ESW_INGRESS_ACL_MAX(mdev, cap) \
1281 MLX5_CAP_ESW_FLOWTABLE_MAX(mdev, flow_table_properties_esw_acl_ingress.cap)
1282
1283 #define MLX5_CAP_ESW(mdev, cap) \
1284 MLX5_GET(e_switch_cap, \
1285 mdev->hca_caps_cur[MLX5_CAP_ESWITCH], cap)
1286
1287 #define MLX5_CAP_ESW_MAX(mdev, cap) \
1288 MLX5_GET(e_switch_cap, \
1289 mdev->hca_caps_max[MLX5_CAP_ESWITCH], cap)
1290
1291 #define MLX5_CAP_ODP(mdev, cap)\
1292 MLX5_GET(odp_cap, mdev->hca_caps_cur[MLX5_CAP_ODP], cap)
1293
1294 #define MLX5_CAP_VECTOR_CALC(mdev, cap) \
1295 MLX5_GET(vector_calc_cap, \
1296 mdev->hca_caps_cur[MLX5_CAP_VECTOR_CALC], cap)
1297
1298 #define MLX5_CAP_QOS(mdev, cap)\
1299 MLX5_GET(qos_cap, mdev->hca_caps_cur[MLX5_CAP_QOS], cap)
1300
1301 enum {
1302 MLX5_CMD_STAT_OK = 0x0,
1303 MLX5_CMD_STAT_INT_ERR = 0x1,
1304 MLX5_CMD_STAT_BAD_OP_ERR = 0x2,
1305 MLX5_CMD_STAT_BAD_PARAM_ERR = 0x3,
1306 MLX5_CMD_STAT_BAD_SYS_STATE_ERR = 0x4,
1307 MLX5_CMD_STAT_BAD_RES_ERR = 0x5,
1308 MLX5_CMD_STAT_RES_BUSY = 0x6,
1309 MLX5_CMD_STAT_LIM_ERR = 0x8,
1310 MLX5_CMD_STAT_BAD_RES_STATE_ERR = 0x9,
1311 MLX5_CMD_STAT_IX_ERR = 0xa,
1312 MLX5_CMD_STAT_NO_RES_ERR = 0xf,
1313 MLX5_CMD_STAT_BAD_INP_LEN_ERR = 0x50,
1314 MLX5_CMD_STAT_BAD_OUTP_LEN_ERR = 0x51,
1315 MLX5_CMD_STAT_BAD_QP_STATE_ERR = 0x10,
1316 MLX5_CMD_STAT_BAD_PKT_ERR = 0x30,
1317 MLX5_CMD_STAT_BAD_SIZE_OUTS_CQES_ERR = 0x40,
1318 };
1319
1320 enum {
1321 MLX5_IEEE_802_3_COUNTERS_GROUP = 0x0,
1322 MLX5_RFC_2863_COUNTERS_GROUP = 0x1,
1323 MLX5_RFC_2819_COUNTERS_GROUP = 0x2,
1324 MLX5_RFC_3635_COUNTERS_GROUP = 0x3,
1325 MLX5_ETHERNET_EXTENDED_COUNTERS_GROUP = 0x5,
1326 MLX5_PER_PRIORITY_COUNTERS_GROUP = 0x10,
1327 MLX5_PER_TRAFFIC_CLASS_COUNTERS_GROUP = 0x11,
1328 MLX5_PHYSICAL_LAYER_COUNTERS_GROUP = 0x12,
1329 MLX5_INFINIBAND_PORT_COUNTERS_GROUP = 0x20,
1330 };
1331
1332 static inline u16 mlx5_to_sw_pkey_sz(int pkey_sz)
1333 {
1334 if (pkey_sz > MLX5_MAX_LOG_PKEY_TABLE)
1335 return 0;
1336 return MLX5_MIN_PKEY_TABLE_SIZE << pkey_sz;
1337 }
1338
1339 #define MLX5_BY_PASS_NUM_REGULAR_PRIOS 8
1340 #define MLX5_BY_PASS_NUM_DONT_TRAP_PRIOS 8
1341 #define MLX5_BY_PASS_NUM_MULTICAST_PRIOS 1
1342 #define MLX5_BY_PASS_NUM_PRIOS (MLX5_BY_PASS_NUM_REGULAR_PRIOS +\
1343 MLX5_BY_PASS_NUM_DONT_TRAP_PRIOS +\
1344 MLX5_BY_PASS_NUM_MULTICAST_PRIOS)
1345
1346 #endif /* MLX5_DEVICE_H */