-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
IB/qib: Add new qib driver for QLogic PCIe InfiniBand adapters
Add a low-level IB driver for QLogic PCIe adapters. Signed-off-by: Ralph Campbell <ralph.campbell@qlogic.com> Signed-off-by: Roland Dreier <rolandd@cisco.com>
- Loading branch information
Ralph Campbell
authored and
Roland Dreier
committed
May 24, 2010
1 parent
9a6edb6
commit f931551
Showing
51 changed files
with
52,965 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
config INFINIBAND_QIB | ||
tristate "QLogic PCIe HCA support" | ||
depends on 64BIT && NET | ||
---help--- | ||
This is a low-level driver for QLogic PCIe QLE InfiniBand host | ||
channel adapters. This driver does not support the QLogic | ||
HyperTransport card (model QHT7140). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
obj-$(CONFIG_INFINIBAND_QIB) += ib_qib.o | ||
|
||
ib_qib-y := qib_cq.o qib_diag.o qib_dma.o qib_driver.o qib_eeprom.o \ | ||
qib_file_ops.o qib_fs.o qib_init.o qib_intr.o qib_keys.o \ | ||
qib_mad.o qib_mmap.o qib_mr.o qib_pcie.o qib_pio_copy.o \ | ||
qib_qp.o qib_qsfp.o qib_rc.o qib_ruc.o qib_sdma.o qib_srq.o \ | ||
qib_sysfs.o qib_twsi.o qib_tx.o qib_uc.o qib_ud.o \ | ||
qib_user_pages.o qib_user_sdma.o qib_verbs_mcast.o qib_iba7220.o \ | ||
qib_sd7220.o qib_sd7220_img.o qib_iba7322.o qib_verbs.o | ||
|
||
# 6120 has no fallback if no MSI interrupts, others can do INTx | ||
ib_qib-$(CONFIG_PCI_MSI) += qib_iba6120.o | ||
|
||
ib_qib-$(CONFIG_X86_64) += qib_wc_x86_64.o | ||
ib_qib-$(CONFIG_PPC64) += qib_wc_ppc64.o |
Oops, something went wrong.