tpm2: fix tpm_write() error reporting

The code misses the cases when a response was received but the command
failed. This patch fixes the problem.

BRANCH=none
BUG=chrome-os-partner:50645
TEST=none

Change-Id: I3d50a4b67e3592bb80d2524a7c7f264fddbd34ae
Signed-off-by: Martin Roth <martinroth@chromium.org>
Original-Commit-Id: 8f4d6185e13beead7156027e1cb40f7944e46569
Original-Change-Id: I914ab6509d3ab2082152652205802201a6637fcc
Original-Signed-off-by: Vadim Bendebury <vbendeb@chromium.org>
Original-Reviewed-on: https://chromium-review.googlesource.com/358096
Original-Reviewed-by: Aaron Durbin <adurbin@chromium.org>
Reviewed-on: https://review.coreboot.org/15637
Tested-by: build bot (Jenkins)
Reviewed-by: Philipp Deppenwiese <zaolin.daisuki@googlemail.com>
This commit is contained in:
Vadim Bendebury 2016-07-05 22:30:16 -07:00 committed by Martin Roth
parent adfbbde7c9
commit 1ec76030ed
1 changed files with 5 additions and 5 deletions

View File

@ -246,12 +246,12 @@ uint32_t tlcl_write(uint32_t index, const void *data, uint32_t length)
response = tpm_process_command(TPM2_NV_Write, &nv_writec); response = tpm_process_command(TPM2_NV_Write, &nv_writec);
/* Need to map tpm error codes into internal values. */ printk(BIOS_INFO, "%s: response is %x\n",
if (!response) __func__, response ? response->hdr.tpm_code : -1);
return TPM_E_WRITE_FAILURE;
printk(BIOS_INFO, "%s:%d return code %x\n", __func__, __LINE__, /* Need to map tpm error codes into internal values. */
response->hdr.tpm_code); if (!response || response->hdr.tpm_code)
return TPM_E_WRITE_FAILURE;
return TPM_SUCCESS; return TPM_SUCCESS;
} }