summaryrefslogtreecommitdiff
path: root/drivers/crypto
diff options
context:
space:
mode:
authorMario Limonciello <mario.limonciello@amd.com>2022-04-01 00:12:12 +0300
committerHerbert Xu <herbert@gondor.apana.org.au>2022-04-08 11:26:43 +0300
commit84ee393b1e82628ac7f183d8a68d8ac2cf0ed876 (patch)
tree0a0e28a025e6d810b9fd483e5e40491ee720ed8c /drivers/crypto
parent50c4decc1b15313afa31f9a99da0904fa9c9b071 (diff)
downloadlinux-84ee393b1e82628ac7f183d8a68d8ac2cf0ed876.tar.xz
crypto: ccp - Allow PSP driver to load without SEV/TEE support
Previously the PSP probe routine would fail if both SEV and TEE were missing. This is possibly the case for some client parts. As capabilities can now be accessed from userspace, it may still be useful to have the PSP driver finish loading so that those capabilities can be read. Signed-off-by: Mario Limonciello <mario.limonciello@amd.com> Acked-by: Tom Lendacky <thomas.lendacky@amd.com> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'drivers/crypto')
-rw-r--r--drivers/crypto/ccp/psp-dev.c16
1 files changed, 0 insertions, 16 deletions
diff --git a/drivers/crypto/ccp/psp-dev.c b/drivers/crypto/ccp/psp-dev.c
index 8cd404121cd5..a3b7b5130be4 100644
--- a/drivers/crypto/ccp/psp-dev.c
+++ b/drivers/crypto/ccp/psp-dev.c
@@ -99,18 +99,6 @@ static int psp_check_tee_support(struct psp_device *psp)
return 0;
}
-static int psp_check_support(struct psp_device *psp)
-{
- int sev_support = psp_check_sev_support(psp);
- int tee_support = psp_check_tee_support(psp);
-
- /* Return error if device neither supports SEV nor TEE */
- if (sev_support && tee_support)
- return -ENODEV;
-
- return 0;
-}
-
static int psp_init(struct psp_device *psp)
{
int ret;
@@ -156,10 +144,6 @@ int psp_dev_init(struct sp_device *sp)
if (ret)
goto e_disable;
- ret = psp_check_support(psp);
- if (ret)
- goto e_disable;
-
/* Disable and clear interrupts until ready */
iowrite32(0, psp->io_regs + psp->vdata->inten_reg);
iowrite32(-1, psp->io_regs + psp->vdata->intsts_reg);