Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1714751 > unrolled thread

[PATCH v3 0/3] STM32 CRYP crypto driver

Started byFabien Dessenne <fabien.dessenne@st.com>
First post2017-08-18 11:30 +0200
Last post2017-08-18 11:30 +0200
Articles 1 — 1 participant

Back to article view | Back to linux.kernel


Contents

  [PATCH v3 0/3] STM32 CRYP crypto driver Fabien Dessenne <fabien.dessenne@st.com> - 2017-08-18 11:30 +0200

#1714751 — [PATCH v3 0/3] STM32 CRYP crypto driver

FromFabien Dessenne <fabien.dessenne@st.com>
Date2017-08-18 11:30 +0200
Subject[PATCH v3 0/3] STM32 CRYP crypto driver
Message-ID<ufLLk-1yQ-5@gated-at.bofh.it>
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

-- 
2.7.4

[toc] | [standalone]


Back to top | Article view | linux.kernel


csiph-web