Kconfig 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. menuconfig INFINIBAND
  2. tristate "InfiniBand support"
  3. depends on PCI || BROKEN
  4. depends on HAS_IOMEM
  5. depends on NET
  6. ---help---
  7. Core support for InfiniBand (IB). Make sure to also select
  8. any protocols you wish to use as well as drivers for your
  9. InfiniBand hardware.
  10. if INFINIBAND
  11. config INFINIBAND_USER_MAD
  12. tristate "InfiniBand userspace MAD support"
  13. depends on INFINIBAND
  14. ---help---
  15. Userspace InfiniBand Management Datagram (MAD) support. This
  16. is the kernel side of the userspace MAD support, which allows
  17. userspace processes to send and receive MADs. You will also
  18. need libibumad from <http://www.openfabrics.org/downloads/management/>.
  19. config INFINIBAND_USER_ACCESS
  20. tristate "InfiniBand userspace access (verbs and CM)"
  21. select ANON_INODES
  22. ---help---
  23. Userspace InfiniBand access support. This enables the
  24. kernel side of userspace verbs and the userspace
  25. communication manager (CM). This allows userspace processes
  26. to set up connections and directly access InfiniBand
  27. hardware for fast-path operations. You will also need
  28. libibverbs, libibcm and a hardware driver library from
  29. <http://www.openfabrics.org/git/>.
  30. config INFINIBAND_EXPERIMENTAL_UVERBS_FLOW_STEERING
  31. bool "Experimental and unstable ABI for userspace access to flow steering verbs"
  32. depends on INFINIBAND_USER_ACCESS
  33. depends on STAGING
  34. ---help---
  35. The final ABI for userspace access to flow steering verbs
  36. has not been defined. To use the current ABI, *WHICH WILL
  37. CHANGE IN THE FUTURE*, say Y here.
  38. If unsure, say N.
  39. config INFINIBAND_USER_MEM
  40. bool
  41. depends on INFINIBAND_USER_ACCESS != n
  42. default y
  43. config INFINIBAND_ADDR_TRANS
  44. bool
  45. depends on INET
  46. depends on !(INFINIBAND = y && IPV6 = m)
  47. default y
  48. source "drivers/infiniband/hw/mthca/Kconfig"
  49. source "drivers/infiniband/hw/ipath/Kconfig"
  50. source "drivers/infiniband/hw/qib/Kconfig"
  51. source "drivers/infiniband/hw/ehca/Kconfig"
  52. source "drivers/infiniband/hw/amso1100/Kconfig"
  53. source "drivers/infiniband/hw/cxgb3/Kconfig"
  54. source "drivers/infiniband/hw/cxgb4/Kconfig"
  55. source "drivers/infiniband/hw/mlx4/Kconfig"
  56. source "drivers/infiniband/hw/mlx5/Kconfig"
  57. source "drivers/infiniband/hw/nes/Kconfig"
  58. source "drivers/infiniband/hw/ocrdma/Kconfig"
  59. source "drivers/infiniband/ulp/ipoib/Kconfig"
  60. source "drivers/infiniband/ulp/srp/Kconfig"
  61. source "drivers/infiniband/ulp/srpt/Kconfig"
  62. source "drivers/infiniband/ulp/iser/Kconfig"
  63. source "drivers/infiniband/ulp/isert/Kconfig"
  64. endif # INFINIBAND