efi/tpm: Pass correct address to memblock_reserve

memblock_reserve() expects a physical address, but the address being
passed for the TPM final events log is what was returned from
early_memremap(). This results in something like the following:

[ 0.000000] memblock_reserve: [0xffffffffff2c0000-0xffffffffff2c00e4] efi_tpm_eventlog_init+0x324/0x370

Pass the address from efi like what is done for the TPM events log.

Fixes: c46f3405692d ("tpm: Reserve the TPM final events table")
Cc: Matthew Garrett <mjg59@google.com>
Cc: Jarkko Sakkinen <jarkko@kernel.org>
Cc: Bartosz Szczepanek <bsz@semihalf.com>
Cc: Ard Biesheuvel <ardb@kernel.org>
Signed-off-by: Jerry Snitselaar <jsnitsel@redhat.com>
Acked-by: Jarkko Sakkinen <jarkko@kernel.org>
Signed-off-by: Ard Biesheuvel <ardb@kernel.org>

authored by

Jerry Snitselaar and committed by
Ard Biesheuvel
f4cd18c5 37926f96

+1 -1
+1 -1
drivers/firmware/efi/tpm.c
··· 97 97 goto out_calc; 98 98 } 99 99 100 - memblock_reserve((unsigned long)final_tbl, 100 + memblock_reserve(efi.tpm_final_log, 101 101 tbl_size + sizeof(*final_tbl)); 102 102 efi_tpm_final_log_size = tbl_size; 103 103