blob: a9ad40169191113a84270d1850d73c894535f295 [file] [log] [blame]
Eli Cohene126ba92013-07-07 17:25:49 +03001/*
Saeed Mahameed302bdf62015-04-02 17:07:29 +03002 * Copyright (c) 2013-2015, Mellanox Technologies. All rights reserved.
Eli Cohene126ba92013-07-07 17:25:49 +03003 *
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
Sagi Grimberge1e66cc2014-02-23 14:19:07 +020040#define MLX5_SIG_WQE_SIZE (MLX5_SEND_WQE_BB * 5)
Sagi Grimberge6631812014-02-23 14:19:11 +020041#define MLX5_DIF_SIZE 8
42#define MLX5_STRIDE_BLOCK_OP 0x400
Sagi Grimbergfd22f782014-08-13 19:54:29 +030043#define MLX5_CPY_GRD_MASK 0xc0
44#define MLX5_CPY_APP_MASK 0x30
45#define MLX5_CPY_REF_MASK 0x0f
Sagi Grimberg142537f2014-08-13 19:54:32 +030046#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
Eli Cohene126ba92013-07-07 17:25:49 +030052
Haggai Erane420f0c2014-12-11 17:04:19 +020053#define MLX5_QPN_BITS 24
54#define MLX5_QPN_MASK ((1 << MLX5_QPN_BITS) - 1)
55
Eli Cohene126ba92013-07-07 17:25:49 +030056enum mlx5_qp_optpar {
57 MLX5_QP_OPTPAR_ALT_ADDR_PATH = 1 << 0,
58 MLX5_QP_OPTPAR_RRE = 1 << 1,
59 MLX5_QP_OPTPAR_RAE = 1 << 2,
60 MLX5_QP_OPTPAR_RWE = 1 << 3,
61 MLX5_QP_OPTPAR_PKEY_INDEX = 1 << 4,
62 MLX5_QP_OPTPAR_Q_KEY = 1 << 5,
63 MLX5_QP_OPTPAR_RNR_TIMEOUT = 1 << 6,
64 MLX5_QP_OPTPAR_PRIMARY_ADDR_PATH = 1 << 7,
65 MLX5_QP_OPTPAR_SRA_MAX = 1 << 8,
66 MLX5_QP_OPTPAR_RRA_MAX = 1 << 9,
67 MLX5_QP_OPTPAR_PM_STATE = 1 << 10,
68 MLX5_QP_OPTPAR_RETRY_COUNT = 1 << 12,
69 MLX5_QP_OPTPAR_RNR_RETRY = 1 << 13,
70 MLX5_QP_OPTPAR_ACK_TIMEOUT = 1 << 14,
71 MLX5_QP_OPTPAR_PRI_PORT = 1 << 16,
72 MLX5_QP_OPTPAR_SRQN = 1 << 18,
73 MLX5_QP_OPTPAR_CQN_RCV = 1 << 19,
74 MLX5_QP_OPTPAR_DC_HS = 1 << 20,
75 MLX5_QP_OPTPAR_DC_KEY = 1 << 21,
76};
77
78enum mlx5_qp_state {
79 MLX5_QP_STATE_RST = 0,
80 MLX5_QP_STATE_INIT = 1,
81 MLX5_QP_STATE_RTR = 2,
82 MLX5_QP_STATE_RTS = 3,
83 MLX5_QP_STATE_SQER = 4,
84 MLX5_QP_STATE_SQD = 5,
85 MLX5_QP_STATE_ERR = 6,
86 MLX5_QP_STATE_SQ_DRAINING = 7,
87 MLX5_QP_STATE_SUSPENDED = 9,
88 MLX5_QP_NUM_STATE
89};
90
91enum {
92 MLX5_QP_ST_RC = 0x0,
93 MLX5_QP_ST_UC = 0x1,
94 MLX5_QP_ST_UD = 0x2,
95 MLX5_QP_ST_XRC = 0x3,
96 MLX5_QP_ST_MLX = 0x4,
97 MLX5_QP_ST_DCI = 0x5,
98 MLX5_QP_ST_DCT = 0x6,
99 MLX5_QP_ST_QP0 = 0x7,
100 MLX5_QP_ST_QP1 = 0x8,
101 MLX5_QP_ST_RAW_ETHERTYPE = 0x9,
102 MLX5_QP_ST_RAW_IPV6 = 0xa,
103 MLX5_QP_ST_SNIFFER = 0xb,
104 MLX5_QP_ST_SYNC_UMR = 0xe,
105 MLX5_QP_ST_PTP_1588 = 0xd,
106 MLX5_QP_ST_REG_UMR = 0xc,
107 MLX5_QP_ST_MAX
108};
109
110enum {
111 MLX5_QP_PM_MIGRATED = 0x3,
112 MLX5_QP_PM_ARMED = 0x0,
113 MLX5_QP_PM_REARM = 0x1
114};
115
116enum {
117 MLX5_NON_ZERO_RQ = 0 << 24,
118 MLX5_SRQ_RQ = 1 << 24,
119 MLX5_CRQ_RQ = 2 << 24,
120 MLX5_ZERO_LEN_RQ = 3 << 24
121};
122
123enum {
124 /* params1 */
125 MLX5_QP_BIT_SRE = 1 << 15,
126 MLX5_QP_BIT_SWE = 1 << 14,
127 MLX5_QP_BIT_SAE = 1 << 13,
128 /* params2 */
129 MLX5_QP_BIT_RRE = 1 << 15,
130 MLX5_QP_BIT_RWE = 1 << 14,
131 MLX5_QP_BIT_RAE = 1 << 13,
132 MLX5_QP_BIT_RIC = 1 << 4,
133};
134
135enum {
136 MLX5_WQE_CTRL_CQ_UPDATE = 2 << 2,
Saeed Mahameede2816822015-05-28 22:28:40 +0300137 MLX5_WQE_CTRL_CQ_UPDATE_AND_EQE = 3 << 2,
Eli Cohene126ba92013-07-07 17:25:49 +0300138 MLX5_WQE_CTRL_SOLICITED = 1 << 1,
139};
140
141enum {
Saeed Mahameede2816822015-05-28 22:28:40 +0300142 MLX5_SEND_WQE_DS = 16,
Eli Cohene126ba92013-07-07 17:25:49 +0300143 MLX5_SEND_WQE_BB = 64,
144};
145
Saeed Mahameede2816822015-05-28 22:28:40 +0300146#define MLX5_SEND_WQEBB_NUM_DS (MLX5_SEND_WQE_BB / MLX5_SEND_WQE_DS)
147
148enum {
149 MLX5_SEND_WQE_MAX_WQEBBS = 16,
150};
151
Eli Cohene126ba92013-07-07 17:25:49 +0300152enum {
153 MLX5_WQE_FMR_PERM_LOCAL_READ = 1 << 27,
154 MLX5_WQE_FMR_PERM_LOCAL_WRITE = 1 << 28,
155 MLX5_WQE_FMR_PERM_REMOTE_READ = 1 << 29,
156 MLX5_WQE_FMR_PERM_REMOTE_WRITE = 1 << 30,
157 MLX5_WQE_FMR_PERM_ATOMIC = 1 << 31
158};
159
160enum {
161 MLX5_FENCE_MODE_NONE = 0 << 5,
162 MLX5_FENCE_MODE_INITIATOR_SMALL = 1 << 5,
163 MLX5_FENCE_MODE_STRONG_ORDERING = 3 << 5,
164 MLX5_FENCE_MODE_SMALL_AND_FENCE = 4 << 5,
165};
166
167enum {
168 MLX5_QP_LAT_SENSITIVE = 1 << 28,
Eli Cohenf360d882014-04-02 00:10:16 +0300169 MLX5_QP_BLOCK_MCAST = 1 << 30,
Eli Cohene126ba92013-07-07 17:25:49 +0300170 MLX5_QP_ENABLE_SIG = 1 << 31,
171};
172
173enum {
174 MLX5_RCV_DBR = 0,
175 MLX5_SND_DBR = 1,
176};
177
Sagi Grimberge6631812014-02-23 14:19:11 +0200178enum {
179 MLX5_FLAGS_INLINE = 1<<7,
180 MLX5_FLAGS_CHECK_FREE = 1<<5,
181};
182
Eli Cohene126ba92013-07-07 17:25:49 +0300183struct mlx5_wqe_fmr_seg {
184 __be32 flags;
185 __be32 mem_key;
186 __be64 buf_list;
187 __be64 start_addr;
188 __be64 reg_len;
189 __be32 offset;
190 __be32 page_size;
191 u32 reserved[2];
192};
193
194struct mlx5_wqe_ctrl_seg {
195 __be32 opmod_idx_opcode;
196 __be32 qpn_ds;
197 u8 signature;
198 u8 rsvd[2];
199 u8 fm_ce_se;
200 __be32 imm;
201};
202
Haggai Eranc1395a22014-12-11 17:04:14 +0200203#define MLX5_WQE_CTRL_DS_MASK 0x3f
Haggai Eran7bdf65d2014-12-11 17:04:24 +0200204#define MLX5_WQE_CTRL_QPN_MASK 0xffffff00
205#define MLX5_WQE_CTRL_QPN_SHIFT 8
Haggai Eranc1395a22014-12-11 17:04:14 +0200206#define MLX5_WQE_DS_UNITS 16
Haggai Eran7bdf65d2014-12-11 17:04:24 +0200207#define MLX5_WQE_CTRL_OPCODE_MASK 0xff
208#define MLX5_WQE_CTRL_WQE_INDEX_MASK 0x00ffff00
209#define MLX5_WQE_CTRL_WQE_INDEX_SHIFT 8
Haggai Eranc1395a22014-12-11 17:04:14 +0200210
Saeed Mahameede2816822015-05-28 22:28:40 +0300211enum {
212 MLX5_ETH_WQE_L3_INNER_CSUM = 1 << 4,
213 MLX5_ETH_WQE_L4_INNER_CSUM = 1 << 5,
214 MLX5_ETH_WQE_L3_CSUM = 1 << 6,
215 MLX5_ETH_WQE_L4_CSUM = 1 << 7,
216};
217
218struct mlx5_wqe_eth_seg {
219 u8 rsvd0[4];
220 u8 cs_flags;
221 u8 rsvd1;
222 __be16 mss;
223 __be32 rsvd2;
224 __be16 inline_hdr_sz;
225 u8 inline_hdr_start[2];
226};
227
Eli Cohene126ba92013-07-07 17:25:49 +0300228struct mlx5_wqe_xrc_seg {
229 __be32 xrc_srqn;
230 u8 rsvd[12];
231};
232
233struct mlx5_wqe_masked_atomic_seg {
234 __be64 swap_add;
235 __be64 compare;
236 __be64 swap_add_mask;
237 __be64 compare_mask;
238};
239
240struct mlx5_av {
241 union {
242 struct {
243 __be32 qkey;
244 __be32 reserved;
245 } qkey;
246 __be64 dc_key;
247 } key;
248 __be32 dqp_dct;
249 u8 stat_rate_sl;
250 u8 fl_mlid;
Achiad Shochat2811ba52015-12-23 18:47:24 +0200251 union {
252 __be16 rlid;
253 __be16 udp_sport;
254 };
255 u8 reserved0[4];
256 u8 rmac[6];
Eli Cohene126ba92013-07-07 17:25:49 +0300257 u8 tclass;
258 u8 hop_limit;
259 __be32 grh_gid_fl;
260 u8 rgid[16];
261};
262
263struct mlx5_wqe_datagram_seg {
264 struct mlx5_av av;
265};
266
267struct mlx5_wqe_raddr_seg {
268 __be64 raddr;
269 __be32 rkey;
270 u32 reserved;
271};
272
273struct mlx5_wqe_atomic_seg {
274 __be64 swap_add;
275 __be64 compare;
276};
277
278struct mlx5_wqe_data_seg {
279 __be32 byte_count;
280 __be32 lkey;
281 __be64 addr;
282};
283
284struct mlx5_wqe_umr_ctrl_seg {
285 u8 flags;
286 u8 rsvd0[3];
287 __be16 klm_octowords;
288 __be16 bsf_octowords;
289 __be64 mkey_mask;
290 u8 rsvd1[32];
291};
292
293struct mlx5_seg_set_psv {
294 __be32 psv_num;
295 __be16 syndrome;
296 __be16 status;
297 __be32 transient_sig;
298 __be32 ref_tag;
299};
300
301struct mlx5_seg_get_psv {
302 u8 rsvd[19];
303 u8 num_psv;
304 __be32 l_key;
305 __be64 va;
306 __be32 psv_index[4];
307};
308
309struct mlx5_seg_check_psv {
310 u8 rsvd0[2];
311 __be16 err_coalescing_op;
312 u8 rsvd1[2];
313 __be16 xport_err_op;
314 u8 rsvd2[2];
315 __be16 xport_err_mask;
316 u8 rsvd3[7];
317 u8 num_psv;
318 __be32 l_key;
319 __be64 va;
320 __be32 psv_index[4];
321};
322
323struct mlx5_rwqe_sig {
324 u8 rsvd0[4];
325 u8 signature;
326 u8 rsvd1[11];
327};
328
329struct mlx5_wqe_signature_seg {
330 u8 rsvd0[4];
331 u8 signature;
332 u8 rsvd1[11];
333};
334
Haggai Eran7bdf65d2014-12-11 17:04:24 +0200335#define MLX5_WQE_INLINE_SEG_BYTE_COUNT_MASK 0x3ff
336
Eli Cohene126ba92013-07-07 17:25:49 +0300337struct mlx5_wqe_inline_seg {
338 __be32 byte_count;
339};
340
Sagi Grimberg142537f2014-08-13 19:54:32 +0300341enum mlx5_sig_type {
342 MLX5_DIF_CRC = 0x1,
343 MLX5_DIF_IPCS = 0x2,
344};
345
346struct mlx5_bsf_inl {
347 __be16 vld_refresh;
348 __be16 dif_apptag;
349 __be32 dif_reftag;
350 u8 sig_type;
351 u8 rp_inv_seed;
352 u8 rsvd[3];
353 u8 dif_inc_ref_guard_check;
354 __be16 dif_app_bitmask_check;
355};
356
Sagi Grimberge6631812014-02-23 14:19:11 +0200357struct mlx5_bsf {
358 struct mlx5_bsf_basic {
359 u8 bsf_size_sbs;
360 u8 check_byte_mask;
361 union {
362 u8 copy_byte_mask;
363 u8 bs_selector;
364 u8 rsvd_wflags;
365 } wire;
366 union {
367 u8 bs_selector;
368 u8 rsvd_mflags;
369 } mem;
370 __be32 raw_data_size;
371 __be32 w_bfs_psv;
372 __be32 m_bfs_psv;
373 } basic;
374 struct mlx5_bsf_ext {
375 __be32 t_init_gen_pro_size;
376 __be32 rsvd_epi_size;
377 __be32 w_tfs_psv;
378 __be32 m_tfs_psv;
379 } ext;
Sagi Grimberg142537f2014-08-13 19:54:32 +0300380 struct mlx5_bsf_inl w_inl;
381 struct mlx5_bsf_inl m_inl;
Sagi Grimberge6631812014-02-23 14:19:11 +0200382};
383
384struct mlx5_klm {
385 __be32 bcount;
386 __be32 key;
387 __be64 va;
388};
389
390struct mlx5_stride_block_entry {
391 __be16 stride;
392 __be16 bcount;
393 __be32 key;
394 __be64 va;
395};
396
397struct mlx5_stride_block_ctrl_seg {
398 __be32 bcount_per_cycle;
399 __be32 op;
400 __be32 repeat_count;
401 u16 rsvd;
402 __be16 num_entries;
403};
404
Haggai Erane420f0c2014-12-11 17:04:19 +0200405enum mlx5_pagefault_flags {
406 MLX5_PFAULT_REQUESTOR = 1 << 0,
407 MLX5_PFAULT_WRITE = 1 << 1,
408 MLX5_PFAULT_RDMA = 1 << 2,
409};
410
411/* Contains the details of a pagefault. */
412struct mlx5_pagefault {
413 u32 bytes_committed;
414 u8 event_subtype;
415 enum mlx5_pagefault_flags flags;
416 union {
417 /* Initiator or send message responder pagefault details. */
418 struct {
419 /* Received packet size, only valid for responders. */
420 u32 packet_size;
421 /*
422 * WQE index. Refers to either the send queue or
423 * receive queue, according to event_subtype.
424 */
425 u16 wqe_index;
426 } wqe;
427 /* RDMA responder pagefault details */
428 struct {
429 u32 r_key;
430 /*
431 * Received packet size, minimal size page fault
432 * resolution required for forward progress.
433 */
434 u32 packet_size;
435 u32 rdma_op_len;
436 u64 rdma_va;
437 } rdma;
438 };
439};
440
Eli Cohene126ba92013-07-07 17:25:49 +0300441struct mlx5_core_qp {
Eli Cohen59033252014-10-02 12:19:45 +0300442 struct mlx5_core_rsc_common common; /* must be first */
Eli Cohene126ba92013-07-07 17:25:49 +0300443 void (*event) (struct mlx5_core_qp *, int);
Haggai Erane420f0c2014-12-11 17:04:19 +0200444 void (*pfault_handler)(struct mlx5_core_qp *, struct mlx5_pagefault *);
Eli Cohene126ba92013-07-07 17:25:49 +0300445 int qpn;
Eli Cohene126ba92013-07-07 17:25:49 +0300446 struct mlx5_rsc_debug *dbg;
447 int pid;
448};
449
450struct mlx5_qp_path {
451 u8 fl;
452 u8 rsvd3;
453 u8 free_ar;
454 u8 pkey_index;
455 u8 rsvd0;
456 u8 grh_mlid;
457 __be16 rlid;
458 u8 ackto_lt;
459 u8 mgid_index;
460 u8 static_rate;
461 u8 hop_limit;
462 __be32 tclass_flowlabel;
Achiad Shochat2811ba52015-12-23 18:47:24 +0200463 union {
464 u8 rgid[16];
465 u8 rip[16];
466 };
467 u8 f_dscp_ecn_prio;
468 u8 ecn_dscp;
469 __be16 udp_sport;
470 u8 dci_cfi_prio_sl;
Eli Cohene126ba92013-07-07 17:25:49 +0300471 u8 port;
Achiad Shochat2811ba52015-12-23 18:47:24 +0200472 u8 rmac[6];
Eli Cohene126ba92013-07-07 17:25:49 +0300473};
474
475struct mlx5_qp_context {
476 __be32 flags;
477 __be32 flags_pd;
478 u8 mtu_msgmax;
479 u8 rq_size_stride;
480 __be16 sq_crq_size;
481 __be32 qp_counter_set_usr_page;
482 __be32 wire_qpn;
483 __be32 log_pg_sz_remote_qpn;
484 struct mlx5_qp_path pri_path;
485 struct mlx5_qp_path alt_path;
486 __be32 params1;
487 u8 reserved2[4];
488 __be32 next_send_psn;
489 __be32 cqn_send;
490 u8 reserved3[8];
491 __be32 last_acked_psn;
492 __be32 ssn;
493 __be32 params2;
494 __be32 rnr_nextrecvpsn;
495 __be32 xrcd;
496 __be32 cqn_recv;
497 __be64 db_rec_addr;
498 __be32 qkey;
499 __be32 rq_type_srqn;
500 __be32 rmsn;
501 __be16 hw_sq_wqe_counter;
502 __be16 sw_sq_wqe_counter;
503 __be16 hw_rcyclic_byte_counter;
504 __be16 hw_rq_counter;
505 __be16 sw_rcyclic_byte_counter;
506 __be16 sw_rq_counter;
507 u8 rsvd0[5];
508 u8 cgs;
509 u8 cs_req;
510 u8 cs_res;
511 __be64 dc_access_key;
512 u8 rsvd1[24];
513};
514
515struct mlx5_create_qp_mbox_in {
516 struct mlx5_inbox_hdr hdr;
517 __be32 input_qpn;
518 u8 rsvd0[4];
519 __be32 opt_param_mask;
520 u8 rsvd1[4];
521 struct mlx5_qp_context ctx;
522 u8 rsvd3[16];
523 __be64 pas[0];
524};
525
526struct mlx5_create_qp_mbox_out {
527 struct mlx5_outbox_hdr hdr;
528 __be32 qpn;
529 u8 rsvd0[4];
530};
531
532struct mlx5_destroy_qp_mbox_in {
533 struct mlx5_inbox_hdr hdr;
534 __be32 qpn;
535 u8 rsvd0[4];
536};
537
538struct mlx5_destroy_qp_mbox_out {
539 struct mlx5_outbox_hdr hdr;
540 u8 rsvd0[8];
541};
542
543struct mlx5_modify_qp_mbox_in {
544 struct mlx5_inbox_hdr hdr;
545 __be32 qpn;
546 u8 rsvd1[4];
547 __be32 optparam;
548 u8 rsvd0[4];
549 struct mlx5_qp_context ctx;
550};
551
552struct mlx5_modify_qp_mbox_out {
553 struct mlx5_outbox_hdr hdr;
554 u8 rsvd0[8];
555};
556
557struct mlx5_query_qp_mbox_in {
558 struct mlx5_inbox_hdr hdr;
559 __be32 qpn;
560 u8 rsvd[4];
561};
562
563struct mlx5_query_qp_mbox_out {
564 struct mlx5_outbox_hdr hdr;
565 u8 rsvd1[8];
566 __be32 optparam;
567 u8 rsvd0[4];
568 struct mlx5_qp_context ctx;
569 u8 rsvd2[16];
570 __be64 pas[0];
571};
572
573struct mlx5_conf_sqp_mbox_in {
574 struct mlx5_inbox_hdr hdr;
575 __be32 qpn;
576 u8 rsvd[3];
577 u8 type;
578};
579
580struct mlx5_conf_sqp_mbox_out {
581 struct mlx5_outbox_hdr hdr;
582 u8 rsvd[8];
583};
584
585struct mlx5_alloc_xrcd_mbox_in {
586 struct mlx5_inbox_hdr hdr;
587 u8 rsvd[8];
588};
589
590struct mlx5_alloc_xrcd_mbox_out {
591 struct mlx5_outbox_hdr hdr;
592 __be32 xrcdn;
593 u8 rsvd[4];
594};
595
596struct mlx5_dealloc_xrcd_mbox_in {
597 struct mlx5_inbox_hdr hdr;
598 __be32 xrcdn;
599 u8 rsvd[4];
600};
601
602struct mlx5_dealloc_xrcd_mbox_out {
603 struct mlx5_outbox_hdr hdr;
604 u8 rsvd[8];
605};
606
607static inline struct mlx5_core_qp *__mlx5_qp_lookup(struct mlx5_core_dev *dev, u32 qpn)
608{
609 return radix_tree_lookup(&dev->priv.qp_table.tree, qpn);
610}
611
Sagi Grimbergd5436ba2014-02-23 14:19:12 +0200612static inline struct mlx5_core_mr *__mlx5_mr_lookup(struct mlx5_core_dev *dev, u32 key)
613{
614 return radix_tree_lookup(&dev->priv.mr_table.tree, key);
615}
616
Haggai Erane420f0c2014-12-11 17:04:19 +0200617struct mlx5_page_fault_resume_mbox_in {
618 struct mlx5_inbox_hdr hdr;
619 __be32 flags_qpn;
620 u8 reserved[4];
621};
622
623struct mlx5_page_fault_resume_mbox_out {
624 struct mlx5_outbox_hdr hdr;
625 u8 rsvd[8];
626};
627
Eli Cohene126ba92013-07-07 17:25:49 +0300628int mlx5_core_create_qp(struct mlx5_core_dev *dev,
629 struct mlx5_core_qp *qp,
630 struct mlx5_create_qp_mbox_in *in,
631 int inlen);
632int mlx5_core_qp_modify(struct mlx5_core_dev *dev, enum mlx5_qp_state cur_state,
633 enum mlx5_qp_state new_state,
634 struct mlx5_modify_qp_mbox_in *in, int sqd_event,
635 struct mlx5_core_qp *qp);
636int mlx5_core_destroy_qp(struct mlx5_core_dev *dev,
637 struct mlx5_core_qp *qp);
638int mlx5_core_qp_query(struct mlx5_core_dev *dev, struct mlx5_core_qp *qp,
639 struct mlx5_query_qp_mbox_out *out, int outlen);
640
641int mlx5_core_xrcd_alloc(struct mlx5_core_dev *dev, u32 *xrcdn);
642int mlx5_core_xrcd_dealloc(struct mlx5_core_dev *dev, u32 xrcdn);
643void mlx5_init_qp_table(struct mlx5_core_dev *dev);
644void mlx5_cleanup_qp_table(struct mlx5_core_dev *dev);
645int mlx5_debug_qp_add(struct mlx5_core_dev *dev, struct mlx5_core_qp *qp);
646void mlx5_debug_qp_remove(struct mlx5_core_dev *dev, struct mlx5_core_qp *qp);
Haggai Erane420f0c2014-12-11 17:04:19 +0200647#ifdef CONFIG_INFINIBAND_ON_DEMAND_PAGING
648int mlx5_core_page_fault_resume(struct mlx5_core_dev *dev, u32 qpn,
649 u8 context, int error);
650#endif
Eli Cohene126ba92013-07-07 17:25:49 +0300651
Eli Cohendb81a5c2014-01-14 17:45:19 +0200652static inline const char *mlx5_qp_type_str(int type)
653{
654 switch (type) {
655 case MLX5_QP_ST_RC: return "RC";
656 case MLX5_QP_ST_UC: return "C";
657 case MLX5_QP_ST_UD: return "UD";
658 case MLX5_QP_ST_XRC: return "XRC";
659 case MLX5_QP_ST_MLX: return "MLX";
660 case MLX5_QP_ST_QP0: return "QP0";
661 case MLX5_QP_ST_QP1: return "QP1";
662 case MLX5_QP_ST_RAW_ETHERTYPE: return "RAW_ETHERTYPE";
663 case MLX5_QP_ST_RAW_IPV6: return "RAW_IPV6";
664 case MLX5_QP_ST_SNIFFER: return "SNIFFER";
665 case MLX5_QP_ST_SYNC_UMR: return "SYNC_UMR";
666 case MLX5_QP_ST_PTP_1588: return "PTP_1588";
667 case MLX5_QP_ST_REG_UMR: return "REG_UMR";
668 default: return "Invalid transport type";
669 }
670}
671
672static inline const char *mlx5_qp_state_str(int state)
673{
674 switch (state) {
675 case MLX5_QP_STATE_RST:
676 return "RST";
677 case MLX5_QP_STATE_INIT:
678 return "INIT";
679 case MLX5_QP_STATE_RTR:
680 return "RTR";
681 case MLX5_QP_STATE_RTS:
682 return "RTS";
683 case MLX5_QP_STATE_SQER:
684 return "SQER";
685 case MLX5_QP_STATE_SQD:
686 return "SQD";
687 case MLX5_QP_STATE_ERR:
688 return "ERR";
689 case MLX5_QP_STATE_SQ_DRAINING:
690 return "SQ_DRAINING";
691 case MLX5_QP_STATE_SUSPENDED:
692 return "SUSPENDED";
693 default: return "Invalid QP state";
694 }
695}
696
Eli Cohene126ba92013-07-07 17:25:49 +0300697#endif /* MLX5_QP_H */