Kconfig 715 B

123456789101112131415161718192021222324
  1. menuconfig SMEM
  2. bool "SMEM (Shared Memory mamanger) support"
  3. if SMEM
  4. config SANDBOX_SMEM
  5. bool "Sandbox Shared Memory Manager (SMEM)"
  6. depends on SANDBOX && DM
  7. help
  8. enable SMEM support for sandbox. This is an emulation of a real SMEM
  9. manager.
  10. The sandbox driver allocates a shared memory from the heap and
  11. initialzies it on start.
  12. config MSM_SMEM
  13. bool "Qualcomm Shared Memory Manager (SMEM)"
  14. depends on DM
  15. depends on ARCH_SNAPDRAGON || ARCH_IPQ40XX
  16. help
  17. Enable support for the Qualcomm Shared Memory Manager.
  18. The driver provides an interface to items in a heap shared among all
  19. processors in a Qualcomm platform.
  20. endif # menu "SMEM Support"