summaryrefslogtreecommitdiff
path: root/include/uapi/linux
diff options
context:
space:
mode:
authorAmir Samuelov <amirs@codeaurora.org>2016-03-23 14:40:31 +0200
committerJeevan Shriram <jshriram@codeaurora.org>2016-04-22 11:57:49 -0700
commit1071415ec45bbb04016b8da428d4d39befa6e813 (patch)
tree67bfad27b813a59cfcd2b816d14d42649e07fa7f /include/uapi/linux
parent6a50fbf32d217738e90640df3dfbb515f2571402 (diff)
spcom: add ION buffer support
Add new spcom API to allow user to send request/response with ION buffer. The spcom kernel driver modify the request/response by replacing the user ION buffer virtual address with the buffer physical address. spcom also provide API to lock/unlock the ION buffer to avoid the SP side using an ION buffer that was free when HLOS App crashed. CRs-Fixed: 986215 Change-Id: I5dca692cd3c4fac63be5ec73f89e6c39a593a50b Signed-off-by: Amir Samuelov <amirs@codeaurora.org>
Diffstat (limited to 'include/uapi/linux')
-rw-r--r--include/uapi/linux/spcom.h42
1 files changed, 32 insertions, 10 deletions
diff --git a/include/uapi/linux/spcom.h b/include/uapi/linux/spcom.h
index cdb229bf6e13..038a49d5ee57 100644
--- a/include/uapi/linux/spcom.h
+++ b/include/uapi/linux/spcom.h
@@ -1,4 +1,4 @@
-/* Copyright (c) 2015, The Linux Foundation. All rights reserved.
+/* Copyright (c) 2015-2016, The Linux Foundation. All rights reserved.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 and
@@ -17,6 +17,9 @@
#ifndef BIT
#define BIT(x) (1 << x)
#endif
+#ifndef PAGE_SIZE
+ #define PAGE_SIZE 4096
+#endif
/**
* @brief - Secure Processor Communication interface to user space spcomlib.
@@ -43,6 +46,9 @@ enum spcom_cmd_id {
SPCOM_CMD_LOAD_APP = 0x4C4F4144, /* "LOAD" = 0x4C4F4144 */
SPCOM_CMD_RESET_SP = 0x52455354, /* "REST" = 0x52455354 */
SPCOM_CMD_SEND = 0x53454E44, /* "SEND" = 0x53454E44 */
+ SPCOM_CMD_SEND_MODIFIED = 0x534E444D, /* "SNDM" = 0x534E444D */
+ SPCOM_CMD_LOCK_ION_BUF = 0x4C4F434B, /* "LOCK" = 0x4C4F434B */
+ SPCOM_CMD_UNLOCK_ION_BUF = 0x554C434B, /* "ULCK" = 0x4C4F434B */
SPCOM_CMD_FSSR = 0x46535352, /* "FSSR" = 0x46535352 */
SPCOM_CMD_CREATE_CHANNEL = 0x43524554, /* "CRET" = 0x43524554 */
};
@@ -65,15 +71,6 @@ struct spcom_user_command {
uint32_t arg;
} __packed;
-/* Command structure between userspace spcomlib and spcom driver, on write() */
-struct spcom_user_load_app_command {
- enum spcom_cmd_id cmd_id;
- char ch_name[SPCOM_CHANNEL_NAME_SIZE];
- uint32_t app_image_size;
- char *app_buf_ptr;
- uint32_t app_buf_size;
-} __packed;
-
/* Command structure between User Space and spcom driver, on write() */
struct spcom_send_command {
enum spcom_cmd_id cmd_id;
@@ -88,4 +85,29 @@ struct spcom_user_create_channel_command {
char ch_name[SPCOM_CHANNEL_NAME_SIZE];
} __packed;
+/* maximum ION buf for send-modfied-command */
+#define SPCOM_MAX_ION_BUF 4
+
+struct spcom_ion_info {
+ int32_t fd; /* ION buffer File Descriptor, set -1 for invalid fd */
+ uint32_t buf_offset; /* virtual address offset in request/response */
+};
+
+/* Pass this FD to unlock all ION buffer for the specific channel */
+#define SPCOM_ION_FD_UNLOCK_ALL 0xFFFF
+
+struct spcom_ion_handle {
+ int32_t fd; /* File Descriptor associated with the buffer */
+};
+
+/* Command structure between User Space and spcom driver, on write() */
+struct spcom_user_send_modified_command {
+ enum spcom_cmd_id cmd_id;
+ struct spcom_ion_info ion_info[SPCOM_MAX_ION_BUF];
+ uint32_t timeout_msec;
+ uint32_t buf_size;
+ char buf[0]; /* Variable buffer size - must be last field */
+} __packed;
+
+
#endif /* _UAPI_SPCOM_H_ */