Merge tag '4.18-fixes-smb3' of git://git.samba.org/sfrench/cifs-2.6
[sfrench/cifs-2.6.git] / drivers / net / ethernet / mellanox / mlx5 / core / wq.c
1 /*
2  * Copyright (c) 2013-2015, Mellanox Technologies, Ltd.  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 #include <linux/mlx5/driver.h>
34 #include "wq.h"
35 #include "mlx5_core.h"
36
37 u32 mlx5_wq_cyc_get_size(struct mlx5_wq_cyc *wq)
38 {
39         return (u32)wq->fbc.sz_m1 + 1;
40 }
41
42 u32 mlx5_wq_cyc_get_frag_size(struct mlx5_wq_cyc *wq)
43 {
44         return (u32)wq->fbc.frag_sz_m1 + 1;
45 }
46
47 u32 mlx5_cqwq_get_size(struct mlx5_cqwq *wq)
48 {
49         return wq->fbc.sz_m1 + 1;
50 }
51
52 u32 mlx5_wq_ll_get_size(struct mlx5_wq_ll *wq)
53 {
54         return (u32)wq->fbc.sz_m1 + 1;
55 }
56
57 static u32 mlx5_wq_cyc_get_byte_size(struct mlx5_wq_cyc *wq)
58 {
59         return mlx5_wq_cyc_get_size(wq) << wq->fbc.log_stride;
60 }
61
62 static u32 mlx5_wq_qp_get_byte_size(struct mlx5_wq_qp *wq)
63 {
64         return mlx5_wq_cyc_get_byte_size(&wq->rq) +
65                mlx5_wq_cyc_get_byte_size(&wq->sq);
66 }
67
68 static u32 mlx5_cqwq_get_byte_size(struct mlx5_cqwq *wq)
69 {
70         return mlx5_cqwq_get_size(wq) << wq->fbc.log_stride;
71 }
72
73 static u32 mlx5_wq_ll_get_byte_size(struct mlx5_wq_ll *wq)
74 {
75         return mlx5_wq_ll_get_size(wq) << wq->fbc.log_stride;
76 }
77
78 int mlx5_wq_cyc_create(struct mlx5_core_dev *mdev, struct mlx5_wq_param *param,
79                        void *wqc, struct mlx5_wq_cyc *wq,
80                        struct mlx5_wq_ctrl *wq_ctrl)
81 {
82         struct mlx5_frag_buf_ctrl *fbc = &wq->fbc;
83         int err;
84
85         mlx5_fill_fbc(MLX5_GET(wq, wqc, log_wq_stride),
86                       MLX5_GET(wq, wqc, log_wq_sz),
87                       fbc);
88         wq->sz    = wq->fbc.sz_m1 + 1;
89
90         err = mlx5_db_alloc_node(mdev, &wq_ctrl->db, param->db_numa_node);
91         if (err) {
92                 mlx5_core_warn(mdev, "mlx5_db_alloc_node() failed, %d\n", err);
93                 return err;
94         }
95
96         err = mlx5_frag_buf_alloc_node(mdev, mlx5_wq_cyc_get_byte_size(wq),
97                                        &wq_ctrl->buf, param->buf_numa_node);
98         if (err) {
99                 mlx5_core_warn(mdev, "mlx5_frag_buf_alloc_node() failed, %d\n", err);
100                 goto err_db_free;
101         }
102
103         fbc->frag_buf = wq_ctrl->buf;
104         wq->db  = wq_ctrl->db.db;
105
106         wq_ctrl->mdev = mdev;
107
108         return 0;
109
110 err_db_free:
111         mlx5_db_free(mdev, &wq_ctrl->db);
112
113         return err;
114 }
115
116 static void mlx5e_qp_set_frag_buf(struct mlx5_frag_buf *buf,
117                                   struct mlx5_wq_qp *qp)
118 {
119         struct mlx5_frag_buf *rqb, *sqb;
120
121         rqb = &qp->rq.fbc.frag_buf;
122         *rqb = *buf;
123         rqb->size   = mlx5_wq_cyc_get_byte_size(&qp->rq);
124         rqb->npages = 1 << get_order(rqb->size);
125
126         sqb = &qp->sq.fbc.frag_buf;
127         *sqb = *buf;
128         sqb->size   = mlx5_wq_cyc_get_byte_size(&qp->rq);
129         sqb->npages = 1 << get_order(sqb->size);
130         sqb->frags += rqb->npages; /* first part is for the rq */
131 }
132
133 int mlx5_wq_qp_create(struct mlx5_core_dev *mdev, struct mlx5_wq_param *param,
134                       void *qpc, struct mlx5_wq_qp *wq,
135                       struct mlx5_wq_ctrl *wq_ctrl)
136 {
137         int err;
138
139         mlx5_fill_fbc(MLX5_GET(qpc, qpc, log_rq_stride) + 4,
140                       MLX5_GET(qpc, qpc, log_rq_size),
141                       &wq->rq.fbc);
142         mlx5_fill_fbc(ilog2(MLX5_SEND_WQE_BB),
143                       MLX5_GET(qpc, qpc, log_sq_size),
144                       &wq->sq.fbc);
145
146         err = mlx5_db_alloc_node(mdev, &wq_ctrl->db, param->db_numa_node);
147         if (err) {
148                 mlx5_core_warn(mdev, "mlx5_db_alloc_node() failed, %d\n", err);
149                 return err;
150         }
151
152         err = mlx5_frag_buf_alloc_node(mdev, mlx5_wq_qp_get_byte_size(wq),
153                                        &wq_ctrl->buf, param->buf_numa_node);
154         if (err) {
155                 mlx5_core_warn(mdev, "mlx5_frag_buf_alloc_node() failed, %d\n", err);
156                 goto err_db_free;
157         }
158
159         mlx5e_qp_set_frag_buf(&wq_ctrl->buf, wq);
160
161         wq->rq.db  = &wq_ctrl->db.db[MLX5_RCV_DBR];
162         wq->sq.db  = &wq_ctrl->db.db[MLX5_SND_DBR];
163
164         wq_ctrl->mdev = mdev;
165
166         return 0;
167
168 err_db_free:
169         mlx5_db_free(mdev, &wq_ctrl->db);
170
171         return err;
172 }
173
174 int mlx5_cqwq_create(struct mlx5_core_dev *mdev, struct mlx5_wq_param *param,
175                      void *cqc, struct mlx5_cqwq *wq,
176                      struct mlx5_wq_ctrl *wq_ctrl)
177 {
178         int err;
179
180         mlx5_core_init_cq_frag_buf(&wq->fbc, cqc);
181
182         err = mlx5_db_alloc_node(mdev, &wq_ctrl->db, param->db_numa_node);
183         if (err) {
184                 mlx5_core_warn(mdev, "mlx5_db_alloc_node() failed, %d\n", err);
185                 return err;
186         }
187
188         err = mlx5_frag_buf_alloc_node(mdev, mlx5_cqwq_get_byte_size(wq),
189                                        &wq_ctrl->buf,
190                                        param->buf_numa_node);
191         if (err) {
192                 mlx5_core_warn(mdev, "mlx5_frag_buf_alloc_node() failed, %d\n",
193                                err);
194                 goto err_db_free;
195         }
196
197         wq->fbc.frag_buf = wq_ctrl->buf;
198         wq->db  = wq_ctrl->db.db;
199
200         wq_ctrl->mdev = mdev;
201
202         return 0;
203
204 err_db_free:
205         mlx5_db_free(mdev, &wq_ctrl->db);
206
207         return err;
208 }
209
210 int mlx5_wq_ll_create(struct mlx5_core_dev *mdev, struct mlx5_wq_param *param,
211                       void *wqc, struct mlx5_wq_ll *wq,
212                       struct mlx5_wq_ctrl *wq_ctrl)
213 {
214         struct mlx5_frag_buf_ctrl *fbc = &wq->fbc;
215         struct mlx5_wqe_srq_next_seg *next_seg;
216         int err;
217         int i;
218
219         mlx5_fill_fbc(MLX5_GET(wq, wqc, log_wq_stride),
220                       MLX5_GET(wq, wqc, log_wq_sz),
221                       fbc);
222
223         err = mlx5_db_alloc_node(mdev, &wq_ctrl->db, param->db_numa_node);
224         if (err) {
225                 mlx5_core_warn(mdev, "mlx5_db_alloc_node() failed, %d\n", err);
226                 return err;
227         }
228
229         err = mlx5_frag_buf_alloc_node(mdev, mlx5_wq_ll_get_byte_size(wq),
230                                        &wq_ctrl->buf, param->buf_numa_node);
231         if (err) {
232                 mlx5_core_warn(mdev, "mlx5_frag_buf_alloc_node() failed, %d\n", err);
233                 goto err_db_free;
234         }
235
236         wq->fbc.frag_buf = wq_ctrl->buf;
237         wq->db  = wq_ctrl->db.db;
238
239         for (i = 0; i < fbc->sz_m1; i++) {
240                 next_seg = mlx5_wq_ll_get_wqe(wq, i);
241                 next_seg->next_wqe_index = cpu_to_be16(i + 1);
242         }
243         next_seg = mlx5_wq_ll_get_wqe(wq, i);
244         wq->tail_next = &next_seg->next_wqe_index;
245
246         wq_ctrl->mdev = mdev;
247
248         return 0;
249
250 err_db_free:
251         mlx5_db_free(mdev, &wq_ctrl->db);
252
253         return err;
254 }
255
256 void mlx5_wq_destroy(struct mlx5_wq_ctrl *wq_ctrl)
257 {
258         mlx5_frag_buf_free(wq_ctrl->mdev, &wq_ctrl->buf);
259         mlx5_db_free(wq_ctrl->mdev, &wq_ctrl->db);
260 }
261