summaryrefslogtreecommitdiff
path: root/drivers/tpm/tpm2_tis_sandbox.c
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2022-08-30 21:05:35 -0600
committerIlias Apalodimas <ilias.apalodimas@linaro.org>2022-09-03 16:58:56 +0300
commit6694c997b210656fc3e6ce63ba780bc9bf97c077 (patch)
tree69ce34230fbcb2226bd70d7991a8a22b2600e5cf /drivers/tpm/tpm2_tis_sandbox.c
parent1c32eee38b3770cf68188a52b4a539a9e0758b84 (diff)
tpm: sandbox: Allow init of TPM in a different phase
At present the emulator assumes that the TPM is inited in the same phase where it is used. But in fact SPL may init the TPM, so we don't want to complain when U-Boot proper later uses it. Remove this check. It might be best to save this information into the device state for the TPM, so that we can make sure the TPM was inited at some point. For now, this seems good enough. Signed-off-by: Simon Glass <sjg@chromium.org> Reviewed-by: Ilias Apalodimas <ilias.apalodimas@linaro.org> Signed-off-by: Ilias Apalodimas <ilias.apalodimas@linaro.org>
Diffstat (limited to 'drivers/tpm/tpm2_tis_sandbox.c')
-rw-r--r--drivers/tpm/tpm2_tis_sandbox.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/drivers/tpm/tpm2_tis_sandbox.c b/drivers/tpm/tpm2_tis_sandbox.c
index ac6eb14353..c26f5d35ab 100644
--- a/drivers/tpm/tpm2_tis_sandbox.c
+++ b/drivers/tpm/tpm2_tis_sandbox.c
@@ -366,8 +366,10 @@ static int sandbox_tpm2_check_readyness(struct udevice *dev, int command)
break;
default:
- if (!tpm->tests_done)
- return TPM2_RC_NEEDS_TEST;
+ /* Skip this, since the startup may have happened in SPL
+ * if (!tpm->tests_done)
+ * return TPM2_RC_NEEDS_TEST;
+ */
break;
}