]>
Commit | Line | Data |
---|---|---|
06cc8508 | 1 | menuconfig INFINIBAND |
1da177e4 | 2 | tristate "InfiniBand support" |
06cc8508 JE |
3 | depends on PCI || BROKEN |
4 | depends on HAS_IOMEM | |
b2cbae2c | 5 | depends on NET |
2f85d24e MB |
6 | depends on INET |
7 | depends on m || IPV6 != m | |
14d3a3b2 | 8 | select IRQ_POLL |
1da177e4 LT |
9 | ---help--- |
10 | Core support for InfiniBand (IB). Make sure to also select | |
11 | any protocols you wish to use as well as drivers for your | |
12 | InfiniBand hardware. | |
13 | ||
06cc8508 JE |
14 | if INFINIBAND |
15 | ||
17781cd6 JL |
16 | config INFINIBAND_USER_MAD |
17 | tristate "InfiniBand userspace MAD support" | |
2d927d69 RD |
18 | depends on INFINIBAND |
19 | ---help--- | |
17781cd6 JL |
20 | Userspace InfiniBand Management Datagram (MAD) support. This |
21 | is the kernel side of the userspace MAD support, which allows | |
3cd96564 | 22 | userspace processes to send and receive MADs. You will also |
631dd1a8 | 23 | need libibumad from <http://www.openfabrics.org/downloads/management/>. |
17781cd6 JL |
24 | |
25 | config INFINIBAND_USER_ACCESS | |
26 | tristate "InfiniBand userspace access (verbs and CM)" | |
a265e558 | 27 | select ANON_INODES |
17781cd6 JL |
28 | ---help--- |
29 | Userspace InfiniBand access support. This enables the | |
30 | kernel side of userspace verbs and the userspace | |
31 | communication manager (CM). This allows userspace processes | |
32 | to set up connections and directly access InfiniBand | |
33 | hardware for fast-path operations. You will also need | |
34 | libibverbs, libibcm and a hardware driver library from | |
631dd1a8 | 35 | <http://www.openfabrics.org/git/>. |
2d927d69 | 36 | |
f7c6a7b5 RD |
37 | config INFINIBAND_USER_MEM |
38 | bool | |
39 | depends on INFINIBAND_USER_ACCESS != n | |
40 | default y | |
41 | ||
860f10a7 SG |
42 | config INFINIBAND_ON_DEMAND_PAGING |
43 | bool "InfiniBand on-demand paging support" | |
44 | depends on INFINIBAND_USER_MEM | |
882214e2 | 45 | select MMU_NOTIFIER |
860f10a7 SG |
46 | default y |
47 | ---help--- | |
48 | On demand paging support for the InfiniBand subsystem. | |
49 | Together with driver support this allows registration of | |
50 | memory regions without pinning their pages, fetching the | |
51 | pages on demand instead. | |
52 | ||
7025fcd3 SH |
53 | config INFINIBAND_ADDR_TRANS |
54 | bool | |
2f85d24e | 55 | depends on INFINIBAND |
7025fcd3 SH |
56 | default y |
57 | ||
045959db MB |
58 | config INFINIBAND_ADDR_TRANS_CONFIGFS |
59 | bool | |
60 | depends on INFINIBAND_ADDR_TRANS && CONFIGFS_FS && !(INFINIBAND=y && CONFIGFS_FS=m) | |
61 | default y | |
62 | ---help--- | |
63 | ConfigFS support for RDMA communication manager (CM). | |
64 | This allows the user to config the default GID type that the CM | |
65 | uses for each device, when initiaing new connections. | |
66 | ||
1da177e4 | 67 | source "drivers/infiniband/hw/mthca/Kconfig" |
f931551b | 68 | source "drivers/infiniband/hw/qib/Kconfig" |
b038ced7 | 69 | source "drivers/infiniband/hw/cxgb3/Kconfig" |
cfdda9d7 | 70 | source "drivers/infiniband/hw/cxgb4/Kconfig" |
6e4de866 | 71 | source "drivers/infiniband/hw/i40iw/Kconfig" |
225c7b1f | 72 | source "drivers/infiniband/hw/mlx4/Kconfig" |
e126ba97 | 73 | source "drivers/infiniband/hw/mlx5/Kconfig" |
3c2d774c | 74 | source "drivers/infiniband/hw/nes/Kconfig" |
fe2caefc | 75 | source "drivers/infiniband/hw/ocrdma/Kconfig" |
e3cf00d0 | 76 | source "drivers/infiniband/hw/usnic/Kconfig" |
8793f779 | 77 | source "drivers/infiniband/hw/hns/Kconfig" |
225c7b1f | 78 | |
1da177e4 LT |
79 | source "drivers/infiniband/ulp/ipoib/Kconfig" |
80 | ||
aef9ec39 | 81 | source "drivers/infiniband/ulp/srp/Kconfig" |
a42d985b | 82 | source "drivers/infiniband/ulp/srpt/Kconfig" |
aef9ec39 | 83 | |
3f1244a2 | 84 | source "drivers/infiniband/ulp/iser/Kconfig" |
b8d26b3b | 85 | source "drivers/infiniband/ulp/isert/Kconfig" |
3f1244a2 | 86 | |
0194621b | 87 | source "drivers/infiniband/sw/rdmavt/Kconfig" |
8700e3e7 | 88 | source "drivers/infiniband/sw/rxe/Kconfig" |
0194621b | 89 | |
f48ad614 DD |
90 | source "drivers/infiniband/hw/hfi1/Kconfig" |
91 | ||
2e0cbc4d RA |
92 | source "drivers/infiniband/hw/qedr/Kconfig" |
93 | ||
06cc8508 | 94 | endif # INFINIBAND |