Kconfig 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  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 WKUP_M3_RPROC
  38. tristate "AMx3xx Wakeup M3 remoteproc support"
  39. depends on SOC_AM33XX || SOC_AM43XX
  40. select REMOTEPROC
  41. help
  42. Say y here to support Wakeup M3 remote processor on TI AM33xx
  43. and AM43xx family of SoCs.
  44. Required for Suspend-to-RAM on AM33xx and AM43xx SoCs. Also needed
  45. for deep CPUIdle states on AM33xx SoCs. Allows for loading of the
  46. firmware onto these remote processors.
  47. If unsure say N.
  48. config DA8XX_REMOTEPROC
  49. tristate "DA8xx/OMAP-L13x remoteproc support"
  50. depends on ARCH_DAVINCI_DA8XX
  51. select CMA if MMU
  52. select REMOTEPROC
  53. select RPMSG
  54. help
  55. Say y here to support DA8xx/OMAP-L13x remote processors via the
  56. remote processor framework.
  57. You want to say y here in order to enable AMP
  58. use-cases to run on your platform (multimedia codecs are
  59. offloaded to remote DSP processors using this framework).
  60. This module controls the name of the firmware file that gets
  61. loaded on the DSP. This file must reside in the /lib/firmware
  62. directory. It can be specified via the module parameter
  63. da8xx_fw_name=<filename>, and if not specified will default to
  64. "rproc-dsp-fw".
  65. It's safe to say n here if you're not interested in multimedia
  66. offloading.
  67. endmenu