Home
last modified time | relevance | path

Searched refs:fc_type (Results 1 – 6 of 6) sorted by relevance

/dpdk/drivers/common/cnxk/
H A Droc_se.c58 int fc_type = 0; in cpt_ciph_type_set() local
62 fc_type = ROC_SE_FC_GEN; in cpt_ciph_type_set()
66 fc_type = ROC_SE_FC_GEN; in cpt_ciph_type_set()
75 fc_type = ROC_SE_FC_GEN; in cpt_ciph_type_set()
78 fc_type = ROC_SE_FC_GEN; in cpt_ciph_type_set()
88 fc_type = ROC_SE_FC_GEN; in cpt_ciph_type_set()
94 fc_type = ROC_SE_PDCP; in cpt_ciph_type_set()
102 fc_type = ROC_SE_PDCP; in cpt_ciph_type_set()
105 fc_type = ROC_SE_PDCP; in cpt_ciph_type_set()
120 ctx->fc_type = fc_type; in cpt_ciph_type_set()
[all …]
H A Droc_se.h288 uint64_t fc_type : 4; member
/dpdk/drivers/common/cpt/
H A Dcpt_ucode.h103 int fc_type = 0; in cpt_fc_ciph_set_type() local
106 fc_type = FC_GEN; in cpt_fc_ciph_set_type()
110 fc_type = FC_GEN; in cpt_fc_ciph_set_type()
119 fc_type = FC_GEN; in cpt_fc_ciph_set_type()
122 fc_type = FC_GEN; in cpt_fc_ciph_set_type()
132 fc_type = FC_GEN; in cpt_fc_ciph_set_type()
150 fc_type = KASUMI; in cpt_fc_ciph_set_type()
156 ctx->fc_type = fc_type; in cpt_fc_ciph_set_type()
2433 uint8_t fc_type; in cpt_fc_dec_hmac_prep() local
2436 fc_type = ctx->fc_type; in cpt_fc_dec_hmac_prep()
[all …]
H A Dcpt_mcode_defines.h319 uint64_t fc_type :4; member
447 (((struct cpt_ctx *)(SESS_PRIV(__sess)))->fc_type)
/dpdk/drivers/crypto/cnxk/
H A Dcnxk_se.h1597 uint8_t fc_type; in cpt_fc_dec_hmac_prep() local
1600 fc_type = ctx->fc_type; in cpt_fc_dec_hmac_prep()
1602 if (likely(fc_type == ROC_SE_FC_GEN)) { in cpt_fc_dec_hmac_prep()
1604 } else if (fc_type == ROC_SE_PDCP) { in cpt_fc_dec_hmac_prep()
1606 } else if (fc_type == ROC_SE_KASUMI) { in cpt_fc_dec_hmac_prep()
1625 uint8_t fc_type; in cpt_fc_enc_hmac_prep() local
1628 fc_type = ctx->fc_type; in cpt_fc_enc_hmac_prep()
1630 if (likely(fc_type == ROC_SE_FC_GEN)) { in cpt_fc_enc_hmac_prep()
1632 } else if (fc_type == ROC_SE_PDCP) { in cpt_fc_enc_hmac_prep()
1634 } else if (fc_type == ROC_SE_KASUMI) { in cpt_fc_enc_hmac_prep()
[all …]
H A Dcnxk_cryptodev_ops.c581 if ((sess_priv->roc_se_ctx.fc_type == ROC_SE_HASH_HMAC) && in sym_session_configure()