Kconfig 820 B

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