smcinvoke.h 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. /* SPDX-License-Identifier: GPL-2.0-only WITH Linux-syscall-note */
  2. /*
  3. * Copyright (c) 2017-2020, The Linux Foundation. All rights reserved.
  4. */
  5. #ifndef _UAPI_SMCINVOKE_H_
  6. #define _UAPI_SMCINVOKE_H_
  7. #include <linux/types.h>
  8. #include <linux/ioctl.h>
  9. #define SMCINVOKE_USERSPACE_OBJ_NULL -1
  10. struct smcinvoke_buf {
  11. __u64 addr;
  12. __u64 size;
  13. };
  14. struct smcinvoke_obj {
  15. __s64 fd;
  16. __s32 cb_server_fd;
  17. __s32 reserved;
  18. };
  19. union smcinvoke_arg {
  20. struct smcinvoke_buf b;
  21. struct smcinvoke_obj o;
  22. };
  23. /*
  24. * struct smcinvoke_cmd_req: This structure is transparently sent to TEE
  25. * @op - Operation to be performed
  26. * @counts - number of aruments passed
  27. * @result - result of invoke operation
  28. * @argsize - size of each of arguments
  29. * @args - args is pointer to buffer having all arguments
  30. */
  31. struct smcinvoke_cmd_req {
  32. __u32 op;
  33. __u32 counts;
  34. __s32 result;
  35. __u32 argsize;
  36. __u64 args;
  37. };
  38. /*
  39. * struct smcinvoke_accept: structure to process CB req from TEE
  40. * @has_resp: IN: Whether IOCTL is carrying response data
  41. * @txn_id: OUT: An id that should be passed as it is for response
  42. * @result: IN: Outcome of operation op
  43. * @cbobj_id: OUT: Callback object which is target of operation op
  44. * @op: OUT: Operation to be performed on target object
  45. * @counts: OUT: Number of arguments, embedded in buffer pointed by
  46. * buf_addr, to complete operation
  47. * @reserved: IN/OUT: Usage is not defined but should be set to 0.
  48. * @argsize: IN: Size of any argument, all of equal size, embedded
  49. * in buffer pointed by buf_addr
  50. * @buf_len: IN: Len of buffer pointed by buf_addr
  51. * @buf_addr: IN: Buffer containing all arguments which are needed
  52. * to complete operation op
  53. */
  54. struct smcinvoke_accept {
  55. __u32 has_resp;
  56. __u32 txn_id;
  57. __s32 result;
  58. __s32 cbobj_id;
  59. __u32 op;
  60. __u32 counts;
  61. __s32 reserved;
  62. __u32 argsize;
  63. __u64 buf_len;
  64. __u64 buf_addr;
  65. };
  66. /*
  67. * @cb_buf_size: IN: Max buffer size for any callback obj implemented by client
  68. */
  69. struct smcinvoke_server {
  70. __u32 cb_buf_size;
  71. };
  72. #define SMCINVOKE_IOC_MAGIC 0x98
  73. #define SMCINVOKE_IOCTL_INVOKE_REQ \
  74. _IOWR(SMCINVOKE_IOC_MAGIC, 1, struct smcinvoke_cmd_req)
  75. #define SMCINVOKE_IOCTL_ACCEPT_REQ \
  76. _IOWR(SMCINVOKE_IOC_MAGIC, 2, struct smcinvoke_accept)
  77. #define SMCINVOKE_IOCTL_SERVER_REQ \
  78. _IOWR(SMCINVOKE_IOC_MAGIC, 3, struct smcinvoke_server)
  79. #define SMCINVOKE_IOCTL_ACK_LOCAL_OBJ \
  80. _IOWR(SMCINVOKE_IOC_MAGIC, 4, __s32)
  81. /*
  82. * smcinvoke logging buffer is for communicating with the smcinvoke driver additional
  83. * info for debugging to be included in driver's log (if any)
  84. */
  85. #define SMCINVOKE_LOG_BUF_SIZE 100
  86. #define SMCINVOKE_IOCTL_LOG \
  87. _IOC(_IOC_READ|_IOC_WRITE, SMCINVOKE_IOC_MAGIC, 255, SMCINVOKE_LOG_BUF_SIZE)
  88. #endif /* _UAPI_SMCINVOKE_H_ */