mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-11 15:37:23 +00:00
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>
This commit is contained in:
parent
1c32eee38b
commit
6694c997b2
1 changed files with 4 additions and 2 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue