aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/include/linux/soc/qcom
diff options
context:
space:
mode:
authorBjorn Andersson <bjorn.andersson@sonymobile.com>2015-06-26 14:50:10 -0700
committerAndy Gross <agross@codeaurora.org>2015-07-28 15:50:16 -0500
commit4b638df4c9d556a6d947d6dbac364bee37b68b8e (patch)
tree30f240907c1c5471b43f0754f54ca6464f011557 /include/linux/soc/qcom
parentLinux 4.2-rc1 (diff)
downloadwireguard-linux-4b638df4c9d556a6d947d6dbac364bee37b68b8e.tar.xz
wireguard-linux-4b638df4c9d556a6d947d6dbac364bee37b68b8e.zip
soc: qcom: Add Shared Memory Manager driver
The Shared Memory Manager driver implements an interface for allocating and accessing items in the memory area shared among all of the processors in a Qualcomm platform. Signed-off-by: Bjorn Andersson <bjorn.andersson@sonymobile.com> Acked-by: Andy Gross <agross@codeaurora.org> Signed-off-by: Andy Gross <agross@codeaurora.org>
Diffstat (limited to 'include/linux/soc/qcom')
-rw-r--r--include/linux/soc/qcom/smem.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/include/linux/soc/qcom/smem.h b/include/linux/soc/qcom/smem.h
new file mode 100644
index 000000000000..bc9630d3aced
--- /dev/null
+++ b/include/linux/soc/qcom/smem.h
@@ -0,0 +1,11 @@
+#ifndef __QCOM_SMEM_H__
+#define __QCOM_SMEM_H__
+
+#define QCOM_SMEM_HOST_ANY -1
+
+int qcom_smem_alloc(unsigned host, unsigned item, size_t size);
+int qcom_smem_get(unsigned host, unsigned item, void **ptr, size_t *size);
+
+int qcom_smem_get_free_space(unsigned host);
+
+#endif