Kconfig 2.8 KB
Newer Older
1
menuconfig INFINIBAND
L
Linus Torvalds 已提交
2
	tristate "InfiniBand support"
3 4
	depends on PCI || BROKEN
	depends on HAS_IOMEM
R
Roland Dreier 已提交
5
	depends on NET
6 7
	depends on INET
	depends on m || IPV6 != m
8
	select IRQ_POLL
L
Linus Torvalds 已提交
9 10 11 12 13
	---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.

14 15
if INFINIBAND

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

config INFINIBAND_USER_ACCESS
	tristate "InfiniBand userspace access (verbs and CM)"
27
	select ANON_INODES
28 29 30 31 32 33 34
	---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
35
	  <http://www.openfabrics.org/git/>.
36

37 38 39 40 41
config INFINIBAND_USER_MEM
	bool
	depends on INFINIBAND_USER_ACCESS != n
	default y

42 43 44
config INFINIBAND_ON_DEMAND_PAGING
	bool "InfiniBand on-demand paging support"
	depends on INFINIBAND_USER_MEM
45
	select MMU_NOTIFIER
46 47 48 49 50 51 52
	default y
	---help---
	  On demand paging support for the InfiniBand subsystem.
	  Together with driver support this allows registration of
	  memory regions without pinning their pages, fetching the
	  pages on demand instead.

53 54
config INFINIBAND_ADDR_TRANS
	bool
55
	depends on INFINIBAND
56 57
	default y

M
Matan Barak 已提交
58 59 60 61 62 63 64 65 66
config INFINIBAND_ADDR_TRANS_CONFIGFS
	bool
	depends on INFINIBAND_ADDR_TRANS && CONFIGFS_FS && !(INFINIBAND=y && CONFIGFS_FS=m)
	default y
	---help---
	  ConfigFS support for RDMA communication manager (CM).
	  This allows the user to config the default GID type that the CM
	  uses for each device, when initiaing new connections.

L
Linus Torvalds 已提交
67
source "drivers/infiniband/hw/mthca/Kconfig"
68
source "drivers/infiniband/hw/qib/Kconfig"
69
source "drivers/infiniband/hw/cxgb3/Kconfig"
70
source "drivers/infiniband/hw/cxgb4/Kconfig"
71
source "drivers/infiniband/hw/i40iw/Kconfig"
72
source "drivers/infiniband/hw/mlx4/Kconfig"
73
source "drivers/infiniband/hw/mlx5/Kconfig"
74
source "drivers/infiniband/hw/nes/Kconfig"
75
source "drivers/infiniband/hw/ocrdma/Kconfig"
76
source "drivers/infiniband/hw/usnic/Kconfig"
77

L
Linus Torvalds 已提交
78 79
source "drivers/infiniband/ulp/ipoib/Kconfig"

80
source "drivers/infiniband/ulp/srp/Kconfig"
81
source "drivers/infiniband/ulp/srpt/Kconfig"
82

O
Or Gerlitz 已提交
83
source "drivers/infiniband/ulp/iser/Kconfig"
84
source "drivers/infiniband/ulp/isert/Kconfig"
O
Or Gerlitz 已提交
85

86 87
source "drivers/infiniband/sw/rdmavt/Kconfig"

88 89
source "drivers/infiniband/hw/hfi1/Kconfig"

90
endif # INFINIBAND