net/mlx4: Add structures to keep VF Ethernet ports information
[linux-2.6-block.git] / drivers / net / ethernet / mellanox / mlx4 / cmd.c
CommitLineData
225c7b1f
RD
1/*
2 * Copyright (c) 2004, 2005 Topspin Communications. All rights reserved.
51a379d0 3 * Copyright (c) 2005, 2006, 2007, 2008 Mellanox Technologies. All rights reserved.
225c7b1f
RD
4 * 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>
5a0e3ad6 36#include <linux/slab.h>
ee40fa06 37#include <linux/export.h>
225c7b1f
RD
38#include <linux/pci.h>
39#include <linux/errno.h>
40
41#include <linux/mlx4/cmd.h>
e8f081aa 42#include <linux/semaphore.h>
0a9a0188 43#include <rdma/ib_smi.h>
225c7b1f
RD
44
45#include <asm/io.h>
46
47#include "mlx4.h"
e8f081aa 48#include "fw.h"
225c7b1f
RD
49
50#define CMD_POLL_TOKEN 0xffff
e8f081aa
YP
51#define INBOX_MASK 0xffffffffffffff00ULL
52
53#define CMD_CHAN_VER 1
54#define CMD_CHAN_IF_REV 1
225c7b1f
RD
55
56enum {
57 /* command completed successfully: */
58 CMD_STAT_OK = 0x00,
59 /* Internal error (such as a bus error) occurred while processing command: */
60 CMD_STAT_INTERNAL_ERR = 0x01,
61 /* Operation/command not supported or opcode modifier not supported: */
62 CMD_STAT_BAD_OP = 0x02,
63 /* Parameter not supported or parameter out of range: */
64 CMD_STAT_BAD_PARAM = 0x03,
65 /* System not enabled or bad system state: */
66 CMD_STAT_BAD_SYS_STATE = 0x04,
67 /* Attempt to access reserved or unallocaterd resource: */
68 CMD_STAT_BAD_RESOURCE = 0x05,
69 /* Requested resource is currently executing a command, or is otherwise busy: */
70 CMD_STAT_RESOURCE_BUSY = 0x06,
71 /* Required capability exceeds device limits: */
72 CMD_STAT_EXCEED_LIM = 0x08,
73 /* Resource is not in the appropriate state or ownership: */
74 CMD_STAT_BAD_RES_STATE = 0x09,
75 /* Index out of range: */
76 CMD_STAT_BAD_INDEX = 0x0a,
77 /* FW image corrupted: */
78 CMD_STAT_BAD_NVMEM = 0x0b,
899698da
JM
79 /* Error in ICM mapping (e.g. not enough auxiliary ICM pages to execute command): */
80 CMD_STAT_ICM_ERROR = 0x0c,
225c7b1f
RD
81 /* Attempt to modify a QP/EE which is not in the presumed state: */
82 CMD_STAT_BAD_QP_STATE = 0x10,
83 /* Bad segment parameters (Address/Size): */
84 CMD_STAT_BAD_SEG_PARAM = 0x20,
85 /* Memory Region has Memory Windows bound to: */
86 CMD_STAT_REG_BOUND = 0x21,
87 /* HCA local attached memory not present: */
88 CMD_STAT_LAM_NOT_PRE = 0x22,
89 /* Bad management packet (silently discarded): */
90 CMD_STAT_BAD_PKT = 0x30,
91 /* More outstanding CQEs in CQ than new CQ size: */
cc4ac2e7
YP
92 CMD_STAT_BAD_SIZE = 0x40,
93 /* Multi Function device support required: */
94 CMD_STAT_MULTI_FUNC_REQ = 0x50,
225c7b1f
RD
95};
96
97enum {
98 HCR_IN_PARAM_OFFSET = 0x00,
99 HCR_IN_MODIFIER_OFFSET = 0x08,
100 HCR_OUT_PARAM_OFFSET = 0x0c,
101 HCR_TOKEN_OFFSET = 0x14,
102 HCR_STATUS_OFFSET = 0x18,
103
104 HCR_OPMOD_SHIFT = 12,
105 HCR_T_BIT = 21,
106 HCR_E_BIT = 22,
107 HCR_GO_BIT = 23
108};
109
110enum {
36ce10d3 111 GO_BIT_TIMEOUT_MSECS = 10000
225c7b1f
RD
112};
113
114struct mlx4_cmd_context {
115 struct completion done;
116 int result;
117 int next;
118 u64 out_param;
119 u16 token;
e8f081aa 120 u8 fw_status;
225c7b1f
RD
121};
122
e8f081aa
YP
123static int mlx4_master_process_vhcr(struct mlx4_dev *dev, int slave,
124 struct mlx4_vhcr_cmd *in_vhcr);
125
ca281211
RD
126static int mlx4_status_to_errno(u8 status)
127{
225c7b1f
RD
128 static const int trans_table[] = {
129 [CMD_STAT_INTERNAL_ERR] = -EIO,
130 [CMD_STAT_BAD_OP] = -EPERM,
131 [CMD_STAT_BAD_PARAM] = -EINVAL,
132 [CMD_STAT_BAD_SYS_STATE] = -ENXIO,
133 [CMD_STAT_BAD_RESOURCE] = -EBADF,
134 [CMD_STAT_RESOURCE_BUSY] = -EBUSY,
135 [CMD_STAT_EXCEED_LIM] = -ENOMEM,
136 [CMD_STAT_BAD_RES_STATE] = -EBADF,
137 [CMD_STAT_BAD_INDEX] = -EBADF,
138 [CMD_STAT_BAD_NVMEM] = -EFAULT,
899698da 139 [CMD_STAT_ICM_ERROR] = -ENFILE,
225c7b1f
RD
140 [CMD_STAT_BAD_QP_STATE] = -EINVAL,
141 [CMD_STAT_BAD_SEG_PARAM] = -EFAULT,
142 [CMD_STAT_REG_BOUND] = -EBUSY,
143 [CMD_STAT_LAM_NOT_PRE] = -EAGAIN,
144 [CMD_STAT_BAD_PKT] = -EINVAL,
145 [CMD_STAT_BAD_SIZE] = -ENOMEM,
cc4ac2e7 146 [CMD_STAT_MULTI_FUNC_REQ] = -EACCES,
225c7b1f
RD
147 };
148
149 if (status >= ARRAY_SIZE(trans_table) ||
150 (status != CMD_STAT_OK && trans_table[status] == 0))
151 return -EIO;
152
153 return trans_table[status];
154}
155
72be84f1
YP
156static u8 mlx4_errno_to_status(int errno)
157{
158 switch (errno) {
159 case -EPERM:
160 return CMD_STAT_BAD_OP;
161 case -EINVAL:
162 return CMD_STAT_BAD_PARAM;
163 case -ENXIO:
164 return CMD_STAT_BAD_SYS_STATE;
165 case -EBUSY:
166 return CMD_STAT_RESOURCE_BUSY;
167 case -ENOMEM:
168 return CMD_STAT_EXCEED_LIM;
169 case -ENFILE:
170 return CMD_STAT_ICM_ERROR;
171 default:
172 return CMD_STAT_INTERNAL_ERR;
173 }
174}
175
e8f081aa
YP
176static int comm_pending(struct mlx4_dev *dev)
177{
178 struct mlx4_priv *priv = mlx4_priv(dev);
179 u32 status = readl(&priv->mfunc.comm->slave_read);
180
181 return (swab32(status) >> 31) != priv->cmd.comm_toggle;
182}
183
184static void mlx4_comm_cmd_post(struct mlx4_dev *dev, u8 cmd, u16 param)
185{
186 struct mlx4_priv *priv = mlx4_priv(dev);
187 u32 val;
188
189 priv->cmd.comm_toggle ^= 1;
190 val = param | (cmd << 16) | (priv->cmd.comm_toggle << 31);
191 __raw_writel((__force u32) cpu_to_be32(val),
192 &priv->mfunc.comm->slave_write);
193 mmiowb();
194}
195
e8f081aa
YP
196static int mlx4_comm_cmd_poll(struct mlx4_dev *dev, u8 cmd, u16 param,
197 unsigned long timeout)
198{
199 struct mlx4_priv *priv = mlx4_priv(dev);
200 unsigned long end;
201 int err = 0;
202 int ret_from_pending = 0;
203
204 /* First, verify that the master reports correct status */
205 if (comm_pending(dev)) {
206 mlx4_warn(dev, "Communication channel is not idle."
207 "my toggle is %d (cmd:0x%x)\n",
208 priv->cmd.comm_toggle, cmd);
209 return -EAGAIN;
210 }
211
212 /* Write command */
213 down(&priv->cmd.poll_sem);
214 mlx4_comm_cmd_post(dev, cmd, param);
215
216 end = msecs_to_jiffies(timeout) + jiffies;
217 while (comm_pending(dev) && time_before(jiffies, end))
218 cond_resched();
219 ret_from_pending = comm_pending(dev);
220 if (ret_from_pending) {
221 /* check if the slave is trying to boot in the middle of
222 * FLR process. The only non-zero result in the RESET command
223 * is MLX4_DELAY_RESET_SLAVE*/
224 if ((MLX4_COMM_CMD_RESET == cmd)) {
225 mlx4_warn(dev, "Got slave FLRed from Communication"
226 " channel (ret:0x%x)\n", ret_from_pending);
227 err = MLX4_DELAY_RESET_SLAVE;
228 } else {
229 mlx4_warn(dev, "Communication channel timed out\n");
230 err = -ETIMEDOUT;
231 }
232 }
233
234 up(&priv->cmd.poll_sem);
235 return err;
236}
237
238static int mlx4_comm_cmd_wait(struct mlx4_dev *dev, u8 op,
239 u16 param, unsigned long timeout)
240{
241 struct mlx4_cmd *cmd = &mlx4_priv(dev)->cmd;
242 struct mlx4_cmd_context *context;
58a3de05 243 unsigned long end;
e8f081aa
YP
244 int err = 0;
245
246 down(&cmd->event_sem);
247
248 spin_lock(&cmd->context_lock);
249 BUG_ON(cmd->free_head < 0);
250 context = &cmd->context[cmd->free_head];
251 context->token += cmd->token_mask + 1;
252 cmd->free_head = context->next;
253 spin_unlock(&cmd->context_lock);
254
255 init_completion(&context->done);
256
257 mlx4_comm_cmd_post(dev, op, param);
258
259 if (!wait_for_completion_timeout(&context->done,
260 msecs_to_jiffies(timeout))) {
261 err = -EBUSY;
262 goto out;
263 }
264
265 err = context->result;
266 if (err && context->fw_status != CMD_STAT_MULTI_FUNC_REQ) {
267 mlx4_err(dev, "command 0x%x failed: fw status = 0x%x\n",
268 op, context->fw_status);
269 goto out;
270 }
271
272out:
58a3de05
EE
273 /* wait for comm channel ready
274 * this is necessary for prevention the race
275 * when switching between event to polling mode
276 */
277 end = msecs_to_jiffies(timeout) + jiffies;
278 while (comm_pending(dev) && time_before(jiffies, end))
279 cond_resched();
280
e8f081aa
YP
281 spin_lock(&cmd->context_lock);
282 context->next = cmd->free_head;
283 cmd->free_head = context - cmd->context;
284 spin_unlock(&cmd->context_lock);
285
286 up(&cmd->event_sem);
287 return err;
288}
289
ab9c17a0 290int mlx4_comm_cmd(struct mlx4_dev *dev, u8 cmd, u16 param,
e8f081aa
YP
291 unsigned long timeout)
292{
293 if (mlx4_priv(dev)->cmd.use_events)
294 return mlx4_comm_cmd_wait(dev, cmd, param, timeout);
295 return mlx4_comm_cmd_poll(dev, cmd, param, timeout);
296}
297
225c7b1f
RD
298static int cmd_pending(struct mlx4_dev *dev)
299{
57dbf29a
KSS
300 u32 status;
301
302 if (pci_channel_offline(dev->pdev))
303 return -EIO;
304
305 status = readl(mlx4_priv(dev)->cmd.hcr + HCR_STATUS_OFFSET);
225c7b1f
RD
306
307 return (status & swab32(1 << HCR_GO_BIT)) ||
308 (mlx4_priv(dev)->cmd.toggle ==
309 !!(status & swab32(1 << HCR_T_BIT)));
310}
311
312static int mlx4_cmd_post(struct mlx4_dev *dev, u64 in_param, u64 out_param,
313 u32 in_modifier, u8 op_modifier, u16 op, u16 token,
314 int event)
315{
316 struct mlx4_cmd *cmd = &mlx4_priv(dev)->cmd;
317 u32 __iomem *hcr = cmd->hcr;
318 int ret = -EAGAIN;
319 unsigned long end;
320
321 mutex_lock(&cmd->hcr_mutex);
322
57dbf29a
KSS
323 if (pci_channel_offline(dev->pdev)) {
324 /*
325 * Device is going through error recovery
326 * and cannot accept commands.
327 */
328 ret = -EIO;
329 goto out;
330 }
331
225c7b1f
RD
332 end = jiffies;
333 if (event)
36ce10d3 334 end += msecs_to_jiffies(GO_BIT_TIMEOUT_MSECS);
225c7b1f
RD
335
336 while (cmd_pending(dev)) {
57dbf29a
KSS
337 if (pci_channel_offline(dev->pdev)) {
338 /*
339 * Device is going through error recovery
340 * and cannot accept commands.
341 */
342 ret = -EIO;
343 goto out;
344 }
345
e8f081aa
YP
346 if (time_after_eq(jiffies, end)) {
347 mlx4_err(dev, "%s:cmd_pending failed\n", __func__);
225c7b1f 348 goto out;
e8f081aa 349 }
225c7b1f
RD
350 cond_resched();
351 }
352
353 /*
354 * We use writel (instead of something like memcpy_toio)
355 * because writes of less than 32 bits to the HCR don't work
356 * (and some architectures such as ia64 implement memcpy_toio
357 * in terms of writeb).
358 */
359 __raw_writel((__force u32) cpu_to_be32(in_param >> 32), hcr + 0);
360 __raw_writel((__force u32) cpu_to_be32(in_param & 0xfffffffful), hcr + 1);
361 __raw_writel((__force u32) cpu_to_be32(in_modifier), hcr + 2);
362 __raw_writel((__force u32) cpu_to_be32(out_param >> 32), hcr + 3);
363 __raw_writel((__force u32) cpu_to_be32(out_param & 0xfffffffful), hcr + 4);
364 __raw_writel((__force u32) cpu_to_be32(token << 16), hcr + 5);
365
366 /* __raw_writel may not order writes. */
367 wmb();
368
369 __raw_writel((__force u32) cpu_to_be32((1 << HCR_GO_BIT) |
370 (cmd->toggle << HCR_T_BIT) |
371 (event ? (1 << HCR_E_BIT) : 0) |
372 (op_modifier << HCR_OPMOD_SHIFT) |
e8f081aa 373 op), hcr + 6);
2e61c646
RD
374
375 /*
376 * Make sure that our HCR writes don't get mixed in with
377 * writes from another CPU starting a FW command.
378 */
379 mmiowb();
380
225c7b1f
RD
381 cmd->toggle = cmd->toggle ^ 1;
382
383 ret = 0;
384
385out:
386 mutex_unlock(&cmd->hcr_mutex);
387 return ret;
388}
389
e8f081aa
YP
390static int mlx4_slave_cmd(struct mlx4_dev *dev, u64 in_param, u64 *out_param,
391 int out_is_imm, u32 in_modifier, u8 op_modifier,
392 u16 op, unsigned long timeout)
393{
394 struct mlx4_priv *priv = mlx4_priv(dev);
395 struct mlx4_vhcr_cmd *vhcr = priv->mfunc.vhcr;
396 int ret;
397
f3d4c89e
RD
398 mutex_lock(&priv->cmd.slave_cmd_mutex);
399
e8f081aa
YP
400 vhcr->in_param = cpu_to_be64(in_param);
401 vhcr->out_param = out_param ? cpu_to_be64(*out_param) : 0;
402 vhcr->in_modifier = cpu_to_be32(in_modifier);
403 vhcr->opcode = cpu_to_be16((((u16) op_modifier) << 12) | (op & 0xfff));
404 vhcr->token = cpu_to_be16(CMD_POLL_TOKEN);
405 vhcr->status = 0;
406 vhcr->flags = !!(priv->cmd.use_events) << 6;
f3d4c89e 407
e8f081aa
YP
408 if (mlx4_is_master(dev)) {
409 ret = mlx4_master_process_vhcr(dev, dev->caps.function, vhcr);
410 if (!ret) {
411 if (out_is_imm) {
412 if (out_param)
413 *out_param =
414 be64_to_cpu(vhcr->out_param);
415 else {
416 mlx4_err(dev, "response expected while"
417 "output mailbox is NULL for "
418 "command 0x%x\n", op);
72be84f1 419 vhcr->status = CMD_STAT_BAD_PARAM;
e8f081aa
YP
420 }
421 }
72be84f1 422 ret = mlx4_status_to_errno(vhcr->status);
e8f081aa
YP
423 }
424 } else {
425 ret = mlx4_comm_cmd(dev, MLX4_COMM_CMD_VHCR_POST, 0,
426 MLX4_COMM_TIME + timeout);
427 if (!ret) {
428 if (out_is_imm) {
429 if (out_param)
430 *out_param =
431 be64_to_cpu(vhcr->out_param);
432 else {
433 mlx4_err(dev, "response expected while"
434 "output mailbox is NULL for "
435 "command 0x%x\n", op);
72be84f1 436 vhcr->status = CMD_STAT_BAD_PARAM;
e8f081aa
YP
437 }
438 }
72be84f1 439 ret = mlx4_status_to_errno(vhcr->status);
e8f081aa
YP
440 } else
441 mlx4_err(dev, "failed execution of VHCR_POST command"
442 "opcode 0x%x\n", op);
443 }
f3d4c89e
RD
444
445 mutex_unlock(&priv->cmd.slave_cmd_mutex);
e8f081aa
YP
446 return ret;
447}
448
225c7b1f
RD
449static int mlx4_cmd_poll(struct mlx4_dev *dev, u64 in_param, u64 *out_param,
450 int out_is_imm, u32 in_modifier, u8 op_modifier,
451 u16 op, unsigned long timeout)
452{
453 struct mlx4_priv *priv = mlx4_priv(dev);
454 void __iomem *hcr = priv->cmd.hcr;
455 int err = 0;
456 unsigned long end;
e8f081aa 457 u32 stat;
225c7b1f
RD
458
459 down(&priv->cmd.poll_sem);
460
57dbf29a
KSS
461 if (pci_channel_offline(dev->pdev)) {
462 /*
463 * Device is going through error recovery
464 * and cannot accept commands.
465 */
466 err = -EIO;
467 goto out;
468 }
469
225c7b1f
RD
470 err = mlx4_cmd_post(dev, in_param, out_param ? *out_param : 0,
471 in_modifier, op_modifier, op, CMD_POLL_TOKEN, 0);
472 if (err)
473 goto out;
474
475 end = msecs_to_jiffies(timeout) + jiffies;
57dbf29a
KSS
476 while (cmd_pending(dev) && time_before(jiffies, end)) {
477 if (pci_channel_offline(dev->pdev)) {
478 /*
479 * Device is going through error recovery
480 * and cannot accept commands.
481 */
482 err = -EIO;
483 goto out;
484 }
485
225c7b1f 486 cond_resched();
57dbf29a 487 }
225c7b1f
RD
488
489 if (cmd_pending(dev)) {
490 err = -ETIMEDOUT;
491 goto out;
492 }
493
494 if (out_is_imm)
495 *out_param =
496 (u64) be32_to_cpu((__force __be32)
497 __raw_readl(hcr + HCR_OUT_PARAM_OFFSET)) << 32 |
498 (u64) be32_to_cpu((__force __be32)
499 __raw_readl(hcr + HCR_OUT_PARAM_OFFSET + 4));
e8f081aa
YP
500 stat = be32_to_cpu((__force __be32)
501 __raw_readl(hcr + HCR_STATUS_OFFSET)) >> 24;
502 err = mlx4_status_to_errno(stat);
503 if (err)
504 mlx4_err(dev, "command 0x%x failed: fw status = 0x%x\n",
505 op, stat);
225c7b1f
RD
506
507out:
508 up(&priv->cmd.poll_sem);
509 return err;
510}
511
512void mlx4_cmd_event(struct mlx4_dev *dev, u16 token, u8 status, u64 out_param)
513{
514 struct mlx4_priv *priv = mlx4_priv(dev);
515 struct mlx4_cmd_context *context =
516 &priv->cmd.context[token & priv->cmd.token_mask];
517
518 /* previously timed out command completing at long last */
519 if (token != context->token)
520 return;
521
e8f081aa 522 context->fw_status = status;
225c7b1f
RD
523 context->result = mlx4_status_to_errno(status);
524 context->out_param = out_param;
525
225c7b1f
RD
526 complete(&context->done);
527}
528
529static int mlx4_cmd_wait(struct mlx4_dev *dev, u64 in_param, u64 *out_param,
530 int out_is_imm, u32 in_modifier, u8 op_modifier,
531 u16 op, unsigned long timeout)
532{
533 struct mlx4_cmd *cmd = &mlx4_priv(dev)->cmd;
534 struct mlx4_cmd_context *context;
535 int err = 0;
536
537 down(&cmd->event_sem);
538
539 spin_lock(&cmd->context_lock);
540 BUG_ON(cmd->free_head < 0);
541 context = &cmd->context[cmd->free_head];
0981582d 542 context->token += cmd->token_mask + 1;
225c7b1f
RD
543 cmd->free_head = context->next;
544 spin_unlock(&cmd->context_lock);
545
546 init_completion(&context->done);
547
548 mlx4_cmd_post(dev, in_param, out_param ? *out_param : 0,
549 in_modifier, op_modifier, op, context->token, 1);
550
e8f081aa
YP
551 if (!wait_for_completion_timeout(&context->done,
552 msecs_to_jiffies(timeout))) {
225c7b1f
RD
553 err = -EBUSY;
554 goto out;
555 }
556
557 err = context->result;
e8f081aa
YP
558 if (err) {
559 mlx4_err(dev, "command 0x%x failed: fw status = 0x%x\n",
560 op, context->fw_status);
225c7b1f 561 goto out;
e8f081aa 562 }
225c7b1f
RD
563
564 if (out_is_imm)
565 *out_param = context->out_param;
566
567out:
568 spin_lock(&cmd->context_lock);
569 context->next = cmd->free_head;
570 cmd->free_head = context - cmd->context;
571 spin_unlock(&cmd->context_lock);
572
573 up(&cmd->event_sem);
574 return err;
575}
576
577int __mlx4_cmd(struct mlx4_dev *dev, u64 in_param, u64 *out_param,
578 int out_is_imm, u32 in_modifier, u8 op_modifier,
f9baff50 579 u16 op, unsigned long timeout, int native)
225c7b1f 580{
57dbf29a
KSS
581 if (pci_channel_offline(dev->pdev))
582 return -EIO;
583
e8f081aa
YP
584 if (!mlx4_is_mfunc(dev) || (native && mlx4_is_master(dev))) {
585 if (mlx4_priv(dev)->cmd.use_events)
586 return mlx4_cmd_wait(dev, in_param, out_param,
587 out_is_imm, in_modifier,
588 op_modifier, op, timeout);
589 else
590 return mlx4_cmd_poll(dev, in_param, out_param,
591 out_is_imm, in_modifier,
592 op_modifier, op, timeout);
593 }
594 return mlx4_slave_cmd(dev, in_param, out_param, out_is_imm,
595 in_modifier, op_modifier, op, timeout);
225c7b1f
RD
596}
597EXPORT_SYMBOL_GPL(__mlx4_cmd);
598
e8f081aa
YP
599
600static int mlx4_ARM_COMM_CHANNEL(struct mlx4_dev *dev)
601{
602 return mlx4_cmd(dev, 0, 0, 0, MLX4_CMD_ARM_COMM_CHANNEL,
603 MLX4_CMD_TIME_CLASS_B, MLX4_CMD_NATIVE);
604}
605
606static int mlx4_ACCESS_MEM(struct mlx4_dev *dev, u64 master_addr,
607 int slave, u64 slave_addr,
608 int size, int is_read)
609{
610 u64 in_param;
611 u64 out_param;
612
613 if ((slave_addr & 0xfff) | (master_addr & 0xfff) |
614 (slave & ~0x7f) | (size & 0xff)) {
615 mlx4_err(dev, "Bad access mem params - slave_addr:0x%llx "
616 "master_addr:0x%llx slave_id:%d size:%d\n",
617 slave_addr, master_addr, slave, size);
618 return -EINVAL;
619 }
620
621 if (is_read) {
622 in_param = (u64) slave | slave_addr;
623 out_param = (u64) dev->caps.function | master_addr;
624 } else {
625 in_param = (u64) dev->caps.function | master_addr;
626 out_param = (u64) slave | slave_addr;
627 }
628
629 return mlx4_cmd_imm(dev, in_param, &out_param, size, 0,
630 MLX4_CMD_ACCESS_MEM,
631 MLX4_CMD_TIME_CLASS_A, MLX4_CMD_NATIVE);
632}
633
0a9a0188
JM
634static int query_pkey_block(struct mlx4_dev *dev, u8 port, u16 index, u16 *pkey,
635 struct mlx4_cmd_mailbox *inbox,
636 struct mlx4_cmd_mailbox *outbox)
637{
638 struct ib_smp *in_mad = (struct ib_smp *)(inbox->buf);
639 struct ib_smp *out_mad = (struct ib_smp *)(outbox->buf);
640 int err;
641 int i;
642
643 if (index & 0x1f)
644 return -EINVAL;
645
646 in_mad->attr_mod = cpu_to_be32(index / 32);
647
648 err = mlx4_cmd_box(dev, inbox->dma, outbox->dma, port, 3,
649 MLX4_CMD_MAD_IFC, MLX4_CMD_TIME_CLASS_C,
650 MLX4_CMD_NATIVE);
651 if (err)
652 return err;
653
654 for (i = 0; i < 32; ++i)
655 pkey[i] = be16_to_cpu(((__be16 *) out_mad->data)[i]);
656
657 return err;
658}
659
660static int get_full_pkey_table(struct mlx4_dev *dev, u8 port, u16 *table,
661 struct mlx4_cmd_mailbox *inbox,
662 struct mlx4_cmd_mailbox *outbox)
663{
664 int i;
665 int err;
666
667 for (i = 0; i < dev->caps.pkey_table_len[port]; i += 32) {
668 err = query_pkey_block(dev, port, i, table + i, inbox, outbox);
669 if (err)
670 return err;
671 }
672
673 return 0;
674}
675#define PORT_CAPABILITY_LOCATION_IN_SMP 20
676#define PORT_STATE_OFFSET 32
677
678static enum ib_port_state vf_port_state(struct mlx4_dev *dev, int port, int vf)
679{
a0c64a17
JM
680 if (mlx4_get_slave_port_state(dev, vf, port) == SLAVE_PORT_UP)
681 return IB_PORT_ACTIVE;
682 else
683 return IB_PORT_DOWN;
0a9a0188
JM
684}
685
686static int mlx4_MAD_IFC_wrapper(struct mlx4_dev *dev, int slave,
687 struct mlx4_vhcr *vhcr,
688 struct mlx4_cmd_mailbox *inbox,
689 struct mlx4_cmd_mailbox *outbox,
690 struct mlx4_cmd_info *cmd)
691{
692 struct ib_smp *smp = inbox->buf;
693 u32 index;
694 u8 port;
695 u16 *table;
696 int err;
697 int vidx, pidx;
698 struct mlx4_priv *priv = mlx4_priv(dev);
699 struct ib_smp *outsmp = outbox->buf;
700 __be16 *outtab = (__be16 *)(outsmp->data);
701 __be32 slave_cap_mask;
afa8fd1d 702 __be64 slave_node_guid;
0a9a0188
JM
703 port = vhcr->in_modifier;
704
705 if (smp->base_version == 1 &&
706 smp->mgmt_class == IB_MGMT_CLASS_SUBN_LID_ROUTED &&
707 smp->class_version == 1) {
708 if (smp->method == IB_MGMT_METHOD_GET) {
709 if (smp->attr_id == IB_SMP_ATTR_PKEY_TABLE) {
710 index = be32_to_cpu(smp->attr_mod);
711 if (port < 1 || port > dev->caps.num_ports)
712 return -EINVAL;
713 table = kcalloc(dev->caps.pkey_table_len[port], sizeof *table, GFP_KERNEL);
714 if (!table)
715 return -ENOMEM;
716 /* need to get the full pkey table because the paravirtualized
717 * pkeys may be scattered among several pkey blocks.
718 */
719 err = get_full_pkey_table(dev, port, table, inbox, outbox);
720 if (!err) {
721 for (vidx = index * 32; vidx < (index + 1) * 32; ++vidx) {
722 pidx = priv->virt2phys_pkey[slave][port - 1][vidx];
723 outtab[vidx % 32] = cpu_to_be16(table[pidx]);
724 }
725 }
726 kfree(table);
727 return err;
728 }
729 if (smp->attr_id == IB_SMP_ATTR_PORT_INFO) {
730 /*get the slave specific caps:*/
731 /*do the command */
732 err = mlx4_cmd_box(dev, inbox->dma, outbox->dma,
733 vhcr->in_modifier, vhcr->op_modifier,
734 vhcr->op, MLX4_CMD_TIME_CLASS_C, MLX4_CMD_NATIVE);
735 /* modify the response for slaves */
736 if (!err && slave != mlx4_master_func_num(dev)) {
737 u8 *state = outsmp->data + PORT_STATE_OFFSET;
738
739 *state = (*state & 0xf0) | vf_port_state(dev, port, slave);
740 slave_cap_mask = priv->mfunc.master.slave_state[slave].ib_cap_mask[port];
741 memcpy(outsmp->data + PORT_CAPABILITY_LOCATION_IN_SMP, &slave_cap_mask, 4);
742 }
743 return err;
744 }
745 if (smp->attr_id == IB_SMP_ATTR_GUID_INFO) {
746 /* compute slave's gid block */
747 smp->attr_mod = cpu_to_be32(slave / 8);
748 /* execute cmd */
749 err = mlx4_cmd_box(dev, inbox->dma, outbox->dma,
750 vhcr->in_modifier, vhcr->op_modifier,
751 vhcr->op, MLX4_CMD_TIME_CLASS_C, MLX4_CMD_NATIVE);
752 if (!err) {
753 /* if needed, move slave gid to index 0 */
754 if (slave % 8)
755 memcpy(outsmp->data,
756 outsmp->data + (slave % 8) * 8, 8);
757 /* delete all other gids */
758 memset(outsmp->data + 8, 0, 56);
759 }
760 return err;
761 }
afa8fd1d
JM
762 if (smp->attr_id == IB_SMP_ATTR_NODE_INFO) {
763 err = mlx4_cmd_box(dev, inbox->dma, outbox->dma,
764 vhcr->in_modifier, vhcr->op_modifier,
765 vhcr->op, MLX4_CMD_TIME_CLASS_C, MLX4_CMD_NATIVE);
766 if (!err) {
767 slave_node_guid = mlx4_get_slave_node_guid(dev, slave);
768 memcpy(outsmp->data + 12, &slave_node_guid, 8);
769 }
770 return err;
771 }
0a9a0188
JM
772 }
773 }
774 if (slave != mlx4_master_func_num(dev) &&
775 ((smp->mgmt_class == IB_MGMT_CLASS_SUBN_DIRECTED_ROUTE) ||
776 (smp->mgmt_class == IB_MGMT_CLASS_SUBN_LID_ROUTED &&
777 smp->method == IB_MGMT_METHOD_SET))) {
778 mlx4_err(dev, "slave %d is trying to execute a Subnet MGMT MAD, "
779 "class 0x%x, method 0x%x for attr 0x%x. Rejecting\n",
780 slave, smp->method, smp->mgmt_class,
781 be16_to_cpu(smp->attr_id));
782 return -EPERM;
783 }
784 /*default:*/
785 return mlx4_cmd_box(dev, inbox->dma, outbox->dma,
786 vhcr->in_modifier, vhcr->op_modifier,
787 vhcr->op, MLX4_CMD_TIME_CLASS_C, MLX4_CMD_NATIVE);
788}
789
e8f081aa
YP
790int mlx4_DMA_wrapper(struct mlx4_dev *dev, int slave,
791 struct mlx4_vhcr *vhcr,
792 struct mlx4_cmd_mailbox *inbox,
793 struct mlx4_cmd_mailbox *outbox,
794 struct mlx4_cmd_info *cmd)
795{
796 u64 in_param;
797 u64 out_param;
798 int err;
799
800 in_param = cmd->has_inbox ? (u64) inbox->dma : vhcr->in_param;
801 out_param = cmd->has_outbox ? (u64) outbox->dma : vhcr->out_param;
802 if (cmd->encode_slave_id) {
803 in_param &= 0xffffffffffffff00ll;
804 in_param |= slave;
805 }
806
807 err = __mlx4_cmd(dev, in_param, &out_param, cmd->out_is_imm,
808 vhcr->in_modifier, vhcr->op_modifier, vhcr->op,
809 MLX4_CMD_TIME_CLASS_A, MLX4_CMD_NATIVE);
810
811 if (cmd->out_is_imm)
812 vhcr->out_param = out_param;
813
814 return err;
815}
816
817static struct mlx4_cmd_info cmd_info[] = {
818 {
819 .opcode = MLX4_CMD_QUERY_FW,
820 .has_inbox = false,
821 .has_outbox = true,
822 .out_is_imm = false,
823 .encode_slave_id = false,
824 .verify = NULL,
b91cb3eb 825 .wrapper = mlx4_QUERY_FW_wrapper
e8f081aa
YP
826 },
827 {
828 .opcode = MLX4_CMD_QUERY_HCA,
829 .has_inbox = false,
830 .has_outbox = true,
831 .out_is_imm = false,
832 .encode_slave_id = false,
833 .verify = NULL,
834 .wrapper = NULL
835 },
836 {
837 .opcode = MLX4_CMD_QUERY_DEV_CAP,
838 .has_inbox = false,
839 .has_outbox = true,
840 .out_is_imm = false,
841 .encode_slave_id = false,
842 .verify = NULL,
b91cb3eb 843 .wrapper = mlx4_QUERY_DEV_CAP_wrapper
e8f081aa 844 },
c82e9aa0
EC
845 {
846 .opcode = MLX4_CMD_QUERY_FUNC_CAP,
847 .has_inbox = false,
848 .has_outbox = true,
849 .out_is_imm = false,
850 .encode_slave_id = false,
851 .verify = NULL,
852 .wrapper = mlx4_QUERY_FUNC_CAP_wrapper
853 },
854 {
855 .opcode = MLX4_CMD_QUERY_ADAPTER,
856 .has_inbox = false,
857 .has_outbox = true,
858 .out_is_imm = false,
859 .encode_slave_id = false,
860 .verify = NULL,
861 .wrapper = NULL
862 },
863 {
864 .opcode = MLX4_CMD_INIT_PORT,
865 .has_inbox = false,
866 .has_outbox = false,
867 .out_is_imm = false,
868 .encode_slave_id = false,
869 .verify = NULL,
870 .wrapper = mlx4_INIT_PORT_wrapper
871 },
872 {
873 .opcode = MLX4_CMD_CLOSE_PORT,
874 .has_inbox = false,
875 .has_outbox = false,
876 .out_is_imm = false,
877 .encode_slave_id = false,
878 .verify = NULL,
879 .wrapper = mlx4_CLOSE_PORT_wrapper
880 },
881 {
882 .opcode = MLX4_CMD_QUERY_PORT,
883 .has_inbox = false,
884 .has_outbox = true,
885 .out_is_imm = false,
886 .encode_slave_id = false,
887 .verify = NULL,
888 .wrapper = mlx4_QUERY_PORT_wrapper
889 },
ffe455ad
EE
890 {
891 .opcode = MLX4_CMD_SET_PORT,
892 .has_inbox = true,
893 .has_outbox = false,
894 .out_is_imm = false,
895 .encode_slave_id = false,
896 .verify = NULL,
897 .wrapper = mlx4_SET_PORT_wrapper
898 },
c82e9aa0
EC
899 {
900 .opcode = MLX4_CMD_MAP_EQ,
901 .has_inbox = false,
902 .has_outbox = false,
903 .out_is_imm = false,
904 .encode_slave_id = false,
905 .verify = NULL,
906 .wrapper = mlx4_MAP_EQ_wrapper
907 },
908 {
909 .opcode = MLX4_CMD_SW2HW_EQ,
910 .has_inbox = true,
911 .has_outbox = false,
912 .out_is_imm = false,
913 .encode_slave_id = true,
914 .verify = NULL,
915 .wrapper = mlx4_SW2HW_EQ_wrapper
916 },
917 {
918 .opcode = MLX4_CMD_HW_HEALTH_CHECK,
919 .has_inbox = false,
920 .has_outbox = false,
921 .out_is_imm = false,
922 .encode_slave_id = false,
923 .verify = NULL,
924 .wrapper = NULL
925 },
926 {
927 .opcode = MLX4_CMD_NOP,
928 .has_inbox = false,
929 .has_outbox = false,
930 .out_is_imm = false,
931 .encode_slave_id = false,
932 .verify = NULL,
933 .wrapper = NULL
934 },
935 {
936 .opcode = MLX4_CMD_ALLOC_RES,
937 .has_inbox = false,
938 .has_outbox = false,
939 .out_is_imm = true,
940 .encode_slave_id = false,
941 .verify = NULL,
942 .wrapper = mlx4_ALLOC_RES_wrapper
943 },
944 {
945 .opcode = MLX4_CMD_FREE_RES,
946 .has_inbox = false,
947 .has_outbox = false,
948 .out_is_imm = false,
949 .encode_slave_id = false,
950 .verify = NULL,
951 .wrapper = mlx4_FREE_RES_wrapper
952 },
953 {
954 .opcode = MLX4_CMD_SW2HW_MPT,
955 .has_inbox = true,
956 .has_outbox = false,
957 .out_is_imm = false,
958 .encode_slave_id = true,
959 .verify = NULL,
960 .wrapper = mlx4_SW2HW_MPT_wrapper
961 },
962 {
963 .opcode = MLX4_CMD_QUERY_MPT,
964 .has_inbox = false,
965 .has_outbox = true,
966 .out_is_imm = false,
967 .encode_slave_id = false,
968 .verify = NULL,
969 .wrapper = mlx4_QUERY_MPT_wrapper
970 },
971 {
972 .opcode = MLX4_CMD_HW2SW_MPT,
973 .has_inbox = false,
974 .has_outbox = false,
975 .out_is_imm = false,
976 .encode_slave_id = false,
977 .verify = NULL,
978 .wrapper = mlx4_HW2SW_MPT_wrapper
979 },
980 {
981 .opcode = MLX4_CMD_READ_MTT,
982 .has_inbox = false,
983 .has_outbox = true,
984 .out_is_imm = false,
985 .encode_slave_id = false,
986 .verify = NULL,
987 .wrapper = NULL
988 },
989 {
990 .opcode = MLX4_CMD_WRITE_MTT,
991 .has_inbox = true,
992 .has_outbox = false,
993 .out_is_imm = false,
994 .encode_slave_id = false,
995 .verify = NULL,
996 .wrapper = mlx4_WRITE_MTT_wrapper
997 },
998 {
999 .opcode = MLX4_CMD_SYNC_TPT,
1000 .has_inbox = true,
1001 .has_outbox = false,
1002 .out_is_imm = false,
1003 .encode_slave_id = false,
1004 .verify = NULL,
1005 .wrapper = NULL
1006 },
1007 {
1008 .opcode = MLX4_CMD_HW2SW_EQ,
1009 .has_inbox = false,
1010 .has_outbox = true,
1011 .out_is_imm = false,
1012 .encode_slave_id = true,
1013 .verify = NULL,
1014 .wrapper = mlx4_HW2SW_EQ_wrapper
1015 },
1016 {
1017 .opcode = MLX4_CMD_QUERY_EQ,
1018 .has_inbox = false,
1019 .has_outbox = true,
1020 .out_is_imm = false,
1021 .encode_slave_id = true,
1022 .verify = NULL,
1023 .wrapper = mlx4_QUERY_EQ_wrapper
1024 },
1025 {
1026 .opcode = MLX4_CMD_SW2HW_CQ,
1027 .has_inbox = true,
1028 .has_outbox = false,
1029 .out_is_imm = false,
1030 .encode_slave_id = true,
1031 .verify = NULL,
1032 .wrapper = mlx4_SW2HW_CQ_wrapper
1033 },
1034 {
1035 .opcode = MLX4_CMD_HW2SW_CQ,
1036 .has_inbox = false,
1037 .has_outbox = false,
1038 .out_is_imm = false,
1039 .encode_slave_id = false,
1040 .verify = NULL,
1041 .wrapper = mlx4_HW2SW_CQ_wrapper
1042 },
1043 {
1044 .opcode = MLX4_CMD_QUERY_CQ,
1045 .has_inbox = false,
1046 .has_outbox = true,
1047 .out_is_imm = false,
1048 .encode_slave_id = false,
1049 .verify = NULL,
1050 .wrapper = mlx4_QUERY_CQ_wrapper
1051 },
1052 {
1053 .opcode = MLX4_CMD_MODIFY_CQ,
1054 .has_inbox = true,
1055 .has_outbox = false,
1056 .out_is_imm = true,
1057 .encode_slave_id = false,
1058 .verify = NULL,
1059 .wrapper = mlx4_MODIFY_CQ_wrapper
1060 },
1061 {
1062 .opcode = MLX4_CMD_SW2HW_SRQ,
1063 .has_inbox = true,
1064 .has_outbox = false,
1065 .out_is_imm = false,
1066 .encode_slave_id = true,
1067 .verify = NULL,
1068 .wrapper = mlx4_SW2HW_SRQ_wrapper
1069 },
1070 {
1071 .opcode = MLX4_CMD_HW2SW_SRQ,
1072 .has_inbox = false,
1073 .has_outbox = false,
1074 .out_is_imm = false,
1075 .encode_slave_id = false,
1076 .verify = NULL,
1077 .wrapper = mlx4_HW2SW_SRQ_wrapper
1078 },
1079 {
1080 .opcode = MLX4_CMD_QUERY_SRQ,
1081 .has_inbox = false,
1082 .has_outbox = true,
1083 .out_is_imm = false,
1084 .encode_slave_id = false,
1085 .verify = NULL,
1086 .wrapper = mlx4_QUERY_SRQ_wrapper
1087 },
1088 {
1089 .opcode = MLX4_CMD_ARM_SRQ,
1090 .has_inbox = false,
1091 .has_outbox = false,
1092 .out_is_imm = false,
1093 .encode_slave_id = false,
1094 .verify = NULL,
1095 .wrapper = mlx4_ARM_SRQ_wrapper
1096 },
1097 {
1098 .opcode = MLX4_CMD_RST2INIT_QP,
1099 .has_inbox = true,
1100 .has_outbox = false,
1101 .out_is_imm = false,
1102 .encode_slave_id = true,
1103 .verify = NULL,
1104 .wrapper = mlx4_RST2INIT_QP_wrapper
1105 },
1106 {
1107 .opcode = MLX4_CMD_INIT2INIT_QP,
1108 .has_inbox = true,
1109 .has_outbox = false,
1110 .out_is_imm = false,
1111 .encode_slave_id = false,
1112 .verify = NULL,
54679e14 1113 .wrapper = mlx4_INIT2INIT_QP_wrapper
c82e9aa0
EC
1114 },
1115 {
1116 .opcode = MLX4_CMD_INIT2RTR_QP,
1117 .has_inbox = true,
1118 .has_outbox = false,
1119 .out_is_imm = false,
1120 .encode_slave_id = false,
1121 .verify = NULL,
1122 .wrapper = mlx4_INIT2RTR_QP_wrapper
1123 },
1124 {
1125 .opcode = MLX4_CMD_RTR2RTS_QP,
1126 .has_inbox = true,
1127 .has_outbox = false,
1128 .out_is_imm = false,
1129 .encode_slave_id = false,
1130 .verify = NULL,
54679e14 1131 .wrapper = mlx4_RTR2RTS_QP_wrapper
c82e9aa0
EC
1132 },
1133 {
1134 .opcode = MLX4_CMD_RTS2RTS_QP,
1135 .has_inbox = true,
1136 .has_outbox = false,
1137 .out_is_imm = false,
1138 .encode_slave_id = false,
1139 .verify = NULL,
54679e14 1140 .wrapper = mlx4_RTS2RTS_QP_wrapper
c82e9aa0
EC
1141 },
1142 {
1143 .opcode = MLX4_CMD_SQERR2RTS_QP,
1144 .has_inbox = true,
1145 .has_outbox = false,
1146 .out_is_imm = false,
1147 .encode_slave_id = false,
1148 .verify = NULL,
54679e14 1149 .wrapper = mlx4_SQERR2RTS_QP_wrapper
c82e9aa0
EC
1150 },
1151 {
1152 .opcode = MLX4_CMD_2ERR_QP,
1153 .has_inbox = false,
1154 .has_outbox = false,
1155 .out_is_imm = false,
1156 .encode_slave_id = false,
1157 .verify = NULL,
1158 .wrapper = mlx4_GEN_QP_wrapper
1159 },
1160 {
1161 .opcode = MLX4_CMD_RTS2SQD_QP,
1162 .has_inbox = false,
1163 .has_outbox = false,
1164 .out_is_imm = false,
1165 .encode_slave_id = false,
1166 .verify = NULL,
1167 .wrapper = mlx4_GEN_QP_wrapper
1168 },
1169 {
1170 .opcode = MLX4_CMD_SQD2SQD_QP,
1171 .has_inbox = true,
1172 .has_outbox = false,
1173 .out_is_imm = false,
1174 .encode_slave_id = false,
1175 .verify = NULL,
54679e14 1176 .wrapper = mlx4_SQD2SQD_QP_wrapper
c82e9aa0
EC
1177 },
1178 {
1179 .opcode = MLX4_CMD_SQD2RTS_QP,
1180 .has_inbox = true,
1181 .has_outbox = false,
1182 .out_is_imm = false,
1183 .encode_slave_id = false,
1184 .verify = NULL,
54679e14 1185 .wrapper = mlx4_SQD2RTS_QP_wrapper
c82e9aa0
EC
1186 },
1187 {
1188 .opcode = MLX4_CMD_2RST_QP,
1189 .has_inbox = false,
1190 .has_outbox = false,
1191 .out_is_imm = false,
1192 .encode_slave_id = false,
1193 .verify = NULL,
1194 .wrapper = mlx4_2RST_QP_wrapper
1195 },
1196 {
1197 .opcode = MLX4_CMD_QUERY_QP,
1198 .has_inbox = false,
1199 .has_outbox = true,
1200 .out_is_imm = false,
1201 .encode_slave_id = false,
1202 .verify = NULL,
1203 .wrapper = mlx4_GEN_QP_wrapper
1204 },
1205 {
1206 .opcode = MLX4_CMD_SUSPEND_QP,
1207 .has_inbox = false,
1208 .has_outbox = false,
1209 .out_is_imm = false,
1210 .encode_slave_id = false,
1211 .verify = NULL,
1212 .wrapper = mlx4_GEN_QP_wrapper
1213 },
1214 {
1215 .opcode = MLX4_CMD_UNSUSPEND_QP,
1216 .has_inbox = false,
1217 .has_outbox = false,
1218 .out_is_imm = false,
1219 .encode_slave_id = false,
1220 .verify = NULL,
1221 .wrapper = mlx4_GEN_QP_wrapper
1222 },
0a9a0188
JM
1223 {
1224 .opcode = MLX4_CMD_CONF_SPECIAL_QP,
1225 .has_inbox = false,
1226 .has_outbox = false,
1227 .out_is_imm = false,
1228 .encode_slave_id = false,
1229 .verify = NULL, /* XXX verify: only demux can do this */
1230 .wrapper = NULL
1231 },
1232 {
1233 .opcode = MLX4_CMD_MAD_IFC,
1234 .has_inbox = true,
1235 .has_outbox = true,
1236 .out_is_imm = false,
1237 .encode_slave_id = false,
1238 .verify = NULL,
1239 .wrapper = mlx4_MAD_IFC_wrapper
1240 },
c82e9aa0
EC
1241 {
1242 .opcode = MLX4_CMD_QUERY_IF_STAT,
1243 .has_inbox = false,
1244 .has_outbox = true,
1245 .out_is_imm = false,
1246 .encode_slave_id = false,
1247 .verify = NULL,
1248 .wrapper = mlx4_QUERY_IF_STAT_wrapper
1249 },
1250 /* Native multicast commands are not available for guests */
1251 {
1252 .opcode = MLX4_CMD_QP_ATTACH,
1253 .has_inbox = true,
1254 .has_outbox = false,
1255 .out_is_imm = false,
1256 .encode_slave_id = false,
1257 .verify = NULL,
1258 .wrapper = mlx4_QP_ATTACH_wrapper
1259 },
0ec2c0f8
EE
1260 {
1261 .opcode = MLX4_CMD_PROMISC,
1262 .has_inbox = false,
1263 .has_outbox = false,
1264 .out_is_imm = false,
1265 .encode_slave_id = false,
1266 .verify = NULL,
1267 .wrapper = mlx4_PROMISC_wrapper
1268 },
ffe455ad
EE
1269 /* Ethernet specific commands */
1270 {
1271 .opcode = MLX4_CMD_SET_VLAN_FLTR,
1272 .has_inbox = true,
1273 .has_outbox = false,
1274 .out_is_imm = false,
1275 .encode_slave_id = false,
1276 .verify = NULL,
1277 .wrapper = mlx4_SET_VLAN_FLTR_wrapper
1278 },
1279 {
1280 .opcode = MLX4_CMD_SET_MCAST_FLTR,
1281 .has_inbox = false,
1282 .has_outbox = false,
1283 .out_is_imm = false,
1284 .encode_slave_id = false,
1285 .verify = NULL,
1286 .wrapper = mlx4_SET_MCAST_FLTR_wrapper
1287 },
1288 {
1289 .opcode = MLX4_CMD_DUMP_ETH_STATS,
1290 .has_inbox = false,
1291 .has_outbox = true,
1292 .out_is_imm = false,
1293 .encode_slave_id = false,
1294 .verify = NULL,
1295 .wrapper = mlx4_DUMP_ETH_STATS_wrapper
1296 },
c82e9aa0
EC
1297 {
1298 .opcode = MLX4_CMD_INFORM_FLR_DONE,
1299 .has_inbox = false,
1300 .has_outbox = false,
1301 .out_is_imm = false,
1302 .encode_slave_id = false,
1303 .verify = NULL,
1304 .wrapper = NULL
1305 },
8fcfb4db
HHZ
1306 /* flow steering commands */
1307 {
1308 .opcode = MLX4_QP_FLOW_STEERING_ATTACH,
1309 .has_inbox = true,
1310 .has_outbox = false,
1311 .out_is_imm = true,
1312 .encode_slave_id = false,
1313 .verify = NULL,
1314 .wrapper = mlx4_QP_FLOW_STEERING_ATTACH_wrapper
1315 },
1316 {
1317 .opcode = MLX4_QP_FLOW_STEERING_DETACH,
1318 .has_inbox = false,
1319 .has_outbox = false,
1320 .out_is_imm = false,
1321 .encode_slave_id = false,
1322 .verify = NULL,
1323 .wrapper = mlx4_QP_FLOW_STEERING_DETACH_wrapper
1324 },
e8f081aa
YP
1325};
1326
1327static int mlx4_master_process_vhcr(struct mlx4_dev *dev, int slave,
1328 struct mlx4_vhcr_cmd *in_vhcr)
1329{
1330 struct mlx4_priv *priv = mlx4_priv(dev);
1331 struct mlx4_cmd_info *cmd = NULL;
1332 struct mlx4_vhcr_cmd *vhcr_cmd = in_vhcr ? in_vhcr : priv->mfunc.vhcr;
1333 struct mlx4_vhcr *vhcr;
1334 struct mlx4_cmd_mailbox *inbox = NULL;
1335 struct mlx4_cmd_mailbox *outbox = NULL;
1336 u64 in_param;
1337 u64 out_param;
1338 int ret = 0;
1339 int i;
72be84f1 1340 int err = 0;
e8f081aa
YP
1341
1342 /* Create sw representation of Virtual HCR */
1343 vhcr = kzalloc(sizeof(struct mlx4_vhcr), GFP_KERNEL);
1344 if (!vhcr)
1345 return -ENOMEM;
1346
1347 /* DMA in the vHCR */
1348 if (!in_vhcr) {
1349 ret = mlx4_ACCESS_MEM(dev, priv->mfunc.vhcr_dma, slave,
1350 priv->mfunc.master.slave_state[slave].vhcr_dma,
1351 ALIGN(sizeof(struct mlx4_vhcr_cmd),
1352 MLX4_ACCESS_MEM_ALIGN), 1);
1353 if (ret) {
1354 mlx4_err(dev, "%s:Failed reading vhcr"
1355 "ret: 0x%x\n", __func__, ret);
1356 kfree(vhcr);
1357 return ret;
1358 }
1359 }
1360
1361 /* Fill SW VHCR fields */
1362 vhcr->in_param = be64_to_cpu(vhcr_cmd->in_param);
1363 vhcr->out_param = be64_to_cpu(vhcr_cmd->out_param);
1364 vhcr->in_modifier = be32_to_cpu(vhcr_cmd->in_modifier);
1365 vhcr->token = be16_to_cpu(vhcr_cmd->token);
1366 vhcr->op = be16_to_cpu(vhcr_cmd->opcode) & 0xfff;
1367 vhcr->op_modifier = (u8) (be16_to_cpu(vhcr_cmd->opcode) >> 12);
1368 vhcr->e_bit = vhcr_cmd->flags & (1 << 6);
1369
1370 /* Lookup command */
1371 for (i = 0; i < ARRAY_SIZE(cmd_info); ++i) {
1372 if (vhcr->op == cmd_info[i].opcode) {
1373 cmd = &cmd_info[i];
1374 break;
1375 }
1376 }
1377 if (!cmd) {
1378 mlx4_err(dev, "Unknown command:0x%x accepted from slave:%d\n",
1379 vhcr->op, slave);
72be84f1 1380 vhcr_cmd->status = CMD_STAT_BAD_PARAM;
e8f081aa
YP
1381 goto out_status;
1382 }
1383
1384 /* Read inbox */
1385 if (cmd->has_inbox) {
1386 vhcr->in_param &= INBOX_MASK;
1387 inbox = mlx4_alloc_cmd_mailbox(dev);
1388 if (IS_ERR(inbox)) {
72be84f1 1389 vhcr_cmd->status = CMD_STAT_BAD_SIZE;
e8f081aa 1390 inbox = NULL;
72be84f1 1391 goto out_status;
e8f081aa
YP
1392 }
1393
72be84f1
YP
1394 if (mlx4_ACCESS_MEM(dev, inbox->dma, slave,
1395 vhcr->in_param,
1396 MLX4_MAILBOX_SIZE, 1)) {
e8f081aa
YP
1397 mlx4_err(dev, "%s: Failed reading inbox (cmd:0x%x)\n",
1398 __func__, cmd->opcode);
72be84f1
YP
1399 vhcr_cmd->status = CMD_STAT_INTERNAL_ERR;
1400 goto out_status;
e8f081aa
YP
1401 }
1402 }
1403
1404 /* Apply permission and bound checks if applicable */
1405 if (cmd->verify && cmd->verify(dev, slave, vhcr, inbox)) {
1406 mlx4_warn(dev, "Command:0x%x from slave: %d failed protection "
1407 "checks for resource_id:%d\n", vhcr->op, slave,
1408 vhcr->in_modifier);
72be84f1 1409 vhcr_cmd->status = CMD_STAT_BAD_OP;
e8f081aa
YP
1410 goto out_status;
1411 }
1412
1413 /* Allocate outbox */
1414 if (cmd->has_outbox) {
1415 outbox = mlx4_alloc_cmd_mailbox(dev);
1416 if (IS_ERR(outbox)) {
72be84f1 1417 vhcr_cmd->status = CMD_STAT_BAD_SIZE;
e8f081aa 1418 outbox = NULL;
72be84f1 1419 goto out_status;
e8f081aa
YP
1420 }
1421 }
1422
1423 /* Execute the command! */
1424 if (cmd->wrapper) {
72be84f1
YP
1425 err = cmd->wrapper(dev, slave, vhcr, inbox, outbox,
1426 cmd);
e8f081aa
YP
1427 if (cmd->out_is_imm)
1428 vhcr_cmd->out_param = cpu_to_be64(vhcr->out_param);
1429 } else {
1430 in_param = cmd->has_inbox ? (u64) inbox->dma :
1431 vhcr->in_param;
1432 out_param = cmd->has_outbox ? (u64) outbox->dma :
1433 vhcr->out_param;
72be84f1
YP
1434 err = __mlx4_cmd(dev, in_param, &out_param,
1435 cmd->out_is_imm, vhcr->in_modifier,
1436 vhcr->op_modifier, vhcr->op,
1437 MLX4_CMD_TIME_CLASS_A,
1438 MLX4_CMD_NATIVE);
e8f081aa
YP
1439
1440 if (cmd->out_is_imm) {
1441 vhcr->out_param = out_param;
1442 vhcr_cmd->out_param = cpu_to_be64(vhcr->out_param);
1443 }
1444 }
1445
72be84f1
YP
1446 if (err) {
1447 mlx4_warn(dev, "vhcr command:0x%x slave:%d failed with"
1448 " error:%d, status %d\n",
1449 vhcr->op, slave, vhcr->errno, err);
1450 vhcr_cmd->status = mlx4_errno_to_status(err);
1451 goto out_status;
1452 }
1453
1454
e8f081aa 1455 /* Write outbox if command completed successfully */
72be84f1 1456 if (cmd->has_outbox && !vhcr_cmd->status) {
e8f081aa
YP
1457 ret = mlx4_ACCESS_MEM(dev, outbox->dma, slave,
1458 vhcr->out_param,
1459 MLX4_MAILBOX_SIZE, MLX4_CMD_WRAPPED);
1460 if (ret) {
72be84f1
YP
1461 /* If we failed to write back the outbox after the
1462 *command was successfully executed, we must fail this
1463 * slave, as it is now in undefined state */
e8f081aa
YP
1464 mlx4_err(dev, "%s:Failed writing outbox\n", __func__);
1465 goto out;
1466 }
1467 }
1468
1469out_status:
1470 /* DMA back vhcr result */
1471 if (!in_vhcr) {
1472 ret = mlx4_ACCESS_MEM(dev, priv->mfunc.vhcr_dma, slave,
1473 priv->mfunc.master.slave_state[slave].vhcr_dma,
1474 ALIGN(sizeof(struct mlx4_vhcr),
1475 MLX4_ACCESS_MEM_ALIGN),
1476 MLX4_CMD_WRAPPED);
1477 if (ret)
1478 mlx4_err(dev, "%s:Failed writing vhcr result\n",
1479 __func__);
1480 else if (vhcr->e_bit &&
1481 mlx4_GEN_EQE(dev, slave, &priv->mfunc.master.cmd_eqe))
1482 mlx4_warn(dev, "Failed to generate command completion "
1483 "eqe for slave %d\n", slave);
1484 }
1485
1486out:
1487 kfree(vhcr);
1488 mlx4_free_cmd_mailbox(dev, inbox);
1489 mlx4_free_cmd_mailbox(dev, outbox);
1490 return ret;
1491}
1492
0eb62b93
RE
1493static int mlx4_master_activate_admin_state(struct mlx4_priv *priv, int slave)
1494{
1495 int port;
1496 for (port = 1; port <= MLX4_MAX_PORTS; port++) {
1497 priv->mfunc.master.vf_oper[slave].vport[port].state =
1498 priv->mfunc.master.vf_admin[slave].vport[port];
1499 }
1500 return 0;
1501}
1502
e8f081aa
YP
1503static void mlx4_master_do_cmd(struct mlx4_dev *dev, int slave, u8 cmd,
1504 u16 param, u8 toggle)
1505{
1506 struct mlx4_priv *priv = mlx4_priv(dev);
1507 struct mlx4_slave_state *slave_state = priv->mfunc.master.slave_state;
1508 u32 reply;
e8f081aa 1509 u8 is_going_down = 0;
803143fb 1510 int i;
311f813a 1511 unsigned long flags;
e8f081aa
YP
1512
1513 slave_state[slave].comm_toggle ^= 1;
1514 reply = (u32) slave_state[slave].comm_toggle << 31;
1515 if (toggle != slave_state[slave].comm_toggle) {
1516 mlx4_warn(dev, "Incorrect toggle %d from slave %d. *** MASTER"
1517 "STATE COMPROMISIED ***\n", toggle, slave);
1518 goto reset_slave;
1519 }
1520 if (cmd == MLX4_COMM_CMD_RESET) {
1521 mlx4_warn(dev, "Received reset from slave:%d\n", slave);
1522 slave_state[slave].active = false;
803143fb
MA
1523 for (i = 0; i < MLX4_EVENT_TYPES_NUM; ++i) {
1524 slave_state[slave].event_eq[i].eqn = -1;
1525 slave_state[slave].event_eq[i].token = 0;
1526 }
e8f081aa
YP
1527 /*check if we are in the middle of FLR process,
1528 if so return "retry" status to the slave*/
162344ed 1529 if (MLX4_COMM_CMD_FLR == slave_state[slave].last_cmd)
e8f081aa 1530 goto inform_slave_state;
e8f081aa 1531
fc06573d
JM
1532 mlx4_dispatch_event(dev, MLX4_DEV_EVENT_SLAVE_SHUTDOWN, slave);
1533
e8f081aa
YP
1534 /* write the version in the event field */
1535 reply |= mlx4_comm_get_version();
1536
1537 goto reset_slave;
1538 }
1539 /*command from slave in the middle of FLR*/
1540 if (cmd != MLX4_COMM_CMD_RESET &&
1541 MLX4_COMM_CMD_FLR == slave_state[slave].last_cmd) {
1542 mlx4_warn(dev, "slave:%d is Trying to run cmd(0x%x) "
1543 "in the middle of FLR\n", slave, cmd);
1544 return;
1545 }
1546
1547 switch (cmd) {
1548 case MLX4_COMM_CMD_VHCR0:
1549 if (slave_state[slave].last_cmd != MLX4_COMM_CMD_RESET)
1550 goto reset_slave;
1551 slave_state[slave].vhcr_dma = ((u64) param) << 48;
1552 priv->mfunc.master.slave_state[slave].cookie = 0;
1553 mutex_init(&priv->mfunc.master.gen_eqe_mutex[slave]);
1554 break;
1555 case MLX4_COMM_CMD_VHCR1:
1556 if (slave_state[slave].last_cmd != MLX4_COMM_CMD_VHCR0)
1557 goto reset_slave;
1558 slave_state[slave].vhcr_dma |= ((u64) param) << 32;
1559 break;
1560 case MLX4_COMM_CMD_VHCR2:
1561 if (slave_state[slave].last_cmd != MLX4_COMM_CMD_VHCR1)
1562 goto reset_slave;
1563 slave_state[slave].vhcr_dma |= ((u64) param) << 16;
1564 break;
1565 case MLX4_COMM_CMD_VHCR_EN:
1566 if (slave_state[slave].last_cmd != MLX4_COMM_CMD_VHCR2)
1567 goto reset_slave;
1568 slave_state[slave].vhcr_dma |= param;
0eb62b93 1569 mlx4_master_activate_admin_state(priv, slave);
e8f081aa 1570 slave_state[slave].active = true;
fc06573d 1571 mlx4_dispatch_event(dev, MLX4_DEV_EVENT_SLAVE_INIT, slave);
e8f081aa
YP
1572 break;
1573 case MLX4_COMM_CMD_VHCR_POST:
1574 if ((slave_state[slave].last_cmd != MLX4_COMM_CMD_VHCR_EN) &&
1575 (slave_state[slave].last_cmd != MLX4_COMM_CMD_VHCR_POST))
1576 goto reset_slave;
f3d4c89e
RD
1577
1578 mutex_lock(&priv->cmd.slave_cmd_mutex);
e8f081aa
YP
1579 if (mlx4_master_process_vhcr(dev, slave, NULL)) {
1580 mlx4_err(dev, "Failed processing vhcr for slave:%d,"
8d9eb069 1581 " resetting slave.\n", slave);
f3d4c89e 1582 mutex_unlock(&priv->cmd.slave_cmd_mutex);
e8f081aa
YP
1583 goto reset_slave;
1584 }
f3d4c89e 1585 mutex_unlock(&priv->cmd.slave_cmd_mutex);
e8f081aa
YP
1586 break;
1587 default:
1588 mlx4_warn(dev, "Bad comm cmd:%d from slave:%d\n", cmd, slave);
1589 goto reset_slave;
1590 }
311f813a 1591 spin_lock_irqsave(&priv->mfunc.master.slave_state_lock, flags);
e8f081aa
YP
1592 if (!slave_state[slave].is_slave_going_down)
1593 slave_state[slave].last_cmd = cmd;
1594 else
1595 is_going_down = 1;
311f813a 1596 spin_unlock_irqrestore(&priv->mfunc.master.slave_state_lock, flags);
e8f081aa
YP
1597 if (is_going_down) {
1598 mlx4_warn(dev, "Slave is going down aborting command(%d)"
1599 " executing from slave:%d\n",
1600 cmd, slave);
1601 return;
1602 }
1603 __raw_writel((__force u32) cpu_to_be32(reply),
1604 &priv->mfunc.comm[slave].slave_read);
1605 mmiowb();
1606
1607 return;
1608
1609reset_slave:
c82e9aa0
EC
1610 /* cleanup any slave resources */
1611 mlx4_delete_all_resources_for_slave(dev, slave);
311f813a 1612 spin_lock_irqsave(&priv->mfunc.master.slave_state_lock, flags);
e8f081aa
YP
1613 if (!slave_state[slave].is_slave_going_down)
1614 slave_state[slave].last_cmd = MLX4_COMM_CMD_RESET;
311f813a 1615 spin_unlock_irqrestore(&priv->mfunc.master.slave_state_lock, flags);
e8f081aa
YP
1616 /*with slave in the middle of flr, no need to clean resources again.*/
1617inform_slave_state:
1618 memset(&slave_state[slave].event_eq, 0,
1619 sizeof(struct mlx4_slave_event_eq_info));
1620 __raw_writel((__force u32) cpu_to_be32(reply),
1621 &priv->mfunc.comm[slave].slave_read);
1622 wmb();
1623}
1624
1625/* master command processing */
1626void mlx4_master_comm_channel(struct work_struct *work)
1627{
1628 struct mlx4_mfunc_master_ctx *master =
1629 container_of(work,
1630 struct mlx4_mfunc_master_ctx,
1631 comm_work);
1632 struct mlx4_mfunc *mfunc =
1633 container_of(master, struct mlx4_mfunc, master);
1634 struct mlx4_priv *priv =
1635 container_of(mfunc, struct mlx4_priv, mfunc);
1636 struct mlx4_dev *dev = &priv->dev;
1637 __be32 *bit_vec;
1638 u32 comm_cmd;
1639 u32 vec;
1640 int i, j, slave;
1641 int toggle;
1642 int served = 0;
1643 int reported = 0;
1644 u32 slt;
1645
1646 bit_vec = master->comm_arm_bit_vector;
1647 for (i = 0; i < COMM_CHANNEL_BIT_ARRAY_SIZE; i++) {
1648 vec = be32_to_cpu(bit_vec[i]);
1649 for (j = 0; j < 32; j++) {
1650 if (!(vec & (1 << j)))
1651 continue;
1652 ++reported;
1653 slave = (i * 32) + j;
1654 comm_cmd = swab32(readl(
1655 &mfunc->comm[slave].slave_write));
1656 slt = swab32(readl(&mfunc->comm[slave].slave_read))
1657 >> 31;
1658 toggle = comm_cmd >> 31;
1659 if (toggle != slt) {
1660 if (master->slave_state[slave].comm_toggle
1661 != slt) {
1662 printk(KERN_INFO "slave %d out of sync."
1663 " read toggle %d, state toggle %d. "
1664 "Resynching.\n", slave, slt,
1665 master->slave_state[slave].comm_toggle);
1666 master->slave_state[slave].comm_toggle =
1667 slt;
1668 }
1669 mlx4_master_do_cmd(dev, slave,
1670 comm_cmd >> 16 & 0xff,
1671 comm_cmd & 0xffff, toggle);
1672 ++served;
1673 }
1674 }
1675 }
1676
1677 if (reported && reported != served)
1678 mlx4_warn(dev, "Got command event with bitmask from %d slaves"
1679 " but %d were served\n",
1680 reported, served);
1681
1682 if (mlx4_ARM_COMM_CHANNEL(dev))
1683 mlx4_warn(dev, "Failed to arm comm channel events\n");
1684}
1685
ab9c17a0
JM
1686static int sync_toggles(struct mlx4_dev *dev)
1687{
1688 struct mlx4_priv *priv = mlx4_priv(dev);
1689 int wr_toggle;
1690 int rd_toggle;
1691 unsigned long end;
1692
1693 wr_toggle = swab32(readl(&priv->mfunc.comm->slave_write)) >> 31;
1694 end = jiffies + msecs_to_jiffies(5000);
1695
1696 while (time_before(jiffies, end)) {
1697 rd_toggle = swab32(readl(&priv->mfunc.comm->slave_read)) >> 31;
1698 if (rd_toggle == wr_toggle) {
1699 priv->cmd.comm_toggle = rd_toggle;
1700 return 0;
1701 }
1702
1703 cond_resched();
1704 }
1705
1706 /*
1707 * we could reach here if for example the previous VM using this
1708 * function misbehaved and left the channel with unsynced state. We
1709 * should fix this here and give this VM a chance to use a properly
1710 * synced channel
1711 */
1712 mlx4_warn(dev, "recovering from previously mis-behaved VM\n");
1713 __raw_writel((__force u32) 0, &priv->mfunc.comm->slave_read);
1714 __raw_writel((__force u32) 0, &priv->mfunc.comm->slave_write);
1715 priv->cmd.comm_toggle = 0;
1716
1717 return 0;
1718}
1719
1720int mlx4_multi_func_init(struct mlx4_dev *dev)
1721{
1722 struct mlx4_priv *priv = mlx4_priv(dev);
1723 struct mlx4_slave_state *s_state;
803143fb 1724 int i, j, err, port;
ab9c17a0 1725
ab9c17a0
JM
1726 if (mlx4_is_master(dev))
1727 priv->mfunc.comm =
1728 ioremap(pci_resource_start(dev->pdev, priv->fw.comm_bar) +
1729 priv->fw.comm_base, MLX4_COMM_PAGESIZE);
1730 else
1731 priv->mfunc.comm =
1732 ioremap(pci_resource_start(dev->pdev, 2) +
1733 MLX4_SLAVE_COMM_BASE, MLX4_COMM_PAGESIZE);
1734 if (!priv->mfunc.comm) {
1735 mlx4_err(dev, "Couldn't map communication vector.\n");
1736 goto err_vhcr;
1737 }
1738
1739 if (mlx4_is_master(dev)) {
1740 priv->mfunc.master.slave_state =
1741 kzalloc(dev->num_slaves *
1742 sizeof(struct mlx4_slave_state), GFP_KERNEL);
1743 if (!priv->mfunc.master.slave_state)
1744 goto err_comm;
1745
0eb62b93
RE
1746 priv->mfunc.master.vf_admin =
1747 kzalloc(dev->num_slaves *
1748 sizeof(struct mlx4_vf_admin_state), GFP_KERNEL);
1749 if (!priv->mfunc.master.vf_admin)
1750 goto err_comm_admin;
1751
1752 priv->mfunc.master.vf_oper =
1753 kzalloc(dev->num_slaves *
1754 sizeof(struct mlx4_vf_oper_state), GFP_KERNEL);
1755 if (!priv->mfunc.master.vf_oper)
1756 goto err_comm_oper;
1757
ab9c17a0
JM
1758 for (i = 0; i < dev->num_slaves; ++i) {
1759 s_state = &priv->mfunc.master.slave_state[i];
1760 s_state->last_cmd = MLX4_COMM_CMD_RESET;
803143fb
MA
1761 for (j = 0; j < MLX4_EVENT_TYPES_NUM; ++j)
1762 s_state->event_eq[j].eqn = -1;
ab9c17a0
JM
1763 __raw_writel((__force u32) 0,
1764 &priv->mfunc.comm[i].slave_write);
1765 __raw_writel((__force u32) 0,
1766 &priv->mfunc.comm[i].slave_read);
1767 mmiowb();
1768 for (port = 1; port <= MLX4_MAX_PORTS; port++) {
1769 s_state->vlan_filter[port] =
1770 kzalloc(sizeof(struct mlx4_vlan_fltr),
1771 GFP_KERNEL);
1772 if (!s_state->vlan_filter[port]) {
1773 if (--port)
1774 kfree(s_state->vlan_filter[port]);
1775 goto err_slaves;
1776 }
1777 INIT_LIST_HEAD(&s_state->mcast_filters[port]);
0eb62b93
RE
1778 priv->mfunc.master.vf_admin[i].vport[port].default_vlan = MLX4_VGT;
1779 priv->mfunc.master.vf_oper[i].vport[port].vlan_idx = NO_INDX;
1780 priv->mfunc.master.vf_oper[i].vport[port].mac_idx = NO_INDX;
ab9c17a0
JM
1781 }
1782 spin_lock_init(&s_state->lock);
1783 }
1784
08ff3235 1785 memset(&priv->mfunc.master.cmd_eqe, 0, dev->caps.eqe_size);
ab9c17a0
JM
1786 priv->mfunc.master.cmd_eqe.type = MLX4_EVENT_TYPE_CMD;
1787 INIT_WORK(&priv->mfunc.master.comm_work,
1788 mlx4_master_comm_channel);
1789 INIT_WORK(&priv->mfunc.master.slave_event_work,
1790 mlx4_gen_slave_eqe);
1791 INIT_WORK(&priv->mfunc.master.slave_flr_event_work,
1792 mlx4_master_handle_slave_flr);
1793 spin_lock_init(&priv->mfunc.master.slave_state_lock);
992e8e6e 1794 spin_lock_init(&priv->mfunc.master.slave_eq.event_lock);
ab9c17a0
JM
1795 priv->mfunc.master.comm_wq =
1796 create_singlethread_workqueue("mlx4_comm");
1797 if (!priv->mfunc.master.comm_wq)
1798 goto err_slaves;
1799
1800 if (mlx4_init_resource_tracker(dev))
1801 goto err_thread;
1802
ab9c17a0
JM
1803 err = mlx4_ARM_COMM_CHANNEL(dev);
1804 if (err) {
1805 mlx4_err(dev, " Failed to arm comm channel eq: %x\n",
1806 err);
1807 goto err_resource;
1808 }
1809
1810 } else {
1811 err = sync_toggles(dev);
1812 if (err) {
1813 mlx4_err(dev, "Couldn't sync toggles\n");
1814 goto err_comm;
1815 }
ab9c17a0
JM
1816 }
1817 return 0;
1818
1819err_resource:
b8924951 1820 mlx4_free_resource_tracker(dev, RES_TR_FREE_ALL);
ab9c17a0
JM
1821err_thread:
1822 flush_workqueue(priv->mfunc.master.comm_wq);
1823 destroy_workqueue(priv->mfunc.master.comm_wq);
1824err_slaves:
1825 while (--i) {
1826 for (port = 1; port <= MLX4_MAX_PORTS; port++)
1827 kfree(priv->mfunc.master.slave_state[i].vlan_filter[port]);
1828 }
0eb62b93
RE
1829 kfree(priv->mfunc.master.vf_oper);
1830err_comm_oper:
1831 kfree(priv->mfunc.master.vf_admin);
1832err_comm_admin:
ab9c17a0
JM
1833 kfree(priv->mfunc.master.slave_state);
1834err_comm:
1835 iounmap(priv->mfunc.comm);
1836err_vhcr:
1837 dma_free_coherent(&(dev->pdev->dev), PAGE_SIZE,
1838 priv->mfunc.vhcr,
1839 priv->mfunc.vhcr_dma);
1840 priv->mfunc.vhcr = NULL;
1841 return -ENOMEM;
1842}
1843
225c7b1f
RD
1844int mlx4_cmd_init(struct mlx4_dev *dev)
1845{
1846 struct mlx4_priv *priv = mlx4_priv(dev);
1847
1848 mutex_init(&priv->cmd.hcr_mutex);
f3d4c89e 1849 mutex_init(&priv->cmd.slave_cmd_mutex);
225c7b1f
RD
1850 sema_init(&priv->cmd.poll_sem, 1);
1851 priv->cmd.use_events = 0;
1852 priv->cmd.toggle = 1;
1853
e8f081aa
YP
1854 priv->cmd.hcr = NULL;
1855 priv->mfunc.vhcr = NULL;
1856
1857 if (!mlx4_is_slave(dev)) {
1858 priv->cmd.hcr = ioremap(pci_resource_start(dev->pdev, 0) +
1859 MLX4_HCR_BASE, MLX4_HCR_SIZE);
1860 if (!priv->cmd.hcr) {
1861 mlx4_err(dev, "Couldn't map command register.\n");
1862 return -ENOMEM;
1863 }
225c7b1f
RD
1864 }
1865
f3d4c89e
RD
1866 if (mlx4_is_mfunc(dev)) {
1867 priv->mfunc.vhcr = dma_alloc_coherent(&(dev->pdev->dev), PAGE_SIZE,
1868 &priv->mfunc.vhcr_dma,
1869 GFP_KERNEL);
d0320f75 1870 if (!priv->mfunc.vhcr)
f3d4c89e 1871 goto err_hcr;
f3d4c89e
RD
1872 }
1873
225c7b1f
RD
1874 priv->cmd.pool = pci_pool_create("mlx4_cmd", dev->pdev,
1875 MLX4_MAILBOX_SIZE,
1876 MLX4_MAILBOX_SIZE, 0);
e8f081aa 1877 if (!priv->cmd.pool)
f3d4c89e 1878 goto err_vhcr;
225c7b1f
RD
1879
1880 return 0;
e8f081aa 1881
f3d4c89e
RD
1882err_vhcr:
1883 if (mlx4_is_mfunc(dev))
1884 dma_free_coherent(&(dev->pdev->dev), PAGE_SIZE,
1885 priv->mfunc.vhcr, priv->mfunc.vhcr_dma);
1886 priv->mfunc.vhcr = NULL;
1887
e8f081aa
YP
1888err_hcr:
1889 if (!mlx4_is_slave(dev))
1890 iounmap(priv->cmd.hcr);
1891 return -ENOMEM;
225c7b1f
RD
1892}
1893
ab9c17a0
JM
1894void mlx4_multi_func_cleanup(struct mlx4_dev *dev)
1895{
1896 struct mlx4_priv *priv = mlx4_priv(dev);
1897 int i, port;
1898
1899 if (mlx4_is_master(dev)) {
1900 flush_workqueue(priv->mfunc.master.comm_wq);
1901 destroy_workqueue(priv->mfunc.master.comm_wq);
1902 for (i = 0; i < dev->num_slaves; i++) {
1903 for (port = 1; port <= MLX4_MAX_PORTS; port++)
1904 kfree(priv->mfunc.master.slave_state[i].vlan_filter[port]);
1905 }
1906 kfree(priv->mfunc.master.slave_state);
0eb62b93
RE
1907 kfree(priv->mfunc.master.vf_admin);
1908 kfree(priv->mfunc.master.vf_oper);
ab9c17a0 1909 }
f08ad06c
EE
1910
1911 iounmap(priv->mfunc.comm);
ab9c17a0
JM
1912}
1913
225c7b1f
RD
1914void mlx4_cmd_cleanup(struct mlx4_dev *dev)
1915{
1916 struct mlx4_priv *priv = mlx4_priv(dev);
1917
1918 pci_pool_destroy(priv->cmd.pool);
e8f081aa
YP
1919
1920 if (!mlx4_is_slave(dev))
1921 iounmap(priv->cmd.hcr);
f3d4c89e
RD
1922 if (mlx4_is_mfunc(dev))
1923 dma_free_coherent(&(dev->pdev->dev), PAGE_SIZE,
1924 priv->mfunc.vhcr, priv->mfunc.vhcr_dma);
1925 priv->mfunc.vhcr = NULL;
225c7b1f
RD
1926}
1927
1928/*
1929 * Switch to using events to issue FW commands (can only be called
1930 * after event queue for command events has been initialized).
1931 */
1932int mlx4_cmd_use_events(struct mlx4_dev *dev)
1933{
1934 struct mlx4_priv *priv = mlx4_priv(dev);
1935 int i;
e8f081aa 1936 int err = 0;
225c7b1f
RD
1937
1938 priv->cmd.context = kmalloc(priv->cmd.max_cmds *
1939 sizeof (struct mlx4_cmd_context),
1940 GFP_KERNEL);
1941 if (!priv->cmd.context)
1942 return -ENOMEM;
1943
1944 for (i = 0; i < priv->cmd.max_cmds; ++i) {
1945 priv->cmd.context[i].token = i;
1946 priv->cmd.context[i].next = i + 1;
1947 }
1948
1949 priv->cmd.context[priv->cmd.max_cmds - 1].next = -1;
1950 priv->cmd.free_head = 0;
1951
1952 sema_init(&priv->cmd.event_sem, priv->cmd.max_cmds);
1953 spin_lock_init(&priv->cmd.context_lock);
1954
1955 for (priv->cmd.token_mask = 1;
1956 priv->cmd.token_mask < priv->cmd.max_cmds;
1957 priv->cmd.token_mask <<= 1)
1958 ; /* nothing */
1959 --priv->cmd.token_mask;
1960
225c7b1f 1961 down(&priv->cmd.poll_sem);
e8f081aa 1962 priv->cmd.use_events = 1;
225c7b1f 1963
e8f081aa 1964 return err;
225c7b1f
RD
1965}
1966
1967/*
1968 * Switch back to polling (used when shutting down the device)
1969 */
1970void mlx4_cmd_use_polling(struct mlx4_dev *dev)
1971{
1972 struct mlx4_priv *priv = mlx4_priv(dev);
1973 int i;
1974
1975 priv->cmd.use_events = 0;
1976
1977 for (i = 0; i < priv->cmd.max_cmds; ++i)
1978 down(&priv->cmd.event_sem);
1979
1980 kfree(priv->cmd.context);
1981
1982 up(&priv->cmd.poll_sem);
1983}
1984
1985struct mlx4_cmd_mailbox *mlx4_alloc_cmd_mailbox(struct mlx4_dev *dev)
1986{
1987 struct mlx4_cmd_mailbox *mailbox;
1988
1989 mailbox = kmalloc(sizeof *mailbox, GFP_KERNEL);
1990 if (!mailbox)
1991 return ERR_PTR(-ENOMEM);
1992
1993 mailbox->buf = pci_pool_alloc(mlx4_priv(dev)->cmd.pool, GFP_KERNEL,
1994 &mailbox->dma);
1995 if (!mailbox->buf) {
1996 kfree(mailbox);
1997 return ERR_PTR(-ENOMEM);
1998 }
1999
2000 return mailbox;
2001}
2002EXPORT_SYMBOL_GPL(mlx4_alloc_cmd_mailbox);
2003
e8f081aa
YP
2004void mlx4_free_cmd_mailbox(struct mlx4_dev *dev,
2005 struct mlx4_cmd_mailbox *mailbox)
225c7b1f
RD
2006{
2007 if (!mailbox)
2008 return;
2009
2010 pci_pool_free(mlx4_priv(dev)->cmd.pool, mailbox->buf, mailbox->dma);
2011 kfree(mailbox);
2012}
2013EXPORT_SYMBOL_GPL(mlx4_free_cmd_mailbox);
e8f081aa
YP
2014
2015u32 mlx4_comm_get_version(void)
2016{
2017 return ((u32) CMD_CHAN_IF_REV << 8) | (u32) CMD_CHAN_VER;
2018}