Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S932255AbdIRJk5 (ORCPT ); Mon, 18 Sep 2017 05:40:57 -0400 Received: from mx07-00178001.pphosted.com ([62.209.51.94]:63402 "EHLO mx07-00178001.pphosted.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1755424AbdIRJkv (ORCPT ); Mon, 18 Sep 2017 05:40:51 -0400 From: Fabien DESSENNE To: Herbert Xu , "David S . Miller" , Rob Herring , Mark Rutland , Maxime Coquelin , Alexandre TORGUE , "linux-crypto@vger.kernel.org" , "devicetree@vger.kernel.org" , "linux-arm-kernel@lists.infradead.org" , "linux-kernel@vger.kernel.org" CC: Benjamin GAIGNARD , Lionel DEBIEVE , Ludovic BARRE Subject: Re: [PATCH v3 0/3] STM32 CRYP crypto driver Thread-Topic: [PATCH v3 0/3] STM32 CRYP crypto driver Thread-Index: AQHTGANaWqkS/9CEC0KjQ5rOqMQPjKK6cqSA Date: Mon, 18 Sep 2017 09:40:02 +0000 Message-ID: <7be8c468-2e95-c781-3af3-d411acc80598@st.com> References: <1503047946-27799-1-git-send-email-fabien.dessenne@st.com> In-Reply-To: <1503047946-27799-1-git-send-email-fabien.dessenne@st.com> Accept-Language: fr-FR, en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: user-agent: Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Thunderbird/52.3.0 x-ms-exchange-messagesentrepresentingtype: 1 x-ms-exchange-transport-fromentityheader: Hosted x-originating-ip: [10.75.127.46] Content-Type: text/plain; charset="utf-8" Content-ID: <8BDBEBD1600EBF48A5C5DAF1F4620718@st.com> MIME-Version: 1.0 X-Proofpoint-Virus-Version: vendor=fsecure engine=2.50.10432:,, definitions=2017-09-18_02:,, signatures=0 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Transfer-Encoding: 8bit X-MIME-Autoconverted: from base64 to 8bit by nfs id v8I9f156013133 Content-Length: 1433 Lines: 34 Just a gentle ping ... or have I missed out on a reply? On 18/08/17 11:19, Fabien Dessenne wrote: > This set of patches adds a new crypto driver for STMicroelectronics stm32 HW. > This drivers uses the crypto API and provides with HW-enabled AEAD and block > cipher algorithms. > It makes use of the crypto engine which is upgraded in order to support AEAD > requests. > > This driver was successfully tested with tcrypt / testmgr. > > Changes since v3: > - update dt-bindings with Rob Herring remarks > > Changes since v2: > - update dt-bindings (interrupts description) > - rebase on STM32 crypto patches (L. Debieve : update CRC32 + add HASH) > > Fabien Dessenne (3): > crypto: engine - permit to enqueue aead_request > dt-bindings: Document STM32 CRYP bindings > crypto: stm32 - Support for STM32 CRYP crypto module > > .../devicetree/bindings/crypto/st,stm32-cryp.txt | 19 + > crypto/crypto_engine.c | 101 + > drivers/crypto/stm32/Kconfig | 9 + > drivers/crypto/stm32/Makefile | 3 +- > drivers/crypto/stm32/stm32-cryp.c | 1962 ++++++++++++++++++++ > include/crypto/engine.h | 16 + > 6 files changed, 2109 insertions(+), 1 deletion(-) > create mode 100644 Documentation/devicetree/bindings/crypto/st,stm32-cryp.txt > create mode 100644 drivers/crypto/stm32/stm32-cryp.c >