Kconfig 1.9 KB

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