2 * Copyright (c) 2004, 2005 Topspin Communications. All rights reserved.
3 * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved.
4 * Copyright (c) 2005 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>
42 #include <linux/mlx4/device.h>
43 #include <linux/mlx4/doorbell.h>
49 MODULE_AUTHOR("Roland Dreier");
50 MODULE_DESCRIPTION("Mellanox ConnectX HCA low-level driver");
51 MODULE_LICENSE("Dual BSD/GPL");
52 MODULE_VERSION(DRV_VERSION);
54 #ifdef CONFIG_MLX4_DEBUG
56 int mlx4_debug_level = 0;
57 module_param_named(debug_level, mlx4_debug_level, int, 0644);
58 MODULE_PARM_DESC(debug_level, "Enable debug tracing if > 0");
60 #endif /* CONFIG_MLX4_DEBUG */
65 module_param(msi_x, int, 0444);
66 MODULE_PARM_DESC(msi_x, "attempt to use MSI-X if nonzero");
68 #else /* CONFIG_PCI_MSI */
72 #endif /* CONFIG_PCI_MSI */
74 static const char mlx4_version[] __devinitdata =
75 DRV_NAME ": Mellanox ConnectX core driver v"
76 DRV_VERSION " (" DRV_RELDATE ")\n";
78 static struct mlx4_profile default_profile = {
81 .rdmarc_per_qp = 1 << 4,
88 static int __devinit mlx4_dev_cap(struct mlx4_dev *dev, struct mlx4_dev_cap *dev_cap)
93 err = mlx4_QUERY_DEV_CAP(dev, dev_cap);
95 mlx4_err(dev, "QUERY_DEV_CAP command failed, aborting.\n");
99 if (dev_cap->min_page_sz > PAGE_SIZE) {
100 mlx4_err(dev, "HCA minimum page size of %d bigger than "
101 "kernel PAGE_SIZE of %ld, aborting.\n",
102 dev_cap->min_page_sz, PAGE_SIZE);
105 if (dev_cap->num_ports > MLX4_MAX_PORTS) {
106 mlx4_err(dev, "HCA has %d ports, but we only support %d, "
108 dev_cap->num_ports, MLX4_MAX_PORTS);
112 if (dev_cap->uar_size > pci_resource_len(dev->pdev, 2)) {
113 mlx4_err(dev, "HCA reported UAR size of 0x%x bigger than "
114 "PCI resource 2 size of 0x%llx, aborting.\n",
116 (unsigned long long) pci_resource_len(dev->pdev, 2));
120 dev->caps.num_ports = dev_cap->num_ports;
121 for (i = 1; i <= dev->caps.num_ports; ++i) {
122 dev->caps.vl_cap[i] = dev_cap->max_vl[i];
123 dev->caps.mtu_cap[i] = dev_cap->max_mtu[i];
124 dev->caps.gid_table_len[i] = dev_cap->max_gids[i];
125 dev->caps.pkey_table_len[i] = dev_cap->max_pkeys[i];
126 dev->caps.port_width_cap[i] = dev_cap->max_port_width[i];
129 dev->caps.num_uars = dev_cap->uar_size / PAGE_SIZE;
130 dev->caps.local_ca_ack_delay = dev_cap->local_ca_ack_delay;
131 dev->caps.bf_reg_size = dev_cap->bf_reg_size;
132 dev->caps.bf_regs_per_page = dev_cap->bf_regs_per_page;
133 dev->caps.max_sq_sg = dev_cap->max_sq_sg;
134 dev->caps.max_rq_sg = dev_cap->max_rq_sg;
135 dev->caps.max_wqes = dev_cap->max_qp_sz;
136 dev->caps.max_qp_init_rdma = dev_cap->max_requester_per_qp;
137 dev->caps.reserved_qps = dev_cap->reserved_qps;
138 dev->caps.max_srq_wqes = dev_cap->max_srq_sz;
139 dev->caps.max_srq_sge = dev_cap->max_rq_sg - 1;
140 dev->caps.reserved_srqs = dev_cap->reserved_srqs;
141 dev->caps.max_sq_desc_sz = dev_cap->max_sq_desc_sz;
142 dev->caps.max_rq_desc_sz = dev_cap->max_rq_desc_sz;
143 dev->caps.num_qp_per_mgm = MLX4_QP_PER_MGM;
145 * Subtract 1 from the limit because we need to allocate a
146 * spare CQE so the HCA HW can tell the difference between an
147 * empty CQ and a full CQ.
149 dev->caps.max_cqes = dev_cap->max_cq_sz - 1;
150 dev->caps.reserved_cqs = dev_cap->reserved_cqs;
151 dev->caps.reserved_eqs = dev_cap->reserved_eqs;
152 dev->caps.reserved_mtts = DIV_ROUND_UP(dev_cap->reserved_mtts,
153 MLX4_MTT_ENTRY_PER_SEG);
154 dev->caps.reserved_mrws = dev_cap->reserved_mrws;
155 dev->caps.reserved_uars = dev_cap->reserved_uars;
156 dev->caps.reserved_pds = dev_cap->reserved_pds;
157 dev->caps.mtt_entry_sz = MLX4_MTT_ENTRY_PER_SEG * dev_cap->mtt_entry_sz;
158 dev->caps.max_msg_sz = dev_cap->max_msg_sz;
159 dev->caps.page_size_cap = ~(u32) (dev_cap->min_page_sz - 1);
160 dev->caps.flags = dev_cap->flags;
161 dev->caps.stat_rate_support = dev_cap->stat_rate_support;
166 static int __devinit mlx4_load_fw(struct mlx4_dev *dev)
168 struct mlx4_priv *priv = mlx4_priv(dev);
171 priv->fw.fw_icm = mlx4_alloc_icm(dev, priv->fw.fw_pages,
172 GFP_HIGHUSER | __GFP_NOWARN, 0);
173 if (!priv->fw.fw_icm) {
174 mlx4_err(dev, "Couldn't allocate FW area, aborting.\n");
178 err = mlx4_MAP_FA(dev, priv->fw.fw_icm);
180 mlx4_err(dev, "MAP_FA command failed, aborting.\n");
184 err = mlx4_RUN_FW(dev);
186 mlx4_err(dev, "RUN_FW command failed, aborting.\n");
196 mlx4_free_icm(dev, priv->fw.fw_icm, 0);
200 static int __devinit mlx4_init_cmpt_table(struct mlx4_dev *dev, u64 cmpt_base,
203 struct mlx4_priv *priv = mlx4_priv(dev);
206 err = mlx4_init_icm_table(dev, &priv->qp_table.cmpt_table,
208 ((u64) (MLX4_CMPT_TYPE_QP *
209 cmpt_entry_sz) << MLX4_CMPT_SHIFT),
210 cmpt_entry_sz, dev->caps.num_qps,
211 dev->caps.reserved_qps, 0, 0);
215 err = mlx4_init_icm_table(dev, &priv->srq_table.cmpt_table,
217 ((u64) (MLX4_CMPT_TYPE_SRQ *
218 cmpt_entry_sz) << MLX4_CMPT_SHIFT),
219 cmpt_entry_sz, dev->caps.num_srqs,
220 dev->caps.reserved_srqs, 0, 0);
224 err = mlx4_init_icm_table(dev, &priv->cq_table.cmpt_table,
226 ((u64) (MLX4_CMPT_TYPE_CQ *
227 cmpt_entry_sz) << MLX4_CMPT_SHIFT),
228 cmpt_entry_sz, dev->caps.num_cqs,
229 dev->caps.reserved_cqs, 0, 0);
233 err = mlx4_init_icm_table(dev, &priv->eq_table.cmpt_table,
235 ((u64) (MLX4_CMPT_TYPE_EQ *
236 cmpt_entry_sz) << MLX4_CMPT_SHIFT),
238 roundup_pow_of_two(MLX4_NUM_EQ +
239 dev->caps.reserved_eqs),
240 MLX4_NUM_EQ + dev->caps.reserved_eqs, 0, 0);
247 mlx4_cleanup_icm_table(dev, &priv->cq_table.cmpt_table);
250 mlx4_cleanup_icm_table(dev, &priv->srq_table.cmpt_table);
253 mlx4_cleanup_icm_table(dev, &priv->qp_table.cmpt_table);
259 static int __devinit mlx4_init_icm(struct mlx4_dev *dev,
260 struct mlx4_dev_cap *dev_cap,
261 struct mlx4_init_hca_param *init_hca,
264 struct mlx4_priv *priv = mlx4_priv(dev);
268 err = mlx4_SET_ICM_SIZE(dev, icm_size, &aux_pages);
270 mlx4_err(dev, "SET_ICM_SIZE command failed, aborting.\n");
274 mlx4_dbg(dev, "%lld KB of HCA context requires %lld KB aux memory.\n",
275 (unsigned long long) icm_size >> 10,
276 (unsigned long long) aux_pages << 2);
278 priv->fw.aux_icm = mlx4_alloc_icm(dev, aux_pages,
279 GFP_HIGHUSER | __GFP_NOWARN, 0);
280 if (!priv->fw.aux_icm) {
281 mlx4_err(dev, "Couldn't allocate aux memory, aborting.\n");
285 err = mlx4_MAP_ICM_AUX(dev, priv->fw.aux_icm);
287 mlx4_err(dev, "MAP_ICM_AUX command failed, aborting.\n");
291 err = mlx4_init_cmpt_table(dev, init_hca->cmpt_base, dev_cap->cmpt_entry_sz);
293 mlx4_err(dev, "Failed to map cMPT context memory, aborting.\n");
297 err = mlx4_map_eq_icm(dev, init_hca->eqc_base);
299 mlx4_err(dev, "Failed to map EQ context memory, aborting.\n");
304 * Reserved MTT entries must be aligned up to a cacheline
305 * boundary, since the FW will write to them, while the driver
306 * writes to all other MTT entries. (The variable
307 * dev->caps.mtt_entry_sz below is really the MTT segment
308 * size, not the raw entry size)
310 dev->caps.reserved_mtts =
311 ALIGN(dev->caps.reserved_mtts * dev->caps.mtt_entry_sz,
312 dma_get_cache_alignment()) / dev->caps.mtt_entry_sz;
314 err = mlx4_init_icm_table(dev, &priv->mr_table.mtt_table,
316 dev->caps.mtt_entry_sz,
317 dev->caps.num_mtt_segs,
318 dev->caps.reserved_mtts, 1, 0);
320 mlx4_err(dev, "Failed to map MTT context memory, aborting.\n");
324 err = mlx4_init_icm_table(dev, &priv->mr_table.dmpt_table,
326 dev_cap->dmpt_entry_sz,
328 dev->caps.reserved_mrws, 1, 1);
330 mlx4_err(dev, "Failed to map dMPT context memory, aborting.\n");
334 err = mlx4_init_icm_table(dev, &priv->qp_table.qp_table,
336 dev_cap->qpc_entry_sz,
338 dev->caps.reserved_qps, 0, 0);
340 mlx4_err(dev, "Failed to map QP context memory, aborting.\n");
344 err = mlx4_init_icm_table(dev, &priv->qp_table.auxc_table,
346 dev_cap->aux_entry_sz,
348 dev->caps.reserved_qps, 0, 0);
350 mlx4_err(dev, "Failed to map AUXC context memory, aborting.\n");
354 err = mlx4_init_icm_table(dev, &priv->qp_table.altc_table,
356 dev_cap->altc_entry_sz,
358 dev->caps.reserved_qps, 0, 0);
360 mlx4_err(dev, "Failed to map ALTC context memory, aborting.\n");
364 err = mlx4_init_icm_table(dev, &priv->qp_table.rdmarc_table,
365 init_hca->rdmarc_base,
366 dev_cap->rdmarc_entry_sz << priv->qp_table.rdmarc_shift,
368 dev->caps.reserved_qps, 0, 0);
370 mlx4_err(dev, "Failed to map RDMARC context memory, aborting\n");
374 err = mlx4_init_icm_table(dev, &priv->cq_table.table,
376 dev_cap->cqc_entry_sz,
378 dev->caps.reserved_cqs, 0, 0);
380 mlx4_err(dev, "Failed to map CQ context memory, aborting.\n");
381 goto err_unmap_rdmarc;
384 err = mlx4_init_icm_table(dev, &priv->srq_table.table,
386 dev_cap->srq_entry_sz,
388 dev->caps.reserved_srqs, 0, 0);
390 mlx4_err(dev, "Failed to map SRQ context memory, aborting.\n");
395 * It's not strictly required, but for simplicity just map the
396 * whole multicast group table now. The table isn't very big
397 * and it's a lot easier than trying to track ref counts.
399 err = mlx4_init_icm_table(dev, &priv->mcg_table.table,
400 init_hca->mc_base, MLX4_MGM_ENTRY_SIZE,
401 dev->caps.num_mgms + dev->caps.num_amgms,
402 dev->caps.num_mgms + dev->caps.num_amgms,
405 mlx4_err(dev, "Failed to map MCG context memory, aborting.\n");
412 mlx4_cleanup_icm_table(dev, &priv->srq_table.table);
415 mlx4_cleanup_icm_table(dev, &priv->cq_table.table);
418 mlx4_cleanup_icm_table(dev, &priv->qp_table.rdmarc_table);
421 mlx4_cleanup_icm_table(dev, &priv->qp_table.altc_table);
424 mlx4_cleanup_icm_table(dev, &priv->qp_table.auxc_table);
427 mlx4_cleanup_icm_table(dev, &priv->qp_table.qp_table);
430 mlx4_cleanup_icm_table(dev, &priv->mr_table.dmpt_table);
433 mlx4_cleanup_icm_table(dev, &priv->mr_table.mtt_table);
436 mlx4_unmap_eq_icm(dev);
439 mlx4_cleanup_icm_table(dev, &priv->eq_table.cmpt_table);
440 mlx4_cleanup_icm_table(dev, &priv->cq_table.cmpt_table);
441 mlx4_cleanup_icm_table(dev, &priv->srq_table.cmpt_table);
442 mlx4_cleanup_icm_table(dev, &priv->qp_table.cmpt_table);
445 mlx4_UNMAP_ICM_AUX(dev);
448 mlx4_free_icm(dev, priv->fw.aux_icm, 0);
453 static void mlx4_free_icms(struct mlx4_dev *dev)
455 struct mlx4_priv *priv = mlx4_priv(dev);
457 mlx4_cleanup_icm_table(dev, &priv->mcg_table.table);
458 mlx4_cleanup_icm_table(dev, &priv->srq_table.table);
459 mlx4_cleanup_icm_table(dev, &priv->cq_table.table);
460 mlx4_cleanup_icm_table(dev, &priv->qp_table.rdmarc_table);
461 mlx4_cleanup_icm_table(dev, &priv->qp_table.altc_table);
462 mlx4_cleanup_icm_table(dev, &priv->qp_table.auxc_table);
463 mlx4_cleanup_icm_table(dev, &priv->qp_table.qp_table);
464 mlx4_cleanup_icm_table(dev, &priv->mr_table.dmpt_table);
465 mlx4_cleanup_icm_table(dev, &priv->mr_table.mtt_table);
466 mlx4_cleanup_icm_table(dev, &priv->eq_table.cmpt_table);
467 mlx4_cleanup_icm_table(dev, &priv->cq_table.cmpt_table);
468 mlx4_cleanup_icm_table(dev, &priv->srq_table.cmpt_table);
469 mlx4_cleanup_icm_table(dev, &priv->qp_table.cmpt_table);
470 mlx4_unmap_eq_icm(dev);
472 mlx4_UNMAP_ICM_AUX(dev);
473 mlx4_free_icm(dev, priv->fw.aux_icm, 0);
476 static void mlx4_close_hca(struct mlx4_dev *dev)
478 mlx4_CLOSE_HCA(dev, 0);
481 mlx4_free_icm(dev, mlx4_priv(dev)->fw.fw_icm, 0);
484 static int __devinit mlx4_init_hca(struct mlx4_dev *dev)
486 struct mlx4_priv *priv = mlx4_priv(dev);
487 struct mlx4_adapter adapter;
488 struct mlx4_dev_cap dev_cap;
489 struct mlx4_profile profile;
490 struct mlx4_init_hca_param init_hca;
494 err = mlx4_QUERY_FW(dev);
496 mlx4_err(dev, "QUERY_FW command failed, aborting.\n");
500 err = mlx4_load_fw(dev);
502 mlx4_err(dev, "Failed to start FW, aborting.\n");
506 err = mlx4_dev_cap(dev, &dev_cap);
508 mlx4_err(dev, "QUERY_DEV_CAP command failed, aborting.\n");
512 profile = default_profile;
514 icm_size = mlx4_make_profile(dev, &profile, &dev_cap, &init_hca);
515 if ((long long) icm_size < 0) {
520 init_hca.log_uar_sz = ilog2(dev->caps.num_uars);
522 err = mlx4_init_icm(dev, &dev_cap, &init_hca, icm_size);
526 err = mlx4_INIT_HCA(dev, &init_hca);
528 mlx4_err(dev, "INIT_HCA command failed, aborting.\n");
532 err = mlx4_QUERY_ADAPTER(dev, &adapter);
534 mlx4_err(dev, "QUERY_ADAPTER command failed, aborting.\n");
538 priv->eq_table.inta_pin = adapter.inta_pin;
539 dev->rev_id = adapter.revision_id;
540 memcpy(dev->board_id, adapter.board_id, sizeof dev->board_id);
552 mlx4_free_icm(dev, priv->fw.fw_icm, 0);
557 static int __devinit mlx4_setup_hca(struct mlx4_dev *dev)
559 struct mlx4_priv *priv = mlx4_priv(dev);
562 err = mlx4_init_uar_table(dev);
564 mlx4_err(dev, "Failed to initialize "
565 "user access region table, aborting.\n");
569 err = mlx4_uar_alloc(dev, &priv->driver_uar);
571 mlx4_err(dev, "Failed to allocate driver access region, "
573 goto err_uar_table_free;
576 priv->kar = ioremap(priv->driver_uar.pfn << PAGE_SHIFT, PAGE_SIZE);
578 mlx4_err(dev, "Couldn't map kernel access region, "
584 err = mlx4_init_pd_table(dev);
586 mlx4_err(dev, "Failed to initialize "
587 "protection domain table, aborting.\n");
591 err = mlx4_init_mr_table(dev);
593 mlx4_err(dev, "Failed to initialize "
594 "memory region table, aborting.\n");
595 goto err_pd_table_free;
598 err = mlx4_init_eq_table(dev);
600 mlx4_err(dev, "Failed to initialize "
601 "event queue table, aborting.\n");
602 goto err_mr_table_free;
605 err = mlx4_cmd_use_events(dev);
607 mlx4_err(dev, "Failed to switch to event-driven "
608 "firmware commands, aborting.\n");
609 goto err_eq_table_free;
614 if (dev->flags & MLX4_FLAG_MSI_X) {
615 mlx4_warn(dev, "NOP command failed to generate MSI-X "
616 "interrupt IRQ %d).\n",
617 priv->eq_table.eq[MLX4_EQ_ASYNC].irq);
618 mlx4_warn(dev, "Trying again without MSI-X.\n");
620 mlx4_err(dev, "NOP command failed to generate interrupt "
621 "(IRQ %d), aborting.\n",
622 priv->eq_table.eq[MLX4_EQ_ASYNC].irq);
623 mlx4_err(dev, "BIOS or ACPI interrupt routing problem?\n");
629 mlx4_dbg(dev, "NOP command IRQ test passed\n");
631 err = mlx4_init_cq_table(dev);
633 mlx4_err(dev, "Failed to initialize "
634 "completion queue table, aborting.\n");
638 err = mlx4_init_srq_table(dev);
640 mlx4_err(dev, "Failed to initialize "
641 "shared receive queue table, aborting.\n");
642 goto err_cq_table_free;
645 err = mlx4_init_qp_table(dev);
647 mlx4_err(dev, "Failed to initialize "
648 "queue pair table, aborting.\n");
649 goto err_srq_table_free;
652 err = mlx4_init_mcg_table(dev);
654 mlx4_err(dev, "Failed to initialize "
655 "multicast group table, aborting.\n");
656 goto err_qp_table_free;
662 mlx4_cleanup_qp_table(dev);
665 mlx4_cleanup_srq_table(dev);
668 mlx4_cleanup_cq_table(dev);
671 mlx4_cmd_use_polling(dev);
674 mlx4_cleanup_eq_table(dev);
677 mlx4_cleanup_mr_table(dev);
680 mlx4_cleanup_pd_table(dev);
686 mlx4_uar_free(dev, &priv->driver_uar);
689 mlx4_cleanup_uar_table(dev);
693 static void __devinit mlx4_enable_msi_x(struct mlx4_dev *dev)
695 struct mlx4_priv *priv = mlx4_priv(dev);
696 struct msix_entry entries[MLX4_NUM_EQ];
701 for (i = 0; i < MLX4_NUM_EQ; ++i)
702 entries[i].entry = i;
704 err = pci_enable_msix(dev->pdev, entries, ARRAY_SIZE(entries));
707 mlx4_info(dev, "Only %d MSI-X vectors available, "
708 "not using MSI-X\n", err);
712 for (i = 0; i < MLX4_NUM_EQ; ++i)
713 priv->eq_table.eq[i].irq = entries[i].vector;
715 dev->flags |= MLX4_FLAG_MSI_X;
720 for (i = 0; i < MLX4_NUM_EQ; ++i)
721 priv->eq_table.eq[i].irq = dev->pdev->irq;
724 static int __devinit mlx4_init_one(struct pci_dev *pdev,
725 const struct pci_device_id *id)
727 static int mlx4_version_printed;
728 struct mlx4_priv *priv;
729 struct mlx4_dev *dev;
732 if (!mlx4_version_printed) {
733 printk(KERN_INFO "%s", mlx4_version);
734 ++mlx4_version_printed;
737 printk(KERN_INFO PFX "Initializing %s\n",
740 err = pci_enable_device(pdev);
742 dev_err(&pdev->dev, "Cannot enable PCI device, "
748 * Check for BARs. We expect 0: 1MB, 2: 8MB, 4: DDR (may not
751 if (!(pci_resource_flags(pdev, 0) & IORESOURCE_MEM) ||
752 pci_resource_len(pdev, 0) != 1 << 20) {
753 dev_err(&pdev->dev, "Missing DCS, aborting.\n");
755 goto err_disable_pdev;
757 if (!(pci_resource_flags(pdev, 2) & IORESOURCE_MEM)) {
758 dev_err(&pdev->dev, "Missing UAR, aborting.\n");
760 goto err_disable_pdev;
763 err = pci_request_region(pdev, 0, DRV_NAME);
765 dev_err(&pdev->dev, "Cannot request control region, aborting.\n");
766 goto err_disable_pdev;
769 err = pci_request_region(pdev, 2, DRV_NAME);
771 dev_err(&pdev->dev, "Cannot request UAR region, aborting.\n");
772 goto err_release_bar0;
775 pci_set_master(pdev);
777 err = pci_set_dma_mask(pdev, DMA_64BIT_MASK);
779 dev_warn(&pdev->dev, "Warning: couldn't set 64-bit PCI DMA mask.\n");
780 err = pci_set_dma_mask(pdev, DMA_32BIT_MASK);
782 dev_err(&pdev->dev, "Can't set PCI DMA mask, aborting.\n");
783 goto err_release_bar2;
786 err = pci_set_consistent_dma_mask(pdev, DMA_64BIT_MASK);
788 dev_warn(&pdev->dev, "Warning: couldn't set 64-bit "
789 "consistent PCI DMA mask.\n");
790 err = pci_set_consistent_dma_mask(pdev, DMA_32BIT_MASK);
792 dev_err(&pdev->dev, "Can't set consistent PCI DMA mask, "
794 goto err_release_bar2;
798 priv = kzalloc(sizeof *priv, GFP_KERNEL);
800 dev_err(&pdev->dev, "Device struct alloc failed, "
803 goto err_release_bar2;
808 INIT_LIST_HEAD(&priv->ctx_list);
809 spin_lock_init(&priv->ctx_lock);
812 * Now reset the HCA before we touch the PCI capabilities or
813 * attempt a firmware command, since a boot ROM may have left
814 * the HCA in an undefined state.
816 err = mlx4_reset(dev);
818 mlx4_err(dev, "Failed to reset HCA, aborting.\n");
822 if (mlx4_cmd_init(dev)) {
823 mlx4_err(dev, "Failed to init command interface, aborting.\n");
827 err = mlx4_init_hca(dev);
831 mlx4_enable_msi_x(dev);
833 err = mlx4_setup_hca(dev);
834 if (err == -EBUSY && (dev->flags & MLX4_FLAG_MSI_X)) {
835 dev->flags &= ~MLX4_FLAG_MSI_X;
836 pci_disable_msix(pdev);
837 err = mlx4_setup_hca(dev);
843 err = mlx4_register_device(dev);
847 pci_set_drvdata(pdev, dev);
852 mlx4_cleanup_mcg_table(dev);
853 mlx4_cleanup_qp_table(dev);
854 mlx4_cleanup_srq_table(dev);
855 mlx4_cleanup_cq_table(dev);
856 mlx4_cmd_use_polling(dev);
857 mlx4_cleanup_eq_table(dev);
858 mlx4_cleanup_mr_table(dev);
859 mlx4_cleanup_pd_table(dev);
860 mlx4_cleanup_uar_table(dev);
863 if (dev->flags & MLX4_FLAG_MSI_X)
864 pci_disable_msix(pdev);
869 mlx4_cmd_cleanup(dev);
875 pci_release_region(pdev, 2);
878 pci_release_region(pdev, 0);
881 pci_disable_device(pdev);
882 pci_set_drvdata(pdev, NULL);
886 static void __devexit mlx4_remove_one(struct pci_dev *pdev)
888 struct mlx4_dev *dev = pci_get_drvdata(pdev);
889 struct mlx4_priv *priv = mlx4_priv(dev);
893 mlx4_unregister_device(dev);
895 for (p = 1; p <= dev->caps.num_ports; ++p)
896 mlx4_CLOSE_PORT(dev, p);
898 mlx4_cleanup_mcg_table(dev);
899 mlx4_cleanup_qp_table(dev);
900 mlx4_cleanup_srq_table(dev);
901 mlx4_cleanup_cq_table(dev);
902 mlx4_cmd_use_polling(dev);
903 mlx4_cleanup_eq_table(dev);
904 mlx4_cleanup_mr_table(dev);
905 mlx4_cleanup_pd_table(dev);
908 mlx4_uar_free(dev, &priv->driver_uar);
909 mlx4_cleanup_uar_table(dev);
911 mlx4_cmd_cleanup(dev);
913 if (dev->flags & MLX4_FLAG_MSI_X)
914 pci_disable_msix(pdev);
917 pci_release_region(pdev, 2);
918 pci_release_region(pdev, 0);
919 pci_disable_device(pdev);
920 pci_set_drvdata(pdev, NULL);
924 int mlx4_restart_one(struct pci_dev *pdev)
926 mlx4_remove_one(pdev);
927 return mlx4_init_one(pdev, NULL);
930 static struct pci_device_id mlx4_pci_table[] = {
931 { PCI_VDEVICE(MELLANOX, 0x6340) }, /* MT25408 "Hermon" SDR */
932 { PCI_VDEVICE(MELLANOX, 0x634a) }, /* MT25408 "Hermon" DDR */
933 { PCI_VDEVICE(MELLANOX, 0x6354) }, /* MT25408 "Hermon" QDR */
934 { PCI_VDEVICE(MELLANOX, 0x6732) }, /* MT25408 "Hermon" DDR PCIe gen2 */
935 { PCI_VDEVICE(MELLANOX, 0x673c) }, /* MT25408 "Hermon" QDR PCIe gen2 */
939 MODULE_DEVICE_TABLE(pci, mlx4_pci_table);
941 static struct pci_driver mlx4_driver = {
943 .id_table = mlx4_pci_table,
944 .probe = mlx4_init_one,
945 .remove = __devexit_p(mlx4_remove_one)
948 static int __init mlx4_init(void)
952 ret = mlx4_catas_init();
956 ret = pci_register_driver(&mlx4_driver);
957 return ret < 0 ? ret : 0;
960 static void __exit mlx4_cleanup(void)
962 pci_unregister_driver(&mlx4_driver);
963 mlx4_catas_cleanup();
966 module_init(mlx4_init);
967 module_exit(mlx4_cleanup);