compat_qcedev.h 7.4 KB

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