All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v2 0/4] crypto: add amlogic crypto offloader driver
@ 2019-10-14  5:31 ` Corentin Labbe
  0 siblings, 0 replies; 32+ messages in thread
From: Corentin Labbe @ 2019-10-14  5:31 UTC (permalink / raw)
  To: davem, herbert, khilman, mark.rutland, robh+dt, martin.blumenstingl
  Cc: devicetree, linux-amlogic, linux-arm-kernel, linux-crypto,
	linux-kernel, Corentin Labbe

Hello

This serie adds support for the crypto offloader present on amlogic GXL
SoCs.

Tested on meson-gxl-s905x-khadas-vim and meson-gxl-s905x-libretech-cc

Regards

Changes since v1:
- renamed files and algo with gxl
- removed unused reset handlings
- splited the probe functions
- splited meson_cipher fallback in need_fallback() and do_fallback()

Corentin Labbe (4):
  dt-bindings: crypto: Add DT bindings documentation for amlogic-crypto
  MAINTAINERS: Add myself as maintainer of amlogic crypto
  crypto: amlogic: Add crypto accelerator for amlogic GXL
  ARM64: dts: amlogic: adds crypto hardware node

 .../bindings/crypto/amlogic,gxl-crypto.yaml   |  52 +++
 MAINTAINERS                                   |   7 +
 arch/arm64/boot/dts/amlogic/meson-gxl.dtsi    |  10 +
 drivers/crypto/Kconfig                        |   2 +
 drivers/crypto/Makefile                       |   1 +
 drivers/crypto/amlogic/Kconfig                |  24 ++
 drivers/crypto/amlogic/Makefile               |   2 +
 drivers/crypto/amlogic/amlogic-gxl-cipher.c   | 381 ++++++++++++++++++
 drivers/crypto/amlogic/amlogic-gxl-core.c     | 333 +++++++++++++++
 drivers/crypto/amlogic/amlogic-gxl.h          | 170 ++++++++
 10 files changed, 982 insertions(+)
 create mode 100644 Documentation/devicetree/bindings/crypto/amlogic,gxl-crypto.yaml
 create mode 100644 drivers/crypto/amlogic/Kconfig
 create mode 100644 drivers/crypto/amlogic/Makefile
 create mode 100644 drivers/crypto/amlogic/amlogic-gxl-cipher.c
 create mode 100644 drivers/crypto/amlogic/amlogic-gxl-core.c
 create mode 100644 drivers/crypto/amlogic/amlogic-gxl.h

-- 
2.21.0


^ permalink raw reply	[flat|nested] 32+ messages in thread
* [PATCH v2 0/4] crypto: add amlogic crypto offloader driver
@ 2019-10-14  5:18 Corentin Labbe
  2019-10-14  5:18   ` Corentin Labbe
  0 siblings, 1 reply; 32+ messages in thread
From: Corentin Labbe @ 2019-10-14  5:18 UTC (permalink / raw)
  To: davem, herbert, khilman, mark.rutland, robh+dt, martin.blumenstingl
  Cc: devicetree, linux-amlogic, linux-arm-kernel, linux-crypto,
	linux-kernel, Corentin Labbe

Hello

This serie adds support for the crypto offloader present on amlogic GXL
SoCs.

Tested on meson-gxl-s905x-khadas-vim and meson-gxl-s905x-libretech-cc

Regards

Changes since v1:
- renamed files and algo with gxl
- removed unused reset handlings
- splited the probe functions
- splited meson_cipher fallback in need_fallback() and do_fallback()

