4 * Copyright(c) 2015-2017 Intel Corporation. All rights reserved.
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
11 * * Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
13 * * Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in
15 * the documentation and/or other materials provided with the
17 * * Neither the name of Intel Corporation nor the names of its
18 * contributors may be used to endorse or promote products derived
19 * from this software without specific prior written permission.
21 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
22 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
23 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
24 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
25 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
26 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
27 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
28 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
29 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
30 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
31 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
40 #include <sys/queue.h>
43 #include <rte_common.h>
45 #include <rte_debug.h>
46 #include <rte_memory.h>
47 #include <rte_memzone.h>
48 #include <rte_tailq.h>
49 #include <rte_ether.h>
50 #include <rte_malloc.h>
51 #include <rte_launch.h>
53 #include <rte_per_lcore.h>
54 #include <rte_lcore.h>
55 #include <rte_atomic.h>
56 #include <rte_branch_prediction.h>
57 #include <rte_mempool.h>
59 #include <rte_string_fns.h>
60 #include <rte_spinlock.h>
61 #include <rte_hexdump.h>
62 #include <rte_crypto_sym.h>
63 #include <rte_cryptodev_pci.h>
64 #include <openssl/evp.h>
68 #include "qat_crypto.h"
69 #include "adf_transport_access_macros.h"
74 qat_is_cipher_alg_supported(enum rte_crypto_cipher_algorithm algo,
75 struct qat_pmd_private *internals) {
77 const struct rte_cryptodev_capabilities *capability;
79 while ((capability = &(internals->qat_dev_capabilities[i++]))->op !=
80 RTE_CRYPTO_OP_TYPE_UNDEFINED) {
81 if (capability->op != RTE_CRYPTO_OP_TYPE_SYMMETRIC)
84 if (capability->sym.xform_type != RTE_CRYPTO_SYM_XFORM_CIPHER)
87 if (capability->sym.cipher.algo == algo)
94 qat_is_auth_alg_supported(enum rte_crypto_auth_algorithm algo,
95 struct qat_pmd_private *internals) {
97 const struct rte_cryptodev_capabilities *capability;
99 while ((capability = &(internals->qat_dev_capabilities[i++]))->op !=
100 RTE_CRYPTO_OP_TYPE_UNDEFINED) {
101 if (capability->op != RTE_CRYPTO_OP_TYPE_SYMMETRIC)
104 if (capability->sym.xform_type != RTE_CRYPTO_SYM_XFORM_AUTH)
107 if (capability->sym.auth.algo == algo)
113 /** Encrypt a single partial block
114 * Depends on openssl libcrypto
115 * Uses ECB+XOR to do CFB encryption, same result, more performant
118 bpi_cipher_encrypt(uint8_t *src, uint8_t *dst,
119 uint8_t *iv, int ivlen, int srclen,
122 EVP_CIPHER_CTX *ctx = (EVP_CIPHER_CTX *)bpi_ctx;
124 uint8_t encrypted_iv[16];
127 /* ECB method: encrypt the IV, then XOR this with plaintext */
128 if (EVP_EncryptUpdate(ctx, encrypted_iv, &encrypted_ivlen, iv, ivlen)
130 goto cipher_encrypt_err;
132 for (i = 0; i < srclen; i++)
133 *(dst+i) = *(src+i)^(encrypted_iv[i]);
138 PMD_DRV_LOG(ERR, "libcrypto ECB cipher encrypt failed");
142 /** Decrypt a single partial block
143 * Depends on openssl libcrypto
144 * Uses ECB+XOR to do CFB encryption, same result, more performant
147 bpi_cipher_decrypt(uint8_t *src, uint8_t *dst,
148 uint8_t *iv, int ivlen, int srclen,
151 EVP_CIPHER_CTX *ctx = (EVP_CIPHER_CTX *)bpi_ctx;
153 uint8_t encrypted_iv[16];
156 /* ECB method: encrypt (not decrypt!) the IV, then XOR with plaintext */
157 if (EVP_EncryptUpdate(ctx, encrypted_iv, &encrypted_ivlen, iv, ivlen)
159 goto cipher_decrypt_err;
161 for (i = 0; i < srclen; i++)
162 *(dst+i) = *(src+i)^(encrypted_iv[i]);
167 PMD_DRV_LOG(ERR, "libcrypto ECB cipher encrypt for BPI IV failed");
171 /** Creates a context in either AES or DES in ECB mode
172 * Depends on openssl libcrypto
175 bpi_cipher_ctx_init(enum rte_crypto_cipher_algorithm cryptodev_algo,
176 enum rte_crypto_cipher_operation direction __rte_unused,
179 const EVP_CIPHER *algo = NULL;
180 EVP_CIPHER_CTX *ctx = EVP_CIPHER_CTX_new();
185 if (cryptodev_algo == RTE_CRYPTO_CIPHER_DES_DOCSISBPI)
186 algo = EVP_des_ecb();
188 algo = EVP_aes_128_ecb();
190 /* IV will be ECB encrypted whether direction is encrypt or decrypt*/
191 if (EVP_EncryptInit_ex(ctx, algo, NULL, key, 0) != 1)
198 EVP_CIPHER_CTX_free(ctx);
202 /** Frees a context previously created
203 * Depends on openssl libcrypto
206 bpi_cipher_ctx_free(void *bpi_ctx)
209 EVP_CIPHER_CTX_free((EVP_CIPHER_CTX *)bpi_ctx);
212 static inline uint32_t
213 adf_modulo(uint32_t data, uint32_t shift);
216 qat_write_hw_desc_entry(struct rte_crypto_op *op, uint8_t *out_msg,
217 struct qat_crypto_op_cookie *qat_op_cookie);
220 qat_crypto_sym_clear_session(struct rte_cryptodev *dev,
221 struct rte_cryptodev_sym_session *sess)
223 PMD_INIT_FUNC_TRACE();
224 uint8_t index = dev->driver_id;
225 void *sess_priv = get_session_private_data(sess, index);
226 struct qat_session *s = (struct qat_session *)sess_priv;
230 bpi_cipher_ctx_free(s->bpi_ctx);
231 memset(s, 0, qat_crypto_sym_get_session_private_size(dev));
232 struct rte_mempool *sess_mp = rte_mempool_from_obj(sess_priv);
233 set_session_private_data(sess, index, NULL);
234 rte_mempool_put(sess_mp, sess_priv);
239 qat_get_cmd_id(const struct rte_crypto_sym_xform *xform)
242 if (xform->type == RTE_CRYPTO_SYM_XFORM_CIPHER && xform->next == NULL)
243 return ICP_QAT_FW_LA_CMD_CIPHER;
245 /* Authentication Only */
246 if (xform->type == RTE_CRYPTO_SYM_XFORM_AUTH && xform->next == NULL)
247 return ICP_QAT_FW_LA_CMD_AUTH;
250 if (xform->type == RTE_CRYPTO_SYM_XFORM_AEAD) {
251 if (xform->aead.op == RTE_CRYPTO_AEAD_OP_ENCRYPT)
252 return ICP_QAT_FW_LA_CMD_CIPHER_HASH;
254 return ICP_QAT_FW_LA_CMD_HASH_CIPHER;
257 if (xform->next == NULL)
260 /* Cipher then Authenticate */
261 if (xform->type == RTE_CRYPTO_SYM_XFORM_CIPHER &&
262 xform->next->type == RTE_CRYPTO_SYM_XFORM_AUTH)
263 return ICP_QAT_FW_LA_CMD_CIPHER_HASH;
265 /* Authenticate then Cipher */
266 if (xform->type == RTE_CRYPTO_SYM_XFORM_AUTH &&
267 xform->next->type == RTE_CRYPTO_SYM_XFORM_CIPHER)
268 return ICP_QAT_FW_LA_CMD_HASH_CIPHER;
273 static struct rte_crypto_auth_xform *
274 qat_get_auth_xform(struct rte_crypto_sym_xform *xform)
277 if (xform->type == RTE_CRYPTO_SYM_XFORM_AUTH)
286 static struct rte_crypto_cipher_xform *
287 qat_get_cipher_xform(struct rte_crypto_sym_xform *xform)
290 if (xform->type == RTE_CRYPTO_SYM_XFORM_CIPHER)
291 return &xform->cipher;
299 qat_crypto_sym_configure_session_cipher(struct rte_cryptodev *dev,
300 struct rte_crypto_sym_xform *xform, void *session_private)
302 struct qat_session *session = session_private;
303 struct qat_pmd_private *internals = dev->data->dev_private;
304 struct rte_crypto_cipher_xform *cipher_xform = NULL;
306 /* Get cipher xform from crypto xform chain */
307 cipher_xform = qat_get_cipher_xform(xform);
309 session->cipher_iv.offset = cipher_xform->iv.offset;
310 session->cipher_iv.length = cipher_xform->iv.length;
312 switch (cipher_xform->algo) {
313 case RTE_CRYPTO_CIPHER_AES_CBC:
314 if (qat_alg_validate_aes_key(cipher_xform->key.length,
315 &session->qat_cipher_alg) != 0) {
316 PMD_DRV_LOG(ERR, "Invalid AES cipher key size");
319 session->qat_mode = ICP_QAT_HW_CIPHER_CBC_MODE;
321 case RTE_CRYPTO_CIPHER_AES_CTR:
322 if (qat_alg_validate_aes_key(cipher_xform->key.length,
323 &session->qat_cipher_alg) != 0) {
324 PMD_DRV_LOG(ERR, "Invalid AES cipher key size");
327 session->qat_mode = ICP_QAT_HW_CIPHER_CTR_MODE;
329 case RTE_CRYPTO_CIPHER_SNOW3G_UEA2:
330 if (qat_alg_validate_snow3g_key(cipher_xform->key.length,
331 &session->qat_cipher_alg) != 0) {
332 PMD_DRV_LOG(ERR, "Invalid SNOW 3G cipher key size");
335 session->qat_mode = ICP_QAT_HW_CIPHER_ECB_MODE;
337 case RTE_CRYPTO_CIPHER_NULL:
338 session->qat_mode = ICP_QAT_HW_CIPHER_ECB_MODE;
340 case RTE_CRYPTO_CIPHER_KASUMI_F8:
341 if (qat_alg_validate_kasumi_key(cipher_xform->key.length,
342 &session->qat_cipher_alg) != 0) {
343 PMD_DRV_LOG(ERR, "Invalid KASUMI cipher key size");
346 session->qat_mode = ICP_QAT_HW_CIPHER_F8_MODE;
348 case RTE_CRYPTO_CIPHER_3DES_CBC:
349 if (qat_alg_validate_3des_key(cipher_xform->key.length,
350 &session->qat_cipher_alg) != 0) {
351 PMD_DRV_LOG(ERR, "Invalid 3DES cipher key size");
354 session->qat_mode = ICP_QAT_HW_CIPHER_CBC_MODE;
356 case RTE_CRYPTO_CIPHER_DES_CBC:
357 if (qat_alg_validate_des_key(cipher_xform->key.length,
358 &session->qat_cipher_alg) != 0) {
359 PMD_DRV_LOG(ERR, "Invalid DES cipher key size");
362 session->qat_mode = ICP_QAT_HW_CIPHER_CBC_MODE;
364 case RTE_CRYPTO_CIPHER_3DES_CTR:
365 if (qat_alg_validate_3des_key(cipher_xform->key.length,
366 &session->qat_cipher_alg) != 0) {
367 PMD_DRV_LOG(ERR, "Invalid 3DES cipher key size");
370 session->qat_mode = ICP_QAT_HW_CIPHER_CTR_MODE;
372 case RTE_CRYPTO_CIPHER_DES_DOCSISBPI:
373 session->bpi_ctx = bpi_cipher_ctx_init(
376 cipher_xform->key.data);
377 if (session->bpi_ctx == NULL) {
378 PMD_DRV_LOG(ERR, "failed to create DES BPI ctx");
381 if (qat_alg_validate_des_key(cipher_xform->key.length,
382 &session->qat_cipher_alg) != 0) {
383 PMD_DRV_LOG(ERR, "Invalid DES cipher key size");
386 session->qat_mode = ICP_QAT_HW_CIPHER_CBC_MODE;
388 case RTE_CRYPTO_CIPHER_AES_DOCSISBPI:
389 session->bpi_ctx = bpi_cipher_ctx_init(
392 cipher_xform->key.data);
393 if (session->bpi_ctx == NULL) {
394 PMD_DRV_LOG(ERR, "failed to create AES BPI ctx");
397 if (qat_alg_validate_aes_docsisbpi_key(cipher_xform->key.length,
398 &session->qat_cipher_alg) != 0) {
399 PMD_DRV_LOG(ERR, "Invalid AES DOCSISBPI key size");
402 session->qat_mode = ICP_QAT_HW_CIPHER_CBC_MODE;
404 case RTE_CRYPTO_CIPHER_ZUC_EEA3:
405 if (!qat_is_cipher_alg_supported(
406 cipher_xform->algo, internals)) {
407 PMD_DRV_LOG(ERR, "%s not supported on this device",
408 rte_crypto_cipher_algorithm_strings
409 [cipher_xform->algo]);
412 if (qat_alg_validate_zuc_key(cipher_xform->key.length,
413 &session->qat_cipher_alg) != 0) {
414 PMD_DRV_LOG(ERR, "Invalid ZUC cipher key size");
417 session->qat_mode = ICP_QAT_HW_CIPHER_ECB_MODE;
419 case RTE_CRYPTO_CIPHER_3DES_ECB:
420 case RTE_CRYPTO_CIPHER_AES_ECB:
421 case RTE_CRYPTO_CIPHER_AES_F8:
422 case RTE_CRYPTO_CIPHER_AES_XTS:
423 case RTE_CRYPTO_CIPHER_ARC4:
424 PMD_DRV_LOG(ERR, "Crypto QAT PMD: Unsupported Cipher alg %u",
428 PMD_DRV_LOG(ERR, "Crypto: Undefined Cipher specified %u\n",
433 if (cipher_xform->op == RTE_CRYPTO_CIPHER_OP_ENCRYPT)
434 session->qat_dir = ICP_QAT_HW_CIPHER_ENCRYPT;
436 session->qat_dir = ICP_QAT_HW_CIPHER_DECRYPT;
438 if (qat_alg_aead_session_create_content_desc_cipher(session,
439 cipher_xform->key.data,
440 cipher_xform->key.length))
446 if (session->bpi_ctx) {
447 bpi_cipher_ctx_free(session->bpi_ctx);
448 session->bpi_ctx = NULL;
454 qat_crypto_sym_configure_session(struct rte_cryptodev *dev,
455 struct rte_crypto_sym_xform *xform,
456 struct rte_cryptodev_sym_session *sess,
457 struct rte_mempool *mempool)
459 void *sess_private_data;
461 if (rte_mempool_get(mempool, &sess_private_data)) {
463 "Couldn't get object from session mempool");
467 if (qat_crypto_set_session_parameters(dev, xform, sess_private_data) != 0) {
468 PMD_DRV_LOG(ERR, "Crypto QAT PMD: failed to configure "
469 "session parameters");
471 /* Return session to mempool */
472 rte_mempool_put(mempool, sess_private_data);
476 set_session_private_data(sess, dev->driver_id,
483 qat_crypto_set_session_parameters(struct rte_cryptodev *dev,
484 struct rte_crypto_sym_xform *xform, void *session_private)
486 struct qat_session *session = session_private;
489 PMD_INIT_FUNC_TRACE();
491 /* Set context descriptor physical address */
492 session->cd_paddr = rte_mempool_virt2phy(NULL, session) +
493 offsetof(struct qat_session, cd);
495 /* Get requested QAT command id */
496 qat_cmd_id = qat_get_cmd_id(xform);
497 if (qat_cmd_id < 0 || qat_cmd_id >= ICP_QAT_FW_LA_CMD_DELIMITER) {
498 PMD_DRV_LOG(ERR, "Unsupported xform chain requested");
501 session->qat_cmd = (enum icp_qat_fw_la_cmd_id)qat_cmd_id;
502 switch (session->qat_cmd) {
503 case ICP_QAT_FW_LA_CMD_CIPHER:
504 session = qat_crypto_sym_configure_session_cipher(dev, xform, session);
506 case ICP_QAT_FW_LA_CMD_AUTH:
507 session = qat_crypto_sym_configure_session_auth(dev, xform, session);
509 case ICP_QAT_FW_LA_CMD_CIPHER_HASH:
510 if (xform->type == RTE_CRYPTO_SYM_XFORM_AEAD)
511 session = qat_crypto_sym_configure_session_aead(xform,
514 session = qat_crypto_sym_configure_session_cipher(dev,
516 session = qat_crypto_sym_configure_session_auth(dev,
520 case ICP_QAT_FW_LA_CMD_HASH_CIPHER:
521 if (xform->type == RTE_CRYPTO_SYM_XFORM_AEAD)
522 session = qat_crypto_sym_configure_session_aead(xform,
525 session = qat_crypto_sym_configure_session_auth(dev,
527 session = qat_crypto_sym_configure_session_cipher(dev,
531 case ICP_QAT_FW_LA_CMD_TRNG_GET_RANDOM:
532 case ICP_QAT_FW_LA_CMD_TRNG_TEST:
533 case ICP_QAT_FW_LA_CMD_SSL3_KEY_DERIVE:
534 case ICP_QAT_FW_LA_CMD_TLS_V1_1_KEY_DERIVE:
535 case ICP_QAT_FW_LA_CMD_TLS_V1_2_KEY_DERIVE:
536 case ICP_QAT_FW_LA_CMD_MGF1:
537 case ICP_QAT_FW_LA_CMD_AUTH_PRE_COMP:
538 case ICP_QAT_FW_LA_CMD_CIPHER_PRE_COMP:
539 case ICP_QAT_FW_LA_CMD_DELIMITER:
540 PMD_DRV_LOG(ERR, "Unsupported Service %u",
544 PMD_DRV_LOG(ERR, "Unsupported Service %u",
556 qat_crypto_sym_configure_session_auth(struct rte_cryptodev *dev,
557 struct rte_crypto_sym_xform *xform,
558 struct qat_session *session_private)
561 struct qat_session *session = session_private;
562 struct rte_crypto_auth_xform *auth_xform = NULL;
563 struct qat_pmd_private *internals = dev->data->dev_private;
564 auth_xform = qat_get_auth_xform(xform);
565 uint8_t *key_data = auth_xform->key.data;
566 uint8_t key_length = auth_xform->key.length;
568 switch (auth_xform->algo) {
569 case RTE_CRYPTO_AUTH_SHA1_HMAC:
570 session->qat_hash_alg = ICP_QAT_HW_AUTH_ALGO_SHA1;
572 case RTE_CRYPTO_AUTH_SHA224_HMAC:
573 session->qat_hash_alg = ICP_QAT_HW_AUTH_ALGO_SHA224;
575 case RTE_CRYPTO_AUTH_SHA256_HMAC:
576 session->qat_hash_alg = ICP_QAT_HW_AUTH_ALGO_SHA256;
578 case RTE_CRYPTO_AUTH_SHA384_HMAC:
579 session->qat_hash_alg = ICP_QAT_HW_AUTH_ALGO_SHA384;
581 case RTE_CRYPTO_AUTH_SHA512_HMAC:
582 session->qat_hash_alg = ICP_QAT_HW_AUTH_ALGO_SHA512;
584 case RTE_CRYPTO_AUTH_AES_XCBC_MAC:
585 session->qat_hash_alg = ICP_QAT_HW_AUTH_ALGO_AES_XCBC_MAC;
587 case RTE_CRYPTO_AUTH_AES_GMAC:
588 if (qat_alg_validate_aes_key(auth_xform->key.length,
589 &session->qat_cipher_alg) != 0) {
590 PMD_DRV_LOG(ERR, "Invalid AES key size");
593 session->qat_mode = ICP_QAT_HW_CIPHER_CTR_MODE;
594 session->qat_hash_alg = ICP_QAT_HW_AUTH_ALGO_GALOIS_128;
597 case RTE_CRYPTO_AUTH_SNOW3G_UIA2:
598 session->qat_hash_alg = ICP_QAT_HW_AUTH_ALGO_SNOW_3G_UIA2;
600 case RTE_CRYPTO_AUTH_MD5_HMAC:
601 session->qat_hash_alg = ICP_QAT_HW_AUTH_ALGO_MD5;
603 case RTE_CRYPTO_AUTH_NULL:
604 session->qat_hash_alg = ICP_QAT_HW_AUTH_ALGO_NULL;
606 case RTE_CRYPTO_AUTH_KASUMI_F9:
607 session->qat_hash_alg = ICP_QAT_HW_AUTH_ALGO_KASUMI_F9;
609 case RTE_CRYPTO_AUTH_ZUC_EIA3:
610 if (!qat_is_auth_alg_supported(auth_xform->algo, internals)) {
611 PMD_DRV_LOG(ERR, "%s not supported on this device",
612 rte_crypto_auth_algorithm_strings
616 session->qat_hash_alg = ICP_QAT_HW_AUTH_ALGO_ZUC_3G_128_EIA3;
618 case RTE_CRYPTO_AUTH_SHA1:
619 case RTE_CRYPTO_AUTH_SHA256:
620 case RTE_CRYPTO_AUTH_SHA512:
621 case RTE_CRYPTO_AUTH_SHA224:
622 case RTE_CRYPTO_AUTH_SHA384:
623 case RTE_CRYPTO_AUTH_MD5:
624 case RTE_CRYPTO_AUTH_AES_CMAC:
625 case RTE_CRYPTO_AUTH_AES_CBC_MAC:
626 PMD_DRV_LOG(ERR, "Crypto: Unsupported hash alg %u",
630 PMD_DRV_LOG(ERR, "Crypto: Undefined Hash algo %u specified",
635 session->auth_iv.offset = auth_xform->iv.offset;
636 session->auth_iv.length = auth_xform->iv.length;
638 if (auth_xform->algo == RTE_CRYPTO_AUTH_AES_GMAC) {
639 if (auth_xform->op == RTE_CRYPTO_AUTH_OP_GENERATE) {
640 session->qat_cmd = ICP_QAT_FW_LA_CMD_CIPHER_HASH;
641 session->qat_dir = ICP_QAT_HW_CIPHER_ENCRYPT;
643 * It needs to create cipher desc content first,
644 * then authentication
646 if (qat_alg_aead_session_create_content_desc_cipher(session,
647 auth_xform->key.data,
648 auth_xform->key.length))
651 if (qat_alg_aead_session_create_content_desc_auth(session,
655 auth_xform->digest_length,
659 session->qat_cmd = ICP_QAT_FW_LA_CMD_HASH_CIPHER;
660 session->qat_dir = ICP_QAT_HW_CIPHER_DECRYPT;
662 * It needs to create authentication desc content first,
665 if (qat_alg_aead_session_create_content_desc_auth(session,
669 auth_xform->digest_length,
673 if (qat_alg_aead_session_create_content_desc_cipher(session,
674 auth_xform->key.data,
675 auth_xform->key.length))
678 /* Restore to authentication only only */
679 session->qat_cmd = ICP_QAT_FW_LA_CMD_AUTH;
681 if (qat_alg_aead_session_create_content_desc_auth(session,
685 auth_xform->digest_length,
690 session->digest_length = auth_xform->digest_length;
698 qat_crypto_sym_configure_session_aead(struct rte_crypto_sym_xform *xform,
699 struct qat_session *session_private)
701 struct qat_session *session = session_private;
702 struct rte_crypto_aead_xform *aead_xform = &xform->aead;
705 * Store AEAD IV parameters as cipher IV,
706 * to avoid unnecessary memory usage
708 session->cipher_iv.offset = xform->aead.iv.offset;
709 session->cipher_iv.length = xform->aead.iv.length;
711 switch (aead_xform->algo) {
712 case RTE_CRYPTO_AEAD_AES_GCM:
713 if (qat_alg_validate_aes_key(aead_xform->key.length,
714 &session->qat_cipher_alg) != 0) {
715 PMD_DRV_LOG(ERR, "Invalid AES key size");
718 session->qat_mode = ICP_QAT_HW_CIPHER_CTR_MODE;
719 session->qat_hash_alg = ICP_QAT_HW_AUTH_ALGO_GALOIS_128;
721 case RTE_CRYPTO_AEAD_AES_CCM:
722 PMD_DRV_LOG(ERR, "Crypto QAT PMD: Unsupported AEAD alg %u",
726 PMD_DRV_LOG(ERR, "Crypto: Undefined AEAD specified %u\n",
731 if (aead_xform->op == RTE_CRYPTO_AEAD_OP_ENCRYPT) {
732 session->qat_dir = ICP_QAT_HW_CIPHER_ENCRYPT;
734 * It needs to create cipher desc content first,
735 * then authentication
737 if (qat_alg_aead_session_create_content_desc_cipher(session,
738 aead_xform->key.data,
739 aead_xform->key.length))
742 if (qat_alg_aead_session_create_content_desc_auth(session,
743 aead_xform->key.data,
744 aead_xform->key.length,
745 aead_xform->add_auth_data_length,
746 aead_xform->digest_length,
747 RTE_CRYPTO_AUTH_OP_GENERATE))
750 session->qat_dir = ICP_QAT_HW_CIPHER_DECRYPT;
752 * It needs to create authentication desc content first,
755 if (qat_alg_aead_session_create_content_desc_auth(session,
756 aead_xform->key.data,
757 aead_xform->key.length,
758 aead_xform->add_auth_data_length,
759 aead_xform->digest_length,
760 RTE_CRYPTO_AUTH_OP_VERIFY))
763 if (qat_alg_aead_session_create_content_desc_cipher(session,
764 aead_xform->key.data,
765 aead_xform->key.length))
769 session->digest_length = aead_xform->digest_length;
776 unsigned qat_crypto_sym_get_session_private_size(
777 struct rte_cryptodev *dev __rte_unused)
779 return RTE_ALIGN_CEIL(sizeof(struct qat_session), 8);
782 static inline uint32_t
783 qat_bpicipher_preprocess(struct qat_session *ctx,
784 struct rte_crypto_op *op)
786 uint8_t block_len = qat_cipher_get_block_size(ctx->qat_cipher_alg);
787 struct rte_crypto_sym_op *sym_op = op->sym;
788 uint8_t last_block_len = sym_op->cipher.data.length % block_len;
790 if (last_block_len &&
791 ctx->qat_dir == ICP_QAT_HW_CIPHER_DECRYPT) {
793 /* Decrypt last block */
794 uint8_t *last_block, *dst, *iv;
795 uint32_t last_block_offset = sym_op->cipher.data.offset +
796 sym_op->cipher.data.length - last_block_len;
797 last_block = (uint8_t *) rte_pktmbuf_mtod_offset(sym_op->m_src,
798 uint8_t *, last_block_offset);
800 if (unlikely(sym_op->m_dst != NULL))
801 /* out-of-place operation (OOP) */
802 dst = (uint8_t *) rte_pktmbuf_mtod_offset(sym_op->m_dst,
803 uint8_t *, last_block_offset);
807 if (last_block_len < sym_op->cipher.data.length)
808 /* use previous block ciphertext as IV */
809 iv = last_block - block_len;
811 /* runt block, i.e. less than one full block */
812 iv = rte_crypto_op_ctod_offset(op, uint8_t *,
813 ctx->cipher_iv.offset);
815 #ifdef RTE_LIBRTE_PMD_QAT_DEBUG_TX
816 rte_hexdump(stdout, "BPI: src before pre-process:", last_block,
818 if (sym_op->m_dst != NULL)
819 rte_hexdump(stdout, "BPI: dst before pre-process:", dst,
822 bpi_cipher_decrypt(last_block, dst, iv, block_len,
823 last_block_len, ctx->bpi_ctx);
824 #ifdef RTE_LIBRTE_PMD_QAT_DEBUG_TX
825 rte_hexdump(stdout, "BPI: src after pre-process:", last_block,
827 if (sym_op->m_dst != NULL)
828 rte_hexdump(stdout, "BPI: dst after pre-process:", dst,
833 return sym_op->cipher.data.length - last_block_len;
836 static inline uint32_t
837 qat_bpicipher_postprocess(struct qat_session *ctx,
838 struct rte_crypto_op *op)
840 uint8_t block_len = qat_cipher_get_block_size(ctx->qat_cipher_alg);
841 struct rte_crypto_sym_op *sym_op = op->sym;
842 uint8_t last_block_len = sym_op->cipher.data.length % block_len;
844 if (last_block_len > 0 &&
845 ctx->qat_dir == ICP_QAT_HW_CIPHER_ENCRYPT) {
847 /* Encrypt last block */
848 uint8_t *last_block, *dst, *iv;
849 uint32_t last_block_offset;
851 last_block_offset = sym_op->cipher.data.offset +
852 sym_op->cipher.data.length - last_block_len;
853 last_block = (uint8_t *) rte_pktmbuf_mtod_offset(sym_op->m_src,
854 uint8_t *, last_block_offset);
856 if (unlikely(sym_op->m_dst != NULL))
857 /* out-of-place operation (OOP) */
858 dst = (uint8_t *) rte_pktmbuf_mtod_offset(sym_op->m_dst,
859 uint8_t *, last_block_offset);
863 if (last_block_len < sym_op->cipher.data.length)
864 /* use previous block ciphertext as IV */
865 iv = dst - block_len;
867 /* runt block, i.e. less than one full block */
868 iv = rte_crypto_op_ctod_offset(op, uint8_t *,
869 ctx->cipher_iv.offset);
871 #ifdef RTE_LIBRTE_PMD_QAT_DEBUG_RX
872 rte_hexdump(stdout, "BPI: src before post-process:", last_block,
874 if (sym_op->m_dst != NULL)
875 rte_hexdump(stdout, "BPI: dst before post-process:",
876 dst, last_block_len);
878 bpi_cipher_encrypt(last_block, dst, iv, block_len,
879 last_block_len, ctx->bpi_ctx);
880 #ifdef RTE_LIBRTE_PMD_QAT_DEBUG_RX
881 rte_hexdump(stdout, "BPI: src after post-process:", last_block,
883 if (sym_op->m_dst != NULL)
884 rte_hexdump(stdout, "BPI: dst after post-process:", dst,
888 return sym_op->cipher.data.length - last_block_len;
892 qat_pmd_enqueue_op_burst(void *qp, struct rte_crypto_op **ops,
895 register struct qat_queue *queue;
896 struct qat_qp *tmp_qp = (struct qat_qp *)qp;
897 register uint32_t nb_ops_sent = 0;
898 register struct rte_crypto_op **cur_op = ops;
900 uint16_t nb_ops_possible = nb_ops;
901 register uint8_t *base_addr;
902 register uint32_t tail;
905 if (unlikely(nb_ops == 0))
908 /* read params used a lot in main loop into registers */
909 queue = &(tmp_qp->tx_q);
910 base_addr = (uint8_t *)queue->base_addr;
913 /* Find how many can actually fit on the ring */
914 overflow = rte_atomic16_add_return(&tmp_qp->inflights16, nb_ops)
915 - queue->max_inflights;
917 rte_atomic16_sub(&tmp_qp->inflights16, overflow);
918 nb_ops_possible = nb_ops - overflow;
919 if (nb_ops_possible == 0)
923 while (nb_ops_sent != nb_ops_possible) {
924 ret = qat_write_hw_desc_entry(*cur_op, base_addr + tail,
925 tmp_qp->op_cookies[tail / queue->msg_size]);
927 tmp_qp->stats.enqueue_err_count++;
929 * This message cannot be enqueued,
930 * decrease number of ops that wasn't sent
932 rte_atomic16_sub(&tmp_qp->inflights16,
933 nb_ops_possible - nb_ops_sent);
934 if (nb_ops_sent == 0)
939 tail = adf_modulo(tail + queue->msg_size, queue->modulo);
944 WRITE_CSR_RING_TAIL(tmp_qp->mmap_bar_addr, queue->hw_bundle_number,
945 queue->hw_queue_number, tail);
947 tmp_qp->stats.enqueued_count += nb_ops_sent;
952 qat_pmd_dequeue_op_burst(void *qp, struct rte_crypto_op **ops,
955 struct qat_queue *queue;
956 struct qat_qp *tmp_qp = (struct qat_qp *)qp;
957 uint32_t msg_counter = 0;
958 struct rte_crypto_op *rx_op;
959 struct icp_qat_fw_comn_resp *resp_msg;
961 queue = &(tmp_qp->rx_q);
962 resp_msg = (struct icp_qat_fw_comn_resp *)
963 ((uint8_t *)queue->base_addr + queue->head);
965 while (*(uint32_t *)resp_msg != ADF_RING_EMPTY_SIG &&
966 msg_counter != nb_ops) {
967 rx_op = (struct rte_crypto_op *)(uintptr_t)
968 (resp_msg->opaque_data);
970 #ifdef RTE_LIBRTE_PMD_QAT_DEBUG_RX
971 rte_hexdump(stdout, "qat_response:", (uint8_t *)resp_msg,
972 sizeof(struct icp_qat_fw_comn_resp));
975 if (ICP_QAT_FW_COMN_STATUS_FLAG_OK !=
976 ICP_QAT_FW_COMN_RESP_CRYPTO_STAT_GET(
977 resp_msg->comn_hdr.comn_status)) {
978 rx_op->status = RTE_CRYPTO_OP_STATUS_AUTH_FAILED;
980 struct qat_session *sess = (struct qat_session *)
981 get_session_private_data(
983 cryptodev_qat_driver_id);
986 qat_bpicipher_postprocess(sess, rx_op);
987 rx_op->status = RTE_CRYPTO_OP_STATUS_SUCCESS;
990 *(uint32_t *)resp_msg = ADF_RING_EMPTY_SIG;
991 queue->head = adf_modulo(queue->head +
993 ADF_RING_SIZE_MODULO(queue->queue_size));
994 resp_msg = (struct icp_qat_fw_comn_resp *)
995 ((uint8_t *)queue->base_addr +
1001 if (msg_counter > 0) {
1002 WRITE_CSR_RING_HEAD(tmp_qp->mmap_bar_addr,
1003 queue->hw_bundle_number,
1004 queue->hw_queue_number, queue->head);
1005 rte_atomic16_sub(&tmp_qp->inflights16, msg_counter);
1006 tmp_qp->stats.dequeued_count += msg_counter;
1012 qat_sgl_fill_array(struct rte_mbuf *buf, uint64_t buff_start,
1013 struct qat_alg_buf_list *list, uint32_t data_len)
1017 uint32_t buf_len = rte_pktmbuf_mtophys(buf) -
1018 buff_start + rte_pktmbuf_data_len(buf);
1020 list->bufers[0].addr = buff_start;
1021 list->bufers[0].resrvd = 0;
1022 list->bufers[0].len = buf_len;
1024 if (data_len <= buf_len) {
1025 list->num_bufs = nr;
1026 list->bufers[0].len = data_len;
1032 if (unlikely(nr == QAT_SGL_MAX_NUMBER)) {
1033 PMD_DRV_LOG(ERR, "QAT PMD exceeded size of QAT SGL"
1035 QAT_SGL_MAX_NUMBER);
1039 list->bufers[nr].len = rte_pktmbuf_data_len(buf);
1040 list->bufers[nr].resrvd = 0;
1041 list->bufers[nr].addr = rte_pktmbuf_mtophys(buf);
1043 buf_len += list->bufers[nr].len;
1046 if (buf_len > data_len) {
1047 list->bufers[nr].len -=
1053 list->num_bufs = nr;
1059 set_cipher_iv(uint16_t iv_length, uint16_t iv_offset,
1060 struct icp_qat_fw_la_cipher_req_params *cipher_param,
1061 struct rte_crypto_op *op,
1062 struct icp_qat_fw_la_bulk_req *qat_req)
1064 /* copy IV into request if it fits */
1065 if (iv_length <= sizeof(cipher_param->u.cipher_IV_array)) {
1066 rte_memcpy(cipher_param->u.cipher_IV_array,
1067 rte_crypto_op_ctod_offset(op, uint8_t *,
1071 ICP_QAT_FW_LA_CIPH_IV_FLD_FLAG_SET(
1072 qat_req->comn_hdr.serv_specif_flags,
1073 ICP_QAT_FW_CIPH_IV_64BIT_PTR);
1074 cipher_param->u.s.cipher_IV_ptr =
1075 rte_crypto_op_ctophys_offset(op,
1081 qat_write_hw_desc_entry(struct rte_crypto_op *op, uint8_t *out_msg,
1082 struct qat_crypto_op_cookie *qat_op_cookie)
1085 struct qat_session *ctx;
1086 struct icp_qat_fw_la_cipher_req_params *cipher_param;
1087 struct icp_qat_fw_la_auth_req_params *auth_param;
1088 register struct icp_qat_fw_la_bulk_req *qat_req;
1089 uint8_t do_auth = 0, do_cipher = 0, do_aead = 0;
1090 uint32_t cipher_len = 0, cipher_ofs = 0;
1091 uint32_t auth_len = 0, auth_ofs = 0;
1092 uint32_t min_ofs = 0;
1093 uint64_t src_buf_start = 0, dst_buf_start = 0;
1096 #ifdef RTE_LIBRTE_PMD_QAT_DEBUG_TX
1097 if (unlikely(op->type != RTE_CRYPTO_OP_TYPE_SYMMETRIC)) {
1098 PMD_DRV_LOG(ERR, "QAT PMD only supports symmetric crypto "
1099 "operation requests, op (%p) is not a "
1100 "symmetric operation.", op);
1104 if (unlikely(op->sess_type == RTE_CRYPTO_OP_SESSIONLESS)) {
1105 PMD_DRV_LOG(ERR, "QAT PMD only supports session oriented"
1106 " requests, op (%p) is sessionless.", op);
1110 ctx = (struct qat_session *)get_session_private_data(
1111 op->sym->session, cryptodev_qat_driver_id);
1113 if (unlikely(ctx == NULL)) {
1114 PMD_DRV_LOG(ERR, "Session was not created for this device");
1118 qat_req = (struct icp_qat_fw_la_bulk_req *)out_msg;
1119 rte_mov128((uint8_t *)qat_req, (const uint8_t *)&(ctx->fw_req));
1120 qat_req->comn_mid.opaque_data = (uint64_t)(uintptr_t)op;
1121 cipher_param = (void *)&qat_req->serv_specif_rqpars;
1122 auth_param = (void *)((uint8_t *)cipher_param + sizeof(*cipher_param));
1124 if (ctx->qat_cmd == ICP_QAT_FW_LA_CMD_HASH_CIPHER ||
1125 ctx->qat_cmd == ICP_QAT_FW_LA_CMD_CIPHER_HASH) {
1127 if (ctx->qat_hash_alg == ICP_QAT_HW_AUTH_ALGO_GALOIS_128 ||
1128 ctx->qat_hash_alg == ICP_QAT_HW_AUTH_ALGO_GALOIS_64) {
1134 } else if (ctx->qat_cmd == ICP_QAT_FW_LA_CMD_AUTH) {
1137 } else if (ctx->qat_cmd == ICP_QAT_FW_LA_CMD_CIPHER) {
1144 if (ctx->qat_cipher_alg ==
1145 ICP_QAT_HW_CIPHER_ALGO_SNOW_3G_UEA2 ||
1146 ctx->qat_cipher_alg == ICP_QAT_HW_CIPHER_ALGO_KASUMI ||
1147 ctx->qat_cipher_alg ==
1148 ICP_QAT_HW_CIPHER_ALGO_ZUC_3G_128_EEA3) {
1151 (cipher_param->cipher_length % BYTE_LENGTH != 0)
1152 || (cipher_param->cipher_offset
1153 % BYTE_LENGTH != 0))) {
1155 "SNOW3G/KASUMI/ZUC in QAT PMD only supports byte aligned values");
1156 op->status = RTE_CRYPTO_OP_STATUS_INVALID_ARGS;
1159 cipher_len = op->sym->cipher.data.length >> 3;
1160 cipher_ofs = op->sym->cipher.data.offset >> 3;
1162 } else if (ctx->bpi_ctx) {
1163 /* DOCSIS - only send complete blocks to device
1164 * Process any partial block using CFB mode.
1165 * Even if 0 complete blocks, still send this to device
1166 * to get into rx queue for post-process and dequeuing
1168 cipher_len = qat_bpicipher_preprocess(ctx, op);
1169 cipher_ofs = op->sym->cipher.data.offset;
1171 cipher_len = op->sym->cipher.data.length;
1172 cipher_ofs = op->sym->cipher.data.offset;
1175 set_cipher_iv(ctx->cipher_iv.length, ctx->cipher_iv.offset,
1176 cipher_param, op, qat_req);
1177 min_ofs = cipher_ofs;
1182 if (ctx->qat_hash_alg == ICP_QAT_HW_AUTH_ALGO_SNOW_3G_UIA2 ||
1183 ctx->qat_hash_alg == ICP_QAT_HW_AUTH_ALGO_KASUMI_F9 ||
1184 ctx->qat_hash_alg ==
1185 ICP_QAT_HW_AUTH_ALGO_ZUC_3G_128_EIA3) {
1186 if (unlikely((auth_param->auth_off % BYTE_LENGTH != 0)
1187 || (auth_param->auth_len % BYTE_LENGTH != 0))) {
1189 "For SNOW3G/KASUMI/ZUC, QAT PMD only supports byte aligned values");
1190 op->status = RTE_CRYPTO_OP_STATUS_INVALID_ARGS;
1193 auth_ofs = op->sym->auth.data.offset >> 3;
1194 auth_len = op->sym->auth.data.length >> 3;
1196 if (ctx->qat_hash_alg ==
1197 ICP_QAT_HW_AUTH_ALGO_KASUMI_F9) {
1199 auth_len = auth_len + auth_ofs + 1 -
1200 ICP_QAT_HW_KASUMI_BLK_SZ;
1201 auth_ofs = ICP_QAT_HW_KASUMI_BLK_SZ;
1203 auth_len = auth_len + auth_ofs + 1;
1207 auth_param->u1.aad_adr =
1208 rte_crypto_op_ctophys_offset(op,
1209 ctx->auth_iv.offset);
1211 } else if (ctx->qat_hash_alg ==
1212 ICP_QAT_HW_AUTH_ALGO_GALOIS_128 ||
1213 ctx->qat_hash_alg ==
1214 ICP_QAT_HW_AUTH_ALGO_GALOIS_64) {
1216 set_cipher_iv(ctx->auth_iv.length,
1217 ctx->auth_iv.offset,
1218 cipher_param, op, qat_req);
1220 auth_ofs = op->sym->auth.data.offset;
1221 auth_len = op->sym->auth.data.length;
1226 auth_param->auth_res_addr = op->sym->auth.digest.phys_addr;
1231 cipher_len = op->sym->aead.data.length;
1232 cipher_ofs = op->sym->aead.data.offset;
1233 auth_len = op->sym->aead.data.length;
1234 auth_ofs = op->sym->aead.data.offset;
1236 auth_param->u1.aad_adr = op->sym->aead.aad.phys_addr;
1237 auth_param->auth_res_addr = op->sym->aead.digest.phys_addr;
1238 set_cipher_iv(ctx->cipher_iv.length, ctx->cipher_iv.offset,
1239 cipher_param, op, qat_req);
1240 min_ofs = op->sym->aead.data.offset;
1243 if (op->sym->m_src->next || (op->sym->m_dst && op->sym->m_dst->next))
1246 /* adjust for chain case */
1247 if (do_cipher && do_auth)
1248 min_ofs = cipher_ofs < auth_ofs ? cipher_ofs : auth_ofs;
1250 if (unlikely(min_ofs >= rte_pktmbuf_data_len(op->sym->m_src) && do_sgl))
1253 if (unlikely(op->sym->m_dst != NULL)) {
1254 /* Out-of-place operation (OOP)
1255 * Don't align DMA start. DMA the minimum data-set
1256 * so as not to overwrite data in dest buffer
1259 rte_pktmbuf_mtophys_offset(op->sym->m_src, min_ofs);
1261 rte_pktmbuf_mtophys_offset(op->sym->m_dst, min_ofs);
1264 /* In-place operation
1265 * Start DMA at nearest aligned address below min_ofs
1268 rte_pktmbuf_mtophys_offset(op->sym->m_src, min_ofs)
1269 & QAT_64_BTYE_ALIGN_MASK;
1271 if (unlikely((rte_pktmbuf_mtophys(op->sym->m_src) -
1272 rte_pktmbuf_headroom(op->sym->m_src))
1274 /* alignment has pushed addr ahead of start of mbuf
1275 * so revert and take the performance hit
1278 rte_pktmbuf_mtophys_offset(op->sym->m_src,
1281 dst_buf_start = src_buf_start;
1284 if (do_cipher || do_aead) {
1285 cipher_param->cipher_offset =
1286 (uint32_t)rte_pktmbuf_mtophys_offset(
1287 op->sym->m_src, cipher_ofs) - src_buf_start;
1288 cipher_param->cipher_length = cipher_len;
1290 cipher_param->cipher_offset = 0;
1291 cipher_param->cipher_length = 0;
1294 if (do_auth || do_aead) {
1295 auth_param->auth_off = (uint32_t)rte_pktmbuf_mtophys_offset(
1296 op->sym->m_src, auth_ofs) - src_buf_start;
1297 auth_param->auth_len = auth_len;
1299 auth_param->auth_off = 0;
1300 auth_param->auth_len = 0;
1303 qat_req->comn_mid.dst_length =
1304 qat_req->comn_mid.src_length =
1305 (cipher_param->cipher_offset + cipher_param->cipher_length)
1306 > (auth_param->auth_off + auth_param->auth_len) ?
1307 (cipher_param->cipher_offset + cipher_param->cipher_length)
1308 : (auth_param->auth_off + auth_param->auth_len);
1312 ICP_QAT_FW_COMN_PTR_TYPE_SET(qat_req->comn_hdr.comn_req_flags,
1313 QAT_COMN_PTR_TYPE_SGL);
1314 ret = qat_sgl_fill_array(op->sym->m_src, src_buf_start,
1315 &qat_op_cookie->qat_sgl_list_src,
1316 qat_req->comn_mid.src_length);
1318 PMD_DRV_LOG(ERR, "QAT PMD Cannot fill sgl array");
1322 if (likely(op->sym->m_dst == NULL))
1323 qat_req->comn_mid.dest_data_addr =
1324 qat_req->comn_mid.src_data_addr =
1325 qat_op_cookie->qat_sgl_src_phys_addr;
1327 ret = qat_sgl_fill_array(op->sym->m_dst,
1329 &qat_op_cookie->qat_sgl_list_dst,
1330 qat_req->comn_mid.dst_length);
1333 PMD_DRV_LOG(ERR, "QAT PMD Cannot "
1338 qat_req->comn_mid.src_data_addr =
1339 qat_op_cookie->qat_sgl_src_phys_addr;
1340 qat_req->comn_mid.dest_data_addr =
1341 qat_op_cookie->qat_sgl_dst_phys_addr;
1344 qat_req->comn_mid.src_data_addr = src_buf_start;
1345 qat_req->comn_mid.dest_data_addr = dst_buf_start;
1348 if (ctx->qat_hash_alg == ICP_QAT_HW_AUTH_ALGO_GALOIS_128 ||
1349 ctx->qat_hash_alg == ICP_QAT_HW_AUTH_ALGO_GALOIS_64) {
1350 if (ctx->cipher_iv.length == 12 ||
1351 ctx->auth_iv.length == 12) {
1353 * For GCM a 12 byte IV is allowed,
1354 * but we need to inform the f/w
1356 ICP_QAT_FW_LA_GCM_IV_LEN_FLAG_SET(
1357 qat_req->comn_hdr.serv_specif_flags,
1358 ICP_QAT_FW_LA_GCM_IV_LEN_12_OCTETS);
1362 qat_req->comn_mid.dst_length =
1363 qat_req->comn_mid.src_length =
1364 rte_pktmbuf_data_len(op->sym->m_src);
1365 auth_param->u1.aad_adr = 0;
1366 auth_param->auth_len = op->sym->auth.data.length;
1367 auth_param->auth_off = op->sym->auth.data.offset;
1368 auth_param->u2.aad_sz = 0;
1372 #ifdef RTE_LIBRTE_PMD_QAT_DEBUG_TX
1373 rte_hexdump(stdout, "qat_req:", qat_req,
1374 sizeof(struct icp_qat_fw_la_bulk_req));
1375 rte_hexdump(stdout, "src_data:",
1376 rte_pktmbuf_mtod(op->sym->m_src, uint8_t*),
1377 rte_pktmbuf_data_len(op->sym->m_src));
1379 uint8_t *cipher_iv_ptr = rte_crypto_op_ctod_offset(op,
1381 ctx->cipher_iv.offset);
1382 rte_hexdump(stdout, "cipher iv:", cipher_iv_ptr,
1383 ctx->cipher_iv.length);
1387 if (ctx->auth_iv.length) {
1388 uint8_t *auth_iv_ptr = rte_crypto_op_ctod_offset(op,
1390 ctx->auth_iv.offset);
1391 rte_hexdump(stdout, "auth iv:", auth_iv_ptr,
1392 ctx->auth_iv.length);
1394 rte_hexdump(stdout, "digest:", op->sym->auth.digest.data,
1395 ctx->digest_length);
1399 rte_hexdump(stdout, "digest:", op->sym->aead.digest.data,
1400 ctx->digest_length);
1401 rte_hexdump(stdout, "aad:", op->sym->aead.aad.data,
1408 static inline uint32_t adf_modulo(uint32_t data, uint32_t shift)
1410 uint32_t div = data >> shift;
1411 uint32_t mult = div << shift;
1416 int qat_dev_config(__rte_unused struct rte_cryptodev *dev,
1417 __rte_unused struct rte_cryptodev_config *config)
1419 PMD_INIT_FUNC_TRACE();
1423 int qat_dev_start(__rte_unused struct rte_cryptodev *dev)
1425 PMD_INIT_FUNC_TRACE();
1429 void qat_dev_stop(__rte_unused struct rte_cryptodev *dev)
1431 PMD_INIT_FUNC_TRACE();
1434 int qat_dev_close(struct rte_cryptodev *dev)
1438 PMD_INIT_FUNC_TRACE();
1440 for (i = 0; i < dev->data->nb_queue_pairs; i++) {
1441 ret = qat_crypto_sym_qp_release(dev, i);
1449 void qat_dev_info_get(struct rte_cryptodev *dev,
1450 struct rte_cryptodev_info *info)
1452 struct qat_pmd_private *internals = dev->data->dev_private;
1454 PMD_INIT_FUNC_TRACE();
1456 info->max_nb_queue_pairs =
1457 ADF_NUM_SYM_QPS_PER_BUNDLE *
1458 ADF_NUM_BUNDLES_PER_DEV;
1459 info->feature_flags = dev->feature_flags;
1460 info->capabilities = internals->qat_dev_capabilities;
1461 info->sym.max_nb_sessions = internals->max_nb_sessions;
1462 info->driver_id = cryptodev_qat_driver_id;
1463 info->pci_dev = RTE_DEV_TO_PCI(dev->device);
1467 void qat_crypto_sym_stats_get(struct rte_cryptodev *dev,
1468 struct rte_cryptodev_stats *stats)
1471 struct qat_qp **qp = (struct qat_qp **)(dev->data->queue_pairs);
1473 PMD_INIT_FUNC_TRACE();
1474 if (stats == NULL) {
1475 PMD_DRV_LOG(ERR, "invalid stats ptr NULL");
1478 for (i = 0; i < dev->data->nb_queue_pairs; i++) {
1479 if (qp[i] == NULL) {
1480 PMD_DRV_LOG(DEBUG, "Uninitialised queue pair");
1484 stats->enqueued_count += qp[i]->stats.enqueued_count;
1485 stats->dequeued_count += qp[i]->stats.dequeued_count;
1486 stats->enqueue_err_count += qp[i]->stats.enqueue_err_count;
1487 stats->dequeue_err_count += qp[i]->stats.dequeue_err_count;
1491 void qat_crypto_sym_stats_reset(struct rte_cryptodev *dev)
1494 struct qat_qp **qp = (struct qat_qp **)(dev->data->queue_pairs);
1496 PMD_INIT_FUNC_TRACE();
1497 for (i = 0; i < dev->data->nb_queue_pairs; i++)
1498 memset(&(qp[i]->stats), 0, sizeof(qp[i]->stats));
1499 PMD_DRV_LOG(DEBUG, "QAT crypto: stats cleared");