2 * Copyright (c) 2004, 2005 Topspin Communications. All rights reserved.
3 * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved.
4 * Copyright (c) 2005, 2006, 2007, 2008 Mellanox Technologies. All rights reserved.
5 * Copyright (c) 2006, 2007 Cisco Systems, Inc. All rights reserved.
7 * This software is available to you under a choice of one of two
8 * licenses. You may choose to be licensed under the terms of the GNU
9 * General Public License (GPL) Version 2, available from the file
10 * COPYING in the main directory of this source tree, or the
11 * OpenIB.org BSD license below:
13 * Redistribution and use in source and binary forms, with or
14 * without modification, are permitted provided that the following
17 * - Redistributions of source code must retain the above
18 * copyright notice, this list of conditions and the following
21 * - Redistributions in binary form must reproduce the above
22 * copyright notice, this list of conditions and the following
23 * disclaimer in the documentation and/or other materials
24 * provided with the distribution.
26 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
27 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
28 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
29 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
30 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
31 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
32 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
36 #include <linux/module.h>
37 #include <linux/init.h>
38 #include <linux/errno.h>
39 #include <linux/pci.h>
40 #include <linux/dma-mapping.h>
41 #include <linux/slab.h>
42 #include <linux/io-mapping.h>
43 #include <linux/delay.h>
44 #include <linux/netdevice.h>
46 #include <linux/mlx4/device.h>
47 #include <linux/mlx4/doorbell.h>
53 MODULE_AUTHOR("Roland Dreier");
54 MODULE_DESCRIPTION("Mellanox ConnectX HCA low-level driver");
55 MODULE_LICENSE("Dual BSD/GPL");
56 MODULE_VERSION(DRV_VERSION);
58 struct workqueue_struct *mlx4_wq;
60 #ifdef CONFIG_MLX4_DEBUG
62 int mlx4_debug_level = 0;
63 module_param_named(debug_level, mlx4_debug_level, int, 0644);
64 MODULE_PARM_DESC(debug_level, "Enable debug tracing if > 0");
66 #endif /* CONFIG_MLX4_DEBUG */
71 module_param(msi_x, int, 0444);
72 MODULE_PARM_DESC(msi_x, "attempt to use MSI-X if nonzero");
74 #else /* CONFIG_PCI_MSI */
78 #endif /* CONFIG_PCI_MSI */
81 module_param(num_vfs, int, 0444);
82 MODULE_PARM_DESC(num_vfs, "enable #num_vfs functions if num_vfs > 0");
85 module_param(probe_vf, int, 0644);
86 MODULE_PARM_DESC(probe_vf, "number of vfs to probe by pf driver (num_vfs > 0)");
88 int mlx4_log_num_mgm_entry_size = 10;
89 module_param_named(log_num_mgm_entry_size,
90 mlx4_log_num_mgm_entry_size, int, 0444);
91 MODULE_PARM_DESC(log_num_mgm_entry_size, "log mgm size, that defines the num"
92 " of qp per mcg, for example:"
93 " 10 gives 248.range: 9<="
94 " log_num_mgm_entry_size <= 12");
96 #define MLX4_VF (1 << 0)
98 #define HCA_GLOBAL_CAP_MASK 0
99 #define PF_CONTEXT_BEHAVIOUR_MASK 0
101 static char mlx4_version[] __devinitdata =
102 DRV_NAME ": Mellanox ConnectX core driver v"
103 DRV_VERSION " (" DRV_RELDATE ")\n";
105 static struct mlx4_profile default_profile = {
108 .rdmarc_per_qp = 1 << 4,
112 .num_mtt = 1 << 20, /* It is really num mtt segements */
115 static int log_num_mac = 7;
116 module_param_named(log_num_mac, log_num_mac, int, 0444);
117 MODULE_PARM_DESC(log_num_mac, "Log2 max number of MACs per ETH port (1-7)");
119 static int log_num_vlan;
120 module_param_named(log_num_vlan, log_num_vlan, int, 0444);
121 MODULE_PARM_DESC(log_num_vlan, "Log2 max number of VLANs per ETH port (0-7)");
122 /* Log2 max number of VLANs per ETH port (0-7) */
123 #define MLX4_LOG_NUM_VLANS 7
125 static bool use_prio;
126 module_param_named(use_prio, use_prio, bool, 0444);
127 MODULE_PARM_DESC(use_prio, "Enable steering by VLAN priority on ETH ports "
130 int log_mtts_per_seg = ilog2(MLX4_MTT_ENTRY_PER_SEG);
131 module_param_named(log_mtts_per_seg, log_mtts_per_seg, int, 0444);
132 MODULE_PARM_DESC(log_mtts_per_seg, "Log2 number of MTT entries per segment (1-7)");
134 static int port_type_array[2] = {MLX4_PORT_TYPE_NONE, MLX4_PORT_TYPE_NONE};
135 static int arr_argc = 2;
136 module_param_array(port_type_array, int, &arr_argc, 0444);
137 MODULE_PARM_DESC(port_type_array, "Array of port types: HW_DEFAULT (0) is default "
138 "1 for IB, 2 for Ethernet");
140 struct mlx4_port_config {
141 struct list_head list;
142 enum mlx4_port_type port_type[MLX4_MAX_PORTS + 1];
143 struct pci_dev *pdev;
146 int mlx4_check_port_params(struct mlx4_dev *dev,
147 enum mlx4_port_type *port_type)
151 for (i = 0; i < dev->caps.num_ports - 1; i++) {
152 if (port_type[i] != port_type[i + 1]) {
153 if (!(dev->caps.flags & MLX4_DEV_CAP_FLAG_DPDP)) {
154 mlx4_err(dev, "Only same port types supported "
155 "on this HCA, aborting.\n");
158 if (port_type[i] == MLX4_PORT_TYPE_ETH &&
159 port_type[i + 1] == MLX4_PORT_TYPE_IB)
164 for (i = 0; i < dev->caps.num_ports; i++) {
165 if (!(port_type[i] & dev->caps.supported_type[i+1])) {
166 mlx4_err(dev, "Requested port type for port %d is not "
167 "supported on this HCA\n", i + 1);
174 static void mlx4_set_port_mask(struct mlx4_dev *dev)
178 for (i = 1; i <= dev->caps.num_ports; ++i)
179 dev->caps.port_mask[i] = dev->caps.port_type[i];
182 static int mlx4_dev_cap(struct mlx4_dev *dev, struct mlx4_dev_cap *dev_cap)
187 err = mlx4_QUERY_DEV_CAP(dev, dev_cap);
189 mlx4_err(dev, "QUERY_DEV_CAP command failed, aborting.\n");
193 if (dev_cap->min_page_sz > PAGE_SIZE) {
194 mlx4_err(dev, "HCA minimum page size of %d bigger than "
195 "kernel PAGE_SIZE of %ld, aborting.\n",
196 dev_cap->min_page_sz, PAGE_SIZE);
199 if (dev_cap->num_ports > MLX4_MAX_PORTS) {
200 mlx4_err(dev, "HCA has %d ports, but we only support %d, "
202 dev_cap->num_ports, MLX4_MAX_PORTS);
206 if (dev_cap->uar_size > pci_resource_len(dev->pdev, 2)) {
207 mlx4_err(dev, "HCA reported UAR size of 0x%x bigger than "
208 "PCI resource 2 size of 0x%llx, aborting.\n",
210 (unsigned long long) pci_resource_len(dev->pdev, 2));
214 dev->caps.num_ports = dev_cap->num_ports;
215 dev->phys_caps.num_phys_eqs = MLX4_MAX_EQ_NUM;
216 for (i = 1; i <= dev->caps.num_ports; ++i) {
217 dev->caps.vl_cap[i] = dev_cap->max_vl[i];
218 dev->caps.ib_mtu_cap[i] = dev_cap->ib_mtu[i];
219 dev->caps.gid_table_len[i] = dev_cap->max_gids[i];
220 dev->caps.pkey_table_len[i] = dev_cap->max_pkeys[i];
221 dev->caps.port_width_cap[i] = dev_cap->max_port_width[i];
222 dev->caps.eth_mtu_cap[i] = dev_cap->eth_mtu[i];
223 dev->caps.def_mac[i] = dev_cap->def_mac[i];
224 dev->caps.supported_type[i] = dev_cap->supported_port_types[i];
225 dev->caps.suggested_type[i] = dev_cap->suggested_type[i];
226 dev->caps.default_sense[i] = dev_cap->default_sense[i];
227 dev->caps.trans_type[i] = dev_cap->trans_type[i];
228 dev->caps.vendor_oui[i] = dev_cap->vendor_oui[i];
229 dev->caps.wavelength[i] = dev_cap->wavelength[i];
230 dev->caps.trans_code[i] = dev_cap->trans_code[i];
233 dev->caps.uar_page_size = PAGE_SIZE;
234 dev->caps.num_uars = dev_cap->uar_size / PAGE_SIZE;
235 dev->caps.local_ca_ack_delay = dev_cap->local_ca_ack_delay;
236 dev->caps.bf_reg_size = dev_cap->bf_reg_size;
237 dev->caps.bf_regs_per_page = dev_cap->bf_regs_per_page;
238 dev->caps.max_sq_sg = dev_cap->max_sq_sg;
239 dev->caps.max_rq_sg = dev_cap->max_rq_sg;
240 dev->caps.max_wqes = dev_cap->max_qp_sz;
241 dev->caps.max_qp_init_rdma = dev_cap->max_requester_per_qp;
242 dev->caps.max_srq_wqes = dev_cap->max_srq_sz;
243 dev->caps.max_srq_sge = dev_cap->max_rq_sg - 1;
244 dev->caps.reserved_srqs = dev_cap->reserved_srqs;
245 dev->caps.max_sq_desc_sz = dev_cap->max_sq_desc_sz;
246 dev->caps.max_rq_desc_sz = dev_cap->max_rq_desc_sz;
248 * Subtract 1 from the limit because we need to allocate a
249 * spare CQE so the HCA HW can tell the difference between an
250 * empty CQ and a full CQ.
252 dev->caps.max_cqes = dev_cap->max_cq_sz - 1;
253 dev->caps.reserved_cqs = dev_cap->reserved_cqs;
254 dev->caps.reserved_eqs = dev_cap->reserved_eqs;
255 dev->caps.reserved_mtts = dev_cap->reserved_mtts;
256 dev->caps.reserved_mrws = dev_cap->reserved_mrws;
258 /* The first 128 UARs are used for EQ doorbells */
259 dev->caps.reserved_uars = max_t(int, 128, dev_cap->reserved_uars);
260 dev->caps.reserved_pds = dev_cap->reserved_pds;
261 dev->caps.reserved_xrcds = (dev->caps.flags & MLX4_DEV_CAP_FLAG_XRC) ?
262 dev_cap->reserved_xrcds : 0;
263 dev->caps.max_xrcds = (dev->caps.flags & MLX4_DEV_CAP_FLAG_XRC) ?
264 dev_cap->max_xrcds : 0;
265 dev->caps.mtt_entry_sz = dev_cap->mtt_entry_sz;
267 dev->caps.max_msg_sz = dev_cap->max_msg_sz;
268 dev->caps.page_size_cap = ~(u32) (dev_cap->min_page_sz - 1);
269 dev->caps.flags = dev_cap->flags;
270 dev->caps.flags2 = dev_cap->flags2;
271 dev->caps.bmme_flags = dev_cap->bmme_flags;
272 dev->caps.reserved_lkey = dev_cap->reserved_lkey;
273 dev->caps.stat_rate_support = dev_cap->stat_rate_support;
274 dev->caps.max_gso_sz = dev_cap->max_gso_sz;
275 dev->caps.max_rss_tbl_sz = dev_cap->max_rss_tbl_sz;
277 if (dev->caps.flags & MLX4_DEV_CAP_FLAG_VEP_UC_STEER &&
278 dev->caps.flags & MLX4_DEV_CAP_FLAG_VEP_MC_STEER) {
279 dev->caps.steering_mode = MLX4_STEERING_MODE_B0;
281 dev->caps.steering_mode = MLX4_STEERING_MODE_A0;
283 if (dev->caps.flags & MLX4_DEV_CAP_FLAG_VEP_UC_STEER ||
284 dev->caps.flags & MLX4_DEV_CAP_FLAG_VEP_MC_STEER)
285 mlx4_warn(dev, "Must have UC_STEER and MC_STEER flags "
286 "set to use B0 steering. Falling back to A0 steering mode.\n");
288 mlx4_dbg(dev, "Steering mode is: %s\n",
289 mlx4_steering_mode_str(dev->caps.steering_mode));
290 dev->caps.num_qp_per_mgm = mlx4_get_qp_per_mgm(dev);
292 /* Sense port always allowed on supported devices for ConnectX1 and 2 */
293 if (dev->pdev->device != 0x1003)
294 dev->caps.flags |= MLX4_DEV_CAP_FLAG_SENSE_SUPPORT;
296 dev->caps.log_num_macs = log_num_mac;
297 dev->caps.log_num_vlans = MLX4_LOG_NUM_VLANS;
298 dev->caps.log_num_prios = use_prio ? 3 : 0;
300 for (i = 1; i <= dev->caps.num_ports; ++i) {
301 dev->caps.port_type[i] = MLX4_PORT_TYPE_NONE;
302 if (dev->caps.supported_type[i]) {
303 /* if only ETH is supported - assign ETH */
304 if (dev->caps.supported_type[i] == MLX4_PORT_TYPE_ETH)
305 dev->caps.port_type[i] = MLX4_PORT_TYPE_ETH;
306 /* if only IB is supported,
307 * assign IB only if SRIOV is off*/
308 else if (dev->caps.supported_type[i] ==
310 if (dev->flags & MLX4_FLAG_SRIOV)
311 dev->caps.port_type[i] =
314 dev->caps.port_type[i] =
316 /* if IB and ETH are supported,
317 * first of all check if SRIOV is on */
318 } else if (dev->flags & MLX4_FLAG_SRIOV)
319 dev->caps.port_type[i] = MLX4_PORT_TYPE_ETH;
321 /* In non-SRIOV mode, we set the port type
322 * according to user selection of port type,
323 * if usere selected none, take the FW hint */
324 if (port_type_array[i-1] == MLX4_PORT_TYPE_NONE)
325 dev->caps.port_type[i] = dev->caps.suggested_type[i] ?
326 MLX4_PORT_TYPE_ETH : MLX4_PORT_TYPE_IB;
328 dev->caps.port_type[i] = port_type_array[i-1];
332 * Link sensing is allowed on the port if 3 conditions are true:
333 * 1. Both protocols are supported on the port.
334 * 2. Different types are supported on the port
335 * 3. FW declared that it supports link sensing
337 mlx4_priv(dev)->sense.sense_allowed[i] =
338 ((dev->caps.supported_type[i] == MLX4_PORT_TYPE_AUTO) &&
339 (dev->caps.flags & MLX4_DEV_CAP_FLAG_DPDP) &&
340 (dev->caps.flags & MLX4_DEV_CAP_FLAG_SENSE_SUPPORT));
343 * If "default_sense" bit is set, we move the port to "AUTO" mode
344 * and perform sense_port FW command to try and set the correct
345 * port type from beginning
347 if (mlx4_priv(dev)->sense.sense_allowed[i] && dev->caps.default_sense[i]) {
348 enum mlx4_port_type sensed_port = MLX4_PORT_TYPE_NONE;
349 dev->caps.possible_type[i] = MLX4_PORT_TYPE_AUTO;
350 mlx4_SENSE_PORT(dev, i, &sensed_port);
351 if (sensed_port != MLX4_PORT_TYPE_NONE)
352 dev->caps.port_type[i] = sensed_port;
354 dev->caps.possible_type[i] = dev->caps.port_type[i];
357 if (dev->caps.log_num_macs > dev_cap->log_max_macs[i]) {
358 dev->caps.log_num_macs = dev_cap->log_max_macs[i];
359 mlx4_warn(dev, "Requested number of MACs is too much "
360 "for port %d, reducing to %d.\n",
361 i, 1 << dev->caps.log_num_macs);
363 if (dev->caps.log_num_vlans > dev_cap->log_max_vlans[i]) {
364 dev->caps.log_num_vlans = dev_cap->log_max_vlans[i];
365 mlx4_warn(dev, "Requested number of VLANs is too much "
366 "for port %d, reducing to %d.\n",
367 i, 1 << dev->caps.log_num_vlans);
371 dev->caps.max_counters = 1 << ilog2(dev_cap->max_counters);
373 dev->caps.reserved_qps_cnt[MLX4_QP_REGION_FW] = dev_cap->reserved_qps;
374 dev->caps.reserved_qps_cnt[MLX4_QP_REGION_ETH_ADDR] =
375 dev->caps.reserved_qps_cnt[MLX4_QP_REGION_FC_ADDR] =
376 (1 << dev->caps.log_num_macs) *
377 (1 << dev->caps.log_num_vlans) *
378 (1 << dev->caps.log_num_prios) *
380 dev->caps.reserved_qps_cnt[MLX4_QP_REGION_FC_EXCH] = MLX4_NUM_FEXCH;
382 dev->caps.reserved_qps = dev->caps.reserved_qps_cnt[MLX4_QP_REGION_FW] +
383 dev->caps.reserved_qps_cnt[MLX4_QP_REGION_ETH_ADDR] +
384 dev->caps.reserved_qps_cnt[MLX4_QP_REGION_FC_ADDR] +
385 dev->caps.reserved_qps_cnt[MLX4_QP_REGION_FC_EXCH];
389 /*The function checks if there are live vf, return the num of them*/
390 static int mlx4_how_many_lives_vf(struct mlx4_dev *dev)
392 struct mlx4_priv *priv = mlx4_priv(dev);
393 struct mlx4_slave_state *s_state;
397 for (i = 1/*the ppf is 0*/; i < dev->num_slaves; ++i) {
398 s_state = &priv->mfunc.master.slave_state[i];
399 if (s_state->active && s_state->last_cmd !=
400 MLX4_COMM_CMD_RESET) {
401 mlx4_warn(dev, "%s: slave: %d is still active\n",
409 int mlx4_is_slave_active(struct mlx4_dev *dev, int slave)
411 struct mlx4_priv *priv = mlx4_priv(dev);
412 struct mlx4_slave_state *s_slave;
414 if (!mlx4_is_master(dev))
417 s_slave = &priv->mfunc.master.slave_state[slave];
418 return !!s_slave->active;
420 EXPORT_SYMBOL(mlx4_is_slave_active);
422 static int mlx4_slave_cap(struct mlx4_dev *dev)
426 struct mlx4_dev_cap dev_cap;
427 struct mlx4_func_cap func_cap;
428 struct mlx4_init_hca_param hca_param;
431 memset(&hca_param, 0, sizeof(hca_param));
432 err = mlx4_QUERY_HCA(dev, &hca_param);
434 mlx4_err(dev, "QUERY_HCA command failed, aborting.\n");
438 /*fail if the hca has an unknown capability */
439 if ((hca_param.global_caps | HCA_GLOBAL_CAP_MASK) !=
440 HCA_GLOBAL_CAP_MASK) {
441 mlx4_err(dev, "Unknown hca global capabilities\n");
445 mlx4_log_num_mgm_entry_size = hca_param.log_mc_entry_sz;
447 memset(&dev_cap, 0, sizeof(dev_cap));
448 dev->caps.max_qp_dest_rdma = 1 << hca_param.log_rd_per_qp;
449 err = mlx4_dev_cap(dev, &dev_cap);
451 mlx4_err(dev, "QUERY_DEV_CAP command failed, aborting.\n");
455 err = mlx4_QUERY_FW(dev);
457 mlx4_err(dev, "QUERY_FW command failed: could not get FW version.\n");
459 page_size = ~dev->caps.page_size_cap + 1;
460 mlx4_warn(dev, "HCA minimum page size:%d\n", page_size);
461 if (page_size > PAGE_SIZE) {
462 mlx4_err(dev, "HCA minimum page size of %d bigger than "
463 "kernel PAGE_SIZE of %ld, aborting.\n",
464 page_size, PAGE_SIZE);
468 /* slave gets uar page size from QUERY_HCA fw command */
469 dev->caps.uar_page_size = 1 << (hca_param.uar_page_sz + 12);
471 /* TODO: relax this assumption */
472 if (dev->caps.uar_page_size != PAGE_SIZE) {
473 mlx4_err(dev, "UAR size:%d != kernel PAGE_SIZE of %ld\n",
474 dev->caps.uar_page_size, PAGE_SIZE);
478 memset(&func_cap, 0, sizeof(func_cap));
479 err = mlx4_QUERY_FUNC_CAP(dev, &func_cap);
481 mlx4_err(dev, "QUERY_FUNC_CAP command failed, aborting.\n");
485 if ((func_cap.pf_context_behaviour | PF_CONTEXT_BEHAVIOUR_MASK) !=
486 PF_CONTEXT_BEHAVIOUR_MASK) {
487 mlx4_err(dev, "Unknown pf context behaviour\n");
491 dev->caps.num_ports = func_cap.num_ports;
492 dev->caps.num_qps = func_cap.qp_quota;
493 dev->caps.num_srqs = func_cap.srq_quota;
494 dev->caps.num_cqs = func_cap.cq_quota;
495 dev->caps.num_eqs = func_cap.max_eq;
496 dev->caps.reserved_eqs = func_cap.reserved_eq;
497 dev->caps.num_mpts = func_cap.mpt_quota;
498 dev->caps.num_mtts = func_cap.mtt_quota;
499 dev->caps.num_pds = MLX4_NUM_PDS;
500 dev->caps.num_mgms = 0;
501 dev->caps.num_amgms = 0;
503 if (dev->caps.num_ports > MLX4_MAX_PORTS) {
504 mlx4_err(dev, "HCA has %d ports, but we only support %d, "
505 "aborting.\n", dev->caps.num_ports, MLX4_MAX_PORTS);
509 for (i = 1; i <= dev->caps.num_ports; ++i)
510 dev->caps.port_mask[i] = dev->caps.port_type[i];
512 if (dev->caps.uar_page_size * (dev->caps.num_uars -
513 dev->caps.reserved_uars) >
514 pci_resource_len(dev->pdev, 2)) {
515 mlx4_err(dev, "HCA reported UAR region size of 0x%x bigger than "
516 "PCI resource 2 size of 0x%llx, aborting.\n",
517 dev->caps.uar_page_size * dev->caps.num_uars,
518 (unsigned long long) pci_resource_len(dev->pdev, 2));
526 * Change the port configuration of the device.
527 * Every user of this function must hold the port mutex.
529 int mlx4_change_port_types(struct mlx4_dev *dev,
530 enum mlx4_port_type *port_types)
536 for (port = 0; port < dev->caps.num_ports; port++) {
537 /* Change the port type only if the new type is different
538 * from the current, and not set to Auto */
539 if (port_types[port] != dev->caps.port_type[port + 1])
543 mlx4_unregister_device(dev);
544 for (port = 1; port <= dev->caps.num_ports; port++) {
545 mlx4_CLOSE_PORT(dev, port);
546 dev->caps.port_type[port] = port_types[port - 1];
547 err = mlx4_SET_PORT(dev, port);
549 mlx4_err(dev, "Failed to set port %d, "
554 mlx4_set_port_mask(dev);
555 err = mlx4_register_device(dev);
562 static ssize_t show_port_type(struct device *dev,
563 struct device_attribute *attr,
566 struct mlx4_port_info *info = container_of(attr, struct mlx4_port_info,
568 struct mlx4_dev *mdev = info->dev;
572 (mdev->caps.port_type[info->port] == MLX4_PORT_TYPE_IB) ?
574 if (mdev->caps.possible_type[info->port] == MLX4_PORT_TYPE_AUTO)
575 sprintf(buf, "auto (%s)\n", type);
577 sprintf(buf, "%s\n", type);
582 static ssize_t set_port_type(struct device *dev,
583 struct device_attribute *attr,
584 const char *buf, size_t count)
586 struct mlx4_port_info *info = container_of(attr, struct mlx4_port_info,
588 struct mlx4_dev *mdev = info->dev;
589 struct mlx4_priv *priv = mlx4_priv(mdev);
590 enum mlx4_port_type types[MLX4_MAX_PORTS];
591 enum mlx4_port_type new_types[MLX4_MAX_PORTS];
595 if (!strcmp(buf, "ib\n"))
596 info->tmp_type = MLX4_PORT_TYPE_IB;
597 else if (!strcmp(buf, "eth\n"))
598 info->tmp_type = MLX4_PORT_TYPE_ETH;
599 else if (!strcmp(buf, "auto\n"))
600 info->tmp_type = MLX4_PORT_TYPE_AUTO;
602 mlx4_err(mdev, "%s is not supported port type\n", buf);
606 mlx4_stop_sense(mdev);
607 mutex_lock(&priv->port_mutex);
608 /* Possible type is always the one that was delivered */
609 mdev->caps.possible_type[info->port] = info->tmp_type;
611 for (i = 0; i < mdev->caps.num_ports; i++) {
612 types[i] = priv->port[i+1].tmp_type ? priv->port[i+1].tmp_type :
613 mdev->caps.possible_type[i+1];
614 if (types[i] == MLX4_PORT_TYPE_AUTO)
615 types[i] = mdev->caps.port_type[i+1];
618 if (!(mdev->caps.flags & MLX4_DEV_CAP_FLAG_DPDP) &&
619 !(mdev->caps.flags & MLX4_DEV_CAP_FLAG_SENSE_SUPPORT)) {
620 for (i = 1; i <= mdev->caps.num_ports; i++) {
621 if (mdev->caps.possible_type[i] == MLX4_PORT_TYPE_AUTO) {
622 mdev->caps.possible_type[i] = mdev->caps.port_type[i];
628 mlx4_err(mdev, "Auto sensing is not supported on this HCA. "
629 "Set only 'eth' or 'ib' for both ports "
630 "(should be the same)\n");
634 mlx4_do_sense_ports(mdev, new_types, types);
636 err = mlx4_check_port_params(mdev, new_types);
640 /* We are about to apply the changes after the configuration
641 * was verified, no need to remember the temporary types
643 for (i = 0; i < mdev->caps.num_ports; i++)
644 priv->port[i + 1].tmp_type = 0;
646 err = mlx4_change_port_types(mdev, new_types);
649 mlx4_start_sense(mdev);
650 mutex_unlock(&priv->port_mutex);
651 return err ? err : count;
662 static inline int int_to_ibta_mtu(int mtu)
665 case 256: return IB_MTU_256;
666 case 512: return IB_MTU_512;
667 case 1024: return IB_MTU_1024;
668 case 2048: return IB_MTU_2048;
669 case 4096: return IB_MTU_4096;
674 static inline int ibta_mtu_to_int(enum ibta_mtu mtu)
677 case IB_MTU_256: return 256;
678 case IB_MTU_512: return 512;
679 case IB_MTU_1024: return 1024;
680 case IB_MTU_2048: return 2048;
681 case IB_MTU_4096: return 4096;
686 static ssize_t show_port_ib_mtu(struct device *dev,
687 struct device_attribute *attr,
690 struct mlx4_port_info *info = container_of(attr, struct mlx4_port_info,
692 struct mlx4_dev *mdev = info->dev;
694 if (mdev->caps.port_type[info->port] == MLX4_PORT_TYPE_ETH)
695 mlx4_warn(mdev, "port level mtu is only used for IB ports\n");
698 ibta_mtu_to_int(mdev->caps.port_ib_mtu[info->port]));
702 static ssize_t set_port_ib_mtu(struct device *dev,
703 struct device_attribute *attr,
704 const char *buf, size_t count)
706 struct mlx4_port_info *info = container_of(attr, struct mlx4_port_info,
708 struct mlx4_dev *mdev = info->dev;
709 struct mlx4_priv *priv = mlx4_priv(mdev);
710 int err, port, mtu, ibta_mtu = -1;
712 if (mdev->caps.port_type[info->port] == MLX4_PORT_TYPE_ETH) {
713 mlx4_warn(mdev, "port level mtu is only used for IB ports\n");
717 err = sscanf(buf, "%d", &mtu);
719 ibta_mtu = int_to_ibta_mtu(mtu);
721 if (err <= 0 || ibta_mtu < 0) {
722 mlx4_err(mdev, "%s is invalid IBTA mtu\n", buf);
726 mdev->caps.port_ib_mtu[info->port] = ibta_mtu;
728 mlx4_stop_sense(mdev);
729 mutex_lock(&priv->port_mutex);
730 mlx4_unregister_device(mdev);
731 for (port = 1; port <= mdev->caps.num_ports; port++) {
732 mlx4_CLOSE_PORT(mdev, port);
733 err = mlx4_SET_PORT(mdev, port);
735 mlx4_err(mdev, "Failed to set port %d, "
740 err = mlx4_register_device(mdev);
742 mutex_unlock(&priv->port_mutex);
743 mlx4_start_sense(mdev);
744 return err ? err : count;
747 static int mlx4_load_fw(struct mlx4_dev *dev)
749 struct mlx4_priv *priv = mlx4_priv(dev);
752 priv->fw.fw_icm = mlx4_alloc_icm(dev, priv->fw.fw_pages,
753 GFP_HIGHUSER | __GFP_NOWARN, 0);
754 if (!priv->fw.fw_icm) {
755 mlx4_err(dev, "Couldn't allocate FW area, aborting.\n");
759 err = mlx4_MAP_FA(dev, priv->fw.fw_icm);
761 mlx4_err(dev, "MAP_FA command failed, aborting.\n");
765 err = mlx4_RUN_FW(dev);
767 mlx4_err(dev, "RUN_FW command failed, aborting.\n");
777 mlx4_free_icm(dev, priv->fw.fw_icm, 0);
781 static int mlx4_init_cmpt_table(struct mlx4_dev *dev, u64 cmpt_base,
784 struct mlx4_priv *priv = mlx4_priv(dev);
788 err = mlx4_init_icm_table(dev, &priv->qp_table.cmpt_table,
790 ((u64) (MLX4_CMPT_TYPE_QP *
791 cmpt_entry_sz) << MLX4_CMPT_SHIFT),
792 cmpt_entry_sz, dev->caps.num_qps,
793 dev->caps.reserved_qps_cnt[MLX4_QP_REGION_FW],
798 err = mlx4_init_icm_table(dev, &priv->srq_table.cmpt_table,
800 ((u64) (MLX4_CMPT_TYPE_SRQ *
801 cmpt_entry_sz) << MLX4_CMPT_SHIFT),
802 cmpt_entry_sz, dev->caps.num_srqs,
803 dev->caps.reserved_srqs, 0, 0);
807 err = mlx4_init_icm_table(dev, &priv->cq_table.cmpt_table,
809 ((u64) (MLX4_CMPT_TYPE_CQ *
810 cmpt_entry_sz) << MLX4_CMPT_SHIFT),
811 cmpt_entry_sz, dev->caps.num_cqs,
812 dev->caps.reserved_cqs, 0, 0);
816 num_eqs = (mlx4_is_master(dev)) ? dev->phys_caps.num_phys_eqs :
818 err = mlx4_init_icm_table(dev, &priv->eq_table.cmpt_table,
820 ((u64) (MLX4_CMPT_TYPE_EQ *
821 cmpt_entry_sz) << MLX4_CMPT_SHIFT),
822 cmpt_entry_sz, num_eqs, num_eqs, 0, 0);
829 mlx4_cleanup_icm_table(dev, &priv->cq_table.cmpt_table);
832 mlx4_cleanup_icm_table(dev, &priv->srq_table.cmpt_table);
835 mlx4_cleanup_icm_table(dev, &priv->qp_table.cmpt_table);
841 static int mlx4_init_icm(struct mlx4_dev *dev, struct mlx4_dev_cap *dev_cap,
842 struct mlx4_init_hca_param *init_hca, u64 icm_size)
844 struct mlx4_priv *priv = mlx4_priv(dev);
849 err = mlx4_SET_ICM_SIZE(dev, icm_size, &aux_pages);
851 mlx4_err(dev, "SET_ICM_SIZE command failed, aborting.\n");
855 mlx4_dbg(dev, "%lld KB of HCA context requires %lld KB aux memory.\n",
856 (unsigned long long) icm_size >> 10,
857 (unsigned long long) aux_pages << 2);
859 priv->fw.aux_icm = mlx4_alloc_icm(dev, aux_pages,
860 GFP_HIGHUSER | __GFP_NOWARN, 0);
861 if (!priv->fw.aux_icm) {
862 mlx4_err(dev, "Couldn't allocate aux memory, aborting.\n");
866 err = mlx4_MAP_ICM_AUX(dev, priv->fw.aux_icm);
868 mlx4_err(dev, "MAP_ICM_AUX command failed, aborting.\n");
872 err = mlx4_init_cmpt_table(dev, init_hca->cmpt_base, dev_cap->cmpt_entry_sz);
874 mlx4_err(dev, "Failed to map cMPT context memory, aborting.\n");
879 num_eqs = (mlx4_is_master(dev)) ? dev->phys_caps.num_phys_eqs :
881 err = mlx4_init_icm_table(dev, &priv->eq_table.table,
882 init_hca->eqc_base, dev_cap->eqc_entry_sz,
883 num_eqs, num_eqs, 0, 0);
885 mlx4_err(dev, "Failed to map EQ context memory, aborting.\n");
890 * Reserved MTT entries must be aligned up to a cacheline
891 * boundary, since the FW will write to them, while the driver
892 * writes to all other MTT entries. (The variable
893 * dev->caps.mtt_entry_sz below is really the MTT segment
894 * size, not the raw entry size)
896 dev->caps.reserved_mtts =
897 ALIGN(dev->caps.reserved_mtts * dev->caps.mtt_entry_sz,
898 dma_get_cache_alignment()) / dev->caps.mtt_entry_sz;
900 err = mlx4_init_icm_table(dev, &priv->mr_table.mtt_table,
902 dev->caps.mtt_entry_sz,
904 dev->caps.reserved_mtts, 1, 0);
906 mlx4_err(dev, "Failed to map MTT context memory, aborting.\n");
910 err = mlx4_init_icm_table(dev, &priv->mr_table.dmpt_table,
912 dev_cap->dmpt_entry_sz,
914 dev->caps.reserved_mrws, 1, 1);
916 mlx4_err(dev, "Failed to map dMPT context memory, aborting.\n");
920 err = mlx4_init_icm_table(dev, &priv->qp_table.qp_table,
922 dev_cap->qpc_entry_sz,
924 dev->caps.reserved_qps_cnt[MLX4_QP_REGION_FW],
927 mlx4_err(dev, "Failed to map QP context memory, aborting.\n");
931 err = mlx4_init_icm_table(dev, &priv->qp_table.auxc_table,
933 dev_cap->aux_entry_sz,
935 dev->caps.reserved_qps_cnt[MLX4_QP_REGION_FW],
938 mlx4_err(dev, "Failed to map AUXC context memory, aborting.\n");
942 err = mlx4_init_icm_table(dev, &priv->qp_table.altc_table,
944 dev_cap->altc_entry_sz,
946 dev->caps.reserved_qps_cnt[MLX4_QP_REGION_FW],
949 mlx4_err(dev, "Failed to map ALTC context memory, aborting.\n");
953 err = mlx4_init_icm_table(dev, &priv->qp_table.rdmarc_table,
954 init_hca->rdmarc_base,
955 dev_cap->rdmarc_entry_sz << priv->qp_table.rdmarc_shift,
957 dev->caps.reserved_qps_cnt[MLX4_QP_REGION_FW],
960 mlx4_err(dev, "Failed to map RDMARC context memory, aborting\n");
964 err = mlx4_init_icm_table(dev, &priv->cq_table.table,
966 dev_cap->cqc_entry_sz,
968 dev->caps.reserved_cqs, 0, 0);
970 mlx4_err(dev, "Failed to map CQ context memory, aborting.\n");
971 goto err_unmap_rdmarc;
974 err = mlx4_init_icm_table(dev, &priv->srq_table.table,
976 dev_cap->srq_entry_sz,
978 dev->caps.reserved_srqs, 0, 0);
980 mlx4_err(dev, "Failed to map SRQ context memory, aborting.\n");
985 * It's not strictly required, but for simplicity just map the
986 * whole multicast group table now. The table isn't very big
987 * and it's a lot easier than trying to track ref counts.
989 err = mlx4_init_icm_table(dev, &priv->mcg_table.table,
991 mlx4_get_mgm_entry_size(dev),
992 dev->caps.num_mgms + dev->caps.num_amgms,
993 dev->caps.num_mgms + dev->caps.num_amgms,
996 mlx4_err(dev, "Failed to map MCG context memory, aborting.\n");
1003 mlx4_cleanup_icm_table(dev, &priv->srq_table.table);
1006 mlx4_cleanup_icm_table(dev, &priv->cq_table.table);
1009 mlx4_cleanup_icm_table(dev, &priv->qp_table.rdmarc_table);
1012 mlx4_cleanup_icm_table(dev, &priv->qp_table.altc_table);
1015 mlx4_cleanup_icm_table(dev, &priv->qp_table.auxc_table);
1018 mlx4_cleanup_icm_table(dev, &priv->qp_table.qp_table);
1021 mlx4_cleanup_icm_table(dev, &priv->mr_table.dmpt_table);
1024 mlx4_cleanup_icm_table(dev, &priv->mr_table.mtt_table);
1027 mlx4_cleanup_icm_table(dev, &priv->eq_table.table);
1030 mlx4_cleanup_icm_table(dev, &priv->eq_table.cmpt_table);
1031 mlx4_cleanup_icm_table(dev, &priv->cq_table.cmpt_table);
1032 mlx4_cleanup_icm_table(dev, &priv->srq_table.cmpt_table);
1033 mlx4_cleanup_icm_table(dev, &priv->qp_table.cmpt_table);
1036 mlx4_UNMAP_ICM_AUX(dev);
1039 mlx4_free_icm(dev, priv->fw.aux_icm, 0);
1044 static void mlx4_free_icms(struct mlx4_dev *dev)
1046 struct mlx4_priv *priv = mlx4_priv(dev);
1048 mlx4_cleanup_icm_table(dev, &priv->mcg_table.table);
1049 mlx4_cleanup_icm_table(dev, &priv->srq_table.table);
1050 mlx4_cleanup_icm_table(dev, &priv->cq_table.table);
1051 mlx4_cleanup_icm_table(dev, &priv->qp_table.rdmarc_table);
1052 mlx4_cleanup_icm_table(dev, &priv->qp_table.altc_table);
1053 mlx4_cleanup_icm_table(dev, &priv->qp_table.auxc_table);
1054 mlx4_cleanup_icm_table(dev, &priv->qp_table.qp_table);
1055 mlx4_cleanup_icm_table(dev, &priv->mr_table.dmpt_table);
1056 mlx4_cleanup_icm_table(dev, &priv->mr_table.mtt_table);
1057 mlx4_cleanup_icm_table(dev, &priv->eq_table.table);
1058 mlx4_cleanup_icm_table(dev, &priv->eq_table.cmpt_table);
1059 mlx4_cleanup_icm_table(dev, &priv->cq_table.cmpt_table);
1060 mlx4_cleanup_icm_table(dev, &priv->srq_table.cmpt_table);
1061 mlx4_cleanup_icm_table(dev, &priv->qp_table.cmpt_table);
1063 mlx4_UNMAP_ICM_AUX(dev);
1064 mlx4_free_icm(dev, priv->fw.aux_icm, 0);
1067 static void mlx4_slave_exit(struct mlx4_dev *dev)
1069 struct mlx4_priv *priv = mlx4_priv(dev);
1071 down(&priv->cmd.slave_sem);
1072 if (mlx4_comm_cmd(dev, MLX4_COMM_CMD_RESET, 0, MLX4_COMM_TIME))
1073 mlx4_warn(dev, "Failed to close slave function.\n");
1074 up(&priv->cmd.slave_sem);
1077 static int map_bf_area(struct mlx4_dev *dev)
1079 struct mlx4_priv *priv = mlx4_priv(dev);
1080 resource_size_t bf_start;
1081 resource_size_t bf_len;
1084 if (!dev->caps.bf_reg_size)
1087 bf_start = pci_resource_start(dev->pdev, 2) +
1088 (dev->caps.num_uars << PAGE_SHIFT);
1089 bf_len = pci_resource_len(dev->pdev, 2) -
1090 (dev->caps.num_uars << PAGE_SHIFT);
1091 priv->bf_mapping = io_mapping_create_wc(bf_start, bf_len);
1092 if (!priv->bf_mapping)
1098 static void unmap_bf_area(struct mlx4_dev *dev)
1100 if (mlx4_priv(dev)->bf_mapping)
1101 io_mapping_free(mlx4_priv(dev)->bf_mapping);
1104 static void mlx4_close_hca(struct mlx4_dev *dev)
1107 if (mlx4_is_slave(dev))
1108 mlx4_slave_exit(dev);
1110 mlx4_CLOSE_HCA(dev, 0);
1111 mlx4_free_icms(dev);
1113 mlx4_free_icm(dev, mlx4_priv(dev)->fw.fw_icm, 0);
1117 static int mlx4_init_slave(struct mlx4_dev *dev)
1119 struct mlx4_priv *priv = mlx4_priv(dev);
1120 u64 dma = (u64) priv->mfunc.vhcr_dma;
1121 int num_of_reset_retries = NUM_OF_RESET_RETRIES;
1122 int ret_from_reset = 0;
1124 u32 cmd_channel_ver;
1126 down(&priv->cmd.slave_sem);
1127 priv->cmd.max_cmds = 1;
1128 mlx4_warn(dev, "Sending reset\n");
1129 ret_from_reset = mlx4_comm_cmd(dev, MLX4_COMM_CMD_RESET, 0,
1131 /* if we are in the middle of flr the slave will try
1132 * NUM_OF_RESET_RETRIES times before leaving.*/
1133 if (ret_from_reset) {
1134 if (MLX4_DELAY_RESET_SLAVE == ret_from_reset) {
1135 msleep(SLEEP_TIME_IN_RESET);
1136 while (ret_from_reset && num_of_reset_retries) {
1137 mlx4_warn(dev, "slave is currently in the"
1138 "middle of FLR. retrying..."
1140 (NUM_OF_RESET_RETRIES -
1141 num_of_reset_retries + 1));
1143 mlx4_comm_cmd(dev, MLX4_COMM_CMD_RESET,
1145 num_of_reset_retries = num_of_reset_retries - 1;
1151 /* check the driver version - the slave I/F revision
1152 * must match the master's */
1153 slave_read = swab32(readl(&priv->mfunc.comm->slave_read));
1154 cmd_channel_ver = mlx4_comm_get_version();
1156 if (MLX4_COMM_GET_IF_REV(cmd_channel_ver) !=
1157 MLX4_COMM_GET_IF_REV(slave_read)) {
1158 mlx4_err(dev, "slave driver version is not supported"
1159 " by the master\n");
1163 mlx4_warn(dev, "Sending vhcr0\n");
1164 if (mlx4_comm_cmd(dev, MLX4_COMM_CMD_VHCR0, dma >> 48,
1167 if (mlx4_comm_cmd(dev, MLX4_COMM_CMD_VHCR1, dma >> 32,
1170 if (mlx4_comm_cmd(dev, MLX4_COMM_CMD_VHCR2, dma >> 16,
1173 if (mlx4_comm_cmd(dev, MLX4_COMM_CMD_VHCR_EN, dma, MLX4_COMM_TIME))
1175 up(&priv->cmd.slave_sem);
1179 mlx4_comm_cmd(dev, MLX4_COMM_CMD_RESET, 0, 0);
1180 up(&priv->cmd.slave_sem);
1184 static int mlx4_init_hca(struct mlx4_dev *dev)
1186 struct mlx4_priv *priv = mlx4_priv(dev);
1187 struct mlx4_adapter adapter;
1188 struct mlx4_dev_cap dev_cap;
1189 struct mlx4_mod_stat_cfg mlx4_cfg;
1190 struct mlx4_profile profile;
1191 struct mlx4_init_hca_param init_hca;
1195 if (!mlx4_is_slave(dev)) {
1196 err = mlx4_QUERY_FW(dev);
1199 mlx4_info(dev, "non-primary physical function, skipping.\n");
1201 mlx4_err(dev, "QUERY_FW command failed, aborting.\n");
1205 err = mlx4_load_fw(dev);
1207 mlx4_err(dev, "Failed to start FW, aborting.\n");
1211 mlx4_cfg.log_pg_sz_m = 1;
1212 mlx4_cfg.log_pg_sz = 0;
1213 err = mlx4_MOD_STAT_CFG(dev, &mlx4_cfg);
1215 mlx4_warn(dev, "Failed to override log_pg_sz parameter\n");
1217 err = mlx4_dev_cap(dev, &dev_cap);
1219 mlx4_err(dev, "QUERY_DEV_CAP command failed, aborting.\n");
1223 profile = default_profile;
1225 icm_size = mlx4_make_profile(dev, &profile, &dev_cap,
1227 if ((long long) icm_size < 0) {
1232 dev->caps.max_fmr_maps = (1 << (32 - ilog2(dev->caps.num_mpts))) - 1;
1234 init_hca.log_uar_sz = ilog2(dev->caps.num_uars);
1235 init_hca.uar_page_sz = PAGE_SHIFT - 12;
1237 err = mlx4_init_icm(dev, &dev_cap, &init_hca, icm_size);
1241 err = mlx4_INIT_HCA(dev, &init_hca);
1243 mlx4_err(dev, "INIT_HCA command failed, aborting.\n");
1247 err = mlx4_init_slave(dev);
1249 mlx4_err(dev, "Failed to initialize slave\n");
1253 err = mlx4_slave_cap(dev);
1255 mlx4_err(dev, "Failed to obtain slave caps\n");
1260 if (map_bf_area(dev))
1261 mlx4_dbg(dev, "Failed to map blue flame area\n");
1263 /*Only the master set the ports, all the rest got it from it.*/
1264 if (!mlx4_is_slave(dev))
1265 mlx4_set_port_mask(dev);
1267 err = mlx4_QUERY_ADAPTER(dev, &adapter);
1269 mlx4_err(dev, "QUERY_ADAPTER command failed, aborting.\n");
1273 priv->eq_table.inta_pin = adapter.inta_pin;
1274 memcpy(dev->board_id, adapter.board_id, sizeof dev->board_id);
1279 mlx4_close_hca(dev);
1282 if (!mlx4_is_slave(dev))
1283 mlx4_free_icms(dev);
1286 if (!mlx4_is_slave(dev)) {
1288 mlx4_free_icm(dev, priv->fw.fw_icm, 0);
1295 static int mlx4_init_counters_table(struct mlx4_dev *dev)
1297 struct mlx4_priv *priv = mlx4_priv(dev);
1300 if (!(dev->caps.flags & MLX4_DEV_CAP_FLAG_COUNTERS))
1303 nent = dev->caps.max_counters;
1304 return mlx4_bitmap_init(&priv->counters_bitmap, nent, nent - 1, 0, 0);
1307 static void mlx4_cleanup_counters_table(struct mlx4_dev *dev)
1309 mlx4_bitmap_cleanup(&mlx4_priv(dev)->counters_bitmap);
1312 int __mlx4_counter_alloc(struct mlx4_dev *dev, u32 *idx)
1314 struct mlx4_priv *priv = mlx4_priv(dev);
1316 if (!(dev->caps.flags & MLX4_DEV_CAP_FLAG_COUNTERS))
1319 *idx = mlx4_bitmap_alloc(&priv->counters_bitmap);
1326 int mlx4_counter_alloc(struct mlx4_dev *dev, u32 *idx)
1331 if (mlx4_is_mfunc(dev)) {
1332 err = mlx4_cmd_imm(dev, 0, &out_param, RES_COUNTER,
1333 RES_OP_RESERVE, MLX4_CMD_ALLOC_RES,
1334 MLX4_CMD_TIME_CLASS_A, MLX4_CMD_WRAPPED);
1336 *idx = get_param_l(&out_param);
1340 return __mlx4_counter_alloc(dev, idx);
1342 EXPORT_SYMBOL_GPL(mlx4_counter_alloc);
1344 void __mlx4_counter_free(struct mlx4_dev *dev, u32 idx)
1346 mlx4_bitmap_free(&mlx4_priv(dev)->counters_bitmap, idx);
1350 void mlx4_counter_free(struct mlx4_dev *dev, u32 idx)
1354 if (mlx4_is_mfunc(dev)) {
1355 set_param_l(&in_param, idx);
1356 mlx4_cmd(dev, in_param, RES_COUNTER, RES_OP_RESERVE,
1357 MLX4_CMD_FREE_RES, MLX4_CMD_TIME_CLASS_A,
1361 __mlx4_counter_free(dev, idx);
1363 EXPORT_SYMBOL_GPL(mlx4_counter_free);
1365 static int mlx4_setup_hca(struct mlx4_dev *dev)
1367 struct mlx4_priv *priv = mlx4_priv(dev);
1370 __be32 ib_port_default_caps;
1372 err = mlx4_init_uar_table(dev);
1374 mlx4_err(dev, "Failed to initialize "
1375 "user access region table, aborting.\n");
1379 err = mlx4_uar_alloc(dev, &priv->driver_uar);
1381 mlx4_err(dev, "Failed to allocate driver access region, "
1383 goto err_uar_table_free;
1386 priv->kar = ioremap((phys_addr_t) priv->driver_uar.pfn << PAGE_SHIFT, PAGE_SIZE);
1388 mlx4_err(dev, "Couldn't map kernel access region, "
1394 err = mlx4_init_pd_table(dev);
1396 mlx4_err(dev, "Failed to initialize "
1397 "protection domain table, aborting.\n");
1401 err = mlx4_init_xrcd_table(dev);
1403 mlx4_err(dev, "Failed to initialize "
1404 "reliable connection domain table, aborting.\n");
1405 goto err_pd_table_free;
1408 err = mlx4_init_mr_table(dev);
1410 mlx4_err(dev, "Failed to initialize "
1411 "memory region table, aborting.\n");
1412 goto err_xrcd_table_free;
1415 err = mlx4_init_eq_table(dev);
1417 mlx4_err(dev, "Failed to initialize "
1418 "event queue table, aborting.\n");
1419 goto err_mr_table_free;
1422 err = mlx4_cmd_use_events(dev);
1424 mlx4_err(dev, "Failed to switch to event-driven "
1425 "firmware commands, aborting.\n");
1426 goto err_eq_table_free;
1429 err = mlx4_NOP(dev);
1431 if (dev->flags & MLX4_FLAG_MSI_X) {
1432 mlx4_warn(dev, "NOP command failed to generate MSI-X "
1433 "interrupt IRQ %d).\n",
1434 priv->eq_table.eq[dev->caps.num_comp_vectors].irq);
1435 mlx4_warn(dev, "Trying again without MSI-X.\n");
1437 mlx4_err(dev, "NOP command failed to generate interrupt "
1438 "(IRQ %d), aborting.\n",
1439 priv->eq_table.eq[dev->caps.num_comp_vectors].irq);
1440 mlx4_err(dev, "BIOS or ACPI interrupt routing problem?\n");
1446 mlx4_dbg(dev, "NOP command IRQ test passed\n");
1448 err = mlx4_init_cq_table(dev);
1450 mlx4_err(dev, "Failed to initialize "
1451 "completion queue table, aborting.\n");
1455 err = mlx4_init_srq_table(dev);
1457 mlx4_err(dev, "Failed to initialize "
1458 "shared receive queue table, aborting.\n");
1459 goto err_cq_table_free;
1462 err = mlx4_init_qp_table(dev);
1464 mlx4_err(dev, "Failed to initialize "
1465 "queue pair table, aborting.\n");
1466 goto err_srq_table_free;
1469 if (!mlx4_is_slave(dev)) {
1470 err = mlx4_init_mcg_table(dev);
1472 mlx4_err(dev, "Failed to initialize "
1473 "multicast group table, aborting.\n");
1474 goto err_qp_table_free;
1478 err = mlx4_init_counters_table(dev);
1479 if (err && err != -ENOENT) {
1480 mlx4_err(dev, "Failed to initialize counters table, aborting.\n");
1481 goto err_mcg_table_free;
1484 if (!mlx4_is_slave(dev)) {
1485 for (port = 1; port <= dev->caps.num_ports; port++) {
1486 ib_port_default_caps = 0;
1487 err = mlx4_get_port_ib_caps(dev, port,
1488 &ib_port_default_caps);
1490 mlx4_warn(dev, "failed to get port %d default "
1491 "ib capabilities (%d). Continuing "
1492 "with caps = 0\n", port, err);
1493 dev->caps.ib_port_def_cap[port] = ib_port_default_caps;
1495 if (mlx4_is_mfunc(dev))
1496 dev->caps.port_ib_mtu[port] = IB_MTU_2048;
1498 dev->caps.port_ib_mtu[port] = IB_MTU_4096;
1500 err = mlx4_SET_PORT(dev, port);
1502 mlx4_err(dev, "Failed to set port %d, aborting\n",
1504 goto err_counters_table_free;
1511 err_counters_table_free:
1512 mlx4_cleanup_counters_table(dev);
1515 mlx4_cleanup_mcg_table(dev);
1518 mlx4_cleanup_qp_table(dev);
1521 mlx4_cleanup_srq_table(dev);
1524 mlx4_cleanup_cq_table(dev);
1527 mlx4_cmd_use_polling(dev);
1530 mlx4_cleanup_eq_table(dev);
1533 mlx4_cleanup_mr_table(dev);
1535 err_xrcd_table_free:
1536 mlx4_cleanup_xrcd_table(dev);
1539 mlx4_cleanup_pd_table(dev);
1545 mlx4_uar_free(dev, &priv->driver_uar);
1548 mlx4_cleanup_uar_table(dev);
1552 static void mlx4_enable_msi_x(struct mlx4_dev *dev)
1554 struct mlx4_priv *priv = mlx4_priv(dev);
1555 struct msix_entry *entries;
1556 int nreq = min_t(int, dev->caps.num_ports *
1557 min_t(int, netif_get_num_default_rss_queues() + 1,
1558 MAX_MSIX_P_PORT) + MSIX_LEGACY_SZ, MAX_MSIX);
1563 /* In multifunction mode each function gets 2 msi-X vectors
1564 * one for data path completions anf the other for asynch events
1565 * or command completions */
1566 if (mlx4_is_mfunc(dev)) {
1569 nreq = min_t(int, dev->caps.num_eqs -
1570 dev->caps.reserved_eqs, nreq);
1573 entries = kcalloc(nreq, sizeof *entries, GFP_KERNEL);
1577 for (i = 0; i < nreq; ++i)
1578 entries[i].entry = i;
1581 err = pci_enable_msix(dev->pdev, entries, nreq);
1583 /* Try again if at least 2 vectors are available */
1585 mlx4_info(dev, "Requested %d vectors, "
1586 "but only %d MSI-X vectors available, "
1587 "trying again\n", nreq, err);
1596 MSIX_LEGACY_SZ + dev->caps.num_ports * MIN_MSIX_P_PORT) {
1597 /*Working in legacy mode , all EQ's shared*/
1598 dev->caps.comp_pool = 0;
1599 dev->caps.num_comp_vectors = nreq - 1;
1601 dev->caps.comp_pool = nreq - MSIX_LEGACY_SZ;
1602 dev->caps.num_comp_vectors = MSIX_LEGACY_SZ - 1;
1604 for (i = 0; i < nreq; ++i)
1605 priv->eq_table.eq[i].irq = entries[i].vector;
1607 dev->flags |= MLX4_FLAG_MSI_X;
1614 dev->caps.num_comp_vectors = 1;
1615 dev->caps.comp_pool = 0;
1617 for (i = 0; i < 2; ++i)
1618 priv->eq_table.eq[i].irq = dev->pdev->irq;
1621 static int mlx4_init_port_info(struct mlx4_dev *dev, int port)
1623 struct mlx4_port_info *info = &mlx4_priv(dev)->port[port];
1628 if (!mlx4_is_slave(dev)) {
1629 INIT_RADIX_TREE(&info->mac_tree, GFP_KERNEL);
1630 mlx4_init_mac_table(dev, &info->mac_table);
1631 mlx4_init_vlan_table(dev, &info->vlan_table);
1633 dev->caps.reserved_qps_base[MLX4_QP_REGION_ETH_ADDR] +
1634 (port - 1) * (1 << log_num_mac);
1637 sprintf(info->dev_name, "mlx4_port%d", port);
1638 info->port_attr.attr.name = info->dev_name;
1639 if (mlx4_is_mfunc(dev))
1640 info->port_attr.attr.mode = S_IRUGO;
1642 info->port_attr.attr.mode = S_IRUGO | S_IWUSR;
1643 info->port_attr.store = set_port_type;
1645 info->port_attr.show = show_port_type;
1646 sysfs_attr_init(&info->port_attr.attr);
1648 err = device_create_file(&dev->pdev->dev, &info->port_attr);
1650 mlx4_err(dev, "Failed to create file for port %d\n", port);
1654 sprintf(info->dev_mtu_name, "mlx4_port%d_mtu", port);
1655 info->port_mtu_attr.attr.name = info->dev_mtu_name;
1656 if (mlx4_is_mfunc(dev))
1657 info->port_mtu_attr.attr.mode = S_IRUGO;
1659 info->port_mtu_attr.attr.mode = S_IRUGO | S_IWUSR;
1660 info->port_mtu_attr.store = set_port_ib_mtu;
1662 info->port_mtu_attr.show = show_port_ib_mtu;
1663 sysfs_attr_init(&info->port_mtu_attr.attr);
1665 err = device_create_file(&dev->pdev->dev, &info->port_mtu_attr);
1667 mlx4_err(dev, "Failed to create mtu file for port %d\n", port);
1668 device_remove_file(&info->dev->pdev->dev, &info->port_attr);
1675 static void mlx4_cleanup_port_info(struct mlx4_port_info *info)
1680 device_remove_file(&info->dev->pdev->dev, &info->port_attr);
1681 device_remove_file(&info->dev->pdev->dev, &info->port_mtu_attr);
1684 static int mlx4_init_steering(struct mlx4_dev *dev)
1686 struct mlx4_priv *priv = mlx4_priv(dev);
1687 int num_entries = dev->caps.num_ports;
1690 priv->steer = kzalloc(sizeof(struct mlx4_steer) * num_entries, GFP_KERNEL);
1694 for (i = 0; i < num_entries; i++)
1695 for (j = 0; j < MLX4_NUM_STEERS; j++) {
1696 INIT_LIST_HEAD(&priv->steer[i].promisc_qps[j]);
1697 INIT_LIST_HEAD(&priv->steer[i].steer_entries[j]);
1702 static void mlx4_clear_steering(struct mlx4_dev *dev)
1704 struct mlx4_priv *priv = mlx4_priv(dev);
1705 struct mlx4_steer_index *entry, *tmp_entry;
1706 struct mlx4_promisc_qp *pqp, *tmp_pqp;
1707 int num_entries = dev->caps.num_ports;
1710 for (i = 0; i < num_entries; i++) {
1711 for (j = 0; j < MLX4_NUM_STEERS; j++) {
1712 list_for_each_entry_safe(pqp, tmp_pqp,
1713 &priv->steer[i].promisc_qps[j],
1715 list_del(&pqp->list);
1718 list_for_each_entry_safe(entry, tmp_entry,
1719 &priv->steer[i].steer_entries[j],
1721 list_del(&entry->list);
1722 list_for_each_entry_safe(pqp, tmp_pqp,
1725 list_del(&pqp->list);
1735 static int extended_func_num(struct pci_dev *pdev)
1737 return PCI_SLOT(pdev->devfn) * 8 + PCI_FUNC(pdev->devfn);
1740 #define MLX4_OWNER_BASE 0x8069c
1741 #define MLX4_OWNER_SIZE 4
1743 static int mlx4_get_ownership(struct mlx4_dev *dev)
1745 void __iomem *owner;
1748 owner = ioremap(pci_resource_start(dev->pdev, 0) + MLX4_OWNER_BASE,
1751 mlx4_err(dev, "Failed to obtain ownership bit\n");
1760 static void mlx4_free_ownership(struct mlx4_dev *dev)
1762 void __iomem *owner;
1764 owner = ioremap(pci_resource_start(dev->pdev, 0) + MLX4_OWNER_BASE,
1767 mlx4_err(dev, "Failed to obtain ownership bit\n");
1775 static int __mlx4_init_one(struct pci_dev *pdev, const struct pci_device_id *id)
1777 struct mlx4_priv *priv;
1778 struct mlx4_dev *dev;
1782 pr_info(DRV_NAME ": Initializing %s\n", pci_name(pdev));
1784 err = pci_enable_device(pdev);
1786 dev_err(&pdev->dev, "Cannot enable PCI device, "
1790 if (num_vfs > MLX4_MAX_NUM_VF) {
1791 printk(KERN_ERR "There are more VF's (%d) than allowed(%d)\n",
1792 num_vfs, MLX4_MAX_NUM_VF);
1798 if (((id == NULL) || !(id->driver_data & MLX4_VF)) &&
1799 !(pci_resource_flags(pdev, 0) & IORESOURCE_MEM)) {
1800 dev_err(&pdev->dev, "Missing DCS, aborting."
1801 "(id == 0X%p, id->driver_data: 0x%lx,"
1802 " pci_resource_flags(pdev, 0):0x%lx)\n", id,
1803 id ? id->driver_data : 0, pci_resource_flags(pdev, 0));
1805 goto err_disable_pdev;
1807 if (!(pci_resource_flags(pdev, 2) & IORESOURCE_MEM)) {
1808 dev_err(&pdev->dev, "Missing UAR, aborting.\n");
1810 goto err_disable_pdev;
1813 err = pci_request_regions(pdev, DRV_NAME);
1815 dev_err(&pdev->dev, "Couldn't get PCI resources, aborting\n");
1816 goto err_disable_pdev;
1819 pci_set_master(pdev);
1821 err = pci_set_dma_mask(pdev, DMA_BIT_MASK(64));
1823 dev_warn(&pdev->dev, "Warning: couldn't set 64-bit PCI DMA mask.\n");
1824 err = pci_set_dma_mask(pdev, DMA_BIT_MASK(32));
1826 dev_err(&pdev->dev, "Can't set PCI DMA mask, aborting.\n");
1827 goto err_release_regions;
1830 err = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(64));
1832 dev_warn(&pdev->dev, "Warning: couldn't set 64-bit "
1833 "consistent PCI DMA mask.\n");
1834 err = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(32));
1836 dev_err(&pdev->dev, "Can't set consistent PCI DMA mask, "
1838 goto err_release_regions;
1842 /* Allow large DMA segments, up to the firmware limit of 1 GB */
1843 dma_set_max_seg_size(&pdev->dev, 1024 * 1024 * 1024);
1845 priv = kzalloc(sizeof *priv, GFP_KERNEL);
1847 dev_err(&pdev->dev, "Device struct alloc failed, "
1850 goto err_release_regions;
1855 INIT_LIST_HEAD(&priv->ctx_list);
1856 spin_lock_init(&priv->ctx_lock);
1858 mutex_init(&priv->port_mutex);
1860 INIT_LIST_HEAD(&priv->pgdir_list);
1861 mutex_init(&priv->pgdir_mutex);
1863 INIT_LIST_HEAD(&priv->bf_list);
1864 mutex_init(&priv->bf_mutex);
1866 dev->rev_id = pdev->revision;
1867 /* Detect if this device is a virtual function */
1868 if (id && id->driver_data & MLX4_VF) {
1869 /* When acting as pf, we normally skip vfs unless explicitly
1870 * requested to probe them. */
1871 if (num_vfs && extended_func_num(pdev) > probe_vf) {
1872 mlx4_warn(dev, "Skipping virtual function:%d\n",
1873 extended_func_num(pdev));
1877 mlx4_warn(dev, "Detected virtual function - running in slave mode\n");
1878 dev->flags |= MLX4_FLAG_SLAVE;
1880 /* We reset the device and enable SRIOV only for physical
1881 * devices. Try to claim ownership on the device;
1882 * if already taken, skip -- do not allow multiple PFs */
1883 err = mlx4_get_ownership(dev);
1888 mlx4_warn(dev, "Multiple PFs not yet supported."
1896 mlx4_warn(dev, "Enabling sriov with:%d vfs\n", num_vfs);
1897 err = pci_enable_sriov(pdev, num_vfs);
1899 mlx4_err(dev, "Failed to enable sriov,"
1900 "continuing without sriov enabled"
1901 " (err = %d).\n", err);
1904 mlx4_warn(dev, "Running in master mode\n");
1905 dev->flags |= MLX4_FLAG_SRIOV |
1907 dev->num_vfs = num_vfs;
1912 * Now reset the HCA before we touch the PCI capabilities or
1913 * attempt a firmware command, since a boot ROM may have left
1914 * the HCA in an undefined state.
1916 err = mlx4_reset(dev);
1918 mlx4_err(dev, "Failed to reset HCA, aborting.\n");
1924 if (mlx4_cmd_init(dev)) {
1925 mlx4_err(dev, "Failed to init command interface, aborting.\n");
1929 /* In slave functions, the communication channel must be initialized
1930 * before posting commands. Also, init num_slaves before calling
1932 if (mlx4_is_mfunc(dev)) {
1933 if (mlx4_is_master(dev))
1934 dev->num_slaves = MLX4_MAX_NUM_SLAVES;
1936 dev->num_slaves = 0;
1937 if (mlx4_multi_func_init(dev)) {
1938 mlx4_err(dev, "Failed to init slave mfunc"
1939 " interface, aborting.\n");
1945 err = mlx4_init_hca(dev);
1947 if (err == -EACCES) {
1948 /* Not primary Physical function
1949 * Running in slave mode */
1950 mlx4_cmd_cleanup(dev);
1951 dev->flags |= MLX4_FLAG_SLAVE;
1952 dev->flags &= ~MLX4_FLAG_MASTER;
1958 /* In master functions, the communication channel must be initialized
1959 * after obtaining its address from fw */
1960 if (mlx4_is_master(dev)) {
1961 if (mlx4_multi_func_init(dev)) {
1962 mlx4_err(dev, "Failed to init master mfunc"
1963 "interface, aborting.\n");
1968 err = mlx4_alloc_eq_table(dev);
1970 goto err_master_mfunc;
1972 priv->msix_ctl.pool_bm = 0;
1973 mutex_init(&priv->msix_ctl.pool_lock);
1975 mlx4_enable_msi_x(dev);
1976 if ((mlx4_is_mfunc(dev)) &&
1977 !(dev->flags & MLX4_FLAG_MSI_X)) {
1978 mlx4_err(dev, "INTx is not supported in multi-function mode."
1983 if (!mlx4_is_slave(dev)) {
1984 err = mlx4_init_steering(dev);
1989 err = mlx4_setup_hca(dev);
1990 if (err == -EBUSY && (dev->flags & MLX4_FLAG_MSI_X) &&
1991 !mlx4_is_mfunc(dev)) {
1992 dev->flags &= ~MLX4_FLAG_MSI_X;
1993 dev->caps.num_comp_vectors = 1;
1994 dev->caps.comp_pool = 0;
1995 pci_disable_msix(pdev);
1996 err = mlx4_setup_hca(dev);
2002 for (port = 1; port <= dev->caps.num_ports; port++) {
2003 err = mlx4_init_port_info(dev, port);
2008 err = mlx4_register_device(dev);
2012 mlx4_sense_init(dev);
2013 mlx4_start_sense(dev);
2015 pci_set_drvdata(pdev, dev);
2020 for (--port; port >= 1; --port)
2021 mlx4_cleanup_port_info(&priv->port[port]);
2023 mlx4_cleanup_counters_table(dev);
2024 mlx4_cleanup_mcg_table(dev);
2025 mlx4_cleanup_qp_table(dev);
2026 mlx4_cleanup_srq_table(dev);
2027 mlx4_cleanup_cq_table(dev);
2028 mlx4_cmd_use_polling(dev);
2029 mlx4_cleanup_eq_table(dev);
2030 mlx4_cleanup_mr_table(dev);
2031 mlx4_cleanup_xrcd_table(dev);
2032 mlx4_cleanup_pd_table(dev);
2033 mlx4_cleanup_uar_table(dev);
2036 if (!mlx4_is_slave(dev))
2037 mlx4_clear_steering(dev);
2040 mlx4_free_eq_table(dev);
2043 if (mlx4_is_master(dev))
2044 mlx4_multi_func_cleanup(dev);
2047 if (dev->flags & MLX4_FLAG_MSI_X)
2048 pci_disable_msix(pdev);
2050 mlx4_close_hca(dev);
2053 if (mlx4_is_slave(dev))
2054 mlx4_multi_func_cleanup(dev);
2057 mlx4_cmd_cleanup(dev);
2060 if (dev->flags & MLX4_FLAG_SRIOV)
2061 pci_disable_sriov(pdev);
2064 if (!mlx4_is_slave(dev))
2065 mlx4_free_ownership(dev);
2070 err_release_regions:
2071 pci_release_regions(pdev);
2074 pci_disable_device(pdev);
2075 pci_set_drvdata(pdev, NULL);
2079 static int __devinit mlx4_init_one(struct pci_dev *pdev,
2080 const struct pci_device_id *id)
2082 printk_once(KERN_INFO "%s", mlx4_version);
2084 return __mlx4_init_one(pdev, id);
2087 static void mlx4_remove_one(struct pci_dev *pdev)
2089 struct mlx4_dev *dev = pci_get_drvdata(pdev);
2090 struct mlx4_priv *priv = mlx4_priv(dev);
2094 /* in SRIOV it is not allowed to unload the pf's
2095 * driver while there are alive vf's */
2096 if (mlx4_is_master(dev)) {
2097 if (mlx4_how_many_lives_vf(dev))
2098 printk(KERN_ERR "Removing PF when there are assigned VF's !!!\n");
2100 mlx4_stop_sense(dev);
2101 mlx4_unregister_device(dev);
2103 for (p = 1; p <= dev->caps.num_ports; p++) {
2104 mlx4_cleanup_port_info(&priv->port[p]);
2105 mlx4_CLOSE_PORT(dev, p);
2108 if (mlx4_is_master(dev))
2109 mlx4_free_resource_tracker(dev,
2110 RES_TR_FREE_SLAVES_ONLY);
2112 mlx4_cleanup_counters_table(dev);
2113 mlx4_cleanup_mcg_table(dev);
2114 mlx4_cleanup_qp_table(dev);
2115 mlx4_cleanup_srq_table(dev);
2116 mlx4_cleanup_cq_table(dev);
2117 mlx4_cmd_use_polling(dev);
2118 mlx4_cleanup_eq_table(dev);
2119 mlx4_cleanup_mr_table(dev);
2120 mlx4_cleanup_xrcd_table(dev);
2121 mlx4_cleanup_pd_table(dev);
2123 if (mlx4_is_master(dev))
2124 mlx4_free_resource_tracker(dev,
2125 RES_TR_FREE_STRUCTS_ONLY);
2128 mlx4_uar_free(dev, &priv->driver_uar);
2129 mlx4_cleanup_uar_table(dev);
2130 if (!mlx4_is_slave(dev))
2131 mlx4_clear_steering(dev);
2132 mlx4_free_eq_table(dev);
2133 if (mlx4_is_master(dev))
2134 mlx4_multi_func_cleanup(dev);
2135 mlx4_close_hca(dev);
2136 if (mlx4_is_slave(dev))
2137 mlx4_multi_func_cleanup(dev);
2138 mlx4_cmd_cleanup(dev);
2140 if (dev->flags & MLX4_FLAG_MSI_X)
2141 pci_disable_msix(pdev);
2142 if (dev->flags & MLX4_FLAG_SRIOV) {
2143 mlx4_warn(dev, "Disabling sriov\n");
2144 pci_disable_sriov(pdev);
2147 if (!mlx4_is_slave(dev))
2148 mlx4_free_ownership(dev);
2150 pci_release_regions(pdev);
2151 pci_disable_device(pdev);
2152 pci_set_drvdata(pdev, NULL);
2156 int mlx4_restart_one(struct pci_dev *pdev)
2158 mlx4_remove_one(pdev);
2159 return __mlx4_init_one(pdev, NULL);
2162 static DEFINE_PCI_DEVICE_TABLE(mlx4_pci_table) = {
2163 /* MT25408 "Hermon" SDR */
2164 { PCI_VDEVICE(MELLANOX, 0x6340), 0 },
2165 /* MT25408 "Hermon" DDR */
2166 { PCI_VDEVICE(MELLANOX, 0x634a), 0 },
2167 /* MT25408 "Hermon" QDR */
2168 { PCI_VDEVICE(MELLANOX, 0x6354), 0 },
2169 /* MT25408 "Hermon" DDR PCIe gen2 */
2170 { PCI_VDEVICE(MELLANOX, 0x6732), 0 },
2171 /* MT25408 "Hermon" QDR PCIe gen2 */
2172 { PCI_VDEVICE(MELLANOX, 0x673c), 0 },
2173 /* MT25408 "Hermon" EN 10GigE */
2174 { PCI_VDEVICE(MELLANOX, 0x6368), 0 },
2175 /* MT25408 "Hermon" EN 10GigE PCIe gen2 */
2176 { PCI_VDEVICE(MELLANOX, 0x6750), 0 },
2177 /* MT25458 ConnectX EN 10GBASE-T 10GigE */
2178 { PCI_VDEVICE(MELLANOX, 0x6372), 0 },
2179 /* MT25458 ConnectX EN 10GBASE-T+Gen2 10GigE */
2180 { PCI_VDEVICE(MELLANOX, 0x675a), 0 },
2181 /* MT26468 ConnectX EN 10GigE PCIe gen2*/
2182 { PCI_VDEVICE(MELLANOX, 0x6764), 0 },
2183 /* MT26438 ConnectX EN 40GigE PCIe gen2 5GT/s */
2184 { PCI_VDEVICE(MELLANOX, 0x6746), 0 },
2185 /* MT26478 ConnectX2 40GigE PCIe gen2 */
2186 { PCI_VDEVICE(MELLANOX, 0x676e), 0 },
2187 /* MT25400 Family [ConnectX-2 Virtual Function] */
2188 { PCI_VDEVICE(MELLANOX, 0x1002), MLX4_VF },
2189 /* MT27500 Family [ConnectX-3] */
2190 { PCI_VDEVICE(MELLANOX, 0x1003), 0 },
2191 /* MT27500 Family [ConnectX-3 Virtual Function] */
2192 { PCI_VDEVICE(MELLANOX, 0x1004), MLX4_VF },
2193 { PCI_VDEVICE(MELLANOX, 0x1005), 0 }, /* MT27510 Family */
2194 { PCI_VDEVICE(MELLANOX, 0x1006), 0 }, /* MT27511 Family */
2195 { PCI_VDEVICE(MELLANOX, 0x1007), 0 }, /* MT27520 Family */
2196 { PCI_VDEVICE(MELLANOX, 0x1008), 0 }, /* MT27521 Family */
2197 { PCI_VDEVICE(MELLANOX, 0x1009), 0 }, /* MT27530 Family */
2198 { PCI_VDEVICE(MELLANOX, 0x100a), 0 }, /* MT27531 Family */
2199 { PCI_VDEVICE(MELLANOX, 0x100b), 0 }, /* MT27540 Family */
2200 { PCI_VDEVICE(MELLANOX, 0x100c), 0 }, /* MT27541 Family */
2201 { PCI_VDEVICE(MELLANOX, 0x100d), 0 }, /* MT27550 Family */
2202 { PCI_VDEVICE(MELLANOX, 0x100e), 0 }, /* MT27551 Family */
2203 { PCI_VDEVICE(MELLANOX, 0x100f), 0 }, /* MT27560 Family */
2204 { PCI_VDEVICE(MELLANOX, 0x1010), 0 }, /* MT27561 Family */
2208 MODULE_DEVICE_TABLE(pci, mlx4_pci_table);
2210 static struct pci_driver mlx4_driver = {
2212 .id_table = mlx4_pci_table,
2213 .probe = mlx4_init_one,
2214 .remove = __devexit_p(mlx4_remove_one)
2217 static int __init mlx4_verify_params(void)
2219 if ((log_num_mac < 0) || (log_num_mac > 7)) {
2220 pr_warning("mlx4_core: bad num_mac: %d\n", log_num_mac);
2224 if (log_num_vlan != 0)
2225 pr_warning("mlx4_core: log_num_vlan - obsolete module param, using %d\n",
2226 MLX4_LOG_NUM_VLANS);
2228 if ((log_mtts_per_seg < 1) || (log_mtts_per_seg > 7)) {
2229 pr_warning("mlx4_core: bad log_mtts_per_seg: %d\n", log_mtts_per_seg);
2233 /* Check if module param for ports type has legal combination */
2234 if (port_type_array[0] == false && port_type_array[1] == true) {
2235 printk(KERN_WARNING "Module parameter configuration ETH/IB is not supported. Switching to default configuration IB/IB\n");
2236 port_type_array[0] = true;
2242 static int __init mlx4_init(void)
2246 if (mlx4_verify_params())
2251 mlx4_wq = create_singlethread_workqueue("mlx4");
2255 ret = pci_register_driver(&mlx4_driver);
2256 return ret < 0 ? ret : 0;
2259 static void __exit mlx4_cleanup(void)
2261 pci_unregister_driver(&mlx4_driver);
2262 destroy_workqueue(mlx4_wq);
2265 module_init(mlx4_init);
2266 module_exit(mlx4_cleanup);