Kconfig 1.7 KB

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