Commit 93308baf authored by Hook, Gary's avatar Hook, Gary Committed by Herbert Xu

crypto: ccp - Make CCP debugfs support optional

Add a config option to exclude DebugFS support in the CCP driver.
Signed-off-by: default avatarGary R Hook <gary.hook@amd.com>
Signed-off-by: default avatarHerbert Xu <herbert@gondor.apana.org.au>
parent 91b05a7e
...@@ -46,3 +46,11 @@ config CRYPTO_DEV_SP_PSP ...@@ -46,3 +46,11 @@ config CRYPTO_DEV_SP_PSP
management commands in Secure Encrypted Virtualization (SEV) mode, management commands in Secure Encrypted Virtualization (SEV) mode,
along with software-based Trusted Execution Environment (TEE) to along with software-based Trusted Execution Environment (TEE) to
enable third-party trusted applications. enable third-party trusted applications.
config CRYPTO_DEV_CCP_DEBUGFS
bool "Enable CCP Internals in DebugFS"
default n
depends on CRYPTO_DEV_SP_CCP
help
Expose CCP device information such as operation statistics, feature
information, and descriptor queue contents.
...@@ -5,8 +5,8 @@ ccp-$(CONFIG_CRYPTO_DEV_SP_CCP) += ccp-dev.o \ ...@@ -5,8 +5,8 @@ ccp-$(CONFIG_CRYPTO_DEV_SP_CCP) += ccp-dev.o \
ccp-ops.o \ ccp-ops.o \
ccp-dev-v3.o \ ccp-dev-v3.o \
ccp-dev-v5.o \ ccp-dev-v5.o \
ccp-dmaengine.o \ ccp-dmaengine.o
ccp-debugfs.o ccp-$(CONFIG_CRYPTO_DEV_CCP_DEBUGFS) += ccp-debugfs.o
ccp-$(CONFIG_PCI) += sp-pci.o ccp-$(CONFIG_PCI) += sp-pci.o
ccp-$(CONFIG_CRYPTO_DEV_SP_PSP) += psp-dev.o ccp-$(CONFIG_CRYPTO_DEV_SP_PSP) += psp-dev.o
......
...@@ -970,8 +970,10 @@ static int ccp5_init(struct ccp_device *ccp) ...@@ -970,8 +970,10 @@ static int ccp5_init(struct ccp_device *ccp)
if (ret) if (ret)
goto e_hwrng; goto e_hwrng;
#ifdef CONFIG_CRYPTO_DEV_CCP_DEBUGFS
/* Set up debugfs entries */ /* Set up debugfs entries */
ccp5_debugfs_setup(ccp); ccp5_debugfs_setup(ccp);
#endif
return 0; return 0;
...@@ -1009,11 +1011,13 @@ static void ccp5_destroy(struct ccp_device *ccp) ...@@ -1009,11 +1011,13 @@ static void ccp5_destroy(struct ccp_device *ccp)
/* Remove this device from the list of available units first */ /* Remove this device from the list of available units first */
ccp_del_device(ccp); ccp_del_device(ccp);
#ifdef CONFIG_CRYPTO_DEV_CCP_DEBUGFS
/* We're in the process of tearing down the entire driver; /* We're in the process of tearing down the entire driver;
* when all the devices are gone clean up debugfs * when all the devices are gone clean up debugfs
*/ */
if (ccp_present()) if (ccp_present())
ccp5_debugfs_destroy(); ccp5_debugfs_destroy();
#endif
/* Disable and clear interrupts */ /* Disable and clear interrupts */
ccp5_disable_queue_interrupts(ccp); ccp5_disable_queue_interrupts(ccp);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment