Hello Rockchip rk3568 and rk3588 have a common crypto offloader IP different than rk3228 one. I started to work the driver for this IP on a rk3588 based board, but this SoC is still not upstream. So it is why I send this serie asking for test since I own no rk3568 and I need to be sure datasheet is right. Note: I keeped all rk3588 reference intentionaly, but probably it will need to be removed until this SoC was upstream. Regards Corentin Labbe (5): crypto: rockchip: move kconfig to its dedicated directory dt-bindings: crypto: add support for rockchip,crypto-rk3588 MAINTAINERS: add new dt-binding doc to the right entry crypto: rockchip: support the new crypto IP for rk3568/rk3588 ARM64: dts: rk3568: add crypto node .../crypto/rockchip,rk3588-crypto.yaml | 71 ++ MAINTAINERS | 1 + arch/arm64/boot/dts/rockchip/rk3568.dtsi | 14 + drivers/crypto/Kconfig | 32 +- drivers/crypto/Makefile | 2 +- drivers/crypto/rockchip/Kconfig | 56 ++ drivers/crypto/rockchip/Makefile | 5 + drivers/crypto/rockchip/rk3588_crypto.c | 646 ++++++++++++++++++ drivers/crypto/rockchip/rk3588_crypto.h | 221 ++++++ drivers/crypto/rockchip/rk3588_crypto_ahash.c | 346 ++++++++++ .../crypto/rockchip/rk3588_crypto_skcipher.c | 340 +++++++++ 11 files changed, 1703 insertions(+), 31 deletions(-) create mode 100644 Documentation/devicetree/bindings/crypto/rockchip,rk3588-crypto.yaml create mode 100644 drivers/crypto/rockchip/Kconfig create mode 100644 drivers/crypto/rockchip/rk3588_crypto.c create mode 100644 drivers/crypto/rockchip/rk3588_crypto.h create mode 100644 drivers/crypto/rockchip/rk3588_crypto_ahash.c create mode 100644 drivers/crypto/rockchip/rk3588_crypto_skcipher.c -- 2.35.1