Kconfig 835 B

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