Kconfig 914 B

123456789101112131415161718192021222324252627
  1. menu "Mailbox Controller Support"
  2. config DM_MAILBOX
  3. bool "Enable mailbox controllers using Driver Model"
  4. depends on DM && OF_CONTROL
  5. help
  6. Enable support for the mailbox driver class. Mailboxes provide the
  7. ability to transfer small messages and/or notifications from one
  8. CPU to another CPU, or sometimes to dedicated HW modules. They form
  9. the basis of a variety of inter-process/inter-CPU communication
  10. protocols.
  11. config SANDBOX_MBOX
  12. bool "Enable the sandbox mailbox test driver"
  13. depends on DM_MAILBOX && SANDBOX
  14. help
  15. Enable support for a test mailbox implementation, which simply echos
  16. back a modified version of any message that is sent.
  17. config TEGRA_HSP
  18. bool "Enable Tegra HSP controller support"
  19. depends on DM_MAILBOX && TEGRA
  20. help
  21. This enables support for the NVIDIA Tegra HSP Hw module, which
  22. implements doorbells, mailboxes, semaphores, and shared interrupts.
  23. endmenu