crypto: sun4i-ss - Move to Allwinner directory
authorCorentin Labbe <clabbe.montjoie@gmail.com>
Wed, 23 Oct 2019 20:05:13 +0000 (22:05 +0200)
committerHerbert Xu <herbert@gondor.apana.org.au>
Fri, 1 Nov 2019 05:38:31 +0000 (13:38 +0800)
Since we have a dedicated Allwinner directory for crypto driver, move
the sun4i-ss driver in it.

Acked-by: Maxime Ripard <mripard@kernel.org>
Signed-off-by: Corentin Labbe <clabbe.montjoie@gmail.com>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
MAINTAINERS
drivers/crypto/Kconfig
drivers/crypto/Makefile
drivers/crypto/allwinner/Kconfig
drivers/crypto/allwinner/Makefile
drivers/crypto/allwinner/sun4i-ss/Makefile [moved from drivers/crypto/sunxi-ss/Makefile with 100% similarity]
drivers/crypto/allwinner/sun4i-ss/sun4i-ss-cipher.c [moved from drivers/crypto/sunxi-ss/sun4i-ss-cipher.c with 100% similarity]
drivers/crypto/allwinner/sun4i-ss/sun4i-ss-core.c [moved from drivers/crypto/sunxi-ss/sun4i-ss-core.c with 100% similarity]
drivers/crypto/allwinner/sun4i-ss/sun4i-ss-hash.c [moved from drivers/crypto/sunxi-ss/sun4i-ss-hash.c with 100% similarity]
drivers/crypto/allwinner/sun4i-ss/sun4i-ss-prng.c [moved from drivers/crypto/sunxi-ss/sun4i-ss-prng.c with 100% similarity]
drivers/crypto/allwinner/sun4i-ss/sun4i-ss.h [moved from drivers/crypto/sunxi-ss/sun4i-ss.h with 100% similarity]

index fdf725d..28aab12 100644 (file)
@@ -682,12 +682,6 @@ S: Maintained
 F:     Documentation/devicetree/bindings/opp/sun50i-nvmem-cpufreq.txt
 F:     drivers/cpufreq/sun50i-cpufreq-nvmem.c
 
-ALLWINNER SECURITY SYSTEM
-M:     Corentin Labbe <clabbe.montjoie@gmail.com>
-L:     linux-crypto@vger.kernel.org
-S:     Maintained
-F:     drivers/crypto/sunxi-ss/
-
 ALLWINNER CRYPTO DRIVERS
 M:     Corentin Labbe <clabbe.montjoie@gmail.com>
 L:     linux-crypto@vger.kernel.org
index a8461b9..04a2f53 100644 (file)
@@ -659,32 +659,6 @@ config CRYPTO_DEV_IMGTEC_HASH
          hardware hash accelerator. Supporting MD5/SHA1/SHA224/SHA256
          hashing algorithms.
 
-config CRYPTO_DEV_SUN4I_SS
-       tristate "Support for Allwinner Security System cryptographic accelerator"
-       depends on ARCH_SUNXI && !64BIT
-       depends on PM
-       select CRYPTO_MD5
-       select CRYPTO_SHA1
-       select CRYPTO_AES
-       select CRYPTO_LIB_DES
-       select CRYPTO_BLKCIPHER
-       help
-         Some Allwinner SoC have a crypto accelerator named
-         Security System. Select this if you want to use it.
-         The Security System handle AES/DES/3DES ciphers in CBC mode
-         and SHA1 and MD5 hash algorithms.
-
-         To compile this driver as a module, choose M here: the module
-         will be called sun4i-ss.
-
-config CRYPTO_DEV_SUN4I_SS_PRNG
-       bool "Support for Allwinner Security System PRNG"
-       depends on CRYPTO_DEV_SUN4I_SS
-       select CRYPTO_RNG
-       help
-         Select this option if you want to provide kernel-side support for
-         the Pseudo-Random Number Generator found in the Security System.
-
 config CRYPTO_DEV_ROCKCHIP
        tristate "Rockchip's Cryptographic Engine driver"
        depends on OF && ARCH_ROCKCHIP
index 1623bd8..40229d4 100644 (file)
@@ -40,7 +40,6 @@ obj-$(CONFIG_CRYPTO_DEV_ROCKCHIP) += rockchip/
 obj-$(CONFIG_CRYPTO_DEV_S5P) += s5p-sss.o
 obj-$(CONFIG_CRYPTO_DEV_SAHARA) += sahara.o
 obj-$(CONFIG_ARCH_STM32) += stm32/
-obj-$(CONFIG_CRYPTO_DEV_SUN4I_SS) += sunxi-ss/
 obj-$(CONFIG_CRYPTO_DEV_TALITOS) += talitos.o
 obj-$(CONFIG_CRYPTO_DEV_UX500) += ux500/
 obj-$(CONFIG_CRYPTO_DEV_VIRTIO) += virtio/
index a3e5781..9c44597 100644 (file)
@@ -5,6 +5,33 @@ config CRYPTO_DEV_ALLWINNER
        help
          Say Y here to get to see options for Allwinner hardware crypto devices
 
+config CRYPTO_DEV_SUN4I_SS
+       tristate "Support for Allwinner Security System cryptographic accelerator"
+       depends on ARCH_SUNXI && !64BIT
+       depends on PM
+       depends on CRYPTO_DEV_ALLWINNER
+       select CRYPTO_MD5
+       select CRYPTO_SHA1
+       select CRYPTO_AES
+       select CRYPTO_LIB_DES
+       select CRYPTO_BLKCIPHER
+       help
+         Some Allwinner SoC have a crypto accelerator named
+         Security System. Select this if you want to use it.
+         The Security System handle AES/DES/3DES ciphers in CBC mode
+         and SHA1 and MD5 hash algorithms.
+
+         To compile this driver as a module, choose M here: the module
+         will be called sun4i-ss.
+
+config CRYPTO_DEV_SUN4I_SS_PRNG
+       bool "Support for Allwinner Security System PRNG"
+       depends on CRYPTO_DEV_SUN4I_SS
+       select CRYPTO_RNG
+       help
+         Select this option if you want to provide kernel-side support for
+         the Pseudo-Random Number Generator found in the Security System.
+
 config CRYPTO_DEV_SUN8I_CE
        tristate "Support for Allwinner Crypto Engine cryptographic offloader"
        select CRYPTO_BLKCIPHER
index 11f02db..fdb720c 100644 (file)
@@ -1 +1,2 @@
+obj-$(CONFIG_CRYPTO_DEV_SUN4I_SS) += sun4i-ss/
 obj-$(CONFIG_CRYPTO_DEV_SUN8I_CE) += sun8i-ce/