Corentin Labbe (4):
  dt-bindings: crypto: Add DT bindings documentation for amlogic-crypto
  MAINTAINERS: Add myself as maintainer of amlogic crypto
  crypto: amlogic: Add crypto accelerator for amlogic GXL
  ARM64: dts: amlogic: adds crypto hardware node

 .../bindings/crypto/amlogic,gxl-crypto.yaml   |  52 +++
 MAINTAINERS                                   |   7 +
 arch/arm64/boot/dts/amlogic/meson-gxl.dtsi    |  10 +
 drivers/crypto/Kconfig                        |   2 +
 drivers/crypto/Makefile                       |   1 +
 drivers/crypto/amlogic/Kconfig                |  24 ++
 drivers/crypto/amlogic/Makefile               |   2 +
 drivers/crypto/amlogic/amlogic-gxl-cipher.c   | 381 ++++++++++++++++++
 drivers/crypto/amlogic/amlogic-gxl-core.c     | 333 +++++++++++++++
 drivers/crypto/amlogic/amlogic-gxl.h          | 170 ++++++++
 10 files changed, 982 insertions(+)
 create mode 100644 Documentation/devicetree/bindings/crypto/amlogic,gxl-crypto.yaml
 create mode 100644 drivers/crypto/amlogic/Kconfig
 create mode 100644 drivers/crypto/amlogic/Makefile
 create mode 100644 drivers/crypto/amlogic/amlogic-gxl-cipher.c
 create mode 100644 drivers/crypto/amlogic/amlogic-gxl-core.c
 create mode 100644 drivers/crypto/amlogic/amlogic-gxl.h

-- 
2.21.0


^ permalink raw reply	[flat|nested] 32+ messages in thread

end of thread, other threads:[~2019-10-16 20:23 UTC | newest]

Thread overview: 32+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-10-14  5:31 [PATCH v2 0/4] crypto: add amlogic crypto offloader driver Corentin Labbe
2019-10-14  5:31 ` Corentin Labbe
2019-10-14  5:31 ` Corentin Labbe
2019-10-14  5:31 ` Corentin Labbe
2019-10-14  5:31 ` [PATCH v2 1/4] dt-bindings: crypto: Add DT bindings documentation for amlogic-crypto Corentin Labbe
2019-10-14  5:31   ` Corentin Labbe
2019-10-14  5:31   ` Corentin Labbe
2019-10-14 18:17   ` Rob Herring
2019-10-14 18:17     ` Rob Herring
2019-10-14 18:17     ` Rob Herring
2019-10-14 18:17     ` Rob Herring
2019-10-14  5:31 ` [PATCH v2 2/4] MAINTAINERS: Add myself as maintainer of amlogic crypto Corentin Labbe
2019-10-14  5:31   ` Corentin Labbe
2019-10-14  5:31   ` Corentin Labbe
2019-10-14  5:31 ` [PATCH v2 3/4] crypto: amlogic: Add crypto accelerator for amlogic GXL Corentin Labbe
2019-10-14  5:31   ` Corentin Labbe
2019-10-14  5:31   ` Corentin Labbe
2019-10-14  5:41   ` Randy Dunlap
2019-10-14  5:41     ` Randy Dunlap
2019-10-14  5:41     ` Randy Dunlap
2019-10-16 20:11     ` LABBE Corentin
2019-10-16 20:11       ` LABBE Corentin
2019-10-16 20:11       ` LABBE Corentin
2019-10-14  5:31 ` [PATCH v2 4/4] ARM64: dts: amlogic: adds crypto hardware node Corentin Labbe
2019-10-14  5:31   ` Corentin Labbe
2019-10-14  5:31   ` Corentin Labbe
2019-10-16 16:52   ` Kevin Hilman
2019-10-16 16:52     ` Kevin Hilman
2019-10-16 16:52     ` Kevin Hilman
  -- strict thread matches above, loose matches on Subject: below --
2019-10-14  5:18 [PATCH v2 0/4] crypto: add amlogic crypto offloader driver Corentin Labbe
2019-10-14  5:18 ` [PATCH v2 4/4] ARM64: dts: amlogic: adds crypto hardware node Corentin Labbe
2019-10-14  5:18   ` Corentin Labbe
2019-10-14  5:18   ` Corentin Labbe

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.