Merge tag 'ceph-for-4.10-rc1' of git://github.com/ceph/ceph-client
[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->sz_m1 + 1;
40 }
41
42 u32 mlx5_cqwq_get_size(struct mlx5_cqwq *wq)
43 {
44         return wq->sz_m1 + 1;
45 }
46
47 u32 mlx5_wq_ll_get_size(struct mlx5_wq_ll *wq)
48 {
49         return (u32)wq->sz_m1 + 1;
50 }
51
52 static u32 mlx5_wq_cyc_get_byte_size(struct mlx5_wq_cyc *wq)
53 {
54         return mlx5_wq_cyc_get_size(wq) << wq->log_stride;
55 }
56
57 static u32 mlx5_cqwq_get_byte_size(struct mlx5_cqwq *wq)
58 {
59         return mlx5_cqwq_get_size(wq) << wq->log_stride;
60 }
61
62 static u32 mlx5_wq_ll_get_byte_size(struct mlx5_wq_ll *wq)
63 {
64         return mlx5_wq_ll_get_size(wq) << wq->log_stride;
65 }
66
67 int mlx5_wq_cyc_create(struct mlx5_core_dev *mdev, struct mlx5_wq_param *param,
68                        void *wqc, struct mlx5_wq_cyc *wq,
69                        struct mlx5_wq_ctrl *wq_ctrl)
70 {
71         int err;
72
73         wq->log_stride = MLX5_GET(wq, wqc, log_wq_stride);
74         wq->sz_m1 = (1 << MLX5_GET(wq, wqc, log_wq_sz)) - 1;
75
76         err = mlx5_db_alloc_node(mdev, &wq_ctrl->db, param->db_numa_node);
77         if (err) {
78                 mlx5_core_warn(mdev, "mlx5_db_alloc_node() failed, %d\n", err);
79                 return err;
80         }
81
82         err = mlx5_buf_alloc_node(mdev, mlx5_wq_cyc_get_byte_size(wq),
83                                   &wq_ctrl->buf, param->buf_numa_node);
84         if (err) {
85                 mlx5_core_warn(mdev, "mlx5_buf_alloc_node() failed, %d\n", err);
86                 goto err_db_free;
87         }
88
89         wq->buf = wq_ctrl->buf.direct.buf;
90         wq->db  = wq_ctrl->db.db;
91
92         wq_ctrl->mdev = mdev;
93
94         return 0;
95
96 err_db_free:
97         mlx5_db_free(mdev, &wq_ctrl->db);
98
99         return err;
100 }
101
102 int mlx5_cqwq_create(struct mlx5_core_dev *mdev, struct mlx5_wq_param *param,
103                      void *cqc, struct mlx5_cqwq *wq,
104                      struct mlx5_frag_wq_ctrl *wq_ctrl)
105 {
106         int err;
107
108         wq->log_stride  = 6 + MLX5_GET(cqc, cqc, cqe_sz);
109         wq->log_sz      = MLX5_GET(cqc, cqc, log_cq_size);
110         wq->sz_m1       = (1 << wq->log_sz) - 1;
111         wq->log_frag_strides = PAGE_SHIFT - wq->log_stride;
112         wq->frag_sz_m1  = (1 << wq->log_frag_strides) - 1;
113
114         err = mlx5_db_alloc_node(mdev, &wq_ctrl->db, param->db_numa_node);
115         if (err) {
116                 mlx5_core_warn(mdev, "mlx5_db_alloc_node() failed, %d\n", err);
117                 return err;
118         }
119
120         err = mlx5_frag_buf_alloc_node(mdev, mlx5_cqwq_get_byte_size(wq),
121                                        &wq_ctrl->frag_buf,
122                                        param->buf_numa_node);
123         if (err) {
124                 mlx5_core_warn(mdev, "mlx5_frag_buf_alloc_node() failed, %d\n",
125                                err);
126                 goto err_db_free;
127         }
128
129         wq->frag_buf = wq_ctrl->frag_buf;
130         wq->db  = wq_ctrl->db.db;
131
132         wq_ctrl->mdev = mdev;
133
134         return 0;
135
136 err_db_free:
137         mlx5_db_free(mdev, &wq_ctrl->db);
138
139         return err;
140 }
141
142 int mlx5_wq_ll_create(struct mlx5_core_dev *mdev, struct mlx5_wq_param *param,
143                       void *wqc, struct mlx5_wq_ll *wq,
144                       struct mlx5_wq_ctrl *wq_ctrl)
145 {
146         struct mlx5_wqe_srq_next_seg *next_seg;
147         int err;
148         int i;
149
150         wq->log_stride = MLX5_GET(wq, wqc, log_wq_stride);
151         wq->sz_m1 = (1 << MLX5_GET(wq, wqc, log_wq_sz)) - 1;
152
153         err = mlx5_db_alloc_node(mdev, &wq_ctrl->db, param->db_numa_node);
154         if (err) {
155                 mlx5_core_warn(mdev, "mlx5_db_alloc_node() failed, %d\n", err);
156                 return err;
157         }
158
159         err = mlx5_buf_alloc_node(mdev, mlx5_wq_ll_get_byte_size(wq),
160                                   &wq_ctrl->buf, param->buf_numa_node);
161         if (err) {
162                 mlx5_core_warn(mdev, "mlx5_buf_alloc_node() failed, %d\n", err);
163                 goto err_db_free;
164         }
165
166         wq->buf = wq_ctrl->buf.direct.buf;
167         wq->db  = wq_ctrl->db.db;
168
169         for (i = 0; i < wq->sz_m1; i++) {
170                 next_seg = mlx5_wq_ll_get_wqe(wq, i);
171                 next_seg->next_wqe_index = cpu_to_be16(i + 1);
172         }
173         next_seg = mlx5_wq_ll_get_wqe(wq, i);
174         wq->tail_next = &next_seg->next_wqe_index;
175
176         wq_ctrl->mdev = mdev;
177
178         return 0;
179
180 err_db_free:
181         mlx5_db_free(mdev, &wq_ctrl->db);
182
183         return err;
184 }
185
186 void mlx5_wq_destroy(struct mlx5_wq_ctrl *wq_ctrl)
187 {
188         mlx5_buf_free(wq_ctrl->mdev, &wq_ctrl->buf);
189         mlx5_db_free(wq_ctrl->mdev, &wq_ctrl->db);
190 }
191
192 void mlx5_cqwq_destroy(struct mlx5_frag_wq_ctrl *wq_ctrl)
193 {
194         mlx5_frag_buf_free(wq_ctrl->mdev, &wq_ctrl->frag_buf);
195         mlx5_db_free(wq_ctrl->mdev, &wq_ctrl->db);
196 }