blob: 5d940a26055c64ab71250f1d998b9b38418fb2ec [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>
Rony Efraim948e3062013-06-13 13:19:11 +030042#include <linux/mlx4/device.h>
Yevgeny Petriline8f081a2011-12-13 04:12:25 +000043#include <linux/semaphore.h>
Jack Morgenstein0a9a0182012-08-03 08:40:45 +000044#include <rdma/ib_smi.h>
Roland Dreier225c7b12007-05-08 18:00:38 -070045
46#include <asm/io.h>
47
48#include "mlx4.h"
Yevgeny Petriline8f081a2011-12-13 04:12:25 +000049#include "fw.h"
Roland Dreier225c7b12007-05-08 18:00:38 -070050
51#define CMD_POLL_TOKEN 0xffff
Yevgeny Petriline8f081a2011-12-13 04:12:25 +000052#define INBOX_MASK 0xffffffffffffff00ULL
53
54#define CMD_CHAN_VER 1
55#define CMD_CHAN_IF_REV 1
Roland Dreier225c7b12007-05-08 18:00:38 -070056
57enum {
58 /* command completed successfully: */
59 CMD_STAT_OK = 0x00,
60 /* Internal error (such as a bus error) occurred while processing command: */
61 CMD_STAT_INTERNAL_ERR = 0x01,
62 /* Operation/command not supported or opcode modifier not supported: */
63 CMD_STAT_BAD_OP = 0x02,
64 /* Parameter not supported or parameter out of range: */
65 CMD_STAT_BAD_PARAM = 0x03,
66 /* System not enabled or bad system state: */
67 CMD_STAT_BAD_SYS_STATE = 0x04,
68 /* Attempt to access reserved or unallocaterd resource: */
69 CMD_STAT_BAD_RESOURCE = 0x05,
70 /* Requested resource is currently executing a command, or is otherwise busy: */
71 CMD_STAT_RESOURCE_BUSY = 0x06,
72 /* Required capability exceeds device limits: */
73 CMD_STAT_EXCEED_LIM = 0x08,
74 /* Resource is not in the appropriate state or ownership: */
75 CMD_STAT_BAD_RES_STATE = 0x09,
76 /* Index out of range: */
77 CMD_STAT_BAD_INDEX = 0x0a,
78 /* FW image corrupted: */
79 CMD_STAT_BAD_NVMEM = 0x0b,
Jack Morgenstein899698d2008-07-22 14:19:39 -070080 /* Error in ICM mapping (e.g. not enough auxiliary ICM pages to execute command): */
81 CMD_STAT_ICM_ERROR = 0x0c,
Roland Dreier225c7b12007-05-08 18:00:38 -070082 /* Attempt to modify a QP/EE which is not in the presumed state: */
83 CMD_STAT_BAD_QP_STATE = 0x10,
84 /* Bad segment parameters (Address/Size): */
85 CMD_STAT_BAD_SEG_PARAM = 0x20,
86 /* Memory Region has Memory Windows bound to: */
87 CMD_STAT_REG_BOUND = 0x21,
88 /* HCA local attached memory not present: */
89 CMD_STAT_LAM_NOT_PRE = 0x22,
90 /* Bad management packet (silently discarded): */
91 CMD_STAT_BAD_PKT = 0x30,
92 /* More outstanding CQEs in CQ than new CQ size: */
Yevgeny Petrilincc4ac2e2009-07-06 16:10:03 -070093 CMD_STAT_BAD_SIZE = 0x40,
94 /* Multi Function device support required: */
95 CMD_STAT_MULTI_FUNC_REQ = 0x50,
Roland Dreier225c7b12007-05-08 18:00:38 -070096};
97
98enum {
99 HCR_IN_PARAM_OFFSET = 0x00,
100 HCR_IN_MODIFIER_OFFSET = 0x08,
101 HCR_OUT_PARAM_OFFSET = 0x0c,
102 HCR_TOKEN_OFFSET = 0x14,
103 HCR_STATUS_OFFSET = 0x18,
104
105 HCR_OPMOD_SHIFT = 12,
106 HCR_T_BIT = 21,
107 HCR_E_BIT = 22,
108 HCR_GO_BIT = 23
109};
110
111enum {
Dotan Barak36ce10d2007-08-07 11:18:52 +0300112 GO_BIT_TIMEOUT_MSECS = 10000
Roland Dreier225c7b12007-05-08 18:00:38 -0700113};
114
Jack Morgensteinb01978c2013-06-27 19:05:21 +0300115enum mlx4_vlan_transition {
116 MLX4_VLAN_TRANSITION_VST_VST = 0,
117 MLX4_VLAN_TRANSITION_VST_VGT = 1,
118 MLX4_VLAN_TRANSITION_VGT_VST = 2,
119 MLX4_VLAN_TRANSITION_VGT_VGT = 3,
120};
121
122
Roland Dreier225c7b12007-05-08 18:00:38 -0700123struct mlx4_cmd_context {
124 struct completion done;
125 int result;
126 int next;
127 u64 out_param;
128 u16 token;
Yevgeny Petriline8f081a2011-12-13 04:12:25 +0000129 u8 fw_status;
Roland Dreier225c7b12007-05-08 18:00:38 -0700130};
131
Yevgeny Petriline8f081a2011-12-13 04:12:25 +0000132static int mlx4_master_process_vhcr(struct mlx4_dev *dev, int slave,
133 struct mlx4_vhcr_cmd *in_vhcr);
134
Roland Dreierca281212008-04-16 21:01:04 -0700135static int mlx4_status_to_errno(u8 status)
136{
Roland Dreier225c7b12007-05-08 18:00:38 -0700137 static const int trans_table[] = {
138 [CMD_STAT_INTERNAL_ERR] = -EIO,
139 [CMD_STAT_BAD_OP] = -EPERM,
140 [CMD_STAT_BAD_PARAM] = -EINVAL,
141 [CMD_STAT_BAD_SYS_STATE] = -ENXIO,
142 [CMD_STAT_BAD_RESOURCE] = -EBADF,
143 [CMD_STAT_RESOURCE_BUSY] = -EBUSY,
144 [CMD_STAT_EXCEED_LIM] = -ENOMEM,
145 [CMD_STAT_BAD_RES_STATE] = -EBADF,
146 [CMD_STAT_BAD_INDEX] = -EBADF,
147 [CMD_STAT_BAD_NVMEM] = -EFAULT,
Jack Morgenstein899698d2008-07-22 14:19:39 -0700148 [CMD_STAT_ICM_ERROR] = -ENFILE,
Roland Dreier225c7b12007-05-08 18:00:38 -0700149 [CMD_STAT_BAD_QP_STATE] = -EINVAL,
150 [CMD_STAT_BAD_SEG_PARAM] = -EFAULT,
151 [CMD_STAT_REG_BOUND] = -EBUSY,
152 [CMD_STAT_LAM_NOT_PRE] = -EAGAIN,
153 [CMD_STAT_BAD_PKT] = -EINVAL,
154 [CMD_STAT_BAD_SIZE] = -ENOMEM,
Yevgeny Petrilincc4ac2e2009-07-06 16:10:03 -0700155 [CMD_STAT_MULTI_FUNC_REQ] = -EACCES,
Roland Dreier225c7b12007-05-08 18:00:38 -0700156 };
157
158 if (status >= ARRAY_SIZE(trans_table) ||
159 (status != CMD_STAT_OK && trans_table[status] == 0))
160 return -EIO;
161
162 return trans_table[status];
163}
164
Yevgeny Petrilin72be84f2011-12-19 04:03:53 +0000165static u8 mlx4_errno_to_status(int errno)
166{
167 switch (errno) {
168 case -EPERM:
169 return CMD_STAT_BAD_OP;
170 case -EINVAL:
171 return CMD_STAT_BAD_PARAM;
172 case -ENXIO:
173 return CMD_STAT_BAD_SYS_STATE;
174 case -EBUSY:
175 return CMD_STAT_RESOURCE_BUSY;
176 case -ENOMEM:
177 return CMD_STAT_EXCEED_LIM;
178 case -ENFILE:
179 return CMD_STAT_ICM_ERROR;
180 default:
181 return CMD_STAT_INTERNAL_ERR;
182 }
183}
184
Yevgeny Petriline8f081a2011-12-13 04:12:25 +0000185static int comm_pending(struct mlx4_dev *dev)
186{
187 struct mlx4_priv *priv = mlx4_priv(dev);
188 u32 status = readl(&priv->mfunc.comm->slave_read);
189
190 return (swab32(status) >> 31) != priv->cmd.comm_toggle;
191}
192
193static void mlx4_comm_cmd_post(struct mlx4_dev *dev, u8 cmd, u16 param)
194{
195 struct mlx4_priv *priv = mlx4_priv(dev);
196 u32 val;
197
198 priv->cmd.comm_toggle ^= 1;
199 val = param | (cmd << 16) | (priv->cmd.comm_toggle << 31);
200 __raw_writel((__force u32) cpu_to_be32(val),
201 &priv->mfunc.comm->slave_write);
202 mmiowb();
203}
204
Yevgeny Petriline8f081a2011-12-13 04:12:25 +0000205static int mlx4_comm_cmd_poll(struct mlx4_dev *dev, u8 cmd, u16 param,
206 unsigned long timeout)
207{
208 struct mlx4_priv *priv = mlx4_priv(dev);
209 unsigned long end;
210 int err = 0;
211 int ret_from_pending = 0;
212
213 /* First, verify that the master reports correct status */
214 if (comm_pending(dev)) {
Joe Perches1a91de22014-05-07 12:52:57 -0700215 mlx4_warn(dev, "Communication channel is not idle - my toggle is %d (cmd:0x%x)\n",
Yevgeny Petriline8f081a2011-12-13 04:12:25 +0000216 priv->cmd.comm_toggle, cmd);
217 return -EAGAIN;
218 }
219
220 /* Write command */
221 down(&priv->cmd.poll_sem);
222 mlx4_comm_cmd_post(dev, cmd, param);
223
224 end = msecs_to_jiffies(timeout) + jiffies;
225 while (comm_pending(dev) && time_before(jiffies, end))
226 cond_resched();
227 ret_from_pending = comm_pending(dev);
228 if (ret_from_pending) {
229 /* check if the slave is trying to boot in the middle of
230 * FLR process. The only non-zero result in the RESET command
231 * is MLX4_DELAY_RESET_SLAVE*/
232 if ((MLX4_COMM_CMD_RESET == cmd)) {
Yevgeny Petriline8f081a2011-12-13 04:12:25 +0000233 err = MLX4_DELAY_RESET_SLAVE;
234 } else {
235 mlx4_warn(dev, "Communication channel timed out\n");
236 err = -ETIMEDOUT;
237 }
238 }
239
240 up(&priv->cmd.poll_sem);
241 return err;
242}
243
244static int mlx4_comm_cmd_wait(struct mlx4_dev *dev, u8 op,
245 u16 param, unsigned long timeout)
246{
247 struct mlx4_cmd *cmd = &mlx4_priv(dev)->cmd;
248 struct mlx4_cmd_context *context;
Eugenia Emantayev58a3de02012-03-18 04:32:08 +0000249 unsigned long end;
Yevgeny Petriline8f081a2011-12-13 04:12:25 +0000250 int err = 0;
251
252 down(&cmd->event_sem);
253
254 spin_lock(&cmd->context_lock);
255 BUG_ON(cmd->free_head < 0);
256 context = &cmd->context[cmd->free_head];
257 context->token += cmd->token_mask + 1;
258 cmd->free_head = context->next;
259 spin_unlock(&cmd->context_lock);
260
261 init_completion(&context->done);
262
263 mlx4_comm_cmd_post(dev, op, param);
264
265 if (!wait_for_completion_timeout(&context->done,
266 msecs_to_jiffies(timeout))) {
Dotan Barak674925e2013-06-25 12:09:37 +0300267 mlx4_warn(dev, "communication channel command 0x%x timed out\n",
268 op);
Yevgeny Petriline8f081a2011-12-13 04:12:25 +0000269 err = -EBUSY;
270 goto out;
271 }
272
273 err = context->result;
274 if (err && context->fw_status != CMD_STAT_MULTI_FUNC_REQ) {
275 mlx4_err(dev, "command 0x%x failed: fw status = 0x%x\n",
276 op, context->fw_status);
277 goto out;
278 }
279
280out:
Eugenia Emantayev58a3de02012-03-18 04:32:08 +0000281 /* wait for comm channel ready
282 * this is necessary for prevention the race
283 * when switching between event to polling mode
284 */
285 end = msecs_to_jiffies(timeout) + jiffies;
286 while (comm_pending(dev) && time_before(jiffies, end))
287 cond_resched();
288
Yevgeny Petriline8f081a2011-12-13 04:12:25 +0000289 spin_lock(&cmd->context_lock);
290 context->next = cmd->free_head;
291 cmd->free_head = context - cmd->context;
292 spin_unlock(&cmd->context_lock);
293
294 up(&cmd->event_sem);
295 return err;
296}
297
Jack Morgensteinab9c17a2011-12-13 04:18:30 +0000298int mlx4_comm_cmd(struct mlx4_dev *dev, u8 cmd, u16 param,
Yevgeny Petriline8f081a2011-12-13 04:12:25 +0000299 unsigned long timeout)
300{
301 if (mlx4_priv(dev)->cmd.use_events)
302 return mlx4_comm_cmd_wait(dev, cmd, param, timeout);
303 return mlx4_comm_cmd_poll(dev, cmd, param, timeout);
304}
305
Roland Dreier225c7b12007-05-08 18:00:38 -0700306static int cmd_pending(struct mlx4_dev *dev)
307{
Kleber Sacilotto de Souza57dbf292012-07-20 09:55:43 +0000308 u32 status;
309
310 if (pci_channel_offline(dev->pdev))
311 return -EIO;
312
313 status = readl(mlx4_priv(dev)->cmd.hcr + HCR_STATUS_OFFSET);
Roland Dreier225c7b12007-05-08 18:00:38 -0700314
315 return (status & swab32(1 << HCR_GO_BIT)) ||
316 (mlx4_priv(dev)->cmd.toggle ==
317 !!(status & swab32(1 << HCR_T_BIT)));
318}
319
320static int mlx4_cmd_post(struct mlx4_dev *dev, u64 in_param, u64 out_param,
321 u32 in_modifier, u8 op_modifier, u16 op, u16 token,
322 int event)
323{
324 struct mlx4_cmd *cmd = &mlx4_priv(dev)->cmd;
325 u32 __iomem *hcr = cmd->hcr;
326 int ret = -EAGAIN;
327 unsigned long end;
328
329 mutex_lock(&cmd->hcr_mutex);
330
Kleber Sacilotto de Souza57dbf292012-07-20 09:55:43 +0000331 if (pci_channel_offline(dev->pdev)) {
332 /*
333 * Device is going through error recovery
334 * and cannot accept commands.
335 */
336 ret = -EIO;
337 goto out;
338 }
339
Roland Dreier225c7b12007-05-08 18:00:38 -0700340 end = jiffies;
341 if (event)
Dotan Barak36ce10d2007-08-07 11:18:52 +0300342 end += msecs_to_jiffies(GO_BIT_TIMEOUT_MSECS);
Roland Dreier225c7b12007-05-08 18:00:38 -0700343
344 while (cmd_pending(dev)) {
Kleber Sacilotto de Souza57dbf292012-07-20 09:55:43 +0000345 if (pci_channel_offline(dev->pdev)) {
346 /*
347 * Device is going through error recovery
348 * and cannot accept commands.
349 */
350 ret = -EIO;
351 goto out;
352 }
353
Yevgeny Petriline8f081a2011-12-13 04:12:25 +0000354 if (time_after_eq(jiffies, end)) {
355 mlx4_err(dev, "%s:cmd_pending failed\n", __func__);
Roland Dreier225c7b12007-05-08 18:00:38 -0700356 goto out;
Yevgeny Petriline8f081a2011-12-13 04:12:25 +0000357 }
Roland Dreier225c7b12007-05-08 18:00:38 -0700358 cond_resched();
359 }
360
361 /*
362 * We use writel (instead of something like memcpy_toio)
363 * because writes of less than 32 bits to the HCR don't work
364 * (and some architectures such as ia64 implement memcpy_toio
365 * in terms of writeb).
366 */
367 __raw_writel((__force u32) cpu_to_be32(in_param >> 32), hcr + 0);
368 __raw_writel((__force u32) cpu_to_be32(in_param & 0xfffffffful), hcr + 1);
369 __raw_writel((__force u32) cpu_to_be32(in_modifier), hcr + 2);
370 __raw_writel((__force u32) cpu_to_be32(out_param >> 32), hcr + 3);
371 __raw_writel((__force u32) cpu_to_be32(out_param & 0xfffffffful), hcr + 4);
372 __raw_writel((__force u32) cpu_to_be32(token << 16), hcr + 5);
373
374 /* __raw_writel may not order writes. */
375 wmb();
376
377 __raw_writel((__force u32) cpu_to_be32((1 << HCR_GO_BIT) |
378 (cmd->toggle << HCR_T_BIT) |
379 (event ? (1 << HCR_E_BIT) : 0) |
380 (op_modifier << HCR_OPMOD_SHIFT) |
Yevgeny Petriline8f081a2011-12-13 04:12:25 +0000381 op), hcr + 6);
Roland Dreier2e61c642007-10-09 19:59:18 -0700382
383 /*
384 * Make sure that our HCR writes don't get mixed in with
385 * writes from another CPU starting a FW command.
386 */
387 mmiowb();
388
Roland Dreier225c7b12007-05-08 18:00:38 -0700389 cmd->toggle = cmd->toggle ^ 1;
390
391 ret = 0;
392
393out:
394 mutex_unlock(&cmd->hcr_mutex);
395 return ret;
396}
397
Yevgeny Petriline8f081a2011-12-13 04:12:25 +0000398static int mlx4_slave_cmd(struct mlx4_dev *dev, u64 in_param, u64 *out_param,
399 int out_is_imm, u32 in_modifier, u8 op_modifier,
400 u16 op, unsigned long timeout)
401{
402 struct mlx4_priv *priv = mlx4_priv(dev);
403 struct mlx4_vhcr_cmd *vhcr = priv->mfunc.vhcr;
404 int ret;
405
Roland Dreierf3d4c892012-09-25 21:24:07 -0700406 mutex_lock(&priv->cmd.slave_cmd_mutex);
407
Yevgeny Petriline8f081a2011-12-13 04:12:25 +0000408 vhcr->in_param = cpu_to_be64(in_param);
409 vhcr->out_param = out_param ? cpu_to_be64(*out_param) : 0;
410 vhcr->in_modifier = cpu_to_be32(in_modifier);
411 vhcr->opcode = cpu_to_be16((((u16) op_modifier) << 12) | (op & 0xfff));
412 vhcr->token = cpu_to_be16(CMD_POLL_TOKEN);
413 vhcr->status = 0;
414 vhcr->flags = !!(priv->cmd.use_events) << 6;
Roland Dreierf3d4c892012-09-25 21:24:07 -0700415
Yevgeny Petriline8f081a2011-12-13 04:12:25 +0000416 if (mlx4_is_master(dev)) {
417 ret = mlx4_master_process_vhcr(dev, dev->caps.function, vhcr);
418 if (!ret) {
419 if (out_is_imm) {
420 if (out_param)
421 *out_param =
422 be64_to_cpu(vhcr->out_param);
423 else {
Joe Perches1a91de22014-05-07 12:52:57 -0700424 mlx4_err(dev, "response expected while output mailbox is NULL for command 0x%x\n",
425 op);
Yevgeny Petrilin72be84f2011-12-19 04:03:53 +0000426 vhcr->status = CMD_STAT_BAD_PARAM;
Yevgeny Petriline8f081a2011-12-13 04:12:25 +0000427 }
428 }
Yevgeny Petrilin72be84f2011-12-19 04:03:53 +0000429 ret = mlx4_status_to_errno(vhcr->status);
Yevgeny Petriline8f081a2011-12-13 04:12:25 +0000430 }
431 } else {
432 ret = mlx4_comm_cmd(dev, MLX4_COMM_CMD_VHCR_POST, 0,
433 MLX4_COMM_TIME + timeout);
434 if (!ret) {
435 if (out_is_imm) {
436 if (out_param)
437 *out_param =
438 be64_to_cpu(vhcr->out_param);
439 else {
Joe Perches1a91de22014-05-07 12:52:57 -0700440 mlx4_err(dev, "response expected while output mailbox is NULL for command 0x%x\n",
441 op);
Yevgeny Petrilin72be84f2011-12-19 04:03:53 +0000442 vhcr->status = CMD_STAT_BAD_PARAM;
Yevgeny Petriline8f081a2011-12-13 04:12:25 +0000443 }
444 }
Yevgeny Petrilin72be84f2011-12-19 04:03:53 +0000445 ret = mlx4_status_to_errno(vhcr->status);
Yevgeny Petriline8f081a2011-12-13 04:12:25 +0000446 } else
Joe Perches1a91de22014-05-07 12:52:57 -0700447 mlx4_err(dev, "failed execution of VHCR_POST command opcode 0x%x\n",
448 op);
Yevgeny Petriline8f081a2011-12-13 04:12:25 +0000449 }
Roland Dreierf3d4c892012-09-25 21:24:07 -0700450
451 mutex_unlock(&priv->cmd.slave_cmd_mutex);
Yevgeny Petriline8f081a2011-12-13 04:12:25 +0000452 return ret;
453}
454
Roland Dreier225c7b12007-05-08 18:00:38 -0700455static int mlx4_cmd_poll(struct mlx4_dev *dev, u64 in_param, u64 *out_param,
456 int out_is_imm, u32 in_modifier, u8 op_modifier,
457 u16 op, unsigned long timeout)
458{
459 struct mlx4_priv *priv = mlx4_priv(dev);
460 void __iomem *hcr = priv->cmd.hcr;
461 int err = 0;
462 unsigned long end;
Yevgeny Petriline8f081a2011-12-13 04:12:25 +0000463 u32 stat;
Roland Dreier225c7b12007-05-08 18:00:38 -0700464
465 down(&priv->cmd.poll_sem);
466
Kleber Sacilotto de Souza57dbf292012-07-20 09:55:43 +0000467 if (pci_channel_offline(dev->pdev)) {
468 /*
469 * Device is going through error recovery
470 * and cannot accept commands.
471 */
472 err = -EIO;
473 goto out;
474 }
475
Eyal Perryc05a1162014-05-14 12:15:13 +0300476 if (out_is_imm && !out_param) {
477 mlx4_err(dev, "response expected while output mailbox is NULL for command 0x%x\n",
478 op);
479 err = -EINVAL;
480 goto out;
481 }
482
Roland Dreier225c7b12007-05-08 18:00:38 -0700483 err = mlx4_cmd_post(dev, in_param, out_param ? *out_param : 0,
484 in_modifier, op_modifier, op, CMD_POLL_TOKEN, 0);
485 if (err)
486 goto out;
487
488 end = msecs_to_jiffies(timeout) + jiffies;
Kleber Sacilotto de Souza57dbf292012-07-20 09:55:43 +0000489 while (cmd_pending(dev) && time_before(jiffies, end)) {
490 if (pci_channel_offline(dev->pdev)) {
491 /*
492 * Device is going through error recovery
493 * and cannot accept commands.
494 */
495 err = -EIO;
496 goto out;
497 }
498
Roland Dreier225c7b12007-05-08 18:00:38 -0700499 cond_resched();
Kleber Sacilotto de Souza57dbf292012-07-20 09:55:43 +0000500 }
Roland Dreier225c7b12007-05-08 18:00:38 -0700501
502 if (cmd_pending(dev)) {
Dotan Barak674925e2013-06-25 12:09:37 +0300503 mlx4_warn(dev, "command 0x%x timed out (go bit not cleared)\n",
504 op);
Roland Dreier225c7b12007-05-08 18:00:38 -0700505 err = -ETIMEDOUT;
506 goto out;
507 }
508
509 if (out_is_imm)
510 *out_param =
511 (u64) be32_to_cpu((__force __be32)
512 __raw_readl(hcr + HCR_OUT_PARAM_OFFSET)) << 32 |
513 (u64) be32_to_cpu((__force __be32)
514 __raw_readl(hcr + HCR_OUT_PARAM_OFFSET + 4));
Yevgeny Petriline8f081a2011-12-13 04:12:25 +0000515 stat = be32_to_cpu((__force __be32)
516 __raw_readl(hcr + HCR_STATUS_OFFSET)) >> 24;
517 err = mlx4_status_to_errno(stat);
518 if (err)
519 mlx4_err(dev, "command 0x%x failed: fw status = 0x%x\n",
520 op, stat);
Roland Dreier225c7b12007-05-08 18:00:38 -0700521
522out:
523 up(&priv->cmd.poll_sem);
524 return err;
525}
526
527void mlx4_cmd_event(struct mlx4_dev *dev, u16 token, u8 status, u64 out_param)
528{
529 struct mlx4_priv *priv = mlx4_priv(dev);
530 struct mlx4_cmd_context *context =
531 &priv->cmd.context[token & priv->cmd.token_mask];
532
533 /* previously timed out command completing at long last */
534 if (token != context->token)
535 return;
536
Yevgeny Petriline8f081a2011-12-13 04:12:25 +0000537 context->fw_status = status;
Roland Dreier225c7b12007-05-08 18:00:38 -0700538 context->result = mlx4_status_to_errno(status);
539 context->out_param = out_param;
540
Roland Dreier225c7b12007-05-08 18:00:38 -0700541 complete(&context->done);
542}
543
544static int mlx4_cmd_wait(struct mlx4_dev *dev, u64 in_param, u64 *out_param,
545 int out_is_imm, u32 in_modifier, u8 op_modifier,
546 u16 op, unsigned long timeout)
547{
548 struct mlx4_cmd *cmd = &mlx4_priv(dev)->cmd;
549 struct mlx4_cmd_context *context;
550 int err = 0;
551
552 down(&cmd->event_sem);
553
554 spin_lock(&cmd->context_lock);
555 BUG_ON(cmd->free_head < 0);
556 context = &cmd->context[cmd->free_head];
Roland Dreier09815822007-07-20 21:19:43 -0700557 context->token += cmd->token_mask + 1;
Roland Dreier225c7b12007-05-08 18:00:38 -0700558 cmd->free_head = context->next;
559 spin_unlock(&cmd->context_lock);
560
Eyal Perryc05a1162014-05-14 12:15:13 +0300561 if (out_is_imm && !out_param) {
562 mlx4_err(dev, "response expected while output mailbox is NULL for command 0x%x\n",
563 op);
564 err = -EINVAL;
565 goto out;
566 }
567
Roland Dreier225c7b12007-05-08 18:00:38 -0700568 init_completion(&context->done);
569
570 mlx4_cmd_post(dev, in_param, out_param ? *out_param : 0,
571 in_modifier, op_modifier, op, context->token, 1);
572
Yevgeny Petriline8f081a2011-12-13 04:12:25 +0000573 if (!wait_for_completion_timeout(&context->done,
574 msecs_to_jiffies(timeout))) {
Dotan Barak674925e2013-06-25 12:09:37 +0300575 mlx4_warn(dev, "command 0x%x timed out (go bit not cleared)\n",
576 op);
Roland Dreier225c7b12007-05-08 18:00:38 -0700577 err = -EBUSY;
578 goto out;
579 }
580
581 err = context->result;
Yevgeny Petriline8f081a2011-12-13 04:12:25 +0000582 if (err) {
583 mlx4_err(dev, "command 0x%x failed: fw status = 0x%x\n",
584 op, context->fw_status);
Roland Dreier225c7b12007-05-08 18:00:38 -0700585 goto out;
Yevgeny Petriline8f081a2011-12-13 04:12:25 +0000586 }
Roland Dreier225c7b12007-05-08 18:00:38 -0700587
588 if (out_is_imm)
589 *out_param = context->out_param;
590
591out:
592 spin_lock(&cmd->context_lock);
593 context->next = cmd->free_head;
594 cmd->free_head = context - cmd->context;
595 spin_unlock(&cmd->context_lock);
596
597 up(&cmd->event_sem);
598 return err;
599}
600
601int __mlx4_cmd(struct mlx4_dev *dev, u64 in_param, u64 *out_param,
602 int out_is_imm, u32 in_modifier, u8 op_modifier,
Jack Morgensteinf9baff52011-12-13 04:10:51 +0000603 u16 op, unsigned long timeout, int native)
Roland Dreier225c7b12007-05-08 18:00:38 -0700604{
Kleber Sacilotto de Souza57dbf292012-07-20 09:55:43 +0000605 if (pci_channel_offline(dev->pdev))
606 return -EIO;
607
Yevgeny Petriline8f081a2011-12-13 04:12:25 +0000608 if (!mlx4_is_mfunc(dev) || (native && mlx4_is_master(dev))) {
609 if (mlx4_priv(dev)->cmd.use_events)
610 return mlx4_cmd_wait(dev, in_param, out_param,
611 out_is_imm, in_modifier,
612 op_modifier, op, timeout);
613 else
614 return mlx4_cmd_poll(dev, in_param, out_param,
615 out_is_imm, in_modifier,
616 op_modifier, op, timeout);
617 }
618 return mlx4_slave_cmd(dev, in_param, out_param, out_is_imm,
619 in_modifier, op_modifier, op, timeout);
Roland Dreier225c7b12007-05-08 18:00:38 -0700620}
621EXPORT_SYMBOL_GPL(__mlx4_cmd);
622
Yevgeny Petriline8f081a2011-12-13 04:12:25 +0000623
624static int mlx4_ARM_COMM_CHANNEL(struct mlx4_dev *dev)
625{
626 return mlx4_cmd(dev, 0, 0, 0, MLX4_CMD_ARM_COMM_CHANNEL,
627 MLX4_CMD_TIME_CLASS_B, MLX4_CMD_NATIVE);
628}
629
630static int mlx4_ACCESS_MEM(struct mlx4_dev *dev, u64 master_addr,
631 int slave, u64 slave_addr,
632 int size, int is_read)
633{
634 u64 in_param;
635 u64 out_param;
636
637 if ((slave_addr & 0xfff) | (master_addr & 0xfff) |
638 (slave & ~0x7f) | (size & 0xff)) {
Joe Perches1a91de22014-05-07 12:52:57 -0700639 mlx4_err(dev, "Bad access mem params - slave_addr:0x%llx master_addr:0x%llx slave_id:%d size:%d\n",
640 slave_addr, master_addr, slave, size);
Yevgeny Petriline8f081a2011-12-13 04:12:25 +0000641 return -EINVAL;
642 }
643
644 if (is_read) {
645 in_param = (u64) slave | slave_addr;
646 out_param = (u64) dev->caps.function | master_addr;
647 } else {
648 in_param = (u64) dev->caps.function | master_addr;
649 out_param = (u64) slave | slave_addr;
650 }
651
652 return mlx4_cmd_imm(dev, in_param, &out_param, size, 0,
653 MLX4_CMD_ACCESS_MEM,
654 MLX4_CMD_TIME_CLASS_A, MLX4_CMD_NATIVE);
655}
656
Jack Morgenstein0a9a0182012-08-03 08:40:45 +0000657static int query_pkey_block(struct mlx4_dev *dev, u8 port, u16 index, u16 *pkey,
658 struct mlx4_cmd_mailbox *inbox,
659 struct mlx4_cmd_mailbox *outbox)
660{
661 struct ib_smp *in_mad = (struct ib_smp *)(inbox->buf);
662 struct ib_smp *out_mad = (struct ib_smp *)(outbox->buf);
663 int err;
664 int i;
665
666 if (index & 0x1f)
667 return -EINVAL;
668
669 in_mad->attr_mod = cpu_to_be32(index / 32);
670
671 err = mlx4_cmd_box(dev, inbox->dma, outbox->dma, port, 3,
672 MLX4_CMD_MAD_IFC, MLX4_CMD_TIME_CLASS_C,
673 MLX4_CMD_NATIVE);
674 if (err)
675 return err;
676
677 for (i = 0; i < 32; ++i)
678 pkey[i] = be16_to_cpu(((__be16 *) out_mad->data)[i]);
679
680 return err;
681}
682
683static int get_full_pkey_table(struct mlx4_dev *dev, u8 port, u16 *table,
684 struct mlx4_cmd_mailbox *inbox,
685 struct mlx4_cmd_mailbox *outbox)
686{
687 int i;
688 int err;
689
690 for (i = 0; i < dev->caps.pkey_table_len[port]; i += 32) {
691 err = query_pkey_block(dev, port, i, table + i, inbox, outbox);
692 if (err)
693 return err;
694 }
695
696 return 0;
697}
698#define PORT_CAPABILITY_LOCATION_IN_SMP 20
699#define PORT_STATE_OFFSET 32
700
701static enum ib_port_state vf_port_state(struct mlx4_dev *dev, int port, int vf)
702{
Jack Morgensteina0c64a12012-08-03 08:40:49 +0000703 if (mlx4_get_slave_port_state(dev, vf, port) == SLAVE_PORT_UP)
704 return IB_PORT_ACTIVE;
705 else
706 return IB_PORT_DOWN;
Jack Morgenstein0a9a0182012-08-03 08:40:45 +0000707}
708
709static int mlx4_MAD_IFC_wrapper(struct mlx4_dev *dev, int slave,
710 struct mlx4_vhcr *vhcr,
711 struct mlx4_cmd_mailbox *inbox,
712 struct mlx4_cmd_mailbox *outbox,
713 struct mlx4_cmd_info *cmd)
714{
715 struct ib_smp *smp = inbox->buf;
716 u32 index;
717 u8 port;
Jack Morgenstein97982f52014-05-29 16:31:02 +0300718 u8 opcode_modifier;
Jack Morgenstein0a9a0182012-08-03 08:40:45 +0000719 u16 *table;
720 int err;
721 int vidx, pidx;
Jack Morgenstein97982f52014-05-29 16:31:02 +0300722 int network_view;
Jack Morgenstein0a9a0182012-08-03 08:40:45 +0000723 struct mlx4_priv *priv = mlx4_priv(dev);
724 struct ib_smp *outsmp = outbox->buf;
725 __be16 *outtab = (__be16 *)(outsmp->data);
726 __be32 slave_cap_mask;
Jack Morgensteinafa8fd12012-08-03 08:40:56 +0000727 __be64 slave_node_guid;
Jack Morgenstein97982f52014-05-29 16:31:02 +0300728
Jack Morgenstein0a9a0182012-08-03 08:40:45 +0000729 port = vhcr->in_modifier;
730
Jack Morgenstein97982f52014-05-29 16:31:02 +0300731 /* network-view bit is for driver use only, and should not be passed to FW */
732 opcode_modifier = vhcr->op_modifier & ~0x8; /* clear netw view bit */
733 network_view = !!(vhcr->op_modifier & 0x8);
734
Jack Morgenstein0a9a0182012-08-03 08:40:45 +0000735 if (smp->base_version == 1 &&
736 smp->mgmt_class == IB_MGMT_CLASS_SUBN_LID_ROUTED &&
737 smp->class_version == 1) {
Jack Morgenstein97982f52014-05-29 16:31:02 +0300738 /* host view is paravirtualized */
739 if (!network_view && smp->method == IB_MGMT_METHOD_GET) {
Jack Morgenstein0a9a0182012-08-03 08:40:45 +0000740 if (smp->attr_id == IB_SMP_ATTR_PKEY_TABLE) {
741 index = be32_to_cpu(smp->attr_mod);
742 if (port < 1 || port > dev->caps.num_ports)
743 return -EINVAL;
744 table = kcalloc(dev->caps.pkey_table_len[port], sizeof *table, GFP_KERNEL);
745 if (!table)
746 return -ENOMEM;
747 /* need to get the full pkey table because the paravirtualized
748 * pkeys may be scattered among several pkey blocks.
749 */
750 err = get_full_pkey_table(dev, port, table, inbox, outbox);
751 if (!err) {
752 for (vidx = index * 32; vidx < (index + 1) * 32; ++vidx) {
753 pidx = priv->virt2phys_pkey[slave][port - 1][vidx];
754 outtab[vidx % 32] = cpu_to_be16(table[pidx]);
755 }
756 }
757 kfree(table);
758 return err;
759 }
760 if (smp->attr_id == IB_SMP_ATTR_PORT_INFO) {
761 /*get the slave specific caps:*/
762 /*do the command */
763 err = mlx4_cmd_box(dev, inbox->dma, outbox->dma,
Jack Morgenstein97982f52014-05-29 16:31:02 +0300764 vhcr->in_modifier, opcode_modifier,
Jack Morgenstein0a9a0182012-08-03 08:40:45 +0000765 vhcr->op, MLX4_CMD_TIME_CLASS_C, MLX4_CMD_NATIVE);
766 /* modify the response for slaves */
767 if (!err && slave != mlx4_master_func_num(dev)) {
768 u8 *state = outsmp->data + PORT_STATE_OFFSET;
769
770 *state = (*state & 0xf0) | vf_port_state(dev, port, slave);
771 slave_cap_mask = priv->mfunc.master.slave_state[slave].ib_cap_mask[port];
772 memcpy(outsmp->data + PORT_CAPABILITY_LOCATION_IN_SMP, &slave_cap_mask, 4);
773 }
774 return err;
775 }
776 if (smp->attr_id == IB_SMP_ATTR_GUID_INFO) {
777 /* compute slave's gid block */
778 smp->attr_mod = cpu_to_be32(slave / 8);
779 /* execute cmd */
780 err = mlx4_cmd_box(dev, inbox->dma, outbox->dma,
Jack Morgenstein97982f52014-05-29 16:31:02 +0300781 vhcr->in_modifier, opcode_modifier,
Jack Morgenstein0a9a0182012-08-03 08:40:45 +0000782 vhcr->op, MLX4_CMD_TIME_CLASS_C, MLX4_CMD_NATIVE);
783 if (!err) {
784 /* if needed, move slave gid to index 0 */
785 if (slave % 8)
786 memcpy(outsmp->data,
787 outsmp->data + (slave % 8) * 8, 8);
788 /* delete all other gids */
789 memset(outsmp->data + 8, 0, 56);
790 }
791 return err;
792 }
Jack Morgensteinafa8fd12012-08-03 08:40:56 +0000793 if (smp->attr_id == IB_SMP_ATTR_NODE_INFO) {
794 err = mlx4_cmd_box(dev, inbox->dma, outbox->dma,
Jack Morgenstein97982f52014-05-29 16:31:02 +0300795 vhcr->in_modifier, opcode_modifier,
Jack Morgensteinafa8fd12012-08-03 08:40:56 +0000796 vhcr->op, MLX4_CMD_TIME_CLASS_C, MLX4_CMD_NATIVE);
797 if (!err) {
798 slave_node_guid = mlx4_get_slave_node_guid(dev, slave);
799 memcpy(outsmp->data + 12, &slave_node_guid, 8);
800 }
801 return err;
802 }
Jack Morgenstein0a9a0182012-08-03 08:40:45 +0000803 }
804 }
Jack Morgenstein97982f52014-05-29 16:31:02 +0300805
806 /* Non-privileged VFs are only allowed "host" view LID-routed 'Get' MADs.
807 * These are the MADs used by ib verbs (such as ib_query_gids).
808 */
Jack Morgenstein0a9a0182012-08-03 08:40:45 +0000809 if (slave != mlx4_master_func_num(dev) &&
Jack Morgenstein97982f52014-05-29 16:31:02 +0300810 !mlx4_vf_smi_enabled(dev, slave, port)) {
811 if (!(smp->mgmt_class == IB_MGMT_CLASS_SUBN_LID_ROUTED &&
812 smp->method == IB_MGMT_METHOD_GET) || network_view) {
813 mlx4_err(dev, "Unprivileged slave %d is trying to execute a Subnet MGMT MAD, class 0x%x, method 0x%x, view=%s for attr 0x%x. Rejecting\n",
814 slave, smp->method, smp->mgmt_class,
815 network_view ? "Network" : "Host",
816 be16_to_cpu(smp->attr_id));
817 return -EPERM;
818 }
Jack Morgenstein0a9a0182012-08-03 08:40:45 +0000819 }
Jack Morgenstein97982f52014-05-29 16:31:02 +0300820
Jack Morgenstein0a9a0182012-08-03 08:40:45 +0000821 return mlx4_cmd_box(dev, inbox->dma, outbox->dma,
Jack Morgenstein97982f52014-05-29 16:31:02 +0300822 vhcr->in_modifier, opcode_modifier,
Jack Morgenstein0a9a0182012-08-03 08:40:45 +0000823 vhcr->op, MLX4_CMD_TIME_CLASS_C, MLX4_CMD_NATIVE);
824}
825
Or Gerlitzb7475792014-03-27 14:02:02 +0200826static int mlx4_CMD_EPERM_wrapper(struct mlx4_dev *dev, int slave,
Yevgeny Petrilinfe6f7002013-07-28 18:54:21 +0300827 struct mlx4_vhcr *vhcr,
828 struct mlx4_cmd_mailbox *inbox,
829 struct mlx4_cmd_mailbox *outbox,
830 struct mlx4_cmd_info *cmd)
831{
832 return -EPERM;
833}
834
Yevgeny Petriline8f081a2011-12-13 04:12:25 +0000835int mlx4_DMA_wrapper(struct mlx4_dev *dev, int slave,
836 struct mlx4_vhcr *vhcr,
837 struct mlx4_cmd_mailbox *inbox,
838 struct mlx4_cmd_mailbox *outbox,
839 struct mlx4_cmd_info *cmd)
840{
841 u64 in_param;
842 u64 out_param;
843 int err;
844
845 in_param = cmd->has_inbox ? (u64) inbox->dma : vhcr->in_param;
846 out_param = cmd->has_outbox ? (u64) outbox->dma : vhcr->out_param;
847 if (cmd->encode_slave_id) {
848 in_param &= 0xffffffffffffff00ll;
849 in_param |= slave;
850 }
851
852 err = __mlx4_cmd(dev, in_param, &out_param, cmd->out_is_imm,
853 vhcr->in_modifier, vhcr->op_modifier, vhcr->op,
854 MLX4_CMD_TIME_CLASS_A, MLX4_CMD_NATIVE);
855
856 if (cmd->out_is_imm)
857 vhcr->out_param = out_param;
858
859 return err;
860}
861
862static struct mlx4_cmd_info cmd_info[] = {
863 {
864 .opcode = MLX4_CMD_QUERY_FW,
865 .has_inbox = false,
866 .has_outbox = true,
867 .out_is_imm = false,
868 .encode_slave_id = false,
869 .verify = NULL,
Jack Morgensteinb91cb3e2012-05-30 09:14:53 +0000870 .wrapper = mlx4_QUERY_FW_wrapper
Yevgeny Petriline8f081a2011-12-13 04:12:25 +0000871 },
872 {
873 .opcode = MLX4_CMD_QUERY_HCA,
874 .has_inbox = false,
875 .has_outbox = true,
876 .out_is_imm = false,
877 .encode_slave_id = false,
878 .verify = NULL,
879 .wrapper = NULL
880 },
881 {
882 .opcode = MLX4_CMD_QUERY_DEV_CAP,
883 .has_inbox = false,
884 .has_outbox = true,
885 .out_is_imm = false,
886 .encode_slave_id = false,
887 .verify = NULL,
Jack Morgensteinb91cb3e2012-05-30 09:14:53 +0000888 .wrapper = mlx4_QUERY_DEV_CAP_wrapper
Yevgeny Petriline8f081a2011-12-13 04:12:25 +0000889 },
Eli Cohenc82e9aa2011-12-13 04:15:24 +0000890 {
891 .opcode = MLX4_CMD_QUERY_FUNC_CAP,
892 .has_inbox = false,
893 .has_outbox = true,
894 .out_is_imm = false,
895 .encode_slave_id = false,
896 .verify = NULL,
897 .wrapper = mlx4_QUERY_FUNC_CAP_wrapper
898 },
899 {
900 .opcode = MLX4_CMD_QUERY_ADAPTER,
901 .has_inbox = false,
902 .has_outbox = true,
903 .out_is_imm = false,
904 .encode_slave_id = false,
905 .verify = NULL,
906 .wrapper = NULL
907 },
908 {
909 .opcode = MLX4_CMD_INIT_PORT,
910 .has_inbox = false,
911 .has_outbox = false,
912 .out_is_imm = false,
913 .encode_slave_id = false,
914 .verify = NULL,
915 .wrapper = mlx4_INIT_PORT_wrapper
916 },
917 {
918 .opcode = MLX4_CMD_CLOSE_PORT,
919 .has_inbox = false,
920 .has_outbox = false,
921 .out_is_imm = false,
922 .encode_slave_id = false,
923 .verify = NULL,
924 .wrapper = mlx4_CLOSE_PORT_wrapper
925 },
926 {
927 .opcode = MLX4_CMD_QUERY_PORT,
928 .has_inbox = false,
929 .has_outbox = true,
930 .out_is_imm = false,
931 .encode_slave_id = false,
932 .verify = NULL,
933 .wrapper = mlx4_QUERY_PORT_wrapper
934 },
935 {
Eugenia Emantayevffe455a2011-12-13 04:16:21 +0000936 .opcode = MLX4_CMD_SET_PORT,
937 .has_inbox = true,
938 .has_outbox = false,
939 .out_is_imm = false,
940 .encode_slave_id = false,
941 .verify = NULL,
942 .wrapper = mlx4_SET_PORT_wrapper
943 },
944 {
Eli Cohenc82e9aa2011-12-13 04:15:24 +0000945 .opcode = MLX4_CMD_MAP_EQ,
946 .has_inbox = false,
947 .has_outbox = false,
948 .out_is_imm = false,
949 .encode_slave_id = false,
950 .verify = NULL,
951 .wrapper = mlx4_MAP_EQ_wrapper
952 },
953 {
954 .opcode = MLX4_CMD_SW2HW_EQ,
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_EQ_wrapper
961 },
962 {
963 .opcode = MLX4_CMD_HW_HEALTH_CHECK,
964 .has_inbox = false,
965 .has_outbox = false,
966 .out_is_imm = false,
967 .encode_slave_id = false,
968 .verify = NULL,
969 .wrapper = NULL
970 },
971 {
972 .opcode = MLX4_CMD_NOP,
973 .has_inbox = false,
974 .has_outbox = false,
975 .out_is_imm = false,
976 .encode_slave_id = false,
977 .verify = NULL,
978 .wrapper = NULL
979 },
980 {
Or Gerlitzd18f1412014-03-27 14:02:03 +0200981 .opcode = MLX4_CMD_CONFIG_DEV,
982 .has_inbox = false,
983 .has_outbox = false,
984 .out_is_imm = false,
985 .encode_slave_id = false,
986 .verify = NULL,
987 .wrapper = mlx4_CMD_EPERM_wrapper
988 },
989 {
Eli Cohenc82e9aa2011-12-13 04:15:24 +0000990 .opcode = MLX4_CMD_ALLOC_RES,
991 .has_inbox = false,
992 .has_outbox = false,
993 .out_is_imm = true,
994 .encode_slave_id = false,
995 .verify = NULL,
996 .wrapper = mlx4_ALLOC_RES_wrapper
997 },
998 {
999 .opcode = MLX4_CMD_FREE_RES,
1000 .has_inbox = false,
1001 .has_outbox = false,
1002 .out_is_imm = false,
1003 .encode_slave_id = false,
1004 .verify = NULL,
1005 .wrapper = mlx4_FREE_RES_wrapper
1006 },
1007 {
1008 .opcode = MLX4_CMD_SW2HW_MPT,
1009 .has_inbox = true,
1010 .has_outbox = false,
1011 .out_is_imm = false,
1012 .encode_slave_id = true,
1013 .verify = NULL,
1014 .wrapper = mlx4_SW2HW_MPT_wrapper
1015 },
1016 {
1017 .opcode = MLX4_CMD_QUERY_MPT,
1018 .has_inbox = false,
1019 .has_outbox = true,
1020 .out_is_imm = false,
1021 .encode_slave_id = false,
1022 .verify = NULL,
1023 .wrapper = mlx4_QUERY_MPT_wrapper
1024 },
1025 {
1026 .opcode = MLX4_CMD_HW2SW_MPT,
1027 .has_inbox = false,
1028 .has_outbox = false,
1029 .out_is_imm = false,
1030 .encode_slave_id = false,
1031 .verify = NULL,
1032 .wrapper = mlx4_HW2SW_MPT_wrapper
1033 },
1034 {
1035 .opcode = MLX4_CMD_READ_MTT,
1036 .has_inbox = false,
1037 .has_outbox = true,
1038 .out_is_imm = false,
1039 .encode_slave_id = false,
1040 .verify = NULL,
1041 .wrapper = NULL
1042 },
1043 {
1044 .opcode = MLX4_CMD_WRITE_MTT,
1045 .has_inbox = true,
1046 .has_outbox = false,
1047 .out_is_imm = false,
1048 .encode_slave_id = false,
1049 .verify = NULL,
1050 .wrapper = mlx4_WRITE_MTT_wrapper
1051 },
1052 {
1053 .opcode = MLX4_CMD_SYNC_TPT,
1054 .has_inbox = true,
1055 .has_outbox = false,
1056 .out_is_imm = false,
1057 .encode_slave_id = false,
1058 .verify = NULL,
1059 .wrapper = NULL
1060 },
1061 {
1062 .opcode = MLX4_CMD_HW2SW_EQ,
1063 .has_inbox = false,
1064 .has_outbox = true,
1065 .out_is_imm = false,
1066 .encode_slave_id = true,
1067 .verify = NULL,
1068 .wrapper = mlx4_HW2SW_EQ_wrapper
1069 },
1070 {
1071 .opcode = MLX4_CMD_QUERY_EQ,
1072 .has_inbox = false,
1073 .has_outbox = true,
1074 .out_is_imm = false,
1075 .encode_slave_id = true,
1076 .verify = NULL,
1077 .wrapper = mlx4_QUERY_EQ_wrapper
1078 },
1079 {
1080 .opcode = MLX4_CMD_SW2HW_CQ,
1081 .has_inbox = true,
1082 .has_outbox = false,
1083 .out_is_imm = false,
1084 .encode_slave_id = true,
1085 .verify = NULL,
1086 .wrapper = mlx4_SW2HW_CQ_wrapper
1087 },
1088 {
1089 .opcode = MLX4_CMD_HW2SW_CQ,
1090 .has_inbox = false,
1091 .has_outbox = false,
1092 .out_is_imm = false,
1093 .encode_slave_id = false,
1094 .verify = NULL,
1095 .wrapper = mlx4_HW2SW_CQ_wrapper
1096 },
1097 {
1098 .opcode = MLX4_CMD_QUERY_CQ,
1099 .has_inbox = false,
1100 .has_outbox = true,
1101 .out_is_imm = false,
1102 .encode_slave_id = false,
1103 .verify = NULL,
1104 .wrapper = mlx4_QUERY_CQ_wrapper
1105 },
1106 {
1107 .opcode = MLX4_CMD_MODIFY_CQ,
1108 .has_inbox = true,
1109 .has_outbox = false,
1110 .out_is_imm = true,
1111 .encode_slave_id = false,
1112 .verify = NULL,
1113 .wrapper = mlx4_MODIFY_CQ_wrapper
1114 },
1115 {
1116 .opcode = MLX4_CMD_SW2HW_SRQ,
1117 .has_inbox = true,
1118 .has_outbox = false,
1119 .out_is_imm = false,
1120 .encode_slave_id = true,
1121 .verify = NULL,
1122 .wrapper = mlx4_SW2HW_SRQ_wrapper
1123 },
1124 {
1125 .opcode = MLX4_CMD_HW2SW_SRQ,
1126 .has_inbox = false,
1127 .has_outbox = false,
1128 .out_is_imm = false,
1129 .encode_slave_id = false,
1130 .verify = NULL,
1131 .wrapper = mlx4_HW2SW_SRQ_wrapper
1132 },
1133 {
1134 .opcode = MLX4_CMD_QUERY_SRQ,
1135 .has_inbox = false,
1136 .has_outbox = true,
1137 .out_is_imm = false,
1138 .encode_slave_id = false,
1139 .verify = NULL,
1140 .wrapper = mlx4_QUERY_SRQ_wrapper
1141 },
1142 {
1143 .opcode = MLX4_CMD_ARM_SRQ,
1144 .has_inbox = false,
1145 .has_outbox = false,
1146 .out_is_imm = false,
1147 .encode_slave_id = false,
1148 .verify = NULL,
1149 .wrapper = mlx4_ARM_SRQ_wrapper
1150 },
1151 {
1152 .opcode = MLX4_CMD_RST2INIT_QP,
1153 .has_inbox = true,
1154 .has_outbox = false,
1155 .out_is_imm = false,
1156 .encode_slave_id = true,
1157 .verify = NULL,
1158 .wrapper = mlx4_RST2INIT_QP_wrapper
1159 },
1160 {
1161 .opcode = MLX4_CMD_INIT2INIT_QP,
1162 .has_inbox = true,
1163 .has_outbox = false,
1164 .out_is_imm = false,
1165 .encode_slave_id = false,
1166 .verify = NULL,
Jack Morgenstein54679e12012-08-03 08:40:43 +00001167 .wrapper = mlx4_INIT2INIT_QP_wrapper
Eli Cohenc82e9aa2011-12-13 04:15:24 +00001168 },
1169 {
1170 .opcode = MLX4_CMD_INIT2RTR_QP,
1171 .has_inbox = true,
1172 .has_outbox = false,
1173 .out_is_imm = false,
1174 .encode_slave_id = false,
1175 .verify = NULL,
1176 .wrapper = mlx4_INIT2RTR_QP_wrapper
1177 },
1178 {
1179 .opcode = MLX4_CMD_RTR2RTS_QP,
1180 .has_inbox = true,
1181 .has_outbox = false,
1182 .out_is_imm = false,
1183 .encode_slave_id = false,
1184 .verify = NULL,
Jack Morgenstein54679e12012-08-03 08:40:43 +00001185 .wrapper = mlx4_RTR2RTS_QP_wrapper
Eli Cohenc82e9aa2011-12-13 04:15:24 +00001186 },
1187 {
1188 .opcode = MLX4_CMD_RTS2RTS_QP,
1189 .has_inbox = true,
1190 .has_outbox = false,
1191 .out_is_imm = false,
1192 .encode_slave_id = false,
1193 .verify = NULL,
Jack Morgenstein54679e12012-08-03 08:40:43 +00001194 .wrapper = mlx4_RTS2RTS_QP_wrapper
Eli Cohenc82e9aa2011-12-13 04:15:24 +00001195 },
1196 {
1197 .opcode = MLX4_CMD_SQERR2RTS_QP,
1198 .has_inbox = true,
1199 .has_outbox = false,
1200 .out_is_imm = false,
1201 .encode_slave_id = false,
1202 .verify = NULL,
Jack Morgenstein54679e12012-08-03 08:40:43 +00001203 .wrapper = mlx4_SQERR2RTS_QP_wrapper
Eli Cohenc82e9aa2011-12-13 04:15:24 +00001204 },
1205 {
1206 .opcode = MLX4_CMD_2ERR_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_RTS2SQD_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 },
1223 {
1224 .opcode = MLX4_CMD_SQD2SQD_QP,
1225 .has_inbox = true,
1226 .has_outbox = false,
1227 .out_is_imm = false,
1228 .encode_slave_id = false,
1229 .verify = NULL,
Jack Morgenstein54679e12012-08-03 08:40:43 +00001230 .wrapper = mlx4_SQD2SQD_QP_wrapper
Eli Cohenc82e9aa2011-12-13 04:15:24 +00001231 },
1232 {
1233 .opcode = MLX4_CMD_SQD2RTS_QP,
1234 .has_inbox = true,
1235 .has_outbox = false,
1236 .out_is_imm = false,
1237 .encode_slave_id = false,
1238 .verify = NULL,
Jack Morgenstein54679e12012-08-03 08:40:43 +00001239 .wrapper = mlx4_SQD2RTS_QP_wrapper
Eli Cohenc82e9aa2011-12-13 04:15:24 +00001240 },
1241 {
1242 .opcode = MLX4_CMD_2RST_QP,
1243 .has_inbox = false,
1244 .has_outbox = false,
1245 .out_is_imm = false,
1246 .encode_slave_id = false,
1247 .verify = NULL,
1248 .wrapper = mlx4_2RST_QP_wrapper
1249 },
1250 {
1251 .opcode = MLX4_CMD_QUERY_QP,
1252 .has_inbox = false,
1253 .has_outbox = true,
1254 .out_is_imm = false,
1255 .encode_slave_id = false,
1256 .verify = NULL,
1257 .wrapper = mlx4_GEN_QP_wrapper
1258 },
1259 {
1260 .opcode = MLX4_CMD_SUSPEND_QP,
1261 .has_inbox = false,
1262 .has_outbox = false,
1263 .out_is_imm = false,
1264 .encode_slave_id = false,
1265 .verify = NULL,
1266 .wrapper = mlx4_GEN_QP_wrapper
1267 },
1268 {
1269 .opcode = MLX4_CMD_UNSUSPEND_QP,
1270 .has_inbox = false,
1271 .has_outbox = false,
1272 .out_is_imm = false,
1273 .encode_slave_id = false,
1274 .verify = NULL,
1275 .wrapper = mlx4_GEN_QP_wrapper
1276 },
1277 {
Jack Morgensteinb01978c2013-06-27 19:05:21 +03001278 .opcode = MLX4_CMD_UPDATE_QP,
Matan Barakce8d9e02014-05-15 15:29:27 +03001279 .has_inbox = true,
Jack Morgensteinb01978c2013-06-27 19:05:21 +03001280 .has_outbox = false,
1281 .out_is_imm = false,
1282 .encode_slave_id = false,
1283 .verify = NULL,
Matan Barakce8d9e02014-05-15 15:29:27 +03001284 .wrapper = mlx4_UPDATE_QP_wrapper
Jack Morgensteinb01978c2013-06-27 19:05:21 +03001285 },
1286 {
Yevgeny Petrilinfe6f7002013-07-28 18:54:21 +03001287 .opcode = MLX4_CMD_GET_OP_REQ,
1288 .has_inbox = false,
1289 .has_outbox = false,
1290 .out_is_imm = false,
1291 .encode_slave_id = false,
1292 .verify = NULL,
Or Gerlitzb7475792014-03-27 14:02:02 +02001293 .wrapper = mlx4_CMD_EPERM_wrapper,
Yevgeny Petrilinfe6f7002013-07-28 18:54:21 +03001294 },
1295 {
Jack Morgenstein0a9a0182012-08-03 08:40:45 +00001296 .opcode = MLX4_CMD_CONF_SPECIAL_QP,
1297 .has_inbox = false,
1298 .has_outbox = false,
1299 .out_is_imm = false,
1300 .encode_slave_id = false,
1301 .verify = NULL, /* XXX verify: only demux can do this */
1302 .wrapper = NULL
1303 },
1304 {
1305 .opcode = MLX4_CMD_MAD_IFC,
1306 .has_inbox = true,
1307 .has_outbox = true,
1308 .out_is_imm = false,
1309 .encode_slave_id = false,
1310 .verify = NULL,
1311 .wrapper = mlx4_MAD_IFC_wrapper
1312 },
1313 {
Eli Cohenc82e9aa2011-12-13 04:15:24 +00001314 .opcode = MLX4_CMD_QUERY_IF_STAT,
1315 .has_inbox = false,
1316 .has_outbox = true,
1317 .out_is_imm = false,
1318 .encode_slave_id = false,
1319 .verify = NULL,
1320 .wrapper = mlx4_QUERY_IF_STAT_wrapper
1321 },
1322 /* Native multicast commands are not available for guests */
1323 {
1324 .opcode = MLX4_CMD_QP_ATTACH,
1325 .has_inbox = true,
1326 .has_outbox = false,
1327 .out_is_imm = false,
1328 .encode_slave_id = false,
1329 .verify = NULL,
1330 .wrapper = mlx4_QP_ATTACH_wrapper
1331 },
1332 {
Eugenia Emantayev0ec2c0f2011-12-13 04:16:02 +00001333 .opcode = MLX4_CMD_PROMISC,
1334 .has_inbox = false,
1335 .has_outbox = false,
1336 .out_is_imm = false,
1337 .encode_slave_id = false,
1338 .verify = NULL,
1339 .wrapper = mlx4_PROMISC_wrapper
1340 },
Eugenia Emantayevffe455a2011-12-13 04:16:21 +00001341 /* Ethernet specific commands */
1342 {
1343 .opcode = MLX4_CMD_SET_VLAN_FLTR,
1344 .has_inbox = true,
1345 .has_outbox = false,
1346 .out_is_imm = false,
1347 .encode_slave_id = false,
1348 .verify = NULL,
1349 .wrapper = mlx4_SET_VLAN_FLTR_wrapper
1350 },
1351 {
1352 .opcode = MLX4_CMD_SET_MCAST_FLTR,
1353 .has_inbox = false,
1354 .has_outbox = false,
1355 .out_is_imm = false,
1356 .encode_slave_id = false,
1357 .verify = NULL,
1358 .wrapper = mlx4_SET_MCAST_FLTR_wrapper
1359 },
1360 {
1361 .opcode = MLX4_CMD_DUMP_ETH_STATS,
1362 .has_inbox = false,
1363 .has_outbox = true,
1364 .out_is_imm = false,
1365 .encode_slave_id = false,
1366 .verify = NULL,
1367 .wrapper = mlx4_DUMP_ETH_STATS_wrapper
1368 },
Eugenia Emantayev0ec2c0f2011-12-13 04:16:02 +00001369 {
Eli Cohenc82e9aa2011-12-13 04:15:24 +00001370 .opcode = MLX4_CMD_INFORM_FLR_DONE,
1371 .has_inbox = false,
1372 .has_outbox = false,
1373 .out_is_imm = false,
1374 .encode_slave_id = false,
1375 .verify = NULL,
1376 .wrapper = NULL
1377 },
Hadar Hen Zion8fcfb4d2012-07-05 04:03:45 +00001378 /* flow steering commands */
1379 {
1380 .opcode = MLX4_QP_FLOW_STEERING_ATTACH,
1381 .has_inbox = true,
1382 .has_outbox = false,
1383 .out_is_imm = true,
1384 .encode_slave_id = false,
1385 .verify = NULL,
1386 .wrapper = mlx4_QP_FLOW_STEERING_ATTACH_wrapper
1387 },
1388 {
1389 .opcode = MLX4_QP_FLOW_STEERING_DETACH,
1390 .has_inbox = false,
1391 .has_outbox = false,
1392 .out_is_imm = false,
1393 .encode_slave_id = false,
1394 .verify = NULL,
1395 .wrapper = mlx4_QP_FLOW_STEERING_DETACH_wrapper
1396 },
Matan Barak4de65802013-11-07 15:25:14 +02001397 {
1398 .opcode = MLX4_FLOW_STEERING_IB_UC_QP_RANGE,
1399 .has_inbox = false,
1400 .has_outbox = false,
1401 .out_is_imm = false,
1402 .encode_slave_id = false,
1403 .verify = NULL,
Or Gerlitzb7475792014-03-27 14:02:02 +02001404 .wrapper = mlx4_CMD_EPERM_wrapper
Matan Barak4de65802013-11-07 15:25:14 +02001405 },
Yevgeny Petriline8f081a2011-12-13 04:12:25 +00001406};
1407
1408static int mlx4_master_process_vhcr(struct mlx4_dev *dev, int slave,
1409 struct mlx4_vhcr_cmd *in_vhcr)
1410{
1411 struct mlx4_priv *priv = mlx4_priv(dev);
1412 struct mlx4_cmd_info *cmd = NULL;
1413 struct mlx4_vhcr_cmd *vhcr_cmd = in_vhcr ? in_vhcr : priv->mfunc.vhcr;
1414 struct mlx4_vhcr *vhcr;
1415 struct mlx4_cmd_mailbox *inbox = NULL;
1416 struct mlx4_cmd_mailbox *outbox = NULL;
1417 u64 in_param;
1418 u64 out_param;
1419 int ret = 0;
1420 int i;
Yevgeny Petrilin72be84f2011-12-19 04:03:53 +00001421 int err = 0;
Yevgeny Petriline8f081a2011-12-13 04:12:25 +00001422
1423 /* Create sw representation of Virtual HCR */
1424 vhcr = kzalloc(sizeof(struct mlx4_vhcr), GFP_KERNEL);
1425 if (!vhcr)
1426 return -ENOMEM;
1427
1428 /* DMA in the vHCR */
1429 if (!in_vhcr) {
1430 ret = mlx4_ACCESS_MEM(dev, priv->mfunc.vhcr_dma, slave,
1431 priv->mfunc.master.slave_state[slave].vhcr_dma,
1432 ALIGN(sizeof(struct mlx4_vhcr_cmd),
1433 MLX4_ACCESS_MEM_ALIGN), 1);
1434 if (ret) {
Joe Perches1a91de22014-05-07 12:52:57 -07001435 mlx4_err(dev, "%s: Failed reading vhcr ret: 0x%x\n",
1436 __func__, ret);
Yevgeny Petriline8f081a2011-12-13 04:12:25 +00001437 kfree(vhcr);
1438 return ret;
1439 }
1440 }
1441
1442 /* Fill SW VHCR fields */
1443 vhcr->in_param = be64_to_cpu(vhcr_cmd->in_param);
1444 vhcr->out_param = be64_to_cpu(vhcr_cmd->out_param);
1445 vhcr->in_modifier = be32_to_cpu(vhcr_cmd->in_modifier);
1446 vhcr->token = be16_to_cpu(vhcr_cmd->token);
1447 vhcr->op = be16_to_cpu(vhcr_cmd->opcode) & 0xfff;
1448 vhcr->op_modifier = (u8) (be16_to_cpu(vhcr_cmd->opcode) >> 12);
1449 vhcr->e_bit = vhcr_cmd->flags & (1 << 6);
1450
1451 /* Lookup command */
1452 for (i = 0; i < ARRAY_SIZE(cmd_info); ++i) {
1453 if (vhcr->op == cmd_info[i].opcode) {
1454 cmd = &cmd_info[i];
1455 break;
1456 }
1457 }
1458 if (!cmd) {
1459 mlx4_err(dev, "Unknown command:0x%x accepted from slave:%d\n",
1460 vhcr->op, slave);
Yevgeny Petrilin72be84f2011-12-19 04:03:53 +00001461 vhcr_cmd->status = CMD_STAT_BAD_PARAM;
Yevgeny Petriline8f081a2011-12-13 04:12:25 +00001462 goto out_status;
1463 }
1464
1465 /* Read inbox */
1466 if (cmd->has_inbox) {
1467 vhcr->in_param &= INBOX_MASK;
1468 inbox = mlx4_alloc_cmd_mailbox(dev);
1469 if (IS_ERR(inbox)) {
Yevgeny Petrilin72be84f2011-12-19 04:03:53 +00001470 vhcr_cmd->status = CMD_STAT_BAD_SIZE;
Yevgeny Petriline8f081a2011-12-13 04:12:25 +00001471 inbox = NULL;
Yevgeny Petrilin72be84f2011-12-19 04:03:53 +00001472 goto out_status;
Yevgeny Petriline8f081a2011-12-13 04:12:25 +00001473 }
1474
Yevgeny Petrilin72be84f2011-12-19 04:03:53 +00001475 if (mlx4_ACCESS_MEM(dev, inbox->dma, slave,
1476 vhcr->in_param,
1477 MLX4_MAILBOX_SIZE, 1)) {
Yevgeny Petriline8f081a2011-12-13 04:12:25 +00001478 mlx4_err(dev, "%s: Failed reading inbox (cmd:0x%x)\n",
1479 __func__, cmd->opcode);
Yevgeny Petrilin72be84f2011-12-19 04:03:53 +00001480 vhcr_cmd->status = CMD_STAT_INTERNAL_ERR;
1481 goto out_status;
Yevgeny Petriline8f081a2011-12-13 04:12:25 +00001482 }
1483 }
1484
1485 /* Apply permission and bound checks if applicable */
1486 if (cmd->verify && cmd->verify(dev, slave, vhcr, inbox)) {
Joe Perches1a91de22014-05-07 12:52:57 -07001487 mlx4_warn(dev, "Command:0x%x from slave: %d failed protection checks for resource_id:%d\n",
1488 vhcr->op, slave, vhcr->in_modifier);
Yevgeny Petrilin72be84f2011-12-19 04:03:53 +00001489 vhcr_cmd->status = CMD_STAT_BAD_OP;
Yevgeny Petriline8f081a2011-12-13 04:12:25 +00001490 goto out_status;
1491 }
1492
1493 /* Allocate outbox */
1494 if (cmd->has_outbox) {
1495 outbox = mlx4_alloc_cmd_mailbox(dev);
1496 if (IS_ERR(outbox)) {
Yevgeny Petrilin72be84f2011-12-19 04:03:53 +00001497 vhcr_cmd->status = CMD_STAT_BAD_SIZE;
Yevgeny Petriline8f081a2011-12-13 04:12:25 +00001498 outbox = NULL;
Yevgeny Petrilin72be84f2011-12-19 04:03:53 +00001499 goto out_status;
Yevgeny Petriline8f081a2011-12-13 04:12:25 +00001500 }
1501 }
1502
1503 /* Execute the command! */
1504 if (cmd->wrapper) {
Yevgeny Petrilin72be84f2011-12-19 04:03:53 +00001505 err = cmd->wrapper(dev, slave, vhcr, inbox, outbox,
1506 cmd);
Yevgeny Petriline8f081a2011-12-13 04:12:25 +00001507 if (cmd->out_is_imm)
1508 vhcr_cmd->out_param = cpu_to_be64(vhcr->out_param);
1509 } else {
1510 in_param = cmd->has_inbox ? (u64) inbox->dma :
1511 vhcr->in_param;
1512 out_param = cmd->has_outbox ? (u64) outbox->dma :
1513 vhcr->out_param;
Yevgeny Petrilin72be84f2011-12-19 04:03:53 +00001514 err = __mlx4_cmd(dev, in_param, &out_param,
1515 cmd->out_is_imm, vhcr->in_modifier,
1516 vhcr->op_modifier, vhcr->op,
1517 MLX4_CMD_TIME_CLASS_A,
1518 MLX4_CMD_NATIVE);
Yevgeny Petriline8f081a2011-12-13 04:12:25 +00001519
1520 if (cmd->out_is_imm) {
1521 vhcr->out_param = out_param;
1522 vhcr_cmd->out_param = cpu_to_be64(vhcr->out_param);
1523 }
1524 }
1525
Yevgeny Petrilin72be84f2011-12-19 04:03:53 +00001526 if (err) {
Joe Perches1a91de22014-05-07 12:52:57 -07001527 mlx4_warn(dev, "vhcr command:0x%x slave:%d failed with error:%d, status %d\n",
Yevgeny Petrilin72be84f2011-12-19 04:03:53 +00001528 vhcr->op, slave, vhcr->errno, err);
1529 vhcr_cmd->status = mlx4_errno_to_status(err);
1530 goto out_status;
1531 }
1532
1533
Yevgeny Petriline8f081a2011-12-13 04:12:25 +00001534 /* Write outbox if command completed successfully */
Yevgeny Petrilin72be84f2011-12-19 04:03:53 +00001535 if (cmd->has_outbox && !vhcr_cmd->status) {
Yevgeny Petriline8f081a2011-12-13 04:12:25 +00001536 ret = mlx4_ACCESS_MEM(dev, outbox->dma, slave,
1537 vhcr->out_param,
1538 MLX4_MAILBOX_SIZE, MLX4_CMD_WRAPPED);
1539 if (ret) {
Yevgeny Petrilin72be84f2011-12-19 04:03:53 +00001540 /* If we failed to write back the outbox after the
1541 *command was successfully executed, we must fail this
1542 * slave, as it is now in undefined state */
Yevgeny Petriline8f081a2011-12-13 04:12:25 +00001543 mlx4_err(dev, "%s:Failed writing outbox\n", __func__);
1544 goto out;
1545 }
1546 }
1547
1548out_status:
1549 /* DMA back vhcr result */
1550 if (!in_vhcr) {
1551 ret = mlx4_ACCESS_MEM(dev, priv->mfunc.vhcr_dma, slave,
1552 priv->mfunc.master.slave_state[slave].vhcr_dma,
1553 ALIGN(sizeof(struct mlx4_vhcr),
1554 MLX4_ACCESS_MEM_ALIGN),
1555 MLX4_CMD_WRAPPED);
1556 if (ret)
1557 mlx4_err(dev, "%s:Failed writing vhcr result\n",
1558 __func__);
1559 else if (vhcr->e_bit &&
1560 mlx4_GEN_EQE(dev, slave, &priv->mfunc.master.cmd_eqe))
Joe Perches1a91de22014-05-07 12:52:57 -07001561 mlx4_warn(dev, "Failed to generate command completion eqe for slave %d\n",
1562 slave);
Yevgeny Petriline8f081a2011-12-13 04:12:25 +00001563 }
1564
1565out:
1566 kfree(vhcr);
1567 mlx4_free_cmd_mailbox(dev, inbox);
1568 mlx4_free_cmd_mailbox(dev, outbox);
1569 return ret;
1570}
1571
Jingoo Hanf0946682013-08-05 18:04:51 +09001572static int mlx4_master_immediate_activate_vlan_qos(struct mlx4_priv *priv,
Jack Morgensteinb01978c2013-06-27 19:05:21 +03001573 int slave, int port)
1574{
1575 struct mlx4_vport_oper_state *vp_oper;
1576 struct mlx4_vport_state *vp_admin;
1577 struct mlx4_vf_immed_vlan_work *work;
Rony Efraim0a6eac22013-06-27 19:05:22 +03001578 struct mlx4_dev *dev = &(priv->dev);
Jack Morgensteinb01978c2013-06-27 19:05:21 +03001579 int err;
1580 int admin_vlan_ix = NO_INDX;
1581
1582 vp_oper = &priv->mfunc.master.vf_oper[slave].vport[port];
1583 vp_admin = &priv->mfunc.master.vf_admin[slave].vport[port];
1584
1585 if (vp_oper->state.default_vlan == vp_admin->default_vlan &&
Rony Efraim0a6eac22013-06-27 19:05:22 +03001586 vp_oper->state.default_qos == vp_admin->default_qos &&
1587 vp_oper->state.link_state == vp_admin->link_state)
Jack Morgensteinb01978c2013-06-27 19:05:21 +03001588 return 0;
1589
Rony Efraim0a6eac22013-06-27 19:05:22 +03001590 if (!(priv->mfunc.master.slave_state[slave].active &&
Rony Efraimf0f829b2013-11-07 12:19:51 +02001591 dev->caps.flags2 & MLX4_DEV_CAP_FLAG2_UPDATE_QP)) {
Rony Efraim0a6eac22013-06-27 19:05:22 +03001592 /* even if the UPDATE_QP command isn't supported, we still want
1593 * to set this VF link according to the admin directive
1594 */
1595 vp_oper->state.link_state = vp_admin->link_state;
1596 return -1;
1597 }
1598
1599 mlx4_dbg(dev, "updating immediately admin params slave %d port %d\n",
1600 slave, port);
Joe Perches1a91de22014-05-07 12:52:57 -07001601 mlx4_dbg(dev, "vlan %d QoS %d link down %d\n",
1602 vp_admin->default_vlan, vp_admin->default_qos,
1603 vp_admin->link_state);
Rony Efraim0a6eac22013-06-27 19:05:22 +03001604
Jack Morgensteinb01978c2013-06-27 19:05:21 +03001605 work = kzalloc(sizeof(*work), GFP_KERNEL);
1606 if (!work)
1607 return -ENOMEM;
1608
1609 if (vp_oper->state.default_vlan != vp_admin->default_vlan) {
Rony Efraimf0f829b2013-11-07 12:19:51 +02001610 if (MLX4_VGT != vp_admin->default_vlan) {
1611 err = __mlx4_register_vlan(&priv->dev, port,
1612 vp_admin->default_vlan,
1613 &admin_vlan_ix);
1614 if (err) {
1615 kfree(work);
Joe Perches1a91de22014-05-07 12:52:57 -07001616 mlx4_warn(&priv->dev,
Rony Efraimf0f829b2013-11-07 12:19:51 +02001617 "No vlan resources slave %d, port %d\n",
1618 slave, port);
1619 return err;
1620 }
1621 } else {
1622 admin_vlan_ix = NO_INDX;
Jack Morgensteinb01978c2013-06-27 19:05:21 +03001623 }
1624 work->flags |= MLX4_VF_IMMED_VLAN_FLAG_VLAN;
Joe Perches1a91de22014-05-07 12:52:57 -07001625 mlx4_dbg(&priv->dev,
Jack Morgensteinb01978c2013-06-27 19:05:21 +03001626 "alloc vlan %d idx %d slave %d port %d\n",
1627 (int)(vp_admin->default_vlan),
1628 admin_vlan_ix, slave, port);
1629 }
1630
1631 /* save original vlan ix and vlan id */
1632 work->orig_vlan_id = vp_oper->state.default_vlan;
1633 work->orig_vlan_ix = vp_oper->vlan_idx;
1634
1635 /* handle new qos */
1636 if (vp_oper->state.default_qos != vp_admin->default_qos)
1637 work->flags |= MLX4_VF_IMMED_VLAN_FLAG_QOS;
1638
1639 if (work->flags & MLX4_VF_IMMED_VLAN_FLAG_VLAN)
1640 vp_oper->vlan_idx = admin_vlan_ix;
1641
1642 vp_oper->state.default_vlan = vp_admin->default_vlan;
1643 vp_oper->state.default_qos = vp_admin->default_qos;
Rony Efraim0a6eac22013-06-27 19:05:22 +03001644 vp_oper->state.link_state = vp_admin->link_state;
1645
1646 if (vp_admin->link_state == IFLA_VF_LINK_STATE_DISABLE)
1647 work->flags |= MLX4_VF_IMMED_VLAN_FLAG_LINK_DISABLE;
Jack Morgensteinb01978c2013-06-27 19:05:21 +03001648
1649 /* iterate over QPs owned by this slave, using UPDATE_QP */
1650 work->port = port;
1651 work->slave = slave;
1652 work->qos = vp_oper->state.default_qos;
1653 work->vlan_id = vp_oper->state.default_vlan;
1654 work->vlan_ix = vp_oper->vlan_idx;
1655 work->priv = priv;
1656 INIT_WORK(&work->work, mlx4_vf_immed_vlan_work_handler);
1657 queue_work(priv->mfunc.master.comm_wq, &work->work);
1658
1659 return 0;
1660}
1661
1662
Rony Efraim0eb62b92013-04-25 05:22:26 +00001663static int mlx4_master_activate_admin_state(struct mlx4_priv *priv, int slave)
1664{
Rony Efraim3f7fb022013-04-25 05:22:28 +00001665 int port, err;
1666 struct mlx4_vport_state *vp_admin;
1667 struct mlx4_vport_oper_state *vp_oper;
Matan Barak449fc482014-03-19 18:11:52 +02001668 struct mlx4_active_ports actv_ports = mlx4_get_active_ports(
1669 &priv->dev, slave);
1670 int min_port = find_first_bit(actv_ports.ports,
1671 priv->dev.caps.num_ports) + 1;
1672 int max_port = min_port - 1 +
1673 bitmap_weight(actv_ports.ports, priv->dev.caps.num_ports);
Rony Efraim3f7fb022013-04-25 05:22:28 +00001674
Matan Barak449fc482014-03-19 18:11:52 +02001675 for (port = min_port; port <= max_port; port++) {
1676 if (!test_bit(port - 1, actv_ports.ports))
1677 continue;
Jack Morgenstein99ec41d2014-05-29 16:31:03 +03001678 priv->mfunc.master.vf_oper[slave].smi_enabled[port] =
1679 priv->mfunc.master.vf_admin[slave].enable_smi[port];
Rony Efraim3f7fb022013-04-25 05:22:28 +00001680 vp_oper = &priv->mfunc.master.vf_oper[slave].vport[port];
1681 vp_admin = &priv->mfunc.master.vf_admin[slave].vport[port];
1682 vp_oper->state = *vp_admin;
1683 if (MLX4_VGT != vp_admin->default_vlan) {
1684 err = __mlx4_register_vlan(&priv->dev, port,
1685 vp_admin->default_vlan, &(vp_oper->vlan_idx));
1686 if (err) {
1687 vp_oper->vlan_idx = NO_INDX;
Joe Perches1a91de22014-05-07 12:52:57 -07001688 mlx4_warn(&priv->dev,
Rony Efraim3f7fb022013-04-25 05:22:28 +00001689 "No vlan resorces slave %d, port %d\n",
1690 slave, port);
1691 return err;
1692 }
Joe Perches1a91de22014-05-07 12:52:57 -07001693 mlx4_dbg(&priv->dev, "alloc vlan %d idx %d slave %d port %d\n",
Rony Efraim3f7fb022013-04-25 05:22:28 +00001694 (int)(vp_oper->state.default_vlan),
1695 vp_oper->vlan_idx, slave, port);
1696 }
Rony Efraime6b6a232013-04-25 05:22:29 +00001697 if (vp_admin->spoofchk) {
1698 vp_oper->mac_idx = __mlx4_register_mac(&priv->dev,
1699 port,
1700 vp_admin->mac);
1701 if (0 > vp_oper->mac_idx) {
1702 err = vp_oper->mac_idx;
1703 vp_oper->mac_idx = NO_INDX;
Joe Perches1a91de22014-05-07 12:52:57 -07001704 mlx4_warn(&priv->dev,
Rony Efraime6b6a232013-04-25 05:22:29 +00001705 "No mac resorces slave %d, port %d\n",
1706 slave, port);
1707 return err;
1708 }
Joe Perches1a91de22014-05-07 12:52:57 -07001709 mlx4_dbg(&priv->dev, "alloc mac %llx idx %d slave %d port %d\n",
Rony Efraime6b6a232013-04-25 05:22:29 +00001710 vp_oper->state.mac, vp_oper->mac_idx, slave, port);
1711 }
Rony Efraim0eb62b92013-04-25 05:22:26 +00001712 }
1713 return 0;
1714}
1715
Rony Efraim3f7fb022013-04-25 05:22:28 +00001716static void mlx4_master_deactivate_admin_state(struct mlx4_priv *priv, int slave)
1717{
1718 int port;
1719 struct mlx4_vport_oper_state *vp_oper;
Matan Barak449fc482014-03-19 18:11:52 +02001720 struct mlx4_active_ports actv_ports = mlx4_get_active_ports(
1721 &priv->dev, slave);
1722 int min_port = find_first_bit(actv_ports.ports,
1723 priv->dev.caps.num_ports) + 1;
1724 int max_port = min_port - 1 +
1725 bitmap_weight(actv_ports.ports, priv->dev.caps.num_ports);
Rony Efraim3f7fb022013-04-25 05:22:28 +00001726
Matan Barak449fc482014-03-19 18:11:52 +02001727
1728 for (port = min_port; port <= max_port; port++) {
1729 if (!test_bit(port - 1, actv_ports.ports))
1730 continue;
Jack Morgenstein99ec41d2014-05-29 16:31:03 +03001731 priv->mfunc.master.vf_oper[slave].smi_enabled[port] =
1732 MLX4_VF_SMI_DISABLED;
Rony Efraim3f7fb022013-04-25 05:22:28 +00001733 vp_oper = &priv->mfunc.master.vf_oper[slave].vport[port];
1734 if (NO_INDX != vp_oper->vlan_idx) {
1735 __mlx4_unregister_vlan(&priv->dev,
Jack Morgenstein2009d002013-11-03 10:03:19 +02001736 port, vp_oper->state.default_vlan);
Rony Efraim3f7fb022013-04-25 05:22:28 +00001737 vp_oper->vlan_idx = NO_INDX;
1738 }
Rony Efraime6b6a232013-04-25 05:22:29 +00001739 if (NO_INDX != vp_oper->mac_idx) {
Jack Morgensteinc32b7df2013-11-03 10:04:07 +02001740 __mlx4_unregister_mac(&priv->dev, port, vp_oper->state.mac);
Rony Efraime6b6a232013-04-25 05:22:29 +00001741 vp_oper->mac_idx = NO_INDX;
1742 }
Rony Efraim3f7fb022013-04-25 05:22:28 +00001743 }
1744 return;
1745}
1746
Yevgeny Petriline8f081a2011-12-13 04:12:25 +00001747static void mlx4_master_do_cmd(struct mlx4_dev *dev, int slave, u8 cmd,
1748 u16 param, u8 toggle)
1749{
1750 struct mlx4_priv *priv = mlx4_priv(dev);
1751 struct mlx4_slave_state *slave_state = priv->mfunc.master.slave_state;
1752 u32 reply;
Yevgeny Petriline8f081a2011-12-13 04:12:25 +00001753 u8 is_going_down = 0;
Marcel Apfelbaum803143f2012-01-19 09:45:46 +00001754 int i;
Jack Morgenstein311f8132012-11-27 16:24:30 +00001755 unsigned long flags;
Yevgeny Petriline8f081a2011-12-13 04:12:25 +00001756
1757 slave_state[slave].comm_toggle ^= 1;
1758 reply = (u32) slave_state[slave].comm_toggle << 31;
1759 if (toggle != slave_state[slave].comm_toggle) {
Joe Perches1a91de22014-05-07 12:52:57 -07001760 mlx4_warn(dev, "Incorrect toggle %d from slave %d. *** MASTER STATE COMPROMISED ***\n",
1761 toggle, slave);
Yevgeny Petriline8f081a2011-12-13 04:12:25 +00001762 goto reset_slave;
1763 }
1764 if (cmd == MLX4_COMM_CMD_RESET) {
1765 mlx4_warn(dev, "Received reset from slave:%d\n", slave);
1766 slave_state[slave].active = false;
Jack Morgenstein2c957ff2013-11-03 10:03:21 +02001767 slave_state[slave].old_vlan_api = false;
Rony Efraim3f7fb022013-04-25 05:22:28 +00001768 mlx4_master_deactivate_admin_state(priv, slave);
Marcel Apfelbaum803143f2012-01-19 09:45:46 +00001769 for (i = 0; i < MLX4_EVENT_TYPES_NUM; ++i) {
1770 slave_state[slave].event_eq[i].eqn = -1;
1771 slave_state[slave].event_eq[i].token = 0;
1772 }
Yevgeny Petriline8f081a2011-12-13 04:12:25 +00001773 /*check if we are in the middle of FLR process,
1774 if so return "retry" status to the slave*/
Or Gerlitz162344e2012-05-15 10:34:57 +00001775 if (MLX4_COMM_CMD_FLR == slave_state[slave].last_cmd)
Yevgeny Petriline8f081a2011-12-13 04:12:25 +00001776 goto inform_slave_state;
Yevgeny Petriline8f081a2011-12-13 04:12:25 +00001777
Jack Morgensteinfc065732012-08-03 08:40:42 +00001778 mlx4_dispatch_event(dev, MLX4_DEV_EVENT_SLAVE_SHUTDOWN, slave);
1779
Yevgeny Petriline8f081a2011-12-13 04:12:25 +00001780 /* write the version in the event field */
1781 reply |= mlx4_comm_get_version();
1782
1783 goto reset_slave;
1784 }
1785 /*command from slave in the middle of FLR*/
1786 if (cmd != MLX4_COMM_CMD_RESET &&
1787 MLX4_COMM_CMD_FLR == slave_state[slave].last_cmd) {
Joe Perches1a91de22014-05-07 12:52:57 -07001788 mlx4_warn(dev, "slave:%d is Trying to run cmd(0x%x) in the middle of FLR\n",
1789 slave, cmd);
Yevgeny Petriline8f081a2011-12-13 04:12:25 +00001790 return;
1791 }
1792
1793 switch (cmd) {
1794 case MLX4_COMM_CMD_VHCR0:
1795 if (slave_state[slave].last_cmd != MLX4_COMM_CMD_RESET)
1796 goto reset_slave;
1797 slave_state[slave].vhcr_dma = ((u64) param) << 48;
1798 priv->mfunc.master.slave_state[slave].cookie = 0;
1799 mutex_init(&priv->mfunc.master.gen_eqe_mutex[slave]);
1800 break;
1801 case MLX4_COMM_CMD_VHCR1:
1802 if (slave_state[slave].last_cmd != MLX4_COMM_CMD_VHCR0)
1803 goto reset_slave;
1804 slave_state[slave].vhcr_dma |= ((u64) param) << 32;
1805 break;
1806 case MLX4_COMM_CMD_VHCR2:
1807 if (slave_state[slave].last_cmd != MLX4_COMM_CMD_VHCR1)
1808 goto reset_slave;
1809 slave_state[slave].vhcr_dma |= ((u64) param) << 16;
1810 break;
1811 case MLX4_COMM_CMD_VHCR_EN:
1812 if (slave_state[slave].last_cmd != MLX4_COMM_CMD_VHCR2)
1813 goto reset_slave;
1814 slave_state[slave].vhcr_dma |= param;
Rony Efraim3f7fb022013-04-25 05:22:28 +00001815 if (mlx4_master_activate_admin_state(priv, slave))
1816 goto reset_slave;
Yevgeny Petriline8f081a2011-12-13 04:12:25 +00001817 slave_state[slave].active = true;
Jack Morgensteinfc065732012-08-03 08:40:42 +00001818 mlx4_dispatch_event(dev, MLX4_DEV_EVENT_SLAVE_INIT, slave);
Yevgeny Petriline8f081a2011-12-13 04:12:25 +00001819 break;
1820 case MLX4_COMM_CMD_VHCR_POST:
1821 if ((slave_state[slave].last_cmd != MLX4_COMM_CMD_VHCR_EN) &&
1822 (slave_state[slave].last_cmd != MLX4_COMM_CMD_VHCR_POST))
1823 goto reset_slave;
Roland Dreierf3d4c892012-09-25 21:24:07 -07001824
1825 mutex_lock(&priv->cmd.slave_cmd_mutex);
Yevgeny Petriline8f081a2011-12-13 04:12:25 +00001826 if (mlx4_master_process_vhcr(dev, slave, NULL)) {
Joe Perches1a91de22014-05-07 12:52:57 -07001827 mlx4_err(dev, "Failed processing vhcr for slave:%d, resetting slave\n",
1828 slave);
Roland Dreierf3d4c892012-09-25 21:24:07 -07001829 mutex_unlock(&priv->cmd.slave_cmd_mutex);
Yevgeny Petriline8f081a2011-12-13 04:12:25 +00001830 goto reset_slave;
1831 }
Roland Dreierf3d4c892012-09-25 21:24:07 -07001832 mutex_unlock(&priv->cmd.slave_cmd_mutex);
Yevgeny Petriline8f081a2011-12-13 04:12:25 +00001833 break;
1834 default:
1835 mlx4_warn(dev, "Bad comm cmd:%d from slave:%d\n", cmd, slave);
1836 goto reset_slave;
1837 }
Jack Morgenstein311f8132012-11-27 16:24:30 +00001838 spin_lock_irqsave(&priv->mfunc.master.slave_state_lock, flags);
Yevgeny Petriline8f081a2011-12-13 04:12:25 +00001839 if (!slave_state[slave].is_slave_going_down)
1840 slave_state[slave].last_cmd = cmd;
1841 else
1842 is_going_down = 1;
Jack Morgenstein311f8132012-11-27 16:24:30 +00001843 spin_unlock_irqrestore(&priv->mfunc.master.slave_state_lock, flags);
Yevgeny Petriline8f081a2011-12-13 04:12:25 +00001844 if (is_going_down) {
Joe Perches1a91de22014-05-07 12:52:57 -07001845 mlx4_warn(dev, "Slave is going down aborting command(%d) executing from slave:%d\n",
Yevgeny Petriline8f081a2011-12-13 04:12:25 +00001846 cmd, slave);
1847 return;
1848 }
1849 __raw_writel((__force u32) cpu_to_be32(reply),
1850 &priv->mfunc.comm[slave].slave_read);
1851 mmiowb();
1852
1853 return;
1854
1855reset_slave:
Eli Cohenc82e9aa2011-12-13 04:15:24 +00001856 /* cleanup any slave resources */
1857 mlx4_delete_all_resources_for_slave(dev, slave);
Jack Morgenstein311f8132012-11-27 16:24:30 +00001858 spin_lock_irqsave(&priv->mfunc.master.slave_state_lock, flags);
Yevgeny Petriline8f081a2011-12-13 04:12:25 +00001859 if (!slave_state[slave].is_slave_going_down)
1860 slave_state[slave].last_cmd = MLX4_COMM_CMD_RESET;
Jack Morgenstein311f8132012-11-27 16:24:30 +00001861 spin_unlock_irqrestore(&priv->mfunc.master.slave_state_lock, flags);
Yevgeny Petriline8f081a2011-12-13 04:12:25 +00001862 /*with slave in the middle of flr, no need to clean resources again.*/
1863inform_slave_state:
1864 memset(&slave_state[slave].event_eq, 0,
1865 sizeof(struct mlx4_slave_event_eq_info));
1866 __raw_writel((__force u32) cpu_to_be32(reply),
1867 &priv->mfunc.comm[slave].slave_read);
1868 wmb();
1869}
1870
1871/* master command processing */
1872void mlx4_master_comm_channel(struct work_struct *work)
1873{
1874 struct mlx4_mfunc_master_ctx *master =
1875 container_of(work,
1876 struct mlx4_mfunc_master_ctx,
1877 comm_work);
1878 struct mlx4_mfunc *mfunc =
1879 container_of(master, struct mlx4_mfunc, master);
1880 struct mlx4_priv *priv =
1881 container_of(mfunc, struct mlx4_priv, mfunc);
1882 struct mlx4_dev *dev = &priv->dev;
1883 __be32 *bit_vec;
1884 u32 comm_cmd;
1885 u32 vec;
1886 int i, j, slave;
1887 int toggle;
1888 int served = 0;
1889 int reported = 0;
1890 u32 slt;
1891
1892 bit_vec = master->comm_arm_bit_vector;
1893 for (i = 0; i < COMM_CHANNEL_BIT_ARRAY_SIZE; i++) {
1894 vec = be32_to_cpu(bit_vec[i]);
1895 for (j = 0; j < 32; j++) {
1896 if (!(vec & (1 << j)))
1897 continue;
1898 ++reported;
1899 slave = (i * 32) + j;
1900 comm_cmd = swab32(readl(
1901 &mfunc->comm[slave].slave_write));
1902 slt = swab32(readl(&mfunc->comm[slave].slave_read))
1903 >> 31;
1904 toggle = comm_cmd >> 31;
1905 if (toggle != slt) {
1906 if (master->slave_state[slave].comm_toggle
1907 != slt) {
Amir Vadaic20862c2014-05-22 15:55:40 +03001908 pr_info("slave %d out of sync. read toggle %d, state toggle %d. Resynching.\n",
1909 slave, slt,
1910 master->slave_state[slave].comm_toggle);
Yevgeny Petriline8f081a2011-12-13 04:12:25 +00001911 master->slave_state[slave].comm_toggle =
1912 slt;
1913 }
1914 mlx4_master_do_cmd(dev, slave,
1915 comm_cmd >> 16 & 0xff,
1916 comm_cmd & 0xffff, toggle);
1917 ++served;
1918 }
1919 }
1920 }
1921
1922 if (reported && reported != served)
Joe Perches1a91de22014-05-07 12:52:57 -07001923 mlx4_warn(dev, "Got command event with bitmask from %d slaves but %d were served\n",
Yevgeny Petriline8f081a2011-12-13 04:12:25 +00001924 reported, served);
1925
1926 if (mlx4_ARM_COMM_CHANNEL(dev))
1927 mlx4_warn(dev, "Failed to arm comm channel events\n");
1928}
1929
Jack Morgensteinab9c17a2011-12-13 04:18:30 +00001930static int sync_toggles(struct mlx4_dev *dev)
1931{
1932 struct mlx4_priv *priv = mlx4_priv(dev);
1933 int wr_toggle;
1934 int rd_toggle;
1935 unsigned long end;
1936
1937 wr_toggle = swab32(readl(&priv->mfunc.comm->slave_write)) >> 31;
1938 end = jiffies + msecs_to_jiffies(5000);
1939
1940 while (time_before(jiffies, end)) {
1941 rd_toggle = swab32(readl(&priv->mfunc.comm->slave_read)) >> 31;
1942 if (rd_toggle == wr_toggle) {
1943 priv->cmd.comm_toggle = rd_toggle;
1944 return 0;
1945 }
1946
1947 cond_resched();
1948 }
1949
1950 /*
1951 * we could reach here if for example the previous VM using this
1952 * function misbehaved and left the channel with unsynced state. We
1953 * should fix this here and give this VM a chance to use a properly
1954 * synced channel
1955 */
1956 mlx4_warn(dev, "recovering from previously mis-behaved VM\n");
1957 __raw_writel((__force u32) 0, &priv->mfunc.comm->slave_read);
1958 __raw_writel((__force u32) 0, &priv->mfunc.comm->slave_write);
1959 priv->cmd.comm_toggle = 0;
1960
1961 return 0;
1962}
1963
1964int mlx4_multi_func_init(struct mlx4_dev *dev)
1965{
1966 struct mlx4_priv *priv = mlx4_priv(dev);
1967 struct mlx4_slave_state *s_state;
Marcel Apfelbaum803143f2012-01-19 09:45:46 +00001968 int i, j, err, port;
Jack Morgensteinab9c17a2011-12-13 04:18:30 +00001969
Jack Morgensteinab9c17a2011-12-13 04:18:30 +00001970 if (mlx4_is_master(dev))
1971 priv->mfunc.comm =
1972 ioremap(pci_resource_start(dev->pdev, priv->fw.comm_bar) +
1973 priv->fw.comm_base, MLX4_COMM_PAGESIZE);
1974 else
1975 priv->mfunc.comm =
1976 ioremap(pci_resource_start(dev->pdev, 2) +
1977 MLX4_SLAVE_COMM_BASE, MLX4_COMM_PAGESIZE);
1978 if (!priv->mfunc.comm) {
Joe Perches1a91de22014-05-07 12:52:57 -07001979 mlx4_err(dev, "Couldn't map communication vector\n");
Jack Morgensteinab9c17a2011-12-13 04:18:30 +00001980 goto err_vhcr;
1981 }
1982
1983 if (mlx4_is_master(dev)) {
1984 priv->mfunc.master.slave_state =
1985 kzalloc(dev->num_slaves *
1986 sizeof(struct mlx4_slave_state), GFP_KERNEL);
1987 if (!priv->mfunc.master.slave_state)
1988 goto err_comm;
1989
Rony Efraim0eb62b92013-04-25 05:22:26 +00001990 priv->mfunc.master.vf_admin =
1991 kzalloc(dev->num_slaves *
1992 sizeof(struct mlx4_vf_admin_state), GFP_KERNEL);
1993 if (!priv->mfunc.master.vf_admin)
1994 goto err_comm_admin;
1995
1996 priv->mfunc.master.vf_oper =
1997 kzalloc(dev->num_slaves *
1998 sizeof(struct mlx4_vf_oper_state), GFP_KERNEL);
1999 if (!priv->mfunc.master.vf_oper)
2000 goto err_comm_oper;
2001
Jack Morgensteinab9c17a2011-12-13 04:18:30 +00002002 for (i = 0; i < dev->num_slaves; ++i) {
2003 s_state = &priv->mfunc.master.slave_state[i];
2004 s_state->last_cmd = MLX4_COMM_CMD_RESET;
Marcel Apfelbaum803143f2012-01-19 09:45:46 +00002005 for (j = 0; j < MLX4_EVENT_TYPES_NUM; ++j)
2006 s_state->event_eq[j].eqn = -1;
Jack Morgensteinab9c17a2011-12-13 04:18:30 +00002007 __raw_writel((__force u32) 0,
2008 &priv->mfunc.comm[i].slave_write);
2009 __raw_writel((__force u32) 0,
2010 &priv->mfunc.comm[i].slave_read);
2011 mmiowb();
2012 for (port = 1; port <= MLX4_MAX_PORTS; port++) {
2013 s_state->vlan_filter[port] =
2014 kzalloc(sizeof(struct mlx4_vlan_fltr),
2015 GFP_KERNEL);
2016 if (!s_state->vlan_filter[port]) {
2017 if (--port)
2018 kfree(s_state->vlan_filter[port]);
2019 goto err_slaves;
2020 }
2021 INIT_LIST_HEAD(&s_state->mcast_filters[port]);
Rony Efraim0eb62b92013-04-25 05:22:26 +00002022 priv->mfunc.master.vf_admin[i].vport[port].default_vlan = MLX4_VGT;
Rony Efraim3f7fb022013-04-25 05:22:28 +00002023 priv->mfunc.master.vf_oper[i].vport[port].state.default_vlan = MLX4_VGT;
Rony Efraim0eb62b92013-04-25 05:22:26 +00002024 priv->mfunc.master.vf_oper[i].vport[port].vlan_idx = NO_INDX;
2025 priv->mfunc.master.vf_oper[i].vport[port].mac_idx = NO_INDX;
Jack Morgensteinab9c17a2011-12-13 04:18:30 +00002026 }
2027 spin_lock_init(&s_state->lock);
2028 }
2029
Or Gerlitz08ff3232012-10-21 14:59:24 +00002030 memset(&priv->mfunc.master.cmd_eqe, 0, dev->caps.eqe_size);
Jack Morgensteinab9c17a2011-12-13 04:18:30 +00002031 priv->mfunc.master.cmd_eqe.type = MLX4_EVENT_TYPE_CMD;
2032 INIT_WORK(&priv->mfunc.master.comm_work,
2033 mlx4_master_comm_channel);
2034 INIT_WORK(&priv->mfunc.master.slave_event_work,
2035 mlx4_gen_slave_eqe);
2036 INIT_WORK(&priv->mfunc.master.slave_flr_event_work,
2037 mlx4_master_handle_slave_flr);
2038 spin_lock_init(&priv->mfunc.master.slave_state_lock);
Jack Morgenstein992e8e6e2012-08-03 08:40:54 +00002039 spin_lock_init(&priv->mfunc.master.slave_eq.event_lock);
Jack Morgensteinab9c17a2011-12-13 04:18:30 +00002040 priv->mfunc.master.comm_wq =
2041 create_singlethread_workqueue("mlx4_comm");
2042 if (!priv->mfunc.master.comm_wq)
2043 goto err_slaves;
2044
2045 if (mlx4_init_resource_tracker(dev))
2046 goto err_thread;
2047
Jack Morgensteinab9c17a2011-12-13 04:18:30 +00002048 err = mlx4_ARM_COMM_CHANNEL(dev);
2049 if (err) {
2050 mlx4_err(dev, " Failed to arm comm channel eq: %x\n",
2051 err);
2052 goto err_resource;
2053 }
2054
2055 } else {
2056 err = sync_toggles(dev);
2057 if (err) {
2058 mlx4_err(dev, "Couldn't sync toggles\n");
2059 goto err_comm;
2060 }
Jack Morgensteinab9c17a2011-12-13 04:18:30 +00002061 }
2062 return 0;
2063
2064err_resource:
Jack Morgensteinb8924952012-05-15 10:35:02 +00002065 mlx4_free_resource_tracker(dev, RES_TR_FREE_ALL);
Jack Morgensteinab9c17a2011-12-13 04:18:30 +00002066err_thread:
2067 flush_workqueue(priv->mfunc.master.comm_wq);
2068 destroy_workqueue(priv->mfunc.master.comm_wq);
2069err_slaves:
2070 while (--i) {
2071 for (port = 1; port <= MLX4_MAX_PORTS; port++)
2072 kfree(priv->mfunc.master.slave_state[i].vlan_filter[port]);
2073 }
Rony Efraim0eb62b92013-04-25 05:22:26 +00002074 kfree(priv->mfunc.master.vf_oper);
2075err_comm_oper:
2076 kfree(priv->mfunc.master.vf_admin);
2077err_comm_admin:
Jack Morgensteinab9c17a2011-12-13 04:18:30 +00002078 kfree(priv->mfunc.master.slave_state);
2079err_comm:
2080 iounmap(priv->mfunc.comm);
2081err_vhcr:
2082 dma_free_coherent(&(dev->pdev->dev), PAGE_SIZE,
2083 priv->mfunc.vhcr,
2084 priv->mfunc.vhcr_dma);
2085 priv->mfunc.vhcr = NULL;
2086 return -ENOMEM;
2087}
2088
Roland Dreier225c7b12007-05-08 18:00:38 -07002089int mlx4_cmd_init(struct mlx4_dev *dev)
2090{
2091 struct mlx4_priv *priv = mlx4_priv(dev);
2092
2093 mutex_init(&priv->cmd.hcr_mutex);
Roland Dreierf3d4c892012-09-25 21:24:07 -07002094 mutex_init(&priv->cmd.slave_cmd_mutex);
Roland Dreier225c7b12007-05-08 18:00:38 -07002095 sema_init(&priv->cmd.poll_sem, 1);
2096 priv->cmd.use_events = 0;
2097 priv->cmd.toggle = 1;
2098
Yevgeny Petriline8f081a2011-12-13 04:12:25 +00002099 priv->cmd.hcr = NULL;
2100 priv->mfunc.vhcr = NULL;
2101
2102 if (!mlx4_is_slave(dev)) {
2103 priv->cmd.hcr = ioremap(pci_resource_start(dev->pdev, 0) +
2104 MLX4_HCR_BASE, MLX4_HCR_SIZE);
2105 if (!priv->cmd.hcr) {
Joe Perches1a91de22014-05-07 12:52:57 -07002106 mlx4_err(dev, "Couldn't map command register\n");
Yevgeny Petriline8f081a2011-12-13 04:12:25 +00002107 return -ENOMEM;
2108 }
Roland Dreier225c7b12007-05-08 18:00:38 -07002109 }
2110
Roland Dreierf3d4c892012-09-25 21:24:07 -07002111 if (mlx4_is_mfunc(dev)) {
2112 priv->mfunc.vhcr = dma_alloc_coherent(&(dev->pdev->dev), PAGE_SIZE,
2113 &priv->mfunc.vhcr_dma,
2114 GFP_KERNEL);
Joe Perchesd0320f72013-03-14 13:07:21 +00002115 if (!priv->mfunc.vhcr)
Roland Dreierf3d4c892012-09-25 21:24:07 -07002116 goto err_hcr;
Roland Dreierf3d4c892012-09-25 21:24:07 -07002117 }
2118
Roland Dreier225c7b12007-05-08 18:00:38 -07002119 priv->cmd.pool = pci_pool_create("mlx4_cmd", dev->pdev,
2120 MLX4_MAILBOX_SIZE,
2121 MLX4_MAILBOX_SIZE, 0);
Yevgeny Petriline8f081a2011-12-13 04:12:25 +00002122 if (!priv->cmd.pool)
Roland Dreierf3d4c892012-09-25 21:24:07 -07002123 goto err_vhcr;
Roland Dreier225c7b12007-05-08 18:00:38 -07002124
2125 return 0;
Yevgeny Petriline8f081a2011-12-13 04:12:25 +00002126
Roland Dreierf3d4c892012-09-25 21:24:07 -07002127err_vhcr:
2128 if (mlx4_is_mfunc(dev))
2129 dma_free_coherent(&(dev->pdev->dev), PAGE_SIZE,
2130 priv->mfunc.vhcr, priv->mfunc.vhcr_dma);
2131 priv->mfunc.vhcr = NULL;
2132
Yevgeny Petriline8f081a2011-12-13 04:12:25 +00002133err_hcr:
2134 if (!mlx4_is_slave(dev))
2135 iounmap(priv->cmd.hcr);
2136 return -ENOMEM;
Roland Dreier225c7b12007-05-08 18:00:38 -07002137}
2138
Jack Morgensteinab9c17a2011-12-13 04:18:30 +00002139void mlx4_multi_func_cleanup(struct mlx4_dev *dev)
2140{
2141 struct mlx4_priv *priv = mlx4_priv(dev);
2142 int i, port;
2143
2144 if (mlx4_is_master(dev)) {
2145 flush_workqueue(priv->mfunc.master.comm_wq);
2146 destroy_workqueue(priv->mfunc.master.comm_wq);
2147 for (i = 0; i < dev->num_slaves; i++) {
2148 for (port = 1; port <= MLX4_MAX_PORTS; port++)
2149 kfree(priv->mfunc.master.slave_state[i].vlan_filter[port]);
2150 }
2151 kfree(priv->mfunc.master.slave_state);
Rony Efraim0eb62b92013-04-25 05:22:26 +00002152 kfree(priv->mfunc.master.vf_admin);
2153 kfree(priv->mfunc.master.vf_oper);
Jack Morgensteinab9c17a2011-12-13 04:18:30 +00002154 }
Eugenia Emantayevf08ad062012-02-06 06:26:17 +00002155
2156 iounmap(priv->mfunc.comm);
Jack Morgensteinab9c17a2011-12-13 04:18:30 +00002157}
2158
Roland Dreier225c7b12007-05-08 18:00:38 -07002159void mlx4_cmd_cleanup(struct mlx4_dev *dev)
2160{
2161 struct mlx4_priv *priv = mlx4_priv(dev);
2162
2163 pci_pool_destroy(priv->cmd.pool);
Yevgeny Petriline8f081a2011-12-13 04:12:25 +00002164
2165 if (!mlx4_is_slave(dev))
2166 iounmap(priv->cmd.hcr);
Roland Dreierf3d4c892012-09-25 21:24:07 -07002167 if (mlx4_is_mfunc(dev))
2168 dma_free_coherent(&(dev->pdev->dev), PAGE_SIZE,
2169 priv->mfunc.vhcr, priv->mfunc.vhcr_dma);
2170 priv->mfunc.vhcr = NULL;
Roland Dreier225c7b12007-05-08 18:00:38 -07002171}
2172
2173/*
2174 * Switch to using events to issue FW commands (can only be called
2175 * after event queue for command events has been initialized).
2176 */
2177int mlx4_cmd_use_events(struct mlx4_dev *dev)
2178{
2179 struct mlx4_priv *priv = mlx4_priv(dev);
2180 int i;
Yevgeny Petriline8f081a2011-12-13 04:12:25 +00002181 int err = 0;
Roland Dreier225c7b12007-05-08 18:00:38 -07002182
2183 priv->cmd.context = kmalloc(priv->cmd.max_cmds *
2184 sizeof (struct mlx4_cmd_context),
2185 GFP_KERNEL);
2186 if (!priv->cmd.context)
2187 return -ENOMEM;
2188
2189 for (i = 0; i < priv->cmd.max_cmds; ++i) {
2190 priv->cmd.context[i].token = i;
2191 priv->cmd.context[i].next = i + 1;
2192 }
2193
2194 priv->cmd.context[priv->cmd.max_cmds - 1].next = -1;
2195 priv->cmd.free_head = 0;
2196
2197 sema_init(&priv->cmd.event_sem, priv->cmd.max_cmds);
2198 spin_lock_init(&priv->cmd.context_lock);
2199
2200 for (priv->cmd.token_mask = 1;
2201 priv->cmd.token_mask < priv->cmd.max_cmds;
2202 priv->cmd.token_mask <<= 1)
2203 ; /* nothing */
2204 --priv->cmd.token_mask;
2205
Yevgeny Petriline8f081a2011-12-13 04:12:25 +00002206 down(&priv->cmd.poll_sem);
Roland Dreier225c7b12007-05-08 18:00:38 -07002207 priv->cmd.use_events = 1;
2208
Yevgeny Petriline8f081a2011-12-13 04:12:25 +00002209 return err;
Roland Dreier225c7b12007-05-08 18:00:38 -07002210}
2211
2212/*
2213 * Switch back to polling (used when shutting down the device)
2214 */
2215void mlx4_cmd_use_polling(struct mlx4_dev *dev)
2216{
2217 struct mlx4_priv *priv = mlx4_priv(dev);
2218 int i;
2219
2220 priv->cmd.use_events = 0;
2221
2222 for (i = 0; i < priv->cmd.max_cmds; ++i)
2223 down(&priv->cmd.event_sem);
2224
2225 kfree(priv->cmd.context);
2226
2227 up(&priv->cmd.poll_sem);
2228}
2229
2230struct mlx4_cmd_mailbox *mlx4_alloc_cmd_mailbox(struct mlx4_dev *dev)
2231{
2232 struct mlx4_cmd_mailbox *mailbox;
2233
2234 mailbox = kmalloc(sizeof *mailbox, GFP_KERNEL);
2235 if (!mailbox)
2236 return ERR_PTR(-ENOMEM);
2237
2238 mailbox->buf = pci_pool_alloc(mlx4_priv(dev)->cmd.pool, GFP_KERNEL,
2239 &mailbox->dma);
2240 if (!mailbox->buf) {
2241 kfree(mailbox);
2242 return ERR_PTR(-ENOMEM);
2243 }
2244
Jack Morgenstein571b8b92013-11-07 12:19:50 +02002245 memset(mailbox->buf, 0, MLX4_MAILBOX_SIZE);
2246
Roland Dreier225c7b12007-05-08 18:00:38 -07002247 return mailbox;
2248}
2249EXPORT_SYMBOL_GPL(mlx4_alloc_cmd_mailbox);
2250
Yevgeny Petriline8f081a2011-12-13 04:12:25 +00002251void mlx4_free_cmd_mailbox(struct mlx4_dev *dev,
2252 struct mlx4_cmd_mailbox *mailbox)
Roland Dreier225c7b12007-05-08 18:00:38 -07002253{
2254 if (!mailbox)
2255 return;
2256
2257 pci_pool_free(mlx4_priv(dev)->cmd.pool, mailbox->buf, mailbox->dma);
2258 kfree(mailbox);
2259}
2260EXPORT_SYMBOL_GPL(mlx4_free_cmd_mailbox);
Yevgeny Petriline8f081a2011-12-13 04:12:25 +00002261
2262u32 mlx4_comm_get_version(void)
2263{
2264 return ((u32) CMD_CHAN_IF_REV << 8) | (u32) CMD_CHAN_VER;
2265}
Rony Efraim8f7ba3c2013-04-25 05:22:27 +00002266
2267static int mlx4_get_slave_indx(struct mlx4_dev *dev, int vf)
2268{
2269 if ((vf < 0) || (vf >= dev->num_vfs)) {
2270 mlx4_err(dev, "Bad vf number:%d (number of activated vf: %d)\n", vf, dev->num_vfs);
2271 return -EINVAL;
2272 }
2273
2274 return vf+1;
2275}
2276
Matan Barakf74462a2014-03-19 18:11:51 +02002277int mlx4_get_vf_indx(struct mlx4_dev *dev, int slave)
2278{
2279 if (slave < 1 || slave > dev->num_vfs) {
2280 mlx4_err(dev,
2281 "Bad slave number:%d (number of activated slaves: %lu)\n",
2282 slave, dev->num_slaves);
2283 return -EINVAL;
2284 }
2285 return slave - 1;
2286}
2287
2288struct mlx4_active_ports mlx4_get_active_ports(struct mlx4_dev *dev, int slave)
2289{
2290 struct mlx4_active_ports actv_ports;
2291 int vf;
2292
2293 bitmap_zero(actv_ports.ports, MLX4_MAX_PORTS);
2294
2295 if (slave == 0) {
2296 bitmap_fill(actv_ports.ports, dev->caps.num_ports);
2297 return actv_ports;
2298 }
2299
2300 vf = mlx4_get_vf_indx(dev, slave);
2301 if (vf < 0)
2302 return actv_ports;
2303
2304 bitmap_set(actv_ports.ports, dev->dev_vfs[vf].min_port - 1,
2305 min((int)dev->dev_vfs[mlx4_get_vf_indx(dev, slave)].n_ports,
2306 dev->caps.num_ports));
2307
2308 return actv_ports;
2309}
2310EXPORT_SYMBOL_GPL(mlx4_get_active_ports);
2311
2312int mlx4_slave_convert_port(struct mlx4_dev *dev, int slave, int port)
2313{
2314 unsigned n;
2315 struct mlx4_active_ports actv_ports = mlx4_get_active_ports(dev, slave);
2316 unsigned m = bitmap_weight(actv_ports.ports, dev->caps.num_ports);
2317
2318 if (port <= 0 || port > m)
2319 return -EINVAL;
2320
2321 n = find_first_bit(actv_ports.ports, dev->caps.num_ports);
2322 if (port <= n)
2323 port = n + 1;
2324
2325 return port;
2326}
2327EXPORT_SYMBOL_GPL(mlx4_slave_convert_port);
2328
2329int mlx4_phys_to_slave_port(struct mlx4_dev *dev, int slave, int port)
2330{
2331 struct mlx4_active_ports actv_ports = mlx4_get_active_ports(dev, slave);
2332 if (test_bit(port - 1, actv_ports.ports))
2333 return port -
2334 find_first_bit(actv_ports.ports, dev->caps.num_ports);
2335
2336 return -1;
2337}
2338EXPORT_SYMBOL_GPL(mlx4_phys_to_slave_port);
2339
2340struct mlx4_slaves_pport mlx4_phys_to_slaves_pport(struct mlx4_dev *dev,
2341 int port)
2342{
2343 unsigned i;
2344 struct mlx4_slaves_pport slaves_pport;
2345
2346 bitmap_zero(slaves_pport.slaves, MLX4_MFUNC_MAX);
2347
2348 if (port <= 0 || port > dev->caps.num_ports)
2349 return slaves_pport;
2350
2351 for (i = 0; i < dev->num_vfs + 1; i++) {
2352 struct mlx4_active_ports actv_ports =
2353 mlx4_get_active_ports(dev, i);
2354 if (test_bit(port - 1, actv_ports.ports))
2355 set_bit(i, slaves_pport.slaves);
2356 }
2357
2358 return slaves_pport;
2359}
2360EXPORT_SYMBOL_GPL(mlx4_phys_to_slaves_pport);
2361
2362struct mlx4_slaves_pport mlx4_phys_to_slaves_pport_actv(
2363 struct mlx4_dev *dev,
2364 const struct mlx4_active_ports *crit_ports)
2365{
2366 unsigned i;
2367 struct mlx4_slaves_pport slaves_pport;
2368
2369 bitmap_zero(slaves_pport.slaves, MLX4_MFUNC_MAX);
2370
2371 for (i = 0; i < dev->num_vfs + 1; i++) {
2372 struct mlx4_active_ports actv_ports =
2373 mlx4_get_active_ports(dev, i);
2374 if (bitmap_equal(crit_ports->ports, actv_ports.ports,
2375 dev->caps.num_ports))
2376 set_bit(i, slaves_pport.slaves);
2377 }
2378
2379 return slaves_pport;
2380}
2381EXPORT_SYMBOL_GPL(mlx4_phys_to_slaves_pport_actv);
2382
Rony Efraim8f7ba3c2013-04-25 05:22:27 +00002383int mlx4_set_vf_mac(struct mlx4_dev *dev, int port, int vf, u64 mac)
2384{
2385 struct mlx4_priv *priv = mlx4_priv(dev);
2386 struct mlx4_vport_state *s_info;
2387 int slave;
2388
2389 if (!mlx4_is_master(dev))
2390 return -EPROTONOSUPPORT;
2391
2392 slave = mlx4_get_slave_indx(dev, vf);
2393 if (slave < 0)
2394 return -EINVAL;
2395
2396 s_info = &priv->mfunc.master.vf_admin[slave].vport[port];
2397 s_info->mac = mac;
2398 mlx4_info(dev, "default mac on vf %d port %d to %llX will take afect only after vf restart\n",
2399 vf, port, s_info->mac);
2400 return 0;
2401}
2402EXPORT_SYMBOL_GPL(mlx4_set_vf_mac);
Rony Efraim3f7fb022013-04-25 05:22:28 +00002403
Jack Morgensteinb01978c2013-06-27 19:05:21 +03002404
Rony Efraim3f7fb022013-04-25 05:22:28 +00002405int mlx4_set_vf_vlan(struct mlx4_dev *dev, int port, int vf, u16 vlan, u8 qos)
2406{
2407 struct mlx4_priv *priv = mlx4_priv(dev);
Jack Morgensteinb01978c2013-06-27 19:05:21 +03002408 struct mlx4_vport_state *vf_admin;
Rony Efraim3f7fb022013-04-25 05:22:28 +00002409 int slave;
2410
2411 if ((!mlx4_is_master(dev)) ||
2412 !(dev->caps.flags2 & MLX4_DEV_CAP_FLAG2_VLAN_CONTROL))
2413 return -EPROTONOSUPPORT;
2414
2415 if ((vlan > 4095) || (qos > 7))
2416 return -EINVAL;
2417
2418 slave = mlx4_get_slave_indx(dev, vf);
2419 if (slave < 0)
2420 return -EINVAL;
2421
Jack Morgensteinb01978c2013-06-27 19:05:21 +03002422 vf_admin = &priv->mfunc.master.vf_admin[slave].vport[port];
Jack Morgensteinb01978c2013-06-27 19:05:21 +03002423
Rony Efraim3f7fb022013-04-25 05:22:28 +00002424 if ((0 == vlan) && (0 == qos))
Jack Morgensteinb01978c2013-06-27 19:05:21 +03002425 vf_admin->default_vlan = MLX4_VGT;
Rony Efraim3f7fb022013-04-25 05:22:28 +00002426 else
Jack Morgensteinb01978c2013-06-27 19:05:21 +03002427 vf_admin->default_vlan = vlan;
2428 vf_admin->default_qos = qos;
2429
Rony Efraim0a6eac22013-06-27 19:05:22 +03002430 if (mlx4_master_immediate_activate_vlan_qos(priv, slave, port))
2431 mlx4_info(dev,
2432 "updating vf %d port %d config will take effect on next VF restart\n",
Jack Morgensteinb01978c2013-06-27 19:05:21 +03002433 vf, port);
Rony Efraim3f7fb022013-04-25 05:22:28 +00002434 return 0;
2435}
2436EXPORT_SYMBOL_GPL(mlx4_set_vf_vlan);
Rony Efraime6b6a232013-04-25 05:22:29 +00002437
Jack Morgenstein5ea8bbf2014-03-12 12:00:41 +02002438 /* mlx4_get_slave_default_vlan -
2439 * return true if VST ( default vlan)
2440 * if VST, will return vlan & qos (if not NULL)
2441 */
2442bool mlx4_get_slave_default_vlan(struct mlx4_dev *dev, int port, int slave,
2443 u16 *vlan, u8 *qos)
2444{
2445 struct mlx4_vport_oper_state *vp_oper;
2446 struct mlx4_priv *priv;
2447
2448 priv = mlx4_priv(dev);
2449 vp_oper = &priv->mfunc.master.vf_oper[slave].vport[port];
2450
2451 if (MLX4_VGT != vp_oper->state.default_vlan) {
2452 if (vlan)
2453 *vlan = vp_oper->state.default_vlan;
2454 if (qos)
2455 *qos = vp_oper->state.default_qos;
2456 return true;
2457 }
2458 return false;
2459}
2460EXPORT_SYMBOL_GPL(mlx4_get_slave_default_vlan);
2461
Rony Efraime6b6a232013-04-25 05:22:29 +00002462int mlx4_set_vf_spoofchk(struct mlx4_dev *dev, int port, int vf, bool setting)
2463{
2464 struct mlx4_priv *priv = mlx4_priv(dev);
2465 struct mlx4_vport_state *s_info;
2466 int slave;
2467
2468 if ((!mlx4_is_master(dev)) ||
2469 !(dev->caps.flags2 & MLX4_DEV_CAP_FLAG2_FSM))
2470 return -EPROTONOSUPPORT;
2471
2472 slave = mlx4_get_slave_indx(dev, vf);
2473 if (slave < 0)
2474 return -EINVAL;
2475
2476 s_info = &priv->mfunc.master.vf_admin[slave].vport[port];
2477 s_info->spoofchk = setting;
2478
2479 return 0;
2480}
2481EXPORT_SYMBOL_GPL(mlx4_set_vf_spoofchk);
Rony Efraim2cccb9e2013-04-25 05:22:30 +00002482
2483int mlx4_get_vf_config(struct mlx4_dev *dev, int port, int vf, struct ifla_vf_info *ivf)
2484{
2485 struct mlx4_priv *priv = mlx4_priv(dev);
2486 struct mlx4_vport_state *s_info;
2487 int slave;
2488
2489 if (!mlx4_is_master(dev))
2490 return -EPROTONOSUPPORT;
2491
2492 slave = mlx4_get_slave_indx(dev, vf);
2493 if (slave < 0)
2494 return -EINVAL;
2495
2496 s_info = &priv->mfunc.master.vf_admin[slave].vport[port];
2497 ivf->vf = vf;
2498
2499 /* need to convert it to a func */
2500 ivf->mac[0] = ((s_info->mac >> (5*8)) & 0xff);
2501 ivf->mac[1] = ((s_info->mac >> (4*8)) & 0xff);
2502 ivf->mac[2] = ((s_info->mac >> (3*8)) & 0xff);
2503 ivf->mac[3] = ((s_info->mac >> (2*8)) & 0xff);
2504 ivf->mac[4] = ((s_info->mac >> (1*8)) & 0xff);
2505 ivf->mac[5] = ((s_info->mac) & 0xff);
2506
Sucheta Chakrabortyed616682014-05-22 09:59:05 -04002507 ivf->vlan = s_info->default_vlan;
2508 ivf->qos = s_info->default_qos;
2509 ivf->max_tx_rate = s_info->tx_rate;
2510 ivf->min_tx_rate = 0;
2511 ivf->spoofchk = s_info->spoofchk;
2512 ivf->linkstate = s_info->link_state;
Rony Efraim2cccb9e2013-04-25 05:22:30 +00002513
2514 return 0;
2515}
2516EXPORT_SYMBOL_GPL(mlx4_get_vf_config);
Rony Efraim948e3062013-06-13 13:19:11 +03002517
2518int mlx4_set_vf_link_state(struct mlx4_dev *dev, int port, int vf, int link_state)
2519{
2520 struct mlx4_priv *priv = mlx4_priv(dev);
2521 struct mlx4_vport_state *s_info;
Rony Efraim948e3062013-06-13 13:19:11 +03002522 int slave;
2523 u8 link_stat_event;
2524
2525 slave = mlx4_get_slave_indx(dev, vf);
2526 if (slave < 0)
2527 return -EINVAL;
2528
2529 switch (link_state) {
2530 case IFLA_VF_LINK_STATE_AUTO:
2531 /* get current link state */
2532 if (!priv->sense.do_sense_port[port])
2533 link_stat_event = MLX4_PORT_CHANGE_SUBTYPE_ACTIVE;
2534 else
2535 link_stat_event = MLX4_PORT_CHANGE_SUBTYPE_DOWN;
2536 break;
2537
2538 case IFLA_VF_LINK_STATE_ENABLE:
2539 link_stat_event = MLX4_PORT_CHANGE_SUBTYPE_ACTIVE;
2540 break;
2541
2542 case IFLA_VF_LINK_STATE_DISABLE:
2543 link_stat_event = MLX4_PORT_CHANGE_SUBTYPE_DOWN;
2544 break;
2545
2546 default:
2547 mlx4_warn(dev, "unknown value for link_state %02x on slave %d port %d\n",
2548 link_state, slave, port);
2549 return -EINVAL;
2550 };
Rony Efraim948e3062013-06-13 13:19:11 +03002551 s_info = &priv->mfunc.master.vf_admin[slave].vport[port];
Rony Efraim948e3062013-06-13 13:19:11 +03002552 s_info->link_state = link_state;
Rony Efraim948e3062013-06-13 13:19:11 +03002553
2554 /* send event */
2555 mlx4_gen_port_state_change_eqe(dev, slave, port, link_stat_event);
Rony Efraim0a6eac22013-06-27 19:05:22 +03002556
2557 if (mlx4_master_immediate_activate_vlan_qos(priv, slave, port))
2558 mlx4_dbg(dev,
2559 "updating vf %d port %d no link state HW enforcment\n",
2560 vf, port);
Rony Efraim948e3062013-06-13 13:19:11 +03002561 return 0;
2562}
2563EXPORT_SYMBOL_GPL(mlx4_set_vf_link_state);
Jack Morgenstein97982f52014-05-29 16:31:02 +03002564
2565int mlx4_vf_smi_enabled(struct mlx4_dev *dev, int slave, int port)
2566{
Jack Morgenstein99ec41d2014-05-29 16:31:03 +03002567 struct mlx4_priv *priv = mlx4_priv(dev);
2568
2569 if (slave < 1 || slave >= dev->num_slaves ||
2570 port < 1 || port > MLX4_MAX_PORTS)
2571 return 0;
2572
2573 return priv->mfunc.master.vf_oper[slave].smi_enabled[port] ==
2574 MLX4_VF_SMI_ENABLED;
Jack Morgenstein97982f52014-05-29 16:31:02 +03002575}
2576EXPORT_SYMBOL_GPL(mlx4_vf_smi_enabled);
Jack Morgenstein65fed8a2014-05-29 16:31:04 +03002577
2578int mlx4_vf_get_enable_smi_admin(struct mlx4_dev *dev, int slave, int port)
2579{
2580 struct mlx4_priv *priv = mlx4_priv(dev);
2581
2582 if (slave == mlx4_master_func_num(dev))
2583 return 1;
2584
2585 if (slave < 1 || slave >= dev->num_slaves ||
2586 port < 1 || port > MLX4_MAX_PORTS)
2587 return 0;
2588
2589 return priv->mfunc.master.vf_admin[slave].enable_smi[port] ==
2590 MLX4_VF_SMI_ENABLED;
2591}
2592EXPORT_SYMBOL_GPL(mlx4_vf_get_enable_smi_admin);
2593
2594int mlx4_vf_set_enable_smi_admin(struct mlx4_dev *dev, int slave, int port,
2595 int enabled)
2596{
2597 struct mlx4_priv *priv = mlx4_priv(dev);
2598
2599 if (slave == mlx4_master_func_num(dev))
2600 return 0;
2601
2602 if (slave < 1 || slave >= dev->num_slaves ||
2603 port < 1 || port > MLX4_MAX_PORTS ||
2604 enabled < 0 || enabled > 1)
2605 return -EINVAL;
2606
2607 priv->mfunc.master.vf_admin[slave].enable_smi[port] = enabled;
2608 return 0;
2609}
2610EXPORT_SYMBOL_GPL(mlx4_vf_set_enable_smi_admin);