1 /* SPDX-License-Identifier: GPL-2.0-only */
3 * AMD Cryptographic Coprocessor (CCP) driver
5 * Copyright (C) 2013,2017 Advanced Micro Devices, Inc.
14 #include <linux/scatterlist.h>
15 #include <linux/workqueue.h>
16 #include <linux/list.h>
17 #include <crypto/aes.h>
18 #include <crypto/sha.h>
23 #if defined(CONFIG_CRYPTO_DEV_SP_CCP)
26 * ccp_present - check if a CCP device is present
28 * Returns zero if a CCP device is present, -ENODEV otherwise.
30 int ccp_present(void);
33 #define CCP_VMASK ((unsigned int)((1 << CCP_VSIZE) - 1))
34 #define CCP_VERSION(v, r) ((unsigned int)((v << CCP_VSIZE) \
38 * ccp_version - get the version of the CCP
40 * Returns a positive version number, or zero if no CCP
42 unsigned int ccp_version(void);
45 * ccp_enqueue_cmd - queue an operation for processing by the CCP
47 * @cmd: ccp_cmd struct to be processed
49 * Refer to the ccp_cmd struct below for required fields.
51 * Queue a cmd to be processed by the CCP. If queueing the cmd
52 * would exceed the defined length of the cmd queue the cmd will
53 * only be queued if the CCP_CMD_MAY_BACKLOG flag is set and will
54 * result in a return code of -EBUSY.
56 * The callback routine specified in the ccp_cmd struct will be
57 * called to notify the caller of completion (if the cmd was not
58 * backlogged) or advancement out of the backlog. If the cmd has
59 * advanced out of the backlog the "err" value of the callback
60 * will be -EINPROGRESS. Any other "err" value during callback is
61 * the result of the operation.
63 * The cmd has been successfully queued if:
64 * the return code is -EINPROGRESS or
65 * the return code is -EBUSY and CCP_CMD_MAY_BACKLOG flag is set
67 int ccp_enqueue_cmd(struct ccp_cmd *cmd);
69 #else /* CONFIG_CRYPTO_DEV_CCP_SP_DEV is not enabled */
71 static inline int ccp_present(void)
76 static inline unsigned int ccp_version(void)
81 static inline int ccp_enqueue_cmd(struct ccp_cmd *cmd)
86 #endif /* CONFIG_CRYPTO_DEV_SP_CCP */
89 /***** AES engine *****/
91 * ccp_aes_type - AES key size
93 * @CCP_AES_TYPE_128: 128-bit key
94 * @CCP_AES_TYPE_192: 192-bit key
95 * @CCP_AES_TYPE_256: 256-bit key
105 * ccp_aes_mode - AES operation mode
107 * @CCP_AES_MODE_ECB: ECB mode
108 * @CCP_AES_MODE_CBC: CBC mode
109 * @CCP_AES_MODE_OFB: OFB mode
110 * @CCP_AES_MODE_CFB: CFB mode
111 * @CCP_AES_MODE_CTR: CTR mode
112 * @CCP_AES_MODE_CMAC: CMAC mode
115 CCP_AES_MODE_ECB = 0,
129 * ccp_aes_mode - AES operation mode
131 * @CCP_AES_ACTION_DECRYPT: AES decrypt operation
132 * @CCP_AES_ACTION_ENCRYPT: AES encrypt operation
134 enum ccp_aes_action {
135 CCP_AES_ACTION_DECRYPT = 0,
136 CCP_AES_ACTION_ENCRYPT,
137 CCP_AES_ACTION__LAST,
139 /* Overloaded field */
140 #define CCP_AES_GHASHAAD CCP_AES_ACTION_DECRYPT
141 #define CCP_AES_GHASHFINAL CCP_AES_ACTION_ENCRYPT
144 * struct ccp_aes_engine - CCP AES operation
145 * @type: AES operation key size
146 * @mode: AES operation mode
147 * @action: AES operation (decrypt/encrypt)
148 * @key: key to be used for this AES operation
149 * @key_len: length in bytes of key
150 * @iv: IV to be used for this AES operation
151 * @iv_len: length in bytes of iv
152 * @src: data to be used for this operation
153 * @dst: data produced by this operation
154 * @src_len: length in bytes of data used for this operation
155 * @cmac_final: indicates final operation when running in CMAC mode
156 * @cmac_key: K1/K2 key used in final CMAC operation
157 * @cmac_key_len: length in bytes of cmac_key
159 * Variables required to be set when calling ccp_enqueue_cmd():
160 * - type, mode, action, key, key_len, src, dst, src_len
161 * - iv, iv_len for any mode other than ECB
162 * - cmac_final for CMAC mode
163 * - cmac_key, cmac_key_len for CMAC mode if cmac_final is non-zero
165 * The iv variable is used as both input and output. On completion of the
166 * AES operation the new IV overwrites the old IV.
168 struct ccp_aes_engine {
169 enum ccp_aes_type type;
170 enum ccp_aes_mode mode;
171 enum ccp_aes_action action;
173 struct scatterlist *key;
174 u32 key_len; /* In bytes */
176 struct scatterlist *iv;
177 u32 iv_len; /* In bytes */
179 struct scatterlist *src, *dst;
180 u64 src_len; /* In bytes */
182 u32 cmac_final; /* Indicates final cmac cmd */
183 struct scatterlist *cmac_key; /* K1/K2 cmac key required for
185 u32 cmac_key_len; /* In bytes */
187 u32 aad_len; /* In bytes */
190 /***** XTS-AES engine *****/
192 * ccp_xts_aes_unit_size - XTS unit size
194 * @CCP_XTS_AES_UNIT_SIZE_16: Unit size of 16 bytes
195 * @CCP_XTS_AES_UNIT_SIZE_512: Unit size of 512 bytes
196 * @CCP_XTS_AES_UNIT_SIZE_1024: Unit size of 1024 bytes
197 * @CCP_XTS_AES_UNIT_SIZE_2048: Unit size of 2048 bytes
198 * @CCP_XTS_AES_UNIT_SIZE_4096: Unit size of 4096 bytes
200 enum ccp_xts_aes_unit_size {
201 CCP_XTS_AES_UNIT_SIZE_16 = 0,
202 CCP_XTS_AES_UNIT_SIZE_512,
203 CCP_XTS_AES_UNIT_SIZE_1024,
204 CCP_XTS_AES_UNIT_SIZE_2048,
205 CCP_XTS_AES_UNIT_SIZE_4096,
206 CCP_XTS_AES_UNIT_SIZE__LAST,
210 * struct ccp_xts_aes_engine - CCP XTS AES operation
211 * @action: AES operation (decrypt/encrypt)
212 * @unit_size: unit size of the XTS operation
213 * @key: key to be used for this XTS AES operation
214 * @key_len: length in bytes of key
215 * @iv: IV to be used for this XTS AES operation
216 * @iv_len: length in bytes of iv
217 * @src: data to be used for this operation
218 * @dst: data produced by this operation
219 * @src_len: length in bytes of data used for this operation
220 * @final: indicates final XTS operation
222 * Variables required to be set when calling ccp_enqueue_cmd():
223 * - action, unit_size, key, key_len, iv, iv_len, src, dst, src_len, final
225 * The iv variable is used as both input and output. On completion of the
226 * AES operation the new IV overwrites the old IV.
228 struct ccp_xts_aes_engine {
229 enum ccp_aes_type type;
230 enum ccp_aes_action action;
231 enum ccp_xts_aes_unit_size unit_size;
233 struct scatterlist *key;
234 u32 key_len; /* In bytes */
236 struct scatterlist *iv;
237 u32 iv_len; /* In bytes */
239 struct scatterlist *src, *dst;
240 u64 src_len; /* In bytes */
245 /***** SHA engine *****/
247 * ccp_sha_type - type of SHA operation
249 * @CCP_SHA_TYPE_1: SHA-1 operation
250 * @CCP_SHA_TYPE_224: SHA-224 operation
251 * @CCP_SHA_TYPE_256: SHA-256 operation
263 * struct ccp_sha_engine - CCP SHA operation
264 * @type: Type of SHA operation
265 * @ctx: current hash value
266 * @ctx_len: length in bytes of hash value
267 * @src: data to be used for this operation
268 * @src_len: length in bytes of data used for this operation
269 * @opad: data to be used for final HMAC operation
270 * @opad_len: length in bytes of data used for final HMAC operation
271 * @first: indicates first SHA operation
272 * @final: indicates final SHA operation
273 * @msg_bits: total length of the message in bits used in final SHA operation
275 * Variables required to be set when calling ccp_enqueue_cmd():
276 * - type, ctx, ctx_len, src, src_len, final
277 * - msg_bits if final is non-zero
279 * The ctx variable is used as both input and output. On completion of the
280 * SHA operation the new hash value overwrites the old hash value.
282 struct ccp_sha_engine {
283 enum ccp_sha_type type;
285 struct scatterlist *ctx;
286 u32 ctx_len; /* In bytes */
288 struct scatterlist *src;
289 u64 src_len; /* In bytes */
291 struct scatterlist *opad;
292 u32 opad_len; /* In bytes */
294 u32 first; /* Indicates first sha cmd */
295 u32 final; /* Indicates final sha cmd */
296 u64 msg_bits; /* Message length in bits required for
300 /***** 3DES engine *****/
302 CCP_DES3_MODE_ECB = 0,
309 CCP_DES3_TYPE_168 = 1,
313 enum ccp_des3_action {
314 CCP_DES3_ACTION_DECRYPT = 0,
315 CCP_DES3_ACTION_ENCRYPT,
316 CCP_DES3_ACTION__LAST,
320 * struct ccp_des3_engine - CCP SHA operation
321 * @type: Type of 3DES operation
323 * @action: 3DES operation (decrypt/encrypt)
324 * @key: key to be used for this 3DES operation
325 * @key_len: length of key (in bytes)
326 * @iv: IV to be used for this AES operation
327 * @iv_len: length in bytes of iv
328 * @src: input data to be used for this operation
329 * @src_len: length of input data used for this operation (in bytes)
330 * @dst: output data produced by this operation
332 * Variables required to be set when calling ccp_enqueue_cmd():
333 * - type, mode, action, key, key_len, src, dst, src_len
334 * - iv, iv_len for any mode other than ECB
336 * The iv variable is used as both input and output. On completion of the
337 * 3DES operation the new IV overwrites the old IV.
339 struct ccp_des3_engine {
340 enum ccp_des3_type type;
341 enum ccp_des3_mode mode;
342 enum ccp_des3_action action;
344 struct scatterlist *key;
345 u32 key_len; /* In bytes */
347 struct scatterlist *iv;
348 u32 iv_len; /* In bytes */
350 struct scatterlist *src, *dst;
351 u64 src_len; /* In bytes */
354 /***** RSA engine *****/
356 * struct ccp_rsa_engine - CCP RSA operation
357 * @key_size: length in bits of RSA key
359 * @exp_len: length in bytes of exponent
361 * @mod_len: length in bytes of modulus
362 * @src: data to be used for this operation
363 * @dst: data produced by this operation
364 * @src_len: length in bytes of data used for this operation
366 * Variables required to be set when calling ccp_enqueue_cmd():
367 * - key_size, exp, exp_len, mod, mod_len, src, dst, src_len
369 struct ccp_rsa_engine {
370 u32 key_size; /* In bits */
372 struct scatterlist *exp;
373 u32 exp_len; /* In bytes */
375 struct scatterlist *mod;
376 u32 mod_len; /* In bytes */
378 struct scatterlist *src, *dst;
379 u32 src_len; /* In bytes */
382 /***** Passthru engine *****/
384 * ccp_passthru_bitwise - type of bitwise passthru operation
386 * @CCP_PASSTHRU_BITWISE_NOOP: no bitwise operation performed
387 * @CCP_PASSTHRU_BITWISE_AND: perform bitwise AND of src with mask
388 * @CCP_PASSTHRU_BITWISE_OR: perform bitwise OR of src with mask
389 * @CCP_PASSTHRU_BITWISE_XOR: perform bitwise XOR of src with mask
390 * @CCP_PASSTHRU_BITWISE_MASK: overwrite with mask
392 enum ccp_passthru_bitwise {
393 CCP_PASSTHRU_BITWISE_NOOP = 0,
394 CCP_PASSTHRU_BITWISE_AND,
395 CCP_PASSTHRU_BITWISE_OR,
396 CCP_PASSTHRU_BITWISE_XOR,
397 CCP_PASSTHRU_BITWISE_MASK,
398 CCP_PASSTHRU_BITWISE__LAST,
402 * ccp_passthru_byteswap - type of byteswap passthru operation
404 * @CCP_PASSTHRU_BYTESWAP_NOOP: no byte swapping performed
405 * @CCP_PASSTHRU_BYTESWAP_32BIT: swap bytes within 32-bit words
406 * @CCP_PASSTHRU_BYTESWAP_256BIT: swap bytes within 256-bit words
408 enum ccp_passthru_byteswap {
409 CCP_PASSTHRU_BYTESWAP_NOOP = 0,
410 CCP_PASSTHRU_BYTESWAP_32BIT,
411 CCP_PASSTHRU_BYTESWAP_256BIT,
412 CCP_PASSTHRU_BYTESWAP__LAST,
416 * struct ccp_passthru_engine - CCP pass-through operation
417 * @bit_mod: bitwise operation to perform
418 * @byte_swap: byteswap operation to perform
419 * @mask: mask to be applied to data
420 * @mask_len: length in bytes of mask
421 * @src: data to be used for this operation
422 * @dst: data produced by this operation
423 * @src_len: length in bytes of data used for this operation
424 * @final: indicate final pass-through operation
426 * Variables required to be set when calling ccp_enqueue_cmd():
427 * - bit_mod, byte_swap, src, dst, src_len
428 * - mask, mask_len if bit_mod is not CCP_PASSTHRU_BITWISE_NOOP
430 struct ccp_passthru_engine {
431 enum ccp_passthru_bitwise bit_mod;
432 enum ccp_passthru_byteswap byte_swap;
434 struct scatterlist *mask;
435 u32 mask_len; /* In bytes */
437 struct scatterlist *src, *dst;
438 u64 src_len; /* In bytes */
444 * struct ccp_passthru_nomap_engine - CCP pass-through operation
445 * without performing DMA mapping
446 * @bit_mod: bitwise operation to perform
447 * @byte_swap: byteswap operation to perform
448 * @mask: mask to be applied to data
449 * @mask_len: length in bytes of mask
450 * @src: data to be used for this operation
451 * @dst: data produced by this operation
452 * @src_len: length in bytes of data used for this operation
453 * @final: indicate final pass-through operation
455 * Variables required to be set when calling ccp_enqueue_cmd():
456 * - bit_mod, byte_swap, src, dst, src_len
457 * - mask, mask_len if bit_mod is not CCP_PASSTHRU_BITWISE_NOOP
459 struct ccp_passthru_nomap_engine {
460 enum ccp_passthru_bitwise bit_mod;
461 enum ccp_passthru_byteswap byte_swap;
464 u32 mask_len; /* In bytes */
466 dma_addr_t src_dma, dst_dma;
467 u64 src_len; /* In bytes */
472 /***** ECC engine *****/
473 #define CCP_ECC_MODULUS_BYTES 48 /* 384-bits */
474 #define CCP_ECC_MAX_OPERANDS 6
475 #define CCP_ECC_MAX_OUTPUTS 3
478 * ccp_ecc_function - type of ECC function
480 * @CCP_ECC_FUNCTION_MMUL_384BIT: 384-bit modular multiplication
481 * @CCP_ECC_FUNCTION_MADD_384BIT: 384-bit modular addition
482 * @CCP_ECC_FUNCTION_MINV_384BIT: 384-bit multiplicative inverse
483 * @CCP_ECC_FUNCTION_PADD_384BIT: 384-bit point addition
484 * @CCP_ECC_FUNCTION_PMUL_384BIT: 384-bit point multiplication
485 * @CCP_ECC_FUNCTION_PDBL_384BIT: 384-bit point doubling
487 enum ccp_ecc_function {
488 CCP_ECC_FUNCTION_MMUL_384BIT = 0,
489 CCP_ECC_FUNCTION_MADD_384BIT,
490 CCP_ECC_FUNCTION_MINV_384BIT,
491 CCP_ECC_FUNCTION_PADD_384BIT,
492 CCP_ECC_FUNCTION_PMUL_384BIT,
493 CCP_ECC_FUNCTION_PDBL_384BIT,
497 * struct ccp_ecc_modular_math - CCP ECC modular math parameters
498 * @operand_1: first operand for the modular math operation
499 * @operand_1_len: length of the first operand
500 * @operand_2: second operand for the modular math operation
501 * (not used for CCP_ECC_FUNCTION_MINV_384BIT)
502 * @operand_2_len: length of the second operand
503 * (not used for CCP_ECC_FUNCTION_MINV_384BIT)
504 * @result: result of the modular math operation
505 * @result_len: length of the supplied result buffer
507 struct ccp_ecc_modular_math {
508 struct scatterlist *operand_1;
509 unsigned int operand_1_len; /* In bytes */
511 struct scatterlist *operand_2;
512 unsigned int operand_2_len; /* In bytes */
514 struct scatterlist *result;
515 unsigned int result_len; /* In bytes */
519 * struct ccp_ecc_point - CCP ECC point definition
520 * @x: the x coordinate of the ECC point
521 * @x_len: the length of the x coordinate
522 * @y: the y coordinate of the ECC point
523 * @y_len: the length of the y coordinate
525 struct ccp_ecc_point {
526 struct scatterlist *x;
527 unsigned int x_len; /* In bytes */
529 struct scatterlist *y;
530 unsigned int y_len; /* In bytes */
534 * struct ccp_ecc_point_math - CCP ECC point math parameters
535 * @point_1: the first point of the ECC point math operation
536 * @point_2: the second point of the ECC point math operation
537 * (only used for CCP_ECC_FUNCTION_PADD_384BIT)
538 * @domain_a: the a parameter of the ECC curve
539 * @domain_a_len: the length of the a parameter
540 * @scalar: the scalar parameter for the point match operation
541 * (only used for CCP_ECC_FUNCTION_PMUL_384BIT)
542 * @scalar_len: the length of the scalar parameter
543 * (only used for CCP_ECC_FUNCTION_PMUL_384BIT)
544 * @result: the point resulting from the point math operation
546 struct ccp_ecc_point_math {
547 struct ccp_ecc_point point_1;
548 struct ccp_ecc_point point_2;
550 struct scatterlist *domain_a;
551 unsigned int domain_a_len; /* In bytes */
553 struct scatterlist *scalar;
554 unsigned int scalar_len; /* In bytes */
556 struct ccp_ecc_point result;
560 * struct ccp_ecc_engine - CCP ECC operation
561 * @function: ECC function to perform
563 * @mod_len: length in bytes of modulus
564 * @mm: module math parameters
565 * @pm: point math parameters
566 * @ecc_result: result of the ECC operation
568 * Variables required to be set when calling ccp_enqueue_cmd():
569 * - function, mod, mod_len
570 * - operand, operand_len, operand_count, output, output_len, output_count
573 struct ccp_ecc_engine {
574 enum ccp_ecc_function function;
576 struct scatterlist *mod;
577 u32 mod_len; /* In bytes */
580 struct ccp_ecc_modular_math mm;
581 struct ccp_ecc_point_math pm;
589 * ccp_engine - CCP operation identifiers
591 * @CCP_ENGINE_AES: AES operation
592 * @CCP_ENGINE_XTS_AES: 128-bit XTS AES operation
593 * @CCP_ENGINE_RSVD1: unused
594 * @CCP_ENGINE_SHA: SHA operation
595 * @CCP_ENGINE_RSA: RSA operation
596 * @CCP_ENGINE_PASSTHRU: pass-through operation
597 * @CCP_ENGINE_ZLIB_DECOMPRESS: unused
598 * @CCP_ENGINE_ECC: ECC operation
602 CCP_ENGINE_XTS_AES_128,
607 CCP_ENGINE_ZLIB_DECOMPRESS,
612 /* Flag values for flags member of ccp_cmd */
613 #define CCP_CMD_MAY_BACKLOG 0x00000001
614 #define CCP_CMD_PASSTHRU_NO_DMA_MAP 0x00000002
617 * struct ccp_cmd - CCP operation request
618 * @entry: list element (ccp driver use only)
619 * @work: work element used for callbacks (ccp driver use only)
620 * @ccp: CCP device to be run on
621 * @ret: operation return code (ccp driver use only)
622 * @flags: cmd processing flags
623 * @engine: CCP operation to perform
624 * @engine_error: CCP engine return code
625 * @u: engine specific structures, refer to specific engine struct below
626 * @callback: operation completion callback function
627 * @data: parameter value to be supplied to the callback function
629 * Variables required to be set when calling ccp_enqueue_cmd():
631 * - See the operation structures below for what is required for each
635 /* The list_head, work_struct, ccp and ret variables are for use
636 * by the CCP driver only.
638 struct list_head entry;
639 struct work_struct work;
640 struct ccp_device *ccp;
645 enum ccp_engine engine;
649 struct ccp_aes_engine aes;
650 struct ccp_xts_aes_engine xts;
651 struct ccp_des3_engine des3;
652 struct ccp_sha_engine sha;
653 struct ccp_rsa_engine rsa;
654 struct ccp_passthru_engine passthru;
655 struct ccp_passthru_nomap_engine passthru_nomap;
656 struct ccp_ecc_engine ecc;
659 /* Completion callback support */
660 void (*callback)(void *data, int err);