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 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 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 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 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 mlx4_init_icm(struct mlx4_dev *dev, struct mlx4_dev_cap *dev_cap,
260 struct mlx4_init_hca_param *init_hca, u64 icm_size)
262 struct mlx4_priv *priv = mlx4_priv(dev);
266 err = mlx4_SET_ICM_SIZE(dev, icm_size, &aux_pages);
268 mlx4_err(dev, "SET_ICM_SIZE command failed, aborting.\n");
272 mlx4_dbg(dev, "%lld KB of HCA context requires %lld KB aux memory.\n",
273 (unsigned long long) icm_size >> 10,
274 (unsigned long long) aux_pages << 2);
276 priv->fw.aux_icm = mlx4_alloc_icm(dev, aux_pages,
277 GFP_HIGHUSER | __GFP_NOWARN, 0);
278 if (!priv->fw.aux_icm) {
279 mlx4_err(dev, "Couldn't allocate aux memory, aborting.\n");
283 err = mlx4_MAP_ICM_AUX(dev, priv->fw.aux_icm);
285 mlx4_err(dev, "MAP_ICM_AUX command failed, aborting.\n");
289 err = mlx4_init_cmpt_table(dev, init_hca->cmpt_base, dev_cap->cmpt_entry_sz);
291 mlx4_err(dev, "Failed to map cMPT context memory, aborting.\n");
295 err = mlx4_map_eq_icm(dev, init_hca->eqc_base);
297 mlx4_err(dev, "Failed to map EQ context memory, aborting.\n");
302 * Reserved MTT entries must be aligned up to a cacheline
303 * boundary, since the FW will write to them, while the driver
304 * writes to all other MTT entries. (The variable
305 * dev->caps.mtt_entry_sz below is really the MTT segment
306 * size, not the raw entry size)
308 dev->caps.reserved_mtts =
309 ALIGN(dev->caps.reserved_mtts * dev->caps.mtt_entry_sz,
310 dma_get_cache_alignment()) / dev->caps.mtt_entry_sz;
312 err = mlx4_init_icm_table(dev, &priv->mr_table.mtt_table,
314 dev->caps.mtt_entry_sz,
315 dev->caps.num_mtt_segs,
316 dev->caps.reserved_mtts, 1, 0);
318 mlx4_err(dev, "Failed to map MTT context memory, aborting.\n");
322 err = mlx4_init_icm_table(dev, &priv->mr_table.dmpt_table,
324 dev_cap->dmpt_entry_sz,
326 dev->caps.reserved_mrws, 1, 1);
328 mlx4_err(dev, "Failed to map dMPT context memory, aborting.\n");
332 err = mlx4_init_icm_table(dev, &priv->qp_table.qp_table,
334 dev_cap->qpc_entry_sz,
336 dev->caps.reserved_qps, 0, 0);
338 mlx4_err(dev, "Failed to map QP context memory, aborting.\n");
342 err = mlx4_init_icm_table(dev, &priv->qp_table.auxc_table,
344 dev_cap->aux_entry_sz,
346 dev->caps.reserved_qps, 0, 0);
348 mlx4_err(dev, "Failed to map AUXC context memory, aborting.\n");
352 err = mlx4_init_icm_table(dev, &priv->qp_table.altc_table,
354 dev_cap->altc_entry_sz,
356 dev->caps.reserved_qps, 0, 0);
358 mlx4_err(dev, "Failed to map ALTC context memory, aborting.\n");
362 err = mlx4_init_icm_table(dev, &priv->qp_table.rdmarc_table,
363 init_hca->rdmarc_base,
364 dev_cap->rdmarc_entry_sz << priv->qp_table.rdmarc_shift,
366 dev->caps.reserved_qps, 0, 0);
368 mlx4_err(dev, "Failed to map RDMARC context memory, aborting\n");
372 err = mlx4_init_icm_table(dev, &priv->cq_table.table,
374 dev_cap->cqc_entry_sz,
376 dev->caps.reserved_cqs, 0, 0);
378 mlx4_err(dev, "Failed to map CQ context memory, aborting.\n");
379 goto err_unmap_rdmarc;
382 err = mlx4_init_icm_table(dev, &priv->srq_table.table,
384 dev_cap->srq_entry_sz,
386 dev->caps.reserved_srqs, 0, 0);
388 mlx4_err(dev, "Failed to map SRQ context memory, aborting.\n");
393 * It's not strictly required, but for simplicity just map the
394 * whole multicast group table now. The table isn't very big
395 * and it's a lot easier than trying to track ref counts.
397 err = mlx4_init_icm_table(dev, &priv->mcg_table.table,
398 init_hca->mc_base, MLX4_MGM_ENTRY_SIZE,
399 dev->caps.num_mgms + dev->caps.num_amgms,
400 dev->caps.num_mgms + dev->caps.num_amgms,
403 mlx4_err(dev, "Failed to map MCG context memory, aborting.\n");
410 mlx4_cleanup_icm_table(dev, &priv->srq_table.table);
413 mlx4_cleanup_icm_table(dev, &priv->cq_table.table);
416 mlx4_cleanup_icm_table(dev, &priv->qp_table.rdmarc_table);
419 mlx4_cleanup_icm_table(dev, &priv->qp_table.altc_table);
422 mlx4_cleanup_icm_table(dev, &priv->qp_table.auxc_table);
425 mlx4_cleanup_icm_table(dev, &priv->qp_table.qp_table);
428 mlx4_cleanup_icm_table(dev, &priv->mr_table.dmpt_table);
431 mlx4_cleanup_icm_table(dev, &priv->mr_table.mtt_table);
434 mlx4_unmap_eq_icm(dev);
437 mlx4_cleanup_icm_table(dev, &priv->eq_table.cmpt_table);
438 mlx4_cleanup_icm_table(dev, &priv->cq_table.cmpt_table);
439 mlx4_cleanup_icm_table(dev, &priv->srq_table.cmpt_table);
440 mlx4_cleanup_icm_table(dev, &priv->qp_table.cmpt_table);
443 mlx4_UNMAP_ICM_AUX(dev);
446 mlx4_free_icm(dev, priv->fw.aux_icm, 0);
451 static void mlx4_free_icms(struct mlx4_dev *dev)
453 struct mlx4_priv *priv = mlx4_priv(dev);
455 mlx4_cleanup_icm_table(dev, &priv->mcg_table.table);
456 mlx4_cleanup_icm_table(dev, &priv->srq_table.table);
457 mlx4_cleanup_icm_table(dev, &priv->cq_table.table);
458 mlx4_cleanup_icm_table(dev, &priv->qp_table.rdmarc_table);
459 mlx4_cleanup_icm_table(dev, &priv->qp_table.altc_table);
460 mlx4_cleanup_icm_table(dev, &priv->qp_table.auxc_table);
461 mlx4_cleanup_icm_table(dev, &priv->qp_table.qp_table);
462 mlx4_cleanup_icm_table(dev, &priv->mr_table.dmpt_table);
463 mlx4_cleanup_icm_table(dev, &priv->mr_table.mtt_table);
464 mlx4_cleanup_icm_table(dev, &priv->eq_table.cmpt_table);
465 mlx4_cleanup_icm_table(dev, &priv->cq_table.cmpt_table);
466 mlx4_cleanup_icm_table(dev, &priv->srq_table.cmpt_table);
467 mlx4_cleanup_icm_table(dev, &priv->qp_table.cmpt_table);
468 mlx4_unmap_eq_icm(dev);
470 mlx4_UNMAP_ICM_AUX(dev);
471 mlx4_free_icm(dev, priv->fw.aux_icm, 0);
474 static void mlx4_close_hca(struct mlx4_dev *dev)
476 mlx4_CLOSE_HCA(dev, 0);
479 mlx4_free_icm(dev, mlx4_priv(dev)->fw.fw_icm, 0);
482 static int mlx4_init_hca(struct mlx4_dev *dev)
484 struct mlx4_priv *priv = mlx4_priv(dev);
485 struct mlx4_adapter adapter;
486 struct mlx4_dev_cap dev_cap;
487 struct mlx4_profile profile;
488 struct mlx4_init_hca_param init_hca;
492 err = mlx4_QUERY_FW(dev);
494 mlx4_err(dev, "QUERY_FW command failed, aborting.\n");
498 err = mlx4_load_fw(dev);
500 mlx4_err(dev, "Failed to start FW, aborting.\n");
504 err = mlx4_dev_cap(dev, &dev_cap);
506 mlx4_err(dev, "QUERY_DEV_CAP command failed, aborting.\n");
510 profile = default_profile;
512 icm_size = mlx4_make_profile(dev, &profile, &dev_cap, &init_hca);
513 if ((long long) icm_size < 0) {
518 init_hca.log_uar_sz = ilog2(dev->caps.num_uars);
520 err = mlx4_init_icm(dev, &dev_cap, &init_hca, icm_size);
524 err = mlx4_INIT_HCA(dev, &init_hca);
526 mlx4_err(dev, "INIT_HCA command failed, aborting.\n");
530 err = mlx4_QUERY_ADAPTER(dev, &adapter);
532 mlx4_err(dev, "QUERY_ADAPTER command failed, aborting.\n");
536 priv->eq_table.inta_pin = adapter.inta_pin;
537 memcpy(dev->board_id, adapter.board_id, sizeof dev->board_id);
549 mlx4_free_icm(dev, priv->fw.fw_icm, 0);
554 static int mlx4_setup_hca(struct mlx4_dev *dev)
556 struct mlx4_priv *priv = mlx4_priv(dev);
559 err = mlx4_init_uar_table(dev);
561 mlx4_err(dev, "Failed to initialize "
562 "user access region table, aborting.\n");
566 err = mlx4_uar_alloc(dev, &priv->driver_uar);
568 mlx4_err(dev, "Failed to allocate driver access region, "
570 goto err_uar_table_free;
573 priv->kar = ioremap(priv->driver_uar.pfn << PAGE_SHIFT, PAGE_SIZE);
575 mlx4_err(dev, "Couldn't map kernel access region, "
581 err = mlx4_init_pd_table(dev);
583 mlx4_err(dev, "Failed to initialize "
584 "protection domain table, aborting.\n");
588 err = mlx4_init_mr_table(dev);
590 mlx4_err(dev, "Failed to initialize "
591 "memory region table, aborting.\n");
592 goto err_pd_table_free;
595 err = mlx4_init_eq_table(dev);
597 mlx4_err(dev, "Failed to initialize "
598 "event queue table, aborting.\n");
599 goto err_mr_table_free;
602 err = mlx4_cmd_use_events(dev);
604 mlx4_err(dev, "Failed to switch to event-driven "
605 "firmware commands, aborting.\n");
606 goto err_eq_table_free;
611 if (dev->flags & MLX4_FLAG_MSI_X) {
612 mlx4_warn(dev, "NOP command failed to generate MSI-X "
613 "interrupt IRQ %d).\n",
614 priv->eq_table.eq[MLX4_EQ_ASYNC].irq);
615 mlx4_warn(dev, "Trying again without MSI-X.\n");
617 mlx4_err(dev, "NOP command failed to generate interrupt "
618 "(IRQ %d), aborting.\n",
619 priv->eq_table.eq[MLX4_EQ_ASYNC].irq);
620 mlx4_err(dev, "BIOS or ACPI interrupt routing problem?\n");
626 mlx4_dbg(dev, "NOP command IRQ test passed\n");
628 err = mlx4_init_cq_table(dev);
630 mlx4_err(dev, "Failed to initialize "
631 "completion queue table, aborting.\n");
635 err = mlx4_init_srq_table(dev);
637 mlx4_err(dev, "Failed to initialize "
638 "shared receive queue table, aborting.\n");
639 goto err_cq_table_free;
642 err = mlx4_init_qp_table(dev);
644 mlx4_err(dev, "Failed to initialize "
645 "queue pair table, aborting.\n");
646 goto err_srq_table_free;
649 err = mlx4_init_mcg_table(dev);
651 mlx4_err(dev, "Failed to initialize "
652 "multicast group table, aborting.\n");
653 goto err_qp_table_free;
659 mlx4_cleanup_qp_table(dev);
662 mlx4_cleanup_srq_table(dev);
665 mlx4_cleanup_cq_table(dev);
668 mlx4_cmd_use_polling(dev);
671 mlx4_cleanup_eq_table(dev);
674 mlx4_cleanup_mr_table(dev);
677 mlx4_cleanup_pd_table(dev);
683 mlx4_uar_free(dev, &priv->driver_uar);
686 mlx4_cleanup_uar_table(dev);
690 static void mlx4_enable_msi_x(struct mlx4_dev *dev)
692 struct mlx4_priv *priv = mlx4_priv(dev);
693 struct msix_entry entries[MLX4_NUM_EQ];
698 for (i = 0; i < MLX4_NUM_EQ; ++i)
699 entries[i].entry = i;
701 err = pci_enable_msix(dev->pdev, entries, ARRAY_SIZE(entries));
704 mlx4_info(dev, "Only %d MSI-X vectors available, "
705 "not using MSI-X\n", err);
709 for (i = 0; i < MLX4_NUM_EQ; ++i)
710 priv->eq_table.eq[i].irq = entries[i].vector;
712 dev->flags |= MLX4_FLAG_MSI_X;
717 for (i = 0; i < MLX4_NUM_EQ; ++i)
718 priv->eq_table.eq[i].irq = dev->pdev->irq;
721 static int __mlx4_init_one(struct pci_dev *pdev, const struct pci_device_id *id)
723 struct mlx4_priv *priv;
724 struct mlx4_dev *dev;
727 printk(KERN_INFO PFX "Initializing %s\n",
730 err = pci_enable_device(pdev);
732 dev_err(&pdev->dev, "Cannot enable PCI device, "
738 * Check for BARs. We expect 0: 1MB, 2: 8MB, 4: DDR (may not
741 if (!(pci_resource_flags(pdev, 0) & IORESOURCE_MEM) ||
742 pci_resource_len(pdev, 0) != 1 << 20) {
743 dev_err(&pdev->dev, "Missing DCS, aborting.\n");
745 goto err_disable_pdev;
747 if (!(pci_resource_flags(pdev, 2) & IORESOURCE_MEM)) {
748 dev_err(&pdev->dev, "Missing UAR, aborting.\n");
750 goto err_disable_pdev;
753 err = pci_request_region(pdev, 0, DRV_NAME);
755 dev_err(&pdev->dev, "Cannot request control region, aborting.\n");
756 goto err_disable_pdev;
759 err = pci_request_region(pdev, 2, DRV_NAME);
761 dev_err(&pdev->dev, "Cannot request UAR region, aborting.\n");
762 goto err_release_bar0;
765 pci_set_master(pdev);
767 err = pci_set_dma_mask(pdev, DMA_64BIT_MASK);
769 dev_warn(&pdev->dev, "Warning: couldn't set 64-bit PCI DMA mask.\n");
770 err = pci_set_dma_mask(pdev, DMA_32BIT_MASK);
772 dev_err(&pdev->dev, "Can't set PCI DMA mask, aborting.\n");
773 goto err_release_bar2;
776 err = pci_set_consistent_dma_mask(pdev, DMA_64BIT_MASK);
778 dev_warn(&pdev->dev, "Warning: couldn't set 64-bit "
779 "consistent PCI DMA mask.\n");
780 err = pci_set_consistent_dma_mask(pdev, DMA_32BIT_MASK);
782 dev_err(&pdev->dev, "Can't set consistent PCI DMA mask, "
784 goto err_release_bar2;
788 priv = kzalloc(sizeof *priv, GFP_KERNEL);
790 dev_err(&pdev->dev, "Device struct alloc failed, "
793 goto err_release_bar2;
798 INIT_LIST_HEAD(&priv->ctx_list);
799 spin_lock_init(&priv->ctx_lock);
802 * Now reset the HCA before we touch the PCI capabilities or
803 * attempt a firmware command, since a boot ROM may have left
804 * the HCA in an undefined state.
806 err = mlx4_reset(dev);
808 mlx4_err(dev, "Failed to reset HCA, aborting.\n");
812 if (mlx4_cmd_init(dev)) {
813 mlx4_err(dev, "Failed to init command interface, aborting.\n");
817 err = mlx4_init_hca(dev);
821 mlx4_enable_msi_x(dev);
823 err = mlx4_setup_hca(dev);
824 if (err == -EBUSY && (dev->flags & MLX4_FLAG_MSI_X)) {
825 dev->flags &= ~MLX4_FLAG_MSI_X;
826 pci_disable_msix(pdev);
827 err = mlx4_setup_hca(dev);
833 err = mlx4_register_device(dev);
837 pci_set_drvdata(pdev, dev);
842 mlx4_cleanup_mcg_table(dev);
843 mlx4_cleanup_qp_table(dev);
844 mlx4_cleanup_srq_table(dev);
845 mlx4_cleanup_cq_table(dev);
846 mlx4_cmd_use_polling(dev);
847 mlx4_cleanup_eq_table(dev);
848 mlx4_cleanup_mr_table(dev);
849 mlx4_cleanup_pd_table(dev);
850 mlx4_cleanup_uar_table(dev);
853 if (dev->flags & MLX4_FLAG_MSI_X)
854 pci_disable_msix(pdev);
859 mlx4_cmd_cleanup(dev);
865 pci_release_region(pdev, 2);
868 pci_release_region(pdev, 0);
871 pci_disable_device(pdev);
872 pci_set_drvdata(pdev, NULL);
876 static int __devinit mlx4_init_one(struct pci_dev *pdev,
877 const struct pci_device_id *id)
879 static int mlx4_version_printed;
881 if (!mlx4_version_printed) {
882 printk(KERN_INFO "%s", mlx4_version);
883 ++mlx4_version_printed;
886 return __mlx4_init_one(pdev, id);
889 static void mlx4_remove_one(struct pci_dev *pdev)
891 struct mlx4_dev *dev = pci_get_drvdata(pdev);
892 struct mlx4_priv *priv = mlx4_priv(dev);
896 mlx4_unregister_device(dev);
898 for (p = 1; p <= dev->caps.num_ports; ++p)
899 mlx4_CLOSE_PORT(dev, p);
901 mlx4_cleanup_mcg_table(dev);
902 mlx4_cleanup_qp_table(dev);
903 mlx4_cleanup_srq_table(dev);
904 mlx4_cleanup_cq_table(dev);
905 mlx4_cmd_use_polling(dev);
906 mlx4_cleanup_eq_table(dev);
907 mlx4_cleanup_mr_table(dev);
908 mlx4_cleanup_pd_table(dev);
911 mlx4_uar_free(dev, &priv->driver_uar);
912 mlx4_cleanup_uar_table(dev);
914 mlx4_cmd_cleanup(dev);
916 if (dev->flags & MLX4_FLAG_MSI_X)
917 pci_disable_msix(pdev);
920 pci_release_region(pdev, 2);
921 pci_release_region(pdev, 0);
922 pci_disable_device(pdev);
923 pci_set_drvdata(pdev, NULL);
927 int mlx4_restart_one(struct pci_dev *pdev)
929 mlx4_remove_one(pdev);
930 return __mlx4_init_one(pdev, NULL);
933 static struct pci_device_id mlx4_pci_table[] = {
934 { PCI_VDEVICE(MELLANOX, 0x6340) }, /* MT25408 "Hermon" SDR */
935 { PCI_VDEVICE(MELLANOX, 0x634a) }, /* MT25408 "Hermon" DDR */
936 { PCI_VDEVICE(MELLANOX, 0x6354) }, /* MT25408 "Hermon" QDR */
937 { PCI_VDEVICE(MELLANOX, 0x6732) }, /* MT25408 "Hermon" DDR PCIe gen2 */
938 { PCI_VDEVICE(MELLANOX, 0x673c) }, /* MT25408 "Hermon" QDR PCIe gen2 */
942 MODULE_DEVICE_TABLE(pci, mlx4_pci_table);
944 static struct pci_driver mlx4_driver = {
946 .id_table = mlx4_pci_table,
947 .probe = mlx4_init_one,
948 .remove = __devexit_p(mlx4_remove_one)
951 static int __init mlx4_init(void)
955 ret = mlx4_catas_init();
959 ret = pci_register_driver(&mlx4_driver);
960 return ret < 0 ? ret : 0;
963 static void __exit mlx4_cleanup(void)
965 pci_unregister_driver(&mlx4_driver);
966 mlx4_catas_cleanup();
969 module_init(mlx4_init);
970 module_exit(mlx4_cleanup);