qcedev.h 13 KB

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