Lines Matching refs:cmd_q

154 				struct ccp_cmd_queue *cmd_q,  in ccp_init_dm_workarea()  argument
163 wa->dev = cmd_q->ccp->dev; in ccp_init_dm_workarea()
167 wa->dma_pool = cmd_q->dma_pool; in ccp_init_dm_workarea()
266 static void ccp_free_data(struct ccp_data *data, struct ccp_cmd_queue *cmd_q) in ccp_free_data() argument
272 static int ccp_init_data(struct ccp_data *data, struct ccp_cmd_queue *cmd_q, in ccp_init_data() argument
281 ret = ccp_init_sg_workarea(&data->sg_wa, cmd_q->ccp->dev, sg, sg_len, in ccp_init_data()
286 ret = ccp_init_dm_workarea(&data->dm_wa, cmd_q, dm_len, dir); in ccp_init_data()
293 ccp_free_data(data, cmd_q); in ccp_init_data()
430 static int ccp_copy_to_from_sb(struct ccp_cmd_queue *cmd_q, in ccp_copy_to_from_sb() argument
438 op.cmd_q = cmd_q; in ccp_copy_to_from_sb()
459 return cmd_q->ccp->vdata->perform->passthru(&op); in ccp_copy_to_from_sb()
462 static int ccp_copy_to_sb(struct ccp_cmd_queue *cmd_q, in ccp_copy_to_sb() argument
466 return ccp_copy_to_from_sb(cmd_q, wa, jobid, sb, byte_swap, false); in ccp_copy_to_sb()
469 static int ccp_copy_from_sb(struct ccp_cmd_queue *cmd_q, in ccp_copy_from_sb() argument
473 return ccp_copy_to_from_sb(cmd_q, wa, jobid, sb, byte_swap, true); in ccp_copy_from_sb()
477 ccp_run_aes_cmac_cmd(struct ccp_cmd_queue *cmd_q, struct ccp_cmd *cmd) in ccp_run_aes_cmac_cmd() argument
513 op.cmd_q = cmd_q; in ccp_run_aes_cmac_cmd()
514 op.jobid = CCP_NEW_JOBID(cmd_q->ccp); in ccp_run_aes_cmac_cmd()
515 op.sb_key = cmd_q->sb_key; in ccp_run_aes_cmac_cmd()
516 op.sb_ctx = cmd_q->sb_ctx; in ccp_run_aes_cmac_cmd()
527 ret = ccp_init_dm_workarea(&key, cmd_q, in ccp_run_aes_cmac_cmd()
537 ret = ccp_copy_to_sb(cmd_q, &key, op.jobid, op.sb_key, in ccp_run_aes_cmac_cmd()
540 cmd->engine_error = cmd_q->cmd_error; in ccp_run_aes_cmac_cmd()
548 ret = ccp_init_dm_workarea(&ctx, cmd_q, in ccp_run_aes_cmac_cmd()
558 ret = ccp_copy_to_sb(cmd_q, &ctx, op.jobid, op.sb_ctx, in ccp_run_aes_cmac_cmd()
561 cmd->engine_error = cmd_q->cmd_error; in ccp_run_aes_cmac_cmd()
566 ret = ccp_init_data(&src, cmd_q, aes->src, aes->src_len, in ccp_run_aes_cmac_cmd()
577 ret = ccp_copy_from_sb(cmd_q, &ctx, op.jobid, in ccp_run_aes_cmac_cmd()
581 cmd->engine_error = cmd_q->cmd_error; in ccp_run_aes_cmac_cmd()
589 ret = ccp_copy_to_sb(cmd_q, &ctx, op.jobid, op.sb_ctx, in ccp_run_aes_cmac_cmd()
592 cmd->engine_error = cmd_q->cmd_error; in ccp_run_aes_cmac_cmd()
597 ret = cmd_q->ccp->vdata->perform->aes(&op); in ccp_run_aes_cmac_cmd()
599 cmd->engine_error = cmd_q->cmd_error; in ccp_run_aes_cmac_cmd()
609 ret = ccp_copy_from_sb(cmd_q, &ctx, op.jobid, op.sb_ctx, in ccp_run_aes_cmac_cmd()
612 cmd->engine_error = cmd_q->cmd_error; in ccp_run_aes_cmac_cmd()
621 ccp_free_data(&src, cmd_q); in ccp_run_aes_cmac_cmd()
633 ccp_run_aes_gcm_cmd(struct ccp_cmd_queue *cmd_q, struct ccp_cmd *cmd) in ccp_run_aes_gcm_cmd() argument
706 jobid = CCP_NEW_JOBID(cmd_q->ccp); in ccp_run_aes_gcm_cmd()
709 wa->op.cmd_q = cmd_q; in ccp_run_aes_gcm_cmd()
711 wa->op.sb_key = cmd_q->sb_key; /* Pre-allocated */ in ccp_run_aes_gcm_cmd()
712 wa->op.sb_ctx = cmd_q->sb_ctx; /* Pre-allocated */ in ccp_run_aes_gcm_cmd()
717 ret = ccp_init_dm_workarea(&wa->key, cmd_q, in ccp_run_aes_gcm_cmd()
727 ret = ccp_copy_to_sb(cmd_q, &wa->key, wa->op.jobid, wa->op.sb_key, in ccp_run_aes_gcm_cmd()
730 cmd->engine_error = cmd_q->cmd_error; in ccp_run_aes_gcm_cmd()
738 ret = ccp_init_dm_workarea(&wa->ctx, cmd_q, in ccp_run_aes_gcm_cmd()
749 ret = ccp_copy_to_sb(cmd_q, &wa->ctx, wa->op.jobid, wa->op.sb_ctx, in ccp_run_aes_gcm_cmd()
752 cmd->engine_error = cmd_q->cmd_error; in ccp_run_aes_gcm_cmd()
759 ret = ccp_init_data(&wa->aad, cmd_q, p_aad, aes->aad_len, in ccp_run_aes_gcm_cmd()
771 ret = cmd_q->ccp->vdata->perform->aes(&wa->op); in ccp_run_aes_gcm_cmd()
773 cmd->engine_error = cmd_q->cmd_error; in ccp_run_aes_gcm_cmd()
789 ret = ccp_init_data(&wa->src, cmd_q, p_inp, ilen, in ccp_run_aes_gcm_cmd()
799 ret = ccp_init_data(&wa->dst, cmd_q, p_outp, ilen, in ccp_run_aes_gcm_cmd()
819 ret = cmd_q->ccp->vdata->perform->aes(&wa->op); in ccp_run_aes_gcm_cmd()
821 cmd->engine_error = cmd_q->cmd_error; in ccp_run_aes_gcm_cmd()
831 ret = ccp_copy_from_sb(cmd_q, &wa->ctx, wa->op.jobid, wa->op.sb_ctx, in ccp_run_aes_gcm_cmd()
834 cmd->engine_error = cmd_q->cmd_error; in ccp_run_aes_gcm_cmd()
842 ret = ccp_copy_to_sb(cmd_q, &wa->ctx, wa->op.jobid, wa->op.sb_ctx, in ccp_run_aes_gcm_cmd()
845 cmd->engine_error = cmd_q->cmd_error; in ccp_run_aes_gcm_cmd()
852 ret = ccp_init_dm_workarea(&wa->final, cmd_q, AES_BLOCK_SIZE, in ccp_run_aes_gcm_cmd()
861 wa->op.cmd_q = cmd_q; in ccp_run_aes_gcm_cmd()
863 wa->op.sb_key = cmd_q->sb_key; /* Pre-allocated */ in ccp_run_aes_gcm_cmd()
864 wa->op.sb_ctx = cmd_q->sb_ctx; /* Pre-allocated */ in ccp_run_aes_gcm_cmd()
877 ret = cmd_q->ccp->vdata->perform->aes(&wa->op); in ccp_run_aes_gcm_cmd()
886 ret = ccp_init_dm_workarea(&wa->tag, cmd_q, authsize, in ccp_run_aes_gcm_cmd()
906 ccp_free_data(&wa->dst, cmd_q); in ccp_run_aes_gcm_cmd()
910 ccp_free_data(&wa->src, cmd_q); in ccp_run_aes_gcm_cmd()
914 ccp_free_data(&wa->aad, cmd_q); in ccp_run_aes_gcm_cmd()
926 ccp_run_aes_cmd(struct ccp_cmd_queue *cmd_q, struct ccp_cmd *cmd) in ccp_run_aes_cmd() argument
962 op.cmd_q = cmd_q; in ccp_run_aes_cmd()
963 op.jobid = CCP_NEW_JOBID(cmd_q->ccp); in ccp_run_aes_cmd()
964 op.sb_key = cmd_q->sb_key; in ccp_run_aes_cmd()
965 op.sb_ctx = cmd_q->sb_ctx; in ccp_run_aes_cmd()
976 ret = ccp_init_dm_workarea(&key, cmd_q, in ccp_run_aes_cmd()
986 ret = ccp_copy_to_sb(cmd_q, &key, op.jobid, op.sb_key, in ccp_run_aes_cmd()
989 cmd->engine_error = cmd_q->cmd_error; in ccp_run_aes_cmd()
997 ret = ccp_init_dm_workarea(&ctx, cmd_q, in ccp_run_aes_cmd()
1009 ret = ccp_copy_to_sb(cmd_q, &ctx, op.jobid, op.sb_ctx, in ccp_run_aes_cmd()
1012 cmd->engine_error = cmd_q->cmd_error; in ccp_run_aes_cmd()
1032 ret = ccp_init_data(&src, cmd_q, aes->src, aes->src_len, in ccp_run_aes_cmd()
1041 ret = ccp_init_data(&dst, cmd_q, aes->dst, aes->src_len, in ccp_run_aes_cmd()
1061 ret = cmd_q->ccp->vdata->perform->aes(&op); in ccp_run_aes_cmd()
1063 cmd->engine_error = cmd_q->cmd_error; in ccp_run_aes_cmd()
1074 ret = ccp_copy_from_sb(cmd_q, &ctx, op.jobid, op.sb_ctx, in ccp_run_aes_cmd()
1077 cmd->engine_error = cmd_q->cmd_error; in ccp_run_aes_cmd()
1088 ccp_free_data(&dst, cmd_q); in ccp_run_aes_cmd()
1091 ccp_free_data(&src, cmd_q); in ccp_run_aes_cmd()
1103 ccp_run_xts_aes_cmd(struct ccp_cmd_queue *cmd_q, struct ccp_cmd *cmd) in ccp_run_xts_aes_cmd() argument
1157 op.cmd_q = cmd_q; in ccp_run_xts_aes_cmd()
1158 op.jobid = CCP_NEW_JOBID(cmd_q->ccp); in ccp_run_xts_aes_cmd()
1159 op.sb_key = cmd_q->sb_key; in ccp_run_xts_aes_cmd()
1160 op.sb_ctx = cmd_q->sb_ctx; in ccp_run_xts_aes_cmd()
1170 if (cmd_q->ccp->vdata->version == CCP_VERSION(3, 0)) in ccp_run_xts_aes_cmd()
1174 ret = ccp_init_dm_workarea(&key, cmd_q, in ccp_run_xts_aes_cmd()
1180 if (cmd_q->ccp->vdata->version == CCP_VERSION(3, 0)) { in ccp_run_xts_aes_cmd()
1208 ret = ccp_copy_to_sb(cmd_q, &key, op.jobid, op.sb_key, in ccp_run_xts_aes_cmd()
1211 cmd->engine_error = cmd_q->cmd_error; in ccp_run_xts_aes_cmd()
1219 ret = ccp_init_dm_workarea(&ctx, cmd_q, in ccp_run_xts_aes_cmd()
1228 ret = ccp_copy_to_sb(cmd_q, &ctx, op.jobid, op.sb_ctx, in ccp_run_xts_aes_cmd()
1231 cmd->engine_error = cmd_q->cmd_error; in ccp_run_xts_aes_cmd()
1242 ret = ccp_init_data(&src, cmd_q, xts->src, xts->src_len, in ccp_run_xts_aes_cmd()
1251 ret = ccp_init_data(&dst, cmd_q, xts->dst, xts->src_len, in ccp_run_xts_aes_cmd()
1263 ret = cmd_q->ccp->vdata->perform->xts_aes(&op); in ccp_run_xts_aes_cmd()
1265 cmd->engine_error = cmd_q->cmd_error; in ccp_run_xts_aes_cmd()
1275 ret = ccp_copy_from_sb(cmd_q, &ctx, op.jobid, op.sb_ctx, in ccp_run_xts_aes_cmd()
1278 cmd->engine_error = cmd_q->cmd_error; in ccp_run_xts_aes_cmd()
1288 ccp_free_data(&dst, cmd_q); in ccp_run_xts_aes_cmd()
1291 ccp_free_data(&src, cmd_q); in ccp_run_xts_aes_cmd()
1303 ccp_run_des3_cmd(struct ccp_cmd_queue *cmd_q, struct ccp_cmd *cmd) in ccp_run_des3_cmd() argument
1316 if (cmd_q->ccp->vdata->version < CCP_VERSION(5, 0)) in ccp_run_des3_cmd()
1319 if (!cmd_q->ccp->vdata->perform->des3) in ccp_run_des3_cmd()
1345 op.cmd_q = cmd_q; in ccp_run_des3_cmd()
1346 op.jobid = CCP_NEW_JOBID(cmd_q->ccp); in ccp_run_des3_cmd()
1347 op.sb_key = cmd_q->sb_key; in ccp_run_des3_cmd()
1359 ret = ccp_init_dm_workarea(&key, cmd_q, in ccp_run_des3_cmd()
1387 ret = ccp_copy_to_sb(cmd_q, &key, op.jobid, op.sb_key, in ccp_run_des3_cmd()
1390 cmd->engine_error = cmd_q->cmd_error; in ccp_run_des3_cmd()
1400 op.sb_ctx = cmd_q->sb_ctx; in ccp_run_des3_cmd()
1402 ret = ccp_init_dm_workarea(&ctx, cmd_q, in ccp_run_des3_cmd()
1415 ret = ccp_copy_to_sb(cmd_q, &ctx, op.jobid, op.sb_ctx, in ccp_run_des3_cmd()
1418 cmd->engine_error = cmd_q->cmd_error; in ccp_run_des3_cmd()
1431 ret = ccp_init_data(&src, cmd_q, des3->src, des3->src_len, in ccp_run_des3_cmd()
1440 ret = ccp_init_data(&dst, cmd_q, des3->dst, des3->src_len, in ccp_run_des3_cmd()
1459 ret = cmd_q->ccp->vdata->perform->des3(&op); in ccp_run_des3_cmd()
1461 cmd->engine_error = cmd_q->cmd_error; in ccp_run_des3_cmd()
1470 ret = ccp_copy_from_sb(cmd_q, &ctx, op.jobid, op.sb_ctx, in ccp_run_des3_cmd()
1473 cmd->engine_error = cmd_q->cmd_error; in ccp_run_des3_cmd()
1483 ccp_free_data(&dst, cmd_q); in ccp_run_des3_cmd()
1486 ccp_free_data(&src, cmd_q); in ccp_run_des3_cmd()
1499 ccp_run_sha_cmd(struct ccp_cmd_queue *cmd_q, struct ccp_cmd *cmd) in ccp_run_sha_cmd() argument
1530 if (cmd_q->ccp->vdata->version < CCP_VERSION(4, 0) in ccp_run_sha_cmd()
1536 if (cmd_q->ccp->vdata->version < CCP_VERSION(4, 0) in ccp_run_sha_cmd()
1552 if (cmd_q->ccp->vdata->version == CCP_VERSION(3, 0)) { in ccp_run_sha_cmd()
1605 if (cmd_q->ccp->vdata->version != CCP_VERSION(3, 0)) in ccp_run_sha_cmd()
1616 if (cmd_q->ccp->vdata->version != CCP_VERSION(3, 0)) in ccp_run_sha_cmd()
1655 op.cmd_q = cmd_q; in ccp_run_sha_cmd()
1656 op.jobid = CCP_NEW_JOBID(cmd_q->ccp); in ccp_run_sha_cmd()
1657 op.sb_ctx = cmd_q->sb_ctx; /* Pre-allocated */ in ccp_run_sha_cmd()
1666 ret = ccp_init_dm_workarea(&ctx, cmd_q, sb_count * CCP_SB_BYTES, in ccp_run_sha_cmd()
1696 ret = ccp_copy_to_sb(cmd_q, &ctx, op.jobid, op.sb_ctx, in ccp_run_sha_cmd()
1699 cmd->engine_error = cmd_q->cmd_error; in ccp_run_sha_cmd()
1705 ret = ccp_init_data(&src, cmd_q, sha->src, sha->src_len, in ccp_run_sha_cmd()
1715 ret = cmd_q->ccp->vdata->perform->sha(&op); in ccp_run_sha_cmd()
1717 cmd->engine_error = cmd_q->cmd_error; in ccp_run_sha_cmd()
1725 ret = cmd_q->ccp->vdata->perform->sha(&op); in ccp_run_sha_cmd()
1727 cmd->engine_error = cmd_q->cmd_error; in ccp_run_sha_cmd()
1735 ret = ccp_copy_from_sb(cmd_q, &ctx, op.jobid, op.sb_ctx, in ccp_run_sha_cmd()
1738 cmd->engine_error = cmd_q->cmd_error; in ccp_run_sha_cmd()
1827 ret = ccp_run_sha_cmd(cmd_q, &hmac_cmd); in ccp_run_sha_cmd()
1836 ccp_free_data(&src, cmd_q); in ccp_run_sha_cmd()
1845 ccp_run_rsa_cmd(struct ccp_cmd_queue *cmd_q, struct ccp_cmd *cmd) in ccp_run_rsa_cmd() argument
1854 if (rsa->key_size > cmd_q->ccp->vdata->rsamax) in ccp_run_rsa_cmd()
1861 op.cmd_q = cmd_q; in ccp_run_rsa_cmd()
1862 op.jobid = CCP_NEW_JOBID(cmd_q->ccp); in ccp_run_rsa_cmd()
1876 if (cmd_q->ccp->vdata->version < CCP_VERSION(5, 0)) { in ccp_run_rsa_cmd()
1881 op.sb_key = cmd_q->ccp->vdata->perform->sballoc(cmd_q, in ccp_run_rsa_cmd()
1890 op.sb_key = cmd_q->sb_key; in ccp_run_rsa_cmd()
1896 ret = ccp_init_dm_workarea(&exp, cmd_q, o_len, DMA_TO_DEVICE); in ccp_run_rsa_cmd()
1904 if (cmd_q->ccp->vdata->version < CCP_VERSION(5, 0)) { in ccp_run_rsa_cmd()
1909 ret = ccp_copy_to_sb(cmd_q, &exp, op.jobid, op.sb_key, in ccp_run_rsa_cmd()
1912 cmd->engine_error = cmd_q->cmd_error; in ccp_run_rsa_cmd()
1925 ret = ccp_init_dm_workarea(&src, cmd_q, i_len, DMA_TO_DEVICE); in ccp_run_rsa_cmd()
1937 ret = ccp_init_dm_workarea(&dst, cmd_q, o_len, DMA_FROM_DEVICE); in ccp_run_rsa_cmd()
1952 ret = cmd_q->ccp->vdata->perform->rsa(&op); in ccp_run_rsa_cmd()
1954 cmd->engine_error = cmd_q->cmd_error; in ccp_run_rsa_cmd()
1971 cmd_q->ccp->vdata->perform->sbfree(cmd_q, op.sb_key, sb_count); in ccp_run_rsa_cmd()
1977 ccp_run_passthru_cmd(struct ccp_cmd_queue *cmd_q, struct ccp_cmd *cmd) in ccp_run_passthru_cmd() argument
2003 op.cmd_q = cmd_q; in ccp_run_passthru_cmd()
2004 op.jobid = CCP_NEW_JOBID(cmd_q->ccp); in ccp_run_passthru_cmd()
2008 op.sb_key = cmd_q->sb_key; in ccp_run_passthru_cmd()
2010 ret = ccp_init_dm_workarea(&mask, cmd_q, in ccp_run_passthru_cmd()
2020 ret = ccp_copy_to_sb(cmd_q, &mask, op.jobid, op.sb_key, in ccp_run_passthru_cmd()
2023 cmd->engine_error = cmd_q->cmd_error; in ccp_run_passthru_cmd()
2035 ret = ccp_init_data(&src, cmd_q, pt->src, pt->src_len, in ccp_run_passthru_cmd()
2044 ret = ccp_init_data(&dst, cmd_q, pt->dst, pt->src_len, in ccp_run_passthru_cmd()
2080 ret = cmd_q->ccp->vdata->perform->passthru(&op); in ccp_run_passthru_cmd()
2082 cmd->engine_error = cmd_q->cmd_error; in ccp_run_passthru_cmd()
2096 ccp_free_data(&dst, cmd_q); in ccp_run_passthru_cmd()
2099 ccp_free_data(&src, cmd_q); in ccp_run_passthru_cmd()
2109 ccp_run_passthru_nomap_cmd(struct ccp_cmd_queue *cmd_q, in ccp_run_passthru_nomap_cmd() argument
2133 op.cmd_q = cmd_q; in ccp_run_passthru_nomap_cmd()
2134 op.jobid = CCP_NEW_JOBID(cmd_q->ccp); in ccp_run_passthru_nomap_cmd()
2138 op.sb_key = cmd_q->sb_key; in ccp_run_passthru_nomap_cmd()
2144 ret = ccp_copy_to_sb(cmd_q, &mask, op.jobid, op.sb_key, in ccp_run_passthru_nomap_cmd()
2147 cmd->engine_error = cmd_q->cmd_error; in ccp_run_passthru_nomap_cmd()
2166 ret = cmd_q->ccp->vdata->perform->passthru(&op); in ccp_run_passthru_nomap_cmd()
2168 cmd->engine_error = cmd_q->cmd_error; in ccp_run_passthru_nomap_cmd()
2173 static int ccp_run_ecc_mm_cmd(struct ccp_cmd_queue *cmd_q, struct ccp_cmd *cmd) in ccp_run_ecc_mm_cmd() argument
2195 op.cmd_q = cmd_q; in ccp_run_ecc_mm_cmd()
2196 op.jobid = CCP_NEW_JOBID(cmd_q->ccp); in ccp_run_ecc_mm_cmd()
2203 ret = ccp_init_dm_workarea(&src, cmd_q, CCP_ECC_SRC_BUF_SIZE, in ccp_run_ecc_mm_cmd()
2239 ret = ccp_init_dm_workarea(&dst, cmd_q, CCP_ECC_DST_BUF_SIZE, in ccp_run_ecc_mm_cmd()
2254 ret = cmd_q->ccp->vdata->perform->ecc(&op); in ccp_run_ecc_mm_cmd()
2256 cmd->engine_error = cmd_q->cmd_error; in ccp_run_ecc_mm_cmd()
2280 static int ccp_run_ecc_pm_cmd(struct ccp_cmd_queue *cmd_q, struct ccp_cmd *cmd) in ccp_run_ecc_pm_cmd() argument
2318 op.cmd_q = cmd_q; in ccp_run_ecc_pm_cmd()
2319 op.jobid = CCP_NEW_JOBID(cmd_q->ccp); in ccp_run_ecc_pm_cmd()
2326 ret = ccp_init_dm_workarea(&src, cmd_q, CCP_ECC_SRC_BUF_SIZE, in ccp_run_ecc_pm_cmd()
2397 ret = ccp_init_dm_workarea(&dst, cmd_q, CCP_ECC_DST_BUF_SIZE, in ccp_run_ecc_pm_cmd()
2412 ret = cmd_q->ccp->vdata->perform->ecc(&op); in ccp_run_ecc_pm_cmd()
2414 cmd->engine_error = cmd_q->cmd_error; in ccp_run_ecc_pm_cmd()
2450 ccp_run_ecc_cmd(struct ccp_cmd_queue *cmd_q, struct ccp_cmd *cmd) in ccp_run_ecc_cmd() argument
2464 return ccp_run_ecc_mm_cmd(cmd_q, cmd); in ccp_run_ecc_cmd()
2469 return ccp_run_ecc_pm_cmd(cmd_q, cmd); in ccp_run_ecc_cmd()
2476 int ccp_run_cmd(struct ccp_cmd_queue *cmd_q, struct ccp_cmd *cmd) in ccp_run_cmd() argument
2481 cmd_q->cmd_error = 0; in ccp_run_cmd()
2482 cmd_q->int_rcvd = 0; in ccp_run_cmd()
2483 cmd_q->free_slots = cmd_q->ccp->vdata->perform->get_free_slots(cmd_q); in ccp_run_cmd()
2489 ret = ccp_run_aes_cmac_cmd(cmd_q, cmd); in ccp_run_cmd()
2492 ret = ccp_run_aes_gcm_cmd(cmd_q, cmd); in ccp_run_cmd()
2495 ret = ccp_run_aes_cmd(cmd_q, cmd); in ccp_run_cmd()
2500 ret = ccp_run_xts_aes_cmd(cmd_q, cmd); in ccp_run_cmd()
2503 ret = ccp_run_des3_cmd(cmd_q, cmd); in ccp_run_cmd()
2506 ret = ccp_run_sha_cmd(cmd_q, cmd); in ccp_run_cmd()
2509 ret = ccp_run_rsa_cmd(cmd_q, cmd); in ccp_run_cmd()
2513 ret = ccp_run_passthru_nomap_cmd(cmd_q, cmd); in ccp_run_cmd()
2515 ret = ccp_run_passthru_cmd(cmd_q, cmd); in ccp_run_cmd()
2518 ret = ccp_run_ecc_cmd(cmd_q, cmd); in ccp_run_cmd()