Roland Dreier | 225c7b1 | 2007-05-08 18:00:38 -0700 | [diff] [blame] | 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. |
Jack Morgenstein | 51a379d | 2008-07-25 10:32:52 -0700 | [diff] [blame] | 5 | * Copyright (c) 2005, 2006, 2007, 2008 Mellanox Technologies. All rights reserved. |
Roland Dreier | 225c7b1 | 2007-05-08 18:00:38 -0700 | [diff] [blame] | 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 | |
Roland Dreier | 225c7b1 | 2007-05-08 18:00:38 -0700 | [diff] [blame] | 37 | #include <linux/hardirq.h> |
Paul Gortmaker | ee40fa0 | 2011-05-27 16:14:23 -0400 | [diff] [blame] | 38 | #include <linux/export.h> |
Roland Dreier | 225c7b1 | 2007-05-08 18:00:38 -0700 | [diff] [blame] | 39 | |
| 40 | #include <linux/mlx4/cmd.h> |
Eli Cohen | 3fdcb97 | 2008-04-16 21:09:33 -0700 | [diff] [blame] | 41 | #include <linux/mlx4/cq.h> |
Roland Dreier | 225c7b1 | 2007-05-08 18:00:38 -0700 | [diff] [blame] | 42 | |
| 43 | #include "mlx4.h" |
| 44 | #include "icm.h" |
| 45 | |
Roland Dreier | 225c7b1 | 2007-05-08 18:00:38 -0700 | [diff] [blame] | 46 | #define MLX4_CQ_STATUS_OK ( 0 << 28) |
| 47 | #define MLX4_CQ_STATUS_OVERFLOW ( 9 << 28) |
| 48 | #define MLX4_CQ_STATUS_WRITE_FAIL (10 << 28) |
| 49 | #define MLX4_CQ_FLAG_CC ( 1 << 18) |
| 50 | #define MLX4_CQ_FLAG_OI ( 1 << 17) |
| 51 | #define MLX4_CQ_STATE_ARMED ( 9 << 8) |
| 52 | #define MLX4_CQ_STATE_ARMED_SOL ( 6 << 8) |
| 53 | #define MLX4_EQ_STATE_FIRED (10 << 8) |
| 54 | |
Matan Barak | 3dca0f42 | 2014-12-11 10:57:53 +0200 | [diff] [blame] | 55 | #define TASKLET_MAX_TIME 2 |
| 56 | #define TASKLET_MAX_TIME_JIFFIES msecs_to_jiffies(TASKLET_MAX_TIME) |
| 57 | |
| 58 | void mlx4_cq_tasklet_cb(unsigned long data) |
| 59 | { |
| 60 | unsigned long flags; |
| 61 | unsigned long end = jiffies + TASKLET_MAX_TIME_JIFFIES; |
| 62 | struct mlx4_eq_tasklet *ctx = (struct mlx4_eq_tasklet *)data; |
| 63 | struct mlx4_cq *mcq, *temp; |
| 64 | |
| 65 | spin_lock_irqsave(&ctx->lock, flags); |
| 66 | list_splice_tail_init(&ctx->list, &ctx->process_list); |
| 67 | spin_unlock_irqrestore(&ctx->lock, flags); |
| 68 | |
| 69 | list_for_each_entry_safe(mcq, temp, &ctx->process_list, tasklet_ctx.list) { |
| 70 | list_del_init(&mcq->tasklet_ctx.list); |
| 71 | mcq->tasklet_ctx.comp(mcq); |
| 72 | if (atomic_dec_and_test(&mcq->refcount)) |
| 73 | complete(&mcq->free); |
| 74 | if (time_after(jiffies, end)) |
| 75 | break; |
| 76 | } |
| 77 | |
| 78 | if (!list_empty(&ctx->process_list)) |
| 79 | tasklet_schedule(&ctx->task); |
| 80 | } |
| 81 | |
| 82 | static void mlx4_add_cq_to_tasklet(struct mlx4_cq *cq) |
| 83 | { |
| 84 | unsigned long flags; |
| 85 | struct mlx4_eq_tasklet *tasklet_ctx = cq->tasklet_ctx.priv; |
| 86 | |
| 87 | spin_lock_irqsave(&tasklet_ctx->lock, flags); |
| 88 | /* When migrating CQs between EQs will be implemented, please note |
| 89 | * that you need to sync this point. It is possible that |
| 90 | * while migrating a CQ, completions on the old EQs could |
| 91 | * still arrive. |
| 92 | */ |
| 93 | if (list_empty_careful(&cq->tasklet_ctx.list)) { |
| 94 | atomic_inc(&cq->refcount); |
| 95 | list_add_tail(&cq->tasklet_ctx.list, &tasklet_ctx->list); |
| 96 | } |
| 97 | spin_unlock_irqrestore(&tasklet_ctx->lock, flags); |
| 98 | } |
| 99 | |
Roland Dreier | 225c7b1 | 2007-05-08 18:00:38 -0700 | [diff] [blame] | 100 | void mlx4_cq_completion(struct mlx4_dev *dev, u32 cqn) |
| 101 | { |
| 102 | struct mlx4_cq *cq; |
| 103 | |
| 104 | cq = radix_tree_lookup(&mlx4_priv(dev)->cq_table.tree, |
| 105 | cqn & (dev->caps.num_cqs - 1)); |
| 106 | if (!cq) { |
Jack Morgenstein | d723338 | 2011-12-13 04:13:36 +0000 | [diff] [blame] | 107 | mlx4_dbg(dev, "Completion event for bogus CQ %08x\n", cqn); |
Roland Dreier | 225c7b1 | 2007-05-08 18:00:38 -0700 | [diff] [blame] | 108 | return; |
| 109 | } |
| 110 | |
| 111 | ++cq->arm_sn; |
| 112 | |
| 113 | cq->comp(cq); |
| 114 | } |
| 115 | |
| 116 | void mlx4_cq_event(struct mlx4_dev *dev, u32 cqn, int event_type) |
| 117 | { |
| 118 | struct mlx4_cq_table *cq_table = &mlx4_priv(dev)->cq_table; |
| 119 | struct mlx4_cq *cq; |
| 120 | |
| 121 | spin_lock(&cq_table->lock); |
| 122 | |
| 123 | cq = radix_tree_lookup(&cq_table->tree, cqn & (dev->caps.num_cqs - 1)); |
| 124 | if (cq) |
| 125 | atomic_inc(&cq->refcount); |
| 126 | |
| 127 | spin_unlock(&cq_table->lock); |
| 128 | |
| 129 | if (!cq) { |
| 130 | mlx4_warn(dev, "Async event for bogus CQ %08x\n", cqn); |
| 131 | return; |
| 132 | } |
| 133 | |
| 134 | cq->event(cq, event_type); |
| 135 | |
| 136 | if (atomic_dec_and_test(&cq->refcount)) |
| 137 | complete(&cq->free); |
| 138 | } |
| 139 | |
| 140 | static int mlx4_SW2HW_CQ(struct mlx4_dev *dev, struct mlx4_cmd_mailbox *mailbox, |
| 141 | int cq_num) |
| 142 | { |
Marcel Apfelbaum | eb41049 | 2012-01-19 09:45:19 +0000 | [diff] [blame] | 143 | return mlx4_cmd(dev, mailbox->dma, cq_num, 0, |
Jack Morgenstein | d723338 | 2011-12-13 04:13:36 +0000 | [diff] [blame] | 144 | MLX4_CMD_SW2HW_CQ, MLX4_CMD_TIME_CLASS_A, |
| 145 | MLX4_CMD_WRAPPED); |
Roland Dreier | 225c7b1 | 2007-05-08 18:00:38 -0700 | [diff] [blame] | 146 | } |
| 147 | |
Eli Cohen | 3fdcb97 | 2008-04-16 21:09:33 -0700 | [diff] [blame] | 148 | static int mlx4_MODIFY_CQ(struct mlx4_dev *dev, struct mlx4_cmd_mailbox *mailbox, |
| 149 | int cq_num, u32 opmod) |
| 150 | { |
| 151 | return mlx4_cmd(dev, mailbox->dma, cq_num, opmod, MLX4_CMD_MODIFY_CQ, |
Jack Morgenstein | f9baff5 | 2011-12-13 04:10:51 +0000 | [diff] [blame] | 152 | MLX4_CMD_TIME_CLASS_A, MLX4_CMD_WRAPPED); |
Eli Cohen | 3fdcb97 | 2008-04-16 21:09:33 -0700 | [diff] [blame] | 153 | } |
| 154 | |
Roland Dreier | 225c7b1 | 2007-05-08 18:00:38 -0700 | [diff] [blame] | 155 | static int mlx4_HW2SW_CQ(struct mlx4_dev *dev, struct mlx4_cmd_mailbox *mailbox, |
| 156 | int cq_num) |
| 157 | { |
Marcel Apfelbaum | eb41049 | 2012-01-19 09:45:19 +0000 | [diff] [blame] | 158 | return mlx4_cmd_box(dev, 0, mailbox ? mailbox->dma : 0, |
Jack Morgenstein | d723338 | 2011-12-13 04:13:36 +0000 | [diff] [blame] | 159 | cq_num, mailbox ? 0 : 1, MLX4_CMD_HW2SW_CQ, |
Jack Morgenstein | f9baff5 | 2011-12-13 04:10:51 +0000 | [diff] [blame] | 160 | MLX4_CMD_TIME_CLASS_A, MLX4_CMD_WRAPPED); |
Roland Dreier | 225c7b1 | 2007-05-08 18:00:38 -0700 | [diff] [blame] | 161 | } |
| 162 | |
Eli Cohen | 3fdcb97 | 2008-04-16 21:09:33 -0700 | [diff] [blame] | 163 | int mlx4_cq_modify(struct mlx4_dev *dev, struct mlx4_cq *cq, |
| 164 | u16 count, u16 period) |
| 165 | { |
| 166 | struct mlx4_cmd_mailbox *mailbox; |
| 167 | struct mlx4_cq_context *cq_context; |
| 168 | int err; |
| 169 | |
| 170 | mailbox = mlx4_alloc_cmd_mailbox(dev); |
| 171 | if (IS_ERR(mailbox)) |
| 172 | return PTR_ERR(mailbox); |
| 173 | |
| 174 | cq_context = mailbox->buf; |
Eli Cohen | 3fdcb97 | 2008-04-16 21:09:33 -0700 | [diff] [blame] | 175 | cq_context->cq_max_count = cpu_to_be16(count); |
| 176 | cq_context->cq_period = cpu_to_be16(period); |
| 177 | |
| 178 | err = mlx4_MODIFY_CQ(dev, mailbox, cq->cqn, 1); |
| 179 | |
| 180 | mlx4_free_cmd_mailbox(dev, mailbox); |
| 181 | return err; |
| 182 | } |
| 183 | EXPORT_SYMBOL_GPL(mlx4_cq_modify); |
| 184 | |
Vladimir Sokolovsky | bbf8eed1 | 2008-04-16 21:09:33 -0700 | [diff] [blame] | 185 | int mlx4_cq_resize(struct mlx4_dev *dev, struct mlx4_cq *cq, |
| 186 | int entries, struct mlx4_mtt *mtt) |
| 187 | { |
| 188 | struct mlx4_cmd_mailbox *mailbox; |
| 189 | struct mlx4_cq_context *cq_context; |
| 190 | u64 mtt_addr; |
| 191 | int err; |
| 192 | |
| 193 | mailbox = mlx4_alloc_cmd_mailbox(dev); |
| 194 | if (IS_ERR(mailbox)) |
| 195 | return PTR_ERR(mailbox); |
| 196 | |
| 197 | cq_context = mailbox->buf; |
Vladimir Sokolovsky | bbf8eed1 | 2008-04-16 21:09:33 -0700 | [diff] [blame] | 198 | cq_context->logsize_usrpage = cpu_to_be32(ilog2(entries) << 24); |
| 199 | cq_context->log_page_size = mtt->page_shift - 12; |
| 200 | mtt_addr = mlx4_mtt_addr(dev, mtt); |
| 201 | cq_context->mtt_base_addr_h = mtt_addr >> 32; |
| 202 | cq_context->mtt_base_addr_l = cpu_to_be32(mtt_addr & 0xffffffff); |
| 203 | |
Vladimir Sokolovsky | f5b3a09 | 2008-04-23 11:55:45 -0700 | [diff] [blame] | 204 | err = mlx4_MODIFY_CQ(dev, mailbox, cq->cqn, 0); |
Vladimir Sokolovsky | bbf8eed1 | 2008-04-16 21:09:33 -0700 | [diff] [blame] | 205 | |
| 206 | mlx4_free_cmd_mailbox(dev, mailbox); |
| 207 | return err; |
| 208 | } |
| 209 | EXPORT_SYMBOL_GPL(mlx4_cq_resize); |
| 210 | |
Eli Cohen | c82e9aa | 2011-12-13 04:15:24 +0000 | [diff] [blame] | 211 | int __mlx4_cq_alloc_icm(struct mlx4_dev *dev, int *cqn) |
Jack Morgenstein | d723338 | 2011-12-13 04:13:36 +0000 | [diff] [blame] | 212 | { |
| 213 | struct mlx4_priv *priv = mlx4_priv(dev); |
| 214 | struct mlx4_cq_table *cq_table = &priv->cq_table; |
| 215 | int err; |
| 216 | |
| 217 | *cqn = mlx4_bitmap_alloc(&cq_table->bitmap); |
| 218 | if (*cqn == -1) |
| 219 | return -ENOMEM; |
| 220 | |
Jiri Kosina | 40f2287 | 2014-05-11 15:15:12 +0300 | [diff] [blame] | 221 | err = mlx4_table_get(dev, &cq_table->table, *cqn, GFP_KERNEL); |
Jack Morgenstein | d723338 | 2011-12-13 04:13:36 +0000 | [diff] [blame] | 222 | if (err) |
| 223 | goto err_out; |
| 224 | |
Jiri Kosina | 40f2287 | 2014-05-11 15:15:12 +0300 | [diff] [blame] | 225 | err = mlx4_table_get(dev, &cq_table->cmpt_table, *cqn, GFP_KERNEL); |
Jack Morgenstein | d723338 | 2011-12-13 04:13:36 +0000 | [diff] [blame] | 226 | if (err) |
| 227 | goto err_put; |
| 228 | return 0; |
| 229 | |
| 230 | err_put: |
| 231 | mlx4_table_put(dev, &cq_table->table, *cqn); |
| 232 | |
| 233 | err_out: |
Jack Morgenstein | 7c6d74d | 2013-12-08 16:50:17 +0200 | [diff] [blame] | 234 | mlx4_bitmap_free(&cq_table->bitmap, *cqn, MLX4_NO_RR); |
Jack Morgenstein | d723338 | 2011-12-13 04:13:36 +0000 | [diff] [blame] | 235 | return err; |
| 236 | } |
| 237 | |
| 238 | static int mlx4_cq_alloc_icm(struct mlx4_dev *dev, int *cqn) |
| 239 | { |
| 240 | u64 out_param; |
| 241 | int err; |
| 242 | |
| 243 | if (mlx4_is_mfunc(dev)) { |
| 244 | err = mlx4_cmd_imm(dev, 0, &out_param, RES_CQ, |
| 245 | RES_OP_RESERVE_AND_MAP, MLX4_CMD_ALLOC_RES, |
| 246 | MLX4_CMD_TIME_CLASS_A, MLX4_CMD_WRAPPED); |
| 247 | if (err) |
| 248 | return err; |
| 249 | else { |
| 250 | *cqn = get_param_l(&out_param); |
| 251 | return 0; |
| 252 | } |
| 253 | } |
| 254 | return __mlx4_cq_alloc_icm(dev, cqn); |
| 255 | } |
| 256 | |
Eli Cohen | c82e9aa | 2011-12-13 04:15:24 +0000 | [diff] [blame] | 257 | void __mlx4_cq_free_icm(struct mlx4_dev *dev, int cqn) |
Jack Morgenstein | d723338 | 2011-12-13 04:13:36 +0000 | [diff] [blame] | 258 | { |
| 259 | struct mlx4_priv *priv = mlx4_priv(dev); |
| 260 | struct mlx4_cq_table *cq_table = &priv->cq_table; |
| 261 | |
| 262 | mlx4_table_put(dev, &cq_table->cmpt_table, cqn); |
| 263 | mlx4_table_put(dev, &cq_table->table, cqn); |
Jack Morgenstein | 7c6d74d | 2013-12-08 16:50:17 +0200 | [diff] [blame] | 264 | mlx4_bitmap_free(&cq_table->bitmap, cqn, MLX4_NO_RR); |
Jack Morgenstein | d723338 | 2011-12-13 04:13:36 +0000 | [diff] [blame] | 265 | } |
| 266 | |
| 267 | static void mlx4_cq_free_icm(struct mlx4_dev *dev, int cqn) |
| 268 | { |
Jack Morgenstein | e7dbeba | 2013-03-07 03:46:54 +0000 | [diff] [blame] | 269 | u64 in_param = 0; |
Jack Morgenstein | d723338 | 2011-12-13 04:13:36 +0000 | [diff] [blame] | 270 | int err; |
| 271 | |
| 272 | if (mlx4_is_mfunc(dev)) { |
| 273 | set_param_l(&in_param, cqn); |
| 274 | err = mlx4_cmd(dev, in_param, RES_CQ, RES_OP_RESERVE_AND_MAP, |
| 275 | MLX4_CMD_FREE_RES, |
| 276 | MLX4_CMD_TIME_CLASS_A, MLX4_CMD_WRAPPED); |
| 277 | if (err) |
| 278 | mlx4_warn(dev, "Failed freeing cq:%d\n", cqn); |
| 279 | } else |
| 280 | __mlx4_cq_free_icm(dev, cqn); |
| 281 | } |
| 282 | |
Amir Vadai | ec693d4 | 2013-04-23 06:06:49 +0000 | [diff] [blame] | 283 | int mlx4_cq_alloc(struct mlx4_dev *dev, int nent, |
| 284 | struct mlx4_mtt *mtt, struct mlx4_uar *uar, u64 db_rec, |
| 285 | struct mlx4_cq *cq, unsigned vector, int collapsed, |
| 286 | int timestamp_en) |
Roland Dreier | 225c7b1 | 2007-05-08 18:00:38 -0700 | [diff] [blame] | 287 | { |
| 288 | struct mlx4_priv *priv = mlx4_priv(dev); |
| 289 | struct mlx4_cq_table *cq_table = &priv->cq_table; |
| 290 | struct mlx4_cmd_mailbox *mailbox; |
| 291 | struct mlx4_cq_context *cq_context; |
| 292 | u64 mtt_addr; |
| 293 | int err; |
| 294 | |
Matan Barak | c66fa19 | 2015-05-31 09:30:16 +0300 | [diff] [blame] | 295 | if (vector >= dev->caps.num_comp_vectors) |
Yevgeny Petrilin | b8dd786 | 2008-12-22 07:15:03 -0800 | [diff] [blame] | 296 | return -EINVAL; |
| 297 | |
| 298 | cq->vector = vector; |
| 299 | |
Jack Morgenstein | d723338 | 2011-12-13 04:13:36 +0000 | [diff] [blame] | 300 | err = mlx4_cq_alloc_icm(dev, &cq->cqn); |
Roland Dreier | 225c7b1 | 2007-05-08 18:00:38 -0700 | [diff] [blame] | 301 | if (err) |
Jack Morgenstein | d723338 | 2011-12-13 04:13:36 +0000 | [diff] [blame] | 302 | return err; |
Roland Dreier | 225c7b1 | 2007-05-08 18:00:38 -0700 | [diff] [blame] | 303 | |
| 304 | spin_lock_irq(&cq_table->lock); |
| 305 | err = radix_tree_insert(&cq_table->tree, cq->cqn, cq); |
| 306 | spin_unlock_irq(&cq_table->lock); |
| 307 | if (err) |
Jack Morgenstein | d723338 | 2011-12-13 04:13:36 +0000 | [diff] [blame] | 308 | goto err_icm; |
Roland Dreier | 225c7b1 | 2007-05-08 18:00:38 -0700 | [diff] [blame] | 309 | |
| 310 | mailbox = mlx4_alloc_cmd_mailbox(dev); |
| 311 | if (IS_ERR(mailbox)) { |
| 312 | err = PTR_ERR(mailbox); |
| 313 | goto err_radix; |
| 314 | } |
| 315 | |
| 316 | cq_context = mailbox->buf; |
Yevgeny Petrilin | e463c7b | 2008-04-29 13:46:50 -0700 | [diff] [blame] | 317 | cq_context->flags = cpu_to_be32(!!collapsed << 18); |
Amir Vadai | ec693d4 | 2013-04-23 06:06:49 +0000 | [diff] [blame] | 318 | if (timestamp_en) |
| 319 | cq_context->flags |= cpu_to_be32(1 << 19); |
| 320 | |
Roland Dreier | 225c7b1 | 2007-05-08 18:00:38 -0700 | [diff] [blame] | 321 | cq_context->logsize_usrpage = cpu_to_be32((ilog2(nent) << 24) | uar->index); |
Matan Barak | c66fa19 | 2015-05-31 09:30:16 +0300 | [diff] [blame] | 322 | cq_context->comp_eqn = priv->eq_table.eq[MLX4_CQ_TO_EQ_VECTOR(vector)].eqn; |
Roland Dreier | 225c7b1 | 2007-05-08 18:00:38 -0700 | [diff] [blame] | 323 | cq_context->log_page_size = mtt->page_shift - MLX4_ICM_PAGE_SHIFT; |
| 324 | |
| 325 | mtt_addr = mlx4_mtt_addr(dev, mtt); |
| 326 | cq_context->mtt_base_addr_h = mtt_addr >> 32; |
| 327 | cq_context->mtt_base_addr_l = cpu_to_be32(mtt_addr & 0xffffffff); |
| 328 | cq_context->db_rec_addr = cpu_to_be64(db_rec); |
| 329 | |
| 330 | err = mlx4_SW2HW_CQ(dev, mailbox, cq->cqn); |
| 331 | mlx4_free_cmd_mailbox(dev, mailbox); |
| 332 | if (err) |
| 333 | goto err_radix; |
| 334 | |
| 335 | cq->cons_index = 0; |
| 336 | cq->arm_sn = 1; |
| 337 | cq->uar = uar; |
| 338 | atomic_set(&cq->refcount, 1); |
| 339 | init_completion(&cq->free); |
Matan Barak | 3dca0f42 | 2014-12-11 10:57:53 +0200 | [diff] [blame] | 340 | cq->comp = mlx4_add_cq_to_tasklet; |
| 341 | cq->tasklet_ctx.priv = |
Matan Barak | c66fa19 | 2015-05-31 09:30:16 +0300 | [diff] [blame] | 342 | &priv->eq_table.eq[MLX4_CQ_TO_EQ_VECTOR(vector)].tasklet_ctx; |
Matan Barak | 3dca0f42 | 2014-12-11 10:57:53 +0200 | [diff] [blame] | 343 | INIT_LIST_HEAD(&cq->tasklet_ctx.list); |
| 344 | |
Roland Dreier | 225c7b1 | 2007-05-08 18:00:38 -0700 | [diff] [blame] | 345 | |
Matan Barak | c66fa19 | 2015-05-31 09:30:16 +0300 | [diff] [blame] | 346 | cq->irq = priv->eq_table.eq[MLX4_CQ_TO_EQ_VECTOR(vector)].irq; |
Roland Dreier | 225c7b1 | 2007-05-08 18:00:38 -0700 | [diff] [blame] | 347 | return 0; |
| 348 | |
| 349 | err_radix: |
| 350 | spin_lock_irq(&cq_table->lock); |
| 351 | radix_tree_delete(&cq_table->tree, cq->cqn); |
| 352 | spin_unlock_irq(&cq_table->lock); |
| 353 | |
Jack Morgenstein | d723338 | 2011-12-13 04:13:36 +0000 | [diff] [blame] | 354 | err_icm: |
| 355 | mlx4_cq_free_icm(dev, cq->cqn); |
Roland Dreier | 225c7b1 | 2007-05-08 18:00:38 -0700 | [diff] [blame] | 356 | |
| 357 | return err; |
| 358 | } |
| 359 | EXPORT_SYMBOL_GPL(mlx4_cq_alloc); |
| 360 | |
| 361 | void mlx4_cq_free(struct mlx4_dev *dev, struct mlx4_cq *cq) |
| 362 | { |
| 363 | struct mlx4_priv *priv = mlx4_priv(dev); |
| 364 | struct mlx4_cq_table *cq_table = &priv->cq_table; |
| 365 | int err; |
| 366 | |
| 367 | err = mlx4_HW2SW_CQ(dev, NULL, cq->cqn); |
| 368 | if (err) |
| 369 | mlx4_warn(dev, "HW2SW_CQ failed (%d) for CQN %06x\n", err, cq->cqn); |
| 370 | |
Matan Barak | c66fa19 | 2015-05-31 09:30:16 +0300 | [diff] [blame] | 371 | synchronize_irq(priv->eq_table.eq[MLX4_CQ_TO_EQ_VECTOR(cq->vector)].irq); |
Matan Barak | 6d90aa5 | 2015-05-31 09:30:18 +0300 | [diff] [blame^] | 372 | if (priv->eq_table.eq[MLX4_CQ_TO_EQ_VECTOR(cq->vector)].irq != |
| 373 | priv->eq_table.eq[MLX4_EQ_ASYNC].irq) |
| 374 | synchronize_irq(priv->eq_table.eq[MLX4_EQ_ASYNC].irq); |
Roland Dreier | 225c7b1 | 2007-05-08 18:00:38 -0700 | [diff] [blame] | 375 | |
| 376 | spin_lock_irq(&cq_table->lock); |
| 377 | radix_tree_delete(&cq_table->tree, cq->cqn); |
| 378 | spin_unlock_irq(&cq_table->lock); |
| 379 | |
| 380 | if (atomic_dec_and_test(&cq->refcount)) |
| 381 | complete(&cq->free); |
| 382 | wait_for_completion(&cq->free); |
| 383 | |
Jack Morgenstein | d723338 | 2011-12-13 04:13:36 +0000 | [diff] [blame] | 384 | mlx4_cq_free_icm(dev, cq->cqn); |
Roland Dreier | 225c7b1 | 2007-05-08 18:00:38 -0700 | [diff] [blame] | 385 | } |
| 386 | EXPORT_SYMBOL_GPL(mlx4_cq_free); |
| 387 | |
Roland Dreier | 3d73c28 | 2007-10-10 15:43:54 -0700 | [diff] [blame] | 388 | int mlx4_init_cq_table(struct mlx4_dev *dev) |
Roland Dreier | 225c7b1 | 2007-05-08 18:00:38 -0700 | [diff] [blame] | 389 | { |
| 390 | struct mlx4_cq_table *cq_table = &mlx4_priv(dev)->cq_table; |
| 391 | int err; |
| 392 | |
| 393 | spin_lock_init(&cq_table->lock); |
| 394 | INIT_RADIX_TREE(&cq_table->tree, GFP_ATOMIC); |
Jack Morgenstein | d723338 | 2011-12-13 04:13:36 +0000 | [diff] [blame] | 395 | if (mlx4_is_slave(dev)) |
| 396 | return 0; |
Roland Dreier | 225c7b1 | 2007-05-08 18:00:38 -0700 | [diff] [blame] | 397 | |
| 398 | err = mlx4_bitmap_init(&cq_table->bitmap, dev->caps.num_cqs, |
Yevgeny Petrilin | 93fc9e1 | 2008-10-22 10:25:29 -0700 | [diff] [blame] | 399 | dev->caps.num_cqs - 1, dev->caps.reserved_cqs, 0); |
Roland Dreier | 225c7b1 | 2007-05-08 18:00:38 -0700 | [diff] [blame] | 400 | if (err) |
| 401 | return err; |
| 402 | |
| 403 | return 0; |
| 404 | } |
| 405 | |
| 406 | void mlx4_cleanup_cq_table(struct mlx4_dev *dev) |
| 407 | { |
Jack Morgenstein | d723338 | 2011-12-13 04:13:36 +0000 | [diff] [blame] | 408 | if (mlx4_is_slave(dev)) |
| 409 | return; |
Roland Dreier | 225c7b1 | 2007-05-08 18:00:38 -0700 | [diff] [blame] | 410 | /* Nothing to do to clean up radix_tree */ |
| 411 | mlx4_bitmap_cleanup(&mlx4_priv(dev)->cq_table.bitmap); |
| 412 | } |