GNU Linux-libre 5.10.215-gnu1
[releases.git] / drivers / infiniband / hw / mlx5 / qpc.c
1 // SPDX-License-Identifier: GPL-2.0 OR Linux-OpenIB
2 /*
3  * Copyright (c) 2013-2020, Mellanox Technologies inc. All rights reserved.
4  */
5
6 #include <linux/gfp.h>
7 #include <linux/mlx5/qp.h>
8 #include <linux/mlx5/driver.h>
9 #include "mlx5_ib.h"
10 #include "qp.h"
11
12 static int mlx5_core_drain_dct(struct mlx5_ib_dev *dev,
13                                struct mlx5_core_dct *dct);
14
15 static struct mlx5_core_rsc_common *
16 mlx5_get_rsc(struct mlx5_qp_table *table, u32 rsn)
17 {
18         struct mlx5_core_rsc_common *common;
19         unsigned long flags;
20
21         spin_lock_irqsave(&table->lock, flags);
22
23         common = radix_tree_lookup(&table->tree, rsn);
24         if (common)
25                 refcount_inc(&common->refcount);
26
27         spin_unlock_irqrestore(&table->lock, flags);
28
29         return common;
30 }
31
32 void mlx5_core_put_rsc(struct mlx5_core_rsc_common *common)
33 {
34         if (refcount_dec_and_test(&common->refcount))
35                 complete(&common->free);
36 }
37
38 static u64 qp_allowed_event_types(void)
39 {
40         u64 mask;
41
42         mask = BIT(MLX5_EVENT_TYPE_PATH_MIG) |
43                BIT(MLX5_EVENT_TYPE_COMM_EST) |
44                BIT(MLX5_EVENT_TYPE_SQ_DRAINED) |
45                BIT(MLX5_EVENT_TYPE_SRQ_LAST_WQE) |
46                BIT(MLX5_EVENT_TYPE_WQ_CATAS_ERROR) |
47                BIT(MLX5_EVENT_TYPE_PATH_MIG_FAILED) |
48                BIT(MLX5_EVENT_TYPE_WQ_INVAL_REQ_ERROR) |
49                BIT(MLX5_EVENT_TYPE_WQ_ACCESS_ERROR);
50
51         return mask;
52 }
53
54 static u64 rq_allowed_event_types(void)
55 {
56         u64 mask;
57
58         mask = BIT(MLX5_EVENT_TYPE_SRQ_LAST_WQE) |
59                BIT(MLX5_EVENT_TYPE_WQ_CATAS_ERROR);
60
61         return mask;
62 }
63
64 static u64 sq_allowed_event_types(void)
65 {
66         return BIT(MLX5_EVENT_TYPE_WQ_CATAS_ERROR);
67 }
68
69 static u64 dct_allowed_event_types(void)
70 {
71         return BIT(MLX5_EVENT_TYPE_DCT_DRAINED);
72 }
73
74 static bool is_event_type_allowed(int rsc_type, int event_type)
75 {
76         switch (rsc_type) {
77         case MLX5_EVENT_QUEUE_TYPE_QP:
78                 return BIT(event_type) & qp_allowed_event_types();
79         case MLX5_EVENT_QUEUE_TYPE_RQ:
80                 return BIT(event_type) & rq_allowed_event_types();
81         case MLX5_EVENT_QUEUE_TYPE_SQ:
82                 return BIT(event_type) & sq_allowed_event_types();
83         case MLX5_EVENT_QUEUE_TYPE_DCT:
84                 return BIT(event_type) & dct_allowed_event_types();
85         default:
86                 WARN(1, "Event arrived for unknown resource type");
87                 return false;
88         }
89 }
90
91 static int rsc_event_notifier(struct notifier_block *nb,
92                               unsigned long type, void *data)
93 {
94         struct mlx5_core_rsc_common *common;
95         struct mlx5_qp_table *table;
96         struct mlx5_core_dct *dct;
97         u8 event_type = (u8)type;
98         struct mlx5_core_qp *qp;
99         struct mlx5_eqe *eqe;
100         u32 rsn;
101
102         switch (event_type) {
103         case MLX5_EVENT_TYPE_DCT_DRAINED:
104                 eqe = data;
105                 rsn = be32_to_cpu(eqe->data.dct.dctn) & 0xffffff;
106                 rsn |= (MLX5_RES_DCT << MLX5_USER_INDEX_LEN);
107                 break;
108         case MLX5_EVENT_TYPE_PATH_MIG:
109         case MLX5_EVENT_TYPE_COMM_EST:
110         case MLX5_EVENT_TYPE_SQ_DRAINED:
111         case MLX5_EVENT_TYPE_SRQ_LAST_WQE:
112         case MLX5_EVENT_TYPE_WQ_CATAS_ERROR:
113         case MLX5_EVENT_TYPE_PATH_MIG_FAILED:
114         case MLX5_EVENT_TYPE_WQ_INVAL_REQ_ERROR:
115         case MLX5_EVENT_TYPE_WQ_ACCESS_ERROR:
116                 eqe = data;
117                 rsn = be32_to_cpu(eqe->data.qp_srq.qp_srq_n) & 0xffffff;
118                 rsn |= (eqe->data.qp_srq.type << MLX5_USER_INDEX_LEN);
119                 break;
120         default:
121                 return NOTIFY_DONE;
122         }
123
124         table = container_of(nb, struct mlx5_qp_table, nb);
125         common = mlx5_get_rsc(table, rsn);
126         if (!common)
127                 return NOTIFY_OK;
128
129         if (!is_event_type_allowed((rsn >> MLX5_USER_INDEX_LEN), event_type))
130                 goto out;
131
132         switch (common->res) {
133         case MLX5_RES_QP:
134         case MLX5_RES_RQ:
135         case MLX5_RES_SQ:
136                 qp = (struct mlx5_core_qp *)common;
137                 qp->event(qp, event_type);
138                 break;
139         case MLX5_RES_DCT:
140                 dct = (struct mlx5_core_dct *)common;
141                 if (event_type == MLX5_EVENT_TYPE_DCT_DRAINED)
142                         complete(&dct->drained);
143                 break;
144         default:
145                 break;
146         }
147 out:
148         mlx5_core_put_rsc(common);
149
150         return NOTIFY_OK;
151 }
152
153 static int create_resource_common(struct mlx5_ib_dev *dev,
154                                   struct mlx5_core_qp *qp, int rsc_type)
155 {
156         struct mlx5_qp_table *table = &dev->qp_table;
157         int err;
158
159         qp->common.res = rsc_type;
160         spin_lock_irq(&table->lock);
161         err = radix_tree_insert(&table->tree,
162                                 qp->qpn | (rsc_type << MLX5_USER_INDEX_LEN),
163                                 qp);
164         spin_unlock_irq(&table->lock);
165         if (err)
166                 return err;
167
168         refcount_set(&qp->common.refcount, 1);
169         init_completion(&qp->common.free);
170         qp->pid = current->pid;
171
172         return 0;
173 }
174
175 static void destroy_resource_common(struct mlx5_ib_dev *dev,
176                                     struct mlx5_core_qp *qp)
177 {
178         struct mlx5_qp_table *table = &dev->qp_table;
179         unsigned long flags;
180
181         spin_lock_irqsave(&table->lock, flags);
182         radix_tree_delete(&table->tree,
183                           qp->qpn | (qp->common.res << MLX5_USER_INDEX_LEN));
184         spin_unlock_irqrestore(&table->lock, flags);
185         mlx5_core_put_rsc((struct mlx5_core_rsc_common *)qp);
186         wait_for_completion(&qp->common.free);
187 }
188
189 static int _mlx5_core_destroy_dct(struct mlx5_ib_dev *dev,
190                                   struct mlx5_core_dct *dct, bool need_cleanup)
191 {
192         u32 in[MLX5_ST_SZ_DW(destroy_dct_in)] = {};
193         struct mlx5_core_qp *qp = &dct->mqp;
194         int err;
195
196         err = mlx5_core_drain_dct(dev, dct);
197         if (err) {
198                 if (dev->mdev->state == MLX5_DEVICE_STATE_INTERNAL_ERROR)
199                         goto destroy;
200
201                 return err;
202         }
203         wait_for_completion(&dct->drained);
204 destroy:
205         if (need_cleanup)
206                 destroy_resource_common(dev, &dct->mqp);
207         MLX5_SET(destroy_dct_in, in, opcode, MLX5_CMD_OP_DESTROY_DCT);
208         MLX5_SET(destroy_dct_in, in, dctn, qp->qpn);
209         MLX5_SET(destroy_dct_in, in, uid, qp->uid);
210         err = mlx5_cmd_exec_in(dev->mdev, destroy_dct, in);
211         return err;
212 }
213
214 int mlx5_core_create_dct(struct mlx5_ib_dev *dev, struct mlx5_core_dct *dct,
215                          u32 *in, int inlen, u32 *out, int outlen)
216 {
217         struct mlx5_core_qp *qp = &dct->mqp;
218         int err;
219
220         init_completion(&dct->drained);
221         MLX5_SET(create_dct_in, in, opcode, MLX5_CMD_OP_CREATE_DCT);
222
223         err = mlx5_cmd_exec(dev->mdev, in, inlen, out, outlen);
224         if (err)
225                 return err;
226
227         qp->qpn = MLX5_GET(create_dct_out, out, dctn);
228         qp->uid = MLX5_GET(create_dct_in, in, uid);
229         err = create_resource_common(dev, qp, MLX5_RES_DCT);
230         if (err)
231                 goto err_cmd;
232
233         return 0;
234 err_cmd:
235         _mlx5_core_destroy_dct(dev, dct, false);
236         return err;
237 }
238
239 int mlx5_qpc_create_qp(struct mlx5_ib_dev *dev, struct mlx5_core_qp *qp,
240                        u32 *in, int inlen, u32 *out)
241 {
242         u32 din[MLX5_ST_SZ_DW(destroy_qp_in)] = {};
243         int err;
244
245         MLX5_SET(create_qp_in, in, opcode, MLX5_CMD_OP_CREATE_QP);
246
247         err = mlx5_cmd_exec(dev->mdev, in, inlen, out,
248                             MLX5_ST_SZ_BYTES(create_qp_out));
249         if (err)
250                 return err;
251
252         qp->uid = MLX5_GET(create_qp_in, in, uid);
253         qp->qpn = MLX5_GET(create_qp_out, out, qpn);
254
255         err = create_resource_common(dev, qp, MLX5_RES_QP);
256         if (err)
257                 goto err_cmd;
258
259         mlx5_debug_qp_add(dev->mdev, qp);
260
261         return 0;
262
263 err_cmd:
264         MLX5_SET(destroy_qp_in, din, opcode, MLX5_CMD_OP_DESTROY_QP);
265         MLX5_SET(destroy_qp_in, din, qpn, qp->qpn);
266         MLX5_SET(destroy_qp_in, din, uid, qp->uid);
267         mlx5_cmd_exec_in(dev->mdev, destroy_qp, din);
268         return err;
269 }
270
271 static int mlx5_core_drain_dct(struct mlx5_ib_dev *dev,
272                                struct mlx5_core_dct *dct)
273 {
274         u32 in[MLX5_ST_SZ_DW(drain_dct_in)] = {};
275         struct mlx5_core_qp *qp = &dct->mqp;
276
277         MLX5_SET(drain_dct_in, in, opcode, MLX5_CMD_OP_DRAIN_DCT);
278         MLX5_SET(drain_dct_in, in, dctn, qp->qpn);
279         MLX5_SET(drain_dct_in, in, uid, qp->uid);
280         return mlx5_cmd_exec_in(dev->mdev, drain_dct, in);
281 }
282
283 int mlx5_core_destroy_dct(struct mlx5_ib_dev *dev,
284                           struct mlx5_core_dct *dct)
285 {
286         return _mlx5_core_destroy_dct(dev, dct, true);
287 }
288
289 int mlx5_core_destroy_qp(struct mlx5_ib_dev *dev, struct mlx5_core_qp *qp)
290 {
291         u32 in[MLX5_ST_SZ_DW(destroy_qp_in)] = {};
292
293         mlx5_debug_qp_remove(dev->mdev, qp);
294
295         destroy_resource_common(dev, qp);
296
297         MLX5_SET(destroy_qp_in, in, opcode, MLX5_CMD_OP_DESTROY_QP);
298         MLX5_SET(destroy_qp_in, in, qpn, qp->qpn);
299         MLX5_SET(destroy_qp_in, in, uid, qp->uid);
300         return mlx5_cmd_exec_in(dev->mdev, destroy_qp, in);
301 }
302
303 int mlx5_core_set_delay_drop(struct mlx5_ib_dev *dev,
304                              u32 timeout_usec)
305 {
306         u32 in[MLX5_ST_SZ_DW(set_delay_drop_params_in)] = {};
307
308         MLX5_SET(set_delay_drop_params_in, in, opcode,
309                  MLX5_CMD_OP_SET_DELAY_DROP_PARAMS);
310         MLX5_SET(set_delay_drop_params_in, in, delay_drop_timeout,
311                  timeout_usec / 100);
312         return mlx5_cmd_exec_in(dev->mdev, set_delay_drop_params, in);
313 }
314
315 struct mbox_info {
316         u32 *in;
317         u32 *out;
318         int inlen;
319         int outlen;
320 };
321
322 static int mbox_alloc(struct mbox_info *mbox, int inlen, int outlen)
323 {
324         mbox->inlen  = inlen;
325         mbox->outlen = outlen;
326         mbox->in = kzalloc(mbox->inlen, GFP_KERNEL);
327         mbox->out = kzalloc(mbox->outlen, GFP_KERNEL);
328         if (!mbox->in || !mbox->out) {
329                 kfree(mbox->in);
330                 kfree(mbox->out);
331                 return -ENOMEM;
332         }
333
334         return 0;
335 }
336
337 static void mbox_free(struct mbox_info *mbox)
338 {
339         kfree(mbox->in);
340         kfree(mbox->out);
341 }
342
343 static int get_ece_from_mbox(void *out, u16 opcode)
344 {
345         int ece = 0;
346
347         switch (opcode) {
348         case MLX5_CMD_OP_INIT2INIT_QP:
349                 ece = MLX5_GET(init2init_qp_out, out, ece);
350                 break;
351         case MLX5_CMD_OP_INIT2RTR_QP:
352                 ece = MLX5_GET(init2rtr_qp_out, out, ece);
353                 break;
354         case MLX5_CMD_OP_RTR2RTS_QP:
355                 ece = MLX5_GET(rtr2rts_qp_out, out, ece);
356                 break;
357         case MLX5_CMD_OP_RTS2RTS_QP:
358                 ece = MLX5_GET(rts2rts_qp_out, out, ece);
359                 break;
360         case MLX5_CMD_OP_RST2INIT_QP:
361                 ece = MLX5_GET(rst2init_qp_out, out, ece);
362                 break;
363         default:
364                 break;
365         }
366
367         return ece;
368 }
369
370 static int modify_qp_mbox_alloc(struct mlx5_core_dev *dev, u16 opcode, int qpn,
371                                 u32 opt_param_mask, void *qpc,
372                                 struct mbox_info *mbox, u16 uid, u32 ece)
373 {
374         mbox->out = NULL;
375         mbox->in = NULL;
376
377 #define MBOX_ALLOC(mbox, typ)  \
378         mbox_alloc(mbox, MLX5_ST_SZ_BYTES(typ##_in), MLX5_ST_SZ_BYTES(typ##_out))
379
380 #define MOD_QP_IN_SET(typ, in, _opcode, _qpn, _uid)                            \
381         do {                                                                   \
382                 MLX5_SET(typ##_in, in, opcode, _opcode);                       \
383                 MLX5_SET(typ##_in, in, qpn, _qpn);                             \
384                 MLX5_SET(typ##_in, in, uid, _uid);                             \
385         } while (0)
386
387 #define MOD_QP_IN_SET_QPC(typ, in, _opcode, _qpn, _opt_p, _qpc, _uid)          \
388         do {                                                                   \
389                 MOD_QP_IN_SET(typ, in, _opcode, _qpn, _uid);                   \
390                 MLX5_SET(typ##_in, in, opt_param_mask, _opt_p);                \
391                 memcpy(MLX5_ADDR_OF(typ##_in, in, qpc), _qpc,                  \
392                        MLX5_ST_SZ_BYTES(qpc));                                 \
393         } while (0)
394
395         switch (opcode) {
396         /* 2RST & 2ERR */
397         case MLX5_CMD_OP_2RST_QP:
398                 if (MBOX_ALLOC(mbox, qp_2rst))
399                         return -ENOMEM;
400                 MOD_QP_IN_SET(qp_2rst, mbox->in, opcode, qpn, uid);
401                 break;
402         case MLX5_CMD_OP_2ERR_QP:
403                 if (MBOX_ALLOC(mbox, qp_2err))
404                         return -ENOMEM;
405                 MOD_QP_IN_SET(qp_2err, mbox->in, opcode, qpn, uid);
406                 break;
407
408         /* MODIFY with QPC */
409         case MLX5_CMD_OP_RST2INIT_QP:
410                 if (MBOX_ALLOC(mbox, rst2init_qp))
411                         return -ENOMEM;
412                 MOD_QP_IN_SET_QPC(rst2init_qp, mbox->in, opcode, qpn,
413                                   opt_param_mask, qpc, uid);
414                 MLX5_SET(rst2init_qp_in, mbox->in, ece, ece);
415                 break;
416         case MLX5_CMD_OP_INIT2RTR_QP:
417                 if (MBOX_ALLOC(mbox, init2rtr_qp))
418                         return -ENOMEM;
419                 MOD_QP_IN_SET_QPC(init2rtr_qp, mbox->in, opcode, qpn,
420                                   opt_param_mask, qpc, uid);
421                 MLX5_SET(init2rtr_qp_in, mbox->in, ece, ece);
422                 break;
423         case MLX5_CMD_OP_RTR2RTS_QP:
424                 if (MBOX_ALLOC(mbox, rtr2rts_qp))
425                         return -ENOMEM;
426                 MOD_QP_IN_SET_QPC(rtr2rts_qp, mbox->in, opcode, qpn,
427                                   opt_param_mask, qpc, uid);
428                 MLX5_SET(rtr2rts_qp_in, mbox->in, ece, ece);
429                 break;
430         case MLX5_CMD_OP_RTS2RTS_QP:
431                 if (MBOX_ALLOC(mbox, rts2rts_qp))
432                         return -ENOMEM;
433                 MOD_QP_IN_SET_QPC(rts2rts_qp, mbox->in, opcode, qpn,
434                                   opt_param_mask, qpc, uid);
435                 MLX5_SET(rts2rts_qp_in, mbox->in, ece, ece);
436                 break;
437         case MLX5_CMD_OP_SQERR2RTS_QP:
438                 if (MBOX_ALLOC(mbox, sqerr2rts_qp))
439                         return -ENOMEM;
440                 MOD_QP_IN_SET_QPC(sqerr2rts_qp, mbox->in, opcode, qpn,
441                                   opt_param_mask, qpc, uid);
442                 break;
443         case MLX5_CMD_OP_INIT2INIT_QP:
444                 if (MBOX_ALLOC(mbox, init2init_qp))
445                         return -ENOMEM;
446                 MOD_QP_IN_SET_QPC(init2init_qp, mbox->in, opcode, qpn,
447                                   opt_param_mask, qpc, uid);
448                 MLX5_SET(init2init_qp_in, mbox->in, ece, ece);
449                 break;
450         default:
451                 return -EINVAL;
452         }
453         return 0;
454 }
455
456 int mlx5_core_qp_modify(struct mlx5_ib_dev *dev, u16 opcode, u32 opt_param_mask,
457                         void *qpc, struct mlx5_core_qp *qp, u32 *ece)
458 {
459         struct mbox_info mbox;
460         int err;
461
462         err = modify_qp_mbox_alloc(dev->mdev, opcode, qp->qpn, opt_param_mask,
463                                    qpc, &mbox, qp->uid, (ece) ? *ece : 0);
464         if (err)
465                 return err;
466
467         err = mlx5_cmd_exec(dev->mdev, mbox.in, mbox.inlen, mbox.out,
468                             mbox.outlen);
469
470         if (ece)
471                 *ece = get_ece_from_mbox(mbox.out, opcode);
472
473         mbox_free(&mbox);
474         return err;
475 }
476
477 int mlx5_init_qp_table(struct mlx5_ib_dev *dev)
478 {
479         struct mlx5_qp_table *table = &dev->qp_table;
480
481         spin_lock_init(&table->lock);
482         INIT_RADIX_TREE(&table->tree, GFP_ATOMIC);
483         mlx5_qp_debugfs_init(dev->mdev);
484
485         table->nb.notifier_call = rsc_event_notifier;
486         mlx5_notifier_register(dev->mdev, &table->nb);
487
488         return 0;
489 }
490
491 void mlx5_cleanup_qp_table(struct mlx5_ib_dev *dev)
492 {
493         struct mlx5_qp_table *table = &dev->qp_table;
494
495         mlx5_notifier_unregister(dev->mdev, &table->nb);
496         mlx5_qp_debugfs_cleanup(dev->mdev);
497 }
498
499 int mlx5_core_qp_query(struct mlx5_ib_dev *dev, struct mlx5_core_qp *qp,
500                        u32 *out, int outlen)
501 {
502         u32 in[MLX5_ST_SZ_DW(query_qp_in)] = {};
503
504         MLX5_SET(query_qp_in, in, opcode, MLX5_CMD_OP_QUERY_QP);
505         MLX5_SET(query_qp_in, in, qpn, qp->qpn);
506         return mlx5_cmd_exec(dev->mdev, in, sizeof(in), out, outlen);
507 }
508
509 int mlx5_core_dct_query(struct mlx5_ib_dev *dev, struct mlx5_core_dct *dct,
510                         u32 *out, int outlen)
511 {
512         u32 in[MLX5_ST_SZ_DW(query_dct_in)] = {};
513         struct mlx5_core_qp *qp = &dct->mqp;
514
515         MLX5_SET(query_dct_in, in, opcode, MLX5_CMD_OP_QUERY_DCT);
516         MLX5_SET(query_dct_in, in, dctn, qp->qpn);
517
518         return mlx5_cmd_exec(dev->mdev, (void *)&in, sizeof(in), (void *)out,
519                              outlen);
520 }
521
522 int mlx5_core_xrcd_alloc(struct mlx5_ib_dev *dev, u32 *xrcdn)
523 {
524         u32 out[MLX5_ST_SZ_DW(alloc_xrcd_out)] = {};
525         u32 in[MLX5_ST_SZ_DW(alloc_xrcd_in)] = {};
526         int err;
527
528         MLX5_SET(alloc_xrcd_in, in, opcode, MLX5_CMD_OP_ALLOC_XRCD);
529         err = mlx5_cmd_exec_inout(dev->mdev, alloc_xrcd, in, out);
530         if (!err)
531                 *xrcdn = MLX5_GET(alloc_xrcd_out, out, xrcd);
532         return err;
533 }
534
535 int mlx5_core_xrcd_dealloc(struct mlx5_ib_dev *dev, u32 xrcdn)
536 {
537         u32 in[MLX5_ST_SZ_DW(dealloc_xrcd_in)] = {};
538
539         MLX5_SET(dealloc_xrcd_in, in, opcode, MLX5_CMD_OP_DEALLOC_XRCD);
540         MLX5_SET(dealloc_xrcd_in, in, xrcd, xrcdn);
541         return mlx5_cmd_exec_in(dev->mdev, dealloc_xrcd, in);
542 }
543
544 static int destroy_rq_tracked(struct mlx5_ib_dev *dev, u32 rqn, u16 uid)
545 {
546         u32 in[MLX5_ST_SZ_DW(destroy_rq_in)] = {};
547
548         MLX5_SET(destroy_rq_in, in, opcode, MLX5_CMD_OP_DESTROY_RQ);
549         MLX5_SET(destroy_rq_in, in, rqn, rqn);
550         MLX5_SET(destroy_rq_in, in, uid, uid);
551         return mlx5_cmd_exec_in(dev->mdev, destroy_rq, in);
552 }
553
554 int mlx5_core_create_rq_tracked(struct mlx5_ib_dev *dev, u32 *in, int inlen,
555                                 struct mlx5_core_qp *rq)
556 {
557         int err;
558         u32 rqn;
559
560         err = mlx5_core_create_rq(dev->mdev, in, inlen, &rqn);
561         if (err)
562                 return err;
563
564         rq->uid = MLX5_GET(create_rq_in, in, uid);
565         rq->qpn = rqn;
566         err = create_resource_common(dev, rq, MLX5_RES_RQ);
567         if (err)
568                 goto err_destroy_rq;
569
570         return 0;
571
572 err_destroy_rq:
573         destroy_rq_tracked(dev, rq->qpn, rq->uid);
574
575         return err;
576 }
577
578 int mlx5_core_destroy_rq_tracked(struct mlx5_ib_dev *dev,
579                                  struct mlx5_core_qp *rq)
580 {
581         destroy_resource_common(dev, rq);
582         return destroy_rq_tracked(dev, rq->qpn, rq->uid);
583 }
584
585 static void destroy_sq_tracked(struct mlx5_ib_dev *dev, u32 sqn, u16 uid)
586 {
587         u32 in[MLX5_ST_SZ_DW(destroy_sq_in)] = {};
588
589         MLX5_SET(destroy_sq_in, in, opcode, MLX5_CMD_OP_DESTROY_SQ);
590         MLX5_SET(destroy_sq_in, in, sqn, sqn);
591         MLX5_SET(destroy_sq_in, in, uid, uid);
592         mlx5_cmd_exec_in(dev->mdev, destroy_sq, in);
593 }
594
595 int mlx5_core_create_sq_tracked(struct mlx5_ib_dev *dev, u32 *in, int inlen,
596                                 struct mlx5_core_qp *sq)
597 {
598         u32 out[MLX5_ST_SZ_DW(create_sq_out)] = {};
599         int err;
600
601         MLX5_SET(create_sq_in, in, opcode, MLX5_CMD_OP_CREATE_SQ);
602         err = mlx5_cmd_exec(dev->mdev, in, inlen, out, sizeof(out));
603         if (err)
604                 return err;
605
606         sq->qpn = MLX5_GET(create_sq_out, out, sqn);
607         sq->uid = MLX5_GET(create_sq_in, in, uid);
608         err = create_resource_common(dev, sq, MLX5_RES_SQ);
609         if (err)
610                 goto err_destroy_sq;
611
612         return 0;
613
614 err_destroy_sq:
615         destroy_sq_tracked(dev, sq->qpn, sq->uid);
616
617         return err;
618 }
619
620 void mlx5_core_destroy_sq_tracked(struct mlx5_ib_dev *dev,
621                                   struct mlx5_core_qp *sq)
622 {
623         destroy_resource_common(dev, sq);
624         destroy_sq_tracked(dev, sq->qpn, sq->uid);
625 }
626
627 struct mlx5_core_rsc_common *mlx5_core_res_hold(struct mlx5_ib_dev *dev,
628                                                 int res_num,
629                                                 enum mlx5_res_type res_type)
630 {
631         u32 rsn = res_num | (res_type << MLX5_USER_INDEX_LEN);
632         struct mlx5_qp_table *table = &dev->qp_table;
633
634         return mlx5_get_rsc(table, rsn);
635 }
636
637 void mlx5_core_res_put(struct mlx5_core_rsc_common *res)
638 {
639         mlx5_core_put_rsc(res);
640 }