Kconfig 773 B

12345678910111213141516171819202122232425262728
  1. menuconfig NTB
  2. tristate "Non-Transparent Bridge support"
  3. depends on PCI
  4. help
  5. The PCI-E Non-transparent bridge hardware is a point-to-point PCI-E bus
  6. connecting 2 systems. When configured, writes to the device's PCI
  7. mapped memory will be mirrored to a buffer on the remote system. The
  8. ntb Linux driver uses this point-to-point communication as a method to
  9. transfer data from one system to the other.
  10. If unsure, say N.
  11. if NTB
  12. source "drivers/ntb/hw/Kconfig"
  13. source "drivers/ntb/test/Kconfig"
  14. config NTB_TRANSPORT
  15. tristate "NTB Transport Client"
  16. help
  17. This is a transport driver that enables connected systems to exchange
  18. messages over the ntb hardware. The transport exposes a queue pair api
  19. to client drivers.
  20. If unsure, say N.
  21. endif # NTB