mlx4: remove unused field high_prios
[linux-drm-fsl-dcu.git] / drivers / net / ethernet / mellanox / mlx4 / main.c
1 /*
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.
6  *
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:
12  *
13  *     Redistribution and use in source and binary forms, with or
14  *     without modification, are permitted provided that the following
15  *     conditions are met:
16  *
17  *      - Redistributions of source code must retain the above
18  *        copyright notice, this list of conditions and the following
19  *        disclaimer.
20  *
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.
25  *
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
33  * SOFTWARE.
34  */
35
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
45 #include <linux/mlx4/device.h>
46 #include <linux/mlx4/doorbell.h>
47
48 #include "mlx4.h"
49 #include "fw.h"
50 #include "icm.h"
51
52 MODULE_AUTHOR("Roland Dreier");
53 MODULE_DESCRIPTION("Mellanox ConnectX HCA low-level driver");
54 MODULE_LICENSE("Dual BSD/GPL");
55 MODULE_VERSION(DRV_VERSION);
56
57 struct workqueue_struct *mlx4_wq;
58
59 #ifdef CONFIG_MLX4_DEBUG
60
61 int mlx4_debug_level = 0;
62 module_param_named(debug_level, mlx4_debug_level, int, 0644);
63 MODULE_PARM_DESC(debug_level, "Enable debug tracing if > 0");
64
65 #endif /* CONFIG_MLX4_DEBUG */
66
67 #ifdef CONFIG_PCI_MSI
68
69 static int msi_x = 1;
70 module_param(msi_x, int, 0444);
71 MODULE_PARM_DESC(msi_x, "attempt to use MSI-X if nonzero");
72
73 #else /* CONFIG_PCI_MSI */
74
75 #define msi_x (0)
76
77 #endif /* CONFIG_PCI_MSI */
78
79 static int num_vfs;
80 module_param(num_vfs, int, 0444);
81 MODULE_PARM_DESC(num_vfs, "enable #num_vfs functions if num_vfs > 0");
82
83 static int probe_vf;
84 module_param(probe_vf, int, 0644);
85 MODULE_PARM_DESC(probe_vf, "number of vfs to probe by pf driver (num_vfs > 0)");
86
87 int mlx4_log_num_mgm_entry_size = 10;
88 module_param_named(log_num_mgm_entry_size,
89                         mlx4_log_num_mgm_entry_size, int, 0444);
90 MODULE_PARM_DESC(log_num_mgm_entry_size, "log mgm size, that defines the num"
91                                          " of qp per mcg, for example:"
92                                          " 10 gives 248.range: 9<="
93                                          " log_num_mgm_entry_size <= 12");
94
95 #define MLX4_VF                                        (1 << 0)
96
97 #define HCA_GLOBAL_CAP_MASK            0
98 #define PF_CONTEXT_BEHAVIOUR_MASK      0
99
100 static char mlx4_version[] __devinitdata =
101         DRV_NAME ": Mellanox ConnectX core driver v"
102         DRV_VERSION " (" DRV_RELDATE ")\n";
103
104 static struct mlx4_profile default_profile = {
105         .num_qp         = 1 << 18,
106         .num_srq        = 1 << 16,
107         .rdmarc_per_qp  = 1 << 4,
108         .num_cq         = 1 << 16,
109         .num_mcg        = 1 << 13,
110         .num_mpt        = 1 << 19,
111         .num_mtt        = 1 << 20, /* It is really num mtt segements */
112 };
113
114 static int log_num_mac = 7;
115 module_param_named(log_num_mac, log_num_mac, int, 0444);
116 MODULE_PARM_DESC(log_num_mac, "Log2 max number of MACs per ETH port (1-7)");
117
118 static int log_num_vlan;
119 module_param_named(log_num_vlan, log_num_vlan, int, 0444);
120 MODULE_PARM_DESC(log_num_vlan, "Log2 max number of VLANs per ETH port (0-7)");
121 /* Log2 max number of VLANs per ETH port (0-7) */
122 #define MLX4_LOG_NUM_VLANS 7
123
124 static bool use_prio;
125 module_param_named(use_prio, use_prio, bool, 0444);
126 MODULE_PARM_DESC(use_prio, "Enable steering by VLAN priority on ETH ports "
127                   "(0/1, default 0)");
128
129 int log_mtts_per_seg = ilog2(MLX4_MTT_ENTRY_PER_SEG);
130 module_param_named(log_mtts_per_seg, log_mtts_per_seg, int, 0444);
131 MODULE_PARM_DESC(log_mtts_per_seg, "Log2 number of MTT entries per segment (1-7)");
132
133 static int port_type_array[2] = {MLX4_PORT_TYPE_NONE, MLX4_PORT_TYPE_NONE};
134 static int arr_argc = 2;
135 module_param_array(port_type_array, int, &arr_argc, 0444);
136 MODULE_PARM_DESC(port_type_array, "Array of port types: HW_DEFAULT (0) is default "
137                                 "1 for IB, 2 for Ethernet");
138
139 struct mlx4_port_config {
140         struct list_head list;
141         enum mlx4_port_type port_type[MLX4_MAX_PORTS + 1];
142         struct pci_dev *pdev;
143 };
144
145 static inline int mlx4_master_get_num_eqs(struct mlx4_dev *dev)
146 {
147         return dev->caps.reserved_eqs +
148                 MLX4_MFUNC_EQ_NUM * (dev->num_slaves + 1);
149 }
150
151 int mlx4_check_port_params(struct mlx4_dev *dev,
152                            enum mlx4_port_type *port_type)
153 {
154         int i;
155
156         for (i = 0; i < dev->caps.num_ports - 1; i++) {
157                 if (port_type[i] != port_type[i + 1]) {
158                         if (!(dev->caps.flags & MLX4_DEV_CAP_FLAG_DPDP)) {
159                                 mlx4_err(dev, "Only same port types supported "
160                                          "on this HCA, aborting.\n");
161                                 return -EINVAL;
162                         }
163                         if (port_type[i] == MLX4_PORT_TYPE_ETH &&
164                             port_type[i + 1] == MLX4_PORT_TYPE_IB)
165                                 return -EINVAL;
166                 }
167         }
168
169         for (i = 0; i < dev->caps.num_ports; i++) {
170                 if (!(port_type[i] & dev->caps.supported_type[i+1])) {
171                         mlx4_err(dev, "Requested port type for port %d is not "
172                                       "supported on this HCA\n", i + 1);
173                         return -EINVAL;
174                 }
175         }
176         return 0;
177 }
178
179 static void mlx4_set_port_mask(struct mlx4_dev *dev)
180 {
181         int i;
182
183         for (i = 1; i <= dev->caps.num_ports; ++i)
184                 dev->caps.port_mask[i] = dev->caps.port_type[i];
185 }
186
187 static int mlx4_dev_cap(struct mlx4_dev *dev, struct mlx4_dev_cap *dev_cap)
188 {
189         int err;
190         int i;
191
192         err = mlx4_QUERY_DEV_CAP(dev, dev_cap);
193         if (err) {
194                 mlx4_err(dev, "QUERY_DEV_CAP command failed, aborting.\n");
195                 return err;
196         }
197
198         if (dev_cap->min_page_sz > PAGE_SIZE) {
199                 mlx4_err(dev, "HCA minimum page size of %d bigger than "
200                          "kernel PAGE_SIZE of %ld, aborting.\n",
201                          dev_cap->min_page_sz, PAGE_SIZE);
202                 return -ENODEV;
203         }
204         if (dev_cap->num_ports > MLX4_MAX_PORTS) {
205                 mlx4_err(dev, "HCA has %d ports, but we only support %d, "
206                          "aborting.\n",
207                          dev_cap->num_ports, MLX4_MAX_PORTS);
208                 return -ENODEV;
209         }
210
211         if (dev_cap->uar_size > pci_resource_len(dev->pdev, 2)) {
212                 mlx4_err(dev, "HCA reported UAR size of 0x%x bigger than "
213                          "PCI resource 2 size of 0x%llx, aborting.\n",
214                          dev_cap->uar_size,
215                          (unsigned long long) pci_resource_len(dev->pdev, 2));
216                 return -ENODEV;
217         }
218
219         dev->caps.num_ports          = dev_cap->num_ports;
220         for (i = 1; i <= dev->caps.num_ports; ++i) {
221                 dev->caps.vl_cap[i]         = dev_cap->max_vl[i];
222                 dev->caps.ib_mtu_cap[i]     = dev_cap->ib_mtu[i];
223                 dev->caps.gid_table_len[i]  = dev_cap->max_gids[i];
224                 dev->caps.pkey_table_len[i] = dev_cap->max_pkeys[i];
225                 dev->caps.port_width_cap[i] = dev_cap->max_port_width[i];
226                 dev->caps.eth_mtu_cap[i]    = dev_cap->eth_mtu[i];
227                 dev->caps.def_mac[i]        = dev_cap->def_mac[i];
228                 dev->caps.supported_type[i] = dev_cap->supported_port_types[i];
229                 dev->caps.suggested_type[i] = dev_cap->suggested_type[i];
230                 dev->caps.default_sense[i] = dev_cap->default_sense[i];
231                 dev->caps.trans_type[i]     = dev_cap->trans_type[i];
232                 dev->caps.vendor_oui[i]     = dev_cap->vendor_oui[i];
233                 dev->caps.wavelength[i]     = dev_cap->wavelength[i];
234                 dev->caps.trans_code[i]     = dev_cap->trans_code[i];
235         }
236
237         dev->caps.uar_page_size      = PAGE_SIZE;
238         dev->caps.num_uars           = dev_cap->uar_size / PAGE_SIZE;
239         dev->caps.local_ca_ack_delay = dev_cap->local_ca_ack_delay;
240         dev->caps.bf_reg_size        = dev_cap->bf_reg_size;
241         dev->caps.bf_regs_per_page   = dev_cap->bf_regs_per_page;
242         dev->caps.max_sq_sg          = dev_cap->max_sq_sg;
243         dev->caps.max_rq_sg          = dev_cap->max_rq_sg;
244         dev->caps.max_wqes           = dev_cap->max_qp_sz;
245         dev->caps.max_qp_init_rdma   = dev_cap->max_requester_per_qp;
246         dev->caps.max_srq_wqes       = dev_cap->max_srq_sz;
247         dev->caps.max_srq_sge        = dev_cap->max_rq_sg - 1;
248         dev->caps.reserved_srqs      = dev_cap->reserved_srqs;
249         dev->caps.max_sq_desc_sz     = dev_cap->max_sq_desc_sz;
250         dev->caps.max_rq_desc_sz     = dev_cap->max_rq_desc_sz;
251         dev->caps.num_qp_per_mgm     = mlx4_get_qp_per_mgm(dev);
252         /*
253          * Subtract 1 from the limit because we need to allocate a
254          * spare CQE so the HCA HW can tell the difference between an
255          * empty CQ and a full CQ.
256          */
257         dev->caps.max_cqes           = dev_cap->max_cq_sz - 1;
258         dev->caps.reserved_cqs       = dev_cap->reserved_cqs;
259         dev->caps.reserved_eqs       = dev_cap->reserved_eqs;
260         dev->caps.reserved_mtts      = dev_cap->reserved_mtts;
261         dev->caps.reserved_mrws      = dev_cap->reserved_mrws;
262
263         /* The first 128 UARs are used for EQ doorbells */
264         dev->caps.reserved_uars      = max_t(int, 128, dev_cap->reserved_uars);
265         dev->caps.reserved_pds       = dev_cap->reserved_pds;
266         dev->caps.reserved_xrcds     = (dev->caps.flags & MLX4_DEV_CAP_FLAG_XRC) ?
267                                         dev_cap->reserved_xrcds : 0;
268         dev->caps.max_xrcds          = (dev->caps.flags & MLX4_DEV_CAP_FLAG_XRC) ?
269                                         dev_cap->max_xrcds : 0;
270         dev->caps.mtt_entry_sz       = dev_cap->mtt_entry_sz;
271
272         dev->caps.max_msg_sz         = dev_cap->max_msg_sz;
273         dev->caps.page_size_cap      = ~(u32) (dev_cap->min_page_sz - 1);
274         dev->caps.flags              = dev_cap->flags;
275         dev->caps.bmme_flags         = dev_cap->bmme_flags;
276         dev->caps.reserved_lkey      = dev_cap->reserved_lkey;
277         dev->caps.stat_rate_support  = dev_cap->stat_rate_support;
278         dev->caps.max_gso_sz         = dev_cap->max_gso_sz;
279
280         /* Sense port always allowed on supported devices for ConnectX1 and 2 */
281         if (dev->pdev->device != 0x1003)
282                 dev->caps.flags |= MLX4_DEV_CAP_FLAG_SENSE_SUPPORT;
283
284         dev->caps.log_num_macs  = log_num_mac;
285         dev->caps.log_num_vlans = MLX4_LOG_NUM_VLANS;
286         dev->caps.log_num_prios = use_prio ? 3 : 0;
287
288         for (i = 1; i <= dev->caps.num_ports; ++i) {
289                 dev->caps.port_type[i] = MLX4_PORT_TYPE_NONE;
290                 if (dev->caps.supported_type[i]) {
291                         /* if only ETH is supported - assign ETH */
292                         if (dev->caps.supported_type[i] == MLX4_PORT_TYPE_ETH)
293                                 dev->caps.port_type[i] = MLX4_PORT_TYPE_ETH;
294                         /* if only IB is supported,
295                          * assign IB only if SRIOV is off*/
296                         else if (dev->caps.supported_type[i] ==
297                                  MLX4_PORT_TYPE_IB) {
298                                 if (dev->flags & MLX4_FLAG_SRIOV)
299                                         dev->caps.port_type[i] =
300                                                 MLX4_PORT_TYPE_NONE;
301                                 else
302                                         dev->caps.port_type[i] =
303                                                 MLX4_PORT_TYPE_IB;
304                         /* if IB and ETH are supported,
305                          * first of all check if SRIOV is on */
306                         } else if (dev->flags & MLX4_FLAG_SRIOV)
307                                 dev->caps.port_type[i] = MLX4_PORT_TYPE_ETH;
308                         else {
309                                 /* In non-SRIOV mode, we set the port type
310                                  * according to user selection of port type,
311                                  * if usere selected none, take the FW hint */
312                                 if (port_type_array[i-1] == MLX4_PORT_TYPE_NONE)
313                                         dev->caps.port_type[i] = dev->caps.suggested_type[i] ?
314                                                 MLX4_PORT_TYPE_ETH : MLX4_PORT_TYPE_IB;
315                                 else
316                                         dev->caps.port_type[i] = port_type_array[i-1];
317                         }
318                 }
319                 /*
320                  * Link sensing is allowed on the port if 3 conditions are true:
321                  * 1. Both protocols are supported on the port.
322                  * 2. Different types are supported on the port
323                  * 3. FW declared that it supports link sensing
324                  */
325                 mlx4_priv(dev)->sense.sense_allowed[i] =
326                         ((dev->caps.supported_type[i] == MLX4_PORT_TYPE_AUTO) &&
327                          (dev->caps.flags & MLX4_DEV_CAP_FLAG_DPDP) &&
328                          (dev->caps.flags & MLX4_DEV_CAP_FLAG_SENSE_SUPPORT));
329
330                 /*
331                  * If "default_sense" bit is set, we move the port to "AUTO" mode
332                  * and perform sense_port FW command to try and set the correct
333                  * port type from beginning
334                  */
335                 if (mlx4_priv(dev)->sense.sense_allowed[i] && dev->caps.default_sense[i]) {
336                         enum mlx4_port_type sensed_port = MLX4_PORT_TYPE_NONE;
337                         dev->caps.possible_type[i] = MLX4_PORT_TYPE_AUTO;
338                         mlx4_SENSE_PORT(dev, i, &sensed_port);
339                         if (sensed_port != MLX4_PORT_TYPE_NONE)
340                                 dev->caps.port_type[i] = sensed_port;
341                 } else {
342                         dev->caps.possible_type[i] = dev->caps.port_type[i];
343                 }
344
345                 if (dev->caps.log_num_macs > dev_cap->log_max_macs[i]) {
346                         dev->caps.log_num_macs = dev_cap->log_max_macs[i];
347                         mlx4_warn(dev, "Requested number of MACs is too much "
348                                   "for port %d, reducing to %d.\n",
349                                   i, 1 << dev->caps.log_num_macs);
350                 }
351                 if (dev->caps.log_num_vlans > dev_cap->log_max_vlans[i]) {
352                         dev->caps.log_num_vlans = dev_cap->log_max_vlans[i];
353                         mlx4_warn(dev, "Requested number of VLANs is too much "
354                                   "for port %d, reducing to %d.\n",
355                                   i, 1 << dev->caps.log_num_vlans);
356                 }
357         }
358
359         dev->caps.max_counters = 1 << ilog2(dev_cap->max_counters);
360
361         dev->caps.reserved_qps_cnt[MLX4_QP_REGION_FW] = dev_cap->reserved_qps;
362         dev->caps.reserved_qps_cnt[MLX4_QP_REGION_ETH_ADDR] =
363                 dev->caps.reserved_qps_cnt[MLX4_QP_REGION_FC_ADDR] =
364                 (1 << dev->caps.log_num_macs) *
365                 (1 << dev->caps.log_num_vlans) *
366                 (1 << dev->caps.log_num_prios) *
367                 dev->caps.num_ports;
368         dev->caps.reserved_qps_cnt[MLX4_QP_REGION_FC_EXCH] = MLX4_NUM_FEXCH;
369
370         dev->caps.reserved_qps = dev->caps.reserved_qps_cnt[MLX4_QP_REGION_FW] +
371                 dev->caps.reserved_qps_cnt[MLX4_QP_REGION_ETH_ADDR] +
372                 dev->caps.reserved_qps_cnt[MLX4_QP_REGION_FC_ADDR] +
373                 dev->caps.reserved_qps_cnt[MLX4_QP_REGION_FC_EXCH];
374
375         return 0;
376 }
377 /*The function checks if there are live vf, return the num of them*/
378 static int mlx4_how_many_lives_vf(struct mlx4_dev *dev)
379 {
380         struct mlx4_priv *priv = mlx4_priv(dev);
381         struct mlx4_slave_state *s_state;
382         int i;
383         int ret = 0;
384
385         for (i = 1/*the ppf is 0*/; i < dev->num_slaves; ++i) {
386                 s_state = &priv->mfunc.master.slave_state[i];
387                 if (s_state->active && s_state->last_cmd !=
388                     MLX4_COMM_CMD_RESET) {
389                         mlx4_warn(dev, "%s: slave: %d is still active\n",
390                                   __func__, i);
391                         ret++;
392                 }
393         }
394         return ret;
395 }
396
397 static int mlx4_is_slave_active(struct mlx4_dev *dev, int slave)
398 {
399         struct mlx4_priv *priv = mlx4_priv(dev);
400         struct mlx4_slave_state *s_slave;
401
402         if (!mlx4_is_master(dev))
403                 return 0;
404
405         s_slave = &priv->mfunc.master.slave_state[slave];
406         return !!s_slave->active;
407 }
408 EXPORT_SYMBOL(mlx4_is_slave_active);
409
410 static int mlx4_slave_cap(struct mlx4_dev *dev)
411 {
412         int                        err;
413         u32                        page_size;
414         struct mlx4_dev_cap        dev_cap;
415         struct mlx4_func_cap       func_cap;
416         struct mlx4_init_hca_param hca_param;
417         int                        i;
418
419         memset(&hca_param, 0, sizeof(hca_param));
420         err = mlx4_QUERY_HCA(dev, &hca_param);
421         if (err) {
422                 mlx4_err(dev, "QUERY_HCA command failed, aborting.\n");
423                 return err;
424         }
425
426         /*fail if the hca has an unknown capability */
427         if ((hca_param.global_caps | HCA_GLOBAL_CAP_MASK) !=
428             HCA_GLOBAL_CAP_MASK) {
429                 mlx4_err(dev, "Unknown hca global capabilities\n");
430                 return -ENOSYS;
431         }
432
433         mlx4_log_num_mgm_entry_size = hca_param.log_mc_entry_sz;
434
435         memset(&dev_cap, 0, sizeof(dev_cap));
436         err = mlx4_dev_cap(dev, &dev_cap);
437         if (err) {
438                 mlx4_err(dev, "QUERY_DEV_CAP command failed, aborting.\n");
439                 return err;
440         }
441
442         page_size = ~dev->caps.page_size_cap + 1;
443         mlx4_warn(dev, "HCA minimum page size:%d\n", page_size);
444         if (page_size > PAGE_SIZE) {
445                 mlx4_err(dev, "HCA minimum page size of %d bigger than "
446                          "kernel PAGE_SIZE of %ld, aborting.\n",
447                          page_size, PAGE_SIZE);
448                 return -ENODEV;
449         }
450
451         /* slave gets uar page size from QUERY_HCA fw command */
452         dev->caps.uar_page_size = 1 << (hca_param.uar_page_sz + 12);
453
454         /* TODO: relax this assumption */
455         if (dev->caps.uar_page_size != PAGE_SIZE) {
456                 mlx4_err(dev, "UAR size:%d != kernel PAGE_SIZE of %ld\n",
457                          dev->caps.uar_page_size, PAGE_SIZE);
458                 return -ENODEV;
459         }
460
461         memset(&func_cap, 0, sizeof(func_cap));
462         err = mlx4_QUERY_FUNC_CAP(dev, &func_cap);
463         if (err) {
464                 mlx4_err(dev, "QUERY_FUNC_CAP command failed, aborting.\n");
465                 return err;
466         }
467
468         if ((func_cap.pf_context_behaviour | PF_CONTEXT_BEHAVIOUR_MASK) !=
469             PF_CONTEXT_BEHAVIOUR_MASK) {
470                 mlx4_err(dev, "Unknown pf context behaviour\n");
471                 return -ENOSYS;
472         }
473
474         dev->caps.num_ports             = func_cap.num_ports;
475         dev->caps.num_qps               = func_cap.qp_quota;
476         dev->caps.num_srqs              = func_cap.srq_quota;
477         dev->caps.num_cqs               = func_cap.cq_quota;
478         dev->caps.num_eqs               = func_cap.max_eq;
479         dev->caps.reserved_eqs          = func_cap.reserved_eq;
480         dev->caps.num_mpts              = func_cap.mpt_quota;
481         dev->caps.num_mtts              = func_cap.mtt_quota;
482         dev->caps.num_pds               = MLX4_NUM_PDS;
483         dev->caps.num_mgms              = 0;
484         dev->caps.num_amgms             = 0;
485
486         for (i = 1; i <= dev->caps.num_ports; ++i)
487                 dev->caps.port_mask[i] = dev->caps.port_type[i];
488
489         if (dev->caps.num_ports > MLX4_MAX_PORTS) {
490                 mlx4_err(dev, "HCA has %d ports, but we only support %d, "
491                          "aborting.\n", dev->caps.num_ports, MLX4_MAX_PORTS);
492                 return -ENODEV;
493         }
494
495         if (dev->caps.uar_page_size * (dev->caps.num_uars -
496                                        dev->caps.reserved_uars) >
497                                        pci_resource_len(dev->pdev, 2)) {
498                 mlx4_err(dev, "HCA reported UAR region size of 0x%x bigger than "
499                          "PCI resource 2 size of 0x%llx, aborting.\n",
500                          dev->caps.uar_page_size * dev->caps.num_uars,
501                          (unsigned long long) pci_resource_len(dev->pdev, 2));
502                 return -ENODEV;
503         }
504
505 #if 0
506         mlx4_warn(dev, "sqp_demux:%d\n", dev->caps.sqp_demux);
507         mlx4_warn(dev, "num_uars:%d reserved_uars:%d uar region:0x%x bar2:0x%llx\n",
508                   dev->caps.num_uars, dev->caps.reserved_uars,
509                   dev->caps.uar_page_size * dev->caps.num_uars,
510                   pci_resource_len(dev->pdev, 2));
511         mlx4_warn(dev, "num_eqs:%d reserved_eqs:%d\n", dev->caps.num_eqs,
512                   dev->caps.reserved_eqs);
513         mlx4_warn(dev, "num_pds:%d reserved_pds:%d slave_pd_shift:%d pd_base:%d\n",
514                   dev->caps.num_pds, dev->caps.reserved_pds,
515                   dev->caps.slave_pd_shift, dev->caps.pd_base);
516 #endif
517         return 0;
518 }
519
520 /*
521  * Change the port configuration of the device.
522  * Every user of this function must hold the port mutex.
523  */
524 int mlx4_change_port_types(struct mlx4_dev *dev,
525                            enum mlx4_port_type *port_types)
526 {
527         int err = 0;
528         int change = 0;
529         int port;
530
531         for (port = 0; port <  dev->caps.num_ports; port++) {
532                 /* Change the port type only if the new type is different
533                  * from the current, and not set to Auto */
534                 if (port_types[port] != dev->caps.port_type[port + 1]) {
535                         change = 1;
536                         dev->caps.port_type[port + 1] = port_types[port];
537                 }
538         }
539         if (change) {
540                 mlx4_unregister_device(dev);
541                 for (port = 1; port <= dev->caps.num_ports; port++) {
542                         mlx4_CLOSE_PORT(dev, port);
543                         err = mlx4_SET_PORT(dev, port);
544                         if (err) {
545                                 mlx4_err(dev, "Failed to set port %d, "
546                                               "aborting\n", port);
547                                 goto out;
548                         }
549                 }
550                 mlx4_set_port_mask(dev);
551                 err = mlx4_register_device(dev);
552         }
553
554 out:
555         return err;
556 }
557
558 static ssize_t show_port_type(struct device *dev,
559                               struct device_attribute *attr,
560                               char *buf)
561 {
562         struct mlx4_port_info *info = container_of(attr, struct mlx4_port_info,
563                                                    port_attr);
564         struct mlx4_dev *mdev = info->dev;
565         char type[8];
566
567         sprintf(type, "%s",
568                 (mdev->caps.port_type[info->port] == MLX4_PORT_TYPE_IB) ?
569                 "ib" : "eth");
570         if (mdev->caps.possible_type[info->port] == MLX4_PORT_TYPE_AUTO)
571                 sprintf(buf, "auto (%s)\n", type);
572         else
573                 sprintf(buf, "%s\n", type);
574
575         return strlen(buf);
576 }
577
578 static ssize_t set_port_type(struct device *dev,
579                              struct device_attribute *attr,
580                              const char *buf, size_t count)
581 {
582         struct mlx4_port_info *info = container_of(attr, struct mlx4_port_info,
583                                                    port_attr);
584         struct mlx4_dev *mdev = info->dev;
585         struct mlx4_priv *priv = mlx4_priv(mdev);
586         enum mlx4_port_type types[MLX4_MAX_PORTS];
587         enum mlx4_port_type new_types[MLX4_MAX_PORTS];
588         int i;
589         int err = 0;
590
591         if (!strcmp(buf, "ib\n"))
592                 info->tmp_type = MLX4_PORT_TYPE_IB;
593         else if (!strcmp(buf, "eth\n"))
594                 info->tmp_type = MLX4_PORT_TYPE_ETH;
595         else if (!strcmp(buf, "auto\n"))
596                 info->tmp_type = MLX4_PORT_TYPE_AUTO;
597         else {
598                 mlx4_err(mdev, "%s is not supported port type\n", buf);
599                 return -EINVAL;
600         }
601
602         mlx4_stop_sense(mdev);
603         mutex_lock(&priv->port_mutex);
604         /* Possible type is always the one that was delivered */
605         mdev->caps.possible_type[info->port] = info->tmp_type;
606
607         for (i = 0; i < mdev->caps.num_ports; i++) {
608                 types[i] = priv->port[i+1].tmp_type ? priv->port[i+1].tmp_type :
609                                         mdev->caps.possible_type[i+1];
610                 if (types[i] == MLX4_PORT_TYPE_AUTO)
611                         types[i] = mdev->caps.port_type[i+1];
612         }
613
614         if (!(mdev->caps.flags & MLX4_DEV_CAP_FLAG_DPDP) &&
615             !(mdev->caps.flags & MLX4_DEV_CAP_FLAG_SENSE_SUPPORT)) {
616                 for (i = 1; i <= mdev->caps.num_ports; i++) {
617                         if (mdev->caps.possible_type[i] == MLX4_PORT_TYPE_AUTO) {
618                                 mdev->caps.possible_type[i] = mdev->caps.port_type[i];
619                                 err = -EINVAL;
620                         }
621                 }
622         }
623         if (err) {
624                 mlx4_err(mdev, "Auto sensing is not supported on this HCA. "
625                                "Set only 'eth' or 'ib' for both ports "
626                                "(should be the same)\n");
627                 goto out;
628         }
629
630         mlx4_do_sense_ports(mdev, new_types, types);
631
632         err = mlx4_check_port_params(mdev, new_types);
633         if (err)
634                 goto out;
635
636         /* We are about to apply the changes after the configuration
637          * was verified, no need to remember the temporary types
638          * any more */
639         for (i = 0; i < mdev->caps.num_ports; i++)
640                 priv->port[i + 1].tmp_type = 0;
641
642         err = mlx4_change_port_types(mdev, new_types);
643
644 out:
645         mlx4_start_sense(mdev);
646         mutex_unlock(&priv->port_mutex);
647         return err ? err : count;
648 }
649
650 static int mlx4_load_fw(struct mlx4_dev *dev)
651 {
652         struct mlx4_priv *priv = mlx4_priv(dev);
653         int err;
654
655         priv->fw.fw_icm = mlx4_alloc_icm(dev, priv->fw.fw_pages,
656                                          GFP_HIGHUSER | __GFP_NOWARN, 0);
657         if (!priv->fw.fw_icm) {
658                 mlx4_err(dev, "Couldn't allocate FW area, aborting.\n");
659                 return -ENOMEM;
660         }
661
662         err = mlx4_MAP_FA(dev, priv->fw.fw_icm);
663         if (err) {
664                 mlx4_err(dev, "MAP_FA command failed, aborting.\n");
665                 goto err_free;
666         }
667
668         err = mlx4_RUN_FW(dev);
669         if (err) {
670                 mlx4_err(dev, "RUN_FW command failed, aborting.\n");
671                 goto err_unmap_fa;
672         }
673
674         return 0;
675
676 err_unmap_fa:
677         mlx4_UNMAP_FA(dev);
678
679 err_free:
680         mlx4_free_icm(dev, priv->fw.fw_icm, 0);
681         return err;
682 }
683
684 static int mlx4_init_cmpt_table(struct mlx4_dev *dev, u64 cmpt_base,
685                                 int cmpt_entry_sz)
686 {
687         struct mlx4_priv *priv = mlx4_priv(dev);
688         int err;
689         int num_eqs;
690
691         err = mlx4_init_icm_table(dev, &priv->qp_table.cmpt_table,
692                                   cmpt_base +
693                                   ((u64) (MLX4_CMPT_TYPE_QP *
694                                           cmpt_entry_sz) << MLX4_CMPT_SHIFT),
695                                   cmpt_entry_sz, dev->caps.num_qps,
696                                   dev->caps.reserved_qps_cnt[MLX4_QP_REGION_FW],
697                                   0, 0);
698         if (err)
699                 goto err;
700
701         err = mlx4_init_icm_table(dev, &priv->srq_table.cmpt_table,
702                                   cmpt_base +
703                                   ((u64) (MLX4_CMPT_TYPE_SRQ *
704                                           cmpt_entry_sz) << MLX4_CMPT_SHIFT),
705                                   cmpt_entry_sz, dev->caps.num_srqs,
706                                   dev->caps.reserved_srqs, 0, 0);
707         if (err)
708                 goto err_qp;
709
710         err = mlx4_init_icm_table(dev, &priv->cq_table.cmpt_table,
711                                   cmpt_base +
712                                   ((u64) (MLX4_CMPT_TYPE_CQ *
713                                           cmpt_entry_sz) << MLX4_CMPT_SHIFT),
714                                   cmpt_entry_sz, dev->caps.num_cqs,
715                                   dev->caps.reserved_cqs, 0, 0);
716         if (err)
717                 goto err_srq;
718
719         num_eqs = (mlx4_is_master(dev)) ?
720                 roundup_pow_of_two(mlx4_master_get_num_eqs(dev)) :
721                 dev->caps.num_eqs;
722         err = mlx4_init_icm_table(dev, &priv->eq_table.cmpt_table,
723                                   cmpt_base +
724                                   ((u64) (MLX4_CMPT_TYPE_EQ *
725                                           cmpt_entry_sz) << MLX4_CMPT_SHIFT),
726                                   cmpt_entry_sz, num_eqs, num_eqs, 0, 0);
727         if (err)
728                 goto err_cq;
729
730         return 0;
731
732 err_cq:
733         mlx4_cleanup_icm_table(dev, &priv->cq_table.cmpt_table);
734
735 err_srq:
736         mlx4_cleanup_icm_table(dev, &priv->srq_table.cmpt_table);
737
738 err_qp:
739         mlx4_cleanup_icm_table(dev, &priv->qp_table.cmpt_table);
740
741 err:
742         return err;
743 }
744
745 static int mlx4_init_icm(struct mlx4_dev *dev, struct mlx4_dev_cap *dev_cap,
746                          struct mlx4_init_hca_param *init_hca, u64 icm_size)
747 {
748         struct mlx4_priv *priv = mlx4_priv(dev);
749         u64 aux_pages;
750         int num_eqs;
751         int err;
752
753         err = mlx4_SET_ICM_SIZE(dev, icm_size, &aux_pages);
754         if (err) {
755                 mlx4_err(dev, "SET_ICM_SIZE command failed, aborting.\n");
756                 return err;
757         }
758
759         mlx4_dbg(dev, "%lld KB of HCA context requires %lld KB aux memory.\n",
760                  (unsigned long long) icm_size >> 10,
761                  (unsigned long long) aux_pages << 2);
762
763         priv->fw.aux_icm = mlx4_alloc_icm(dev, aux_pages,
764                                           GFP_HIGHUSER | __GFP_NOWARN, 0);
765         if (!priv->fw.aux_icm) {
766                 mlx4_err(dev, "Couldn't allocate aux memory, aborting.\n");
767                 return -ENOMEM;
768         }
769
770         err = mlx4_MAP_ICM_AUX(dev, priv->fw.aux_icm);
771         if (err) {
772                 mlx4_err(dev, "MAP_ICM_AUX command failed, aborting.\n");
773                 goto err_free_aux;
774         }
775
776         err = mlx4_init_cmpt_table(dev, init_hca->cmpt_base, dev_cap->cmpt_entry_sz);
777         if (err) {
778                 mlx4_err(dev, "Failed to map cMPT context memory, aborting.\n");
779                 goto err_unmap_aux;
780         }
781
782
783         num_eqs = (mlx4_is_master(dev)) ?
784                 roundup_pow_of_two(mlx4_master_get_num_eqs(dev)) :
785                 dev->caps.num_eqs;
786         err = mlx4_init_icm_table(dev, &priv->eq_table.table,
787                                   init_hca->eqc_base, dev_cap->eqc_entry_sz,
788                                   num_eqs, num_eqs, 0, 0);
789         if (err) {
790                 mlx4_err(dev, "Failed to map EQ context memory, aborting.\n");
791                 goto err_unmap_cmpt;
792         }
793
794         /*
795          * Reserved MTT entries must be aligned up to a cacheline
796          * boundary, since the FW will write to them, while the driver
797          * writes to all other MTT entries. (The variable
798          * dev->caps.mtt_entry_sz below is really the MTT segment
799          * size, not the raw entry size)
800          */
801         dev->caps.reserved_mtts =
802                 ALIGN(dev->caps.reserved_mtts * dev->caps.mtt_entry_sz,
803                       dma_get_cache_alignment()) / dev->caps.mtt_entry_sz;
804
805         err = mlx4_init_icm_table(dev, &priv->mr_table.mtt_table,
806                                   init_hca->mtt_base,
807                                   dev->caps.mtt_entry_sz,
808                                   dev->caps.num_mtts,
809                                   dev->caps.reserved_mtts, 1, 0);
810         if (err) {
811                 mlx4_err(dev, "Failed to map MTT context memory, aborting.\n");
812                 goto err_unmap_eq;
813         }
814
815         err = mlx4_init_icm_table(dev, &priv->mr_table.dmpt_table,
816                                   init_hca->dmpt_base,
817                                   dev_cap->dmpt_entry_sz,
818                                   dev->caps.num_mpts,
819                                   dev->caps.reserved_mrws, 1, 1);
820         if (err) {
821                 mlx4_err(dev, "Failed to map dMPT context memory, aborting.\n");
822                 goto err_unmap_mtt;
823         }
824
825         err = mlx4_init_icm_table(dev, &priv->qp_table.qp_table,
826                                   init_hca->qpc_base,
827                                   dev_cap->qpc_entry_sz,
828                                   dev->caps.num_qps,
829                                   dev->caps.reserved_qps_cnt[MLX4_QP_REGION_FW],
830                                   0, 0);
831         if (err) {
832                 mlx4_err(dev, "Failed to map QP context memory, aborting.\n");
833                 goto err_unmap_dmpt;
834         }
835
836         err = mlx4_init_icm_table(dev, &priv->qp_table.auxc_table,
837                                   init_hca->auxc_base,
838                                   dev_cap->aux_entry_sz,
839                                   dev->caps.num_qps,
840                                   dev->caps.reserved_qps_cnt[MLX4_QP_REGION_FW],
841                                   0, 0);
842         if (err) {
843                 mlx4_err(dev, "Failed to map AUXC context memory, aborting.\n");
844                 goto err_unmap_qp;
845         }
846
847         err = mlx4_init_icm_table(dev, &priv->qp_table.altc_table,
848                                   init_hca->altc_base,
849                                   dev_cap->altc_entry_sz,
850                                   dev->caps.num_qps,
851                                   dev->caps.reserved_qps_cnt[MLX4_QP_REGION_FW],
852                                   0, 0);
853         if (err) {
854                 mlx4_err(dev, "Failed to map ALTC context memory, aborting.\n");
855                 goto err_unmap_auxc;
856         }
857
858         err = mlx4_init_icm_table(dev, &priv->qp_table.rdmarc_table,
859                                   init_hca->rdmarc_base,
860                                   dev_cap->rdmarc_entry_sz << priv->qp_table.rdmarc_shift,
861                                   dev->caps.num_qps,
862                                   dev->caps.reserved_qps_cnt[MLX4_QP_REGION_FW],
863                                   0, 0);
864         if (err) {
865                 mlx4_err(dev, "Failed to map RDMARC context memory, aborting\n");
866                 goto err_unmap_altc;
867         }
868
869         err = mlx4_init_icm_table(dev, &priv->cq_table.table,
870                                   init_hca->cqc_base,
871                                   dev_cap->cqc_entry_sz,
872                                   dev->caps.num_cqs,
873                                   dev->caps.reserved_cqs, 0, 0);
874         if (err) {
875                 mlx4_err(dev, "Failed to map CQ context memory, aborting.\n");
876                 goto err_unmap_rdmarc;
877         }
878
879         err = mlx4_init_icm_table(dev, &priv->srq_table.table,
880                                   init_hca->srqc_base,
881                                   dev_cap->srq_entry_sz,
882                                   dev->caps.num_srqs,
883                                   dev->caps.reserved_srqs, 0, 0);
884         if (err) {
885                 mlx4_err(dev, "Failed to map SRQ context memory, aborting.\n");
886                 goto err_unmap_cq;
887         }
888
889         /*
890          * It's not strictly required, but for simplicity just map the
891          * whole multicast group table now.  The table isn't very big
892          * and it's a lot easier than trying to track ref counts.
893          */
894         err = mlx4_init_icm_table(dev, &priv->mcg_table.table,
895                                   init_hca->mc_base,
896                                   mlx4_get_mgm_entry_size(dev),
897                                   dev->caps.num_mgms + dev->caps.num_amgms,
898                                   dev->caps.num_mgms + dev->caps.num_amgms,
899                                   0, 0);
900         if (err) {
901                 mlx4_err(dev, "Failed to map MCG context memory, aborting.\n");
902                 goto err_unmap_srq;
903         }
904
905         return 0;
906
907 err_unmap_srq:
908         mlx4_cleanup_icm_table(dev, &priv->srq_table.table);
909
910 err_unmap_cq:
911         mlx4_cleanup_icm_table(dev, &priv->cq_table.table);
912
913 err_unmap_rdmarc:
914         mlx4_cleanup_icm_table(dev, &priv->qp_table.rdmarc_table);
915
916 err_unmap_altc:
917         mlx4_cleanup_icm_table(dev, &priv->qp_table.altc_table);
918
919 err_unmap_auxc:
920         mlx4_cleanup_icm_table(dev, &priv->qp_table.auxc_table);
921
922 err_unmap_qp:
923         mlx4_cleanup_icm_table(dev, &priv->qp_table.qp_table);
924
925 err_unmap_dmpt:
926         mlx4_cleanup_icm_table(dev, &priv->mr_table.dmpt_table);
927
928 err_unmap_mtt:
929         mlx4_cleanup_icm_table(dev, &priv->mr_table.mtt_table);
930
931 err_unmap_eq:
932         mlx4_cleanup_icm_table(dev, &priv->eq_table.table);
933
934 err_unmap_cmpt:
935         mlx4_cleanup_icm_table(dev, &priv->eq_table.cmpt_table);
936         mlx4_cleanup_icm_table(dev, &priv->cq_table.cmpt_table);
937         mlx4_cleanup_icm_table(dev, &priv->srq_table.cmpt_table);
938         mlx4_cleanup_icm_table(dev, &priv->qp_table.cmpt_table);
939
940 err_unmap_aux:
941         mlx4_UNMAP_ICM_AUX(dev);
942
943 err_free_aux:
944         mlx4_free_icm(dev, priv->fw.aux_icm, 0);
945
946         return err;
947 }
948
949 static void mlx4_free_icms(struct mlx4_dev *dev)
950 {
951         struct mlx4_priv *priv = mlx4_priv(dev);
952
953         mlx4_cleanup_icm_table(dev, &priv->mcg_table.table);
954         mlx4_cleanup_icm_table(dev, &priv->srq_table.table);
955         mlx4_cleanup_icm_table(dev, &priv->cq_table.table);
956         mlx4_cleanup_icm_table(dev, &priv->qp_table.rdmarc_table);
957         mlx4_cleanup_icm_table(dev, &priv->qp_table.altc_table);
958         mlx4_cleanup_icm_table(dev, &priv->qp_table.auxc_table);
959         mlx4_cleanup_icm_table(dev, &priv->qp_table.qp_table);
960         mlx4_cleanup_icm_table(dev, &priv->mr_table.dmpt_table);
961         mlx4_cleanup_icm_table(dev, &priv->mr_table.mtt_table);
962         mlx4_cleanup_icm_table(dev, &priv->eq_table.table);
963         mlx4_cleanup_icm_table(dev, &priv->eq_table.cmpt_table);
964         mlx4_cleanup_icm_table(dev, &priv->cq_table.cmpt_table);
965         mlx4_cleanup_icm_table(dev, &priv->srq_table.cmpt_table);
966         mlx4_cleanup_icm_table(dev, &priv->qp_table.cmpt_table);
967
968         mlx4_UNMAP_ICM_AUX(dev);
969         mlx4_free_icm(dev, priv->fw.aux_icm, 0);
970 }
971
972 static void mlx4_slave_exit(struct mlx4_dev *dev)
973 {
974         struct mlx4_priv *priv = mlx4_priv(dev);
975
976         down(&priv->cmd.slave_sem);
977         if (mlx4_comm_cmd(dev, MLX4_COMM_CMD_RESET, 0, MLX4_COMM_TIME))
978                 mlx4_warn(dev, "Failed to close slave function.\n");
979         up(&priv->cmd.slave_sem);
980 }
981
982 static int map_bf_area(struct mlx4_dev *dev)
983 {
984         struct mlx4_priv *priv = mlx4_priv(dev);
985         resource_size_t bf_start;
986         resource_size_t bf_len;
987         int err = 0;
988
989         bf_start = pci_resource_start(dev->pdev, 2) +
990                         (dev->caps.num_uars << PAGE_SHIFT);
991         bf_len = pci_resource_len(dev->pdev, 2) -
992                         (dev->caps.num_uars << PAGE_SHIFT);
993         priv->bf_mapping = io_mapping_create_wc(bf_start, bf_len);
994         if (!priv->bf_mapping)
995                 err = -ENOMEM;
996
997         return err;
998 }
999
1000 static void unmap_bf_area(struct mlx4_dev *dev)
1001 {
1002         if (mlx4_priv(dev)->bf_mapping)
1003                 io_mapping_free(mlx4_priv(dev)->bf_mapping);
1004 }
1005
1006 static void mlx4_close_hca(struct mlx4_dev *dev)
1007 {
1008         unmap_bf_area(dev);
1009         if (mlx4_is_slave(dev))
1010                 mlx4_slave_exit(dev);
1011         else {
1012                 mlx4_CLOSE_HCA(dev, 0);
1013                 mlx4_free_icms(dev);
1014                 mlx4_UNMAP_FA(dev);
1015                 mlx4_free_icm(dev, mlx4_priv(dev)->fw.fw_icm, 0);
1016         }
1017 }
1018
1019 static int mlx4_init_slave(struct mlx4_dev *dev)
1020 {
1021         struct mlx4_priv *priv = mlx4_priv(dev);
1022         u64 dma = (u64) priv->mfunc.vhcr_dma;
1023         int num_of_reset_retries = NUM_OF_RESET_RETRIES;
1024         int ret_from_reset = 0;
1025         u32 slave_read;
1026         u32 cmd_channel_ver;
1027
1028         down(&priv->cmd.slave_sem);
1029         priv->cmd.max_cmds = 1;
1030         mlx4_warn(dev, "Sending reset\n");
1031         ret_from_reset = mlx4_comm_cmd(dev, MLX4_COMM_CMD_RESET, 0,
1032                                        MLX4_COMM_TIME);
1033         /* if we are in the middle of flr the slave will try
1034          * NUM_OF_RESET_RETRIES times before leaving.*/
1035         if (ret_from_reset) {
1036                 if (MLX4_DELAY_RESET_SLAVE == ret_from_reset) {
1037                         msleep(SLEEP_TIME_IN_RESET);
1038                         while (ret_from_reset && num_of_reset_retries) {
1039                                 mlx4_warn(dev, "slave is currently in the"
1040                                           "middle of FLR. retrying..."
1041                                           "(try num:%d)\n",
1042                                           (NUM_OF_RESET_RETRIES -
1043                                            num_of_reset_retries  + 1));
1044                                 ret_from_reset =
1045                                         mlx4_comm_cmd(dev, MLX4_COMM_CMD_RESET,
1046                                                       0, MLX4_COMM_TIME);
1047                                 num_of_reset_retries = num_of_reset_retries - 1;
1048                         }
1049                 } else
1050                         goto err;
1051         }
1052
1053         /* check the driver version - the slave I/F revision
1054          * must match the master's */
1055         slave_read = swab32(readl(&priv->mfunc.comm->slave_read));
1056         cmd_channel_ver = mlx4_comm_get_version();
1057
1058         if (MLX4_COMM_GET_IF_REV(cmd_channel_ver) !=
1059                 MLX4_COMM_GET_IF_REV(slave_read)) {
1060                 mlx4_err(dev, "slave driver version is not supported"
1061                          " by the master\n");
1062                 goto err;
1063         }
1064
1065         mlx4_warn(dev, "Sending vhcr0\n");
1066         if (mlx4_comm_cmd(dev, MLX4_COMM_CMD_VHCR0, dma >> 48,
1067                                                     MLX4_COMM_TIME))
1068                 goto err;
1069         if (mlx4_comm_cmd(dev, MLX4_COMM_CMD_VHCR1, dma >> 32,
1070                                                     MLX4_COMM_TIME))
1071                 goto err;
1072         if (mlx4_comm_cmd(dev, MLX4_COMM_CMD_VHCR2, dma >> 16,
1073                                                     MLX4_COMM_TIME))
1074                 goto err;
1075         if (mlx4_comm_cmd(dev, MLX4_COMM_CMD_VHCR_EN, dma, MLX4_COMM_TIME))
1076                 goto err;
1077         up(&priv->cmd.slave_sem);
1078         return 0;
1079
1080 err:
1081         mlx4_comm_cmd(dev, MLX4_COMM_CMD_RESET, 0, 0);
1082         up(&priv->cmd.slave_sem);
1083         return -EIO;
1084 }
1085
1086 static int mlx4_init_hca(struct mlx4_dev *dev)
1087 {
1088         struct mlx4_priv          *priv = mlx4_priv(dev);
1089         struct mlx4_adapter        adapter;
1090         struct mlx4_dev_cap        dev_cap;
1091         struct mlx4_mod_stat_cfg   mlx4_cfg;
1092         struct mlx4_profile        profile;
1093         struct mlx4_init_hca_param init_hca;
1094         u64 icm_size;
1095         int err;
1096
1097         if (!mlx4_is_slave(dev)) {
1098                 err = mlx4_QUERY_FW(dev);
1099                 if (err) {
1100                         if (err == -EACCES)
1101                                 mlx4_info(dev, "non-primary physical function, skipping.\n");
1102                         else
1103                                 mlx4_err(dev, "QUERY_FW command failed, aborting.\n");
1104                         goto unmap_bf;
1105                 }
1106
1107                 err = mlx4_load_fw(dev);
1108                 if (err) {
1109                         mlx4_err(dev, "Failed to start FW, aborting.\n");
1110                         goto unmap_bf;
1111                 }
1112
1113                 mlx4_cfg.log_pg_sz_m = 1;
1114                 mlx4_cfg.log_pg_sz = 0;
1115                 err = mlx4_MOD_STAT_CFG(dev, &mlx4_cfg);
1116                 if (err)
1117                         mlx4_warn(dev, "Failed to override log_pg_sz parameter\n");
1118
1119                 err = mlx4_dev_cap(dev, &dev_cap);
1120                 if (err) {
1121                         mlx4_err(dev, "QUERY_DEV_CAP command failed, aborting.\n");
1122                         goto err_stop_fw;
1123                 }
1124
1125                 profile = default_profile;
1126
1127                 icm_size = mlx4_make_profile(dev, &profile, &dev_cap,
1128                                              &init_hca);
1129                 if ((long long) icm_size < 0) {
1130                         err = icm_size;
1131                         goto err_stop_fw;
1132                 }
1133
1134                 init_hca.log_uar_sz = ilog2(dev->caps.num_uars);
1135                 init_hca.uar_page_sz = PAGE_SHIFT - 12;
1136
1137                 err = mlx4_init_icm(dev, &dev_cap, &init_hca, icm_size);
1138                 if (err)
1139                         goto err_stop_fw;
1140
1141                 err = mlx4_INIT_HCA(dev, &init_hca);
1142                 if (err) {
1143                         mlx4_err(dev, "INIT_HCA command failed, aborting.\n");
1144                         goto err_free_icm;
1145                 }
1146         } else {
1147                 err = mlx4_init_slave(dev);
1148                 if (err) {
1149                         mlx4_err(dev, "Failed to initialize slave\n");
1150                         goto unmap_bf;
1151                 }
1152
1153                 err = mlx4_slave_cap(dev);
1154                 if (err) {
1155                         mlx4_err(dev, "Failed to obtain slave caps\n");
1156                         goto err_close;
1157                 }
1158         }
1159
1160         if (map_bf_area(dev))
1161                 mlx4_dbg(dev, "Failed to map blue flame area\n");
1162
1163         /*Only the master set the ports, all the rest got it from it.*/
1164         if (!mlx4_is_slave(dev))
1165                 mlx4_set_port_mask(dev);
1166
1167         err = mlx4_QUERY_ADAPTER(dev, &adapter);
1168         if (err) {
1169                 mlx4_err(dev, "QUERY_ADAPTER command failed, aborting.\n");
1170                 goto err_close;
1171         }
1172
1173         priv->eq_table.inta_pin = adapter.inta_pin;
1174         memcpy(dev->board_id, adapter.board_id, sizeof dev->board_id);
1175
1176         return 0;
1177
1178 err_close:
1179         mlx4_close_hca(dev);
1180
1181 err_free_icm:
1182         if (!mlx4_is_slave(dev))
1183                 mlx4_free_icms(dev);
1184
1185 err_stop_fw:
1186         if (!mlx4_is_slave(dev)) {
1187                 mlx4_UNMAP_FA(dev);
1188                 mlx4_free_icm(dev, priv->fw.fw_icm, 0);
1189         }
1190 unmap_bf:
1191         unmap_bf_area(dev);
1192         return err;
1193 }
1194
1195 static int mlx4_init_counters_table(struct mlx4_dev *dev)
1196 {
1197         struct mlx4_priv *priv = mlx4_priv(dev);
1198         int nent;
1199
1200         if (!(dev->caps.flags & MLX4_DEV_CAP_FLAG_COUNTERS))
1201                 return -ENOENT;
1202
1203         nent = dev->caps.max_counters;
1204         return mlx4_bitmap_init(&priv->counters_bitmap, nent, nent - 1, 0, 0);
1205 }
1206
1207 static void mlx4_cleanup_counters_table(struct mlx4_dev *dev)
1208 {
1209         mlx4_bitmap_cleanup(&mlx4_priv(dev)->counters_bitmap);
1210 }
1211
1212 int mlx4_counter_alloc(struct mlx4_dev *dev, u32 *idx)
1213 {
1214         struct mlx4_priv *priv = mlx4_priv(dev);
1215
1216         if (!(dev->caps.flags & MLX4_DEV_CAP_FLAG_COUNTERS))
1217                 return -ENOENT;
1218
1219         *idx = mlx4_bitmap_alloc(&priv->counters_bitmap);
1220         if (*idx == -1)
1221                 return -ENOMEM;
1222
1223         return 0;
1224 }
1225 EXPORT_SYMBOL_GPL(mlx4_counter_alloc);
1226
1227 void mlx4_counter_free(struct mlx4_dev *dev, u32 idx)
1228 {
1229         mlx4_bitmap_free(&mlx4_priv(dev)->counters_bitmap, idx);
1230         return;
1231 }
1232 EXPORT_SYMBOL_GPL(mlx4_counter_free);
1233
1234 static int mlx4_setup_hca(struct mlx4_dev *dev)
1235 {
1236         struct mlx4_priv *priv = mlx4_priv(dev);
1237         int err;
1238         int port;
1239         __be32 ib_port_default_caps;
1240
1241         err = mlx4_init_uar_table(dev);
1242         if (err) {
1243                 mlx4_err(dev, "Failed to initialize "
1244                          "user access region table, aborting.\n");
1245                 return err;
1246         }
1247
1248         err = mlx4_uar_alloc(dev, &priv->driver_uar);
1249         if (err) {
1250                 mlx4_err(dev, "Failed to allocate driver access region, "
1251                          "aborting.\n");
1252                 goto err_uar_table_free;
1253         }
1254
1255         priv->kar = ioremap((phys_addr_t) priv->driver_uar.pfn << PAGE_SHIFT, PAGE_SIZE);
1256         if (!priv->kar) {
1257                 mlx4_err(dev, "Couldn't map kernel access region, "
1258                          "aborting.\n");
1259                 err = -ENOMEM;
1260                 goto err_uar_free;
1261         }
1262
1263         err = mlx4_init_pd_table(dev);
1264         if (err) {
1265                 mlx4_err(dev, "Failed to initialize "
1266                          "protection domain table, aborting.\n");
1267                 goto err_kar_unmap;
1268         }
1269
1270         err = mlx4_init_xrcd_table(dev);
1271         if (err) {
1272                 mlx4_err(dev, "Failed to initialize "
1273                          "reliable connection domain table, aborting.\n");
1274                 goto err_pd_table_free;
1275         }
1276
1277         err = mlx4_init_mr_table(dev);
1278         if (err) {
1279                 mlx4_err(dev, "Failed to initialize "
1280                          "memory region table, aborting.\n");
1281                 goto err_xrcd_table_free;
1282         }
1283
1284         err = mlx4_init_eq_table(dev);
1285         if (err) {
1286                 mlx4_err(dev, "Failed to initialize "
1287                          "event queue table, aborting.\n");
1288                 goto err_mr_table_free;
1289         }
1290
1291         err = mlx4_cmd_use_events(dev);
1292         if (err) {
1293                 mlx4_err(dev, "Failed to switch to event-driven "
1294                          "firmware commands, aborting.\n");
1295                 goto err_eq_table_free;
1296         }
1297
1298         err = mlx4_NOP(dev);
1299         if (err) {
1300                 if (dev->flags & MLX4_FLAG_MSI_X) {
1301                         mlx4_warn(dev, "NOP command failed to generate MSI-X "
1302                                   "interrupt IRQ %d).\n",
1303                                   priv->eq_table.eq[dev->caps.num_comp_vectors].irq);
1304                         mlx4_warn(dev, "Trying again without MSI-X.\n");
1305                 } else {
1306                         mlx4_err(dev, "NOP command failed to generate interrupt "
1307                                  "(IRQ %d), aborting.\n",
1308                                  priv->eq_table.eq[dev->caps.num_comp_vectors].irq);
1309                         mlx4_err(dev, "BIOS or ACPI interrupt routing problem?\n");
1310                 }
1311
1312                 goto err_cmd_poll;
1313         }
1314
1315         mlx4_dbg(dev, "NOP command IRQ test passed\n");
1316
1317         err = mlx4_init_cq_table(dev);
1318         if (err) {
1319                 mlx4_err(dev, "Failed to initialize "
1320                          "completion queue table, aborting.\n");
1321                 goto err_cmd_poll;
1322         }
1323
1324         err = mlx4_init_srq_table(dev);
1325         if (err) {
1326                 mlx4_err(dev, "Failed to initialize "
1327                          "shared receive queue table, aborting.\n");
1328                 goto err_cq_table_free;
1329         }
1330
1331         err = mlx4_init_qp_table(dev);
1332         if (err) {
1333                 mlx4_err(dev, "Failed to initialize "
1334                          "queue pair table, aborting.\n");
1335                 goto err_srq_table_free;
1336         }
1337
1338         if (!mlx4_is_slave(dev)) {
1339                 err = mlx4_init_mcg_table(dev);
1340                 if (err) {
1341                         mlx4_err(dev, "Failed to initialize "
1342                                  "multicast group table, aborting.\n");
1343                         goto err_qp_table_free;
1344                 }
1345         }
1346
1347         err = mlx4_init_counters_table(dev);
1348         if (err && err != -ENOENT) {
1349                 mlx4_err(dev, "Failed to initialize counters table, aborting.\n");
1350                 goto err_mcg_table_free;
1351         }
1352
1353         if (!mlx4_is_slave(dev)) {
1354                 for (port = 1; port <= dev->caps.num_ports; port++) {
1355                         ib_port_default_caps = 0;
1356                         err = mlx4_get_port_ib_caps(dev, port,
1357                                                     &ib_port_default_caps);
1358                         if (err)
1359                                 mlx4_warn(dev, "failed to get port %d default "
1360                                           "ib capabilities (%d). Continuing "
1361                                           "with caps = 0\n", port, err);
1362                         dev->caps.ib_port_def_cap[port] = ib_port_default_caps;
1363
1364                         err = mlx4_check_ext_port_caps(dev, port);
1365                         if (err)
1366                                 mlx4_warn(dev, "failed to get port %d extended "
1367                                           "port capabilities support info (%d)."
1368                                           " Assuming not supported\n",
1369                                           port, err);
1370
1371                         err = mlx4_SET_PORT(dev, port);
1372                         if (err) {
1373                                 mlx4_err(dev, "Failed to set port %d, aborting\n",
1374                                         port);
1375                                 goto err_counters_table_free;
1376                         }
1377                 }
1378         }
1379
1380         return 0;
1381
1382 err_counters_table_free:
1383         mlx4_cleanup_counters_table(dev);
1384
1385 err_mcg_table_free:
1386         mlx4_cleanup_mcg_table(dev);
1387
1388 err_qp_table_free:
1389         mlx4_cleanup_qp_table(dev);
1390
1391 err_srq_table_free:
1392         mlx4_cleanup_srq_table(dev);
1393
1394 err_cq_table_free:
1395         mlx4_cleanup_cq_table(dev);
1396
1397 err_cmd_poll:
1398         mlx4_cmd_use_polling(dev);
1399
1400 err_eq_table_free:
1401         mlx4_cleanup_eq_table(dev);
1402
1403 err_mr_table_free:
1404         mlx4_cleanup_mr_table(dev);
1405
1406 err_xrcd_table_free:
1407         mlx4_cleanup_xrcd_table(dev);
1408
1409 err_pd_table_free:
1410         mlx4_cleanup_pd_table(dev);
1411
1412 err_kar_unmap:
1413         iounmap(priv->kar);
1414
1415 err_uar_free:
1416         mlx4_uar_free(dev, &priv->driver_uar);
1417
1418 err_uar_table_free:
1419         mlx4_cleanup_uar_table(dev);
1420         return err;
1421 }
1422
1423 static void mlx4_enable_msi_x(struct mlx4_dev *dev)
1424 {
1425         struct mlx4_priv *priv = mlx4_priv(dev);
1426         struct msix_entry *entries;
1427         int nreq = min_t(int, dev->caps.num_ports *
1428                          min_t(int, num_online_cpus() + 1, MAX_MSIX_P_PORT)
1429                                 + MSIX_LEGACY_SZ, MAX_MSIX);
1430         int err;
1431         int i;
1432
1433         if (msi_x) {
1434                 /* In multifunction mode each function gets 2 msi-X vectors
1435                  * one for data path completions anf the other for asynch events
1436                  * or command completions */
1437                 if (mlx4_is_mfunc(dev)) {
1438                         nreq = 2;
1439                 } else {
1440                         nreq = min_t(int, dev->caps.num_eqs -
1441                                      dev->caps.reserved_eqs, nreq);
1442                 }
1443
1444                 entries = kcalloc(nreq, sizeof *entries, GFP_KERNEL);
1445                 if (!entries)
1446                         goto no_msi;
1447
1448                 for (i = 0; i < nreq; ++i)
1449                         entries[i].entry = i;
1450
1451         retry:
1452                 err = pci_enable_msix(dev->pdev, entries, nreq);
1453                 if (err) {
1454                         /* Try again if at least 2 vectors are available */
1455                         if (err > 1) {
1456                                 mlx4_info(dev, "Requested %d vectors, "
1457                                           "but only %d MSI-X vectors available, "
1458                                           "trying again\n", nreq, err);
1459                                 nreq = err;
1460                                 goto retry;
1461                         }
1462                         kfree(entries);
1463                         goto no_msi;
1464                 }
1465
1466                 if (nreq <
1467                     MSIX_LEGACY_SZ + dev->caps.num_ports * MIN_MSIX_P_PORT) {
1468                         /*Working in legacy mode , all EQ's shared*/
1469                         dev->caps.comp_pool           = 0;
1470                         dev->caps.num_comp_vectors = nreq - 1;
1471                 } else {
1472                         dev->caps.comp_pool           = nreq - MSIX_LEGACY_SZ;
1473                         dev->caps.num_comp_vectors = MSIX_LEGACY_SZ - 1;
1474                 }
1475                 for (i = 0; i < nreq; ++i)
1476                         priv->eq_table.eq[i].irq = entries[i].vector;
1477
1478                 dev->flags |= MLX4_FLAG_MSI_X;
1479
1480                 kfree(entries);
1481                 return;
1482         }
1483
1484 no_msi:
1485         dev->caps.num_comp_vectors = 1;
1486         dev->caps.comp_pool        = 0;
1487
1488         for (i = 0; i < 2; ++i)
1489                 priv->eq_table.eq[i].irq = dev->pdev->irq;
1490 }
1491
1492 static int mlx4_init_port_info(struct mlx4_dev *dev, int port)
1493 {
1494         struct mlx4_port_info *info = &mlx4_priv(dev)->port[port];
1495         int err = 0;
1496
1497         info->dev = dev;
1498         info->port = port;
1499         if (!mlx4_is_slave(dev)) {
1500                 INIT_RADIX_TREE(&info->mac_tree, GFP_KERNEL);
1501                 mlx4_init_mac_table(dev, &info->mac_table);
1502                 mlx4_init_vlan_table(dev, &info->vlan_table);
1503                 info->base_qpn =
1504                         dev->caps.reserved_qps_base[MLX4_QP_REGION_ETH_ADDR] +
1505                         (port - 1) * (1 << log_num_mac);
1506         }
1507
1508         sprintf(info->dev_name, "mlx4_port%d", port);
1509         info->port_attr.attr.name = info->dev_name;
1510         if (mlx4_is_mfunc(dev))
1511                 info->port_attr.attr.mode = S_IRUGO;
1512         else {
1513                 info->port_attr.attr.mode = S_IRUGO | S_IWUSR;
1514                 info->port_attr.store     = set_port_type;
1515         }
1516         info->port_attr.show      = show_port_type;
1517         sysfs_attr_init(&info->port_attr.attr);
1518
1519         err = device_create_file(&dev->pdev->dev, &info->port_attr);
1520         if (err) {
1521                 mlx4_err(dev, "Failed to create file for port %d\n", port);
1522                 info->port = -1;
1523         }
1524
1525         return err;
1526 }
1527
1528 static void mlx4_cleanup_port_info(struct mlx4_port_info *info)
1529 {
1530         if (info->port < 0)
1531                 return;
1532
1533         device_remove_file(&info->dev->pdev->dev, &info->port_attr);
1534 }
1535
1536 static int mlx4_init_steering(struct mlx4_dev *dev)
1537 {
1538         struct mlx4_priv *priv = mlx4_priv(dev);
1539         int num_entries = dev->caps.num_ports;
1540         int i, j;
1541
1542         priv->steer = kzalloc(sizeof(struct mlx4_steer) * num_entries, GFP_KERNEL);
1543         if (!priv->steer)
1544                 return -ENOMEM;
1545
1546         for (i = 0; i < num_entries; i++)
1547                 for (j = 0; j < MLX4_NUM_STEERS; j++) {
1548                         INIT_LIST_HEAD(&priv->steer[i].promisc_qps[j]);
1549                         INIT_LIST_HEAD(&priv->steer[i].steer_entries[j]);
1550                 }
1551         return 0;
1552 }
1553
1554 static void mlx4_clear_steering(struct mlx4_dev *dev)
1555 {
1556         struct mlx4_priv *priv = mlx4_priv(dev);
1557         struct mlx4_steer_index *entry, *tmp_entry;
1558         struct mlx4_promisc_qp *pqp, *tmp_pqp;
1559         int num_entries = dev->caps.num_ports;
1560         int i, j;
1561
1562         for (i = 0; i < num_entries; i++) {
1563                 for (j = 0; j < MLX4_NUM_STEERS; j++) {
1564                         list_for_each_entry_safe(pqp, tmp_pqp,
1565                                                  &priv->steer[i].promisc_qps[j],
1566                                                  list) {
1567                                 list_del(&pqp->list);
1568                                 kfree(pqp);
1569                         }
1570                         list_for_each_entry_safe(entry, tmp_entry,
1571                                                  &priv->steer[i].steer_entries[j],
1572                                                  list) {
1573                                 list_del(&entry->list);
1574                                 list_for_each_entry_safe(pqp, tmp_pqp,
1575                                                          &entry->duplicates,
1576                                                          list) {
1577                                         list_del(&pqp->list);
1578                                         kfree(pqp);
1579                                 }
1580                                 kfree(entry);
1581                         }
1582                 }
1583         }
1584         kfree(priv->steer);
1585 }
1586
1587 static int extended_func_num(struct pci_dev *pdev)
1588 {
1589         return PCI_SLOT(pdev->devfn) * 8 + PCI_FUNC(pdev->devfn);
1590 }
1591
1592 #define MLX4_OWNER_BASE 0x8069c
1593 #define MLX4_OWNER_SIZE 4
1594
1595 static int mlx4_get_ownership(struct mlx4_dev *dev)
1596 {
1597         void __iomem *owner;
1598         u32 ret;
1599
1600         owner = ioremap(pci_resource_start(dev->pdev, 0) + MLX4_OWNER_BASE,
1601                         MLX4_OWNER_SIZE);
1602         if (!owner) {
1603                 mlx4_err(dev, "Failed to obtain ownership bit\n");
1604                 return -ENOMEM;
1605         }
1606
1607         ret = readl(owner);
1608         iounmap(owner);
1609         return (int) !!ret;
1610 }
1611
1612 static void mlx4_free_ownership(struct mlx4_dev *dev)
1613 {
1614         void __iomem *owner;
1615
1616         owner = ioremap(pci_resource_start(dev->pdev, 0) + MLX4_OWNER_BASE,
1617                         MLX4_OWNER_SIZE);
1618         if (!owner) {
1619                 mlx4_err(dev, "Failed to obtain ownership bit\n");
1620                 return;
1621         }
1622         writel(0, owner);
1623         msleep(1000);
1624         iounmap(owner);
1625 }
1626
1627 static int __mlx4_init_one(struct pci_dev *pdev, const struct pci_device_id *id)
1628 {
1629         struct mlx4_priv *priv;
1630         struct mlx4_dev *dev;
1631         int err;
1632         int port;
1633
1634         pr_info(DRV_NAME ": Initializing %s\n", pci_name(pdev));
1635
1636         err = pci_enable_device(pdev);
1637         if (err) {
1638                 dev_err(&pdev->dev, "Cannot enable PCI device, "
1639                         "aborting.\n");
1640                 return err;
1641         }
1642         if (num_vfs > MLX4_MAX_NUM_VF) {
1643                 printk(KERN_ERR "There are more VF's (%d) than allowed(%d)\n",
1644                        num_vfs, MLX4_MAX_NUM_VF);
1645                 return -EINVAL;
1646         }
1647         /*
1648          * Check for BARs.
1649          */
1650         if (((id == NULL) || !(id->driver_data & MLX4_VF)) &&
1651             !(pci_resource_flags(pdev, 0) & IORESOURCE_MEM)) {
1652                 dev_err(&pdev->dev, "Missing DCS, aborting."
1653                         "(id == 0X%p, id->driver_data: 0x%lx,"
1654                         " pci_resource_flags(pdev, 0):0x%lx)\n", id,
1655                         id ? id->driver_data : 0, pci_resource_flags(pdev, 0));
1656                 err = -ENODEV;
1657                 goto err_disable_pdev;
1658         }
1659         if (!(pci_resource_flags(pdev, 2) & IORESOURCE_MEM)) {
1660                 dev_err(&pdev->dev, "Missing UAR, aborting.\n");
1661                 err = -ENODEV;
1662                 goto err_disable_pdev;
1663         }
1664
1665         err = pci_request_regions(pdev, DRV_NAME);
1666         if (err) {
1667                 dev_err(&pdev->dev, "Couldn't get PCI resources, aborting\n");
1668                 goto err_disable_pdev;
1669         }
1670
1671         pci_set_master(pdev);
1672
1673         err = pci_set_dma_mask(pdev, DMA_BIT_MASK(64));
1674         if (err) {
1675                 dev_warn(&pdev->dev, "Warning: couldn't set 64-bit PCI DMA mask.\n");
1676                 err = pci_set_dma_mask(pdev, DMA_BIT_MASK(32));
1677                 if (err) {
1678                         dev_err(&pdev->dev, "Can't set PCI DMA mask, aborting.\n");
1679                         goto err_release_regions;
1680                 }
1681         }
1682         err = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(64));
1683         if (err) {
1684                 dev_warn(&pdev->dev, "Warning: couldn't set 64-bit "
1685                          "consistent PCI DMA mask.\n");
1686                 err = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(32));
1687                 if (err) {
1688                         dev_err(&pdev->dev, "Can't set consistent PCI DMA mask, "
1689                                 "aborting.\n");
1690                         goto err_release_regions;
1691                 }
1692         }
1693
1694         /* Allow large DMA segments, up to the firmware limit of 1 GB */
1695         dma_set_max_seg_size(&pdev->dev, 1024 * 1024 * 1024);
1696
1697         priv = kzalloc(sizeof *priv, GFP_KERNEL);
1698         if (!priv) {
1699                 dev_err(&pdev->dev, "Device struct alloc failed, "
1700                         "aborting.\n");
1701                 err = -ENOMEM;
1702                 goto err_release_regions;
1703         }
1704
1705         dev       = &priv->dev;
1706         dev->pdev = pdev;
1707         INIT_LIST_HEAD(&priv->ctx_list);
1708         spin_lock_init(&priv->ctx_lock);
1709
1710         mutex_init(&priv->port_mutex);
1711
1712         INIT_LIST_HEAD(&priv->pgdir_list);
1713         mutex_init(&priv->pgdir_mutex);
1714
1715         INIT_LIST_HEAD(&priv->bf_list);
1716         mutex_init(&priv->bf_mutex);
1717
1718         dev->rev_id = pdev->revision;
1719         /* Detect if this device is a virtual function */
1720         if (id && id->driver_data & MLX4_VF) {
1721                 /* When acting as pf, we normally skip vfs unless explicitly
1722                  * requested to probe them. */
1723                 if (num_vfs && extended_func_num(pdev) > probe_vf) {
1724                         mlx4_warn(dev, "Skipping virtual function:%d\n",
1725                                                 extended_func_num(pdev));
1726                         err = -ENODEV;
1727                         goto err_free_dev;
1728                 }
1729                 mlx4_warn(dev, "Detected virtual function - running in slave mode\n");
1730                 dev->flags |= MLX4_FLAG_SLAVE;
1731         } else {
1732                 /* We reset the device and enable SRIOV only for physical
1733                  * devices.  Try to claim ownership on the device;
1734                  * if already taken, skip -- do not allow multiple PFs */
1735                 err = mlx4_get_ownership(dev);
1736                 if (err) {
1737                         if (err < 0)
1738                                 goto err_free_dev;
1739                         else {
1740                                 mlx4_warn(dev, "Multiple PFs not yet supported."
1741                                           " Skipping PF.\n");
1742                                 err = -EINVAL;
1743                                 goto err_free_dev;
1744                         }
1745                 }
1746
1747                 if (num_vfs) {
1748                         mlx4_warn(dev, "Enabling sriov with:%d vfs\n", num_vfs);
1749                         err = pci_enable_sriov(pdev, num_vfs);
1750                         if (err) {
1751                                 mlx4_err(dev, "Failed to enable sriov,"
1752                                          "continuing without sriov enabled"
1753                                          " (err = %d).\n", err);
1754                                 num_vfs = 0;
1755                                 err = 0;
1756                         } else {
1757                                 mlx4_warn(dev, "Running in master mode\n");
1758                                 dev->flags |= MLX4_FLAG_SRIOV |
1759                                               MLX4_FLAG_MASTER;
1760                                 dev->num_vfs = num_vfs;
1761                         }
1762                 }
1763
1764                 /*
1765                  * Now reset the HCA before we touch the PCI capabilities or
1766                  * attempt a firmware command, since a boot ROM may have left
1767                  * the HCA in an undefined state.
1768                  */
1769                 err = mlx4_reset(dev);
1770                 if (err) {
1771                         mlx4_err(dev, "Failed to reset HCA, aborting.\n");
1772                         goto err_rel_own;
1773                 }
1774         }
1775
1776 slave_start:
1777         if (mlx4_cmd_init(dev)) {
1778                 mlx4_err(dev, "Failed to init command interface, aborting.\n");
1779                 goto err_sriov;
1780         }
1781
1782         /* In slave functions, the communication channel must be initialized
1783          * before posting commands. Also, init num_slaves before calling
1784          * mlx4_init_hca */
1785         if (mlx4_is_mfunc(dev)) {
1786                 if (mlx4_is_master(dev))
1787                         dev->num_slaves = MLX4_MAX_NUM_SLAVES;
1788                 else {
1789                         dev->num_slaves = 0;
1790                         if (mlx4_multi_func_init(dev)) {
1791                                 mlx4_err(dev, "Failed to init slave mfunc"
1792                                          " interface, aborting.\n");
1793                                 goto err_cmd;
1794                         }
1795                 }
1796         }
1797
1798         err = mlx4_init_hca(dev);
1799         if (err) {
1800                 if (err == -EACCES) {
1801                         /* Not primary Physical function
1802                          * Running in slave mode */
1803                         mlx4_cmd_cleanup(dev);
1804                         dev->flags |= MLX4_FLAG_SLAVE;
1805                         dev->flags &= ~MLX4_FLAG_MASTER;
1806                         goto slave_start;
1807                 } else
1808                         goto err_mfunc;
1809         }
1810
1811         /* In master functions, the communication channel must be initialized
1812          * after obtaining its address from fw */
1813         if (mlx4_is_master(dev)) {
1814                 if (mlx4_multi_func_init(dev)) {
1815                         mlx4_err(dev, "Failed to init master mfunc"
1816                                  "interface, aborting.\n");
1817                         goto err_close;
1818                 }
1819         }
1820
1821         err = mlx4_alloc_eq_table(dev);
1822         if (err)
1823                 goto err_master_mfunc;
1824
1825         priv->msix_ctl.pool_bm = 0;
1826         spin_lock_init(&priv->msix_ctl.pool_lock);
1827
1828         mlx4_enable_msi_x(dev);
1829         if ((mlx4_is_mfunc(dev)) &&
1830             !(dev->flags & MLX4_FLAG_MSI_X)) {
1831                 mlx4_err(dev, "INTx is not supported in multi-function mode."
1832                          " aborting.\n");
1833                 goto err_free_eq;
1834         }
1835
1836         if (!mlx4_is_slave(dev)) {
1837                 err = mlx4_init_steering(dev);
1838                 if (err)
1839                         goto err_free_eq;
1840         }
1841
1842         err = mlx4_setup_hca(dev);
1843         if (err == -EBUSY && (dev->flags & MLX4_FLAG_MSI_X) &&
1844             !mlx4_is_mfunc(dev)) {
1845                 dev->flags &= ~MLX4_FLAG_MSI_X;
1846                 pci_disable_msix(pdev);
1847                 err = mlx4_setup_hca(dev);
1848         }
1849
1850         if (err)
1851                 goto err_steer;
1852
1853         for (port = 1; port <= dev->caps.num_ports; port++) {
1854                 err = mlx4_init_port_info(dev, port);
1855                 if (err)
1856                         goto err_port;
1857         }
1858
1859         err = mlx4_register_device(dev);
1860         if (err)
1861                 goto err_port;
1862
1863         mlx4_sense_init(dev);
1864         mlx4_start_sense(dev);
1865
1866         pci_set_drvdata(pdev, dev);
1867
1868         return 0;
1869
1870 err_port:
1871         for (--port; port >= 1; --port)
1872                 mlx4_cleanup_port_info(&priv->port[port]);
1873
1874         mlx4_cleanup_counters_table(dev);
1875         mlx4_cleanup_mcg_table(dev);
1876         mlx4_cleanup_qp_table(dev);
1877         mlx4_cleanup_srq_table(dev);
1878         mlx4_cleanup_cq_table(dev);
1879         mlx4_cmd_use_polling(dev);
1880         mlx4_cleanup_eq_table(dev);
1881         mlx4_cleanup_mr_table(dev);
1882         mlx4_cleanup_xrcd_table(dev);
1883         mlx4_cleanup_pd_table(dev);
1884         mlx4_cleanup_uar_table(dev);
1885
1886 err_steer:
1887         if (!mlx4_is_slave(dev))
1888                 mlx4_clear_steering(dev);
1889
1890 err_free_eq:
1891         mlx4_free_eq_table(dev);
1892
1893 err_master_mfunc:
1894         if (mlx4_is_master(dev))
1895                 mlx4_multi_func_cleanup(dev);
1896
1897 err_close:
1898         if (dev->flags & MLX4_FLAG_MSI_X)
1899                 pci_disable_msix(pdev);
1900
1901         mlx4_close_hca(dev);
1902
1903 err_mfunc:
1904         if (mlx4_is_slave(dev))
1905                 mlx4_multi_func_cleanup(dev);
1906
1907 err_cmd:
1908         mlx4_cmd_cleanup(dev);
1909
1910 err_sriov:
1911         if (num_vfs && (dev->flags & MLX4_FLAG_SRIOV))
1912                 pci_disable_sriov(pdev);
1913
1914 err_rel_own:
1915         if (!mlx4_is_slave(dev))
1916                 mlx4_free_ownership(dev);
1917
1918 err_free_dev:
1919         kfree(priv);
1920
1921 err_release_regions:
1922         pci_release_regions(pdev);
1923
1924 err_disable_pdev:
1925         pci_disable_device(pdev);
1926         pci_set_drvdata(pdev, NULL);
1927         return err;
1928 }
1929
1930 static int __devinit mlx4_init_one(struct pci_dev *pdev,
1931                                    const struct pci_device_id *id)
1932 {
1933         printk_once(KERN_INFO "%s", mlx4_version);
1934
1935         return __mlx4_init_one(pdev, id);
1936 }
1937
1938 static void mlx4_remove_one(struct pci_dev *pdev)
1939 {
1940         struct mlx4_dev  *dev  = pci_get_drvdata(pdev);
1941         struct mlx4_priv *priv = mlx4_priv(dev);
1942         int p;
1943
1944         if (dev) {
1945                 /* in SRIOV it is not allowed to unload the pf's
1946                  * driver while there are alive vf's */
1947                 if (mlx4_is_master(dev)) {
1948                         if (mlx4_how_many_lives_vf(dev))
1949                                 printk(KERN_ERR "Removing PF when there are assigned VF's !!!\n");
1950                 }
1951                 mlx4_stop_sense(dev);
1952                 mlx4_unregister_device(dev);
1953
1954                 for (p = 1; p <= dev->caps.num_ports; p++) {
1955                         mlx4_cleanup_port_info(&priv->port[p]);
1956                         mlx4_CLOSE_PORT(dev, p);
1957                 }
1958
1959                 mlx4_cleanup_counters_table(dev);
1960                 mlx4_cleanup_mcg_table(dev);
1961                 mlx4_cleanup_qp_table(dev);
1962                 mlx4_cleanup_srq_table(dev);
1963                 mlx4_cleanup_cq_table(dev);
1964                 mlx4_cmd_use_polling(dev);
1965                 mlx4_cleanup_eq_table(dev);
1966                 mlx4_cleanup_mr_table(dev);
1967                 mlx4_cleanup_xrcd_table(dev);
1968                 mlx4_cleanup_pd_table(dev);
1969
1970                 if (mlx4_is_master(dev))
1971                         mlx4_free_resource_tracker(dev);
1972
1973                 iounmap(priv->kar);
1974                 mlx4_uar_free(dev, &priv->driver_uar);
1975                 mlx4_cleanup_uar_table(dev);
1976                 if (!mlx4_is_slave(dev))
1977                         mlx4_clear_steering(dev);
1978                 mlx4_free_eq_table(dev);
1979                 if (mlx4_is_master(dev))
1980                         mlx4_multi_func_cleanup(dev);
1981                 mlx4_close_hca(dev);
1982                 if (mlx4_is_slave(dev))
1983                         mlx4_multi_func_cleanup(dev);
1984                 mlx4_cmd_cleanup(dev);
1985
1986                 if (dev->flags & MLX4_FLAG_MSI_X)
1987                         pci_disable_msix(pdev);
1988                 if (num_vfs && (dev->flags & MLX4_FLAG_SRIOV)) {
1989                         mlx4_warn(dev, "Disabling sriov\n");
1990                         pci_disable_sriov(pdev);
1991                 }
1992
1993                 if (!mlx4_is_slave(dev))
1994                         mlx4_free_ownership(dev);
1995                 kfree(priv);
1996                 pci_release_regions(pdev);
1997                 pci_disable_device(pdev);
1998                 pci_set_drvdata(pdev, NULL);
1999         }
2000 }
2001
2002 int mlx4_restart_one(struct pci_dev *pdev)
2003 {
2004         mlx4_remove_one(pdev);
2005         return __mlx4_init_one(pdev, NULL);
2006 }
2007
2008 static DEFINE_PCI_DEVICE_TABLE(mlx4_pci_table) = {
2009         /* MT25408 "Hermon" SDR */
2010         { PCI_VDEVICE(MELLANOX, 0x6340), 0 },
2011         /* MT25408 "Hermon" DDR */
2012         { PCI_VDEVICE(MELLANOX, 0x634a), 0 },
2013         /* MT25408 "Hermon" QDR */
2014         { PCI_VDEVICE(MELLANOX, 0x6354), 0 },
2015         /* MT25408 "Hermon" DDR PCIe gen2 */
2016         { PCI_VDEVICE(MELLANOX, 0x6732), 0 },
2017         /* MT25408 "Hermon" QDR PCIe gen2 */
2018         { PCI_VDEVICE(MELLANOX, 0x673c), 0 },
2019         /* MT25408 "Hermon" EN 10GigE */
2020         { PCI_VDEVICE(MELLANOX, 0x6368), 0 },
2021         /* MT25408 "Hermon" EN 10GigE PCIe gen2 */
2022         { PCI_VDEVICE(MELLANOX, 0x6750), 0 },
2023         /* MT25458 ConnectX EN 10GBASE-T 10GigE */
2024         { PCI_VDEVICE(MELLANOX, 0x6372), 0 },
2025         /* MT25458 ConnectX EN 10GBASE-T+Gen2 10GigE */
2026         { PCI_VDEVICE(MELLANOX, 0x675a), 0 },
2027         /* MT26468 ConnectX EN 10GigE PCIe gen2*/
2028         { PCI_VDEVICE(MELLANOX, 0x6764), 0 },
2029         /* MT26438 ConnectX EN 40GigE PCIe gen2 5GT/s */
2030         { PCI_VDEVICE(MELLANOX, 0x6746), 0 },
2031         /* MT26478 ConnectX2 40GigE PCIe gen2 */
2032         { PCI_VDEVICE(MELLANOX, 0x676e), 0 },
2033         /* MT25400 Family [ConnectX-2 Virtual Function] */
2034         { PCI_VDEVICE(MELLANOX, 0x1002), MLX4_VF },
2035         /* MT27500 Family [ConnectX-3] */
2036         { PCI_VDEVICE(MELLANOX, 0x1003), 0 },
2037         /* MT27500 Family [ConnectX-3 Virtual Function] */
2038         { PCI_VDEVICE(MELLANOX, 0x1004), MLX4_VF },
2039         { PCI_VDEVICE(MELLANOX, 0x1005), 0 }, /* MT27510 Family */
2040         { PCI_VDEVICE(MELLANOX, 0x1006), 0 }, /* MT27511 Family */
2041         { PCI_VDEVICE(MELLANOX, 0x1007), 0 }, /* MT27520 Family */
2042         { PCI_VDEVICE(MELLANOX, 0x1008), 0 }, /* MT27521 Family */
2043         { PCI_VDEVICE(MELLANOX, 0x1009), 0 }, /* MT27530 Family */
2044         { PCI_VDEVICE(MELLANOX, 0x100a), 0 }, /* MT27531 Family */
2045         { PCI_VDEVICE(MELLANOX, 0x100b), 0 }, /* MT27540 Family */
2046         { PCI_VDEVICE(MELLANOX, 0x100c), 0 }, /* MT27541 Family */
2047         { PCI_VDEVICE(MELLANOX, 0x100d), 0 }, /* MT27550 Family */
2048         { PCI_VDEVICE(MELLANOX, 0x100e), 0 }, /* MT27551 Family */
2049         { PCI_VDEVICE(MELLANOX, 0x100f), 0 }, /* MT27560 Family */
2050         { PCI_VDEVICE(MELLANOX, 0x1010), 0 }, /* MT27561 Family */
2051         { 0, }
2052 };
2053
2054 MODULE_DEVICE_TABLE(pci, mlx4_pci_table);
2055
2056 static struct pci_driver mlx4_driver = {
2057         .name           = DRV_NAME,
2058         .id_table       = mlx4_pci_table,
2059         .probe          = mlx4_init_one,
2060         .remove         = __devexit_p(mlx4_remove_one)
2061 };
2062
2063 static int __init mlx4_verify_params(void)
2064 {
2065         if ((log_num_mac < 0) || (log_num_mac > 7)) {
2066                 pr_warning("mlx4_core: bad num_mac: %d\n", log_num_mac);
2067                 return -1;
2068         }
2069
2070         if (log_num_vlan != 0)
2071                 pr_warning("mlx4_core: log_num_vlan - obsolete module param, using %d\n",
2072                            MLX4_LOG_NUM_VLANS);
2073
2074         if ((log_mtts_per_seg < 1) || (log_mtts_per_seg > 7)) {
2075                 pr_warning("mlx4_core: bad log_mtts_per_seg: %d\n", log_mtts_per_seg);
2076                 return -1;
2077         }
2078
2079         /* Check if module param for ports type has legal combination */
2080         if (port_type_array[0] == false && port_type_array[1] == true) {
2081                 printk(KERN_WARNING "Module parameter configuration ETH/IB is not supported. Switching to default configuration IB/IB\n");
2082                 port_type_array[0] = true;
2083         }
2084
2085         return 0;
2086 }
2087
2088 static int __init mlx4_init(void)
2089 {
2090         int ret;
2091
2092         if (mlx4_verify_params())
2093                 return -EINVAL;
2094
2095         mlx4_catas_init();
2096
2097         mlx4_wq = create_singlethread_workqueue("mlx4");
2098         if (!mlx4_wq)
2099                 return -ENOMEM;
2100
2101         ret = pci_register_driver(&mlx4_driver);
2102         return ret < 0 ? ret : 0;
2103 }
2104
2105 static void __exit mlx4_cleanup(void)
2106 {
2107         pci_unregister_driver(&mlx4_driver);
2108         destroy_workqueue(mlx4_wq);
2109 }
2110
2111 module_init(mlx4_init);
2112 module_exit(mlx4_cleanup);