Kconfig 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. menu "Remoteproc drivers"
  2. # REMOTEPROC gets selected by whoever wants it
  3. config REMOTEPROC
  4. tristate
  5. depends on HAS_DMA
  6. select FW_CONFIG
  7. select VIRTIO
  8. config OMAP_REMOTEPROC
  9. tristate "OMAP remoteproc support"
  10. depends on HAS_DMA
  11. depends on ARCH_OMAP4
  12. depends on OMAP_IOMMU
  13. depends on OMAP_MBOX_FWK
  14. select REMOTEPROC
  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. config STE_MODEM_RPROC
  26. tristate "STE-Modem remoteproc support"
  27. depends on HAS_DMA
  28. select REMOTEPROC
  29. default n
  30. help
  31. Say y or m here to support STE-Modem shared memory driver.
  32. This can be either built-in or a loadable module.
  33. If unsure say N.
  34. endmenu