Kconfig 1.6 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3
menu "InfiniBand support"

config INFINIBAND
4
	depends on PCI || BROKEN
L
Linus Torvalds 已提交
5 6 7 8 9 10
	tristate "InfiniBand support"
	---help---
	  Core support for InfiniBand (IB).  Make sure to also select
	  any protocols you wish to use as well as drivers for your
	  InfiniBand hardware.

11 12
config INFINIBAND_USER_MAD
	tristate "InfiniBand userspace MAD support"
13 14
	depends on INFINIBAND
	---help---
15 16
	  Userspace InfiniBand Management Datagram (MAD) support.  This
	  is the kernel side of the userspace MAD support, which allows
R
Roland Dreier 已提交
17
	  userspace processes to send and receive MADs. You will also
18 19 20 21 22 23 24 25 26 27 28 29 30
	  need libibumad from <http://www.openib.org>.

config INFINIBAND_USER_ACCESS
	tristate "InfiniBand userspace access (verbs and CM)"
	depends on INFINIBAND
	---help---
	  Userspace InfiniBand access support.  This enables the
	  kernel side of userspace verbs and the userspace
	  communication manager (CM).  This allows userspace processes
	  to set up connections and directly access InfiniBand
	  hardware for fast-path operations.  You will also need
	  libibverbs, libibcm and a hardware driver library from
	  <http://www.openib.org>.
31

32 33 34 35 36
config INFINIBAND_USER_MEM
	bool
	depends on INFINIBAND_USER_ACCESS != n
	default y

37 38 39 40 41
config INFINIBAND_ADDR_TRANS
	bool
	depends on INFINIBAND && INET
	default y

L
Linus Torvalds 已提交
42
source "drivers/infiniband/hw/mthca/Kconfig"
43
source "drivers/infiniband/hw/ipath/Kconfig"
44
source "drivers/infiniband/hw/ehca/Kconfig"
45
source "drivers/infiniband/hw/amso1100/Kconfig"
46
source "drivers/infiniband/hw/cxgb3/Kconfig"
L
Linus Torvalds 已提交
47

48 49
source "drivers/infiniband/hw/mlx4/Kconfig"

L
Linus Torvalds 已提交
50 51
source "drivers/infiniband/ulp/ipoib/Kconfig"

52 53
source "drivers/infiniband/ulp/srp/Kconfig"

O
Or Gerlitz 已提交
54 55
source "drivers/infiniband/ulp/iser/Kconfig"

L
Linus Torvalds 已提交
56
endmenu