qcedev.h 8.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289
  1. /* SPDX-License-Identifier: GPL-2.0-only WITH Linux-syscall-note */
  2. /*
  3. * Copyright (c) 2019, The Linux Foundation. All rights reserved.
  4. */
  5. #ifndef _QCEDEV__H
  6. #define _QCEDEV__H
  7. #include <linux/types.h>
  8. #include <linux/ioctl.h>
  9. #include "fips_status.h"
  10. #define QCEDEV_MAX_SHA_BLOCK_SIZE 64
  11. #define QCEDEV_MAX_BEARER 31
  12. #define QCEDEV_MAX_KEY_SIZE 64
  13. #define QCEDEV_MAX_IV_SIZE 32
  14. #define QCEDEV_MAX_BUFFERS 16
  15. #define QCEDEV_MAX_SHA_DIGEST 32
  16. #define QCEDEV_USE_PMEM 1
  17. #define QCEDEV_NO_PMEM 0
  18. #define QCEDEV_AES_KEY_128 16
  19. #define QCEDEV_AES_KEY_192 24
  20. #define QCEDEV_AES_KEY_256 32
  21. /**
  22. *qcedev_oper_enum: Operation types
  23. * @QCEDEV_OPER_ENC: Encrypt
  24. * @QCEDEV_OPER_DEC: Decrypt
  25. * @QCEDEV_OPER_ENC_NO_KEY: Encrypt. Do not need key to be specified by
  26. * user. Key already set by an external processor.
  27. * @QCEDEV_OPER_DEC_NO_KEY: Decrypt. Do not need the key to be specified by
  28. * user. Key already set by an external processor.
  29. */
  30. enum qcedev_oper_enum {
  31. QCEDEV_OPER_DEC = 0,
  32. QCEDEV_OPER_ENC = 1,
  33. QCEDEV_OPER_DEC_NO_KEY = 2,
  34. QCEDEV_OPER_ENC_NO_KEY = 3,
  35. QCEDEV_OPER_LAST
  36. };
  37. /**
  38. *qcedev_oper_enum: Cipher algorithm types
  39. * @QCEDEV_ALG_DES: DES
  40. * @QCEDEV_ALG_3DES: 3DES
  41. * @QCEDEV_ALG_AES: AES
  42. */
  43. enum qcedev_cipher_alg_enum {
  44. QCEDEV_ALG_DES = 0,
  45. QCEDEV_ALG_3DES = 1,
  46. QCEDEV_ALG_AES = 2,
  47. QCEDEV_ALG_LAST
  48. };
  49. /**
  50. *qcedev_cipher_mode_enum : AES mode
  51. * @QCEDEV_AES_MODE_CBC: CBC
  52. * @QCEDEV_AES_MODE_ECB: ECB
  53. * @QCEDEV_AES_MODE_CTR: CTR
  54. * @QCEDEV_AES_MODE_XTS: XTS
  55. * @QCEDEV_AES_MODE_CCM: CCM
  56. * @QCEDEV_DES_MODE_CBC: CBC
  57. * @QCEDEV_DES_MODE_ECB: ECB
  58. */
  59. enum qcedev_cipher_mode_enum {
  60. QCEDEV_AES_MODE_CBC = 0,
  61. QCEDEV_AES_MODE_ECB = 1,
  62. QCEDEV_AES_MODE_CTR = 2,
  63. QCEDEV_AES_MODE_XTS = 3,
  64. QCEDEV_AES_MODE_CCM = 4,
  65. QCEDEV_DES_MODE_CBC = 5,
  66. QCEDEV_DES_MODE_ECB = 6,
  67. QCEDEV_AES_DES_MODE_LAST
  68. };
  69. /**
  70. *enum qcedev_sha_alg_enum : Secure Hashing Algorithm
  71. * @QCEDEV_ALG_SHA1: Digest returned: 20 bytes (160 bits)
  72. * @QCEDEV_ALG_SHA256: Digest returned: 32 bytes (256 bit)
  73. * @QCEDEV_ALG_SHA1_HMAC: HMAC returned 20 bytes (160 bits)
  74. * @QCEDEV_ALG_SHA256_HMAC: HMAC returned 32 bytes (256 bit)
  75. * @QCEDEV_ALG_AES_CMAC: Configurable MAC size
  76. */
  77. enum qcedev_sha_alg_enum {
  78. QCEDEV_ALG_SHA1 = 0,
  79. QCEDEV_ALG_SHA256 = 1,
  80. QCEDEV_ALG_SHA1_HMAC = 2,
  81. QCEDEV_ALG_SHA256_HMAC = 3,
  82. QCEDEV_ALG_AES_CMAC = 4,
  83. QCEDEV_ALG_SHA_ALG_LAST
  84. };
  85. /**
  86. * struct buf_info - Buffer information
  87. * @offset: Offset from the base address of the buffer
  88. * (Used when buffer is allocated using PMEM)
  89. * @vaddr: Virtual buffer address pointer
  90. * @len: Size of the buffer
  91. */
  92. struct buf_info {
  93. union {
  94. __u32 offset;
  95. __u8 *vaddr;
  96. };
  97. __u32 len;
  98. };
  99. /**
  100. * struct qcedev_vbuf_info - Source and destination Buffer information
  101. * @src: Array of buf_info for input/source
  102. * @dst: Array of buf_info for output/destination
  103. */
  104. struct qcedev_vbuf_info {
  105. struct buf_info src[QCEDEV_MAX_BUFFERS];
  106. struct buf_info dst[QCEDEV_MAX_BUFFERS];
  107. };
  108. /**
  109. * struct qcedev_pmem_info - Stores PMEM buffer information
  110. * @fd_src: Handle to /dev/adsp_pmem used to allocate
  111. * memory for input/src buffer
  112. * @src: Array of buf_info for input/source
  113. * @fd_dst: Handle to /dev/adsp_pmem used to allocate
  114. * memory for output/dst buffer
  115. * @dst: Array of buf_info for output/destination
  116. * @pmem_src_offset: The offset from input/src buffer
  117. * (allocated by PMEM)
  118. */
  119. struct qcedev_pmem_info {
  120. int fd_src;
  121. struct buf_info src[QCEDEV_MAX_BUFFERS];
  122. int fd_dst;
  123. struct buf_info dst[QCEDEV_MAX_BUFFERS];
  124. };
  125. /**
  126. * struct qcedev_cipher_op_req - Holds the ciphering request information
  127. * @use_pmem (IN): Flag to indicate if buffer source is PMEM
  128. * QCEDEV_USE_PMEM/QCEDEV_NO_PMEM
  129. * @pmem (IN): Stores PMEM buffer information.
  130. * Refer struct qcedev_pmem_info
  131. * @vbuf (IN/OUT): Stores Source and destination Buffer information
  132. * Refer to struct qcedev_vbuf_info
  133. * @data_len (IN): Total Length of input/src and output/dst in bytes
  134. * @in_place_op (IN): Indicates whether the operation is inplace where
  135. * source == destination
  136. * When using PMEM allocated memory, must set this to 1
  137. * @enckey (IN): 128 bits of confidentiality key
  138. * enckey[0] bit 127-120, enckey[1] bit 119-112,..
  139. * enckey[15] bit 7-0
  140. * @encklen (IN): Length of the encryption key(set to 128 bits/16
  141. * bytes in the driver)
  142. * @iv (IN/OUT): Initialisation vector data
  143. * This is updated by the driver, incremented by
  144. * number of blocks encrypted/decrypted.
  145. * @ivlen (IN): Length of the IV
  146. * @byteoffset (IN): Offset in the Cipher BLOCK (applicable and to be set
  147. * for AES-128 CTR mode only)
  148. * @alg (IN): Type of ciphering algorithm: AES/DES/3DES
  149. * @mode (IN): Mode use when using AES algorithm: ECB/CBC/CTR
  150. * Apllicabel when using AES algorithm only
  151. * @op (IN): Type of operation: QCEDEV_OPER_DEC/QCEDEV_OPER_ENC or
  152. * QCEDEV_OPER_ENC_NO_KEY/QCEDEV_OPER_DEC_NO_KEY
  153. *
  154. *If use_pmem is set to 0, the driver assumes that memory was not allocated
  155. * via PMEM, and kernel will need to allocate memory and copy data from user
  156. * space buffer (data_src/dta_dst) and process accordingly and copy data back
  157. * to the user space buffer
  158. *
  159. * If use_pmem is set to 1, the driver assumes that memory was allocated via
  160. * PMEM.
  161. * The kernel driver will use the fd_src to determine the kernel virtual address
  162. * base that maps to the user space virtual address base for the buffer
  163. * allocated in user space.
  164. * The final input/src and output/dst buffer pointer will be determined
  165. * by adding the offsets to the kernel virtual addr.
  166. *
  167. * If use of hardware key is supported in the target, user can configure the
  168. * key parameters (encklen, enckey) to use the hardware key.
  169. * In order to use the hardware key, set encklen to 0 and set the enckey
  170. * data array to 0.
  171. */
  172. struct qcedev_cipher_op_req {
  173. __u8 use_pmem;
  174. union {
  175. struct qcedev_pmem_info pmem;
  176. struct qcedev_vbuf_info vbuf;
  177. };
  178. __u32 entries;
  179. __u32 data_len;
  180. __u8 in_place_op;
  181. __u8 enckey[QCEDEV_MAX_KEY_SIZE];
  182. __u32 encklen;
  183. __u8 iv[QCEDEV_MAX_IV_SIZE];
  184. __u32 ivlen;
  185. __u32 byteoffset;
  186. enum qcedev_cipher_alg_enum alg;
  187. enum qcedev_cipher_mode_enum mode;
  188. enum qcedev_oper_enum op;
  189. };
  190. /**
  191. * struct qcedev_sha_op_req - Holds the hashing request information
  192. * @data (IN): Array of pointers to the data to be hashed
  193. * @entries (IN): Number of buf_info entries in the data array
  194. * @data_len (IN): Length of data to be hashed
  195. * @digest (IN/OUT): Returns the hashed data information
  196. * @diglen (OUT): Size of the hashed/digest data
  197. * @authkey (IN): Pointer to authentication key for HMAC
  198. * @authklen (IN): Size of the authentication key
  199. * @alg (IN): Secure Hash algorithm
  200. */
  201. struct qcedev_sha_op_req {
  202. struct buf_info data[QCEDEV_MAX_BUFFERS];
  203. __u32 entries;
  204. __u32 data_len;
  205. __u8 digest[QCEDEV_MAX_SHA_DIGEST];
  206. __u32 diglen;
  207. __u8 *authkey;
  208. __u32 authklen;
  209. enum qcedev_sha_alg_enum alg;
  210. };
  211. /**
  212. * struct qfips_verify_t - Holds data for FIPS Integrity test
  213. * @kernel_size (IN): Size of kernel Image
  214. * @kernel (IN): pointer to buffer containing the kernel Image
  215. */
  216. struct qfips_verify_t {
  217. unsigned int kernel_size;
  218. void *kernel;
  219. };
  220. /**
  221. * struct qcedev_map_buf_req - Holds the mapping request information
  222. * fd (IN): Array of fds.
  223. * num_fds (IN): Number of fds in fd[].
  224. * fd_size (IN): Array of sizes corresponding to each fd in fd[].
  225. * fd_offset (IN): Array of offset corresponding to each fd in fd[].
  226. * vaddr (OUT): Array of mapped virtual address corresponding to
  227. * each fd in fd[].
  228. */
  229. struct qcedev_map_buf_req {
  230. __s32 fd[QCEDEV_MAX_BUFFERS];
  231. __u32 num_fds;
  232. __u32 fd_size[QCEDEV_MAX_BUFFERS];
  233. __u32 fd_offset[QCEDEV_MAX_BUFFERS];
  234. __u64 buf_vaddr[QCEDEV_MAX_BUFFERS];
  235. };
  236. /**
  237. * struct qcedev_unmap_buf_req - Holds the hashing request information
  238. * fd (IN): Array of fds to unmap
  239. * num_fds (IN): Number of fds in fd[].
  240. */
  241. struct qcedev_unmap_buf_req {
  242. __s32 fd[QCEDEV_MAX_BUFFERS];
  243. __u32 num_fds;
  244. };
  245. struct file;
  246. #define QCEDEV_IOC_MAGIC 0x87
  247. #define QCEDEV_IOCTL_ENC_REQ \
  248. _IOWR(QCEDEV_IOC_MAGIC, 1, struct qcedev_cipher_op_req)
  249. #define QCEDEV_IOCTL_DEC_REQ \
  250. _IOWR(QCEDEV_IOC_MAGIC, 2, struct qcedev_cipher_op_req)
  251. #define QCEDEV_IOCTL_SHA_INIT_REQ \
  252. _IOWR(QCEDEV_IOC_MAGIC, 3, struct qcedev_sha_op_req)
  253. #define QCEDEV_IOCTL_SHA_UPDATE_REQ \
  254. _IOWR(QCEDEV_IOC_MAGIC, 4, struct qcedev_sha_op_req)
  255. #define QCEDEV_IOCTL_SHA_FINAL_REQ \
  256. _IOWR(QCEDEV_IOC_MAGIC, 5, struct qcedev_sha_op_req)
  257. #define QCEDEV_IOCTL_GET_SHA_REQ \
  258. _IOWR(QCEDEV_IOC_MAGIC, 6, struct qcedev_sha_op_req)
  259. #define QCEDEV_IOCTL_LOCK_CE \
  260. _IO(QCEDEV_IOC_MAGIC, 7)
  261. #define QCEDEV_IOCTL_UNLOCK_CE \
  262. _IO(QCEDEV_IOC_MAGIC, 8)
  263. #define QCEDEV_IOCTL_GET_CMAC_REQ \
  264. _IOWR(QCEDEV_IOC_MAGIC, 9, struct qcedev_sha_op_req)
  265. #define QCEDEV_IOCTL_MAP_BUF_REQ \
  266. _IOWR(QCEDEV_IOC_MAGIC, 10, struct qcedev_map_buf_req)
  267. #define QCEDEV_IOCTL_UNMAP_BUF_REQ \
  268. _IOWR(QCEDEV_IOC_MAGIC, 11, struct qcedev_unmap_buf_req)
  269. #endif /* _QCEDEV__H */