Kconfig 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  1. menu "Remoteproc drivers"
  2. config REMOTEPROC
  3. tristate "Support for Remote Processor subsystem"
  4. depends on HAS_DMA
  5. select CRC32
  6. select FW_LOADER
  7. select VIRTIO
  8. select VIRTUALIZATION
  9. if REMOTEPROC
  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 REMOTEPROC
  16. select MAILBOX
  17. select OMAP2PLUS_MBOX
  18. select RPMSG_VIRTIO
  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 WKUP_M3_RPROC
  29. tristate "AMx3xx Wakeup M3 remoteproc support"
  30. depends on SOC_AM33XX || SOC_AM43XX
  31. depends on REMOTEPROC
  32. help
  33. Say y here to support Wakeup M3 remote processor on TI AM33xx
  34. and AM43xx family of SoCs.
  35. Required for Suspend-to-RAM on AM33xx and AM43xx SoCs. Also needed
  36. for deep CPUIdle states on AM33xx SoCs. Allows for loading of the
  37. firmware onto these remote processors.
  38. If unsure say N.
  39. config DA8XX_REMOTEPROC
  40. tristate "DA8xx/OMAP-L13x remoteproc support"
  41. depends on ARCH_DAVINCI_DA8XX
  42. depends on REMOTEPROC
  43. select CMA if MMU
  44. select RPMSG_VIRTIO
  45. help
  46. Say y here to support DA8xx/OMAP-L13x remote processors via the
  47. remote processor framework.
  48. You want to say y here in order to enable AMP
  49. use-cases to run on your platform (multimedia codecs are
  50. offloaded to remote DSP processors using this framework).
  51. This module controls the name of the firmware file that gets
  52. loaded on the DSP. This file must reside in the /lib/firmware
  53. directory. It can be specified via the module parameter
  54. da8xx_fw_name=<filename>, and if not specified will default to
  55. "rproc-dsp-fw".
  56. It's safe to say n here if you're not interested in multimedia
  57. offloading.
  58. config QCOM_ADSP_PIL
  59. tristate "Qualcomm ADSP Peripheral Image Loader"
  60. depends on OF && ARCH_QCOM
  61. depends on REMOTEPROC
  62. depends on QCOM_SMEM
  63. select MFD_SYSCON
  64. select QCOM_MDT_LOADER
  65. select QCOM_SCM
  66. help
  67. Say y here to support the TrustZone based Peripherial Image Loader
  68. for the Qualcomm ADSP remote processors.
  69. config QCOM_MDT_LOADER
  70. tristate
  71. config QCOM_Q6V5_PIL
  72. tristate "Qualcomm Hexagon V5 Peripherial Image Loader"
  73. depends on OF && ARCH_QCOM
  74. depends on QCOM_SMEM
  75. depends on REMOTEPROC
  76. select MFD_SYSCON
  77. select QCOM_MDT_LOADER
  78. select QCOM_SCM
  79. help
  80. Say y here to support the Qualcomm Peripherial Image Loader for the
  81. Hexagon V5 based remote processors.
  82. config QCOM_WCNSS_PIL
  83. tristate "Qualcomm WCNSS Peripheral Image Loader"
  84. depends on OF && ARCH_QCOM
  85. depends on QCOM_SMD || (COMPILE_TEST && QCOM_SMD=n)
  86. depends on QCOM_SMEM
  87. depends on REMOTEPROC
  88. select QCOM_MDT_LOADER
  89. select QCOM_SCM
  90. help
  91. Say y here to support the Peripheral Image Loader for the Qualcomm
  92. Wireless Connectivity Subsystem.
  93. config ST_REMOTEPROC
  94. tristate "ST remoteproc support"
  95. depends on ARCH_STI
  96. depends on REMOTEPROC
  97. help
  98. Say y here to support ST's adjunct processors via the remote
  99. processor framework.
  100. This can be either built-in or a loadable module.
  101. config ST_SLIM_REMOTEPROC
  102. tristate
  103. depends on REMOTEPROC
  104. endif # REMOTEPROC
  105. endmenu