Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 8b021796 authored by Greg Kroah-Hartman's avatar Greg Kroah-Hartman
Browse files

staging: ccree: remove ccree staging driver copy



The ccree driver is now in the cryptodev tree, so remove it from
drivers/staging as it's no longer needed here.

Based on a patch from Gilad, but the mailing list didn't like it :(

Signed-off-by: default avatarGilad Ben-Yossef <gilad@benyossef.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 45b7c732
Loading
Loading
Loading
Loading
+0 −2
Original line number Diff line number Diff line
@@ -114,8 +114,6 @@ source "drivers/staging/greybus/Kconfig"

source "drivers/staging/vc04_services/Kconfig"

source "drivers/staging/ccree/Kconfig"

source "drivers/staging/typec/Kconfig"

source "drivers/staging/vboxvideo/Kconfig"
+0 −1
Original line number Diff line number Diff line
@@ -49,6 +49,5 @@ obj-$(CONFIG_MOST) += most/
obj-$(CONFIG_KS7010)		+= ks7010/
obj-$(CONFIG_GREYBUS)		+= greybus/
obj-$(CONFIG_BCM2835_VCHIQ)	+= vc04_services/
obj-$(CONFIG_CRYPTO_DEV_CCREE)	+= ccree/
obj-$(CONFIG_DRM_VBOXVIDEO)	+= vboxvideo/
obj-$(CONFIG_PI433)		+= pi433/

drivers/staging/ccree/Kconfig

deleted100644 → 0
+0 −27
Original line number Diff line number Diff line
# SPDX-License-Identifier: GPL-2.0

config CRYPTO_DEV_CCREE
	tristate "Support for ARM TrustZone CryptoCell C7XX family of Crypto accelerators"
	depends on CRYPTO && CRYPTO_HW && OF && HAS_DMA
	default n
	select CRYPTO_HASH
	select CRYPTO_BLKCIPHER
	select CRYPTO_DES
	select CRYPTO_AEAD
	select CRYPTO_AUTHENC
	select CRYPTO_SHA1
	select CRYPTO_MD5
	select CRYPTO_SHA256
	select CRYPTO_SHA512
	select CRYPTO_HMAC
	select CRYPTO_AES
	select CRYPTO_CBC
	select CRYPTO_ECB
	select CRYPTO_CTR
	select CRYPTO_XTS
	help
	  Say 'Y' to enable a driver for the Arm TrustZone CryptoCell
	  C7xx. Currently only the CryptoCell 712 REE is supported.
	  Choose this if you wish to use hardware acceleration of
	  cryptographic operations on the system REE.
	  If unsure say Y.

drivers/staging/ccree/Makefile

deleted100644 → 0
+0 −7
Original line number Diff line number Diff line
# SPDX-License-Identifier: GPL-2.0

obj-$(CONFIG_CRYPTO_DEV_CCREE) := ccree.o
ccree-y := cc_driver.o cc_buffer_mgr.o cc_request_mgr.o cc_cipher.o cc_hash.o cc_aead.o cc_ivgen.o cc_sram_mgr.o
ccree-$(CONFIG_CRYPTO_FIPS) += cc_fips.o
ccree-$(CONFIG_DEBUG_FS) += cc_debugfs.o
ccree-$(CONFIG_PM) += cc_pm.o

drivers/staging/ccree/TODO

deleted100644 → 0
+0 −10
Original line number Diff line number Diff line


*************************************************************************
*									*
* Arm Trust Zone CryptoCell REE Linux driver upstreaming TODO items	*
*									*
*************************************************************************

1. ???
Loading