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 A77EAA034F; Tue, 30 Mar 2021 06:04:22 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 39CE6140F93; Tue, 30 Mar 2021 06:04:22 +0200 (CEST) Received: from mail-io1-f54.google.com (mail-io1-f54.google.com [209.85.166.54]) by mails.dpdk.org (Postfix) with ESMTP id B8EE1140F92 for ; Tue, 30 Mar 2021 06:04:21 +0200 (CEST) Received: by mail-io1-f54.google.com with SMTP id z136so14990210iof.10 for ; Mon, 29 Mar 2021 21:04:21 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=mime-version:references:in-reply-to:from:date:message-id:subject:to :cc; bh=5qGVnswfZiEbFJryVQ03uYe78teVbtNTl5hyx4UOOd4=; b=G2VMQ6YzY9nDa0mrezR3sKKP8gSDHA3CRm1ADzT2L7J1GSbJ6U50oHLhrFwhdPaJFq JQs/ohuRjfkMS3Dn7UdMtpGaRX3KM3WNZvvwChVItSwtIHRLJ32EgdnwmjShZunDpZDB cpCaUj3ncIh7HnhVhFUHghEB2vA9IuYaJAR7Y7GLGGhMatoEez9O4Xnbx5S0N5z0ibQU ZivcdhwCQ2uI2Omzk703gcMTB8BMgZVJiJGWkY5h/Tatl1YvJjf7GUybBEsumrz9gmLr H0lLSn8sV25f6o7o8ZHakz9ttUBWTggDc3w2e/rGjgiCnrDxALCddK9ZEaY9oxGGu9U9 GeeQ== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:references:in-reply-to:from:date :message-id:subject:to:cc; bh=5qGVnswfZiEbFJryVQ03uYe78teVbtNTl5hyx4UOOd4=; b=kMisN6bbsArQiLX/9wnFVS8pZiBrksEpqAIHMCGF//v5nCdlubGzj0fuybvKlFMLzw x0xPUJ3bRhL2HUXkEO5nui/uvCRSu7GjWv+COxpuP1F1fMQztuGoRqYnOywru9vPu7Qv FNTOzoNgGJ6R+OGXyrvo952IhvfodzhMNf7LI7gCpTjxNvVXB+ajSTmMkFzZUMtKw5ST H2M52PeHn9eXRql7p9VpkmA5jvNra+Sje85JT30J3CTylwrrNkrcOwz41WYSRJeiF4aq 4N+cdy1L5+iM1mXtR7JbfyaZfxRJo1THR3WHj0mMm/0oExsOf3tAdvF3kDFT3TEfWymr TO+g== X-Gm-Message-State: AOAM530z5o9jGoya5oBLjFQNIrNMDhiijQYDs4t9zwP6IOhU7jpVmW/g AYLqtowX2LNQsuO2jMGRe6TAIiHal0IWGdo20kE= X-Google-Smtp-Source: ABdhPJyn2v6QHkjPkRlTk5bU/wBIEf7IS1MaM6ljTyTG95L8WP0ylTZeOpRtGGtsqFmh2kP+4d1Fut2Dxv6bv8t28tQ= X-Received: by 2002:a02:7086:: with SMTP id f128mr26855336jac.104.1617077061003; Mon, 29 Mar 2021 21:04:21 -0700 (PDT) MIME-Version: 1.0 References: <20210318181254.418679-1-gakhil@marvell.com> In-Reply-To: From: Jerin Jacob Date: Tue, 30 Mar 2021 09:34:05 +0530 Message-ID: To: Shijith Thotton Cc: dpdk-dev , Thomas Monjalon , Jerin Jacob , "Gujjar, Abhinandan S" , Hemant Agrawal , Nipun Gupta , sachin.saxena@oss.nxp.com, Anoob Joseph , Matan Azrad , "Zhang, Roy Fan" , Gagandeep Singh , Erik Gabriel Carrillo , "Jayatheerthan, Jay" , Pavan Nikhilesh , "Van Haaren, Harry" , Akhil Goyal Content-Type: text/plain; charset="UTF-8" Subject: Re: [dpdk-dev] [PATCH v1 0/2] Enhancements to crypto adapter forward mode 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 Sender: "dev" On Fri, Mar 26, 2021 at 2:43 PM Shijith Thotton wrote: > > This series proposes a new event device enqueue operation if crypto > adapter forward mode is supported. Second patch in the series is the > implementation of the same in PMD. Test application changes for the > usage of new API is yet to add. Please submit the new version with the test application change. > > v1: > - Added crypto adapter forward mode support for octeontx2. > > Akhil Goyal (1): > eventdev: introduce crypto adapter enqueue API @Gujjar, Abhinandan S Could you review the API changes? > > Shijith Thotton (1): > event/octeontx2: support crypto adapter forward mode > > .../prog_guide/event_crypto_adapter.rst | 69 ++++++++++------ > drivers/crypto/octeontx2/otx2_cryptodev_ops.c | 34 +++++--- > drivers/event/octeontx2/otx2_evdev.c | 5 +- > .../event/octeontx2/otx2_evdev_crypto_adptr.c | 3 +- > ...dptr_dp.h => otx2_evdev_crypto_adptr_rx.h} | 6 +- > .../octeontx2/otx2_evdev_crypto_adptr_tx.h | 82 +++++++++++++++++++ > drivers/event/octeontx2/otx2_worker.h | 2 +- > drivers/event/octeontx2/otx2_worker_dual.h | 2 +- > lib/librte_eventdev/eventdev_trace_points.c | 3 + > .../rte_event_crypto_adapter.h | 66 +++++++++++++++ > lib/librte_eventdev/rte_eventdev.c | 10 +++ > lib/librte_eventdev/rte_eventdev.h | 8 +- > lib/librte_eventdev/rte_eventdev_trace_fp.h | 10 +++ > lib/librte_eventdev/version.map | 3 + > 14 files changed, 259 insertions(+), 44 deletions(-) > rename drivers/event/octeontx2/{otx2_evdev_crypto_adptr_dp.h => otx2_evdev_crypto_adptr_rx.h} (93%) > create mode 100644 drivers/event/octeontx2/otx2_evdev_crypto_adptr_tx.h > > -- > 2.25.1 >