blob: 7e94987d030c4da44885c5aa3dd56daf1d022907 [file] [log] [blame]
Roland Dreier225c7b12007-05-08 18:00:38 -07001/*
2 * Copyright (c) 2004, 2005 Topspin Communications. All rights reserved.
Jack Morgenstein51a379d2008-07-25 10:32:52 -07003 * Copyright (c) 2005, 2006, 2007, 2008 Mellanox Technologies. All rights reserved.
Roland Dreier225c7b12007-05-08 18:00:38 -07004 * Copyright (c) 2005, 2006, 2007 Cisco Systems, Inc. All rights reserved.
5 *
6 * This software is available to you under a choice of one of two
7 * licenses. You may choose to be licensed under the terms of the GNU
8 * General Public License (GPL) Version 2, available from the file
9 * COPYING in the main directory of this source tree, or the
10 * OpenIB.org BSD license below:
11 *
12 * Redistribution and use in source and binary forms, with or
13 * without modification, are permitted provided that the following
14 * conditions are met:
15 *
16 * - Redistributions of source code must retain the above
17 * copyright notice, this list of conditions and the following
18 * disclaimer.
19 *
20 * - Redistributions in binary form must reproduce the above
21 * copyright notice, this list of conditions and the following
22 * disclaimer in the documentation and/or other materials
23 * provided with the distribution.
24 *
25 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
26 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
27 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
28 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
29 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
30 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
31 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
32 * SOFTWARE.
33 */
34
35#include <linux/sched.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090036#include <linux/slab.h>
Paul Gortmakeree40fa02011-05-27 16:14:23 -040037#include <linux/export.h>
Roland Dreier225c7b12007-05-08 18:00:38 -070038#include <linux/pci.h>
39#include <linux/errno.h>
40
41#include <linux/mlx4/cmd.h>
Yevgeny Petriline8f081a2011-12-13 04:12:25 +000042#include <linux/semaphore.h>
Roland Dreier225c7b12007-05-08 18:00:38 -070043
44#include <asm/io.h>
45
46#include "mlx4.h"
Yevgeny Petriline8f081a2011-12-13 04:12:25 +000047#include "fw.h"
Roland Dreier225c7b12007-05-08 18:00:38 -070048
49#define CMD_POLL_TOKEN 0xffff
Yevgeny Petriline8f081a2011-12-13 04:12:25 +000050#define INBOX_MASK 0xffffffffffffff00ULL
51
52#define CMD_CHAN_VER 1
53#define CMD_CHAN_IF_REV 1
Roland Dreier225c7b12007-05-08 18:00:38 -070054
55enum {
56 /* command completed successfully: */
57 CMD_STAT_OK = 0x00,
58 /* Internal error (such as a bus error) occurred while processing command: */
59 CMD_STAT_INTERNAL_ERR = 0x01,
60 /* Operation/command not supported or opcode modifier not supported: */
61 CMD_STAT_BAD_OP = 0x02,
62 /* Parameter not supported or parameter out of range: */
63 CMD_STAT_BAD_PARAM = 0x03,
64 /* System not enabled or bad system state: */
65 CMD_STAT_BAD_SYS_STATE = 0x04,
66 /* Attempt to access reserved or unallocaterd resource: */
67 CMD_STAT_BAD_RESOURCE = 0x05,
68 /* Requested resource is currently executing a command, or is otherwise busy: */
69 CMD_STAT_RESOURCE_BUSY = 0x06,
70 /* Required capability exceeds device limits: */
71 CMD_STAT_EXCEED_LIM = 0x08,
72 /* Resource is not in the appropriate state or ownership: */
73 CMD_STAT_BAD_RES_STATE = 0x09,
74 /* Index out of range: */
75 CMD_STAT_BAD_INDEX = 0x0a,
76 /* FW image corrupted: */
77 CMD_STAT_BAD_NVMEM = 0x0b,
Jack Morgenstein899698d2008-07-22 14:19:39 -070078 /* Error in ICM mapping (e.g. not enough auxiliary ICM pages to execute command): */
79 CMD_STAT_ICM_ERROR = 0x0c,
Roland Dreier225c7b12007-05-08 18:00:38 -070080 /* Attempt to modify a QP/EE which is not in the presumed state: */
81 CMD_STAT_BAD_QP_STATE = 0x10,
82 /* Bad segment parameters (Address/Size): */
83 CMD_STAT_BAD_SEG_PARAM = 0x20,
84 /* Memory Region has Memory Windows bound to: */
85 CMD_STAT_REG_BOUND = 0x21,
86 /* HCA local attached memory not present: */
87 CMD_STAT_LAM_NOT_PRE = 0x22,
88 /* Bad management packet (silently discarded): */
89 CMD_STAT_BAD_PKT = 0x30,
90 /* More outstanding CQEs in CQ than new CQ size: */
Yevgeny Petrilincc4ac2e2009-07-06 16:10:03 -070091 CMD_STAT_BAD_SIZE = 0x40,
92 /* Multi Function device support required: */
93 CMD_STAT_MULTI_FUNC_REQ = 0x50,
Roland Dreier225c7b12007-05-08 18:00:38 -070094};
95
96enum {
97 HCR_IN_PARAM_OFFSET = 0x00,
98 HCR_IN_MODIFIER_OFFSET = 0x08,
99 HCR_OUT_PARAM_OFFSET = 0x0c,
100 HCR_TOKEN_OFFSET = 0x14,
101 HCR_STATUS_OFFSET = 0x18,
102
103 HCR_OPMOD_SHIFT = 12,
104 HCR_T_BIT = 21,
105 HCR_E_BIT = 22,
106 HCR_GO_BIT = 23
107};
108
109enum {
Dotan Barak36ce10d2007-08-07 11:18:52 +0300110 GO_BIT_TIMEOUT_MSECS = 10000
Roland Dreier225c7b12007-05-08 18:00:38 -0700111};
112
113struct mlx4_cmd_context {
114 struct completion done;
115 int result;
116 int next;
117 u64 out_param;
118 u16 token;
Yevgeny Petriline8f081a2011-12-13 04:12:25 +0000119 u8 fw_status;
Roland Dreier225c7b12007-05-08 18:00:38 -0700120};
121
Yevgeny Petriline8f081a2011-12-13 04:12:25 +0000122static int mlx4_master_process_vhcr(struct mlx4_dev *dev, int slave,
123 struct mlx4_vhcr_cmd *in_vhcr);
124
Roland Dreierca281212008-04-16 21:01:04 -0700125static int mlx4_status_to_errno(u8 status)
126{
Roland Dreier225c7b12007-05-08 18:00:38 -0700127 static const int trans_table[] = {
128 [CMD_STAT_INTERNAL_ERR] = -EIO,
129 [CMD_STAT_BAD_OP] = -EPERM,
130 [CMD_STAT_BAD_PARAM] = -EINVAL,
131 [CMD_STAT_BAD_SYS_STATE] = -ENXIO,
132 [CMD_STAT_BAD_RESOURCE] = -EBADF,
133 [CMD_STAT_RESOURCE_BUSY] = -EBUSY,
134 [CMD_STAT_EXCEED_LIM] = -ENOMEM,
135 [CMD_STAT_BAD_RES_STATE] = -EBADF,
136 [CMD_STAT_BAD_INDEX] = -EBADF,
137 [CMD_STAT_BAD_NVMEM] = -EFAULT,
Jack Morgenstein899698d2008-07-22 14:19:39 -0700138 [CMD_STAT_ICM_ERROR] = -ENFILE,
Roland Dreier225c7b12007-05-08 18:00:38 -0700139 [CMD_STAT_BAD_QP_STATE] = -EINVAL,
140 [CMD_STAT_BAD_SEG_PARAM] = -EFAULT,
141 [CMD_STAT_REG_BOUND] = -EBUSY,
142 [CMD_STAT_LAM_NOT_PRE] = -EAGAIN,
143 [CMD_STAT_BAD_PKT] = -EINVAL,
144 [CMD_STAT_BAD_SIZE] = -ENOMEM,
Yevgeny Petrilincc4ac2e2009-07-06 16:10:03 -0700145 [CMD_STAT_MULTI_FUNC_REQ] = -EACCES,
Roland Dreier225c7b12007-05-08 18:00:38 -0700146 };
147
148 if (status >= ARRAY_SIZE(trans_table) ||
149 (status != CMD_STAT_OK && trans_table[status] == 0))
150 return -EIO;
151
152 return trans_table[status];
153}
154
Yevgeny Petrilin72be84f2011-12-19 04:03:53 +0000155static u8 mlx4_errno_to_status(int errno)
156{
157 switch (errno) {
158 case -EPERM:
159 return CMD_STAT_BAD_OP;
160 case -EINVAL:
161 return CMD_STAT_BAD_PARAM;
162 case -ENXIO:
163 return CMD_STAT_BAD_SYS_STATE;
164 case -EBUSY:
165 return CMD_STAT_RESOURCE_BUSY;
166 case -ENOMEM:
167 return CMD_STAT_EXCEED_LIM;
168 case -ENFILE:
169 return CMD_STAT_ICM_ERROR;
170 default:
171 return CMD_STAT_INTERNAL_ERR;
172 }
173}
174
Yevgeny Petriline8f081a2011-12-13 04:12:25 +0000175static int comm_pending(struct mlx4_dev *dev)
176{
177 struct mlx4_priv *priv = mlx4_priv(dev);
178 u32 status = readl(&priv->mfunc.comm->slave_read);
179
180 return (swab32(status) >> 31) != priv->cmd.comm_toggle;
181}
182
183static void mlx4_comm_cmd_post(struct mlx4_dev *dev, u8 cmd, u16 param)
184{
185 struct mlx4_priv *priv = mlx4_priv(dev);
186 u32 val;
187
188 priv->cmd.comm_toggle ^= 1;
189 val = param | (cmd << 16) | (priv->cmd.comm_toggle << 31);
190 __raw_writel((__force u32) cpu_to_be32(val),
191 &priv->mfunc.comm->slave_write);
192 mmiowb();
193}
194
Yevgeny Petriline8f081a2011-12-13 04:12:25 +0000195static int mlx4_comm_cmd_poll(struct mlx4_dev *dev, u8 cmd, u16 param,
196 unsigned long timeout)
197{
198 struct mlx4_priv *priv = mlx4_priv(dev);
199 unsigned long end;
200 int err = 0;
201 int ret_from_pending = 0;
202
203 /* First, verify that the master reports correct status */
204 if (comm_pending(dev)) {
205 mlx4_warn(dev, "Communication channel is not idle."
206 "my toggle is %d (cmd:0x%x)\n",
207 priv->cmd.comm_toggle, cmd);
208 return -EAGAIN;
209 }
210
211 /* Write command */
212 down(&priv->cmd.poll_sem);
213 mlx4_comm_cmd_post(dev, cmd, param);
214
215 end = msecs_to_jiffies(timeout) + jiffies;
216 while (comm_pending(dev) && time_before(jiffies, end))
217 cond_resched();
218 ret_from_pending = comm_pending(dev);
219 if (ret_from_pending) {
220 /* check if the slave is trying to boot in the middle of
221 * FLR process. The only non-zero result in the RESET command
222 * is MLX4_DELAY_RESET_SLAVE*/
223 if ((MLX4_COMM_CMD_RESET == cmd)) {
224 mlx4_warn(dev, "Got slave FLRed from Communication"
225 " channel (ret:0x%x)\n", ret_from_pending);
226 err = MLX4_DELAY_RESET_SLAVE;
227 } else {
228 mlx4_warn(dev, "Communication channel timed out\n");
229 err = -ETIMEDOUT;
230 }
231 }
232
233 up(&priv->cmd.poll_sem);
234 return err;
235}
236
237static int mlx4_comm_cmd_wait(struct mlx4_dev *dev, u8 op,
238 u16 param, unsigned long timeout)
239{
240 struct mlx4_cmd *cmd = &mlx4_priv(dev)->cmd;
241 struct mlx4_cmd_context *context;
Eugenia Emantayev58a3de02012-03-18 04:32:08 +0000242 unsigned long end;
Yevgeny Petriline8f081a2011-12-13 04:12:25 +0000243 int err = 0;
244
245 down(&cmd->event_sem);
246
247 spin_lock(&cmd->context_lock);
248 BUG_ON(cmd->free_head < 0);
249 context = &cmd->context[cmd->free_head];
250 context->token += cmd->token_mask + 1;
251 cmd->free_head = context->next;
252 spin_unlock(&cmd->context_lock);
253
254 init_completion(&context->done);
255
256 mlx4_comm_cmd_post(dev, op, param);
257
258 if (!wait_for_completion_timeout(&context->done,
259 msecs_to_jiffies(timeout))) {
260 err = -EBUSY;
261 goto out;
262 }
263
264 err = context->result;
265 if (err && context->fw_status != CMD_STAT_MULTI_FUNC_REQ) {
266 mlx4_err(dev, "command 0x%x failed: fw status = 0x%x\n",
267 op, context->fw_status);
268 goto out;
269 }
270
271out:
Eugenia Emantayev58a3de02012-03-18 04:32:08 +0000272 /* wait for comm channel ready
273 * this is necessary for prevention the race
274 * when switching between event to polling mode
275 */
276 end = msecs_to_jiffies(timeout) + jiffies;
277 while (comm_pending(dev) && time_before(jiffies, end))
278 cond_resched();
279
Yevgeny Petriline8f081a2011-12-13 04:12:25 +0000280 spin_lock(&cmd->context_lock);
281 context->next = cmd->free_head;
282 cmd->free_head = context - cmd->context;
283 spin_unlock(&cmd->context_lock);
284
285 up(&cmd->event_sem);
286 return err;
287}
288
Jack Morgensteinab9c17a2011-12-13 04:18:30 +0000289int mlx4_comm_cmd(struct mlx4_dev *dev, u8 cmd, u16 param,
Yevgeny Petriline8f081a2011-12-13 04:12:25 +0000290 unsigned long timeout)
291{
292 if (mlx4_priv(dev)->cmd.use_events)
293 return mlx4_comm_cmd_wait(dev, cmd, param, timeout);
294 return mlx4_comm_cmd_poll(dev, cmd, param, timeout);
295}
296
Roland Dreier225c7b12007-05-08 18:00:38 -0700297static int cmd_pending(struct mlx4_dev *dev)
298{
299 u32 status = readl(mlx4_priv(dev)->cmd.hcr + HCR_STATUS_OFFSET);
300
301 return (status & swab32(1 << HCR_GO_BIT)) ||
302 (mlx4_priv(dev)->cmd.toggle ==
303 !!(status & swab32(1 << HCR_T_BIT)));
304}
305
306static int mlx4_cmd_post(struct mlx4_dev *dev, u64 in_param, u64 out_param,
307 u32 in_modifier, u8 op_modifier, u16 op, u16 token,
308 int event)
309{
310 struct mlx4_cmd *cmd = &mlx4_priv(dev)->cmd;
311 u32 __iomem *hcr = cmd->hcr;
312 int ret = -EAGAIN;
313 unsigned long end;
314
315 mutex_lock(&cmd->hcr_mutex);
316
317 end = jiffies;
318 if (event)
Dotan Barak36ce10d2007-08-07 11:18:52 +0300319 end += msecs_to_jiffies(GO_BIT_TIMEOUT_MSECS);
Roland Dreier225c7b12007-05-08 18:00:38 -0700320
321 while (cmd_pending(dev)) {
Yevgeny Petriline8f081a2011-12-13 04:12:25 +0000322 if (time_after_eq(jiffies, end)) {
323 mlx4_err(dev, "%s:cmd_pending failed\n", __func__);
Roland Dreier225c7b12007-05-08 18:00:38 -0700324 goto out;
Yevgeny Petriline8f081a2011-12-13 04:12:25 +0000325 }
Roland Dreier225c7b12007-05-08 18:00:38 -0700326 cond_resched();
327 }
328
329 /*
330 * We use writel (instead of something like memcpy_toio)
331 * because writes of less than 32 bits to the HCR don't work
332 * (and some architectures such as ia64 implement memcpy_toio
333 * in terms of writeb).
334 */
335 __raw_writel((__force u32) cpu_to_be32(in_param >> 32), hcr + 0);
336 __raw_writel((__force u32) cpu_to_be32(in_param & 0xfffffffful), hcr + 1);
337 __raw_writel((__force u32) cpu_to_be32(in_modifier), hcr + 2);
338 __raw_writel((__force u32) cpu_to_be32(out_param >> 32), hcr + 3);
339 __raw_writel((__force u32) cpu_to_be32(out_param & 0xfffffffful), hcr + 4);
340 __raw_writel((__force u32) cpu_to_be32(token << 16), hcr + 5);
341
342 /* __raw_writel may not order writes. */
343 wmb();
344
345 __raw_writel((__force u32) cpu_to_be32((1 << HCR_GO_BIT) |
346 (cmd->toggle << HCR_T_BIT) |
347 (event ? (1 << HCR_E_BIT) : 0) |
348 (op_modifier << HCR_OPMOD_SHIFT) |
Yevgeny Petriline8f081a2011-12-13 04:12:25 +0000349 op), hcr + 6);
Roland Dreier2e61c642007-10-09 19:59:18 -0700350
351 /*
352 * Make sure that our HCR writes don't get mixed in with
353 * writes from another CPU starting a FW command.
354 */
355 mmiowb();
356
Roland Dreier225c7b12007-05-08 18:00:38 -0700357 cmd->toggle = cmd->toggle ^ 1;
358
359 ret = 0;
360
361out:
362 mutex_unlock(&cmd->hcr_mutex);
363 return ret;
364}
365
Yevgeny Petriline8f081a2011-12-13 04:12:25 +0000366static int mlx4_slave_cmd(struct mlx4_dev *dev, u64 in_param, u64 *out_param,
367 int out_is_imm, u32 in_modifier, u8 op_modifier,
368 u16 op, unsigned long timeout)
369{
370 struct mlx4_priv *priv = mlx4_priv(dev);
371 struct mlx4_vhcr_cmd *vhcr = priv->mfunc.vhcr;
372 int ret;
373
374 down(&priv->cmd.slave_sem);
375 vhcr->in_param = cpu_to_be64(in_param);
376 vhcr->out_param = out_param ? cpu_to_be64(*out_param) : 0;
377 vhcr->in_modifier = cpu_to_be32(in_modifier);
378 vhcr->opcode = cpu_to_be16((((u16) op_modifier) << 12) | (op & 0xfff));
379 vhcr->token = cpu_to_be16(CMD_POLL_TOKEN);
380 vhcr->status = 0;
381 vhcr->flags = !!(priv->cmd.use_events) << 6;
382 if (mlx4_is_master(dev)) {
383 ret = mlx4_master_process_vhcr(dev, dev->caps.function, vhcr);
384 if (!ret) {
385 if (out_is_imm) {
386 if (out_param)
387 *out_param =
388 be64_to_cpu(vhcr->out_param);
389 else {
390 mlx4_err(dev, "response expected while"
391 "output mailbox is NULL for "
392 "command 0x%x\n", op);
Yevgeny Petrilin72be84f2011-12-19 04:03:53 +0000393 vhcr->status = CMD_STAT_BAD_PARAM;
Yevgeny Petriline8f081a2011-12-13 04:12:25 +0000394 }
395 }
Yevgeny Petrilin72be84f2011-12-19 04:03:53 +0000396 ret = mlx4_status_to_errno(vhcr->status);
Yevgeny Petriline8f081a2011-12-13 04:12:25 +0000397 }
398 } else {
399 ret = mlx4_comm_cmd(dev, MLX4_COMM_CMD_VHCR_POST, 0,
400 MLX4_COMM_TIME + timeout);
401 if (!ret) {
402 if (out_is_imm) {
403 if (out_param)
404 *out_param =
405 be64_to_cpu(vhcr->out_param);
406 else {
407 mlx4_err(dev, "response expected while"
408 "output mailbox is NULL for "
409 "command 0x%x\n", op);
Yevgeny Petrilin72be84f2011-12-19 04:03:53 +0000410 vhcr->status = CMD_STAT_BAD_PARAM;
Yevgeny Petriline8f081a2011-12-13 04:12:25 +0000411 }
412 }
Yevgeny Petrilin72be84f2011-12-19 04:03:53 +0000413 ret = mlx4_status_to_errno(vhcr->status);
Yevgeny Petriline8f081a2011-12-13 04:12:25 +0000414 } else
415 mlx4_err(dev, "failed execution of VHCR_POST command"
416 "opcode 0x%x\n", op);
417 }
418 up(&priv->cmd.slave_sem);
419 return ret;
420}
421
Roland Dreier225c7b12007-05-08 18:00:38 -0700422static int mlx4_cmd_poll(struct mlx4_dev *dev, u64 in_param, u64 *out_param,
423 int out_is_imm, u32 in_modifier, u8 op_modifier,
424 u16 op, unsigned long timeout)
425{
426 struct mlx4_priv *priv = mlx4_priv(dev);
427 void __iomem *hcr = priv->cmd.hcr;
428 int err = 0;
429 unsigned long end;
Yevgeny Petriline8f081a2011-12-13 04:12:25 +0000430 u32 stat;
Roland Dreier225c7b12007-05-08 18:00:38 -0700431
432 down(&priv->cmd.poll_sem);
433
434 err = mlx4_cmd_post(dev, in_param, out_param ? *out_param : 0,
435 in_modifier, op_modifier, op, CMD_POLL_TOKEN, 0);
436 if (err)
437 goto out;
438
439 end = msecs_to_jiffies(timeout) + jiffies;
440 while (cmd_pending(dev) && time_before(jiffies, end))
441 cond_resched();
442
443 if (cmd_pending(dev)) {
444 err = -ETIMEDOUT;
445 goto out;
446 }
447
448 if (out_is_imm)
449 *out_param =
450 (u64) be32_to_cpu((__force __be32)
451 __raw_readl(hcr + HCR_OUT_PARAM_OFFSET)) << 32 |
452 (u64) be32_to_cpu((__force __be32)
453 __raw_readl(hcr + HCR_OUT_PARAM_OFFSET + 4));
Yevgeny Petriline8f081a2011-12-13 04:12:25 +0000454 stat = be32_to_cpu((__force __be32)
455 __raw_readl(hcr + HCR_STATUS_OFFSET)) >> 24;
456 err = mlx4_status_to_errno(stat);
457 if (err)
458 mlx4_err(dev, "command 0x%x failed: fw status = 0x%x\n",
459 op, stat);
Roland Dreier225c7b12007-05-08 18:00:38 -0700460
461out:
462 up(&priv->cmd.poll_sem);
463 return err;
464}
465
466void mlx4_cmd_event(struct mlx4_dev *dev, u16 token, u8 status, u64 out_param)
467{
468 struct mlx4_priv *priv = mlx4_priv(dev);
469 struct mlx4_cmd_context *context =
470 &priv->cmd.context[token & priv->cmd.token_mask];
471
472 /* previously timed out command completing at long last */
473 if (token != context->token)
474 return;
475
Yevgeny Petriline8f081a2011-12-13 04:12:25 +0000476 context->fw_status = status;
Roland Dreier225c7b12007-05-08 18:00:38 -0700477 context->result = mlx4_status_to_errno(status);
478 context->out_param = out_param;
479
Roland Dreier225c7b12007-05-08 18:00:38 -0700480 complete(&context->done);
481}
482
483static int mlx4_cmd_wait(struct mlx4_dev *dev, u64 in_param, u64 *out_param,
484 int out_is_imm, u32 in_modifier, u8 op_modifier,
485 u16 op, unsigned long timeout)
486{
487 struct mlx4_cmd *cmd = &mlx4_priv(dev)->cmd;
488 struct mlx4_cmd_context *context;
489 int err = 0;
490
491 down(&cmd->event_sem);
492
493 spin_lock(&cmd->context_lock);
494 BUG_ON(cmd->free_head < 0);
495 context = &cmd->context[cmd->free_head];
Roland Dreier09815822007-07-20 21:19:43 -0700496 context->token += cmd->token_mask + 1;
Roland Dreier225c7b12007-05-08 18:00:38 -0700497 cmd->free_head = context->next;
498 spin_unlock(&cmd->context_lock);
499
500 init_completion(&context->done);
501
502 mlx4_cmd_post(dev, in_param, out_param ? *out_param : 0,
503 in_modifier, op_modifier, op, context->token, 1);
504
Yevgeny Petriline8f081a2011-12-13 04:12:25 +0000505 if (!wait_for_completion_timeout(&context->done,
506 msecs_to_jiffies(timeout))) {
Roland Dreier225c7b12007-05-08 18:00:38 -0700507 err = -EBUSY;
508 goto out;
509 }
510
511 err = context->result;
Yevgeny Petriline8f081a2011-12-13 04:12:25 +0000512 if (err) {
513 mlx4_err(dev, "command 0x%x failed: fw status = 0x%x\n",
514 op, context->fw_status);
Roland Dreier225c7b12007-05-08 18:00:38 -0700515 goto out;
Yevgeny Petriline8f081a2011-12-13 04:12:25 +0000516 }
Roland Dreier225c7b12007-05-08 18:00:38 -0700517
518 if (out_is_imm)
519 *out_param = context->out_param;
520
521out:
522 spin_lock(&cmd->context_lock);
523 context->next = cmd->free_head;
524 cmd->free_head = context - cmd->context;
525 spin_unlock(&cmd->context_lock);
526
527 up(&cmd->event_sem);
528 return err;
529}
530
531int __mlx4_cmd(struct mlx4_dev *dev, u64 in_param, u64 *out_param,
532 int out_is_imm, u32 in_modifier, u8 op_modifier,
Jack Morgensteinf9baff52011-12-13 04:10:51 +0000533 u16 op, unsigned long timeout, int native)
Roland Dreier225c7b12007-05-08 18:00:38 -0700534{
Yevgeny Petriline8f081a2011-12-13 04:12:25 +0000535 if (!mlx4_is_mfunc(dev) || (native && mlx4_is_master(dev))) {
536 if (mlx4_priv(dev)->cmd.use_events)
537 return mlx4_cmd_wait(dev, in_param, out_param,
538 out_is_imm, in_modifier,
539 op_modifier, op, timeout);
540 else
541 return mlx4_cmd_poll(dev, in_param, out_param,
542 out_is_imm, in_modifier,
543 op_modifier, op, timeout);
544 }
545 return mlx4_slave_cmd(dev, in_param, out_param, out_is_imm,
546 in_modifier, op_modifier, op, timeout);
Roland Dreier225c7b12007-05-08 18:00:38 -0700547}
548EXPORT_SYMBOL_GPL(__mlx4_cmd);
549
Yevgeny Petriline8f081a2011-12-13 04:12:25 +0000550
551static int mlx4_ARM_COMM_CHANNEL(struct mlx4_dev *dev)
552{
553 return mlx4_cmd(dev, 0, 0, 0, MLX4_CMD_ARM_COMM_CHANNEL,
554 MLX4_CMD_TIME_CLASS_B, MLX4_CMD_NATIVE);
555}
556
557static int mlx4_ACCESS_MEM(struct mlx4_dev *dev, u64 master_addr,
558 int slave, u64 slave_addr,
559 int size, int is_read)
560{
561 u64 in_param;
562 u64 out_param;
563
564 if ((slave_addr & 0xfff) | (master_addr & 0xfff) |
565 (slave & ~0x7f) | (size & 0xff)) {
566 mlx4_err(dev, "Bad access mem params - slave_addr:0x%llx "
567 "master_addr:0x%llx slave_id:%d size:%d\n",
568 slave_addr, master_addr, slave, size);
569 return -EINVAL;
570 }
571
572 if (is_read) {
573 in_param = (u64) slave | slave_addr;
574 out_param = (u64) dev->caps.function | master_addr;
575 } else {
576 in_param = (u64) dev->caps.function | master_addr;
577 out_param = (u64) slave | slave_addr;
578 }
579
580 return mlx4_cmd_imm(dev, in_param, &out_param, size, 0,
581 MLX4_CMD_ACCESS_MEM,
582 MLX4_CMD_TIME_CLASS_A, MLX4_CMD_NATIVE);
583}
584
585int mlx4_DMA_wrapper(struct mlx4_dev *dev, int slave,
586 struct mlx4_vhcr *vhcr,
587 struct mlx4_cmd_mailbox *inbox,
588 struct mlx4_cmd_mailbox *outbox,
589 struct mlx4_cmd_info *cmd)
590{
591 u64 in_param;
592 u64 out_param;
593 int err;
594
595 in_param = cmd->has_inbox ? (u64) inbox->dma : vhcr->in_param;
596 out_param = cmd->has_outbox ? (u64) outbox->dma : vhcr->out_param;
597 if (cmd->encode_slave_id) {
598 in_param &= 0xffffffffffffff00ll;
599 in_param |= slave;
600 }
601
602 err = __mlx4_cmd(dev, in_param, &out_param, cmd->out_is_imm,
603 vhcr->in_modifier, vhcr->op_modifier, vhcr->op,
604 MLX4_CMD_TIME_CLASS_A, MLX4_CMD_NATIVE);
605
606 if (cmd->out_is_imm)
607 vhcr->out_param = out_param;
608
609 return err;
610}
611
612static struct mlx4_cmd_info cmd_info[] = {
613 {
614 .opcode = MLX4_CMD_QUERY_FW,
615 .has_inbox = false,
616 .has_outbox = true,
617 .out_is_imm = false,
618 .encode_slave_id = false,
619 .verify = NULL,
Jack Morgensteinb91cb3e2012-05-30 09:14:53 +0000620 .wrapper = mlx4_QUERY_FW_wrapper
Yevgeny Petriline8f081a2011-12-13 04:12:25 +0000621 },
622 {
623 .opcode = MLX4_CMD_QUERY_HCA,
624 .has_inbox = false,
625 .has_outbox = true,
626 .out_is_imm = false,
627 .encode_slave_id = false,
628 .verify = NULL,
629 .wrapper = NULL
630 },
631 {
632 .opcode = MLX4_CMD_QUERY_DEV_CAP,
633 .has_inbox = false,
634 .has_outbox = true,
635 .out_is_imm = false,
636 .encode_slave_id = false,
637 .verify = NULL,
Jack Morgensteinb91cb3e2012-05-30 09:14:53 +0000638 .wrapper = mlx4_QUERY_DEV_CAP_wrapper
Yevgeny Petriline8f081a2011-12-13 04:12:25 +0000639 },
Eli Cohenc82e9aa2011-12-13 04:15:24 +0000640 {
641 .opcode = MLX4_CMD_QUERY_FUNC_CAP,
642 .has_inbox = false,
643 .has_outbox = true,
644 .out_is_imm = false,
645 .encode_slave_id = false,
646 .verify = NULL,
647 .wrapper = mlx4_QUERY_FUNC_CAP_wrapper
648 },
649 {
650 .opcode = MLX4_CMD_QUERY_ADAPTER,
651 .has_inbox = false,
652 .has_outbox = true,
653 .out_is_imm = false,
654 .encode_slave_id = false,
655 .verify = NULL,
656 .wrapper = NULL
657 },
658 {
659 .opcode = MLX4_CMD_INIT_PORT,
660 .has_inbox = false,
661 .has_outbox = false,
662 .out_is_imm = false,
663 .encode_slave_id = false,
664 .verify = NULL,
665 .wrapper = mlx4_INIT_PORT_wrapper
666 },
667 {
668 .opcode = MLX4_CMD_CLOSE_PORT,
669 .has_inbox = false,
670 .has_outbox = false,
671 .out_is_imm = false,
672 .encode_slave_id = false,
673 .verify = NULL,
674 .wrapper = mlx4_CLOSE_PORT_wrapper
675 },
676 {
677 .opcode = MLX4_CMD_QUERY_PORT,
678 .has_inbox = false,
679 .has_outbox = true,
680 .out_is_imm = false,
681 .encode_slave_id = false,
682 .verify = NULL,
683 .wrapper = mlx4_QUERY_PORT_wrapper
684 },
685 {
Eugenia Emantayevffe455a2011-12-13 04:16:21 +0000686 .opcode = MLX4_CMD_SET_PORT,
687 .has_inbox = true,
688 .has_outbox = false,
689 .out_is_imm = false,
690 .encode_slave_id = false,
691 .verify = NULL,
692 .wrapper = mlx4_SET_PORT_wrapper
693 },
694 {
Eli Cohenc82e9aa2011-12-13 04:15:24 +0000695 .opcode = MLX4_CMD_MAP_EQ,
696 .has_inbox = false,
697 .has_outbox = false,
698 .out_is_imm = false,
699 .encode_slave_id = false,
700 .verify = NULL,
701 .wrapper = mlx4_MAP_EQ_wrapper
702 },
703 {
704 .opcode = MLX4_CMD_SW2HW_EQ,
705 .has_inbox = true,
706 .has_outbox = false,
707 .out_is_imm = false,
708 .encode_slave_id = true,
709 .verify = NULL,
710 .wrapper = mlx4_SW2HW_EQ_wrapper
711 },
712 {
713 .opcode = MLX4_CMD_HW_HEALTH_CHECK,
714 .has_inbox = false,
715 .has_outbox = false,
716 .out_is_imm = false,
717 .encode_slave_id = false,
718 .verify = NULL,
719 .wrapper = NULL
720 },
721 {
722 .opcode = MLX4_CMD_NOP,
723 .has_inbox = false,
724 .has_outbox = false,
725 .out_is_imm = false,
726 .encode_slave_id = false,
727 .verify = NULL,
728 .wrapper = NULL
729 },
730 {
731 .opcode = MLX4_CMD_ALLOC_RES,
732 .has_inbox = false,
733 .has_outbox = false,
734 .out_is_imm = true,
735 .encode_slave_id = false,
736 .verify = NULL,
737 .wrapper = mlx4_ALLOC_RES_wrapper
738 },
739 {
740 .opcode = MLX4_CMD_FREE_RES,
741 .has_inbox = false,
742 .has_outbox = false,
743 .out_is_imm = false,
744 .encode_slave_id = false,
745 .verify = NULL,
746 .wrapper = mlx4_FREE_RES_wrapper
747 },
748 {
749 .opcode = MLX4_CMD_SW2HW_MPT,
750 .has_inbox = true,
751 .has_outbox = false,
752 .out_is_imm = false,
753 .encode_slave_id = true,
754 .verify = NULL,
755 .wrapper = mlx4_SW2HW_MPT_wrapper
756 },
757 {
758 .opcode = MLX4_CMD_QUERY_MPT,
759 .has_inbox = false,
760 .has_outbox = true,
761 .out_is_imm = false,
762 .encode_slave_id = false,
763 .verify = NULL,
764 .wrapper = mlx4_QUERY_MPT_wrapper
765 },
766 {
767 .opcode = MLX4_CMD_HW2SW_MPT,
768 .has_inbox = false,
769 .has_outbox = false,
770 .out_is_imm = false,
771 .encode_slave_id = false,
772 .verify = NULL,
773 .wrapper = mlx4_HW2SW_MPT_wrapper
774 },
775 {
776 .opcode = MLX4_CMD_READ_MTT,
777 .has_inbox = false,
778 .has_outbox = true,
779 .out_is_imm = false,
780 .encode_slave_id = false,
781 .verify = NULL,
782 .wrapper = NULL
783 },
784 {
785 .opcode = MLX4_CMD_WRITE_MTT,
786 .has_inbox = true,
787 .has_outbox = false,
788 .out_is_imm = false,
789 .encode_slave_id = false,
790 .verify = NULL,
791 .wrapper = mlx4_WRITE_MTT_wrapper
792 },
793 {
794 .opcode = MLX4_CMD_SYNC_TPT,
795 .has_inbox = true,
796 .has_outbox = false,
797 .out_is_imm = false,
798 .encode_slave_id = false,
799 .verify = NULL,
800 .wrapper = NULL
801 },
802 {
803 .opcode = MLX4_CMD_HW2SW_EQ,
804 .has_inbox = false,
805 .has_outbox = true,
806 .out_is_imm = false,
807 .encode_slave_id = true,
808 .verify = NULL,
809 .wrapper = mlx4_HW2SW_EQ_wrapper
810 },
811 {
812 .opcode = MLX4_CMD_QUERY_EQ,
813 .has_inbox = false,
814 .has_outbox = true,
815 .out_is_imm = false,
816 .encode_slave_id = true,
817 .verify = NULL,
818 .wrapper = mlx4_QUERY_EQ_wrapper
819 },
820 {
821 .opcode = MLX4_CMD_SW2HW_CQ,
822 .has_inbox = true,
823 .has_outbox = false,
824 .out_is_imm = false,
825 .encode_slave_id = true,
826 .verify = NULL,
827 .wrapper = mlx4_SW2HW_CQ_wrapper
828 },
829 {
830 .opcode = MLX4_CMD_HW2SW_CQ,
831 .has_inbox = false,
832 .has_outbox = false,
833 .out_is_imm = false,
834 .encode_slave_id = false,
835 .verify = NULL,
836 .wrapper = mlx4_HW2SW_CQ_wrapper
837 },
838 {
839 .opcode = MLX4_CMD_QUERY_CQ,
840 .has_inbox = false,
841 .has_outbox = true,
842 .out_is_imm = false,
843 .encode_slave_id = false,
844 .verify = NULL,
845 .wrapper = mlx4_QUERY_CQ_wrapper
846 },
847 {
848 .opcode = MLX4_CMD_MODIFY_CQ,
849 .has_inbox = true,
850 .has_outbox = false,
851 .out_is_imm = true,
852 .encode_slave_id = false,
853 .verify = NULL,
854 .wrapper = mlx4_MODIFY_CQ_wrapper
855 },
856 {
857 .opcode = MLX4_CMD_SW2HW_SRQ,
858 .has_inbox = true,
859 .has_outbox = false,
860 .out_is_imm = false,
861 .encode_slave_id = true,
862 .verify = NULL,
863 .wrapper = mlx4_SW2HW_SRQ_wrapper
864 },
865 {
866 .opcode = MLX4_CMD_HW2SW_SRQ,
867 .has_inbox = false,
868 .has_outbox = false,
869 .out_is_imm = false,
870 .encode_slave_id = false,
871 .verify = NULL,
872 .wrapper = mlx4_HW2SW_SRQ_wrapper
873 },
874 {
875 .opcode = MLX4_CMD_QUERY_SRQ,
876 .has_inbox = false,
877 .has_outbox = true,
878 .out_is_imm = false,
879 .encode_slave_id = false,
880 .verify = NULL,
881 .wrapper = mlx4_QUERY_SRQ_wrapper
882 },
883 {
884 .opcode = MLX4_CMD_ARM_SRQ,
885 .has_inbox = false,
886 .has_outbox = false,
887 .out_is_imm = false,
888 .encode_slave_id = false,
889 .verify = NULL,
890 .wrapper = mlx4_ARM_SRQ_wrapper
891 },
892 {
893 .opcode = MLX4_CMD_RST2INIT_QP,
894 .has_inbox = true,
895 .has_outbox = false,
896 .out_is_imm = false,
897 .encode_slave_id = true,
898 .verify = NULL,
899 .wrapper = mlx4_RST2INIT_QP_wrapper
900 },
901 {
902 .opcode = MLX4_CMD_INIT2INIT_QP,
903 .has_inbox = true,
904 .has_outbox = false,
905 .out_is_imm = false,
906 .encode_slave_id = false,
907 .verify = NULL,
908 .wrapper = mlx4_GEN_QP_wrapper
909 },
910 {
911 .opcode = MLX4_CMD_INIT2RTR_QP,
912 .has_inbox = true,
913 .has_outbox = false,
914 .out_is_imm = false,
915 .encode_slave_id = false,
916 .verify = NULL,
917 .wrapper = mlx4_INIT2RTR_QP_wrapper
918 },
919 {
920 .opcode = MLX4_CMD_RTR2RTS_QP,
921 .has_inbox = true,
922 .has_outbox = false,
923 .out_is_imm = false,
924 .encode_slave_id = false,
925 .verify = NULL,
926 .wrapper = mlx4_GEN_QP_wrapper
927 },
928 {
929 .opcode = MLX4_CMD_RTS2RTS_QP,
930 .has_inbox = true,
931 .has_outbox = false,
932 .out_is_imm = false,
933 .encode_slave_id = false,
934 .verify = NULL,
935 .wrapper = mlx4_GEN_QP_wrapper
936 },
937 {
938 .opcode = MLX4_CMD_SQERR2RTS_QP,
939 .has_inbox = true,
940 .has_outbox = false,
941 .out_is_imm = false,
942 .encode_slave_id = false,
943 .verify = NULL,
944 .wrapper = mlx4_GEN_QP_wrapper
945 },
946 {
947 .opcode = MLX4_CMD_2ERR_QP,
948 .has_inbox = false,
949 .has_outbox = false,
950 .out_is_imm = false,
951 .encode_slave_id = false,
952 .verify = NULL,
953 .wrapper = mlx4_GEN_QP_wrapper
954 },
955 {
956 .opcode = MLX4_CMD_RTS2SQD_QP,
957 .has_inbox = false,
958 .has_outbox = false,
959 .out_is_imm = false,
960 .encode_slave_id = false,
961 .verify = NULL,
962 .wrapper = mlx4_GEN_QP_wrapper
963 },
964 {
965 .opcode = MLX4_CMD_SQD2SQD_QP,
966 .has_inbox = true,
967 .has_outbox = false,
968 .out_is_imm = false,
969 .encode_slave_id = false,
970 .verify = NULL,
971 .wrapper = mlx4_GEN_QP_wrapper
972 },
973 {
974 .opcode = MLX4_CMD_SQD2RTS_QP,
975 .has_inbox = true,
976 .has_outbox = false,
977 .out_is_imm = false,
978 .encode_slave_id = false,
979 .verify = NULL,
980 .wrapper = mlx4_GEN_QP_wrapper
981 },
982 {
983 .opcode = MLX4_CMD_2RST_QP,
984 .has_inbox = false,
985 .has_outbox = false,
986 .out_is_imm = false,
987 .encode_slave_id = false,
988 .verify = NULL,
989 .wrapper = mlx4_2RST_QP_wrapper
990 },
991 {
992 .opcode = MLX4_CMD_QUERY_QP,
993 .has_inbox = false,
994 .has_outbox = true,
995 .out_is_imm = false,
996 .encode_slave_id = false,
997 .verify = NULL,
998 .wrapper = mlx4_GEN_QP_wrapper
999 },
1000 {
1001 .opcode = MLX4_CMD_SUSPEND_QP,
1002 .has_inbox = false,
1003 .has_outbox = false,
1004 .out_is_imm = false,
1005 .encode_slave_id = false,
1006 .verify = NULL,
1007 .wrapper = mlx4_GEN_QP_wrapper
1008 },
1009 {
1010 .opcode = MLX4_CMD_UNSUSPEND_QP,
1011 .has_inbox = false,
1012 .has_outbox = false,
1013 .out_is_imm = false,
1014 .encode_slave_id = false,
1015 .verify = NULL,
1016 .wrapper = mlx4_GEN_QP_wrapper
1017 },
1018 {
1019 .opcode = MLX4_CMD_QUERY_IF_STAT,
1020 .has_inbox = false,
1021 .has_outbox = true,
1022 .out_is_imm = false,
1023 .encode_slave_id = false,
1024 .verify = NULL,
1025 .wrapper = mlx4_QUERY_IF_STAT_wrapper
1026 },
1027 /* Native multicast commands are not available for guests */
1028 {
1029 .opcode = MLX4_CMD_QP_ATTACH,
1030 .has_inbox = true,
1031 .has_outbox = false,
1032 .out_is_imm = false,
1033 .encode_slave_id = false,
1034 .verify = NULL,
1035 .wrapper = mlx4_QP_ATTACH_wrapper
1036 },
1037 {
Eugenia Emantayev0ec2c0f2011-12-13 04:16:02 +00001038 .opcode = MLX4_CMD_PROMISC,
1039 .has_inbox = false,
1040 .has_outbox = false,
1041 .out_is_imm = false,
1042 .encode_slave_id = false,
1043 .verify = NULL,
1044 .wrapper = mlx4_PROMISC_wrapper
1045 },
Eugenia Emantayevffe455a2011-12-13 04:16:21 +00001046 /* Ethernet specific commands */
1047 {
1048 .opcode = MLX4_CMD_SET_VLAN_FLTR,
1049 .has_inbox = true,
1050 .has_outbox = false,
1051 .out_is_imm = false,
1052 .encode_slave_id = false,
1053 .verify = NULL,
1054 .wrapper = mlx4_SET_VLAN_FLTR_wrapper
1055 },
1056 {
1057 .opcode = MLX4_CMD_SET_MCAST_FLTR,
1058 .has_inbox = false,
1059 .has_outbox = false,
1060 .out_is_imm = false,
1061 .encode_slave_id = false,
1062 .verify = NULL,
1063 .wrapper = mlx4_SET_MCAST_FLTR_wrapper
1064 },
1065 {
1066 .opcode = MLX4_CMD_DUMP_ETH_STATS,
1067 .has_inbox = false,
1068 .has_outbox = true,
1069 .out_is_imm = false,
1070 .encode_slave_id = false,
1071 .verify = NULL,
1072 .wrapper = mlx4_DUMP_ETH_STATS_wrapper
1073 },
Eugenia Emantayev0ec2c0f2011-12-13 04:16:02 +00001074 {
Eli Cohenc82e9aa2011-12-13 04:15:24 +00001075 .opcode = MLX4_CMD_INFORM_FLR_DONE,
1076 .has_inbox = false,
1077 .has_outbox = false,
1078 .out_is_imm = false,
1079 .encode_slave_id = false,
1080 .verify = NULL,
1081 .wrapper = NULL
1082 },
Hadar Hen Zion8fcfb4d2012-07-05 04:03:45 +00001083 /* flow steering commands */
1084 {
1085 .opcode = MLX4_QP_FLOW_STEERING_ATTACH,
1086 .has_inbox = true,
1087 .has_outbox = false,
1088 .out_is_imm = true,
1089 .encode_slave_id = false,
1090 .verify = NULL,
1091 .wrapper = mlx4_QP_FLOW_STEERING_ATTACH_wrapper
1092 },
1093 {
1094 .opcode = MLX4_QP_FLOW_STEERING_DETACH,
1095 .has_inbox = false,
1096 .has_outbox = false,
1097 .out_is_imm = false,
1098 .encode_slave_id = false,
1099 .verify = NULL,
1100 .wrapper = mlx4_QP_FLOW_STEERING_DETACH_wrapper
1101 },
Yevgeny Petriline8f081a2011-12-13 04:12:25 +00001102};
1103
1104static int mlx4_master_process_vhcr(struct mlx4_dev *dev, int slave,
1105 struct mlx4_vhcr_cmd *in_vhcr)
1106{
1107 struct mlx4_priv *priv = mlx4_priv(dev);
1108 struct mlx4_cmd_info *cmd = NULL;
1109 struct mlx4_vhcr_cmd *vhcr_cmd = in_vhcr ? in_vhcr : priv->mfunc.vhcr;
1110 struct mlx4_vhcr *vhcr;
1111 struct mlx4_cmd_mailbox *inbox = NULL;
1112 struct mlx4_cmd_mailbox *outbox = NULL;
1113 u64 in_param;
1114 u64 out_param;
1115 int ret = 0;
1116 int i;
Yevgeny Petrilin72be84f2011-12-19 04:03:53 +00001117 int err = 0;
Yevgeny Petriline8f081a2011-12-13 04:12:25 +00001118
1119 /* Create sw representation of Virtual HCR */
1120 vhcr = kzalloc(sizeof(struct mlx4_vhcr), GFP_KERNEL);
1121 if (!vhcr)
1122 return -ENOMEM;
1123
1124 /* DMA in the vHCR */
1125 if (!in_vhcr) {
1126 ret = mlx4_ACCESS_MEM(dev, priv->mfunc.vhcr_dma, slave,
1127 priv->mfunc.master.slave_state[slave].vhcr_dma,
1128 ALIGN(sizeof(struct mlx4_vhcr_cmd),
1129 MLX4_ACCESS_MEM_ALIGN), 1);
1130 if (ret) {
1131 mlx4_err(dev, "%s:Failed reading vhcr"
1132 "ret: 0x%x\n", __func__, ret);
1133 kfree(vhcr);
1134 return ret;
1135 }
1136 }
1137
1138 /* Fill SW VHCR fields */
1139 vhcr->in_param = be64_to_cpu(vhcr_cmd->in_param);
1140 vhcr->out_param = be64_to_cpu(vhcr_cmd->out_param);
1141 vhcr->in_modifier = be32_to_cpu(vhcr_cmd->in_modifier);
1142 vhcr->token = be16_to_cpu(vhcr_cmd->token);
1143 vhcr->op = be16_to_cpu(vhcr_cmd->opcode) & 0xfff;
1144 vhcr->op_modifier = (u8) (be16_to_cpu(vhcr_cmd->opcode) >> 12);
1145 vhcr->e_bit = vhcr_cmd->flags & (1 << 6);
1146
1147 /* Lookup command */
1148 for (i = 0; i < ARRAY_SIZE(cmd_info); ++i) {
1149 if (vhcr->op == cmd_info[i].opcode) {
1150 cmd = &cmd_info[i];
1151 break;
1152 }
1153 }
1154 if (!cmd) {
1155 mlx4_err(dev, "Unknown command:0x%x accepted from slave:%d\n",
1156 vhcr->op, slave);
Yevgeny Petrilin72be84f2011-12-19 04:03:53 +00001157 vhcr_cmd->status = CMD_STAT_BAD_PARAM;
Yevgeny Petriline8f081a2011-12-13 04:12:25 +00001158 goto out_status;
1159 }
1160
1161 /* Read inbox */
1162 if (cmd->has_inbox) {
1163 vhcr->in_param &= INBOX_MASK;
1164 inbox = mlx4_alloc_cmd_mailbox(dev);
1165 if (IS_ERR(inbox)) {
Yevgeny Petrilin72be84f2011-12-19 04:03:53 +00001166 vhcr_cmd->status = CMD_STAT_BAD_SIZE;
Yevgeny Petriline8f081a2011-12-13 04:12:25 +00001167 inbox = NULL;
Yevgeny Petrilin72be84f2011-12-19 04:03:53 +00001168 goto out_status;
Yevgeny Petriline8f081a2011-12-13 04:12:25 +00001169 }
1170
Yevgeny Petrilin72be84f2011-12-19 04:03:53 +00001171 if (mlx4_ACCESS_MEM(dev, inbox->dma, slave,
1172 vhcr->in_param,
1173 MLX4_MAILBOX_SIZE, 1)) {
Yevgeny Petriline8f081a2011-12-13 04:12:25 +00001174 mlx4_err(dev, "%s: Failed reading inbox (cmd:0x%x)\n",
1175 __func__, cmd->opcode);
Yevgeny Petrilin72be84f2011-12-19 04:03:53 +00001176 vhcr_cmd->status = CMD_STAT_INTERNAL_ERR;
1177 goto out_status;
Yevgeny Petriline8f081a2011-12-13 04:12:25 +00001178 }
1179 }
1180
1181 /* Apply permission and bound checks if applicable */
1182 if (cmd->verify && cmd->verify(dev, slave, vhcr, inbox)) {
1183 mlx4_warn(dev, "Command:0x%x from slave: %d failed protection "
1184 "checks for resource_id:%d\n", vhcr->op, slave,
1185 vhcr->in_modifier);
Yevgeny Petrilin72be84f2011-12-19 04:03:53 +00001186 vhcr_cmd->status = CMD_STAT_BAD_OP;
Yevgeny Petriline8f081a2011-12-13 04:12:25 +00001187 goto out_status;
1188 }
1189
1190 /* Allocate outbox */
1191 if (cmd->has_outbox) {
1192 outbox = mlx4_alloc_cmd_mailbox(dev);
1193 if (IS_ERR(outbox)) {
Yevgeny Petrilin72be84f2011-12-19 04:03:53 +00001194 vhcr_cmd->status = CMD_STAT_BAD_SIZE;
Yevgeny Petriline8f081a2011-12-13 04:12:25 +00001195 outbox = NULL;
Yevgeny Petrilin72be84f2011-12-19 04:03:53 +00001196 goto out_status;
Yevgeny Petriline8f081a2011-12-13 04:12:25 +00001197 }
1198 }
1199
1200 /* Execute the command! */
1201 if (cmd->wrapper) {
Yevgeny Petrilin72be84f2011-12-19 04:03:53 +00001202 err = cmd->wrapper(dev, slave, vhcr, inbox, outbox,
1203 cmd);
Yevgeny Petriline8f081a2011-12-13 04:12:25 +00001204 if (cmd->out_is_imm)
1205 vhcr_cmd->out_param = cpu_to_be64(vhcr->out_param);
1206 } else {
1207 in_param = cmd->has_inbox ? (u64) inbox->dma :
1208 vhcr->in_param;
1209 out_param = cmd->has_outbox ? (u64) outbox->dma :
1210 vhcr->out_param;
Yevgeny Petrilin72be84f2011-12-19 04:03:53 +00001211 err = __mlx4_cmd(dev, in_param, &out_param,
1212 cmd->out_is_imm, vhcr->in_modifier,
1213 vhcr->op_modifier, vhcr->op,
1214 MLX4_CMD_TIME_CLASS_A,
1215 MLX4_CMD_NATIVE);
Yevgeny Petriline8f081a2011-12-13 04:12:25 +00001216
1217 if (cmd->out_is_imm) {
1218 vhcr->out_param = out_param;
1219 vhcr_cmd->out_param = cpu_to_be64(vhcr->out_param);
1220 }
1221 }
1222
Yevgeny Petrilin72be84f2011-12-19 04:03:53 +00001223 if (err) {
1224 mlx4_warn(dev, "vhcr command:0x%x slave:%d failed with"
1225 " error:%d, status %d\n",
1226 vhcr->op, slave, vhcr->errno, err);
1227 vhcr_cmd->status = mlx4_errno_to_status(err);
1228 goto out_status;
1229 }
1230
1231
Yevgeny Petriline8f081a2011-12-13 04:12:25 +00001232 /* Write outbox if command completed successfully */
Yevgeny Petrilin72be84f2011-12-19 04:03:53 +00001233 if (cmd->has_outbox && !vhcr_cmd->status) {
Yevgeny Petriline8f081a2011-12-13 04:12:25 +00001234 ret = mlx4_ACCESS_MEM(dev, outbox->dma, slave,
1235 vhcr->out_param,
1236 MLX4_MAILBOX_SIZE, MLX4_CMD_WRAPPED);
1237 if (ret) {
Yevgeny Petrilin72be84f2011-12-19 04:03:53 +00001238 /* If we failed to write back the outbox after the
1239 *command was successfully executed, we must fail this
1240 * slave, as it is now in undefined state */
Yevgeny Petriline8f081a2011-12-13 04:12:25 +00001241 mlx4_err(dev, "%s:Failed writing outbox\n", __func__);
1242 goto out;
1243 }
1244 }
1245
1246out_status:
1247 /* DMA back vhcr result */
1248 if (!in_vhcr) {
1249 ret = mlx4_ACCESS_MEM(dev, priv->mfunc.vhcr_dma, slave,
1250 priv->mfunc.master.slave_state[slave].vhcr_dma,
1251 ALIGN(sizeof(struct mlx4_vhcr),
1252 MLX4_ACCESS_MEM_ALIGN),
1253 MLX4_CMD_WRAPPED);
1254 if (ret)
1255 mlx4_err(dev, "%s:Failed writing vhcr result\n",
1256 __func__);
1257 else if (vhcr->e_bit &&
1258 mlx4_GEN_EQE(dev, slave, &priv->mfunc.master.cmd_eqe))
1259 mlx4_warn(dev, "Failed to generate command completion "
1260 "eqe for slave %d\n", slave);
1261 }
1262
1263out:
1264 kfree(vhcr);
1265 mlx4_free_cmd_mailbox(dev, inbox);
1266 mlx4_free_cmd_mailbox(dev, outbox);
1267 return ret;
1268}
1269
1270static void mlx4_master_do_cmd(struct mlx4_dev *dev, int slave, u8 cmd,
1271 u16 param, u8 toggle)
1272{
1273 struct mlx4_priv *priv = mlx4_priv(dev);
1274 struct mlx4_slave_state *slave_state = priv->mfunc.master.slave_state;
1275 u32 reply;
Yevgeny Petriline8f081a2011-12-13 04:12:25 +00001276 u8 is_going_down = 0;
Marcel Apfelbaum803143f2012-01-19 09:45:46 +00001277 int i;
Yevgeny Petriline8f081a2011-12-13 04:12:25 +00001278
1279 slave_state[slave].comm_toggle ^= 1;
1280 reply = (u32) slave_state[slave].comm_toggle << 31;
1281 if (toggle != slave_state[slave].comm_toggle) {
1282 mlx4_warn(dev, "Incorrect toggle %d from slave %d. *** MASTER"
1283 "STATE COMPROMISIED ***\n", toggle, slave);
1284 goto reset_slave;
1285 }
1286 if (cmd == MLX4_COMM_CMD_RESET) {
1287 mlx4_warn(dev, "Received reset from slave:%d\n", slave);
1288 slave_state[slave].active = false;
Marcel Apfelbaum803143f2012-01-19 09:45:46 +00001289 for (i = 0; i < MLX4_EVENT_TYPES_NUM; ++i) {
1290 slave_state[slave].event_eq[i].eqn = -1;
1291 slave_state[slave].event_eq[i].token = 0;
1292 }
Yevgeny Petriline8f081a2011-12-13 04:12:25 +00001293 /*check if we are in the middle of FLR process,
1294 if so return "retry" status to the slave*/
Or Gerlitz162344e2012-05-15 10:34:57 +00001295 if (MLX4_COMM_CMD_FLR == slave_state[slave].last_cmd)
Yevgeny Petriline8f081a2011-12-13 04:12:25 +00001296 goto inform_slave_state;
Yevgeny Petriline8f081a2011-12-13 04:12:25 +00001297
1298 /* write the version in the event field */
1299 reply |= mlx4_comm_get_version();
1300
1301 goto reset_slave;
1302 }
1303 /*command from slave in the middle of FLR*/
1304 if (cmd != MLX4_COMM_CMD_RESET &&
1305 MLX4_COMM_CMD_FLR == slave_state[slave].last_cmd) {
1306 mlx4_warn(dev, "slave:%d is Trying to run cmd(0x%x) "
1307 "in the middle of FLR\n", slave, cmd);
1308 return;
1309 }
1310
1311 switch (cmd) {
1312 case MLX4_COMM_CMD_VHCR0:
1313 if (slave_state[slave].last_cmd != MLX4_COMM_CMD_RESET)
1314 goto reset_slave;
1315 slave_state[slave].vhcr_dma = ((u64) param) << 48;
1316 priv->mfunc.master.slave_state[slave].cookie = 0;
1317 mutex_init(&priv->mfunc.master.gen_eqe_mutex[slave]);
1318 break;
1319 case MLX4_COMM_CMD_VHCR1:
1320 if (slave_state[slave].last_cmd != MLX4_COMM_CMD_VHCR0)
1321 goto reset_slave;
1322 slave_state[slave].vhcr_dma |= ((u64) param) << 32;
1323 break;
1324 case MLX4_COMM_CMD_VHCR2:
1325 if (slave_state[slave].last_cmd != MLX4_COMM_CMD_VHCR1)
1326 goto reset_slave;
1327 slave_state[slave].vhcr_dma |= ((u64) param) << 16;
1328 break;
1329 case MLX4_COMM_CMD_VHCR_EN:
1330 if (slave_state[slave].last_cmd != MLX4_COMM_CMD_VHCR2)
1331 goto reset_slave;
1332 slave_state[slave].vhcr_dma |= param;
1333 slave_state[slave].active = true;
1334 break;
1335 case MLX4_COMM_CMD_VHCR_POST:
1336 if ((slave_state[slave].last_cmd != MLX4_COMM_CMD_VHCR_EN) &&
1337 (slave_state[slave].last_cmd != MLX4_COMM_CMD_VHCR_POST))
1338 goto reset_slave;
1339 down(&priv->cmd.slave_sem);
1340 if (mlx4_master_process_vhcr(dev, slave, NULL)) {
1341 mlx4_err(dev, "Failed processing vhcr for slave:%d,"
Masanari Iida8d9eb062012-02-03 03:27:38 +00001342 " resetting slave.\n", slave);
Yevgeny Petriline8f081a2011-12-13 04:12:25 +00001343 up(&priv->cmd.slave_sem);
1344 goto reset_slave;
1345 }
1346 up(&priv->cmd.slave_sem);
1347 break;
1348 default:
1349 mlx4_warn(dev, "Bad comm cmd:%d from slave:%d\n", cmd, slave);
1350 goto reset_slave;
1351 }
1352 spin_lock(&priv->mfunc.master.slave_state_lock);
1353 if (!slave_state[slave].is_slave_going_down)
1354 slave_state[slave].last_cmd = cmd;
1355 else
1356 is_going_down = 1;
1357 spin_unlock(&priv->mfunc.master.slave_state_lock);
1358 if (is_going_down) {
1359 mlx4_warn(dev, "Slave is going down aborting command(%d)"
1360 " executing from slave:%d\n",
1361 cmd, slave);
1362 return;
1363 }
1364 __raw_writel((__force u32) cpu_to_be32(reply),
1365 &priv->mfunc.comm[slave].slave_read);
1366 mmiowb();
1367
1368 return;
1369
1370reset_slave:
Eli Cohenc82e9aa2011-12-13 04:15:24 +00001371 /* cleanup any slave resources */
1372 mlx4_delete_all_resources_for_slave(dev, slave);
Yevgeny Petriline8f081a2011-12-13 04:12:25 +00001373 spin_lock(&priv->mfunc.master.slave_state_lock);
1374 if (!slave_state[slave].is_slave_going_down)
1375 slave_state[slave].last_cmd = MLX4_COMM_CMD_RESET;
1376 spin_unlock(&priv->mfunc.master.slave_state_lock);
1377 /*with slave in the middle of flr, no need to clean resources again.*/
1378inform_slave_state:
1379 memset(&slave_state[slave].event_eq, 0,
1380 sizeof(struct mlx4_slave_event_eq_info));
1381 __raw_writel((__force u32) cpu_to_be32(reply),
1382 &priv->mfunc.comm[slave].slave_read);
1383 wmb();
1384}
1385
1386/* master command processing */
1387void mlx4_master_comm_channel(struct work_struct *work)
1388{
1389 struct mlx4_mfunc_master_ctx *master =
1390 container_of(work,
1391 struct mlx4_mfunc_master_ctx,
1392 comm_work);
1393 struct mlx4_mfunc *mfunc =
1394 container_of(master, struct mlx4_mfunc, master);
1395 struct mlx4_priv *priv =
1396 container_of(mfunc, struct mlx4_priv, mfunc);
1397 struct mlx4_dev *dev = &priv->dev;
1398 __be32 *bit_vec;
1399 u32 comm_cmd;
1400 u32 vec;
1401 int i, j, slave;
1402 int toggle;
1403 int served = 0;
1404 int reported = 0;
1405 u32 slt;
1406
1407 bit_vec = master->comm_arm_bit_vector;
1408 for (i = 0; i < COMM_CHANNEL_BIT_ARRAY_SIZE; i++) {
1409 vec = be32_to_cpu(bit_vec[i]);
1410 for (j = 0; j < 32; j++) {
1411 if (!(vec & (1 << j)))
1412 continue;
1413 ++reported;
1414 slave = (i * 32) + j;
1415 comm_cmd = swab32(readl(
1416 &mfunc->comm[slave].slave_write));
1417 slt = swab32(readl(&mfunc->comm[slave].slave_read))
1418 >> 31;
1419 toggle = comm_cmd >> 31;
1420 if (toggle != slt) {
1421 if (master->slave_state[slave].comm_toggle
1422 != slt) {
1423 printk(KERN_INFO "slave %d out of sync."
1424 " read toggle %d, state toggle %d. "
1425 "Resynching.\n", slave, slt,
1426 master->slave_state[slave].comm_toggle);
1427 master->slave_state[slave].comm_toggle =
1428 slt;
1429 }
1430 mlx4_master_do_cmd(dev, slave,
1431 comm_cmd >> 16 & 0xff,
1432 comm_cmd & 0xffff, toggle);
1433 ++served;
1434 }
1435 }
1436 }
1437
1438 if (reported && reported != served)
1439 mlx4_warn(dev, "Got command event with bitmask from %d slaves"
1440 " but %d were served\n",
1441 reported, served);
1442
1443 if (mlx4_ARM_COMM_CHANNEL(dev))
1444 mlx4_warn(dev, "Failed to arm comm channel events\n");
1445}
1446
Jack Morgensteinab9c17a2011-12-13 04:18:30 +00001447static int sync_toggles(struct mlx4_dev *dev)
1448{
1449 struct mlx4_priv *priv = mlx4_priv(dev);
1450 int wr_toggle;
1451 int rd_toggle;
1452 unsigned long end;
1453
1454 wr_toggle = swab32(readl(&priv->mfunc.comm->slave_write)) >> 31;
1455 end = jiffies + msecs_to_jiffies(5000);
1456
1457 while (time_before(jiffies, end)) {
1458 rd_toggle = swab32(readl(&priv->mfunc.comm->slave_read)) >> 31;
1459 if (rd_toggle == wr_toggle) {
1460 priv->cmd.comm_toggle = rd_toggle;
1461 return 0;
1462 }
1463
1464 cond_resched();
1465 }
1466
1467 /*
1468 * we could reach here if for example the previous VM using this
1469 * function misbehaved and left the channel with unsynced state. We
1470 * should fix this here and give this VM a chance to use a properly
1471 * synced channel
1472 */
1473 mlx4_warn(dev, "recovering from previously mis-behaved VM\n");
1474 __raw_writel((__force u32) 0, &priv->mfunc.comm->slave_read);
1475 __raw_writel((__force u32) 0, &priv->mfunc.comm->slave_write);
1476 priv->cmd.comm_toggle = 0;
1477
1478 return 0;
1479}
1480
1481int mlx4_multi_func_init(struct mlx4_dev *dev)
1482{
1483 struct mlx4_priv *priv = mlx4_priv(dev);
1484 struct mlx4_slave_state *s_state;
Marcel Apfelbaum803143f2012-01-19 09:45:46 +00001485 int i, j, err, port;
Jack Morgensteinab9c17a2011-12-13 04:18:30 +00001486
1487 priv->mfunc.vhcr = dma_alloc_coherent(&(dev->pdev->dev), PAGE_SIZE,
1488 &priv->mfunc.vhcr_dma,
1489 GFP_KERNEL);
1490 if (!priv->mfunc.vhcr) {
1491 mlx4_err(dev, "Couldn't allocate vhcr.\n");
1492 return -ENOMEM;
1493 }
1494
1495 if (mlx4_is_master(dev))
1496 priv->mfunc.comm =
1497 ioremap(pci_resource_start(dev->pdev, priv->fw.comm_bar) +
1498 priv->fw.comm_base, MLX4_COMM_PAGESIZE);
1499 else
1500 priv->mfunc.comm =
1501 ioremap(pci_resource_start(dev->pdev, 2) +
1502 MLX4_SLAVE_COMM_BASE, MLX4_COMM_PAGESIZE);
1503 if (!priv->mfunc.comm) {
1504 mlx4_err(dev, "Couldn't map communication vector.\n");
1505 goto err_vhcr;
1506 }
1507
1508 if (mlx4_is_master(dev)) {
1509 priv->mfunc.master.slave_state =
1510 kzalloc(dev->num_slaves *
1511 sizeof(struct mlx4_slave_state), GFP_KERNEL);
1512 if (!priv->mfunc.master.slave_state)
1513 goto err_comm;
1514
1515 for (i = 0; i < dev->num_slaves; ++i) {
1516 s_state = &priv->mfunc.master.slave_state[i];
1517 s_state->last_cmd = MLX4_COMM_CMD_RESET;
Marcel Apfelbaum803143f2012-01-19 09:45:46 +00001518 for (j = 0; j < MLX4_EVENT_TYPES_NUM; ++j)
1519 s_state->event_eq[j].eqn = -1;
Jack Morgensteinab9c17a2011-12-13 04:18:30 +00001520 __raw_writel((__force u32) 0,
1521 &priv->mfunc.comm[i].slave_write);
1522 __raw_writel((__force u32) 0,
1523 &priv->mfunc.comm[i].slave_read);
1524 mmiowb();
1525 for (port = 1; port <= MLX4_MAX_PORTS; port++) {
1526 s_state->vlan_filter[port] =
1527 kzalloc(sizeof(struct mlx4_vlan_fltr),
1528 GFP_KERNEL);
1529 if (!s_state->vlan_filter[port]) {
1530 if (--port)
1531 kfree(s_state->vlan_filter[port]);
1532 goto err_slaves;
1533 }
1534 INIT_LIST_HEAD(&s_state->mcast_filters[port]);
1535 }
1536 spin_lock_init(&s_state->lock);
1537 }
1538
1539 memset(&priv->mfunc.master.cmd_eqe, 0, sizeof(struct mlx4_eqe));
1540 priv->mfunc.master.cmd_eqe.type = MLX4_EVENT_TYPE_CMD;
1541 INIT_WORK(&priv->mfunc.master.comm_work,
1542 mlx4_master_comm_channel);
1543 INIT_WORK(&priv->mfunc.master.slave_event_work,
1544 mlx4_gen_slave_eqe);
1545 INIT_WORK(&priv->mfunc.master.slave_flr_event_work,
1546 mlx4_master_handle_slave_flr);
1547 spin_lock_init(&priv->mfunc.master.slave_state_lock);
1548 priv->mfunc.master.comm_wq =
1549 create_singlethread_workqueue("mlx4_comm");
1550 if (!priv->mfunc.master.comm_wq)
1551 goto err_slaves;
1552
1553 if (mlx4_init_resource_tracker(dev))
1554 goto err_thread;
1555
1556 sema_init(&priv->cmd.slave_sem, 1);
1557 err = mlx4_ARM_COMM_CHANNEL(dev);
1558 if (err) {
1559 mlx4_err(dev, " Failed to arm comm channel eq: %x\n",
1560 err);
1561 goto err_resource;
1562 }
1563
1564 } else {
1565 err = sync_toggles(dev);
1566 if (err) {
1567 mlx4_err(dev, "Couldn't sync toggles\n");
1568 goto err_comm;
1569 }
1570
1571 sema_init(&priv->cmd.slave_sem, 1);
1572 }
1573 return 0;
1574
1575err_resource:
Jack Morgensteinb8924952012-05-15 10:35:02 +00001576 mlx4_free_resource_tracker(dev, RES_TR_FREE_ALL);
Jack Morgensteinab9c17a2011-12-13 04:18:30 +00001577err_thread:
1578 flush_workqueue(priv->mfunc.master.comm_wq);
1579 destroy_workqueue(priv->mfunc.master.comm_wq);
1580err_slaves:
1581 while (--i) {
1582 for (port = 1; port <= MLX4_MAX_PORTS; port++)
1583 kfree(priv->mfunc.master.slave_state[i].vlan_filter[port]);
1584 }
1585 kfree(priv->mfunc.master.slave_state);
1586err_comm:
1587 iounmap(priv->mfunc.comm);
1588err_vhcr:
1589 dma_free_coherent(&(dev->pdev->dev), PAGE_SIZE,
1590 priv->mfunc.vhcr,
1591 priv->mfunc.vhcr_dma);
1592 priv->mfunc.vhcr = NULL;
1593 return -ENOMEM;
1594}
1595
Roland Dreier225c7b12007-05-08 18:00:38 -07001596int mlx4_cmd_init(struct mlx4_dev *dev)
1597{
1598 struct mlx4_priv *priv = mlx4_priv(dev);
1599
1600 mutex_init(&priv->cmd.hcr_mutex);
1601 sema_init(&priv->cmd.poll_sem, 1);
1602 priv->cmd.use_events = 0;
1603 priv->cmd.toggle = 1;
1604
Yevgeny Petriline8f081a2011-12-13 04:12:25 +00001605 priv->cmd.hcr = NULL;
1606 priv->mfunc.vhcr = NULL;
1607
1608 if (!mlx4_is_slave(dev)) {
1609 priv->cmd.hcr = ioremap(pci_resource_start(dev->pdev, 0) +
1610 MLX4_HCR_BASE, MLX4_HCR_SIZE);
1611 if (!priv->cmd.hcr) {
1612 mlx4_err(dev, "Couldn't map command register.\n");
1613 return -ENOMEM;
1614 }
Roland Dreier225c7b12007-05-08 18:00:38 -07001615 }
1616
1617 priv->cmd.pool = pci_pool_create("mlx4_cmd", dev->pdev,
1618 MLX4_MAILBOX_SIZE,
1619 MLX4_MAILBOX_SIZE, 0);
Yevgeny Petriline8f081a2011-12-13 04:12:25 +00001620 if (!priv->cmd.pool)
1621 goto err_hcr;
Roland Dreier225c7b12007-05-08 18:00:38 -07001622
1623 return 0;
Yevgeny Petriline8f081a2011-12-13 04:12:25 +00001624
1625err_hcr:
1626 if (!mlx4_is_slave(dev))
1627 iounmap(priv->cmd.hcr);
1628 return -ENOMEM;
Roland Dreier225c7b12007-05-08 18:00:38 -07001629}
1630
Jack Morgensteinab9c17a2011-12-13 04:18:30 +00001631void mlx4_multi_func_cleanup(struct mlx4_dev *dev)
1632{
1633 struct mlx4_priv *priv = mlx4_priv(dev);
1634 int i, port;
1635
1636 if (mlx4_is_master(dev)) {
1637 flush_workqueue(priv->mfunc.master.comm_wq);
1638 destroy_workqueue(priv->mfunc.master.comm_wq);
1639 for (i = 0; i < dev->num_slaves; i++) {
1640 for (port = 1; port <= MLX4_MAX_PORTS; port++)
1641 kfree(priv->mfunc.master.slave_state[i].vlan_filter[port]);
1642 }
1643 kfree(priv->mfunc.master.slave_state);
Jack Morgensteinab9c17a2011-12-13 04:18:30 +00001644 }
Eugenia Emantayevf08ad062012-02-06 06:26:17 +00001645
1646 iounmap(priv->mfunc.comm);
1647 dma_free_coherent(&(dev->pdev->dev), PAGE_SIZE,
1648 priv->mfunc.vhcr, priv->mfunc.vhcr_dma);
1649 priv->mfunc.vhcr = NULL;
Jack Morgensteinab9c17a2011-12-13 04:18:30 +00001650}
1651
Roland Dreier225c7b12007-05-08 18:00:38 -07001652void mlx4_cmd_cleanup(struct mlx4_dev *dev)
1653{
1654 struct mlx4_priv *priv = mlx4_priv(dev);
1655
1656 pci_pool_destroy(priv->cmd.pool);
Yevgeny Petriline8f081a2011-12-13 04:12:25 +00001657
1658 if (!mlx4_is_slave(dev))
1659 iounmap(priv->cmd.hcr);
Roland Dreier225c7b12007-05-08 18:00:38 -07001660}
1661
1662/*
1663 * Switch to using events to issue FW commands (can only be called
1664 * after event queue for command events has been initialized).
1665 */
1666int mlx4_cmd_use_events(struct mlx4_dev *dev)
1667{
1668 struct mlx4_priv *priv = mlx4_priv(dev);
1669 int i;
Yevgeny Petriline8f081a2011-12-13 04:12:25 +00001670 int err = 0;
Roland Dreier225c7b12007-05-08 18:00:38 -07001671
1672 priv->cmd.context = kmalloc(priv->cmd.max_cmds *
1673 sizeof (struct mlx4_cmd_context),
1674 GFP_KERNEL);
1675 if (!priv->cmd.context)
1676 return -ENOMEM;
1677
1678 for (i = 0; i < priv->cmd.max_cmds; ++i) {
1679 priv->cmd.context[i].token = i;
1680 priv->cmd.context[i].next = i + 1;
1681 }
1682
1683 priv->cmd.context[priv->cmd.max_cmds - 1].next = -1;
1684 priv->cmd.free_head = 0;
1685
1686 sema_init(&priv->cmd.event_sem, priv->cmd.max_cmds);
1687 spin_lock_init(&priv->cmd.context_lock);
1688
1689 for (priv->cmd.token_mask = 1;
1690 priv->cmd.token_mask < priv->cmd.max_cmds;
1691 priv->cmd.token_mask <<= 1)
1692 ; /* nothing */
1693 --priv->cmd.token_mask;
1694
Yevgeny Petriline8f081a2011-12-13 04:12:25 +00001695 down(&priv->cmd.poll_sem);
Roland Dreier225c7b12007-05-08 18:00:38 -07001696 priv->cmd.use_events = 1;
1697
Yevgeny Petriline8f081a2011-12-13 04:12:25 +00001698 return err;
Roland Dreier225c7b12007-05-08 18:00:38 -07001699}
1700
1701/*
1702 * Switch back to polling (used when shutting down the device)
1703 */
1704void mlx4_cmd_use_polling(struct mlx4_dev *dev)
1705{
1706 struct mlx4_priv *priv = mlx4_priv(dev);
1707 int i;
1708
1709 priv->cmd.use_events = 0;
1710
1711 for (i = 0; i < priv->cmd.max_cmds; ++i)
1712 down(&priv->cmd.event_sem);
1713
1714 kfree(priv->cmd.context);
1715
1716 up(&priv->cmd.poll_sem);
1717}
1718
1719struct mlx4_cmd_mailbox *mlx4_alloc_cmd_mailbox(struct mlx4_dev *dev)
1720{
1721 struct mlx4_cmd_mailbox *mailbox;
1722
1723 mailbox = kmalloc(sizeof *mailbox, GFP_KERNEL);
1724 if (!mailbox)
1725 return ERR_PTR(-ENOMEM);
1726
1727 mailbox->buf = pci_pool_alloc(mlx4_priv(dev)->cmd.pool, GFP_KERNEL,
1728 &mailbox->dma);
1729 if (!mailbox->buf) {
1730 kfree(mailbox);
1731 return ERR_PTR(-ENOMEM);
1732 }
1733
1734 return mailbox;
1735}
1736EXPORT_SYMBOL_GPL(mlx4_alloc_cmd_mailbox);
1737
Yevgeny Petriline8f081a2011-12-13 04:12:25 +00001738void mlx4_free_cmd_mailbox(struct mlx4_dev *dev,
1739 struct mlx4_cmd_mailbox *mailbox)
Roland Dreier225c7b12007-05-08 18:00:38 -07001740{
1741 if (!mailbox)
1742 return;
1743
1744 pci_pool_free(mlx4_priv(dev)->cmd.pool, mailbox->buf, mailbox->dma);
1745 kfree(mailbox);
1746}
1747EXPORT_SYMBOL_GPL(mlx4_free_cmd_mailbox);
Yevgeny Petriline8f081a2011-12-13 04:12:25 +00001748
1749u32 mlx4_comm_get_version(void)
1750{
1751 return ((u32) CMD_CHAN_IF_REV << 8) | (u32) CMD_CHAN_VER;
1752}