xref: /openbmc/linux/drivers/infiniband/Kconfig (revision 64c70b1c)
1menu "InfiniBand support"
2	depends on HAS_IOMEM
3
4config INFINIBAND
5	depends on PCI || BROKEN
6	tristate "InfiniBand support"
7	---help---
8	  Core support for InfiniBand (IB).  Make sure to also select
9	  any protocols you wish to use as well as drivers for your
10	  InfiniBand hardware.
11
12config INFINIBAND_USER_MAD
13	tristate "InfiniBand userspace MAD support"
14	depends on INFINIBAND
15	---help---
16	  Userspace InfiniBand Management Datagram (MAD) support.  This
17	  is the kernel side of the userspace MAD support, which allows
18	  userspace processes to send and receive MADs. You will also
19	  need libibumad from <http://www.openib.org>.
20
21config INFINIBAND_USER_ACCESS
22	tristate "InfiniBand userspace access (verbs and CM)"
23	depends on INFINIBAND
24	---help---
25	  Userspace InfiniBand access support.  This enables the
26	  kernel side of userspace verbs and the userspace
27	  communication manager (CM).  This allows userspace processes
28	  to set up connections and directly access InfiniBand
29	  hardware for fast-path operations.  You will also need
30	  libibverbs, libibcm and a hardware driver library from
31	  <http://www.openib.org>.
32
33config INFINIBAND_USER_MEM
34	bool
35	depends on INFINIBAND_USER_ACCESS != n
36	default y
37
38config INFINIBAND_ADDR_TRANS
39	bool
40	depends on INFINIBAND && INET
41	default y
42
43source "drivers/infiniband/hw/mthca/Kconfig"
44source "drivers/infiniband/hw/ipath/Kconfig"
45source "drivers/infiniband/hw/ehca/Kconfig"
46source "drivers/infiniband/hw/amso1100/Kconfig"
47source "drivers/infiniband/hw/cxgb3/Kconfig"
48
49source "drivers/infiniband/hw/mlx4/Kconfig"
50
51source "drivers/infiniband/ulp/ipoib/Kconfig"
52
53source "drivers/infiniband/ulp/srp/Kconfig"
54
55source "drivers/infiniband/ulp/iser/Kconfig"
56
57endmenu
58