/Linux-v5.15/crypto/ |
D | crypto_engine.c | 73 struct crypto_async_request *async_req, *backlog; in crypto_pump_requests() local 119 async_req = crypto_dequeue_request(&engine->queue); in crypto_pump_requests() 120 if (!async_req) in crypto_pump_requests() 129 engine->cur_req = async_req; in crypto_pump_requests() 150 enginectx = crypto_tfm_ctx(async_req->tfm); in crypto_pump_requests() 153 ret = enginectx->op.prepare_request(engine, async_req); in crypto_pump_requests() 166 ret = enginectx->op.do_one_request(engine, async_req); in crypto_pump_requests() 189 async_req); in crypto_pump_requests() 200 crypto_enqueue_request_head(&engine->queue, async_req); in crypto_pump_requests() 210 ret = enginectx->op.unprepare_request(engine, async_req); in crypto_pump_requests() [all …]
|
D | rsa-pkcs1pad.c | 217 struct crypto_async_request async_req; in pkcs1pad_encrypt_sign_complete_cb() local 222 async_req.data = req->base.data; in pkcs1pad_encrypt_sign_complete_cb() 223 async_req.tfm = crypto_akcipher_tfm(crypto_akcipher_reqtfm(req)); in pkcs1pad_encrypt_sign_complete_cb() 224 async_req.flags = child_async_req->flags; in pkcs1pad_encrypt_sign_complete_cb() 225 req->base.complete(&async_req, in pkcs1pad_encrypt_sign_complete_cb() 335 struct crypto_async_request async_req; in pkcs1pad_decrypt_complete_cb() local 340 async_req.data = req->base.data; in pkcs1pad_decrypt_complete_cb() 341 async_req.tfm = crypto_akcipher_tfm(crypto_akcipher_reqtfm(req)); in pkcs1pad_decrypt_complete_cb() 342 async_req.flags = child_async_req->flags; in pkcs1pad_decrypt_complete_cb() 343 req->base.complete(&async_req, pkcs1pad_decrypt_complete(req, err)); in pkcs1pad_decrypt_complete_cb() [all …]
|
/Linux-v5.15/drivers/crypto/qce/ |
D | core.c | 63 static int qce_handle_request(struct crypto_async_request *async_req) in qce_handle_request() argument 67 u32 type = crypto_tfm_alg_type(async_req->tfm); in qce_handle_request() 73 ret = ops->async_req_handle(async_req); in qce_handle_request() 83 struct crypto_async_request *async_req, *backlog; in qce_handle_queue() local 99 async_req = crypto_dequeue_request(&qce->queue); in qce_handle_queue() 100 if (async_req) in qce_handle_queue() 101 qce->req = async_req; in qce_handle_queue() 105 if (!async_req) in qce_handle_queue() 114 err = qce_handle_request(async_req); in qce_handle_queue()
|
D | common.c | 146 static int qce_setup_regs_ahash(struct crypto_async_request *async_req) in qce_setup_regs_ahash() argument 148 struct ahash_request *req = ahash_request_cast(async_req); in qce_setup_regs_ahash() 149 struct crypto_ahash *ahash = __crypto_ahash_cast(async_req->tfm); in qce_setup_regs_ahash() 151 struct qce_alg_template *tmpl = to_ahash_tmpl(async_req->tfm); in qce_setup_regs_ahash() 154 unsigned int blocksize = crypto_tfm_alg_blocksize(async_req->tfm); in qce_setup_regs_ahash() 313 static int qce_setup_regs_skcipher(struct crypto_async_request *async_req) in qce_setup_regs_skcipher() argument 315 struct skcipher_request *req = skcipher_request_cast(async_req); in qce_setup_regs_skcipher() 317 struct qce_cipher_ctx *ctx = crypto_tfm_ctx(async_req->tfm); in qce_setup_regs_skcipher() 419 static int qce_setup_regs_aead(struct crypto_async_request *async_req) in qce_setup_regs_aead() argument 421 struct aead_request *req = aead_request_cast(async_req); in qce_setup_regs_aead() [all …]
|
D | sha.c | 38 struct crypto_async_request *async_req = data; in qce_ahash_done() local 39 struct ahash_request *req = ahash_request_cast(async_req); in qce_ahash_done() 42 struct qce_alg_template *tmpl = to_ahash_tmpl(async_req->tfm); in qce_ahash_done() 75 static int qce_ahash_async_req_handle(struct crypto_async_request *async_req) in qce_ahash_async_req_handle() argument 77 struct ahash_request *req = ahash_request_cast(async_req); in qce_ahash_async_req_handle() 79 struct qce_sha_ctx *ctx = crypto_tfm_ctx(async_req->tfm); in qce_ahash_async_req_handle() 80 struct qce_alg_template *tmpl = to_ahash_tmpl(async_req->tfm); in qce_ahash_async_req_handle() 110 &rctx->result_sg, 1, qce_ahash_done, async_req); in qce_ahash_async_req_handle() 116 ret = qce_start(async_req, tmpl->crypto_alg_type); in qce_ahash_async_req_handle()
|
D | skcipher.c | 29 struct crypto_async_request *async_req = data; in qce_skcipher_done() local 30 struct skcipher_request *req = skcipher_request_cast(async_req); in qce_skcipher_done() 64 qce_skcipher_async_req_handle(struct crypto_async_request *async_req) in qce_skcipher_async_req_handle() argument 66 struct skcipher_request *req = skcipher_request_cast(async_req); in qce_skcipher_async_req_handle() 146 qce_skcipher_done, async_req); in qce_skcipher_async_req_handle() 152 ret = qce_start(async_req, tmpl->crypto_alg_type); in qce_skcipher_async_req_handle()
|
D | aead.c | 25 struct crypto_async_request *async_req = data; in qce_aead_done() local 26 struct aead_request *req = aead_request_cast(async_req); in qce_aead_done() 28 struct qce_aead_ctx *ctx = crypto_tfm_ctx(async_req->tfm); in qce_aead_done() 408 qce_aead_async_req_handle(struct crypto_async_request *async_req) in qce_aead_async_req_handle() argument 410 struct aead_request *req = aead_request_cast(async_req); in qce_aead_async_req_handle() 413 struct qce_aead_ctx *ctx = crypto_tfm_ctx(async_req->tfm); in qce_aead_async_req_handle() 472 qce_aead_done, async_req); in qce_aead_async_req_handle() 478 ret = qce_start(async_req, tmpl->crypto_alg_type); in qce_aead_async_req_handle()
|
D | core.h | 57 int (*async_req_handle)(struct crypto_async_request *async_req);
|
D | common.h | 102 int qce_start(struct crypto_async_request *async_req, u32 type);
|
/Linux-v5.15/drivers/crypto/rockchip/ |
D | rk3288_crypto.c | 186 struct crypto_async_request *async_req) in rk_crypto_enqueue() argument 192 ret = crypto_enqueue_request(&dev->queue, async_req); in rk_crypto_enqueue() 207 struct crypto_async_request *async_req, *backlog; in rk_crypto_queue_task_cb() local 214 async_req = crypto_dequeue_request(&dev->queue); in rk_crypto_queue_task_cb() 216 if (!async_req) { in rk_crypto_queue_task_cb() 228 dev->async_req = async_req; in rk_crypto_queue_task_cb() 231 dev->complete(dev->async_req, err); in rk_crypto_queue_task_cb() 239 dev->complete(dev->async_req, dev->err); in rk_crypto_done_task_cb() 245 dev->complete(dev->async_req, dev->err); in rk_crypto_done_task_cb()
|
D | rk3288_crypto_skcipher.c | 199 skcipher_request_cast(dev->async_req); in rk_ablk_hw_init() 247 skcipher_request_cast(dev->async_req); in rk_set_data_start() 272 skcipher_request_cast(dev->async_req); in rk_ablk_start() 295 skcipher_request_cast(dev->async_req); in rk_iv_copyback() 315 skcipher_request_cast(dev->async_req); in rk_update_iv() 342 skcipher_request_cast(dev->async_req); in rk_ablk_rx() 370 dev->complete(dev->async_req, 0); in rk_ablk_rx()
|
D | rk3288_crypto_ahash.c | 49 struct ahash_request *req = ahash_request_cast(dev->async_req); in rk_ahash_reg_init() 196 struct ahash_request *req = ahash_request_cast(dev->async_req); in rk_ahash_start() 233 struct ahash_request *req = ahash_request_cast(dev->async_req); in rk_ahash_crypto_rx() 265 dev->complete(dev->async_req, 0); in rk_ahash_crypto_rx()
|
D | rk3288_crypto.h | 199 struct crypto_async_request *async_req; member 230 struct crypto_async_request *async_req);
|
/Linux-v5.15/drivers/crypto/ccp/ |
D | ccp-crypto-aes.c | 22 static int ccp_aes_complete(struct crypto_async_request *async_req, int ret) in ccp_aes_complete() argument 24 struct skcipher_request *req = skcipher_request_cast(async_req); in ccp_aes_complete() 134 static int ccp_aes_rfc3686_complete(struct crypto_async_request *async_req, in ccp_aes_rfc3686_complete() argument 137 struct skcipher_request *req = skcipher_request_cast(async_req); in ccp_aes_rfc3686_complete() 143 return ccp_aes_complete(async_req, ret); in ccp_aes_rfc3686_complete()
|
D | ccp-crypto-des3.c | 21 static int ccp_des3_complete(struct crypto_async_request *async_req, int ret) in ccp_des3_complete() argument 23 struct skcipher_request *req = skcipher_request_cast(async_req); in ccp_des3_complete()
|
D | ccp-crypto-aes-xts.c | 62 static int ccp_aes_xts_complete(struct crypto_async_request *async_req, int ret) in ccp_aes_xts_complete() argument 64 struct skcipher_request *req = skcipher_request_cast(async_req); in ccp_aes_xts_complete()
|
D | ccp-crypto-rsa.c | 44 static int ccp_rsa_complete(struct crypto_async_request *async_req, int ret) in ccp_rsa_complete() argument 46 struct akcipher_request *req = akcipher_request_cast(async_req); in ccp_rsa_complete()
|
D | ccp-crypto-aes-cmac.c | 23 static int ccp_aes_cmac_complete(struct crypto_async_request *async_req, in ccp_aes_cmac_complete() argument 26 struct ahash_request *req = ahash_request_cast(async_req); in ccp_aes_cmac_complete()
|
/Linux-v5.15/drivers/crypto/allwinner/sun8i-ce/ |
D | sun8i-ce-cipher.c | 78 static int sun8i_ce_cipher_prepare(struct crypto_engine *engine, void *async_req) in sun8i_ce_cipher_prepare() argument 80 struct skcipher_request *areq = container_of(async_req, struct skcipher_request, base); in sun8i_ce_cipher_prepare() 290 static int sun8i_ce_cipher_unprepare(struct crypto_engine *engine, void *async_req) in sun8i_ce_cipher_unprepare() argument 292 struct skcipher_request *areq = container_of(async_req, struct skcipher_request, base); in sun8i_ce_cipher_unprepare()
|
/Linux-v5.15/drivers/crypto/ |
D | sahara.c | 1039 struct crypto_async_request *async_req; in sahara_queue_manage() local 1048 async_req = crypto_dequeue_request(&dev->queue); in sahara_queue_manage() 1054 if (async_req) { in sahara_queue_manage() 1055 if (crypto_tfm_alg_type(async_req->tfm) == in sahara_queue_manage() 1058 ahash_request_cast(async_req); in sahara_queue_manage() 1063 skcipher_request_cast(async_req); in sahara_queue_manage() 1068 async_req->complete(async_req, ret); in sahara_queue_manage()
|
D | s5p-sss.c | 1374 struct crypto_async_request *async_req, *backlog; in s5p_hash_handle_queue() local 1390 async_req = crypto_dequeue_request(&dd->hash_queue); in s5p_hash_handle_queue() 1391 if (async_req) in s5p_hash_handle_queue() 1396 if (!async_req) in s5p_hash_handle_queue() 1402 req = ahash_request_cast(async_req); in s5p_hash_handle_queue() 1978 struct crypto_async_request *async_req, *backlog; in s5p_tasklet_cb() local 1984 async_req = crypto_dequeue_request(&dev->queue); in s5p_tasklet_cb() 1986 if (!async_req) { in s5p_tasklet_cb() 1996 dev->req = skcipher_request_cast(async_req); in s5p_tasklet_cb()
|
D | img-hash.c | 499 struct crypto_async_request *async_req, *backlog; in img_hash_handle_queue() local 515 async_req = crypto_dequeue_request(&hdev->queue); in img_hash_handle_queue() 516 if (async_req) in img_hash_handle_queue() 521 if (!async_req) in img_hash_handle_queue() 527 req = ahash_request_cast(async_req); in img_hash_handle_queue()
|
D | atmel-tdes.c | 599 struct crypto_async_request *async_req, *backlog; in atmel_tdes_handle_queue() local 613 async_req = crypto_dequeue_request(&dd->queue); in atmel_tdes_handle_queue() 614 if (async_req) in atmel_tdes_handle_queue() 618 if (!async_req) in atmel_tdes_handle_queue() 624 req = skcipher_request_cast(async_req); in atmel_tdes_handle_queue()
|
/Linux-v5.15/drivers/net/usb/ |
D | rtl8150.c | 141 struct async_req { struct 169 struct async_req *req = (struct async_req *)urb->context; in async_set_reg_cb() 182 struct async_req *req; in async_set_registers() 184 req = kmalloc(sizeof(struct async_req), GFP_ATOMIC); in async_set_registers()
|
/Linux-v5.15/drivers/nvme/host/ |
D | tcp.c | 131 struct nvme_tcp_request async_req; member 178 return req == &req->queue->ctrl->async_req; in nvme_tcp_async_req() 1212 struct nvme_tcp_request *async = &ctrl->async_req; in nvme_tcp_free_async_req() 1220 struct nvme_tcp_request *async = &ctrl->async_req; in nvme_tcp_alloc_async_req() 1651 if (to_tcp_ctrl(ctrl)->async_req.pdu) { in nvme_tcp_free_admin_queue() 1654 to_tcp_ctrl(ctrl)->async_req.pdu = NULL; in nvme_tcp_free_admin_queue() 2212 struct nvme_tcp_cmd_pdu *pdu = ctrl->async_req.pdu; in nvme_tcp_submit_async_event() 2228 ctrl->async_req.state = NVME_TCP_SEND_CMD_PDU; in nvme_tcp_submit_async_event() 2229 ctrl->async_req.offset = 0; in nvme_tcp_submit_async_event() 2230 ctrl->async_req.curr_bio = NULL; in nvme_tcp_submit_async_event() [all …]
|