Kconfig 787 B

1234567891011121314151617181920212223
  1. # SPDX-License-Identifier: GPL-2.0
  2. config DIBS
  3. tristate "DIBS support"
  4. default n
  5. help
  6. Direct Internal Buffer Sharing (DIBS)
  7. A communication method that uses common physical (internal) memory
  8. for synchronous direct access into a remote buffer.
  9. Select this option to provide the abstraction layer between
  10. dibs devices and dibs clients like the SMC protocol.
  11. The module name is dibs.
  12. config DIBS_LO
  13. bool "intra-OS shortcut with dibs loopback"
  14. depends on DIBS
  15. default n
  16. help
  17. DIBS_LO enables the creation of an software-emulated dibs device
  18. named lo which can be used for transferring data when communication
  19. occurs within the same OS. This helps in convenient testing of
  20. dibs clients, since dibs loopback is independent of architecture or
  21. hardware.