Kconfig 1.9 KB

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