Kconfig 654 B

12345678910111213141516171819
  1. menuconfig MAILBOX
  2. bool "Mailbox Hardware Support"
  3. help
  4. Mailbox is a framework to control hardware communication between
  5. on-chip processors through queued messages and interrupt driven
  6. signals. Say Y if your platform supports hardware mailboxes.
  7. if MAILBOX
  8. config PL320_MBOX
  9. bool "ARM PL320 Mailbox"
  10. depends on ARM_AMBA
  11. help
  12. An implementation of the ARM PL320 Interprocessor Communication
  13. Mailbox (IPCM), tailored for the Calxeda Highbank. It is used to
  14. send short messages between Highbank's A9 cores and the EnergyCore
  15. Management Engine, primarily for cpufreq. Say Y here if you want
  16. to use the PL320 IPCM support.
  17. endif