Kconfig 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. menu "InfiniBand support"
  2. config INFINIBAND
  3. depends on PCI || BROKEN
  4. tristate "InfiniBand support"
  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. config INFINIBAND_USER_MAD
  10. tristate "InfiniBand userspace MAD support"
  11. depends on INFINIBAND
  12. ---help---
  13. Userspace InfiniBand Management Datagram (MAD) support. This
  14. is the kernel side of the userspace MAD support, which allows
  15. userspace processes to send and receive MADs. You will also
  16. need libibumad from <http://www.openib.org>.
  17. config INFINIBAND_USER_ACCESS
  18. tristate "InfiniBand userspace access (verbs and CM)"
  19. depends on INFINIBAND
  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_ADDR_TRANS
  29. bool
  30. depends on INFINIBAND && INET
  31. default y
  32. source "drivers/infiniband/hw/mthca/Kconfig"
  33. source "drivers/infiniband/hw/ipath/Kconfig"
  34. source "drivers/infiniband/hw/ehca/Kconfig"
  35. source "drivers/infiniband/hw/amso1100/Kconfig"
  36. source "drivers/infiniband/ulp/ipoib/Kconfig"
  37. source "drivers/infiniband/ulp/srp/Kconfig"
  38. source "drivers/infiniband/ulp/iser/Kconfig"
  39. endmenu