2 * Copyright (c) 2004, 2005 Topspin Communications. All rights reserved.
4 * This software is available to you under a choice of one of two
5 * licenses. You may choose to be licensed under the terms of the GNU
6 * General Public License (GPL) Version 2, available from the file
7 * COPYING in the main directory of this source tree, or the
8 * OpenIB.org BSD license below:
10 * Redistribution and use in source and binary forms, with or
11 * without modification, are permitted provided that the following
14 * - Redistributions of source code must retain the above
15 * copyright notice, this list of conditions and the following
18 * - Redistributions in binary form must reproduce the above
19 * copyright notice, this list of conditions and the following
20 * disclaimer in the documentation and/or other materials
21 * provided with the distribution.
23 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
24 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
25 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
26 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
27 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
28 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
29 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
32 * $Id: mthca_main.c 1396 2004-12-28 04:10:27Z roland $
35 #include <linux/config.h>
36 #include <linux/version.h>
37 #include <linux/module.h>
38 #include <linux/init.h>
39 #include <linux/errno.h>
40 #include <linux/pci.h>
41 #include <linux/interrupt.h>
43 #include "mthca_dev.h"
44 #include "mthca_config_reg.h"
45 #include "mthca_cmd.h"
46 #include "mthca_profile.h"
47 #include "mthca_memfree.h"
49 MODULE_AUTHOR("Roland Dreier");
50 MODULE_DESCRIPTION("Mellanox InfiniBand HCA low-level driver");
51 MODULE_LICENSE("Dual BSD/GPL");
52 MODULE_VERSION(DRV_VERSION);
57 module_param(msi_x, int, 0444);
58 MODULE_PARM_DESC(msi_x, "attempt to use MSI-X if nonzero");
61 module_param(msi, int, 0444);
62 MODULE_PARM_DESC(msi, "attempt to use MSI if nonzero");
64 #else /* CONFIG_PCI_MSI */
69 #endif /* CONFIG_PCI_MSI */
71 static const char mthca_version[] __devinitdata =
72 "ib_mthca: Mellanox InfiniBand HCA driver v"
73 DRV_VERSION " (" DRV_RELDATE ")\n";
75 static struct mthca_profile default_profile = {
82 .num_udav = 1 << 15, /* Tavor only */
83 .fmr_reserved_mtts = 1 << 18, /* Tavor only */
84 .uarc_size = 1 << 18, /* Arbel only */
87 static int __devinit mthca_tune_pci(struct mthca_dev *mdev)
92 /* First try to max out Read Byte Count */
93 cap = pci_find_capability(mdev->pdev, PCI_CAP_ID_PCIX);
95 if (pci_read_config_word(mdev->pdev, cap + PCI_X_CMD, &val)) {
96 mthca_err(mdev, "Couldn't read PCI-X command register, "
100 val = (val & ~PCI_X_CMD_MAX_READ) | (3 << 2);
101 if (pci_write_config_word(mdev->pdev, cap + PCI_X_CMD, val)) {
102 mthca_err(mdev, "Couldn't write PCI-X command register, "
106 } else if (mdev->hca_type == TAVOR)
107 mthca_info(mdev, "No PCI-X capability, not setting RBC.\n");
109 cap = pci_find_capability(mdev->pdev, PCI_CAP_ID_EXP);
111 if (pci_read_config_word(mdev->pdev, cap + PCI_EXP_DEVCTL, &val)) {
112 mthca_err(mdev, "Couldn't read PCI Express device control "
113 "register, aborting.\n");
116 val = (val & ~PCI_EXP_DEVCTL_READRQ) | (5 << 12);
117 if (pci_write_config_word(mdev->pdev, cap + PCI_EXP_DEVCTL, val)) {
118 mthca_err(mdev, "Couldn't write PCI Express device control "
119 "register, aborting.\n");
122 } else if (mdev->hca_type == ARBEL_NATIVE ||
123 mdev->hca_type == ARBEL_COMPAT)
124 mthca_info(mdev, "No PCI Express capability, "
125 "not setting Max Read Request Size.\n");
130 static int __devinit mthca_dev_lim(struct mthca_dev *mdev, struct mthca_dev_lim *dev_lim)
135 err = mthca_QUERY_DEV_LIM(mdev, dev_lim, &status);
137 mthca_err(mdev, "QUERY_DEV_LIM command failed, aborting.\n");
141 mthca_err(mdev, "QUERY_DEV_LIM returned status 0x%02x, "
142 "aborting.\n", status);
145 if (dev_lim->min_page_sz > PAGE_SIZE) {
146 mthca_err(mdev, "HCA minimum page size of %d bigger than "
147 "kernel PAGE_SIZE of %ld, aborting.\n",
148 dev_lim->min_page_sz, PAGE_SIZE);
151 if (dev_lim->num_ports > MTHCA_MAX_PORTS) {
152 mthca_err(mdev, "HCA has %d ports, but we only support %d, "
154 dev_lim->num_ports, MTHCA_MAX_PORTS);
158 mdev->limits.num_ports = dev_lim->num_ports;
159 mdev->limits.vl_cap = dev_lim->max_vl;
160 mdev->limits.mtu_cap = dev_lim->max_mtu;
161 mdev->limits.gid_table_len = dev_lim->max_gids;
162 mdev->limits.pkey_table_len = dev_lim->max_pkeys;
163 mdev->limits.local_ca_ack_delay = dev_lim->local_ca_ack_delay;
164 mdev->limits.max_sg = dev_lim->max_sg;
165 mdev->limits.reserved_qps = dev_lim->reserved_qps;
166 mdev->limits.reserved_srqs = dev_lim->reserved_srqs;
167 mdev->limits.reserved_eecs = dev_lim->reserved_eecs;
168 mdev->limits.reserved_cqs = dev_lim->reserved_cqs;
169 mdev->limits.reserved_eqs = dev_lim->reserved_eqs;
170 mdev->limits.reserved_mtts = dev_lim->reserved_mtts;
171 mdev->limits.reserved_mrws = dev_lim->reserved_mrws;
172 mdev->limits.reserved_uars = dev_lim->reserved_uars;
173 mdev->limits.reserved_pds = dev_lim->reserved_pds;
175 /* IB_DEVICE_RESIZE_MAX_WR not supported by driver.
176 May be doable since hardware supports it for SRQ.
178 IB_DEVICE_N_NOTIFY_CQ is supported by hardware but not by driver.
180 IB_DEVICE_SRQ_RESIZE is supported by hardware but SRQ is not
181 supported by driver. */
182 mdev->device_cap_flags = IB_DEVICE_CHANGE_PHY_PORT |
183 IB_DEVICE_PORT_ACTIVE_EVENT |
184 IB_DEVICE_SYS_IMAGE_GUID |
185 IB_DEVICE_RC_RNR_NAK_GEN;
187 if (dev_lim->flags & DEV_LIM_FLAG_BAD_PKEY_CNTR)
188 mdev->device_cap_flags |= IB_DEVICE_BAD_PKEY_CNTR;
190 if (dev_lim->flags & DEV_LIM_FLAG_BAD_QKEY_CNTR)
191 mdev->device_cap_flags |= IB_DEVICE_BAD_QKEY_CNTR;
193 if (dev_lim->flags & DEV_LIM_FLAG_RAW_MULTI)
194 mdev->device_cap_flags |= IB_DEVICE_RAW_MULTI;
196 if (dev_lim->flags & DEV_LIM_FLAG_AUTO_PATH_MIG)
197 mdev->device_cap_flags |= IB_DEVICE_AUTO_PATH_MIG;
199 if (dev_lim->flags & DEV_LIM_FLAG_UD_AV_PORT_ENFORCE)
200 mdev->device_cap_flags |= IB_DEVICE_UD_AV_PORT_ENFORCE;
202 if (dev_lim->flags & DEV_LIM_FLAG_SRQ)
203 mdev->mthca_flags |= MTHCA_FLAG_SRQ;
208 static int __devinit mthca_init_tavor(struct mthca_dev *mdev)
212 struct mthca_dev_lim dev_lim;
213 struct mthca_profile profile;
214 struct mthca_init_hca_param init_hca;
215 struct mthca_adapter adapter;
217 err = mthca_SYS_EN(mdev, &status);
219 mthca_err(mdev, "SYS_EN command failed, aborting.\n");
223 mthca_err(mdev, "SYS_EN returned status 0x%02x, "
224 "aborting.\n", status);
228 err = mthca_QUERY_FW(mdev, &status);
230 mthca_err(mdev, "QUERY_FW command failed, aborting.\n");
234 mthca_err(mdev, "QUERY_FW returned status 0x%02x, "
235 "aborting.\n", status);
239 err = mthca_QUERY_DDR(mdev, &status);
241 mthca_err(mdev, "QUERY_DDR command failed, aborting.\n");
245 mthca_err(mdev, "QUERY_DDR returned status 0x%02x, "
246 "aborting.\n", status);
251 err = mthca_dev_lim(mdev, &dev_lim);
253 profile = default_profile;
254 profile.num_uar = dev_lim.uar_size / PAGE_SIZE;
255 profile.uarc_size = 0;
257 err = mthca_make_profile(mdev, &profile, &dev_lim, &init_hca);
261 err = mthca_INIT_HCA(mdev, &init_hca, &status);
263 mthca_err(mdev, "INIT_HCA command failed, aborting.\n");
267 mthca_err(mdev, "INIT_HCA returned status 0x%02x, "
268 "aborting.\n", status);
273 err = mthca_QUERY_ADAPTER(mdev, &adapter, &status);
275 mthca_err(mdev, "QUERY_ADAPTER command failed, aborting.\n");
279 mthca_err(mdev, "QUERY_ADAPTER returned status 0x%02x, "
280 "aborting.\n", status);
285 mdev->eq_table.inta_pin = adapter.inta_pin;
286 mdev->rev_id = adapter.revision_id;
291 mthca_CLOSE_HCA(mdev, 0, &status);
294 mthca_SYS_DIS(mdev, &status);
299 static int __devinit mthca_load_fw(struct mthca_dev *mdev)
304 /* FIXME: use HCA-attached memory for FW if present */
306 mdev->fw.arbel.fw_icm =
307 mthca_alloc_icm(mdev, mdev->fw.arbel.fw_pages,
308 GFP_HIGHUSER | __GFP_NOWARN);
309 if (!mdev->fw.arbel.fw_icm) {
310 mthca_err(mdev, "Couldn't allocate FW area, aborting.\n");
314 err = mthca_MAP_FA(mdev, mdev->fw.arbel.fw_icm, &status);
316 mthca_err(mdev, "MAP_FA command failed, aborting.\n");
320 mthca_err(mdev, "MAP_FA returned status 0x%02x, aborting.\n", status);
324 err = mthca_RUN_FW(mdev, &status);
326 mthca_err(mdev, "RUN_FW command failed, aborting.\n");
330 mthca_err(mdev, "RUN_FW returned status 0x%02x, aborting.\n", status);
338 mthca_UNMAP_FA(mdev, &status);
341 mthca_free_icm(mdev, mdev->fw.arbel.fw_icm);
345 static int __devinit mthca_init_icm(struct mthca_dev *mdev,
346 struct mthca_dev_lim *dev_lim,
347 struct mthca_init_hca_param *init_hca,
354 err = mthca_SET_ICM_SIZE(mdev, icm_size, &aux_pages, &status);
356 mthca_err(mdev, "SET_ICM_SIZE command failed, aborting.\n");
360 mthca_err(mdev, "SET_ICM_SIZE returned status 0x%02x, "
361 "aborting.\n", status);
365 mthca_dbg(mdev, "%lld KB of HCA context requires %lld KB aux memory.\n",
366 (unsigned long long) icm_size >> 10,
367 (unsigned long long) aux_pages << 2);
369 mdev->fw.arbel.aux_icm = mthca_alloc_icm(mdev, aux_pages,
370 GFP_HIGHUSER | __GFP_NOWARN);
371 if (!mdev->fw.arbel.aux_icm) {
372 mthca_err(mdev, "Couldn't allocate aux memory, aborting.\n");
376 err = mthca_MAP_ICM_AUX(mdev, mdev->fw.arbel.aux_icm, &status);
378 mthca_err(mdev, "MAP_ICM_AUX command failed, aborting.\n");
382 mthca_err(mdev, "MAP_ICM_AUX returned status 0x%02x, aborting.\n", status);
387 err = mthca_map_eq_icm(mdev, init_hca->eqc_base);
389 mthca_err(mdev, "Failed to map EQ context memory, aborting.\n");
393 mdev->mr_table.mtt_table = mthca_alloc_icm_table(mdev, init_hca->mtt_base,
395 mdev->limits.num_mtt_segs,
396 mdev->limits.reserved_mtts, 1);
397 if (!mdev->mr_table.mtt_table) {
398 mthca_err(mdev, "Failed to map MTT context memory, aborting.\n");
403 mdev->mr_table.mpt_table = mthca_alloc_icm_table(mdev, init_hca->mpt_base,
404 dev_lim->mpt_entry_sz,
405 mdev->limits.num_mpts,
406 mdev->limits.reserved_mrws, 1);
407 if (!mdev->mr_table.mpt_table) {
408 mthca_err(mdev, "Failed to map MPT context memory, aborting.\n");
413 mdev->qp_table.qp_table = mthca_alloc_icm_table(mdev, init_hca->qpc_base,
414 dev_lim->qpc_entry_sz,
415 mdev->limits.num_qps,
416 mdev->limits.reserved_qps, 0);
417 if (!mdev->qp_table.qp_table) {
418 mthca_err(mdev, "Failed to map QP context memory, aborting.\n");
423 mdev->qp_table.eqp_table = mthca_alloc_icm_table(mdev, init_hca->eqpc_base,
424 dev_lim->eqpc_entry_sz,
425 mdev->limits.num_qps,
426 mdev->limits.reserved_qps, 0);
427 if (!mdev->qp_table.eqp_table) {
428 mthca_err(mdev, "Failed to map EQP context memory, aborting.\n");
433 mdev->cq_table.table = mthca_alloc_icm_table(mdev, init_hca->cqc_base,
434 dev_lim->cqc_entry_sz,
435 mdev->limits.num_cqs,
436 mdev->limits.reserved_cqs, 0);
437 if (!mdev->cq_table.table) {
438 mthca_err(mdev, "Failed to map CQ context memory, aborting.\n");
444 * It's not strictly required, but for simplicity just map the
445 * whole multicast group table now. The table isn't very big
446 * and it's a lot easier than trying to track ref counts.
448 mdev->mcg_table.table = mthca_alloc_icm_table(mdev, init_hca->mc_base,
449 MTHCA_MGM_ENTRY_SIZE,
450 mdev->limits.num_mgms +
451 mdev->limits.num_amgms,
452 mdev->limits.num_mgms +
453 mdev->limits.num_amgms,
455 if (!mdev->mcg_table.table) {
456 mthca_err(mdev, "Failed to map MCG context memory, aborting.\n");
464 mthca_free_icm_table(mdev, mdev->cq_table.table);
467 mthca_free_icm_table(mdev, mdev->qp_table.eqp_table);
470 mthca_free_icm_table(mdev, mdev->qp_table.qp_table);
473 mthca_free_icm_table(mdev, mdev->mr_table.mpt_table);
476 mthca_free_icm_table(mdev, mdev->mr_table.mtt_table);
479 mthca_unmap_eq_icm(mdev);
482 mthca_UNMAP_ICM_AUX(mdev, &status);
485 mthca_free_icm(mdev, mdev->fw.arbel.aux_icm);
490 static int __devinit mthca_init_arbel(struct mthca_dev *mdev)
492 struct mthca_dev_lim dev_lim;
493 struct mthca_profile profile;
494 struct mthca_init_hca_param init_hca;
495 struct mthca_adapter adapter;
500 err = mthca_QUERY_FW(mdev, &status);
502 mthca_err(mdev, "QUERY_FW command failed, aborting.\n");
506 mthca_err(mdev, "QUERY_FW returned status 0x%02x, "
507 "aborting.\n", status);
511 err = mthca_ENABLE_LAM(mdev, &status);
513 mthca_err(mdev, "ENABLE_LAM command failed, aborting.\n");
516 if (status == MTHCA_CMD_STAT_LAM_NOT_PRE) {
517 mthca_dbg(mdev, "No HCA-attached memory (running in MemFree mode)\n");
518 mdev->mthca_flags |= MTHCA_FLAG_NO_LAM;
520 mthca_err(mdev, "ENABLE_LAM returned status 0x%02x, "
521 "aborting.\n", status);
525 err = mthca_load_fw(mdev);
527 mthca_err(mdev, "Failed to start FW, aborting.\n");
531 err = mthca_dev_lim(mdev, &dev_lim);
533 mthca_err(mdev, "QUERY_DEV_LIM command failed, aborting.\n");
537 profile = default_profile;
538 profile.num_uar = dev_lim.uar_size / PAGE_SIZE;
539 profile.num_udav = 0;
541 icm_size = mthca_make_profile(mdev, &profile, &dev_lim, &init_hca);
542 if ((int) icm_size < 0) {
547 err = mthca_init_icm(mdev, &dev_lim, &init_hca, icm_size);
551 err = mthca_INIT_HCA(mdev, &init_hca, &status);
553 mthca_err(mdev, "INIT_HCA command failed, aborting.\n");
557 mthca_err(mdev, "INIT_HCA returned status 0x%02x, "
558 "aborting.\n", status);
563 err = mthca_QUERY_ADAPTER(mdev, &adapter, &status);
565 mthca_err(mdev, "QUERY_ADAPTER command failed, aborting.\n");
569 mthca_err(mdev, "QUERY_ADAPTER returned status 0x%02x, "
570 "aborting.\n", status);
575 mdev->eq_table.inta_pin = adapter.inta_pin;
576 mdev->rev_id = adapter.revision_id;
581 mthca_free_icm_table(mdev, mdev->cq_table.table);
582 mthca_free_icm_table(mdev, mdev->qp_table.eqp_table);
583 mthca_free_icm_table(mdev, mdev->qp_table.qp_table);
584 mthca_free_icm_table(mdev, mdev->mr_table.mpt_table);
585 mthca_free_icm_table(mdev, mdev->mr_table.mtt_table);
586 mthca_unmap_eq_icm(mdev);
588 mthca_UNMAP_ICM_AUX(mdev, &status);
589 mthca_free_icm(mdev, mdev->fw.arbel.aux_icm);
592 mthca_UNMAP_FA(mdev, &status);
593 mthca_free_icm(mdev, mdev->fw.arbel.fw_icm);
596 if (!(mdev->mthca_flags & MTHCA_FLAG_NO_LAM))
597 mthca_DISABLE_LAM(mdev, &status);
602 static int __devinit mthca_init_hca(struct mthca_dev *mdev)
604 if (mdev->hca_type == ARBEL_NATIVE)
605 return mthca_init_arbel(mdev);
607 return mthca_init_tavor(mdev);
610 static int __devinit mthca_setup_hca(struct mthca_dev *dev)
615 MTHCA_INIT_DOORBELL_LOCK(&dev->doorbell_lock);
617 err = mthca_init_uar_table(dev);
619 mthca_err(dev, "Failed to initialize "
620 "user access region table, aborting.\n");
624 err = mthca_uar_alloc(dev, &dev->driver_uar);
626 mthca_err(dev, "Failed to allocate driver access region, "
628 goto err_uar_table_free;
631 dev->kar = ioremap(dev->driver_uar.pfn << PAGE_SHIFT, PAGE_SIZE);
633 mthca_err(dev, "Couldn't map kernel access region, "
639 err = mthca_init_pd_table(dev);
641 mthca_err(dev, "Failed to initialize "
642 "protection domain table, aborting.\n");
646 err = mthca_init_mr_table(dev);
648 mthca_err(dev, "Failed to initialize "
649 "memory region table, aborting.\n");
650 goto err_pd_table_free;
653 err = mthca_pd_alloc(dev, &dev->driver_pd);
655 mthca_err(dev, "Failed to create driver PD, "
657 goto err_mr_table_free;
660 err = mthca_init_eq_table(dev);
662 mthca_err(dev, "Failed to initialize "
663 "event queue table, aborting.\n");
667 err = mthca_cmd_use_events(dev);
669 mthca_err(dev, "Failed to switch to event-driven "
670 "firmware commands, aborting.\n");
671 goto err_eq_table_free;
674 err = mthca_NOP(dev, &status);
676 mthca_err(dev, "NOP command failed to generate interrupt (IRQ %d), aborting.\n",
677 dev->mthca_flags & MTHCA_FLAG_MSI_X ?
678 dev->eq_table.eq[MTHCA_EQ_CMD].msi_x_vector :
680 if (dev->mthca_flags & (MTHCA_FLAG_MSI | MTHCA_FLAG_MSI_X))
681 mthca_err(dev, "Try again with MSI/MSI-X disabled.\n");
683 mthca_err(dev, "BIOS or ACPI interrupt routing problem?\n");
688 mthca_dbg(dev, "NOP command IRQ test passed\n");
690 err = mthca_init_cq_table(dev);
692 mthca_err(dev, "Failed to initialize "
693 "completion queue table, aborting.\n");
697 err = mthca_init_qp_table(dev);
699 mthca_err(dev, "Failed to initialize "
700 "queue pair table, aborting.\n");
701 goto err_cq_table_free;
704 err = mthca_init_av_table(dev);
706 mthca_err(dev, "Failed to initialize "
707 "address vector table, aborting.\n");
708 goto err_qp_table_free;
711 err = mthca_init_mcg_table(dev);
713 mthca_err(dev, "Failed to initialize "
714 "multicast group table, aborting.\n");
715 goto err_av_table_free;
721 mthca_cleanup_av_table(dev);
724 mthca_cleanup_qp_table(dev);
727 mthca_cleanup_cq_table(dev);
730 mthca_cmd_use_polling(dev);
733 mthca_cleanup_eq_table(dev);
736 mthca_pd_free(dev, &dev->driver_pd);
739 mthca_cleanup_mr_table(dev);
742 mthca_cleanup_pd_table(dev);
748 mthca_uar_free(dev, &dev->driver_uar);
751 mthca_cleanup_uar_table(dev);
755 static int __devinit mthca_request_regions(struct pci_dev *pdev,
761 * We can't just use pci_request_regions() because the MSI-X
762 * table is right in the middle of the first BAR. If we did
763 * pci_request_region and grab all of the first BAR, then
764 * setting up MSI-X would fail, since the PCI core wants to do
765 * request_mem_region on the MSI-X vector table.
767 * So just request what we need right now, and request any
768 * other regions we need when setting up EQs.
770 if (!request_mem_region(pci_resource_start(pdev, 0) + MTHCA_HCR_BASE,
771 MTHCA_HCR_SIZE, DRV_NAME))
774 err = pci_request_region(pdev, 2, DRV_NAME);
776 goto err_bar2_failed;
779 err = pci_request_region(pdev, 4, DRV_NAME);
781 goto err_bar4_failed;
787 pci_release_region(pdev, 2);
790 release_mem_region(pci_resource_start(pdev, 0) + MTHCA_HCR_BASE,
796 static void mthca_release_regions(struct pci_dev *pdev,
800 pci_release_region(pdev, 4);
802 pci_release_region(pdev, 2);
804 release_mem_region(pci_resource_start(pdev, 0) + MTHCA_HCR_BASE,
808 static int __devinit mthca_enable_msi_x(struct mthca_dev *mdev)
810 struct msix_entry entries[3];
813 entries[0].entry = 0;
814 entries[1].entry = 1;
815 entries[2].entry = 2;
817 err = pci_enable_msix(mdev->pdev, entries, ARRAY_SIZE(entries));
820 mthca_info(mdev, "Only %d MSI-X vectors available, "
821 "not using MSI-X\n", err);
825 mdev->eq_table.eq[MTHCA_EQ_COMP ].msi_x_vector = entries[0].vector;
826 mdev->eq_table.eq[MTHCA_EQ_ASYNC].msi_x_vector = entries[1].vector;
827 mdev->eq_table.eq[MTHCA_EQ_CMD ].msi_x_vector = entries[2].vector;
832 static void mthca_close_hca(struct mthca_dev *mdev)
836 mthca_CLOSE_HCA(mdev, 0, &status);
838 if (mdev->hca_type == ARBEL_NATIVE) {
839 mthca_free_icm_table(mdev, mdev->cq_table.table);
840 mthca_free_icm_table(mdev, mdev->qp_table.eqp_table);
841 mthca_free_icm_table(mdev, mdev->qp_table.qp_table);
842 mthca_free_icm_table(mdev, mdev->mr_table.mpt_table);
843 mthca_free_icm_table(mdev, mdev->mr_table.mtt_table);
844 mthca_unmap_eq_icm(mdev);
846 mthca_UNMAP_ICM_AUX(mdev, &status);
847 mthca_free_icm(mdev, mdev->fw.arbel.aux_icm);
849 mthca_UNMAP_FA(mdev, &status);
850 mthca_free_icm(mdev, mdev->fw.arbel.fw_icm);
852 if (!(mdev->mthca_flags & MTHCA_FLAG_NO_LAM))
853 mthca_DISABLE_LAM(mdev, &status);
855 mthca_SYS_DIS(mdev, &status);
858 static int __devinit mthca_init_one(struct pci_dev *pdev,
859 const struct pci_device_id *id)
861 static int mthca_version_printed = 0;
862 static int mthca_memfree_warned = 0;
865 struct mthca_dev *mdev;
867 if (!mthca_version_printed) {
868 printk(KERN_INFO "%s", mthca_version);
869 ++mthca_version_printed;
872 printk(KERN_INFO PFX "Initializing %s (%s)\n",
873 pci_pretty_name(pdev), pci_name(pdev));
875 err = pci_enable_device(pdev);
877 dev_err(&pdev->dev, "Cannot enable PCI device, "
883 * Check for BARs. We expect 0: 1MB, 2: 8MB, 4: DDR (may not
886 if (!(pci_resource_flags(pdev, 0) & IORESOURCE_MEM) ||
887 pci_resource_len(pdev, 0) != 1 << 20) {
888 dev_err(&pdev->dev, "Missing DCS, aborting.");
890 goto err_disable_pdev;
892 if (!(pci_resource_flags(pdev, 2) & IORESOURCE_MEM) ||
893 pci_resource_len(pdev, 2) != 1 << 23) {
894 dev_err(&pdev->dev, "Missing UAR, aborting.");
896 goto err_disable_pdev;
898 if (!(pci_resource_flags(pdev, 4) & IORESOURCE_MEM))
901 err = mthca_request_regions(pdev, ddr_hidden);
903 dev_err(&pdev->dev, "Cannot obtain PCI resources, "
905 goto err_disable_pdev;
908 pci_set_master(pdev);
910 err = pci_set_dma_mask(pdev, DMA_64BIT_MASK);
912 dev_warn(&pdev->dev, "Warning: couldn't set 64-bit PCI DMA mask.\n");
913 err = pci_set_dma_mask(pdev, DMA_32BIT_MASK);
915 dev_err(&pdev->dev, "Can't set PCI DMA mask, aborting.\n");
919 err = pci_set_consistent_dma_mask(pdev, DMA_64BIT_MASK);
921 dev_warn(&pdev->dev, "Warning: couldn't set 64-bit "
922 "consistent PCI DMA mask.\n");
923 err = pci_set_consistent_dma_mask(pdev, DMA_32BIT_MASK);
925 dev_err(&pdev->dev, "Can't set consistent PCI DMA mask, "
931 mdev = (struct mthca_dev *) ib_alloc_device(sizeof *mdev);
933 dev_err(&pdev->dev, "Device struct alloc failed, "
940 mdev->hca_type = id->driver_data;
942 if (mdev->hca_type == ARBEL_NATIVE && !mthca_memfree_warned++)
943 mthca_warn(mdev, "Warning: native MT25208 mode support is incomplete. "
944 "Your HCA may not work properly.\n");
947 mdev->mthca_flags |= MTHCA_FLAG_DDR_HIDDEN;
950 * Now reset the HCA before we touch the PCI capabilities or
951 * attempt a firmware command, since a boot ROM may have left
952 * the HCA in an undefined state.
954 err = mthca_reset(mdev);
956 mthca_err(mdev, "Failed to reset HCA, aborting.\n");
960 if (msi_x && !mthca_enable_msi_x(mdev))
961 mdev->mthca_flags |= MTHCA_FLAG_MSI_X;
962 if (msi && !(mdev->mthca_flags & MTHCA_FLAG_MSI_X) &&
963 !pci_enable_msi(pdev))
964 mdev->mthca_flags |= MTHCA_FLAG_MSI;
966 sema_init(&mdev->cmd.hcr_sem, 1);
967 sema_init(&mdev->cmd.poll_sem, 1);
968 mdev->cmd.use_events = 0;
970 mdev->hcr = ioremap(pci_resource_start(pdev, 0) + MTHCA_HCR_BASE, MTHCA_HCR_SIZE);
972 mthca_err(mdev, "Couldn't map command register, "
978 err = mthca_tune_pci(mdev);
982 err = mthca_init_hca(mdev);
986 err = mthca_setup_hca(mdev);
990 err = mthca_register_device(mdev);
994 err = mthca_create_agents(mdev);
998 pci_set_drvdata(pdev, mdev);
1003 mthca_unregister_device(mdev);
1006 mthca_cleanup_mcg_table(mdev);
1007 mthca_cleanup_av_table(mdev);
1008 mthca_cleanup_qp_table(mdev);
1009 mthca_cleanup_cq_table(mdev);
1010 mthca_cmd_use_polling(mdev);
1011 mthca_cleanup_eq_table(mdev);
1013 mthca_pd_free(mdev, &mdev->driver_pd);
1015 mthca_cleanup_mr_table(mdev);
1016 mthca_cleanup_pd_table(mdev);
1017 mthca_cleanup_uar_table(mdev);
1020 mthca_close_hca(mdev);
1026 if (mdev->mthca_flags & MTHCA_FLAG_MSI_X)
1027 pci_disable_msix(pdev);
1028 if (mdev->mthca_flags & MTHCA_FLAG_MSI)
1029 pci_disable_msi(pdev);
1031 ib_dealloc_device(&mdev->ib_dev);
1034 mthca_release_regions(pdev, ddr_hidden);
1037 pci_disable_device(pdev);
1038 pci_set_drvdata(pdev, NULL);
1042 static void __devexit mthca_remove_one(struct pci_dev *pdev)
1044 struct mthca_dev *mdev = pci_get_drvdata(pdev);
1049 mthca_free_agents(mdev);
1050 mthca_unregister_device(mdev);
1052 for (p = 1; p <= mdev->limits.num_ports; ++p)
1053 mthca_CLOSE_IB(mdev, p, &status);
1055 mthca_cleanup_mcg_table(mdev);
1056 mthca_cleanup_av_table(mdev);
1057 mthca_cleanup_qp_table(mdev);
1058 mthca_cleanup_cq_table(mdev);
1059 mthca_cmd_use_polling(mdev);
1060 mthca_cleanup_eq_table(mdev);
1062 mthca_pd_free(mdev, &mdev->driver_pd);
1064 mthca_cleanup_mr_table(mdev);
1065 mthca_cleanup_pd_table(mdev);
1068 mthca_uar_free(mdev, &mdev->driver_uar);
1069 mthca_cleanup_uar_table(mdev);
1071 mthca_close_hca(mdev);
1075 if (mdev->mthca_flags & MTHCA_FLAG_MSI_X)
1076 pci_disable_msix(pdev);
1077 if (mdev->mthca_flags & MTHCA_FLAG_MSI)
1078 pci_disable_msi(pdev);
1080 ib_dealloc_device(&mdev->ib_dev);
1081 mthca_release_regions(pdev, mdev->mthca_flags &
1082 MTHCA_FLAG_DDR_HIDDEN);
1083 pci_disable_device(pdev);
1084 pci_set_drvdata(pdev, NULL);
1088 static struct pci_device_id mthca_pci_table[] = {
1089 { PCI_DEVICE(PCI_VENDOR_ID_MELLANOX, PCI_DEVICE_ID_MELLANOX_TAVOR),
1090 .driver_data = TAVOR },
1091 { PCI_DEVICE(PCI_VENDOR_ID_TOPSPIN, PCI_DEVICE_ID_MELLANOX_TAVOR),
1092 .driver_data = TAVOR },
1093 { PCI_DEVICE(PCI_VENDOR_ID_MELLANOX, PCI_DEVICE_ID_MELLANOX_ARBEL_COMPAT),
1094 .driver_data = ARBEL_COMPAT },
1095 { PCI_DEVICE(PCI_VENDOR_ID_TOPSPIN, PCI_DEVICE_ID_MELLANOX_ARBEL_COMPAT),
1096 .driver_data = ARBEL_COMPAT },
1097 { PCI_DEVICE(PCI_VENDOR_ID_MELLANOX, PCI_DEVICE_ID_MELLANOX_ARBEL),
1098 .driver_data = ARBEL_NATIVE },
1099 { PCI_DEVICE(PCI_VENDOR_ID_TOPSPIN, PCI_DEVICE_ID_MELLANOX_ARBEL),
1100 .driver_data = ARBEL_NATIVE },
1104 MODULE_DEVICE_TABLE(pci, mthca_pci_table);
1106 static struct pci_driver mthca_driver = {
1108 .id_table = mthca_pci_table,
1109 .probe = mthca_init_one,
1110 .remove = __devexit_p(mthca_remove_one)
1113 static int __init mthca_init(void)
1117 ret = pci_register_driver(&mthca_driver);
1118 return ret < 0 ? ret : 0;
1121 static void __exit mthca_cleanup(void)
1123 pci_unregister_driver(&mthca_driver);
1126 module_init(mthca_init);
1127 module_exit(mthca_cleanup);