Kconfig 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  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_USER_MEM
  31. bool
  32. depends on INFINIBAND_USER_ACCESS != n
  33. default y
  34. config INFINIBAND_ADDR_TRANS
  35. bool
  36. depends on INET
  37. depends on !(INFINIBAND = y && IPV6 = m)
  38. default y
  39. source "drivers/infiniband/hw/mthca/Kconfig"
  40. source "drivers/infiniband/hw/ipath/Kconfig"
  41. source "drivers/infiniband/hw/qib/Kconfig"
  42. source "drivers/infiniband/hw/ehca/Kconfig"
  43. source "drivers/infiniband/hw/amso1100/Kconfig"
  44. source "drivers/infiniband/hw/cxgb3/Kconfig"
  45. source "drivers/infiniband/hw/cxgb4/Kconfig"
  46. source "drivers/infiniband/hw/mlx4/Kconfig"
  47. source "drivers/infiniband/hw/nes/Kconfig"
  48. source "drivers/infiniband/ulp/ipoib/Kconfig"
  49. source "drivers/infiniband/ulp/srp/Kconfig"
  50. source "drivers/infiniband/ulp/iser/Kconfig"
  51. endif # INFINIBAND