Kconfig 784 B

1234567891011121314151617181920212223242526272829
  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. select OMAP_IOMMU
  10. select REMOTEPROC
  11. select OMAP_MBOX_FWK
  12. select RPMSG
  13. default m
  14. help
  15. Say y here to support OMAP's remote processors (dual M3
  16. and DSP on OMAP4) via the remote processor framework.
  17. Currently only supported on OMAP4.
  18. Usually you want to say y here, in order to enable multimedia
  19. use-cases to run on your platform (multimedia codecs are
  20. offloaded to remote DSP processors using this framework).
  21. It's safe to say n here if you're not interested in multimedia
  22. offloading or just want a bare minimum kernel.
  23. endmenu