net/mlx4_core: Add basic support for TCP/IP offloads under tunneling
[linux-2.6-block.git] / drivers / net / ethernet / mellanox / mlx4 / port.c
CommitLineData
2a2336f8
YP
1/*
2 * Copyright (c) 2007 Mellanox Technologies. All rights reserved.
3 *
4 * This software is available to you under a choice of one of two
5 * licenses. You may choose to be licensed under the terms of the GNU
6 * General Public License (GPL) Version 2, available from the file
7 * COPYING in the main directory of this source tree, or the
8 * OpenIB.org BSD license below:
9 *
10 * Redistribution and use in source and binary forms, with or
11 * without modification, are permitted provided that the following
12 * conditions are met:
13 *
14 * - Redistributions of source code must retain the above
15 * copyright notice, this list of conditions and the following
16 * disclaimer.
17 *
18 * - Redistributions in binary form must reproduce the above
19 * copyright notice, this list of conditions and the following
20 * disclaimer in the documentation and/or other materials
21 * provided with the distribution.
22 *
23 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
24 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
25 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
26 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
27 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
28 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
29 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
30 * SOFTWARE.
31 */
32
33#include <linux/errno.h>
34#include <linux/if_ether.h>
c59fec20 35#include <linux/if_vlan.h>
ee40fa06 36#include <linux/export.h>
2a2336f8
YP
37
38#include <linux/mlx4/cmd.h>
39
40#include "mlx4.h"
41
42#define MLX4_MAC_VALID (1ull << 63)
2a2336f8
YP
43
44#define MLX4_VLAN_VALID (1u << 31)
45#define MLX4_VLAN_MASK 0xfff
46
93ece0c1
EE
47#define MLX4_STATS_TRAFFIC_COUNTERS_MASK 0xfULL
48#define MLX4_STATS_TRAFFIC_DROPS_MASK 0xc0ULL
49#define MLX4_STATS_ERROR_COUNTERS_MASK 0x1ffc30ULL
50#define MLX4_STATS_PORT_COUNTERS_MASK 0x1fe00000ULL
51
2a2336f8
YP
52void mlx4_init_mac_table(struct mlx4_dev *dev, struct mlx4_mac_table *table)
53{
54 int i;
55
56 mutex_init(&table->mutex);
57 for (i = 0; i < MLX4_MAX_MAC_NUM; i++) {
58 table->entries[i] = 0;
59 table->refs[i] = 0;
60 }
61 table->max = 1 << dev->caps.log_num_macs;
62 table->total = 0;
63}
64
65void mlx4_init_vlan_table(struct mlx4_dev *dev, struct mlx4_vlan_table *table)
66{
67 int i;
68
69 mutex_init(&table->mutex);
70 for (i = 0; i < MLX4_MAX_VLAN_NUM; i++) {
71 table->entries[i] = 0;
72 table->refs[i] = 0;
73 }
e72ebf5a 74 table->max = (1 << dev->caps.log_num_vlans) - MLX4_VLAN_REGULAR;
2a2336f8
YP
75 table->total = 0;
76}
77
ffe455ad
EE
78static int validate_index(struct mlx4_dev *dev,
79 struct mlx4_mac_table *table, int index)
80{
81 int err = 0;
82
83 if (index < 0 || index >= table->max || !table->entries[index]) {
84 mlx4_warn(dev, "No valid Mac entry for the given index\n");
85 err = -EINVAL;
86 }
87 return err;
88}
89
90static int find_index(struct mlx4_dev *dev,
91 struct mlx4_mac_table *table, u64 mac)
92{
93 int i;
94
95 for (i = 0; i < MLX4_MAX_MAC_NUM; i++) {
96 if ((mac & MLX4_MAC_MASK) ==
97 (MLX4_MAC_MASK & be64_to_cpu(table->entries[i])))
98 return i;
99 }
100 /* Mac not found */
101 return -EINVAL;
1679200f
YP
102}
103
ffe455ad
EE
104static int mlx4_set_port_mac_table(struct mlx4_dev *dev, u8 port,
105 __be64 *entries)
106{
107 struct mlx4_cmd_mailbox *mailbox;
108 u32 in_mod;
109 int err;
110
111 mailbox = mlx4_alloc_cmd_mailbox(dev);
112 if (IS_ERR(mailbox))
113 return PTR_ERR(mailbox);
114
115 memcpy(mailbox->buf, entries, MLX4_MAC_TABLE_SIZE);
116
117 in_mod = MLX4_SET_PORT_MAC_TABLE << 8 | port;
0f6740c7 118
ffe455ad
EE
119 err = mlx4_cmd(dev, mailbox->dma, in_mod, 1, MLX4_CMD_SET_PORT,
120 MLX4_CMD_TIME_CLASS_B, MLX4_CMD_NATIVE);
121
122 mlx4_free_cmd_mailbox(dev, mailbox);
123 return err;
124}
125
126int __mlx4_register_mac(struct mlx4_dev *dev, u8 port, u64 mac)
127{
128 struct mlx4_port_info *info = &mlx4_priv(dev)->port[port];
129 struct mlx4_mac_table *table = &info->mac_table;
130 int i, err = 0;
131 int free = -1;
132
133 mlx4_dbg(dev, "Registering MAC: 0x%llx for port %d\n",
134 (unsigned long long) mac, port);
0f6740c7 135
2a2336f8 136 mutex_lock(&table->mutex);
ffe455ad
EE
137 for (i = 0; i < MLX4_MAX_MAC_NUM; i++) {
138 if (free < 0 && !table->entries[i]) {
2a2336f8
YP
139 free = i;
140 continue;
141 }
142
143 if (mac == (MLX4_MAC_MASK & be64_to_cpu(table->entries[i]))) {
6ce71acd
RE
144 /* MAC already registered, increment ref count */
145 err = i;
146 ++table->refs[i];
2a2336f8
YP
147 goto out;
148 }
149 }
0926f910 150
2a2336f8
YP
151 mlx4_dbg(dev, "Free MAC index is %d\n", free);
152
153 if (table->total == table->max) {
154 /* No free mac entries */
155 err = -ENOSPC;
156 goto out;
157 }
158
159 /* Register new MAC */
2a2336f8
YP
160 table->entries[free] = cpu_to_be64(mac | MLX4_MAC_VALID);
161
162 err = mlx4_set_port_mac_table(dev, port, table->entries);
163 if (unlikely(err)) {
ffe455ad
EE
164 mlx4_err(dev, "Failed adding MAC: 0x%llx\n",
165 (unsigned long long) mac);
2a2336f8
YP
166 table->entries[free] = 0;
167 goto out;
168 }
6ce71acd 169 table->refs[free] = 1;
ffe455ad 170 err = free;
2a2336f8
YP
171 ++table->total;
172out:
173 mutex_unlock(&table->mutex);
174 return err;
175}
ffe455ad 176EXPORT_SYMBOL_GPL(__mlx4_register_mac);
2a2336f8 177
ffe455ad 178int mlx4_register_mac(struct mlx4_dev *dev, u8 port, u64 mac)
2a2336f8 179{
e7dbeba8 180 u64 out_param = 0;
acddd5dd 181 int err = -EINVAL;
2a2336f8 182
ffe455ad 183 if (mlx4_is_mfunc(dev)) {
acddd5dd
JM
184 if (!(dev->flags & MLX4_FLAG_OLD_REG_MAC)) {
185 err = mlx4_cmd_imm(dev, mac, &out_param,
186 ((u32) port) << 8 | (u32) RES_MAC,
187 RES_OP_RESERVE_AND_MAP, MLX4_CMD_ALLOC_RES,
188 MLX4_CMD_TIME_CLASS_A, MLX4_CMD_WRAPPED);
189 }
190 if (err && err == -EINVAL && mlx4_is_slave(dev)) {
191 /* retry using old REG_MAC format */
192 set_param_l(&out_param, port);
193 err = mlx4_cmd_imm(dev, mac, &out_param, RES_MAC,
194 RES_OP_RESERVE_AND_MAP, MLX4_CMD_ALLOC_RES,
195 MLX4_CMD_TIME_CLASS_A, MLX4_CMD_WRAPPED);
196 if (!err)
197 dev->flags |= MLX4_FLAG_OLD_REG_MAC;
198 }
ffe455ad
EE
199 if (err)
200 return err;
1679200f 201
ffe455ad 202 return get_param_l(&out_param);
1679200f 203 }
ffe455ad 204 return __mlx4_register_mac(dev, port, mac);
1679200f 205}
ffe455ad
EE
206EXPORT_SYMBOL_GPL(mlx4_register_mac);
207
16a10ffd
YB
208int mlx4_get_base_qpn(struct mlx4_dev *dev, u8 port)
209{
210 return dev->caps.reserved_qps_base[MLX4_QP_REGION_ETH_ADDR] +
211 (port - 1) * (1 << dev->caps.log_num_macs);
212}
213EXPORT_SYMBOL_GPL(mlx4_get_base_qpn);
1679200f 214
ffe455ad 215void __mlx4_unregister_mac(struct mlx4_dev *dev, u8 port, u64 mac)
1679200f
YP
216{
217 struct mlx4_port_info *info = &mlx4_priv(dev)->port[port];
218 struct mlx4_mac_table *table = &info->mac_table;
ffe455ad 219 int index;
1679200f 220
1679200f 221 mutex_lock(&table->mutex);
6ce71acd 222 index = find_index(dev, table, mac);
1679200f
YP
223
224 if (validate_index(dev, table, index))
225 goto out;
6ce71acd
RE
226 if (--table->refs[index]) {
227 mlx4_dbg(dev, "Have more references for index %d,"
228 "no need to modify mac table\n", index);
229 goto out;
230 }
1679200f 231
ffe455ad
EE
232 table->entries[index] = 0;
233 mlx4_set_port_mac_table(dev, port, table->entries);
234 --table->total;
2a2336f8
YP
235out:
236 mutex_unlock(&table->mutex);
237}
ffe455ad
EE
238EXPORT_SYMBOL_GPL(__mlx4_unregister_mac);
239
240void mlx4_unregister_mac(struct mlx4_dev *dev, u8 port, u64 mac)
241{
e7dbeba8 242 u64 out_param = 0;
ffe455ad
EE
243
244 if (mlx4_is_mfunc(dev)) {
acddd5dd
JM
245 if (!(dev->flags & MLX4_FLAG_OLD_REG_MAC)) {
246 (void) mlx4_cmd_imm(dev, mac, &out_param,
247 ((u32) port) << 8 | (u32) RES_MAC,
248 RES_OP_RESERVE_AND_MAP, MLX4_CMD_FREE_RES,
249 MLX4_CMD_TIME_CLASS_A, MLX4_CMD_WRAPPED);
250 } else {
251 /* use old unregister mac format */
252 set_param_l(&out_param, port);
253 (void) mlx4_cmd_imm(dev, mac, &out_param, RES_MAC,
254 RES_OP_RESERVE_AND_MAP, MLX4_CMD_FREE_RES,
255 MLX4_CMD_TIME_CLASS_A, MLX4_CMD_WRAPPED);
256 }
ffe455ad
EE
257 return;
258 }
259 __mlx4_unregister_mac(dev, port, mac);
260 return;
261}
2a2336f8
YP
262EXPORT_SYMBOL_GPL(mlx4_unregister_mac);
263
16a10ffd 264int __mlx4_replace_mac(struct mlx4_dev *dev, u8 port, int qpn, u64 new_mac)
1679200f
YP
265{
266 struct mlx4_port_info *info = &mlx4_priv(dev)->port[port];
267 struct mlx4_mac_table *table = &info->mac_table;
ffe455ad
EE
268 int index = qpn - info->base_qpn;
269 int err = 0;
1679200f 270
ffe455ad 271 /* CX1 doesn't support multi-functions */
1679200f
YP
272 mutex_lock(&table->mutex);
273
274 err = validate_index(dev, table, index);
275 if (err)
276 goto out;
277
278 table->entries[index] = cpu_to_be64(new_mac | MLX4_MAC_VALID);
279
280 err = mlx4_set_port_mac_table(dev, port, table->entries);
281 if (unlikely(err)) {
ffe455ad
EE
282 mlx4_err(dev, "Failed adding MAC: 0x%llx\n",
283 (unsigned long long) new_mac);
1679200f
YP
284 table->entries[index] = 0;
285 }
286out:
287 mutex_unlock(&table->mutex);
288 return err;
289}
16a10ffd 290EXPORT_SYMBOL_GPL(__mlx4_replace_mac);
ffe455ad 291
2a2336f8
YP
292static int mlx4_set_port_vlan_table(struct mlx4_dev *dev, u8 port,
293 __be32 *entries)
294{
295 struct mlx4_cmd_mailbox *mailbox;
296 u32 in_mod;
297 int err;
298
299 mailbox = mlx4_alloc_cmd_mailbox(dev);
300 if (IS_ERR(mailbox))
301 return PTR_ERR(mailbox);
302
303 memcpy(mailbox->buf, entries, MLX4_VLAN_TABLE_SIZE);
304 in_mod = MLX4_SET_PORT_VLAN_TABLE << 8 | port;
305 err = mlx4_cmd(dev, mailbox->dma, in_mod, 1, MLX4_CMD_SET_PORT,
162226a1 306 MLX4_CMD_TIME_CLASS_B, MLX4_CMD_NATIVE);
2a2336f8
YP
307
308 mlx4_free_cmd_mailbox(dev, mailbox);
309
310 return err;
311}
312
4c3eb3ca
EC
313int mlx4_find_cached_vlan(struct mlx4_dev *dev, u8 port, u16 vid, int *idx)
314{
315 struct mlx4_vlan_table *table = &mlx4_priv(dev)->port[port].vlan_table;
316 int i;
317
318 for (i = 0; i < MLX4_MAX_VLAN_NUM; ++i) {
319 if (table->refs[i] &&
320 (vid == (MLX4_VLAN_MASK &
321 be32_to_cpu(table->entries[i])))) {
322 /* VLAN already registered, increase reference count */
323 *idx = i;
324 return 0;
325 }
326 }
327
328 return -ENOENT;
329}
330EXPORT_SYMBOL_GPL(mlx4_find_cached_vlan);
331
3f7fb021 332int __mlx4_register_vlan(struct mlx4_dev *dev, u8 port, u16 vlan,
ffe455ad 333 int *index)
2a2336f8
YP
334{
335 struct mlx4_vlan_table *table = &mlx4_priv(dev)->port[port].vlan_table;
336 int i, err = 0;
337 int free = -1;
338
339 mutex_lock(&table->mutex);
e72ebf5a
YP
340
341 if (table->total == table->max) {
342 /* No free vlan entries */
343 err = -ENOSPC;
344 goto out;
345 }
346
2a2336f8
YP
347 for (i = MLX4_VLAN_REGULAR; i < MLX4_MAX_VLAN_NUM; i++) {
348 if (free < 0 && (table->refs[i] == 0)) {
349 free = i;
350 continue;
351 }
352
353 if (table->refs[i] &&
354 (vlan == (MLX4_VLAN_MASK &
355 be32_to_cpu(table->entries[i])))) {
25985edc 356 /* Vlan already registered, increase references count */
2a2336f8
YP
357 *index = i;
358 ++table->refs[i];
359 goto out;
360 }
361 }
362
0926f910
EC
363 if (free < 0) {
364 err = -ENOMEM;
365 goto out;
366 }
367
ffe455ad 368 /* Register new VLAN */
2a2336f8
YP
369 table->refs[free] = 1;
370 table->entries[free] = cpu_to_be32(vlan | MLX4_VLAN_VALID);
371
372 err = mlx4_set_port_vlan_table(dev, port, table->entries);
373 if (unlikely(err)) {
374 mlx4_warn(dev, "Failed adding vlan: %u\n", vlan);
375 table->refs[free] = 0;
376 table->entries[free] = 0;
377 goto out;
378 }
379
380 *index = free;
381 ++table->total;
382out:
383 mutex_unlock(&table->mutex);
384 return err;
385}
ffe455ad
EE
386
387int mlx4_register_vlan(struct mlx4_dev *dev, u8 port, u16 vlan, int *index)
388{
e7dbeba8 389 u64 out_param = 0;
ffe455ad
EE
390 int err;
391
162226a1
JM
392 if (vlan > 4095)
393 return -EINVAL;
394
ffe455ad 395 if (mlx4_is_mfunc(dev)) {
acddd5dd
JM
396 err = mlx4_cmd_imm(dev, vlan, &out_param,
397 ((u32) port) << 8 | (u32) RES_VLAN,
ffe455ad
EE
398 RES_OP_RESERVE_AND_MAP, MLX4_CMD_ALLOC_RES,
399 MLX4_CMD_TIME_CLASS_A, MLX4_CMD_WRAPPED);
400 if (!err)
401 *index = get_param_l(&out_param);
402
403 return err;
404 }
405 return __mlx4_register_vlan(dev, port, vlan, index);
406}
2a2336f8
YP
407EXPORT_SYMBOL_GPL(mlx4_register_vlan);
408
2009d005 409void __mlx4_unregister_vlan(struct mlx4_dev *dev, u8 port, u16 vlan)
2a2336f8
YP
410{
411 struct mlx4_vlan_table *table = &mlx4_priv(dev)->port[port].vlan_table;
2009d005 412 int index;
2a2336f8 413
2009d005
JM
414 mutex_lock(&table->mutex);
415 if (mlx4_find_cached_vlan(dev, port, vlan, &index)) {
416 mlx4_warn(dev, "vlan 0x%x is not in the vlan table\n", vlan);
417 goto out;
2a2336f8
YP
418 }
419
2009d005
JM
420 if (index < MLX4_VLAN_REGULAR) {
421 mlx4_warn(dev, "Trying to free special vlan index %d\n", index);
2a2336f8
YP
422 goto out;
423 }
2009d005 424
2a2336f8 425 if (--table->refs[index]) {
2009d005
JM
426 mlx4_dbg(dev, "Have %d more references for index %d,"
427 "no need to modify vlan table\n", table->refs[index],
428 index);
2a2336f8
YP
429 goto out;
430 }
431 table->entries[index] = 0;
432 mlx4_set_port_vlan_table(dev, port, table->entries);
433 --table->total;
434out:
435 mutex_unlock(&table->mutex);
436}
ffe455ad 437
2009d005 438void mlx4_unregister_vlan(struct mlx4_dev *dev, u8 port, u16 vlan)
ffe455ad 439{
162226a1 440 u64 out_param = 0;
ffe455ad
EE
441
442 if (mlx4_is_mfunc(dev)) {
2009d005 443 (void) mlx4_cmd_imm(dev, vlan, &out_param,
acddd5dd 444 ((u32) port) << 8 | (u32) RES_VLAN,
162226a1
JM
445 RES_OP_RESERVE_AND_MAP,
446 MLX4_CMD_FREE_RES, MLX4_CMD_TIME_CLASS_A,
447 MLX4_CMD_WRAPPED);
ffe455ad
EE
448 return;
449 }
2009d005 450 __mlx4_unregister_vlan(dev, port, vlan);
ffe455ad 451}
2a2336f8 452EXPORT_SYMBOL_GPL(mlx4_unregister_vlan);
7ff93f8b 453
9a5aa622
JM
454int mlx4_get_port_ib_caps(struct mlx4_dev *dev, u8 port, __be32 *caps)
455{
456 struct mlx4_cmd_mailbox *inmailbox, *outmailbox;
457 u8 *inbuf, *outbuf;
458 int err;
459
460 inmailbox = mlx4_alloc_cmd_mailbox(dev);
461 if (IS_ERR(inmailbox))
462 return PTR_ERR(inmailbox);
463
464 outmailbox = mlx4_alloc_cmd_mailbox(dev);
465 if (IS_ERR(outmailbox)) {
466 mlx4_free_cmd_mailbox(dev, inmailbox);
467 return PTR_ERR(outmailbox);
468 }
469
470 inbuf = inmailbox->buf;
471 outbuf = outmailbox->buf;
9a5aa622
JM
472 inbuf[0] = 1;
473 inbuf[1] = 1;
474 inbuf[2] = 1;
475 inbuf[3] = 1;
476 *(__be16 *) (&inbuf[16]) = cpu_to_be16(0x0015);
477 *(__be32 *) (&inbuf[20]) = cpu_to_be32(port);
478
479 err = mlx4_cmd_box(dev, inmailbox->dma, outmailbox->dma, port, 3,
f9baff50
JM
480 MLX4_CMD_MAD_IFC, MLX4_CMD_TIME_CLASS_C,
481 MLX4_CMD_NATIVE);
9a5aa622
JM
482 if (!err)
483 *caps = *(__be32 *) (outbuf + 84);
484 mlx4_free_cmd_mailbox(dev, inmailbox);
485 mlx4_free_cmd_mailbox(dev, outmailbox);
486 return err;
487}
488
ffe455ad
EE
489static int mlx4_common_set_port(struct mlx4_dev *dev, int slave, u32 in_mod,
490 u8 op_mod, struct mlx4_cmd_mailbox *inbox)
491{
492 struct mlx4_priv *priv = mlx4_priv(dev);
493 struct mlx4_port_info *port_info;
494 struct mlx4_mfunc_master_ctx *master = &priv->mfunc.master;
495 struct mlx4_slave_state *slave_st = &master->slave_state[slave];
496 struct mlx4_set_port_rqp_calc_context *qpn_context;
497 struct mlx4_set_port_general_context *gen_context;
498 int reset_qkey_viols;
499 int port;
500 int is_eth;
501 u32 in_modifier;
502 u32 promisc;
503 u16 mtu, prev_mtu;
504 int err;
505 int i;
506 __be32 agg_cap_mask;
507 __be32 slave_cap_mask;
508 __be32 new_cap_mask;
509
510 port = in_mod & 0xff;
511 in_modifier = in_mod >> 8;
512 is_eth = op_mod;
513 port_info = &priv->port[port];
514
515 /* Slaves cannot perform SET_PORT operations except changing MTU */
516 if (is_eth) {
517 if (slave != dev->caps.function &&
518 in_modifier != MLX4_SET_PORT_GENERAL) {
519 mlx4_warn(dev, "denying SET_PORT for slave:%d\n",
520 slave);
521 return -EINVAL;
522 }
523 switch (in_modifier) {
524 case MLX4_SET_PORT_RQP_CALC:
525 qpn_context = inbox->buf;
526 qpn_context->base_qpn =
527 cpu_to_be32(port_info->base_qpn);
528 qpn_context->n_mac = 0x7;
529 promisc = be32_to_cpu(qpn_context->promisc) >>
530 SET_PORT_PROMISC_SHIFT;
531 qpn_context->promisc = cpu_to_be32(
532 promisc << SET_PORT_PROMISC_SHIFT |
533 port_info->base_qpn);
534 promisc = be32_to_cpu(qpn_context->mcast) >>
535 SET_PORT_MC_PROMISC_SHIFT;
536 qpn_context->mcast = cpu_to_be32(
537 promisc << SET_PORT_MC_PROMISC_SHIFT |
538 port_info->base_qpn);
539 break;
540 case MLX4_SET_PORT_GENERAL:
541 gen_context = inbox->buf;
542 /* Mtu is configured as the max MTU among all the
543 * the functions on the port. */
544 mtu = be16_to_cpu(gen_context->mtu);
c59fec20
EE
545 mtu = min_t(int, mtu, dev->caps.eth_mtu_cap[port] +
546 ETH_HLEN + VLAN_HLEN + ETH_FCS_LEN);
ffe455ad
EE
547 prev_mtu = slave_st->mtu[port];
548 slave_st->mtu[port] = mtu;
549 if (mtu > master->max_mtu[port])
550 master->max_mtu[port] = mtu;
551 if (mtu < prev_mtu && prev_mtu ==
552 master->max_mtu[port]) {
553 slave_st->mtu[port] = mtu;
554 master->max_mtu[port] = mtu;
555 for (i = 0; i < dev->num_slaves; i++) {
556 master->max_mtu[port] =
557 max(master->max_mtu[port],
558 master->slave_state[i].mtu[port]);
559 }
560 }
561
562 gen_context->mtu = cpu_to_be16(master->max_mtu[port]);
563 break;
564 }
565 return mlx4_cmd(dev, inbox->dma, in_mod, op_mod,
566 MLX4_CMD_SET_PORT, MLX4_CMD_TIME_CLASS_B,
567 MLX4_CMD_NATIVE);
568 }
569
570 /* For IB, we only consider:
571 * - The capability mask, which is set to the aggregate of all
572 * slave function capabilities
573 * - The QKey violatin counter - reset according to each request.
574 */
575
576 if (dev->flags & MLX4_FLAG_OLD_PORT_CMDS) {
577 reset_qkey_viols = (*(u8 *) inbox->buf) & 0x40;
578 new_cap_mask = ((__be32 *) inbox->buf)[2];
579 } else {
580 reset_qkey_viols = ((u8 *) inbox->buf)[3] & 0x1;
581 new_cap_mask = ((__be32 *) inbox->buf)[1];
582 }
583
efcd235d
JM
584 /* slave may not set the IS_SM capability for the port */
585 if (slave != mlx4_master_func_num(dev) &&
586 (be32_to_cpu(new_cap_mask) & MLX4_PORT_CAP_IS_SM))
587 return -EINVAL;
588
589 /* No DEV_MGMT in multifunc mode */
590 if (mlx4_is_mfunc(dev) &&
591 (be32_to_cpu(new_cap_mask) & MLX4_PORT_CAP_DEV_MGMT_SUP))
592 return -EINVAL;
593
ffe455ad
EE
594 agg_cap_mask = 0;
595 slave_cap_mask =
596 priv->mfunc.master.slave_state[slave].ib_cap_mask[port];
597 priv->mfunc.master.slave_state[slave].ib_cap_mask[port] = new_cap_mask;
598 for (i = 0; i < dev->num_slaves; i++)
599 agg_cap_mask |=
600 priv->mfunc.master.slave_state[i].ib_cap_mask[port];
601
602 /* only clear mailbox for guests. Master may be setting
603 * MTU or PKEY table size
604 */
605 if (slave != dev->caps.function)
606 memset(inbox->buf, 0, 256);
607 if (dev->flags & MLX4_FLAG_OLD_PORT_CMDS) {
edc4a67e 608 *(u8 *) inbox->buf |= !!reset_qkey_viols << 6;
ffe455ad
EE
609 ((__be32 *) inbox->buf)[2] = agg_cap_mask;
610 } else {
edc4a67e 611 ((u8 *) inbox->buf)[3] |= !!reset_qkey_viols;
ffe455ad
EE
612 ((__be32 *) inbox->buf)[1] = agg_cap_mask;
613 }
614
615 err = mlx4_cmd(dev, inbox->dma, port, is_eth, MLX4_CMD_SET_PORT,
616 MLX4_CMD_TIME_CLASS_B, MLX4_CMD_NATIVE);
617 if (err)
618 priv->mfunc.master.slave_state[slave].ib_cap_mask[port] =
619 slave_cap_mask;
620 return err;
621}
622
623int mlx4_SET_PORT_wrapper(struct mlx4_dev *dev, int slave,
624 struct mlx4_vhcr *vhcr,
625 struct mlx4_cmd_mailbox *inbox,
626 struct mlx4_cmd_mailbox *outbox,
627 struct mlx4_cmd_info *cmd)
628{
629 return mlx4_common_set_port(dev, slave, vhcr->in_modifier,
630 vhcr->op_modifier, inbox);
631}
632
096335b3
OG
633/* bit locations for set port command with zero op modifier */
634enum {
635 MLX4_SET_PORT_VL_CAP = 4, /* bits 7:4 */
636 MLX4_SET_PORT_MTU_CAP = 12, /* bits 15:12 */
6634961c 637 MLX4_CHANGE_PORT_PKEY_TBL_SZ = 20,
096335b3
OG
638 MLX4_CHANGE_PORT_VL_CAP = 21,
639 MLX4_CHANGE_PORT_MTU_CAP = 22,
640};
641
6634961c 642int mlx4_SET_PORT(struct mlx4_dev *dev, u8 port, int pkey_tbl_sz)
7ff93f8b
YP
643{
644 struct mlx4_cmd_mailbox *mailbox;
6634961c 645 int err, vl_cap, pkey_tbl_flag = 0;
7ff93f8b 646
352b09ed
RD
647 if (dev->caps.port_type[port] == MLX4_PORT_TYPE_ETH)
648 return 0;
649
7ff93f8b
YP
650 mailbox = mlx4_alloc_cmd_mailbox(dev);
651 if (IS_ERR(mailbox))
652 return PTR_ERR(mailbox);
653
793730bf 654 ((__be32 *) mailbox->buf)[1] = dev->caps.ib_port_def_cap[port];
096335b3 655
6634961c
JM
656 if (pkey_tbl_sz >= 0 && mlx4_is_master(dev)) {
657 pkey_tbl_flag = 1;
658 ((__be16 *) mailbox->buf)[20] = cpu_to_be16(pkey_tbl_sz);
659 }
660
096335b3
OG
661 /* IB VL CAP enum isn't used by the firmware, just numerical values */
662 for (vl_cap = 8; vl_cap >= 1; vl_cap >>= 1) {
663 ((__be32 *) mailbox->buf)[0] = cpu_to_be32(
664 (1 << MLX4_CHANGE_PORT_MTU_CAP) |
665 (1 << MLX4_CHANGE_PORT_VL_CAP) |
6634961c 666 (pkey_tbl_flag << MLX4_CHANGE_PORT_PKEY_TBL_SZ) |
096335b3
OG
667 (dev->caps.port_ib_mtu[port] << MLX4_SET_PORT_MTU_CAP) |
668 (vl_cap << MLX4_SET_PORT_VL_CAP));
669 err = mlx4_cmd(dev, mailbox->dma, port, 0, MLX4_CMD_SET_PORT,
670 MLX4_CMD_TIME_CLASS_B, MLX4_CMD_WRAPPED);
671 if (err != -ENOMEM)
672 break;
673 }
7ff93f8b
YP
674
675 mlx4_free_cmd_mailbox(dev, mailbox);
676 return err;
677}
ffe455ad 678
cb9ffb76 679int mlx4_SET_PORT_general(struct mlx4_dev *dev, u8 port, int mtu,
ffe455ad
EE
680 u8 pptx, u8 pfctx, u8 pprx, u8 pfcrx)
681{
682 struct mlx4_cmd_mailbox *mailbox;
683 struct mlx4_set_port_general_context *context;
684 int err;
685 u32 in_mod;
686
687 mailbox = mlx4_alloc_cmd_mailbox(dev);
688 if (IS_ERR(mailbox))
689 return PTR_ERR(mailbox);
690 context = mailbox->buf;
ffe455ad
EE
691 context->flags = SET_PORT_GEN_ALL_VALID;
692 context->mtu = cpu_to_be16(mtu);
693 context->pptx = (pptx * (!pfctx)) << 7;
694 context->pfctx = pfctx;
695 context->pprx = (pprx * (!pfcrx)) << 7;
696 context->pfcrx = pfcrx;
697
698 in_mod = MLX4_SET_PORT_GENERAL << 8 | port;
699 err = mlx4_cmd(dev, mailbox->dma, in_mod, 1, MLX4_CMD_SET_PORT,
700 MLX4_CMD_TIME_CLASS_B, MLX4_CMD_WRAPPED);
701
702 mlx4_free_cmd_mailbox(dev, mailbox);
703 return err;
704}
705EXPORT_SYMBOL(mlx4_SET_PORT_general);
706
cb9ffb76 707int mlx4_SET_PORT_qpn_calc(struct mlx4_dev *dev, u8 port, u32 base_qpn,
ffe455ad
EE
708 u8 promisc)
709{
710 struct mlx4_cmd_mailbox *mailbox;
711 struct mlx4_set_port_rqp_calc_context *context;
712 int err;
713 u32 in_mod;
714 u32 m_promisc = (dev->caps.flags & MLX4_DEV_CAP_FLAG_VEP_MC_STEER) ?
715 MCAST_DIRECT : MCAST_DEFAULT;
716
c96d97f4 717 if (dev->caps.steering_mode != MLX4_STEERING_MODE_A0)
ffe455ad
EE
718 return 0;
719
720 mailbox = mlx4_alloc_cmd_mailbox(dev);
721 if (IS_ERR(mailbox))
722 return PTR_ERR(mailbox);
723 context = mailbox->buf;
ffe455ad
EE
724 context->base_qpn = cpu_to_be32(base_qpn);
725 context->n_mac = dev->caps.log_num_macs;
726 context->promisc = cpu_to_be32(promisc << SET_PORT_PROMISC_SHIFT |
727 base_qpn);
728 context->mcast = cpu_to_be32(m_promisc << SET_PORT_MC_PROMISC_SHIFT |
729 base_qpn);
730 context->intra_no_vlan = 0;
731 context->no_vlan = MLX4_NO_VLAN_IDX;
732 context->intra_vlan_miss = 0;
733 context->vlan_miss = MLX4_VLAN_MISS_IDX;
734
735 in_mod = MLX4_SET_PORT_RQP_CALC << 8 | port;
736 err = mlx4_cmd(dev, mailbox->dma, in_mod, 1, MLX4_CMD_SET_PORT,
737 MLX4_CMD_TIME_CLASS_B, MLX4_CMD_WRAPPED);
738
739 mlx4_free_cmd_mailbox(dev, mailbox);
740 return err;
741}
742EXPORT_SYMBOL(mlx4_SET_PORT_qpn_calc);
743
e5395e92
AV
744int mlx4_SET_PORT_PRIO2TC(struct mlx4_dev *dev, u8 port, u8 *prio2tc)
745{
746 struct mlx4_cmd_mailbox *mailbox;
747 struct mlx4_set_port_prio2tc_context *context;
748 int err;
749 u32 in_mod;
750 int i;
751
752 mailbox = mlx4_alloc_cmd_mailbox(dev);
753 if (IS_ERR(mailbox))
754 return PTR_ERR(mailbox);
755 context = mailbox->buf;
e5395e92
AV
756 for (i = 0; i < MLX4_NUM_UP; i += 2)
757 context->prio2tc[i >> 1] = prio2tc[i] << 4 | prio2tc[i + 1];
758
759 in_mod = MLX4_SET_PORT_PRIO2TC << 8 | port;
760 err = mlx4_cmd(dev, mailbox->dma, in_mod, 1, MLX4_CMD_SET_PORT,
761 MLX4_CMD_TIME_CLASS_B, MLX4_CMD_NATIVE);
762
763 mlx4_free_cmd_mailbox(dev, mailbox);
764 return err;
765}
766EXPORT_SYMBOL(mlx4_SET_PORT_PRIO2TC);
767
768int mlx4_SET_PORT_SCHEDULER(struct mlx4_dev *dev, u8 port, u8 *tc_tx_bw,
769 u8 *pg, u16 *ratelimit)
770{
771 struct mlx4_cmd_mailbox *mailbox;
772 struct mlx4_set_port_scheduler_context *context;
773 int err;
774 u32 in_mod;
775 int i;
776
777 mailbox = mlx4_alloc_cmd_mailbox(dev);
778 if (IS_ERR(mailbox))
779 return PTR_ERR(mailbox);
780 context = mailbox->buf;
e5395e92
AV
781
782 for (i = 0; i < MLX4_NUM_TC; i++) {
783 struct mlx4_port_scheduler_tc_cfg_be *tc = &context->tc[i];
784 u16 r = ratelimit && ratelimit[i] ? ratelimit[i] :
785 MLX4_RATELIMIT_DEFAULT;
786
787 tc->pg = htons(pg[i]);
788 tc->bw_precentage = htons(tc_tx_bw[i]);
789
790 tc->max_bw_units = htons(MLX4_RATELIMIT_UNITS);
791 tc->max_bw_value = htons(r);
792 }
793
794 in_mod = MLX4_SET_PORT_SCHEDULER << 8 | port;
795 err = mlx4_cmd(dev, mailbox->dma, in_mod, 1, MLX4_CMD_SET_PORT,
796 MLX4_CMD_TIME_CLASS_B, MLX4_CMD_NATIVE);
797
798 mlx4_free_cmd_mailbox(dev, mailbox);
799 return err;
800}
801EXPORT_SYMBOL(mlx4_SET_PORT_SCHEDULER);
802
7ffdf726
OG
803enum {
804 VXLAN_ENABLE_MODIFY = 1 << 7,
805 VXLAN_STEERING_MODIFY = 1 << 6,
806
807 VXLAN_ENABLE = 1 << 7,
808};
809
810struct mlx4_set_port_vxlan_context {
811 u32 reserved1;
812 u8 modify_flags;
813 u8 reserved2;
814 u8 enable_flags;
815 u8 steering;
816};
817
818int mlx4_SET_PORT_VXLAN(struct mlx4_dev *dev, u8 port, u8 steering)
819{
820 int err;
821 u32 in_mod;
822 struct mlx4_cmd_mailbox *mailbox;
823 struct mlx4_set_port_vxlan_context *context;
824
825 mailbox = mlx4_alloc_cmd_mailbox(dev);
826 if (IS_ERR(mailbox))
827 return PTR_ERR(mailbox);
828 context = mailbox->buf;
829 memset(context, 0, sizeof(*context));
830
831 context->modify_flags = VXLAN_ENABLE_MODIFY | VXLAN_STEERING_MODIFY;
832 context->enable_flags = VXLAN_ENABLE;
833 context->steering = steering;
834
835 in_mod = MLX4_SET_PORT_VXLAN << 8 | port;
836 err = mlx4_cmd(dev, mailbox->dma, in_mod, 1, MLX4_CMD_SET_PORT,
837 MLX4_CMD_TIME_CLASS_B, MLX4_CMD_NATIVE);
838
839 mlx4_free_cmd_mailbox(dev, mailbox);
840 return err;
841}
842EXPORT_SYMBOL(mlx4_SET_PORT_VXLAN);
843
ffe455ad
EE
844int mlx4_SET_MCAST_FLTR_wrapper(struct mlx4_dev *dev, int slave,
845 struct mlx4_vhcr *vhcr,
846 struct mlx4_cmd_mailbox *inbox,
847 struct mlx4_cmd_mailbox *outbox,
848 struct mlx4_cmd_info *cmd)
849{
850 int err = 0;
851
852 return err;
853}
854
855int mlx4_SET_MCAST_FLTR(struct mlx4_dev *dev, u8 port,
856 u64 mac, u64 clear, u8 mode)
857{
858 return mlx4_cmd(dev, (mac | (clear << 63)), port, mode,
859 MLX4_CMD_SET_MCAST_FLTR, MLX4_CMD_TIME_CLASS_B,
860 MLX4_CMD_WRAPPED);
861}
862EXPORT_SYMBOL(mlx4_SET_MCAST_FLTR);
863
864int mlx4_SET_VLAN_FLTR_wrapper(struct mlx4_dev *dev, int slave,
865 struct mlx4_vhcr *vhcr,
866 struct mlx4_cmd_mailbox *inbox,
867 struct mlx4_cmd_mailbox *outbox,
868 struct mlx4_cmd_info *cmd)
869{
870 int err = 0;
871
872 return err;
873}
874
875int mlx4_common_dump_eth_stats(struct mlx4_dev *dev, int slave,
876 u32 in_mod, struct mlx4_cmd_mailbox *outbox)
877{
878 return mlx4_cmd_box(dev, 0, outbox->dma, in_mod, 0,
879 MLX4_CMD_DUMP_ETH_STATS, MLX4_CMD_TIME_CLASS_B,
880 MLX4_CMD_NATIVE);
881}
882
883int mlx4_DUMP_ETH_STATS_wrapper(struct mlx4_dev *dev, int slave,
884 struct mlx4_vhcr *vhcr,
885 struct mlx4_cmd_mailbox *inbox,
886 struct mlx4_cmd_mailbox *outbox,
887 struct mlx4_cmd_info *cmd)
888{
35fb9afb
EE
889 if (slave != dev->caps.function)
890 return 0;
ffe455ad
EE
891 return mlx4_common_dump_eth_stats(dev, slave,
892 vhcr->in_modifier, outbox);
893}
93ece0c1
EE
894
895void mlx4_set_stats_bitmap(struct mlx4_dev *dev, u64 *stats_bitmap)
896{
897 if (!mlx4_is_mfunc(dev)) {
898 *stats_bitmap = 0;
899 return;
900 }
901
902 *stats_bitmap = (MLX4_STATS_TRAFFIC_COUNTERS_MASK |
903 MLX4_STATS_TRAFFIC_DROPS_MASK |
904 MLX4_STATS_PORT_COUNTERS_MASK);
905
906 if (mlx4_is_master(dev))
907 *stats_bitmap |= MLX4_STATS_ERROR_COUNTERS_MASK;
908}
909EXPORT_SYMBOL(mlx4_set_stats_bitmap);