Kconfig 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. menu "InfiniBand support"
  2. depends on HAS_IOMEM
  3. config INFINIBAND
  4. depends on PCI || BROKEN
  5. tristate "InfiniBand support"
  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. 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. depends on INFINIBAND
  21. ---help---
  22. Userspace InfiniBand access support. This enables the
  23. kernel side of userspace verbs and the userspace
  24. communication manager (CM). This allows userspace processes
  25. to set up connections and directly access InfiniBand
  26. hardware for fast-path operations. You will also need
  27. libibverbs, libibcm and a hardware driver library from
  28. <http://www.openib.org>.
  29. config INFINIBAND_USER_MEM
  30. bool
  31. depends on INFINIBAND_USER_ACCESS != n
  32. default y
  33. config INFINIBAND_ADDR_TRANS
  34. bool
  35. depends on INFINIBAND && INET
  36. default y
  37. source "drivers/infiniband/hw/mthca/Kconfig"
  38. source "drivers/infiniband/hw/ipath/Kconfig"
  39. source "drivers/infiniband/hw/ehca/Kconfig"
  40. source "drivers/infiniband/hw/amso1100/Kconfig"
  41. source "drivers/infiniband/hw/cxgb3/Kconfig"
  42. source "drivers/infiniband/hw/mlx4/Kconfig"
  43. source "drivers/infiniband/ulp/ipoib/Kconfig"
  44. source "drivers/infiniband/ulp/srp/Kconfig"
  45. source "drivers/infiniband/ulp/iser/Kconfig"
  46. endmenu