From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 84A26A0542; Sat, 8 Oct 2022 10:39:04 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 10BB742B98; Sat, 8 Oct 2022 10:39:00 +0200 (CEST) Received: from mail-pf1-f177.google.com (mail-pf1-f177.google.com [209.85.210.177]) by mails.dpdk.org (Postfix) with ESMTP id B9FF942B77 for ; Sat, 8 Oct 2022 10:38:58 +0200 (CEST) Received: by mail-pf1-f177.google.com with SMTP id f140so6821801pfa.1 for ; Sat, 08 Oct 2022 01:38:58 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linaro.org; s=google; h=content-transfer-encoding:mime-version:references:in-reply-to :message-id:date:subject:cc:to:from:from:to:cc:subject:date :message-id:reply-to; bh=2dU0jBqimPaqD7wisR+m/lJ8t9u0tfSMOkV6toBUYNk=; b=rW76Ox+fChuKe0h4VZZPAwjCUbjoknRtYMJSdviS2+rv6H3Vyb91SV+aWZzQEqQFan OY7m3bl+2VMSspotWHd8oy7CtfQgC75TlQ3v0v600RT7iRORqqbzw2nu5jW1Anmspp5V eyKpn+iI2bIIehhUAw4CUox/lsgFVSwD8cqEJ6rONzTshvnWKONQXRxUyeYG+QgXtje8 Rg0wzgpX8zPJLgyq1t/gw/+lFwlpUIPdUA4XaBZ0xK7QS64WEzkWIEpazrBqwByP/uUy iRaEWiN3e2P3ZDDDskqSanPU05z8zAC2ffq3f3PBuMshHAFK4U076w48rAZtp7+3ESsB DCBg== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=content-transfer-encoding:mime-version:references:in-reply-to :message-id:date:subject:cc:to:from:x-gm-message-state:from:to:cc :subject:date:message-id:reply-to; bh=2dU0jBqimPaqD7wisR+m/lJ8t9u0tfSMOkV6toBUYNk=; b=m658Gnrs0cw2L8QhkrBy8zzORLQ66i+rjDgE9rzqb+qxnOV0QOrrAjbXqveKP/ukZo eukFVJDj1tntvtjrtf9/9WMR5r7x5IOw21ixtJSZuhOmatq/UcyqzL5OsfyGTp1hX6CS sRAI8Hc8Gnb4qW3T5k8KmS5KUmFqhGpO3GtscoUM2KgnWrPJip5VOaoW17NCyvRA6nr0 Zh98OYHniMPRAlVHGQkn9MXEWaIn2KgIUfGlob/hSYQt5lskEZHZvIzVjplmXqMUMBIC MWQ5aSwGxcL6iv6dSckovibQxYANmipayoMVRy/owvUng0hZE2SmCT+mVPoK3owoJhz+ JWbg== X-Gm-Message-State: ACrzQf1ofsNlf1z822cAVi0vPa3cUwa1YsnsaMOaImVhvO8rzNMY1Xh4 CpWcR6dc/s4Odq9WZ4g5bodpFw== X-Google-Smtp-Source: AMsMyM7+54EXSz/siSoZ/2uz4Wx0SdyqDKI2XyQSnxNADKBL3qQV7VOXtoOjdG82phKHcWu88kbdsA== X-Received: by 2002:a63:eb11:0:b0:45f:eab4:54fa with SMTP id t17-20020a63eb11000000b0045feab454famr2770443pgh.224.1665218337960; Sat, 08 Oct 2022 01:38:57 -0700 (PDT) Received: from localhost.localdomain ([194.5.48.65]) by smtp.gmail.com with ESMTPSA id n1-20020a17090a2bc100b0020a0571b354sm2644371pje.57.2022.10.08.01.38.54 (version=TLS1_2 cipher=ECDHE-ECDSA-AES128-GCM-SHA256 bits=128/128); Sat, 08 Oct 2022 01:38:57 -0700 (PDT) From: Zhangfei Gao To: Akhil Goyal , Declan Doherty , Fan Zhang , Ashish Gupta , Ray Kinsella Cc: dev@dpdk.org, acc@openeuler.org, Zhangfei Gao Subject: [PATCH resend v3 3/6] crypto/uadk: support enqueue/dequeue operations Date: Sat, 8 Oct 2022 16:37:44 +0800 Message-Id: <20221008083747.6559-4-zhangfei.gao@linaro.org> X-Mailer: git-send-email 2.36.1 In-Reply-To: <20221008083747.6559-1-zhangfei.gao@linaro.org> References: <20221008083747.6559-1-zhangfei.gao@linaro.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org This commit adds the enqueue and dequeue operations. Signed-off-by: Zhangfei Gao --- drivers/crypto/uadk/uadk_crypto_pmd.c | 53 ++++++++++++++++++++++++++- 1 file changed, 51 insertions(+), 2 deletions(-) diff --git a/drivers/crypto/uadk/uadk_crypto_pmd.c b/drivers/crypto/uadk/uadk_crypto_pmd.c index 1d1a4b2897..051d6726b0 100644 --- a/drivers/crypto/uadk/uadk_crypto_pmd.c +++ b/drivers/crypto/uadk/uadk_crypto_pmd.c @@ -240,6 +240,55 @@ static struct rte_cryptodev_ops uadk_crypto_pmd_ops = { .sym_session_clear = NULL, }; +static uint16_t +uadk_crypto_enqueue_burst(void *queue_pair, struct rte_crypto_op **ops, + uint16_t nb_ops) +{ + struct uadk_qp *qp = queue_pair; + struct rte_crypto_op *op; + uint16_t enqd = 0; + int i, ret; + + for (i = 0; i < nb_ops; i++) { + op = ops[i]; + op->status = RTE_CRYPTO_OP_STATUS_NOT_PROCESSED; + + if (op->status == RTE_CRYPTO_OP_STATUS_NOT_PROCESSED) + op->status = RTE_CRYPTO_OP_STATUS_SUCCESS; + + if (op->status != RTE_CRYPTO_OP_STATUS_ERROR) { + ret = rte_ring_enqueue(qp->processed_pkts, (void *)op); + if (ret < 0) + goto enqueue_err; + qp->qp_stats.enqueued_count++; + enqd++; + } else { + /* increment count if failed to enqueue op */ + qp->qp_stats.enqueue_err_count++; + } + } + + return enqd; + +enqueue_err: + qp->qp_stats.enqueue_err_count++; + return enqd; +} + +static uint16_t +uadk_crypto_dequeue_burst(void *queue_pair, struct rte_crypto_op **ops, + uint16_t nb_ops) +{ + struct uadk_qp *qp = queue_pair; + unsigned int nb_dequeued; + + nb_dequeued = rte_ring_dequeue_burst(qp->processed_pkts, + (void **)ops, nb_ops, NULL); + qp->qp_stats.dequeued_count += nb_dequeued; + + return nb_dequeued; +} + static int uadk_cryptodev_probe(struct rte_vdev_device *vdev) { @@ -276,8 +325,8 @@ uadk_cryptodev_probe(struct rte_vdev_device *vdev) dev->dev_ops = &uadk_crypto_pmd_ops; dev->driver_id = uadk_cryptodev_driver_id; - dev->dequeue_burst = NULL; - dev->enqueue_burst = NULL; + dev->dequeue_burst = uadk_crypto_dequeue_burst; + dev->enqueue_burst = uadk_crypto_enqueue_burst; dev->feature_flags = RTE_CRYPTODEV_FF_HW_ACCELERATED; priv = dev->data->dev_private; priv->version = version; -- 2.36.1