1 /*
2 * Copyright (c) 2004, 2005 Topspin Communications. All rights reserved.
3 * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved.
4 * Copyright (c) 2005, 2006, 2007 Cisco Systems, Inc. All rights reserved.
5 * Copyright (c) 2005, 2006, 2007, 2008 Mellanox Technologies. All rights reserved.
6 * Copyright (c) 2004 Voltaire, Inc. All rights reserved.
7 *
8 * This software is available to you under a choice of one of two
9 * licenses. You may choose to be licensed under the terms of the GNU
10 * General Public License (GPL) Version 2, available from the file
11 * COPYING in the main directory of this source tree, or the
12 * OpenIB.org BSD license below:
13 *
14 * Redistribution and use in source and binary forms, with or
15 * without modification, are permitted provided that the following
16 * conditions are met:
17 *
18 * - Redistributions of source code must retain the above
19 * copyright notice, this list of conditions and the following
20 * disclaimer.
21 *
22 * - Redistributions in binary form must reproduce the above
23 * copyright notice, this list of conditions and the following
24 * disclaimer in the documentation and/or other materials
25 * provided with the distribution.
26 *
27 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
28 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
29 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
30 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
31 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
32 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
33 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
34 * SOFTWARE.
35 */
36
37 #include <linux/init.h>
38 #include <linux/hardirq.h>
39 #include <linux/export.h>
40
41 #include <linux/mlx4/cmd.h>
42 #include <linux/mlx4/cq.h>
43
44 #include "mlx4.h"
45 #include "icm.h"
46
47 #define MLX4_CQ_STATUS_OK ( 0 << 28)
48 #define MLX4_CQ_STATUS_OVERFLOW ( 9 << 28)
49 #define MLX4_CQ_STATUS_WRITE_FAIL (10 << 28)
50 #define MLX4_CQ_FLAG_CC ( 1 << 18)
51 #define MLX4_CQ_FLAG_OI ( 1 << 17)
52 #define MLX4_CQ_STATE_ARMED ( 9 << 8)
53 #define MLX4_CQ_STATE_ARMED_SOL ( 6 << 8)
54 #define MLX4_EQ_STATE_FIRED (10 << 8)
55
mlx4_cq_completion(struct mlx4_dev * dev,u32 cqn)56 void mlx4_cq_completion(struct mlx4_dev *dev, u32 cqn)
57 {
58 struct mlx4_cq *cq;
59
60 cq = radix_tree_lookup(&mlx4_priv(dev)->cq_table.tree,
61 cqn & (dev->caps.num_cqs - 1));
62 if (!cq) {
63 mlx4_dbg(dev, "Completion event for bogus CQ %08x\n", cqn);
64 return;
65 }
66
67 ++cq->arm_sn;
68
69 cq->comp(cq);
70 }
71
mlx4_cq_event(struct mlx4_dev * dev,u32 cqn,int event_type)72 void mlx4_cq_event(struct mlx4_dev *dev, u32 cqn, int event_type)
73 {
74 struct mlx4_cq_table *cq_table = &mlx4_priv(dev)->cq_table;
75 struct mlx4_cq *cq;
76
77 spin_lock(&cq_table->lock);
78
79 cq = radix_tree_lookup(&cq_table->tree, cqn & (dev->caps.num_cqs - 1));
80 if (cq)
81 atomic_inc(&cq->refcount);
82
83 spin_unlock(&cq_table->lock);
84
85 if (!cq) {
86 mlx4_warn(dev, "Async event for bogus CQ %08x\n", cqn);
87 return;
88 }
89
90 cq->event(cq, event_type);
91
92 if (atomic_dec_and_test(&cq->refcount))
93 complete(&cq->free);
94 }
95
mlx4_SW2HW_CQ(struct mlx4_dev * dev,struct mlx4_cmd_mailbox * mailbox,int cq_num)96 static int mlx4_SW2HW_CQ(struct mlx4_dev *dev, struct mlx4_cmd_mailbox *mailbox,
97 int cq_num)
98 {
99 return mlx4_cmd(dev, mailbox->dma, cq_num, 0,
100 MLX4_CMD_SW2HW_CQ, MLX4_CMD_TIME_CLASS_A,
101 MLX4_CMD_WRAPPED);
102 }
103
mlx4_MODIFY_CQ(struct mlx4_dev * dev,struct mlx4_cmd_mailbox * mailbox,int cq_num,u32 opmod)104 static int mlx4_MODIFY_CQ(struct mlx4_dev *dev, struct mlx4_cmd_mailbox *mailbox,
105 int cq_num, u32 opmod)
106 {
107 return mlx4_cmd(dev, mailbox->dma, cq_num, opmod, MLX4_CMD_MODIFY_CQ,
108 MLX4_CMD_TIME_CLASS_A, MLX4_CMD_WRAPPED);
109 }
110
mlx4_HW2SW_CQ(struct mlx4_dev * dev,struct mlx4_cmd_mailbox * mailbox,int cq_num)111 static int mlx4_HW2SW_CQ(struct mlx4_dev *dev, struct mlx4_cmd_mailbox *mailbox,
112 int cq_num)
113 {
114 return mlx4_cmd_box(dev, 0, mailbox ? mailbox->dma : 0,
115 cq_num, mailbox ? 0 : 1, MLX4_CMD_HW2SW_CQ,
116 MLX4_CMD_TIME_CLASS_A, MLX4_CMD_WRAPPED);
117 }
118
mlx4_cq_modify(struct mlx4_dev * dev,struct mlx4_cq * cq,u16 count,u16 period)119 int mlx4_cq_modify(struct mlx4_dev *dev, struct mlx4_cq *cq,
120 u16 count, u16 period)
121 {
122 struct mlx4_cmd_mailbox *mailbox;
123 struct mlx4_cq_context *cq_context;
124 int err;
125
126 mailbox = mlx4_alloc_cmd_mailbox(dev);
127 if (IS_ERR(mailbox))
128 return PTR_ERR(mailbox);
129
130 cq_context = mailbox->buf;
131 memset(cq_context, 0, sizeof *cq_context);
132
133 cq_context->cq_max_count = cpu_to_be16(count);
134 cq_context->cq_period = cpu_to_be16(period);
135
136 err = mlx4_MODIFY_CQ(dev, mailbox, cq->cqn, 1);
137
138 mlx4_free_cmd_mailbox(dev, mailbox);
139 return err;
140 }
141 EXPORT_SYMBOL_GPL(mlx4_cq_modify);
142
mlx4_cq_resize(struct mlx4_dev * dev,struct mlx4_cq * cq,int entries,struct mlx4_mtt * mtt)143 int mlx4_cq_resize(struct mlx4_dev *dev, struct mlx4_cq *cq,
144 int entries, struct mlx4_mtt *mtt)
145 {
146 struct mlx4_cmd_mailbox *mailbox;
147 struct mlx4_cq_context *cq_context;
148 u64 mtt_addr;
149 int err;
150
151 mailbox = mlx4_alloc_cmd_mailbox(dev);
152 if (IS_ERR(mailbox))
153 return PTR_ERR(mailbox);
154
155 cq_context = mailbox->buf;
156 memset(cq_context, 0, sizeof *cq_context);
157
158 cq_context->logsize_usrpage = cpu_to_be32(ilog2(entries) << 24);
159 cq_context->log_page_size = mtt->page_shift - 12;
160 mtt_addr = mlx4_mtt_addr(dev, mtt);
161 cq_context->mtt_base_addr_h = mtt_addr >> 32;
162 cq_context->mtt_base_addr_l = cpu_to_be32(mtt_addr & 0xffffffff);
163
164 err = mlx4_MODIFY_CQ(dev, mailbox, cq->cqn, 0);
165
166 mlx4_free_cmd_mailbox(dev, mailbox);
167 return err;
168 }
169 EXPORT_SYMBOL_GPL(mlx4_cq_resize);
170
__mlx4_cq_alloc_icm(struct mlx4_dev * dev,int * cqn)171 int __mlx4_cq_alloc_icm(struct mlx4_dev *dev, int *cqn)
172 {
173 struct mlx4_priv *priv = mlx4_priv(dev);
174 struct mlx4_cq_table *cq_table = &priv->cq_table;
175 int err;
176
177 *cqn = mlx4_bitmap_alloc(&cq_table->bitmap);
178 if (*cqn == -1)
179 return -ENOMEM;
180
181 err = mlx4_table_get(dev, &cq_table->table, *cqn);
182 if (err)
183 goto err_out;
184
185 err = mlx4_table_get(dev, &cq_table->cmpt_table, *cqn);
186 if (err)
187 goto err_put;
188 return 0;
189
190 err_put:
191 mlx4_table_put(dev, &cq_table->table, *cqn);
192
193 err_out:
194 mlx4_bitmap_free(&cq_table->bitmap, *cqn);
195 return err;
196 }
197
mlx4_cq_alloc_icm(struct mlx4_dev * dev,int * cqn)198 static int mlx4_cq_alloc_icm(struct mlx4_dev *dev, int *cqn)
199 {
200 u64 out_param;
201 int err;
202
203 if (mlx4_is_mfunc(dev)) {
204 err = mlx4_cmd_imm(dev, 0, &out_param, RES_CQ,
205 RES_OP_RESERVE_AND_MAP, MLX4_CMD_ALLOC_RES,
206 MLX4_CMD_TIME_CLASS_A, MLX4_CMD_WRAPPED);
207 if (err)
208 return err;
209 else {
210 *cqn = get_param_l(&out_param);
211 return 0;
212 }
213 }
214 return __mlx4_cq_alloc_icm(dev, cqn);
215 }
216
__mlx4_cq_free_icm(struct mlx4_dev * dev,int cqn)217 void __mlx4_cq_free_icm(struct mlx4_dev *dev, int cqn)
218 {
219 struct mlx4_priv *priv = mlx4_priv(dev);
220 struct mlx4_cq_table *cq_table = &priv->cq_table;
221
222 mlx4_table_put(dev, &cq_table->cmpt_table, cqn);
223 mlx4_table_put(dev, &cq_table->table, cqn);
224 mlx4_bitmap_free(&cq_table->bitmap, cqn);
225 }
226
mlx4_cq_free_icm(struct mlx4_dev * dev,int cqn)227 static void mlx4_cq_free_icm(struct mlx4_dev *dev, int cqn)
228 {
229 u64 in_param = 0;
230 int err;
231
232 if (mlx4_is_mfunc(dev)) {
233 set_param_l(&in_param, cqn);
234 err = mlx4_cmd(dev, in_param, RES_CQ, RES_OP_RESERVE_AND_MAP,
235 MLX4_CMD_FREE_RES,
236 MLX4_CMD_TIME_CLASS_A, MLX4_CMD_WRAPPED);
237 if (err)
238 mlx4_warn(dev, "Failed freeing cq:%d\n", cqn);
239 } else
240 __mlx4_cq_free_icm(dev, cqn);
241 }
242
mlx4_cq_alloc(struct mlx4_dev * dev,int nent,struct mlx4_mtt * mtt,struct mlx4_uar * uar,u64 db_rec,struct mlx4_cq * cq,unsigned vector,int collapsed,int timestamp_en)243 int mlx4_cq_alloc(struct mlx4_dev *dev, int nent,
244 struct mlx4_mtt *mtt, struct mlx4_uar *uar, u64 db_rec,
245 struct mlx4_cq *cq, unsigned vector, int collapsed,
246 int timestamp_en)
247 {
248 struct mlx4_priv *priv = mlx4_priv(dev);
249 struct mlx4_cq_table *cq_table = &priv->cq_table;
250 struct mlx4_cmd_mailbox *mailbox;
251 struct mlx4_cq_context *cq_context;
252 u64 mtt_addr;
253 int err;
254
255 if (vector > dev->caps.num_comp_vectors + dev->caps.comp_pool)
256 return -EINVAL;
257
258 cq->vector = vector;
259
260 err = mlx4_cq_alloc_icm(dev, &cq->cqn);
261 if (err)
262 return err;
263
264 spin_lock_irq(&cq_table->lock);
265 err = radix_tree_insert(&cq_table->tree, cq->cqn, cq);
266 spin_unlock_irq(&cq_table->lock);
267 if (err)
268 goto err_icm;
269
270 mailbox = mlx4_alloc_cmd_mailbox(dev);
271 if (IS_ERR(mailbox)) {
272 err = PTR_ERR(mailbox);
273 goto err_radix;
274 }
275
276 cq_context = mailbox->buf;
277 memset(cq_context, 0, sizeof *cq_context);
278
279 cq_context->flags = cpu_to_be32(!!collapsed << 18);
280 if (timestamp_en)
281 cq_context->flags |= cpu_to_be32(1 << 19);
282
283 cq_context->logsize_usrpage = cpu_to_be32((ilog2(nent) << 24) | uar->index);
284 cq_context->comp_eqn = priv->eq_table.eq[vector].eqn;
285 cq_context->log_page_size = mtt->page_shift - MLX4_ICM_PAGE_SHIFT;
286
287 mtt_addr = mlx4_mtt_addr(dev, mtt);
288 cq_context->mtt_base_addr_h = mtt_addr >> 32;
289 cq_context->mtt_base_addr_l = cpu_to_be32(mtt_addr & 0xffffffff);
290 cq_context->db_rec_addr = cpu_to_be64(db_rec);
291
292 err = mlx4_SW2HW_CQ(dev, mailbox, cq->cqn);
293 mlx4_free_cmd_mailbox(dev, mailbox);
294 if (err)
295 goto err_radix;
296
297 cq->cons_index = 0;
298 cq->arm_sn = 1;
299 cq->uar = uar;
300 atomic_set(&cq->refcount, 1);
301 init_completion(&cq->free);
302
303 return 0;
304
305 err_radix:
306 spin_lock_irq(&cq_table->lock);
307 radix_tree_delete(&cq_table->tree, cq->cqn);
308 spin_unlock_irq(&cq_table->lock);
309
310 err_icm:
311 mlx4_cq_free_icm(dev, cq->cqn);
312
313 return err;
314 }
315 EXPORT_SYMBOL_GPL(mlx4_cq_alloc);
316
mlx4_cq_free(struct mlx4_dev * dev,struct mlx4_cq * cq)317 void mlx4_cq_free(struct mlx4_dev *dev, struct mlx4_cq *cq)
318 {
319 struct mlx4_priv *priv = mlx4_priv(dev);
320 struct mlx4_cq_table *cq_table = &priv->cq_table;
321 int err;
322
323 err = mlx4_HW2SW_CQ(dev, NULL, cq->cqn);
324 if (err)
325 mlx4_warn(dev, "HW2SW_CQ failed (%d) for CQN %06x\n", err, cq->cqn);
326
327 synchronize_irq(priv->eq_table.eq[cq->vector].irq);
328
329 spin_lock_irq(&cq_table->lock);
330 radix_tree_delete(&cq_table->tree, cq->cqn);
331 spin_unlock_irq(&cq_table->lock);
332
333 if (atomic_dec_and_test(&cq->refcount))
334 complete(&cq->free);
335 wait_for_completion(&cq->free);
336
337 mlx4_cq_free_icm(dev, cq->cqn);
338 }
339 EXPORT_SYMBOL_GPL(mlx4_cq_free);
340
mlx4_init_cq_table(struct mlx4_dev * dev)341 int mlx4_init_cq_table(struct mlx4_dev *dev)
342 {
343 struct mlx4_cq_table *cq_table = &mlx4_priv(dev)->cq_table;
344 int err;
345
346 spin_lock_init(&cq_table->lock);
347 INIT_RADIX_TREE(&cq_table->tree, GFP_ATOMIC);
348 if (mlx4_is_slave(dev))
349 return 0;
350
351 err = mlx4_bitmap_init(&cq_table->bitmap, dev->caps.num_cqs,
352 dev->caps.num_cqs - 1, dev->caps.reserved_cqs, 0);
353 if (err)
354 return err;
355
356 return 0;
357 }
358
mlx4_cleanup_cq_table(struct mlx4_dev * dev)359 void mlx4_cleanup_cq_table(struct mlx4_dev *dev)
360 {
361 if (mlx4_is_slave(dev))
362 return;
363 /* Nothing to do to clean up radix_tree */
364 mlx4_bitmap_cleanup(&mlx4_priv(dev)->cq_table.bitmap);
365 }
366