Kconfig 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  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. select ANON_INODES
  25. ---help---
  26. Userspace InfiniBand access support. This enables the
  27. kernel side of userspace verbs and the userspace
  28. communication manager (CM). This allows userspace processes
  29. to set up connections and directly access InfiniBand
  30. hardware for fast-path operations. You will also need
  31. libibverbs, libibcm and a hardware driver library from
  32. <http://www.openfabrics.org/git/>.
  33. config INFINIBAND_USER_ACCESS_UCM
  34. bool "Userspace CM (UCM, DEPRECATED)"
  35. depends on BROKEN
  36. depends on INFINIBAND_USER_ACCESS
  37. help
  38. The UCM module has known security flaws, which no one is
  39. interested to fix. The user-space part of this code was
  40. dropped from the upstream a long time ago.
  41. This option is DEPRECATED and planned to be removed.
  42. config INFINIBAND_USER_MEM
  43. bool
  44. depends on INFINIBAND_USER_ACCESS != n
  45. default y
  46. config INFINIBAND_ON_DEMAND_PAGING
  47. bool "InfiniBand on-demand paging support"
  48. depends on INFINIBAND_USER_MEM
  49. select MMU_NOTIFIER
  50. default y
  51. ---help---
  52. On demand paging support for the InfiniBand subsystem.
  53. Together with driver support this allows registration of
  54. memory regions without pinning their pages, fetching the
  55. pages on demand instead.
  56. config INFINIBAND_ADDR_TRANS
  57. bool
  58. depends on INFINIBAND
  59. default y
  60. config INFINIBAND_ADDR_TRANS_CONFIGFS
  61. bool
  62. depends on INFINIBAND_ADDR_TRANS && CONFIGFS_FS && !(INFINIBAND=y && CONFIGFS_FS=m)
  63. default y
  64. ---help---
  65. ConfigFS support for RDMA communication manager (CM).
  66. This allows the user to config the default GID type that the CM
  67. uses for each device, when initiaing new connections.
  68. source "drivers/infiniband/hw/mthca/Kconfig"
  69. source "drivers/infiniband/hw/qib/Kconfig"
  70. source "drivers/infiniband/hw/cxgb3/Kconfig"
  71. source "drivers/infiniband/hw/cxgb4/Kconfig"
  72. source "drivers/infiniband/hw/i40iw/Kconfig"
  73. source "drivers/infiniband/hw/mlx4/Kconfig"
  74. source "drivers/infiniband/hw/mlx5/Kconfig"
  75. source "drivers/infiniband/hw/nes/Kconfig"
  76. source "drivers/infiniband/hw/ocrdma/Kconfig"
  77. source "drivers/infiniband/hw/usnic/Kconfig"
  78. source "drivers/infiniband/hw/hns/Kconfig"
  79. source "drivers/infiniband/ulp/ipoib/Kconfig"
  80. source "drivers/infiniband/ulp/srp/Kconfig"
  81. source "drivers/infiniband/ulp/srpt/Kconfig"
  82. source "drivers/infiniband/ulp/iser/Kconfig"
  83. source "drivers/infiniband/ulp/isert/Kconfig"
  84. source "drivers/infiniband/sw/rdmavt/Kconfig"
  85. source "drivers/infiniband/sw/rxe/Kconfig"
  86. source "drivers/infiniband/hw/hfi1/Kconfig"
  87. source "drivers/infiniband/hw/qedr/Kconfig"
  88. endif # INFINIBAND