public inbox for linux-arm-kernel@lists.infradead.org
 help / color / mirror / Atom feed
From: Maxime Ripard <mripard@kernel.org>
To: Herbert Xu <herbert@gondor.apana.org.au>
Cc: mark.rutland@arm.com, devicetree@vger.kernel.org,
	linux-sunxi@googlegroups.com, linux-kernel@vger.kernel.org,
	wens@csie.org, robh+dt@kernel.org,
	Corentin Labbe <clabbe.montjoie@gmail.com>,
	linux-crypto@vger.kernel.org, p.zabel@pengutronix.de,
	davem@davemloft.net, linux-arm-kernel@lists.infradead.org
Subject: Re: [PATCH v3 0/4] crypto: add sun8i-ss driver for Allwinner Security System
Date: Fri, 1 Nov 2019 09:58:57 +0100	[thread overview]
Message-ID: <20191101085857.bukatiog3zxugjng@hendrix> (raw)
In-Reply-To: <20191101061154.abwwbcqzm6lg7uvi@gondor.apana.org.au>


[-- Attachment #1.1: Type: text/plain, Size: 2416 bytes --]

On Fri, Nov 01, 2019 at 02:11:54PM +0800, Herbert Xu wrote:
> On Fri, Oct 25, 2019 at 08:51:24PM +0200, Corentin Labbe wrote:
> > Hello
> >
> > This patch serie adds support for the second version of Allwinner Security System.
> > The first generation of the Security System is already handled by the sun4i-ss driver.
> > Due to major change, the first driver cannot handle the second one.
> > This new Security System is present on A80 and A83T SoCs.
> >
> > For the moment, the driver support only DES3/AES in ECB/CBC mode.
> > Patchs for CTR/CTS, RSA and RNGs will came later.
> >
> > This serie is tested with CRYPTO_MANAGER_EXTRA_TESTS
> > and tested on:
> > sun8i-a83t-bananapi-m3
> > sun9i-a80-cubieboard4
> >
> > This serie is based on top of the "crypto: add sun8i-ce driver for
> > Allwinner crypto engine" serie.
> >
> > Regards
> >
> > Changes since v2:
> > - Made the reset mandatory
> > - Removed reset-names
> >
> > Changes since v1:
> > - fixed uninitialized err in sun8i_ss_allocate_chanlist
> > - Added missing commit description on DT Documentation patch
> >
> > Corentin Labbe (4):
> >   crypto: Add Allwinner sun8i-ss cryptographic offloader
> >   dt-bindings: crypto: Add DT bindings documentation for sun8i-ss
> >     Security System
> >   ARM: dts: sun8i: a83t: Add Security System node
> >   ARM: dts: sun9i: a80: Add Security System node
> >
> >  .../bindings/crypto/allwinner,sun8i-ss.yaml   |  61 ++
> >  arch/arm/boot/dts/sun8i-a83t.dtsi             |   9 +
> >  arch/arm/boot/dts/sun9i-a80.dtsi              |   9 +
> >  drivers/crypto/allwinner/Kconfig              |  28 +
> >  drivers/crypto/allwinner/Makefile             |   1 +
> >  drivers/crypto/allwinner/sun8i-ss/Makefile    |   2 +
> >  .../allwinner/sun8i-ss/sun8i-ss-cipher.c      | 438 ++++++++++++
> >  .../crypto/allwinner/sun8i-ss/sun8i-ss-core.c | 642 ++++++++++++++++++
> >  drivers/crypto/allwinner/sun8i-ss/sun8i-ss.h  | 218 ++++++
> >  9 files changed, 1408 insertions(+)
> >  create mode 100644 Documentation/devicetree/bindings/crypto/allwinner,sun8i-ss.yaml
> >  create mode 100644 drivers/crypto/allwinner/sun8i-ss/Makefile
> >  create mode 100644 drivers/crypto/allwinner/sun8i-ss/sun8i-ss-cipher.c
> >  create mode 100644 drivers/crypto/allwinner/sun8i-ss/sun8i-ss-core.c
> >  create mode 100644 drivers/crypto/allwinner/sun8i-ss/sun8i-ss.h
>
> Patches 1,2 applied.  Thanks.

Applied 3 and 4, thanks!
Maxime

[-- Attachment #1.2: signature.asc --]
[-- Type: application/pgp-signature, Size: 228 bytes --]

[-- Attachment #2: Type: text/plain, Size: 176 bytes --]

_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

      reply	other threads:[~2019-11-01  9:34 UTC|newest]

Thread overview: 10+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-10-25 18:51 [PATCH v3 0/4] crypto: add sun8i-ss driver for Allwinner Security System Corentin Labbe
2019-10-25 18:51 ` [PATCH v3 1/4] crypto: Add Allwinner sun8i-ss cryptographic offloader Corentin Labbe
2019-10-28 13:00   ` Philipp Zabel
2019-10-25 18:51 ` [PATCH v3 2/4] dt-bindings: crypto: Add DT bindings documentation for sun8i-ss Security System Corentin Labbe
2019-10-27  9:59   ` Maxime Ripard
2019-10-29 22:13   ` Rob Herring
2019-10-25 18:51 ` [PATCH v3 3/4] ARM: dts: sun8i: a83t: Add Security System node Corentin Labbe
2019-10-25 18:51 ` [PATCH v3 4/4] ARM: dts: sun9i: a80: " Corentin Labbe
2019-11-01  6:11 ` [PATCH v3 0/4] crypto: add sun8i-ss driver for Allwinner Security System Herbert Xu
2019-11-01  8:58   ` Maxime Ripard [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20191101085857.bukatiog3zxugjng@hendrix \
    --to=mripard@kernel.org \
    --cc=clabbe.montjoie@gmail.com \
    --cc=davem@davemloft.net \
    --cc=devicetree@vger.kernel.org \
    --cc=herbert@gondor.apana.org.au \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-crypto@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-sunxi@googlegroups.com \
    --cc=mark.rutland@arm.com \
    --cc=p.zabel@pengutronix.de \
    --cc=robh+dt@kernel.org \
    --cc=wens@csie.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox