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