qcedev.h 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382
  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_offload_oper_enum: Offload operation types (uses pipe keys)
  39. * @QCEDEV_OFFLOAD_HLOS_HLOS: Non-secure to non-secure (eg. audio dec).
  40. * @QCEDEV_OFFLOAD_HLOS_CPB: Non-secure to secure (eg. video dec).
  41. * @QCEDEV_OFFLOAD_CPB_HLOS: Secure to non-secure (eg. hdcp video enc).
  42. */
  43. enum qcedev_offload_oper_enum {
  44. QCEDEV_OFFLOAD_HLOS_HLOS = 1,
  45. QCEDEV_OFFLOAD_HLOS_CPB = 2,
  46. QCEDEV_OFFLOAD_CPB_HLOS = 3,
  47. QCEDEV_OFFLOAD_OPER_LAST
  48. };
  49. /**
  50. *qcedev_offload_err_enum: Offload error conditions
  51. * @QCEDEV_OFFLOAD_NO_ERROR: Successful crypto operation.
  52. * @QCEDEV_OFFLOAD_GENERIC_ERROR: Generic error in crypto status.
  53. * @QCEDEV_OFFLOAD_TIMER_ERROR: Pipe key timer errors in crypto status.
  54. */
  55. enum qcedev_offload_err_enum {
  56. QCEDEV_OFFLOAD_NO_ERROR = 0,
  57. QCEDEV_OFFLOAD_GENERIC_ERROR = 1,
  58. QCEDEV_OFFLOAD_TIMER_ERROR = 2
  59. };
  60. /**
  61. *qcedev_oper_enum: Cipher algorithm types
  62. * @QCEDEV_ALG_DES: DES
  63. * @QCEDEV_ALG_3DES: 3DES
  64. * @QCEDEV_ALG_AES: AES
  65. */
  66. enum qcedev_cipher_alg_enum {
  67. QCEDEV_ALG_DES = 0,
  68. QCEDEV_ALG_3DES = 1,
  69. QCEDEV_ALG_AES = 2,
  70. QCEDEV_ALG_LAST
  71. };
  72. /**
  73. *qcedev_cipher_mode_enum : AES mode
  74. * @QCEDEV_AES_MODE_CBC: CBC
  75. * @QCEDEV_AES_MODE_ECB: ECB
  76. * @QCEDEV_AES_MODE_CTR: CTR
  77. * @QCEDEV_AES_MODE_XTS: XTS
  78. * @QCEDEV_AES_MODE_CCM: CCM
  79. * @QCEDEV_DES_MODE_CBC: CBC
  80. * @QCEDEV_DES_MODE_ECB: ECB
  81. */
  82. enum qcedev_cipher_mode_enum {
  83. QCEDEV_AES_MODE_CBC = 0,
  84. QCEDEV_AES_MODE_ECB = 1,
  85. QCEDEV_AES_MODE_CTR = 2,
  86. QCEDEV_AES_MODE_XTS = 3,
  87. QCEDEV_AES_MODE_CCM = 4,
  88. QCEDEV_DES_MODE_CBC = 5,
  89. QCEDEV_DES_MODE_ECB = 6,
  90. QCEDEV_AES_DES_MODE_LAST
  91. };
  92. /**
  93. *enum qcedev_sha_alg_enum : Secure Hashing Algorithm
  94. * @QCEDEV_ALG_SHA1: Digest returned: 20 bytes (160 bits)
  95. * @QCEDEV_ALG_SHA256: Digest returned: 32 bytes (256 bit)
  96. * @QCEDEV_ALG_SHA1_HMAC: HMAC returned 20 bytes (160 bits)
  97. * @QCEDEV_ALG_SHA256_HMAC: HMAC returned 32 bytes (256 bit)
  98. * @QCEDEV_ALG_AES_CMAC: Configurable MAC size
  99. */
  100. enum qcedev_sha_alg_enum {
  101. QCEDEV_ALG_SHA1 = 0,
  102. QCEDEV_ALG_SHA256 = 1,
  103. QCEDEV_ALG_SHA1_HMAC = 2,
  104. QCEDEV_ALG_SHA256_HMAC = 3,
  105. QCEDEV_ALG_AES_CMAC = 4,
  106. QCEDEV_ALG_SHA_ALG_LAST
  107. };
  108. /**
  109. * struct buf_info - Buffer information
  110. * @offset: Offset from the base address of the buffer
  111. * (Used when buffer is allocated using PMEM)
  112. * @vaddr: Virtual buffer address pointer
  113. * @len: Size of the buffer
  114. */
  115. struct buf_info {
  116. union {
  117. __u32 offset;
  118. __u8 *vaddr;
  119. };
  120. __u32 len;
  121. };
  122. /**
  123. * struct qcedev_vbuf_info - Source and destination Buffer information
  124. * @src: Array of buf_info for input/source
  125. * @dst: Array of buf_info for output/destination
  126. */
  127. struct qcedev_vbuf_info {
  128. struct buf_info src[QCEDEV_MAX_BUFFERS];
  129. struct buf_info dst[QCEDEV_MAX_BUFFERS];
  130. };
  131. /**
  132. * struct qcedev_pmem_info - Stores PMEM buffer information
  133. * @fd_src: Handle to /dev/adsp_pmem used to allocate
  134. * memory for input/src buffer
  135. * @src: Array of buf_info for input/source
  136. * @fd_dst: Handle to /dev/adsp_pmem used to allocate
  137. * memory for output/dst buffer
  138. * @dst: Array of buf_info for output/destination
  139. * @pmem_src_offset: The offset from input/src buffer
  140. * (allocated by PMEM)
  141. */
  142. struct qcedev_pmem_info {
  143. int fd_src;
  144. struct buf_info src[QCEDEV_MAX_BUFFERS];
  145. int fd_dst;
  146. struct buf_info dst[QCEDEV_MAX_BUFFERS];
  147. };
  148. /**
  149. * struct qcedev_cipher_op_req - Holds the ciphering request information
  150. * @use_pmem (IN): Flag to indicate if buffer source is PMEM
  151. * QCEDEV_USE_PMEM/QCEDEV_NO_PMEM
  152. * @pmem (IN): Stores PMEM buffer information.
  153. * Refer struct qcedev_pmem_info
  154. * @vbuf (IN/OUT): Stores Source and destination Buffer information
  155. * Refer to struct qcedev_vbuf_info
  156. * @data_len (IN): Total Length of input/src and output/dst in bytes
  157. * @in_place_op (IN): Indicates whether the operation is inplace where
  158. * source == destination
  159. * When using PMEM allocated memory, must set this to 1
  160. * @enckey (IN): 128 bits of confidentiality key
  161. * enckey[0] bit 127-120, enckey[1] bit 119-112,..
  162. * enckey[15] bit 7-0
  163. * @encklen (IN): Length of the encryption key(set to 128 bits/16
  164. * bytes in the driver)
  165. * @iv (IN/OUT): Initialisation vector data
  166. * This is updated by the driver, incremented by
  167. * number of blocks encrypted/decrypted.
  168. * @ivlen (IN): Length of the IV
  169. * @byteoffset (IN): Offset in the Cipher BLOCK (applicable and to be set
  170. * for AES-128 CTR mode only)
  171. * @alg (IN): Type of ciphering algorithm: AES/DES/3DES
  172. * @mode (IN): Mode use when using AES algorithm: ECB/CBC/CTR
  173. * Apllicabel when using AES algorithm only
  174. * @op (IN): Type of operation: QCEDEV_OPER_DEC/QCEDEV_OPER_ENC or
  175. * QCEDEV_OPER_ENC_NO_KEY/QCEDEV_OPER_DEC_NO_KEY
  176. *
  177. *If use_pmem is set to 0, the driver assumes that memory was not allocated
  178. * via PMEM, and kernel will need to allocate memory and copy data from user
  179. * space buffer (data_src/dta_dst) and process accordingly and copy data back
  180. * to the user space buffer
  181. *
  182. * If use_pmem is set to 1, the driver assumes that memory was allocated via
  183. * PMEM.
  184. * The kernel driver will use the fd_src to determine the kernel virtual address
  185. * base that maps to the user space virtual address base for the buffer
  186. * allocated in user space.
  187. * The final input/src and output/dst buffer pointer will be determined
  188. * by adding the offsets to the kernel virtual addr.
  189. *
  190. * If use of hardware key is supported in the target, user can configure the
  191. * key parameters (encklen, enckey) to use the hardware key.
  192. * In order to use the hardware key, set encklen to 0 and set the enckey
  193. * data array to 0.
  194. */
  195. struct qcedev_cipher_op_req {
  196. __u8 use_pmem;
  197. union {
  198. struct qcedev_pmem_info pmem;
  199. struct qcedev_vbuf_info vbuf;
  200. };
  201. __u32 entries;
  202. __u32 data_len;
  203. __u8 in_place_op;
  204. __u8 enckey[QCEDEV_MAX_KEY_SIZE];
  205. __u32 encklen;
  206. __u8 iv[QCEDEV_MAX_IV_SIZE];
  207. __u32 ivlen;
  208. __u32 byteoffset;
  209. enum qcedev_cipher_alg_enum alg;
  210. enum qcedev_cipher_mode_enum mode;
  211. enum qcedev_oper_enum op;
  212. };
  213. /**
  214. * struct qcedev_sha_op_req - Holds the hashing request information
  215. * @data (IN): Array of pointers to the data to be hashed
  216. * @entries (IN): Number of buf_info entries in the data array
  217. * @data_len (IN): Length of data to be hashed
  218. * @digest (IN/OUT): Returns the hashed data information
  219. * @diglen (OUT): Size of the hashed/digest data
  220. * @authkey (IN): Pointer to authentication key for HMAC
  221. * @authklen (IN): Size of the authentication key
  222. * @alg (IN): Secure Hash algorithm
  223. */
  224. struct qcedev_sha_op_req {
  225. struct buf_info data[QCEDEV_MAX_BUFFERS];
  226. __u32 entries;
  227. __u32 data_len;
  228. __u8 digest[QCEDEV_MAX_SHA_DIGEST];
  229. __u32 diglen;
  230. __u8 *authkey;
  231. __u32 authklen;
  232. enum qcedev_sha_alg_enum alg;
  233. };
  234. /**
  235. * struct pattern_info - Holds pattern information for pattern-based
  236. * decryption/encryption for AES ECB, counter, and CBC modes.
  237. * @patt_sz (IN): Total number of blocks.
  238. * @proc_data_sz (IN): Number of blocks to be processed.
  239. * @patt_offset (IN): Start of the segment.
  240. */
  241. struct pattern_info {
  242. __u8 patt_sz;
  243. __u8 proc_data_sz;
  244. __u8 patt_offset;
  245. };
  246. /**
  247. * struct qcedev_offload_cipher_op_req - Holds the offload request information
  248. * @vbuf (IN/OUT): Stores Source and destination Buffer information.
  249. * Refer to struct qcedev_vbuf_info.
  250. * @entries (IN): Number of entries to be processed as part of request.
  251. * @data_len (IN): Total Length of input/src and output/dst in bytes
  252. * @in_place_op (IN): Indicates whether the operation is inplace where
  253. * source == destination.
  254. * @encklen (IN): Length of the encryption key(set to 128 bits/16
  255. * bytes in the driver).
  256. * @iv (IN/OUT): Initialisation vector data
  257. * This is updated by the driver, incremented by
  258. * number of blocks encrypted/decrypted.
  259. * @ivlen (IN): Length of the IV.
  260. * @iv_ctr_size (IN): IV counter increment mask size.
  261. * Driver sets the mask value based on this size.
  262. * @byteoffset (IN): Offset in the Cipher BLOCK (applicable and to be set
  263. * for AES-128 CTR mode only).
  264. * @block_offset (IN): Offset in the block that needs a skip of encrypt/
  265. * decrypt.
  266. * @pattern_valid (IN): Indicates the request contains a valid pattern.
  267. * @pattern_info (IN): The pattern to be used for the offload request.
  268. * @is_copy_op (IN): Offload operations sometimes requires a copy between
  269. * secure and non-secure buffers without any encrypt/
  270. * decrypt operations.
  271. * @alg (IN): Type of ciphering algorithm: AES/DES/3DES.
  272. * @mode (IN): Mode use when using AES algorithm: ECB/CBC/CTR.
  273. * Applicable when using AES algorithm only.
  274. * @op (IN): Type of operation.
  275. * Refer to qcedev_offload_oper_enum.
  276. * @err (OUT): Error in crypto status.
  277. * Refer to qcedev_offload_err_enum.
  278. */
  279. struct qcedev_offload_cipher_op_req {
  280. struct qcedev_vbuf_info vbuf;
  281. __u32 entries;
  282. __u32 data_len;
  283. __u32 in_place_op;
  284. __u32 encklen;
  285. __u8 iv[QCEDEV_MAX_IV_SIZE];
  286. __u32 ivlen;
  287. __u32 iv_ctr_size;
  288. __u32 byteoffset;
  289. __u8 block_offset;
  290. __u8 is_pattern_valid;
  291. __u8 is_copy_op;
  292. struct pattern_info pattern_info;
  293. enum qcedev_cipher_alg_enum alg;
  294. enum qcedev_cipher_mode_enum mode;
  295. enum qcedev_offload_oper_enum op;
  296. enum qcedev_offload_err_enum err;
  297. };
  298. /**
  299. * struct qfips_verify_t - Holds data for FIPS Integrity test
  300. * @kernel_size (IN): Size of kernel Image
  301. * @kernel (IN): pointer to buffer containing the kernel Image
  302. */
  303. struct qfips_verify_t {
  304. unsigned int kernel_size;
  305. void *kernel;
  306. };
  307. /**
  308. * struct qcedev_map_buf_req - Holds the mapping request information
  309. * fd (IN): Array of fds.
  310. * num_fds (IN): Number of fds in fd[].
  311. * fd_size (IN): Array of sizes corresponding to each fd in fd[].
  312. * fd_offset (IN): Array of offset corresponding to each fd in fd[].
  313. * vaddr (OUT): Array of mapped virtual address corresponding to
  314. * each fd in fd[].
  315. */
  316. struct qcedev_map_buf_req {
  317. __s32 fd[QCEDEV_MAX_BUFFERS];
  318. __u32 num_fds;
  319. __u32 fd_size[QCEDEV_MAX_BUFFERS];
  320. __u32 fd_offset[QCEDEV_MAX_BUFFERS];
  321. __u64 buf_vaddr[QCEDEV_MAX_BUFFERS];
  322. };
  323. /**
  324. * struct qcedev_unmap_buf_req - Holds the hashing request information
  325. * fd (IN): Array of fds to unmap
  326. * num_fds (IN): Number of fds in fd[].
  327. */
  328. struct qcedev_unmap_buf_req {
  329. __s32 fd[QCEDEV_MAX_BUFFERS];
  330. __u32 num_fds;
  331. };
  332. struct file;
  333. #define QCEDEV_IOC_MAGIC 0x87
  334. #define QCEDEV_IOCTL_ENC_REQ \
  335. _IOWR(QCEDEV_IOC_MAGIC, 1, struct qcedev_cipher_op_req)
  336. #define QCEDEV_IOCTL_DEC_REQ \
  337. _IOWR(QCEDEV_IOC_MAGIC, 2, struct qcedev_cipher_op_req)
  338. #define QCEDEV_IOCTL_SHA_INIT_REQ \
  339. _IOWR(QCEDEV_IOC_MAGIC, 3, struct qcedev_sha_op_req)
  340. #define QCEDEV_IOCTL_SHA_UPDATE_REQ \
  341. _IOWR(QCEDEV_IOC_MAGIC, 4, struct qcedev_sha_op_req)
  342. #define QCEDEV_IOCTL_SHA_FINAL_REQ \
  343. _IOWR(QCEDEV_IOC_MAGIC, 5, struct qcedev_sha_op_req)
  344. #define QCEDEV_IOCTL_GET_SHA_REQ \
  345. _IOWR(QCEDEV_IOC_MAGIC, 6, struct qcedev_sha_op_req)
  346. #define QCEDEV_IOCTL_LOCK_CE \
  347. _IO(QCEDEV_IOC_MAGIC, 7)
  348. #define QCEDEV_IOCTL_UNLOCK_CE \
  349. _IO(QCEDEV_IOC_MAGIC, 8)
  350. #define QCEDEV_IOCTL_GET_CMAC_REQ \
  351. _IOWR(QCEDEV_IOC_MAGIC, 9, struct qcedev_sha_op_req)
  352. #define QCEDEV_IOCTL_MAP_BUF_REQ \
  353. _IOWR(QCEDEV_IOC_MAGIC, 10, struct qcedev_map_buf_req)
  354. #define QCEDEV_IOCTL_UNMAP_BUF_REQ \
  355. _IOWR(QCEDEV_IOC_MAGIC, 11, struct qcedev_unmap_buf_req)
  356. #define QCEDEV_IOCTL_OFFLOAD_OP_REQ \
  357. _IOWR(QCEDEV_IOC_MAGIC, 12, struct qcedev_offload_cipher_op_req)
  358. #endif /* _QCEDEV__H */