Kconfig 744 B

12345678910111213141516171819202122232425262728
  1. menu "Remoteproc drivers"
  2. # REMOTEPROC gets selected by whoever wants it
  3. config REMOTEPROC
  4. tristate
  5. config OMAP_REMOTEPROC
  6. tristate "OMAP remoteproc support"
  7. depends on ARCH_OMAP4
  8. select OMAP_IOMMU
  9. select REMOTEPROC
  10. select OMAP_MBOX_FWK
  11. select RPMSG
  12. default m
  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