Kconfig 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  1. menuconfig INFINIBAND
  2. tristate "InfiniBand support"
  3. depends on PCI || BROKEN
  4. depends on HAS_IOMEM
  5. depends on NET
  6. depends on INET
  7. depends on m || IPV6 != m
  8. select IRQ_POLL
  9. ---help---
  10. Core support for InfiniBand (IB). Make sure to also select
  11. any protocols you wish to use as well as drivers for your
  12. InfiniBand hardware.
  13. if INFINIBAND
  14. config INFINIBAND_USER_MAD
  15. tristate "InfiniBand userspace MAD support"
  16. depends on INFINIBAND
  17. ---help---
  18. Userspace InfiniBand Management Datagram (MAD) support. This
  19. is the kernel side of the userspace MAD support, which allows
  20. userspace processes to send and receive MADs. You will also
  21. need libibumad from <http://www.openfabrics.org/downloads/management/>.
  22. config INFINIBAND_USER_ACCESS
  23. tristate "InfiniBand userspace access (verbs and CM)"
  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.openfabrics.org/git/>.
  32. config INFINIBAND_USER_ACCESS_UCM
  33. bool "Userspace CM (UCM, DEPRECATED)"
  34. depends on BROKEN
  35. depends on INFINIBAND_USER_ACCESS
  36. help
  37. The UCM module has known security flaws, which no one is
  38. interested to fix. The user-space part of this code was
  39. dropped from the upstream a long time ago.
  40. This option is DEPRECATED and planned to be removed.
  41. config INFINIBAND_EXP_USER_ACCESS
  42. bool "Allow experimental support for Infiniband ABI"
  43. depends on INFINIBAND_USER_ACCESS
  44. ---help---
  45. IOCTL based ABI support for Infiniband. This allows userspace
  46. to invoke the experimental IOCTL based ABI.
  47. These commands are parsed via per-device parsing tree and
  48. enables per-device features.
  49. config INFINIBAND_USER_MEM
  50. bool
  51. depends on INFINIBAND_USER_ACCESS != n
  52. default y
  53. config INFINIBAND_ON_DEMAND_PAGING
  54. bool "InfiniBand on-demand paging support"
  55. depends on INFINIBAND_USER_MEM
  56. select MMU_NOTIFIER
  57. default y
  58. ---help---
  59. On demand paging support for the InfiniBand subsystem.
  60. Together with driver support this allows registration of
  61. memory regions without pinning their pages, fetching the
  62. pages on demand instead.
  63. config INFINIBAND_ADDR_TRANS
  64. bool "RDMA/CM"
  65. depends on INFINIBAND
  66. default y
  67. ---help---
  68. Support for RDMA communication manager (CM).
  69. This allows for a generic connection abstraction over RDMA.
  70. config INFINIBAND_ADDR_TRANS_CONFIGFS
  71. bool
  72. depends on INFINIBAND_ADDR_TRANS && CONFIGFS_FS && !(INFINIBAND=y && CONFIGFS_FS=m)
  73. default y
  74. ---help---
  75. ConfigFS support for RDMA communication manager (CM).
  76. This allows the user to config the default GID type that the CM
  77. uses for each device, when initiaing new connections.
  78. source "drivers/infiniband/hw/mthca/Kconfig"
  79. source "drivers/infiniband/hw/qib/Kconfig"
  80. source "drivers/infiniband/hw/cxgb3/Kconfig"
  81. source "drivers/infiniband/hw/cxgb4/Kconfig"
  82. source "drivers/infiniband/hw/i40iw/Kconfig"
  83. source "drivers/infiniband/hw/mlx4/Kconfig"
  84. source "drivers/infiniband/hw/mlx5/Kconfig"
  85. source "drivers/infiniband/hw/nes/Kconfig"
  86. source "drivers/infiniband/hw/ocrdma/Kconfig"
  87. source "drivers/infiniband/hw/vmw_pvrdma/Kconfig"
  88. source "drivers/infiniband/hw/usnic/Kconfig"
  89. source "drivers/infiniband/hw/hns/Kconfig"
  90. source "drivers/infiniband/ulp/ipoib/Kconfig"
  91. source "drivers/infiniband/ulp/srp/Kconfig"
  92. source "drivers/infiniband/ulp/srpt/Kconfig"
  93. source "drivers/infiniband/ulp/iser/Kconfig"
  94. source "drivers/infiniband/ulp/isert/Kconfig"
  95. source "drivers/infiniband/ulp/opa_vnic/Kconfig"
  96. source "drivers/infiniband/sw/rdmavt/Kconfig"
  97. source "drivers/infiniband/sw/rxe/Kconfig"
  98. source "drivers/infiniband/hw/hfi1/Kconfig"
  99. source "drivers/infiniband/hw/qedr/Kconfig"
  100. source "drivers/infiniband/hw/bnxt_re/Kconfig"
  101. endif # INFINIBAND