blob: b84791f03a27f5d174b60680f77c59de06bb542a [file] [log] [blame]
Jan Engelhardt06cc8502007-05-23 14:21:22 -07001menuconfig INFINIBAND
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 tristate "InfiniBand support"
Jan Engelhardt06cc8502007-05-23 14:21:22 -07003 depends on PCI || BROKEN
4 depends on HAS_IOMEM
Roland Dreierb2cbae22011-05-20 11:46:11 -07005 depends on NET
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 ---help---
7 Core support for InfiniBand (IB). Make sure to also select
8 any protocols you wish to use as well as drivers for your
9 InfiniBand hardware.
10
Jan Engelhardt06cc8502007-05-23 14:21:22 -070011if INFINIBAND
12
James Lentini17781cd2005-09-07 12:43:08 -070013config INFINIBAND_USER_MAD
14 tristate "InfiniBand userspace MAD support"
Roland Dreier2d927d62005-07-07 17:57:14 -070015 depends on INFINIBAND
16 ---help---
James Lentini17781cd2005-09-07 12:43:08 -070017 Userspace InfiniBand Management Datagram (MAD) support. This
18 is the kernel side of the userspace MAD support, which allows
Roland Dreier3cd96562006-09-22 15:22:46 -070019 userspace processes to send and receive MADs. You will also
Justin P. Mattock631dd1a2010-10-18 11:03:14 +020020 need libibumad from <http://www.openfabrics.org/downloads/management/>.
James Lentini17781cd2005-09-07 12:43:08 -070021
22config INFINIBAND_USER_ACCESS
23 tristate "InfiniBand userspace access (verbs and CM)"
Roland Dreiera265e552010-02-24 16:51:20 -080024 select ANON_INODES
James Lentini17781cd2005-09-07 12:43:08 -070025 ---help---
26 Userspace InfiniBand access support. This enables the
27 kernel side of userspace verbs and the userspace
28 communication manager (CM). This allows userspace processes
29 to set up connections and directly access InfiniBand
30 hardware for fast-path operations. You will also need
31 libibverbs, libibcm and a hardware driver library from
Justin P. Mattock631dd1a2010-10-18 11:03:14 +020032 <http://www.openfabrics.org/git/>.
Roland Dreier2d927d62005-07-07 17:57:14 -070033
Yann Droneaud7afbddf2013-10-10 11:10:55 +020034config INFINIBAND_EXPERIMENTAL_UVERBS_FLOW_STEERING
35 bool "Experimental and unstable ABI for userspace access to flow steering verbs"
36 depends on INFINIBAND_USER_ACCESS
37 depends on STAGING
38 ---help---
39 The final ABI for userspace access to flow steering verbs
40 has not been defined. To use the current ABI, *WHICH WILL
41 CHANGE IN THE FUTURE*, say Y here.
42
43 If unsure, say N.
44
Roland Dreierf7c6a7b2007-03-04 16:15:11 -080045config INFINIBAND_USER_MEM
46 bool
47 depends on INFINIBAND_USER_ACCESS != n
48 default y
49
Sean Hefty7025fcd2006-06-17 20:37:28 -070050config INFINIBAND_ADDR_TRANS
51 bool
Jan Engelhardt06cc8502007-05-23 14:21:22 -070052 depends on INET
Roland Dreier2c4ab622008-12-29 23:37:14 -080053 depends on !(INFINIBAND = y && IPV6 = m)
Sean Hefty7025fcd2006-06-17 20:37:28 -070054 default y
55
Linus Torvalds1da177e2005-04-16 15:20:36 -070056source "drivers/infiniband/hw/mthca/Kconfig"
Bryan O'Sullivan77d87982006-03-29 15:23:39 -080057source "drivers/infiniband/hw/ipath/Kconfig"
Ralph Campbellf9315512010-05-23 21:44:54 -070058source "drivers/infiniband/hw/qib/Kconfig"
Heiko J Schickfab97222006-09-22 15:22:22 -070059source "drivers/infiniband/hw/ehca/Kconfig"
Tom Tuckerf94b5332006-09-22 15:22:48 -070060source "drivers/infiniband/hw/amso1100/Kconfig"
Steve Wiseb038ced2007-02-12 16:16:18 -080061source "drivers/infiniband/hw/cxgb3/Kconfig"
Steve Wisecfdda9d2010-04-21 15:30:06 -070062source "drivers/infiniband/hw/cxgb4/Kconfig"
Roland Dreier225c7b12007-05-08 18:00:38 -070063source "drivers/infiniband/hw/mlx4/Kconfig"
Eli Cohene126ba92013-07-07 17:25:49 +030064source "drivers/infiniband/hw/mlx5/Kconfig"
Glenn Streiff3c2d7742008-02-04 20:20:45 -080065source "drivers/infiniband/hw/nes/Kconfig"
Parav Panditfe2caef2012-03-21 04:09:06 +053066source "drivers/infiniband/hw/ocrdma/Kconfig"
Roland Dreier225c7b12007-05-08 18:00:38 -070067
Linus Torvalds1da177e2005-04-16 15:20:36 -070068source "drivers/infiniband/ulp/ipoib/Kconfig"
69
Roland Dreieraef9ec32005-11-02 14:07:13 -080070source "drivers/infiniband/ulp/srp/Kconfig"
Bart Van Asschea42d9852011-10-14 01:30:46 +000071source "drivers/infiniband/ulp/srpt/Kconfig"
Roland Dreieraef9ec32005-11-02 14:07:13 -080072
Or Gerlitz3f1244a2006-05-11 10:03:30 +030073source "drivers/infiniband/ulp/iser/Kconfig"
Nicholas Bellingerb8d26b32013-03-07 00:56:19 -080074source "drivers/infiniband/ulp/isert/Kconfig"
Or Gerlitz3f1244a2006-05-11 10:03:30 +030075
Jan Engelhardt06cc8502007-05-23 14:21:22 -070076endif # INFINIBAND