Kconfig 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. menu "Remoteproc drivers"
  2. # REMOTEPROC gets selected by whoever wants it
  3. config REMOTEPROC
  4. tristate
  5. depends on HAS_DMA
  6. select CRC32
  7. select FW_CONFIG
  8. select VIRTIO
  9. config OMAP_REMOTEPROC
  10. tristate "OMAP remoteproc support"
  11. depends on HAS_DMA
  12. depends on ARCH_OMAP4 || SOC_OMAP5
  13. depends on OMAP_IOMMU
  14. depends on OMAP_MBOX_FWK
  15. select REMOTEPROC
  16. select RPMSG
  17. help
  18. Say y here to support OMAP's remote processors (dual M3
  19. and DSP on OMAP4) via the remote processor framework.
  20. Currently only supported on OMAP4.
  21. Usually you want to say y here, in order to enable multimedia
  22. use-cases to run on your platform (multimedia codecs are
  23. offloaded to remote DSP processors using this framework).
  24. It's safe to say n here if you're not interested in multimedia
  25. offloading or just want a bare minimum kernel.
  26. config STE_MODEM_RPROC
  27. tristate "STE-Modem remoteproc support"
  28. depends on HAS_DMA
  29. select REMOTEPROC
  30. default n
  31. help
  32. Say y or m here to support STE-Modem shared memory driver.
  33. This can be either built-in or a loadable module.
  34. If unsure say N.
  35. config DA8XX_REMOTEPROC
  36. tristate "DA8xx/OMAP-L13x remoteproc support"
  37. depends on ARCH_DAVINCI_DA8XX
  38. select CMA
  39. select REMOTEPROC
  40. select RPMSG
  41. help
  42. Say y here to support DA8xx/OMAP-L13x remote processors via the
  43. remote processor framework.
  44. You want to say y here in order to enable AMP
  45. use-cases to run on your platform (multimedia codecs are
  46. offloaded to remote DSP processors using this framework).
  47. This module controls the name of the firmware file that gets
  48. loaded on the DSP. This file must reside in the /lib/firmware
  49. directory. It can be specified via the module parameter
  50. da8xx_fw_name=<filename>, and if not specified will default to
  51. "rproc-dsp-fw".
  52. It's safe to say n here if you're not interested in multimedia
  53. offloading.
  54. endmenu