compat_qcedev.h 7.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201
  1. /* SPDX-License-Identifier: GPL-2.0-only WITH Linux-syscall-note */
  2. /*
  3. * Copyright (c) 2014,2017-2020, The Linux Foundation. All rights reserved.
  4. * Copyright (c) 2023 Qualcomm Innovation Center, Inc. All rights reserved.
  5. */
  6. #ifndef _UAPI_COMPAT_QCEDEV__H
  7. #define _UAPI_COMPAT_QCEDEV__H
  8. #include <linux/types.h>
  9. #include <linux/ioctl.h>
  10. #include <linux/compat.h>
  11. /**
  12. * struct compat_buf_info - Buffer information
  13. * @offset: Offset from the base address of the buffer
  14. * (Used when buffer is allocated using PMEM)
  15. * @vaddr: Virtual buffer address pointer
  16. * @len: Size of the buffer
  17. */
  18. struct compat_buf_info {
  19. union {
  20. compat_ulong_t offset;
  21. compat_uptr_t vaddr;
  22. };
  23. compat_ulong_t len;
  24. };
  25. /**
  26. * struct compat_qcedev_vbuf_info - Source and destination Buffer information
  27. * @src: Array of buf_info for input/source
  28. * @dst: Array of buf_info for output/destination
  29. */
  30. struct compat_qcedev_vbuf_info {
  31. struct compat_buf_info src[QCEDEV_MAX_BUFFERS];
  32. struct compat_buf_info dst[QCEDEV_MAX_BUFFERS];
  33. };
  34. /**
  35. * struct compat_qcedev_pmem_info - Stores PMEM buffer information
  36. * @fd_src: Handle to /dev/adsp_pmem used to allocate
  37. * memory for input/src buffer
  38. * @src: Array of buf_info for input/source
  39. * @fd_dst: Handle to /dev/adsp_pmem used to allocate
  40. * memory for output/dst buffer
  41. * @dst: Array of buf_info for output/destination
  42. * @pmem_src_offset: The offset from input/src buffer
  43. * (allocated by PMEM)
  44. */
  45. struct compat_qcedev_pmem_info {
  46. compat_int_t fd_src;
  47. struct compat_buf_info src[QCEDEV_MAX_BUFFERS];
  48. compat_int_t fd_dst;
  49. struct compat_buf_info dst[QCEDEV_MAX_BUFFERS];
  50. };
  51. /**
  52. * struct compat_qcedev_cipher_op_req - Holds the ciphering request information
  53. * @use_pmem (IN): Flag to indicate if buffer source is PMEM
  54. * QCEDEV_USE_PMEM/QCEDEV_NO_PMEM
  55. * @pmem (IN): Stores PMEM buffer information.
  56. * Refer struct qcedev_pmem_info
  57. * @vbuf (IN/OUT): Stores Source and destination Buffer information
  58. * Refer to struct qcedev_vbuf_info
  59. * @data_len (IN): Total Length of input/src and output/dst in bytes
  60. * @in_place_op (IN): Indicates whether the operation is inplace where
  61. * source == destination
  62. * When using PMEM allocated memory, must set this to 1
  63. * @enckey (IN): 128 bits of confidentiality key
  64. * enckey[0] bit 127-120, enckey[1] bit 119-112,..
  65. * enckey[15] bit 7-0
  66. * @encklen (IN): Length of the encryption key(set to 128 bits/16
  67. * bytes in the driver)
  68. * @iv (IN/OUT): Initialization vector data
  69. * This is updated by the driver, incremented by
  70. * number of blocks encrypted/decrypted.
  71. * @ivlen (IN): Length of the IV
  72. * @byteoffset (IN): Offset in the Cipher BLOCK (applicable and to be set
  73. * for AES-128 CTR mode only)
  74. * @alg (IN): Type of ciphering algorithm: AES/DES/3DES
  75. * @mode (IN): Mode use when using AES algorithm: ECB/CBC/CTR
  76. * Applicable when using AES algorithm only
  77. * @op (IN): Type of operation: QCEDEV_OPER_DEC/QCEDEV_OPER_ENC or
  78. * QCEDEV_OPER_ENC_NO_KEY/QCEDEV_OPER_DEC_NO_KEY
  79. *
  80. * If use_pmem is set to 0, the driver assumes that memory was not allocated
  81. * via PMEM, and kernel will need to allocate memory and copy data from user
  82. * space buffer (data_src/dta_dst) and process accordingly and copy data back
  83. * to the user space buffer
  84. *
  85. * If use_pmem is set to 1, the driver assumes that memory was allocated via
  86. * PMEM.
  87. * The kernel driver will use the fd_src to determine the kernel virtual address
  88. * base that maps to the user space virtual address base for the buffer
  89. * allocated in user space.
  90. * The final input/src and output/dst buffer pointer will be determined
  91. * by adding the offsets to the kernel virtual addr.
  92. *
  93. * If use of hardware key is supported in the target, user can configure the
  94. * key parameters (encklen, enckey) to use the hardware key.
  95. * In order to use the hardware key, set encklen to 0 and set the enckey
  96. * data array to 0.
  97. */
  98. struct compat_qcedev_cipher_op_req {
  99. uint8_t use_pmem;
  100. union {
  101. struct compat_qcedev_pmem_info pmem;
  102. struct compat_qcedev_vbuf_info vbuf;
  103. };
  104. compat_ulong_t entries;
  105. compat_ulong_t data_len;
  106. uint8_t in_place_op;
  107. uint8_t enckey[QCEDEV_MAX_KEY_SIZE];
  108. compat_ulong_t encklen;
  109. uint8_t iv[QCEDEV_MAX_IV_SIZE];
  110. compat_ulong_t ivlen;
  111. compat_ulong_t byteoffset;
  112. enum qcedev_cipher_alg_enum alg;
  113. enum qcedev_cipher_mode_enum mode;
  114. enum qcedev_oper_enum op;
  115. };
  116. /**
  117. * struct qcedev_sha_op_req - Holds the hashing request information
  118. * @data (IN): Array of pointers to the data to be hashed
  119. * @entries (IN): Number of buf_info entries in the data array
  120. * @data_len (IN): Length of data to be hashed
  121. * @digest (IN/OUT): Returns the hashed data information
  122. * @diglen (OUT): Size of the hashed/digest data
  123. * @authkey (IN): Pointer to authentication key for HMAC
  124. * @authklen (IN): Size of the authentication key
  125. * @alg (IN): Secure Hash algorithm
  126. */
  127. struct compat_qcedev_sha_op_req {
  128. struct compat_buf_info data[QCEDEV_MAX_BUFFERS];
  129. compat_ulong_t entries;
  130. compat_ulong_t data_len;
  131. uint8_t digest[QCEDEV_MAX_SHA_DIGEST];
  132. compat_ulong_t diglen;
  133. compat_uptr_t authkey;
  134. compat_ulong_t authklen;
  135. enum qcedev_sha_alg_enum alg;
  136. };
  137. /**
  138. * struct compact_qcedev_map_buf_req - Holds the mapping request information
  139. * fd (IN): Array of fds.
  140. * num_fds (IN): Number of fds in fd[].
  141. * fd_size (IN): Array of sizes corresponding to each fd in fd[].
  142. * fd_offset (IN): Array of offset corresponding to each fd in fd[].
  143. * vaddr (OUT): Array of mapped virtual address corresponding to
  144. * each fd in fd[].
  145. */
  146. struct compat_qcedev_map_buf_req {
  147. compat_long_t fd[QCEDEV_MAX_BUFFERS];
  148. compat_ulong_t num_fds;
  149. compat_ulong_t fd_size[QCEDEV_MAX_BUFFERS];
  150. compat_ulong_t fd_offset[QCEDEV_MAX_BUFFERS];
  151. compat_u64 buf_vaddr[QCEDEV_MAX_BUFFERS];
  152. };
  153. /**
  154. * struct compat_qcedev_unmap_buf_req - Holds the hashing request information
  155. * fd (IN): Array of fds to unmap
  156. * num_fds (IN): Number of fds in fd[].
  157. */
  158. struct compat_qcedev_unmap_buf_req {
  159. compat_long_t fd[QCEDEV_MAX_BUFFERS];
  160. compat_ulong_t num_fds;
  161. };
  162. struct file;
  163. long qcedev_ioctl(struct file *file,
  164. unsigned int cmd, unsigned long arg);
  165. long compat_qcedev_ioctl(struct file *file,
  166. unsigned int cmd, unsigned long arg);
  167. #define COMPAT_QCEDEV_IOCTL_ENC_REQ \
  168. _IOWR(QCEDEV_IOC_MAGIC, 1, struct compat_qcedev_cipher_op_req)
  169. #define COMPAT_QCEDEV_IOCTL_DEC_REQ \
  170. _IOWR(QCEDEV_IOC_MAGIC, 2, struct compat_qcedev_cipher_op_req)
  171. #define COMPAT_QCEDEV_IOCTL_SHA_INIT_REQ \
  172. _IOWR(QCEDEV_IOC_MAGIC, 3, struct compat_qcedev_sha_op_req)
  173. #define COMPAT_QCEDEV_IOCTL_SHA_UPDATE_REQ \
  174. _IOWR(QCEDEV_IOC_MAGIC, 4, struct compat_qcedev_sha_op_req)
  175. #define COMPAT_QCEDEV_IOCTL_SHA_FINAL_REQ \
  176. _IOWR(QCEDEV_IOC_MAGIC, 5, struct compat_qcedev_sha_op_req)
  177. #define COMPAT_QCEDEV_IOCTL_GET_SHA_REQ \
  178. _IOWR(QCEDEV_IOC_MAGIC, 6, struct compat_qcedev_sha_op_req)
  179. #define COMPAT_QCEDEV_IOCTL_LOCK_CE \
  180. _IO(QCEDEV_IOC_MAGIC, 7)
  181. #define COMPAT_QCEDEV_IOCTL_UNLOCK_CE \
  182. _IO(QCEDEV_IOC_MAGIC, 8)
  183. #define COMPAT_QCEDEV_IOCTL_GET_CMAC_REQ \
  184. _IOWR(QCEDEV_IOC_MAGIC, 9, struct compat_qcedev_sha_op_req)
  185. #define COMPAT_QCEDEV_IOCTL_MAP_BUF_REQ \
  186. _IOWR(QCEDEV_IOC_MAGIC, 10, struct compat_qcedev_map_buf_req)
  187. #define COMPAT_QCEDEV_IOCTL_UNMAP_BUF_REQ \
  188. _IOWR(QCEDEV_IOC_MAGIC, 11, struct compat_qcedev_unmap_buf_req)
  189. #endif /* _UAPI_COMPAT_QCEDEV__H */