Kconfig 2.4 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
L
Linus Torvalds 已提交
8 9 10 11 12
	---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.

13 14
if INFINIBAND

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

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

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

41 42 43
config INFINIBAND_ON_DEMAND_PAGING
	bool "InfiniBand on-demand paging support"
	depends on INFINIBAND_USER_MEM
44
	select MMU_NOTIFIER
45 46 47 48 49 50 51
	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.

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

L
Linus Torvalds 已提交
57
source "drivers/infiniband/hw/mthca/Kconfig"
58
source "drivers/infiniband/hw/qib/Kconfig"
59
source "drivers/infiniband/hw/ehca/Kconfig"
60
source "drivers/infiniband/hw/amso1100/Kconfig"
61
source "drivers/infiniband/hw/cxgb3/Kconfig"
62
source "drivers/infiniband/hw/cxgb4/Kconfig"
63
source "drivers/infiniband/hw/mlx4/Kconfig"
64
source "drivers/infiniband/hw/mlx5/Kconfig"
65
source "drivers/infiniband/hw/nes/Kconfig"
66
source "drivers/infiniband/hw/ocrdma/Kconfig"
67
source "drivers/infiniband/hw/usnic/Kconfig"
68

L
Linus Torvalds 已提交
69 70
source "drivers/infiniband/ulp/ipoib/Kconfig"

71
source "drivers/infiniband/ulp/srp/Kconfig"
72
source "drivers/infiniband/ulp/srpt/Kconfig"
73

O
Or Gerlitz 已提交
74
source "drivers/infiniband/ulp/iser/Kconfig"
75
source "drivers/infiniband/ulp/isert/Kconfig"
O
Or Gerlitz 已提交
76

77
endif # INFINIBAND