net/mlx5: Accel, Add IPSec acceleration interface
[linux-2.6-block.git] / include / linux / mlx5 / qp.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_QP_H
34#define MLX5_QP_H
35
36#include <linux/mlx5/device.h>
37#include <linux/mlx5/driver.h>
38
39#define MLX5_INVALID_LKEY 0x100
e1e66cc2 40#define MLX5_SIG_WQE_SIZE (MLX5_SEND_WQE_BB * 5)
e6631814
SG
41#define MLX5_DIF_SIZE 8
42#define MLX5_STRIDE_BLOCK_OP 0x400
fd22f78c
SG
43#define MLX5_CPY_GRD_MASK 0xc0
44#define MLX5_CPY_APP_MASK 0x30
45#define MLX5_CPY_REF_MASK 0x0f
142537f4
SG
46#define MLX5_BSF_INC_REFTAG (1 << 6)
47#define MLX5_BSF_INL_VALID (1 << 15)
48#define MLX5_BSF_REFRESH_DIF (1 << 14)
49#define MLX5_BSF_REPEAT_BLOCK (1 << 7)
50#define MLX5_BSF_APPTAG_ESCAPE 0x1
51#define MLX5_BSF_APPREF_ESCAPE 0x2
e126ba97
EC
52
53enum mlx5_qp_optpar {
54 MLX5_QP_OPTPAR_ALT_ADDR_PATH = 1 << 0,
55 MLX5_QP_OPTPAR_RRE = 1 << 1,
56 MLX5_QP_OPTPAR_RAE = 1 << 2,
57 MLX5_QP_OPTPAR_RWE = 1 << 3,
58 MLX5_QP_OPTPAR_PKEY_INDEX = 1 << 4,
59 MLX5_QP_OPTPAR_Q_KEY = 1 << 5,
60 MLX5_QP_OPTPAR_RNR_TIMEOUT = 1 << 6,
61 MLX5_QP_OPTPAR_PRIMARY_ADDR_PATH = 1 << 7,
62 MLX5_QP_OPTPAR_SRA_MAX = 1 << 8,
63 MLX5_QP_OPTPAR_RRA_MAX = 1 << 9,
64 MLX5_QP_OPTPAR_PM_STATE = 1 << 10,
65 MLX5_QP_OPTPAR_RETRY_COUNT = 1 << 12,
66 MLX5_QP_OPTPAR_RNR_RETRY = 1 << 13,
67 MLX5_QP_OPTPAR_ACK_TIMEOUT = 1 << 14,
68 MLX5_QP_OPTPAR_PRI_PORT = 1 << 16,
69 MLX5_QP_OPTPAR_SRQN = 1 << 18,
70 MLX5_QP_OPTPAR_CQN_RCV = 1 << 19,
71 MLX5_QP_OPTPAR_DC_HS = 1 << 20,
72 MLX5_QP_OPTPAR_DC_KEY = 1 << 21,
73};
74
75enum mlx5_qp_state {
76 MLX5_QP_STATE_RST = 0,
77 MLX5_QP_STATE_INIT = 1,
78 MLX5_QP_STATE_RTR = 2,
79 MLX5_QP_STATE_RTS = 3,
80 MLX5_QP_STATE_SQER = 4,
81 MLX5_QP_STATE_SQD = 5,
82 MLX5_QP_STATE_ERR = 6,
83 MLX5_QP_STATE_SQ_DRAINING = 7,
84 MLX5_QP_STATE_SUSPENDED = 9,
6d2f89df 85 MLX5_QP_NUM_STATE,
86 MLX5_QP_STATE,
87 MLX5_QP_STATE_BAD,
88};
89
90enum {
91 MLX5_SQ_STATE_NA = MLX5_SQC_STATE_ERR + 1,
92 MLX5_SQ_NUM_STATE = MLX5_SQ_STATE_NA + 1,
93 MLX5_RQ_STATE_NA = MLX5_RQC_STATE_ERR + 1,
94 MLX5_RQ_NUM_STATE = MLX5_RQ_STATE_NA + 1,
e126ba97
EC
95};
96
97enum {
98 MLX5_QP_ST_RC = 0x0,
99 MLX5_QP_ST_UC = 0x1,
100 MLX5_QP_ST_UD = 0x2,
101 MLX5_QP_ST_XRC = 0x3,
102 MLX5_QP_ST_MLX = 0x4,
103 MLX5_QP_ST_DCI = 0x5,
104 MLX5_QP_ST_DCT = 0x6,
105 MLX5_QP_ST_QP0 = 0x7,
106 MLX5_QP_ST_QP1 = 0x8,
107 MLX5_QP_ST_RAW_ETHERTYPE = 0x9,
108 MLX5_QP_ST_RAW_IPV6 = 0xa,
109 MLX5_QP_ST_SNIFFER = 0xb,
110 MLX5_QP_ST_SYNC_UMR = 0xe,
111 MLX5_QP_ST_PTP_1588 = 0xd,
112 MLX5_QP_ST_REG_UMR = 0xc,
113 MLX5_QP_ST_MAX
114};
115
116enum {
117 MLX5_QP_PM_MIGRATED = 0x3,
118 MLX5_QP_PM_ARMED = 0x0,
119 MLX5_QP_PM_REARM = 0x1
120};
121
122enum {
09a7d9ec
SM
123 MLX5_NON_ZERO_RQ = 0x0,
124 MLX5_SRQ_RQ = 0x1,
125 MLX5_CRQ_RQ = 0x2,
126 MLX5_ZERO_LEN_RQ = 0x3
e126ba97
EC
127};
128
09a7d9ec 129/* TODO REM */
e126ba97
EC
130enum {
131 /* params1 */
132 MLX5_QP_BIT_SRE = 1 << 15,
133 MLX5_QP_BIT_SWE = 1 << 14,
134 MLX5_QP_BIT_SAE = 1 << 13,
135 /* params2 */
136 MLX5_QP_BIT_RRE = 1 << 15,
137 MLX5_QP_BIT_RWE = 1 << 14,
138 MLX5_QP_BIT_RAE = 1 << 13,
139 MLX5_QP_BIT_RIC = 1 << 4,
051f2630
LR
140 MLX5_QP_BIT_CC_SLAVE_RECV = 1 << 2,
141 MLX5_QP_BIT_CC_SLAVE_SEND = 1 << 1,
142 MLX5_QP_BIT_CC_MASTER = 1 << 0
e126ba97
EC
143};
144
145enum {
146 MLX5_WQE_CTRL_CQ_UPDATE = 2 << 2,
e281682b 147 MLX5_WQE_CTRL_CQ_UPDATE_AND_EQE = 3 << 2,
e126ba97
EC
148 MLX5_WQE_CTRL_SOLICITED = 1 << 1,
149};
150
151enum {
e281682b 152 MLX5_SEND_WQE_DS = 16,
e126ba97
EC
153 MLX5_SEND_WQE_BB = 64,
154};
155
e281682b
SM
156#define MLX5_SEND_WQEBB_NUM_DS (MLX5_SEND_WQE_BB / MLX5_SEND_WQE_DS)
157
158enum {
159 MLX5_SEND_WQE_MAX_WQEBBS = 16,
160};
161
e126ba97
EC
162enum {
163 MLX5_WQE_FMR_PERM_LOCAL_READ = 1 << 27,
164 MLX5_WQE_FMR_PERM_LOCAL_WRITE = 1 << 28,
165 MLX5_WQE_FMR_PERM_REMOTE_READ = 1 << 29,
166 MLX5_WQE_FMR_PERM_REMOTE_WRITE = 1 << 30,
167 MLX5_WQE_FMR_PERM_ATOMIC = 1 << 31
168};
169
170enum {
171 MLX5_FENCE_MODE_NONE = 0 << 5,
172 MLX5_FENCE_MODE_INITIATOR_SMALL = 1 << 5,
c9b25495 173 MLX5_FENCE_MODE_FENCE = 2 << 5,
e126ba97
EC
174 MLX5_FENCE_MODE_STRONG_ORDERING = 3 << 5,
175 MLX5_FENCE_MODE_SMALL_AND_FENCE = 4 << 5,
176};
177
e126ba97
EC
178enum {
179 MLX5_RCV_DBR = 0,
180 MLX5_SND_DBR = 1,
181};
182
e6631814
SG
183enum {
184 MLX5_FLAGS_INLINE = 1<<7,
185 MLX5_FLAGS_CHECK_FREE = 1<<5,
186};
187
e126ba97
EC
188struct mlx5_wqe_fmr_seg {
189 __be32 flags;
190 __be32 mem_key;
191 __be64 buf_list;
192 __be64 start_addr;
193 __be64 reg_len;
194 __be32 offset;
195 __be32 page_size;
196 u32 reserved[2];
197};
198
199struct mlx5_wqe_ctrl_seg {
200 __be32 opmod_idx_opcode;
201 __be32 qpn_ds;
202 u8 signature;
203 u8 rsvd[2];
204 u8 fm_ce_se;
205 __be32 imm;
206};
207
c1395a2a 208#define MLX5_WQE_CTRL_DS_MASK 0x3f
7bdf65d4
HE
209#define MLX5_WQE_CTRL_QPN_MASK 0xffffff00
210#define MLX5_WQE_CTRL_QPN_SHIFT 8
c1395a2a 211#define MLX5_WQE_DS_UNITS 16
7bdf65d4
HE
212#define MLX5_WQE_CTRL_OPCODE_MASK 0xff
213#define MLX5_WQE_CTRL_WQE_INDEX_MASK 0x00ffff00
214#define MLX5_WQE_CTRL_WQE_INDEX_SHIFT 8
17d2f88f 215#define MLX5_WQE_AV_EXT 0x80000000
c1395a2a 216
e281682b
SM
217enum {
218 MLX5_ETH_WQE_L3_INNER_CSUM = 1 << 4,
219 MLX5_ETH_WQE_L4_INNER_CSUM = 1 << 5,
220 MLX5_ETH_WQE_L3_CSUM = 1 << 6,
221 MLX5_ETH_WQE_L4_CSUM = 1 << 7,
222};
223
2b31f7ae
SM
224enum {
225 MLX5_ETH_WQE_INSERT_VLAN = 1 << 15,
226};
227
e281682b
SM
228struct mlx5_wqe_eth_seg {
229 u8 rsvd0[4];
230 u8 cs_flags;
231 u8 rsvd1;
232 __be16 mss;
233 __be32 rsvd2;
2b31f7ae
SM
234 union {
235 struct {
236 __be16 sz;
237 u8 start[2];
238 } inline_hdr;
239 struct {
240 __be16 type;
241 __be16 vlan_tci;
242 } insert;
243 };
e281682b
SM
244};
245
e126ba97
EC
246struct mlx5_wqe_xrc_seg {
247 __be32 xrc_srqn;
248 u8 rsvd[12];
249};
250
251struct mlx5_wqe_masked_atomic_seg {
252 __be64 swap_add;
253 __be64 compare;
254 __be64 swap_add_mask;
255 __be64 compare_mask;
256};
257
17d2f88f
AK
258struct mlx5_base_av {
259 union {
260 struct {
261 __be32 qkey;
262 __be32 reserved;
263 } qkey;
264 __be64 dc_key;
265 } key;
266 __be32 dqp_dct;
267 u8 stat_rate_sl;
268 u8 fl_mlid;
269 union {
270 __be16 rlid;
271 __be16 udp_sport;
272 };
273};
274
e126ba97
EC
275struct mlx5_av {
276 union {
277 struct {
278 __be32 qkey;
279 __be32 reserved;
280 } qkey;
281 __be64 dc_key;
282 } key;
283 __be32 dqp_dct;
284 u8 stat_rate_sl;
285 u8 fl_mlid;
2811ba51
AS
286 union {
287 __be16 rlid;
288 __be16 udp_sport;
289 };
290 u8 reserved0[4];
291 u8 rmac[6];
e126ba97
EC
292 u8 tclass;
293 u8 hop_limit;
294 __be32 grh_gid_fl;
295 u8 rgid[16];
296};
297
25854544
SM
298struct mlx5_ib_ah {
299 struct ib_ah ibah;
300 struct mlx5_av av;
301};
302
303static inline struct mlx5_ib_ah *to_mah(struct ib_ah *ibah)
304{
305 return container_of(ibah, struct mlx5_ib_ah, ibah);
306}
307
e126ba97
EC
308struct mlx5_wqe_datagram_seg {
309 struct mlx5_av av;
310};
311
312struct mlx5_wqe_raddr_seg {
313 __be64 raddr;
314 __be32 rkey;
315 u32 reserved;
316};
317
318struct mlx5_wqe_atomic_seg {
319 __be64 swap_add;
320 __be64 compare;
321};
322
323struct mlx5_wqe_data_seg {
324 __be32 byte_count;
325 __be32 lkey;
326 __be64 addr;
327};
328
329struct mlx5_wqe_umr_ctrl_seg {
330 u8 flags;
331 u8 rsvd0[3];
31616255
AK
332 __be16 xlt_octowords;
333 union {
334 __be16 xlt_offset;
335 __be16 bsf_octowords;
336 };
e126ba97 337 __be64 mkey_mask;
31616255
AK
338 __be32 xlt_offset_47_16;
339 u8 rsvd1[28];
e126ba97
EC
340};
341
342struct mlx5_seg_set_psv {
343 __be32 psv_num;
344 __be16 syndrome;
345 __be16 status;
346 __be32 transient_sig;
347 __be32 ref_tag;
348};
349
350struct mlx5_seg_get_psv {
351 u8 rsvd[19];
352 u8 num_psv;
353 __be32 l_key;
354 __be64 va;
355 __be32 psv_index[4];
356};
357
358struct mlx5_seg_check_psv {
359 u8 rsvd0[2];
360 __be16 err_coalescing_op;
361 u8 rsvd1[2];
362 __be16 xport_err_op;
363 u8 rsvd2[2];
364 __be16 xport_err_mask;
365 u8 rsvd3[7];
366 u8 num_psv;
367 __be32 l_key;
368 __be64 va;
369 __be32 psv_index[4];
370};
371
372struct mlx5_rwqe_sig {
373 u8 rsvd0[4];
374 u8 signature;
375 u8 rsvd1[11];
376};
377
378struct mlx5_wqe_signature_seg {
379 u8 rsvd0[4];
380 u8 signature;
381 u8 rsvd1[11];
382};
383
7bdf65d4
HE
384#define MLX5_WQE_INLINE_SEG_BYTE_COUNT_MASK 0x3ff
385
e126ba97
EC
386struct mlx5_wqe_inline_seg {
387 __be32 byte_count;
388};
389
142537f4
SG
390enum mlx5_sig_type {
391 MLX5_DIF_CRC = 0x1,
392 MLX5_DIF_IPCS = 0x2,
393};
394
395struct mlx5_bsf_inl {
396 __be16 vld_refresh;
397 __be16 dif_apptag;
398 __be32 dif_reftag;
399 u8 sig_type;
400 u8 rp_inv_seed;
401 u8 rsvd[3];
402 u8 dif_inc_ref_guard_check;
403 __be16 dif_app_bitmask_check;
404};
405
e6631814
SG
406struct mlx5_bsf {
407 struct mlx5_bsf_basic {
408 u8 bsf_size_sbs;
409 u8 check_byte_mask;
410 union {
411 u8 copy_byte_mask;
412 u8 bs_selector;
413 u8 rsvd_wflags;
414 } wire;
415 union {
416 u8 bs_selector;
417 u8 rsvd_mflags;
418 } mem;
419 __be32 raw_data_size;
420 __be32 w_bfs_psv;
421 __be32 m_bfs_psv;
422 } basic;
423 struct mlx5_bsf_ext {
424 __be32 t_init_gen_pro_size;
425 __be32 rsvd_epi_size;
426 __be32 w_tfs_psv;
427 __be32 m_tfs_psv;
428 } ext;
142537f4
SG
429 struct mlx5_bsf_inl w_inl;
430 struct mlx5_bsf_inl m_inl;
e6631814
SG
431};
432
31616255
AK
433struct mlx5_mtt {
434 __be64 ptag;
435};
436
e6631814
SG
437struct mlx5_klm {
438 __be32 bcount;
439 __be32 key;
440 __be64 va;
441};
442
443struct mlx5_stride_block_entry {
444 __be16 stride;
445 __be16 bcount;
446 __be32 key;
447 __be64 va;
448};
449
450struct mlx5_stride_block_ctrl_seg {
451 __be32 bcount_per_cycle;
452 __be32 op;
453 __be32 repeat_count;
454 u16 rsvd;
455 __be16 num_entries;
456};
457
e126ba97 458struct mlx5_core_qp {
5903325a 459 struct mlx5_core_rsc_common common; /* must be first */
e126ba97
EC
460 void (*event) (struct mlx5_core_qp *, int);
461 int qpn;
e126ba97
EC
462 struct mlx5_rsc_debug *dbg;
463 int pid;
464};
465
466struct mlx5_qp_path {
d3ae2bde 467 u8 fl_free_ar;
e126ba97 468 u8 rsvd3;
d3ae2bde 469 __be16 pkey_index;
e126ba97
EC
470 u8 rsvd0;
471 u8 grh_mlid;
472 __be16 rlid;
473 u8 ackto_lt;
474 u8 mgid_index;
475 u8 static_rate;
476 u8 hop_limit;
477 __be32 tclass_flowlabel;
2811ba51
AS
478 union {
479 u8 rgid[16];
480 u8 rip[16];
481 };
482 u8 f_dscp_ecn_prio;
483 u8 ecn_dscp;
484 __be16 udp_sport;
485 u8 dci_cfi_prio_sl;
e126ba97 486 u8 port;
2811ba51 487 u8 rmac[6];
e126ba97
EC
488};
489
1a412fb1 490/* FIXME: use mlx5_ifc.h qpc */
e126ba97
EC
491struct mlx5_qp_context {
492 __be32 flags;
493 __be32 flags_pd;
494 u8 mtu_msgmax;
495 u8 rq_size_stride;
496 __be16 sq_crq_size;
497 __be32 qp_counter_set_usr_page;
498 __be32 wire_qpn;
499 __be32 log_pg_sz_remote_qpn;
500 struct mlx5_qp_path pri_path;
501 struct mlx5_qp_path alt_path;
502 __be32 params1;
503 u8 reserved2[4];
504 __be32 next_send_psn;
505 __be32 cqn_send;
b11a4f9c
HE
506 __be32 deth_sqpn;
507 u8 reserved3[4];
e126ba97
EC
508 __be32 last_acked_psn;
509 __be32 ssn;
510 __be32 params2;
511 __be32 rnr_nextrecvpsn;
512 __be32 xrcd;
513 __be32 cqn_recv;
514 __be64 db_rec_addr;
515 __be32 qkey;
516 __be32 rq_type_srqn;
517 __be32 rmsn;
518 __be16 hw_sq_wqe_counter;
519 __be16 sw_sq_wqe_counter;
520 __be16 hw_rcyclic_byte_counter;
521 __be16 hw_rq_counter;
522 __be16 sw_rcyclic_byte_counter;
523 __be16 sw_rq_counter;
524 u8 rsvd0[5];
525 u8 cgs;
526 u8 cs_req;
527 u8 cs_res;
528 __be64 dc_access_key;
529 u8 rsvd1[24];
530};
531
e126ba97
EC
532static inline struct mlx5_core_qp *__mlx5_qp_lookup(struct mlx5_core_dev *dev, u32 qpn)
533{
534 return radix_tree_lookup(&dev->priv.qp_table.tree, qpn);
535}
536
a606b0f6 537static inline struct mlx5_core_mkey *__mlx5_mr_lookup(struct mlx5_core_dev *dev, u32 key)
d5436ba0 538{
a606b0f6 539 return radix_tree_lookup(&dev->priv.mkey_table.tree, key);
d5436ba0
SG
540}
541
e126ba97
EC
542int mlx5_core_create_qp(struct mlx5_core_dev *dev,
543 struct mlx5_core_qp *qp,
09a7d9ec 544 u32 *in,
e126ba97 545 int inlen);
1a412fb1
SM
546int mlx5_core_qp_modify(struct mlx5_core_dev *dev, u16 opcode,
547 u32 opt_param_mask, void *qpc,
e126ba97
EC
548 struct mlx5_core_qp *qp);
549int mlx5_core_destroy_qp(struct mlx5_core_dev *dev,
550 struct mlx5_core_qp *qp);
551int mlx5_core_qp_query(struct mlx5_core_dev *dev, struct mlx5_core_qp *qp,
09a7d9ec 552 u32 *out, int outlen);
e126ba97
EC
553
554int mlx5_core_xrcd_alloc(struct mlx5_core_dev *dev, u32 *xrcdn);
555int mlx5_core_xrcd_dealloc(struct mlx5_core_dev *dev, u32 xrcdn);
556void mlx5_init_qp_table(struct mlx5_core_dev *dev);
557void mlx5_cleanup_qp_table(struct mlx5_core_dev *dev);
558int mlx5_debug_qp_add(struct mlx5_core_dev *dev, struct mlx5_core_qp *qp);
559void mlx5_debug_qp_remove(struct mlx5_core_dev *dev, struct mlx5_core_qp *qp);
e2013b21 560int mlx5_core_create_rq_tracked(struct mlx5_core_dev *dev, u32 *in, int inlen,
561 struct mlx5_core_qp *rq);
562void mlx5_core_destroy_rq_tracked(struct mlx5_core_dev *dev,
563 struct mlx5_core_qp *rq);
564int mlx5_core_create_sq_tracked(struct mlx5_core_dev *dev, u32 *in, int inlen,
565 struct mlx5_core_qp *sq);
566void mlx5_core_destroy_sq_tracked(struct mlx5_core_dev *dev,
567 struct mlx5_core_qp *sq);
237cd218
TT
568int mlx5_core_alloc_q_counter(struct mlx5_core_dev *dev, u16 *counter_id);
569int mlx5_core_dealloc_q_counter(struct mlx5_core_dev *dev, u16 counter_id);
570int mlx5_core_query_q_counter(struct mlx5_core_dev *dev, u16 counter_id,
571 int reset, void *out, int out_size);
e126ba97 572
db81a5c3
EC
573static inline const char *mlx5_qp_type_str(int type)
574{
575 switch (type) {
576 case MLX5_QP_ST_RC: return "RC";
577 case MLX5_QP_ST_UC: return "C";
578 case MLX5_QP_ST_UD: return "UD";
579 case MLX5_QP_ST_XRC: return "XRC";
580 case MLX5_QP_ST_MLX: return "MLX";
581 case MLX5_QP_ST_QP0: return "QP0";
582 case MLX5_QP_ST_QP1: return "QP1";
583 case MLX5_QP_ST_RAW_ETHERTYPE: return "RAW_ETHERTYPE";
584 case MLX5_QP_ST_RAW_IPV6: return "RAW_IPV6";
585 case MLX5_QP_ST_SNIFFER: return "SNIFFER";
586 case MLX5_QP_ST_SYNC_UMR: return "SYNC_UMR";
587 case MLX5_QP_ST_PTP_1588: return "PTP_1588";
588 case MLX5_QP_ST_REG_UMR: return "REG_UMR";
589 default: return "Invalid transport type";
590 }
591}
592
593static inline const char *mlx5_qp_state_str(int state)
594{
595 switch (state) {
596 case MLX5_QP_STATE_RST:
597 return "RST";
598 case MLX5_QP_STATE_INIT:
599 return "INIT";
600 case MLX5_QP_STATE_RTR:
601 return "RTR";
602 case MLX5_QP_STATE_RTS:
603 return "RTS";
604 case MLX5_QP_STATE_SQER:
605 return "SQER";
606 case MLX5_QP_STATE_SQD:
607 return "SQD";
608 case MLX5_QP_STATE_ERR:
609 return "ERR";
610 case MLX5_QP_STATE_SQ_DRAINING:
611 return "SQ_DRAINING";
612 case MLX5_QP_STATE_SUSPENDED:
613 return "SUSPENDED";
614 default: return "Invalid QP state";
615 }
616}
617
e126ba97 618#endif /* MLX5_QP_H */