Message ID | 1581078974-14778-1-git-send-email-iuliana.prodan@nxp.com |
---|---|
Headers | show
Return-Path: <SRS0=xktg=33=vger.kernel.org=linux-crypto-owner@kernel.org> X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-6.7 required=3.0 tests=HEADER_FROM_DIFFERENT_DOMAINS, MAILING_LIST_MULTI, SIGNED_OFF_BY, SPF_HELO_NONE, SPF_PASS, URIBL_BLOCKED, USER_AGENT_GIT autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 96D09C352A2 for <linux-crypto@archiver.kernel.org>; Fri, 7 Feb 2020 12:36:27 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 652C6217BA for <linux-crypto@archiver.kernel.org>; Fri, 7 Feb 2020 12:36:27 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726894AbgBGMg0 (ORCPT <rfc822;linux-crypto@archiver.kernel.org>); Fri, 7 Feb 2020 07:36:26 -0500 Received: from inva020.nxp.com ([92.121.34.13]:51300 "EHLO inva020.nxp.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726819AbgBGMg0 (ORCPT <rfc822;linux-crypto@vger.kernel.org>); Fri, 7 Feb 2020 07:36:26 -0500 Received: from inva020.nxp.com (localhost [127.0.0.1]) by inva020.eu-rdc02.nxp.com (Postfix) with ESMTP id 493F31A49D9; Fri, 7 Feb 2020 13:36:24 +0100 (CET) Received: from inva024.eu-rdc02.nxp.com (inva024.eu-rdc02.nxp.com [134.27.226.22]) by inva020.eu-rdc02.nxp.com (Postfix) with ESMTP id 3AE081A49C2; Fri, 7 Feb 2020 13:36:24 +0100 (CET) Received: from lorenz.ea.freescale.net (lorenz.ea.freescale.net [10.171.71.5]) by inva024.eu-rdc02.nxp.com (Postfix) with ESMTP id 951DA203CD; Fri, 7 Feb 2020 13:36:23 +0100 (CET) From: Iuliana Prodan <iuliana.prodan@nxp.com> To: Herbert Xu <herbert@gondor.apana.org.au>, Baolin Wang <baolin.wang@linaro.org>, Ard Biesheuvel <ard.biesheuvel@linaro.org>, Corentin Labbe <clabbe.montjoie@gmail.com>, Horia Geanta <horia.geanta@nxp.com>, Maxime Coquelin <mcoquelin.stm32@gmail.com>, Alexandre Torgue <alexandre.torgue@st.com>, Maxime Ripard <mripard@kernel.org> Cc: Aymen Sghaier <aymen.sghaier@nxp.com>, "David S. Miller" <davem@davemloft.net>, Silvano Di Ninno <silvano.dininno@nxp.com>, Franck Lenormand <franck.lenormand@nxp.com>, linux-crypto@vger.kernel.org, linux-kernel@vger.kernel.org, linux-imx <linux-imx@nxp.com>, Iuliana Prodan <iuliana.prodan@nxp.com> Subject: [PATCH v3 0/2] crypto: engine - support for parallel and batch requests Date: Fri, 7 Feb 2020 14:36:12 +0200 Message-Id: <1581078974-14778-1-git-send-email-iuliana.prodan@nxp.com> X-Mailer: git-send-email 2.1.0 X-Virus-Scanned: ClamAV using ClamSMTP Sender: linux-crypto-owner@vger.kernel.org Precedence: bulk List-ID: <linux-crypto.vger.kernel.org> X-Mailing-List: linux-crypto@vger.kernel.org |
Series |
crypto: engine - support for parallel and batch requests
|
expand
|
Added support for executing multiple, independent or not, requests for crypto engine. This is based on a callback, can_enqueue_more, which asks the driver if the hardware has free space, to enqueue a new request. If hardware supports batch requests, crypto-engine can handle this use-case through do_batch_requests callback. Since, these new features, cannot be supported by all hardware, the crypto-engine framework is backward compatible: - by using the crypto_engine_alloc_init function, to initialize crypto-engine, the new callbacks are NULL and the engine will work as before these changes; - to support only multiple requests, in parallel, the can_enqueue_more callback must be implemented in driver. On crypto_pump_requests, if can_enqueue_more callback returns true, a new request is send to hardware, until there is no space and the callback returns false. - to support batch requests, do_batch_requests callback must be implemented in driver, to execute a batch of requests. The link between the requests, is expected to be done in driver, in do_one_request(). Signed-off-by: Iuliana Prodan <iuliana.prodan@nxp.com> --- Changes since V2: - readded cur_req in crypto-engine, to keep, the exact behavior as before these changes, if can_enqueue_more is not implemented: send requests to hardware, _one-by-one_, on crypto_pump_requests, and complete it, on crypto_finalize_request, and so on. - do_batch_requests is available only with can_enqueue_more. Changes since V1: - changed the name of can_enqueue_hardware callback to can_enqueue_more, and the argument of this callback to crypto_engine structure (for cases when more than ore crypto-engine is used). - added a new patch with support for batch requests. Changes since V0 (RFC): - removed max_no_req and no_req, as the number of request that can be processed in parallel; - added a new callback, can_enqueue_more, to check whether the hardware can process a new request. Iuliana Prodan (2): crypto: engine - support for parallel requests crypto: engine - support for batch requests crypto/crypto_engine.c | 132 +++++++++++++++++++++++++++++++++++++----------- include/crypto/engine.h | 14 +++-- 2 files changed, 113 insertions(+), 33 deletions(-)