Kconfig 777 B

12345678910111213141516171819202122232425262728
  1. menu "Remoteproc drivers (EXPERIMENTAL)"
  2. # REMOTEPROC gets selected by whoever wants it
  3. config REMOTEPROC
  4. tristate
  5. depends on EXPERIMENTAL
  6. config OMAP_REMOTEPROC
  7. tristate "OMAP remoteproc support"
  8. depends on ARCH_OMAP4
  9. depends on OMAP_IOMMU
  10. select REMOTEPROC
  11. select OMAP_MBOX_FWK
  12. select RPMSG
  13. help
  14. Say y here to support OMAP's remote processors (dual M3
  15. and DSP on OMAP4) via the remote processor framework.
  16. Currently only supported on OMAP4.
  17. Usually you want to say y here, in order to enable multimedia
  18. use-cases to run on your platform (multimedia codecs are
  19. offloaded to remote DSP processors using this framework).
  20. It's safe to say n here if you're not interested in multimedia
  21. offloading or just want a bare minimum kernel.
  22. endmenu