diff options
author | Ilias Apalodimas | 2020-11-05 23:58:43 +0200 |
---|---|---|
committer | Heinrich Schuchardt | 2020-11-09 17:28:18 +0100 |
commit | a322f54f50cfb2e8e7a68968c060b2fd3dbd934d (patch) | |
tree | 5a1da7557ca17a3a7c253d1a6f8fd72bb2b6d44e /lib | |
parent | b1aa6fcf274cb655ffb56eadcb9518fbb57e47b5 (diff) |
tpm: Change response length of tpm2_get_capability()
For implementing the EFI_TCG2_PROTOCOL we need the count field returned by
the TPM when reading capabilities via tpm2_get_capability().
Adjust the implementation of the 'tpm2 get_capability' command accordingly.
Suggested-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
Signed-off-by: Ilias Apalodimas <ilias.apalodimas@linaro.org>
Reviewed-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
Diffstat (limited to 'lib')
-rw-r--r-- | lib/tpm-v2.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/tpm-v2.c b/lib/tpm-v2.c index a4c352e3ef7..91759068cf0 100644 --- a/lib/tpm-v2.c +++ b/lib/tpm-v2.c @@ -184,10 +184,10 @@ u32 tpm2_get_capability(struct udevice *dev, u32 capability, u32 property, /* * In the response buffer, the properties are located after the: * tag (u16), response size (u32), response code (u32), - * YES/NO flag (u8), TPM_CAP (u32) and TPMU_CAPABILITIES (u32). + * YES/NO flag (u8), TPM_CAP (u32). */ properties_off = sizeof(u16) + sizeof(u32) + sizeof(u32) + - sizeof(u8) + sizeof(u32) + sizeof(u32); + sizeof(u8) + sizeof(u32); memcpy(buf, &response[properties_off], response_len - properties_off); return 0; |