blob: da9f85c6da7e7c3c5aebcb5d370e6685201f260a [file] [log] [blame]
Yevgeny Petrilin2a2336f2008-10-22 11:44:46 -07001/*
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>
Paul Gortmakeree40fa02011-05-27 16:14:23 -040035#include <linux/export.h>
Yevgeny Petrilin2a2336f2008-10-22 11:44:46 -070036
37#include <linux/mlx4/cmd.h>
38
39#include "mlx4.h"
40
41#define MLX4_MAC_VALID (1ull << 63)
42#define MLX4_MAC_MASK 0xffffffffffffULL
43
44#define MLX4_VLAN_VALID (1u << 31)
45#define MLX4_VLAN_MASK 0xfff
46
47void mlx4_init_mac_table(struct mlx4_dev *dev, struct mlx4_mac_table *table)
48{
49 int i;
50
51 mutex_init(&table->mutex);
52 for (i = 0; i < MLX4_MAX_MAC_NUM; i++) {
53 table->entries[i] = 0;
54 table->refs[i] = 0;
55 }
56 table->max = 1 << dev->caps.log_num_macs;
57 table->total = 0;
58}
59
60void mlx4_init_vlan_table(struct mlx4_dev *dev, struct mlx4_vlan_table *table)
61{
62 int i;
63
64 mutex_init(&table->mutex);
65 for (i = 0; i < MLX4_MAX_VLAN_NUM; i++) {
66 table->entries[i] = 0;
67 table->refs[i] = 0;
68 }
Yevgeny Petriline72ebf52011-10-18 01:50:29 +000069 table->max = (1 << dev->caps.log_num_vlans) - MLX4_VLAN_REGULAR;
Yevgeny Petrilin2a2336f2008-10-22 11:44:46 -070070 table->total = 0;
71}
72
73static int mlx4_set_port_mac_table(struct mlx4_dev *dev, u8 port,
74 __be64 *entries)
75{
76 struct mlx4_cmd_mailbox *mailbox;
77 u32 in_mod;
78 int err;
79
80 mailbox = mlx4_alloc_cmd_mailbox(dev);
81 if (IS_ERR(mailbox))
82 return PTR_ERR(mailbox);
83
84 memcpy(mailbox->buf, entries, MLX4_MAC_TABLE_SIZE);
85
86 in_mod = MLX4_SET_PORT_MAC_TABLE << 8 | port;
87 err = mlx4_cmd(dev, mailbox->dma, in_mod, 1, MLX4_CMD_SET_PORT,
Jack Morgensteinf9baff52011-12-13 04:10:51 +000088 MLX4_CMD_TIME_CLASS_B, MLX4_CMD_NATIVE);
Yevgeny Petrilin2a2336f2008-10-22 11:44:46 -070089
90 mlx4_free_cmd_mailbox(dev, mailbox);
91 return err;
92}
93
Yevgeny Petrilin16792002011-03-22 22:38:31 +000094static int mlx4_uc_steer_add(struct mlx4_dev *dev, u8 port,
95 u64 mac, int *qpn, u8 reserve)
Yevgeny Petrilin2a2336f2008-10-22 11:44:46 -070096{
Yevgeny Petrilin16792002011-03-22 22:38:31 +000097 struct mlx4_qp qp;
98 u8 gid[16] = {0};
99 int err;
100
101 if (reserve) {
102 err = mlx4_qp_reserve_range(dev, 1, 1, qpn);
103 if (err) {
104 mlx4_err(dev, "Failed to reserve qp for mac registration\n");
105 return err;
106 }
107 }
108 qp.qpn = *qpn;
109
110 mac &= 0xffffffffffffULL;
111 mac = cpu_to_be64(mac << 16);
112 memcpy(&gid[10], &mac, ETH_ALEN);
113 gid[5] = port;
114 gid[7] = MLX4_UC_STEER << 1;
115
116 err = mlx4_qp_attach_common(dev, &qp, gid, 0,
117 MLX4_PROT_ETH, MLX4_UC_STEER);
118 if (err && reserve)
119 mlx4_qp_release_range(dev, *qpn, 1);
120
121 return err;
122}
123
124static void mlx4_uc_steer_release(struct mlx4_dev *dev, u8 port,
125 u64 mac, int qpn, u8 free)
126{
127 struct mlx4_qp qp;
128 u8 gid[16] = {0};
129
130 qp.qpn = qpn;
131 mac &= 0xffffffffffffULL;
132 mac = cpu_to_be64(mac << 16);
133 memcpy(&gid[10], &mac, ETH_ALEN);
134 gid[5] = port;
135 gid[7] = MLX4_UC_STEER << 1;
136
137 mlx4_qp_detach_common(dev, &qp, gid, MLX4_PROT_ETH, MLX4_UC_STEER);
138 if (free)
139 mlx4_qp_release_range(dev, qpn, 1);
140}
141
142int mlx4_register_mac(struct mlx4_dev *dev, u8 port, u64 mac, int *qpn, u8 wrap)
143{
144 struct mlx4_port_info *info = &mlx4_priv(dev)->port[port];
145 struct mlx4_mac_table *table = &info->mac_table;
146 struct mlx4_mac_entry *entry;
Yevgeny Petrilin2a2336f2008-10-22 11:44:46 -0700147 int i, err = 0;
148 int free = -1;
149
Or Gerlitzccf86322011-07-07 19:19:29 +0000150 if (dev->caps.flags & MLX4_DEV_CAP_FLAG_VEP_UC_STEER) {
Yevgeny Petrilin16792002011-03-22 22:38:31 +0000151 err = mlx4_uc_steer_add(dev, port, mac, qpn, 1);
Linus Torvaldsf470f8d2011-11-01 10:51:38 -0700152 if (err)
Yevgeny Petrilin16792002011-03-22 22:38:31 +0000153 return err;
Linus Torvaldsf470f8d2011-11-01 10:51:38 -0700154
155 entry = kmalloc(sizeof *entry, GFP_KERNEL);
156 if (!entry) {
157 mlx4_uc_steer_release(dev, port, mac, *qpn, 1);
158 return -ENOMEM;
159 }
160
161 entry->mac = mac;
162 err = radix_tree_insert(&info->mac_tree, *qpn, entry);
163 if (err) {
164 kfree(entry);
165 mlx4_uc_steer_release(dev, port, mac, *qpn, 1);
166 return err;
167 }
Yevgeny Petrilin16792002011-03-22 22:38:31 +0000168 }
Linus Torvaldsf470f8d2011-11-01 10:51:38 -0700169
Yevgeny Petrilin2a2336f2008-10-22 11:44:46 -0700170 mlx4_dbg(dev, "Registering MAC: 0x%llx\n", (unsigned long long) mac);
Linus Torvaldsf470f8d2011-11-01 10:51:38 -0700171
Yevgeny Petrilin2a2336f2008-10-22 11:44:46 -0700172 mutex_lock(&table->mutex);
173 for (i = 0; i < MLX4_MAX_MAC_NUM - 1; i++) {
174 if (free < 0 && !table->refs[i]) {
175 free = i;
176 continue;
177 }
178
179 if (mac == (MLX4_MAC_MASK & be64_to_cpu(table->entries[i]))) {
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300180 /* MAC already registered, increase references count */
Yevgeny Petrilin2a2336f2008-10-22 11:44:46 -0700181 ++table->refs[i];
182 goto out;
183 }
184 }
Eli Cohen0926f912010-10-25 02:56:47 +0000185
186 if (free < 0) {
187 err = -ENOMEM;
188 goto out;
189 }
190
Yevgeny Petrilin2a2336f2008-10-22 11:44:46 -0700191 mlx4_dbg(dev, "Free MAC index is %d\n", free);
192
193 if (table->total == table->max) {
194 /* No free mac entries */
195 err = -ENOSPC;
196 goto out;
197 }
198
199 /* Register new MAC */
200 table->refs[free] = 1;
201 table->entries[free] = cpu_to_be64(mac | MLX4_MAC_VALID);
202
203 err = mlx4_set_port_mac_table(dev, port, table->entries);
204 if (unlikely(err)) {
205 mlx4_err(dev, "Failed adding MAC: 0x%llx\n", (unsigned long long) mac);
206 table->refs[free] = 0;
207 table->entries[free] = 0;
208 goto out;
209 }
210
Or Gerlitzccf86322011-07-07 19:19:29 +0000211 if (!(dev->caps.flags & MLX4_DEV_CAP_FLAG_VEP_UC_STEER))
Yevgeny Petrilin16792002011-03-22 22:38:31 +0000212 *qpn = info->base_qpn + free;
Yevgeny Petrilin2a2336f2008-10-22 11:44:46 -0700213 ++table->total;
214out:
215 mutex_unlock(&table->mutex);
216 return err;
217}
218EXPORT_SYMBOL_GPL(mlx4_register_mac);
219
Yevgeny Petrilin16792002011-03-22 22:38:31 +0000220static int validate_index(struct mlx4_dev *dev,
221 struct mlx4_mac_table *table, int index)
Yevgeny Petrilin2a2336f2008-10-22 11:44:46 -0700222{
Yevgeny Petrilin16792002011-03-22 22:38:31 +0000223 int err = 0;
224
225 if (index < 0 || index >= table->max || !table->entries[index]) {
226 mlx4_warn(dev, "No valid Mac entry for the given index\n");
227 err = -EINVAL;
228 }
229 return err;
230}
231
232static int find_index(struct mlx4_dev *dev,
233 struct mlx4_mac_table *table, u64 mac)
234{
235 int i;
236 for (i = 0; i < MLX4_MAX_MAC_NUM; i++) {
237 if (mac == (MLX4_MAC_MASK & be64_to_cpu(table->entries[i])))
238 return i;
239 }
240 /* Mac not found */
241 return -EINVAL;
242}
243
244void mlx4_unregister_mac(struct mlx4_dev *dev, u8 port, int qpn)
245{
246 struct mlx4_port_info *info = &mlx4_priv(dev)->port[port];
247 struct mlx4_mac_table *table = &info->mac_table;
248 int index = qpn - info->base_qpn;
249 struct mlx4_mac_entry *entry;
250
Or Gerlitzccf86322011-07-07 19:19:29 +0000251 if (dev->caps.flags & MLX4_DEV_CAP_FLAG_VEP_UC_STEER) {
Yevgeny Petrilin16792002011-03-22 22:38:31 +0000252 entry = radix_tree_lookup(&info->mac_tree, qpn);
253 if (entry) {
254 mlx4_uc_steer_release(dev, port, entry->mac, qpn, 1);
255 radix_tree_delete(&info->mac_tree, qpn);
256 index = find_index(dev, table, entry->mac);
257 kfree(entry);
258 }
259 }
Yevgeny Petrilin2a2336f2008-10-22 11:44:46 -0700260
261 mutex_lock(&table->mutex);
Yevgeny Petrilin16792002011-03-22 22:38:31 +0000262
263 if (validate_index(dev, table, index))
Yevgeny Petrilin2a2336f2008-10-22 11:44:46 -0700264 goto out;
Yevgeny Petrilin16792002011-03-22 22:38:31 +0000265
Yevgeny Petrilin20e72a42011-08-04 01:05:12 +0000266 /* Check whether this address has reference count */
267 if (!(--table->refs[index])) {
268 table->entries[index] = 0;
269 mlx4_set_port_mac_table(dev, port, table->entries);
270 --table->total;
271 }
Yevgeny Petrilin2a2336f2008-10-22 11:44:46 -0700272out:
273 mutex_unlock(&table->mutex);
274}
275EXPORT_SYMBOL_GPL(mlx4_unregister_mac);
276
Yevgeny Petrilin16792002011-03-22 22:38:31 +0000277int mlx4_replace_mac(struct mlx4_dev *dev, u8 port, int qpn, u64 new_mac, u8 wrap)
278{
279 struct mlx4_port_info *info = &mlx4_priv(dev)->port[port];
280 struct mlx4_mac_table *table = &info->mac_table;
281 int index = qpn - info->base_qpn;
282 struct mlx4_mac_entry *entry;
283 int err;
284
Or Gerlitzccf86322011-07-07 19:19:29 +0000285 if (dev->caps.flags & MLX4_DEV_CAP_FLAG_VEP_UC_STEER) {
Yevgeny Petrilin16792002011-03-22 22:38:31 +0000286 entry = radix_tree_lookup(&info->mac_tree, qpn);
287 if (!entry)
288 return -EINVAL;
289 index = find_index(dev, table, entry->mac);
290 mlx4_uc_steer_release(dev, port, entry->mac, qpn, 0);
291 entry->mac = new_mac;
292 err = mlx4_uc_steer_add(dev, port, entry->mac, &qpn, 0);
293 if (err || index < 0)
294 return err;
295 }
296
297 mutex_lock(&table->mutex);
298
299 err = validate_index(dev, table, index);
300 if (err)
301 goto out;
302
303 table->entries[index] = cpu_to_be64(new_mac | MLX4_MAC_VALID);
304
305 err = mlx4_set_port_mac_table(dev, port, table->entries);
306 if (unlikely(err)) {
307 mlx4_err(dev, "Failed adding MAC: 0x%llx\n", (unsigned long long) new_mac);
308 table->entries[index] = 0;
309 }
310out:
311 mutex_unlock(&table->mutex);
312 return err;
313}
314EXPORT_SYMBOL_GPL(mlx4_replace_mac);
Yevgeny Petrilin2a2336f2008-10-22 11:44:46 -0700315static int mlx4_set_port_vlan_table(struct mlx4_dev *dev, u8 port,
316 __be32 *entries)
317{
318 struct mlx4_cmd_mailbox *mailbox;
319 u32 in_mod;
320 int err;
321
322 mailbox = mlx4_alloc_cmd_mailbox(dev);
323 if (IS_ERR(mailbox))
324 return PTR_ERR(mailbox);
325
326 memcpy(mailbox->buf, entries, MLX4_VLAN_TABLE_SIZE);
327 in_mod = MLX4_SET_PORT_VLAN_TABLE << 8 | port;
328 err = mlx4_cmd(dev, mailbox->dma, in_mod, 1, MLX4_CMD_SET_PORT,
Jack Morgensteinf9baff52011-12-13 04:10:51 +0000329 MLX4_CMD_TIME_CLASS_B, MLX4_CMD_WRAPPED);
Yevgeny Petrilin2a2336f2008-10-22 11:44:46 -0700330
331 mlx4_free_cmd_mailbox(dev, mailbox);
332
333 return err;
334}
335
Eli Cohen4c3eb3c2010-08-26 17:19:22 +0300336int mlx4_find_cached_vlan(struct mlx4_dev *dev, u8 port, u16 vid, int *idx)
337{
338 struct mlx4_vlan_table *table = &mlx4_priv(dev)->port[port].vlan_table;
339 int i;
340
341 for (i = 0; i < MLX4_MAX_VLAN_NUM; ++i) {
342 if (table->refs[i] &&
343 (vid == (MLX4_VLAN_MASK &
344 be32_to_cpu(table->entries[i])))) {
345 /* VLAN already registered, increase reference count */
346 *idx = i;
347 return 0;
348 }
349 }
350
351 return -ENOENT;
352}
353EXPORT_SYMBOL_GPL(mlx4_find_cached_vlan);
354
Yevgeny Petrilin2a2336f2008-10-22 11:44:46 -0700355int mlx4_register_vlan(struct mlx4_dev *dev, u8 port, u16 vlan, int *index)
356{
357 struct mlx4_vlan_table *table = &mlx4_priv(dev)->port[port].vlan_table;
358 int i, err = 0;
359 int free = -1;
360
361 mutex_lock(&table->mutex);
Yevgeny Petriline72ebf52011-10-18 01:50:29 +0000362
363 if (table->total == table->max) {
364 /* No free vlan entries */
365 err = -ENOSPC;
366 goto out;
367 }
368
Yevgeny Petrilin2a2336f2008-10-22 11:44:46 -0700369 for (i = MLX4_VLAN_REGULAR; i < MLX4_MAX_VLAN_NUM; i++) {
370 if (free < 0 && (table->refs[i] == 0)) {
371 free = i;
372 continue;
373 }
374
375 if (table->refs[i] &&
376 (vlan == (MLX4_VLAN_MASK &
377 be32_to_cpu(table->entries[i])))) {
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300378 /* Vlan already registered, increase references count */
Yevgeny Petrilin2a2336f2008-10-22 11:44:46 -0700379 *index = i;
380 ++table->refs[i];
381 goto out;
382 }
383 }
384
Eli Cohen0926f912010-10-25 02:56:47 +0000385 if (free < 0) {
386 err = -ENOMEM;
387 goto out;
388 }
389
Yevgeny Petrilin2a2336f2008-10-22 11:44:46 -0700390 /* Register new MAC */
391 table->refs[free] = 1;
392 table->entries[free] = cpu_to_be32(vlan | MLX4_VLAN_VALID);
393
394 err = mlx4_set_port_vlan_table(dev, port, table->entries);
395 if (unlikely(err)) {
396 mlx4_warn(dev, "Failed adding vlan: %u\n", vlan);
397 table->refs[free] = 0;
398 table->entries[free] = 0;
399 goto out;
400 }
401
402 *index = free;
403 ++table->total;
404out:
405 mutex_unlock(&table->mutex);
406 return err;
407}
408EXPORT_SYMBOL_GPL(mlx4_register_vlan);
409
410void mlx4_unregister_vlan(struct mlx4_dev *dev, u8 port, int index)
411{
412 struct mlx4_vlan_table *table = &mlx4_priv(dev)->port[port].vlan_table;
413
414 if (index < MLX4_VLAN_REGULAR) {
415 mlx4_warn(dev, "Trying to free special vlan index %d\n", index);
416 return;
417 }
418
419 mutex_lock(&table->mutex);
420 if (!table->refs[index]) {
421 mlx4_warn(dev, "No vlan entry for index %d\n", index);
422 goto out;
423 }
424 if (--table->refs[index]) {
425 mlx4_dbg(dev, "Have more references for index %d,"
426 "no need to modify vlan table\n", index);
427 goto out;
428 }
429 table->entries[index] = 0;
430 mlx4_set_port_vlan_table(dev, port, table->entries);
431 --table->total;
432out:
433 mutex_unlock(&table->mutex);
434}
435EXPORT_SYMBOL_GPL(mlx4_unregister_vlan);
Yevgeny Petrilin7ff93f82008-10-22 15:38:42 -0700436
Jack Morgenstein9a5aa622008-11-28 21:29:46 -0800437int mlx4_get_port_ib_caps(struct mlx4_dev *dev, u8 port, __be32 *caps)
438{
439 struct mlx4_cmd_mailbox *inmailbox, *outmailbox;
440 u8 *inbuf, *outbuf;
441 int err;
442
443 inmailbox = mlx4_alloc_cmd_mailbox(dev);
444 if (IS_ERR(inmailbox))
445 return PTR_ERR(inmailbox);
446
447 outmailbox = mlx4_alloc_cmd_mailbox(dev);
448 if (IS_ERR(outmailbox)) {
449 mlx4_free_cmd_mailbox(dev, inmailbox);
450 return PTR_ERR(outmailbox);
451 }
452
453 inbuf = inmailbox->buf;
454 outbuf = outmailbox->buf;
455 memset(inbuf, 0, 256);
456 memset(outbuf, 0, 256);
457 inbuf[0] = 1;
458 inbuf[1] = 1;
459 inbuf[2] = 1;
460 inbuf[3] = 1;
461 *(__be16 *) (&inbuf[16]) = cpu_to_be16(0x0015);
462 *(__be32 *) (&inbuf[20]) = cpu_to_be32(port);
463
464 err = mlx4_cmd_box(dev, inmailbox->dma, outmailbox->dma, port, 3,
Jack Morgensteinf9baff52011-12-13 04:10:51 +0000465 MLX4_CMD_MAD_IFC, MLX4_CMD_TIME_CLASS_C,
466 MLX4_CMD_NATIVE);
Jack Morgenstein9a5aa622008-11-28 21:29:46 -0800467 if (!err)
468 *caps = *(__be32 *) (outbuf + 84);
469 mlx4_free_cmd_mailbox(dev, inmailbox);
470 mlx4_free_cmd_mailbox(dev, outmailbox);
471 return err;
472}
473
Linus Torvaldsf470f8d2011-11-01 10:51:38 -0700474int mlx4_check_ext_port_caps(struct mlx4_dev *dev, u8 port)
475{
476 struct mlx4_cmd_mailbox *inmailbox, *outmailbox;
477 u8 *inbuf, *outbuf;
478 int err, packet_error;
479
480 inmailbox = mlx4_alloc_cmd_mailbox(dev);
481 if (IS_ERR(inmailbox))
482 return PTR_ERR(inmailbox);
483
484 outmailbox = mlx4_alloc_cmd_mailbox(dev);
485 if (IS_ERR(outmailbox)) {
486 mlx4_free_cmd_mailbox(dev, inmailbox);
487 return PTR_ERR(outmailbox);
488 }
489
490 inbuf = inmailbox->buf;
491 outbuf = outmailbox->buf;
492 memset(inbuf, 0, 256);
493 memset(outbuf, 0, 256);
494 inbuf[0] = 1;
495 inbuf[1] = 1;
496 inbuf[2] = 1;
497 inbuf[3] = 1;
498
499 *(__be16 *) (&inbuf[16]) = MLX4_ATTR_EXTENDED_PORT_INFO;
500 *(__be32 *) (&inbuf[20]) = cpu_to_be32(port);
501
502 err = mlx4_cmd_box(dev, inmailbox->dma, outmailbox->dma, port, 3,
Jack Morgensteinf9baff52011-12-13 04:10:51 +0000503 MLX4_CMD_MAD_IFC, MLX4_CMD_TIME_CLASS_C,
504 MLX4_CMD_NATIVE);
Linus Torvaldsf470f8d2011-11-01 10:51:38 -0700505
506 packet_error = be16_to_cpu(*(__be16 *) (outbuf + 4));
507
508 dev->caps.ext_port_cap[port] = (!err && !packet_error) ?
509 MLX_EXT_PORT_CAP_FLAG_EXTENDED_PORT_INFO
510 : 0;
511
512 mlx4_free_cmd_mailbox(dev, inmailbox);
513 mlx4_free_cmd_mailbox(dev, outmailbox);
514 return err;
515}
516
Yevgeny Petrilin7ff93f82008-10-22 15:38:42 -0700517int mlx4_SET_PORT(struct mlx4_dev *dev, u8 port)
518{
519 struct mlx4_cmd_mailbox *mailbox;
520 int err;
Yevgeny Petrilin7ff93f82008-10-22 15:38:42 -0700521
Roland Dreier352b09e2009-03-31 09:54:15 -0700522 if (dev->caps.port_type[port] == MLX4_PORT_TYPE_ETH)
523 return 0;
524
Yevgeny Petrilin7ff93f82008-10-22 15:38:42 -0700525 mailbox = mlx4_alloc_cmd_mailbox(dev);
526 if (IS_ERR(mailbox))
527 return PTR_ERR(mailbox);
528
529 memset(mailbox->buf, 0, 256);
Yevgeny Petrilin793730b2009-03-11 15:47:18 -0700530
531 ((__be32 *) mailbox->buf)[1] = dev->caps.ib_port_def_cap[port];
532 err = mlx4_cmd(dev, mailbox->dma, port, 0, MLX4_CMD_SET_PORT,
Jack Morgensteinf9baff52011-12-13 04:10:51 +0000533 MLX4_CMD_TIME_CLASS_B, MLX4_CMD_WRAPPED);
Yevgeny Petrilin7ff93f82008-10-22 15:38:42 -0700534
535 mlx4_free_cmd_mailbox(dev, mailbox);
536 return err;
537}