Home
last modified time | relevance | path

Searched refs:vcrypto (Results 1 – 5 of 5) sorted by relevance

/linux-6.1.9/drivers/crypto/virtio/
Dvirtio_crypto_core.c32 struct virtio_crypto *vcrypto = vq->vdev->priv; in virtcrypto_ctrlq_callback() local
37 spin_lock_irqsave(&vcrypto->ctrl_lock, flags); in virtcrypto_ctrlq_callback()
41 spin_unlock_irqrestore(&vcrypto->ctrl_lock, flags); in virtcrypto_ctrlq_callback()
43 spin_lock_irqsave(&vcrypto->ctrl_lock, flags); in virtcrypto_ctrlq_callback()
48 spin_unlock_irqrestore(&vcrypto->ctrl_lock, flags); in virtcrypto_ctrlq_callback()
51 int virtio_crypto_ctrl_vq_request(struct virtio_crypto *vcrypto, struct scatterlist *sgs[], in virtio_crypto_ctrl_vq_request() argument
60 spin_lock_irqsave(&vcrypto->ctrl_lock, flags); in virtio_crypto_ctrl_vq_request()
61 err = virtqueue_add_sgs(vcrypto->ctrl_vq, sgs, out_sgs, in_sgs, vc_ctrl_req, GFP_ATOMIC); in virtio_crypto_ctrl_vq_request()
63 spin_unlock_irqrestore(&vcrypto->ctrl_lock, flags); in virtio_crypto_ctrl_vq_request()
67 virtqueue_kick(vcrypto->ctrl_vq); in virtio_crypto_ctrl_vq_request()
[all …]
Dvirtio_crypto_mgr.c238 int virtcrypto_dev_start(struct virtio_crypto *vcrypto) in virtcrypto_dev_start() argument
240 if (virtio_crypto_skcipher_algs_register(vcrypto)) { in virtcrypto_dev_start()
245 if (virtio_crypto_akcipher_algs_register(vcrypto)) { in virtcrypto_dev_start()
247 virtio_crypto_skcipher_algs_unregister(vcrypto); in virtcrypto_dev_start()
264 void virtcrypto_dev_stop(struct virtio_crypto *vcrypto) in virtcrypto_dev_stop() argument
266 virtio_crypto_skcipher_algs_unregister(vcrypto); in virtcrypto_dev_stop()
267 virtio_crypto_akcipher_algs_unregister(vcrypto); in virtcrypto_dev_stop()
284 bool virtcrypto_algo_is_supported(struct virtio_crypto *vcrypto, in virtcrypto_algo_is_supported() argument
297 if (!(vcrypto->crypto_services & service_mask)) in virtcrypto_algo_is_supported()
303 algo_mask = vcrypto->cipher_algo_l; in virtcrypto_algo_is_supported()
[all …]
Dvirtio_crypto_skcipher_algs.c22 struct virtio_crypto *vcrypto; member
121 struct virtio_crypto *vcrypto = ctx->vcrypto; in virtio_crypto_alg_skcipher_init_session() local
172 err = virtio_crypto_ctrl_vq_request(vcrypto, sgs, num_out, num_in, vc_ctrl_req); in virtio_crypto_alg_skcipher_init_session()
201 struct virtio_crypto *vcrypto = ctx->vcrypto; in virtio_crypto_alg_skcipher_close_session() local
234 err = virtio_crypto_ctrl_vq_request(vcrypto, sgs, num_out, num_in, vc_ctrl_req); in virtio_crypto_alg_skcipher_close_session()
258 struct virtio_crypto *vcrypto = ctx->vcrypto; in virtio_crypto_alg_skcipher_init_sessions() local
260 if (keylen > vcrypto->max_cipher_key_len) { in virtio_crypto_alg_skcipher_init_sessions()
296 if (!ctx->vcrypto) { in virtio_crypto_skcipher_setkey()
299 struct virtio_crypto *vcrypto = in virtio_crypto_skcipher_setkey() local
302 if (!vcrypto) { in virtio_crypto_skcipher_setkey()
[all …]
Dvirtio_crypto_akcipher_algs.c28 struct virtio_crypto *vcrypto; member
111 struct virtio_crypto *vcrypto = ctx->vcrypto; in virtio_crypto_alg_akcipher_init_session() local
144 err = virtio_crypto_ctrl_vq_request(vcrypto, sgs, num_out, num_in, vc_ctrl_req); in virtio_crypto_alg_akcipher_init_session()
170 struct virtio_crypto *vcrypto = ctx->vcrypto; in virtio_crypto_alg_akcipher_close_session() local
199 err = virtio_crypto_ctrl_vq_request(vcrypto, sgs, num_out, num_in, vc_ctrl_req); in virtio_crypto_alg_akcipher_close_session()
224 struct virtio_crypto *vcrypto = ctx->vcrypto; in __virtio_crypto_akcipher_do_req() local
229 int node = dev_to_node(&vcrypto->vdev->dev); in __virtio_crypto_akcipher_do_req()
292 struct virtio_crypto *vcrypto = ctx->vcrypto; in virtio_crypto_rsa_do_req() local
300 GFP_KERNEL, dev_to_node(&vcrypto->vdev->dev)); in virtio_crypto_rsa_do_req()
331 struct virtio_crypto *vcrypto = ctx->vcrypto; in virtio_crypto_rsa_req() local
[all …]
Dvirtio_crypto_common.h122 int virtcrypto_dev_start(struct virtio_crypto *vcrypto);
123 void virtcrypto_dev_stop(struct virtio_crypto *vcrypto);
141 int virtio_crypto_skcipher_algs_register(struct virtio_crypto *vcrypto);
142 void virtio_crypto_skcipher_algs_unregister(struct virtio_crypto *vcrypto);
143 int virtio_crypto_akcipher_algs_register(struct virtio_crypto *vcrypto);
144 void virtio_crypto_akcipher_algs_unregister(struct virtio_crypto *vcrypto);
145 int virtio_crypto_ctrl_vq_request(struct virtio_crypto *vcrypto, struct scatterlist *sgs[],