Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1703736 > unrolled thread
| Started by | Lars Persson <lars.persson@axis.com> |
|---|---|
| First post | 2017-08-04 09:20 +0200 |
| Last post | 2017-08-04 09:30 +0200 |
| Articles | 2 — 1 participant |
Back to article view | Back to linux.kernel
[PATCH v3 0/4] crypto: add driver for Axis ARTPEC crypto accelerator Lars Persson <lars.persson@axis.com> - 2017-08-04 09:20 +0200
[PATCH v3 4/4] MAINTAINERS: Add ARTPEC crypto maintainer Lars Persson <lars.persson@axis.com> - 2017-08-04 09:30 +0200
| From | Lars Persson <lars.persson@axis.com> |
|---|---|
| Date | 2017-08-04 09:20 +0200 |
| Subject | [PATCH v3 0/4] crypto: add driver for Axis ARTPEC crypto accelerator |
| Message-ID | <uaF3P-3UX-5@gated-at.bofh.it> |
This series adds a driver for the crypto accelerator in the ARTPEC series of SoCs from Axis Communications AB. Changelog v3: - The patch author added his Signed-off-by on patch 2. Changelog v2: - Use xts_check_key() for xts keys. - Use CRYPTO_ALG_TYPE_SKCIPHER instead of CRYPTO_ALG_TYPE_ABLKCIPHER in cra_flags. Lars Persson (3): dt-bindings: crypto: add ARTPEC crypto crypto: axis: add ARTPEC-6/7 crypto accelerator driver MAINTAINERS: Add ARTPEC crypto maintainer Rabin Vincent (1): crypto: add crypto_(un)register_ahashes() .../devicetree/bindings/crypto/artpec6-crypto.txt | 16 + MAINTAINERS | 1 + crypto/ahash.c | 29 + drivers/crypto/Kconfig | 21 + drivers/crypto/Makefile | 1 + drivers/crypto/axis/Makefile | 1 + drivers/crypto/axis/artpec6_crypto.c | 3193 ++++++++++++++++++++ include/crypto/internal/hash.h | 2 + 8 files changed, 3264 insertions(+) create mode 100644 Documentation/devicetree/bindings/crypto/artpec6-crypto.txt create mode 100644 drivers/crypto/axis/Makefile create mode 100644 drivers/crypto/axis/artpec6_crypto.c -- 2.11.0
[toc] | [next] | [standalone]
| From | Lars Persson <lars.persson@axis.com> |
|---|---|
| Date | 2017-08-04 09:30 +0200 |
| Subject | [PATCH v3 4/4] MAINTAINERS: Add ARTPEC crypto maintainer |
| Message-ID | <uaFdv-3Yv-1@gated-at.bofh.it> |
| In reply to | #1703736 |
Assign the Axis kernel team as maintainer for crypto drivers under drivers/crypto/axis. Signed-off-by: Lars Persson <larper@axis.com> --- MAINTAINERS | 1 + 1 file changed, 1 insertion(+) diff --git a/MAINTAINERS b/MAINTAINERS index d5b6c71e783e..72186cf9820d 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -1129,6 +1129,7 @@ L: linux-arm-kernel@axis.com F: arch/arm/mach-artpec F: arch/arm/boot/dts/artpec6* F: drivers/clk/axis +F: drivers/crypto/axis F: drivers/pinctrl/pinctrl-artpec* F: Documentation/devicetree/bindings/pinctrl/axis,artpec6-pinctrl.txt -- 2.11.0
[toc] | [prev] | [standalone]
Back to top | Article view | linux.kernel
csiph-web