blob: 67f4b9660b06fe77375c4bcfdc9f117faef808a4 [file] [log] [blame]
Eli Cohene126ba92013-07-07 17:25:49 +03001/*
2 * Copyright (c) 2013, Mellanox Technologies inc. 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_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
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,
85 MLX5_QP_NUM_STATE
86};
87
88enum {
89 MLX5_QP_ST_RC = 0x0,
90 MLX5_QP_ST_UC = 0x1,
91 MLX5_QP_ST_UD = 0x2,
92 MLX5_QP_ST_XRC = 0x3,
93 MLX5_QP_ST_MLX = 0x4,
94 MLX5_QP_ST_DCI = 0x5,
95 MLX5_QP_ST_DCT = 0x6,
96 MLX5_QP_ST_QP0 = 0x7,
97 MLX5_QP_ST_QP1 = 0x8,
98 MLX5_QP_ST_RAW_ETHERTYPE = 0x9,
99 MLX5_QP_ST_RAW_IPV6 = 0xa,
100 MLX5_QP_ST_SNIFFER = 0xb,
101 MLX5_QP_ST_SYNC_UMR = 0xe,
102 MLX5_QP_ST_PTP_1588 = 0xd,
103 MLX5_QP_ST_REG_UMR = 0xc,
104 MLX5_QP_ST_MAX
105};
106
107enum {
108 MLX5_QP_PM_MIGRATED = 0x3,
109 MLX5_QP_PM_ARMED = 0x0,
110 MLX5_QP_PM_REARM = 0x1
111};
112
113enum {
114 MLX5_NON_ZERO_RQ = 0 << 24,
115 MLX5_SRQ_RQ = 1 << 24,
116 MLX5_CRQ_RQ = 2 << 24,
117 MLX5_ZERO_LEN_RQ = 3 << 24
118};
119
120enum {
121 /* params1 */
122 MLX5_QP_BIT_SRE = 1 << 15,
123 MLX5_QP_BIT_SWE = 1 << 14,
124 MLX5_QP_BIT_SAE = 1 << 13,
125 /* params2 */
126 MLX5_QP_BIT_RRE = 1 << 15,
127 MLX5_QP_BIT_RWE = 1 << 14,
128 MLX5_QP_BIT_RAE = 1 << 13,
129 MLX5_QP_BIT_RIC = 1 << 4,
130};
131
132enum {
133 MLX5_WQE_CTRL_CQ_UPDATE = 2 << 2,
134 MLX5_WQE_CTRL_SOLICITED = 1 << 1,
135};
136
137enum {
138 MLX5_SEND_WQE_BB = 64,
139};
140
141enum {
142 MLX5_WQE_FMR_PERM_LOCAL_READ = 1 << 27,
143 MLX5_WQE_FMR_PERM_LOCAL_WRITE = 1 << 28,
144 MLX5_WQE_FMR_PERM_REMOTE_READ = 1 << 29,
145 MLX5_WQE_FMR_PERM_REMOTE_WRITE = 1 << 30,
146 MLX5_WQE_FMR_PERM_ATOMIC = 1 << 31
147};
148
149enum {
150 MLX5_FENCE_MODE_NONE = 0 << 5,
151 MLX5_FENCE_MODE_INITIATOR_SMALL = 1 << 5,
152 MLX5_FENCE_MODE_STRONG_ORDERING = 3 << 5,
153 MLX5_FENCE_MODE_SMALL_AND_FENCE = 4 << 5,
154};
155
156enum {
157 MLX5_QP_LAT_SENSITIVE = 1 << 28,
Eli Cohenf360d882014-04-02 00:10:16 +0300158 MLX5_QP_BLOCK_MCAST = 1 << 30,
Eli Cohene126ba92013-07-07 17:25:49 +0300159 MLX5_QP_ENABLE_SIG = 1 << 31,
160};
161
162enum {
163 MLX5_RCV_DBR = 0,
164 MLX5_SND_DBR = 1,
165};
166
Sagi Grimberge6631812014-02-23 14:19:11 +0200167enum {
168 MLX5_FLAGS_INLINE = 1<<7,
169 MLX5_FLAGS_CHECK_FREE = 1<<5,
170};
171
Eli Cohene126ba92013-07-07 17:25:49 +0300172struct mlx5_wqe_fmr_seg {
173 __be32 flags;
174 __be32 mem_key;
175 __be64 buf_list;
176 __be64 start_addr;
177 __be64 reg_len;
178 __be32 offset;
179 __be32 page_size;
180 u32 reserved[2];
181};
182
183struct mlx5_wqe_ctrl_seg {
184 __be32 opmod_idx_opcode;
185 __be32 qpn_ds;
186 u8 signature;
187 u8 rsvd[2];
188 u8 fm_ce_se;
189 __be32 imm;
190};
191
Haggai Eranc1395a22014-12-11 17:04:14 +0200192#define MLX5_WQE_CTRL_DS_MASK 0x3f
193#define MLX5_WQE_DS_UNITS 16
194
Eli Cohene126ba92013-07-07 17:25:49 +0300195struct mlx5_wqe_xrc_seg {
196 __be32 xrc_srqn;
197 u8 rsvd[12];
198};
199
200struct mlx5_wqe_masked_atomic_seg {
201 __be64 swap_add;
202 __be64 compare;
203 __be64 swap_add_mask;
204 __be64 compare_mask;
205};
206
207struct mlx5_av {
208 union {
209 struct {
210 __be32 qkey;
211 __be32 reserved;
212 } qkey;
213 __be64 dc_key;
214 } key;
215 __be32 dqp_dct;
216 u8 stat_rate_sl;
217 u8 fl_mlid;
218 __be16 rlid;
219 u8 reserved0[10];
220 u8 tclass;
221 u8 hop_limit;
222 __be32 grh_gid_fl;
223 u8 rgid[16];
224};
225
226struct mlx5_wqe_datagram_seg {
227 struct mlx5_av av;
228};
229
230struct mlx5_wqe_raddr_seg {
231 __be64 raddr;
232 __be32 rkey;
233 u32 reserved;
234};
235
236struct mlx5_wqe_atomic_seg {
237 __be64 swap_add;
238 __be64 compare;
239};
240
241struct mlx5_wqe_data_seg {
242 __be32 byte_count;
243 __be32 lkey;
244 __be64 addr;
245};
246
247struct mlx5_wqe_umr_ctrl_seg {
248 u8 flags;
249 u8 rsvd0[3];
250 __be16 klm_octowords;
251 __be16 bsf_octowords;
252 __be64 mkey_mask;
253 u8 rsvd1[32];
254};
255
256struct mlx5_seg_set_psv {
257 __be32 psv_num;
258 __be16 syndrome;
259 __be16 status;
260 __be32 transient_sig;
261 __be32 ref_tag;
262};
263
264struct mlx5_seg_get_psv {
265 u8 rsvd[19];
266 u8 num_psv;
267 __be32 l_key;
268 __be64 va;
269 __be32 psv_index[4];
270};
271
272struct mlx5_seg_check_psv {
273 u8 rsvd0[2];
274 __be16 err_coalescing_op;
275 u8 rsvd1[2];
276 __be16 xport_err_op;
277 u8 rsvd2[2];
278 __be16 xport_err_mask;
279 u8 rsvd3[7];
280 u8 num_psv;
281 __be32 l_key;
282 __be64 va;
283 __be32 psv_index[4];
284};
285
286struct mlx5_rwqe_sig {
287 u8 rsvd0[4];
288 u8 signature;
289 u8 rsvd1[11];
290};
291
292struct mlx5_wqe_signature_seg {
293 u8 rsvd0[4];
294 u8 signature;
295 u8 rsvd1[11];
296};
297
298struct mlx5_wqe_inline_seg {
299 __be32 byte_count;
300};
301
Sagi Grimberg142537f2014-08-13 19:54:32 +0300302enum mlx5_sig_type {
303 MLX5_DIF_CRC = 0x1,
304 MLX5_DIF_IPCS = 0x2,
305};
306
307struct mlx5_bsf_inl {
308 __be16 vld_refresh;
309 __be16 dif_apptag;
310 __be32 dif_reftag;
311 u8 sig_type;
312 u8 rp_inv_seed;
313 u8 rsvd[3];
314 u8 dif_inc_ref_guard_check;
315 __be16 dif_app_bitmask_check;
316};
317
Sagi Grimberge6631812014-02-23 14:19:11 +0200318struct mlx5_bsf {
319 struct mlx5_bsf_basic {
320 u8 bsf_size_sbs;
321 u8 check_byte_mask;
322 union {
323 u8 copy_byte_mask;
324 u8 bs_selector;
325 u8 rsvd_wflags;
326 } wire;
327 union {
328 u8 bs_selector;
329 u8 rsvd_mflags;
330 } mem;
331 __be32 raw_data_size;
332 __be32 w_bfs_psv;
333 __be32 m_bfs_psv;
334 } basic;
335 struct mlx5_bsf_ext {
336 __be32 t_init_gen_pro_size;
337 __be32 rsvd_epi_size;
338 __be32 w_tfs_psv;
339 __be32 m_tfs_psv;
340 } ext;
Sagi Grimberg142537f2014-08-13 19:54:32 +0300341 struct mlx5_bsf_inl w_inl;
342 struct mlx5_bsf_inl m_inl;
Sagi Grimberge6631812014-02-23 14:19:11 +0200343};
344
345struct mlx5_klm {
346 __be32 bcount;
347 __be32 key;
348 __be64 va;
349};
350
351struct mlx5_stride_block_entry {
352 __be16 stride;
353 __be16 bcount;
354 __be32 key;
355 __be64 va;
356};
357
358struct mlx5_stride_block_ctrl_seg {
359 __be32 bcount_per_cycle;
360 __be32 op;
361 __be32 repeat_count;
362 u16 rsvd;
363 __be16 num_entries;
364};
365
Eli Cohene126ba92013-07-07 17:25:49 +0300366struct mlx5_core_qp {
Eli Cohen59033252014-10-02 12:19:45 +0300367 struct mlx5_core_rsc_common common; /* must be first */
Eli Cohene126ba92013-07-07 17:25:49 +0300368 void (*event) (struct mlx5_core_qp *, int);
369 int qpn;
Eli Cohene126ba92013-07-07 17:25:49 +0300370 struct mlx5_rsc_debug *dbg;
371 int pid;
372};
373
374struct mlx5_qp_path {
375 u8 fl;
376 u8 rsvd3;
377 u8 free_ar;
378 u8 pkey_index;
379 u8 rsvd0;
380 u8 grh_mlid;
381 __be16 rlid;
382 u8 ackto_lt;
383 u8 mgid_index;
384 u8 static_rate;
385 u8 hop_limit;
386 __be32 tclass_flowlabel;
387 u8 rgid[16];
388 u8 rsvd1[4];
389 u8 sl;
390 u8 port;
391 u8 rsvd2[6];
392};
393
394struct mlx5_qp_context {
395 __be32 flags;
396 __be32 flags_pd;
397 u8 mtu_msgmax;
398 u8 rq_size_stride;
399 __be16 sq_crq_size;
400 __be32 qp_counter_set_usr_page;
401 __be32 wire_qpn;
402 __be32 log_pg_sz_remote_qpn;
403 struct mlx5_qp_path pri_path;
404 struct mlx5_qp_path alt_path;
405 __be32 params1;
406 u8 reserved2[4];
407 __be32 next_send_psn;
408 __be32 cqn_send;
409 u8 reserved3[8];
410 __be32 last_acked_psn;
411 __be32 ssn;
412 __be32 params2;
413 __be32 rnr_nextrecvpsn;
414 __be32 xrcd;
415 __be32 cqn_recv;
416 __be64 db_rec_addr;
417 __be32 qkey;
418 __be32 rq_type_srqn;
419 __be32 rmsn;
420 __be16 hw_sq_wqe_counter;
421 __be16 sw_sq_wqe_counter;
422 __be16 hw_rcyclic_byte_counter;
423 __be16 hw_rq_counter;
424 __be16 sw_rcyclic_byte_counter;
425 __be16 sw_rq_counter;
426 u8 rsvd0[5];
427 u8 cgs;
428 u8 cs_req;
429 u8 cs_res;
430 __be64 dc_access_key;
431 u8 rsvd1[24];
432};
433
434struct mlx5_create_qp_mbox_in {
435 struct mlx5_inbox_hdr hdr;
436 __be32 input_qpn;
437 u8 rsvd0[4];
438 __be32 opt_param_mask;
439 u8 rsvd1[4];
440 struct mlx5_qp_context ctx;
441 u8 rsvd3[16];
442 __be64 pas[0];
443};
444
445struct mlx5_create_qp_mbox_out {
446 struct mlx5_outbox_hdr hdr;
447 __be32 qpn;
448 u8 rsvd0[4];
449};
450
451struct mlx5_destroy_qp_mbox_in {
452 struct mlx5_inbox_hdr hdr;
453 __be32 qpn;
454 u8 rsvd0[4];
455};
456
457struct mlx5_destroy_qp_mbox_out {
458 struct mlx5_outbox_hdr hdr;
459 u8 rsvd0[8];
460};
461
462struct mlx5_modify_qp_mbox_in {
463 struct mlx5_inbox_hdr hdr;
464 __be32 qpn;
465 u8 rsvd1[4];
466 __be32 optparam;
467 u8 rsvd0[4];
468 struct mlx5_qp_context ctx;
469};
470
471struct mlx5_modify_qp_mbox_out {
472 struct mlx5_outbox_hdr hdr;
473 u8 rsvd0[8];
474};
475
476struct mlx5_query_qp_mbox_in {
477 struct mlx5_inbox_hdr hdr;
478 __be32 qpn;
479 u8 rsvd[4];
480};
481
482struct mlx5_query_qp_mbox_out {
483 struct mlx5_outbox_hdr hdr;
484 u8 rsvd1[8];
485 __be32 optparam;
486 u8 rsvd0[4];
487 struct mlx5_qp_context ctx;
488 u8 rsvd2[16];
489 __be64 pas[0];
490};
491
492struct mlx5_conf_sqp_mbox_in {
493 struct mlx5_inbox_hdr hdr;
494 __be32 qpn;
495 u8 rsvd[3];
496 u8 type;
497};
498
499struct mlx5_conf_sqp_mbox_out {
500 struct mlx5_outbox_hdr hdr;
501 u8 rsvd[8];
502};
503
504struct mlx5_alloc_xrcd_mbox_in {
505 struct mlx5_inbox_hdr hdr;
506 u8 rsvd[8];
507};
508
509struct mlx5_alloc_xrcd_mbox_out {
510 struct mlx5_outbox_hdr hdr;
511 __be32 xrcdn;
512 u8 rsvd[4];
513};
514
515struct mlx5_dealloc_xrcd_mbox_in {
516 struct mlx5_inbox_hdr hdr;
517 __be32 xrcdn;
518 u8 rsvd[4];
519};
520
521struct mlx5_dealloc_xrcd_mbox_out {
522 struct mlx5_outbox_hdr hdr;
523 u8 rsvd[8];
524};
525
526static inline struct mlx5_core_qp *__mlx5_qp_lookup(struct mlx5_core_dev *dev, u32 qpn)
527{
528 return radix_tree_lookup(&dev->priv.qp_table.tree, qpn);
529}
530
Sagi Grimbergd5436ba2014-02-23 14:19:12 +0200531static inline struct mlx5_core_mr *__mlx5_mr_lookup(struct mlx5_core_dev *dev, u32 key)
532{
533 return radix_tree_lookup(&dev->priv.mr_table.tree, key);
534}
535
Eli Cohene126ba92013-07-07 17:25:49 +0300536int mlx5_core_create_qp(struct mlx5_core_dev *dev,
537 struct mlx5_core_qp *qp,
538 struct mlx5_create_qp_mbox_in *in,
539 int inlen);
540int mlx5_core_qp_modify(struct mlx5_core_dev *dev, enum mlx5_qp_state cur_state,
541 enum mlx5_qp_state new_state,
542 struct mlx5_modify_qp_mbox_in *in, int sqd_event,
543 struct mlx5_core_qp *qp);
544int mlx5_core_destroy_qp(struct mlx5_core_dev *dev,
545 struct mlx5_core_qp *qp);
546int mlx5_core_qp_query(struct mlx5_core_dev *dev, struct mlx5_core_qp *qp,
547 struct mlx5_query_qp_mbox_out *out, int outlen);
548
549int mlx5_core_xrcd_alloc(struct mlx5_core_dev *dev, u32 *xrcdn);
550int mlx5_core_xrcd_dealloc(struct mlx5_core_dev *dev, u32 xrcdn);
551void mlx5_init_qp_table(struct mlx5_core_dev *dev);
552void mlx5_cleanup_qp_table(struct mlx5_core_dev *dev);
553int mlx5_debug_qp_add(struct mlx5_core_dev *dev, struct mlx5_core_qp *qp);
554void mlx5_debug_qp_remove(struct mlx5_core_dev *dev, struct mlx5_core_qp *qp);
555
Eli Cohendb81a5c2014-01-14 17:45:19 +0200556static inline const char *mlx5_qp_type_str(int type)
557{
558 switch (type) {
559 case MLX5_QP_ST_RC: return "RC";
560 case MLX5_QP_ST_UC: return "C";
561 case MLX5_QP_ST_UD: return "UD";
562 case MLX5_QP_ST_XRC: return "XRC";
563 case MLX5_QP_ST_MLX: return "MLX";
564 case MLX5_QP_ST_QP0: return "QP0";
565 case MLX5_QP_ST_QP1: return "QP1";
566 case MLX5_QP_ST_RAW_ETHERTYPE: return "RAW_ETHERTYPE";
567 case MLX5_QP_ST_RAW_IPV6: return "RAW_IPV6";
568 case MLX5_QP_ST_SNIFFER: return "SNIFFER";
569 case MLX5_QP_ST_SYNC_UMR: return "SYNC_UMR";
570 case MLX5_QP_ST_PTP_1588: return "PTP_1588";
571 case MLX5_QP_ST_REG_UMR: return "REG_UMR";
572 default: return "Invalid transport type";
573 }
574}
575
576static inline const char *mlx5_qp_state_str(int state)
577{
578 switch (state) {
579 case MLX5_QP_STATE_RST:
580 return "RST";
581 case MLX5_QP_STATE_INIT:
582 return "INIT";
583 case MLX5_QP_STATE_RTR:
584 return "RTR";
585 case MLX5_QP_STATE_RTS:
586 return "RTS";
587 case MLX5_QP_STATE_SQER:
588 return "SQER";
589 case MLX5_QP_STATE_SQD:
590 return "SQD";
591 case MLX5_QP_STATE_ERR:
592 return "ERR";
593 case MLX5_QP_STATE_SQ_DRAINING:
594 return "SQ_DRAINING";
595 case MLX5_QP_STATE_SUSPENDED:
596 return "SUSPENDED";
597 default: return "Invalid QP state";
598 }
599}
600
Eli Cohene126ba92013-07-07 17:25:49 +0300601#endif /* MLX5_QP_H */