DM: TPM2: Fix remove hard code GPA base miss control register info
CRB_REGS_CTRL_REQ is offset of control register to TPM mmio base, need use the address to generate TPM2 acpi table Tracked-On: #6126 Signed-off-by: Tao Yuhong <yuhong.tao@intel.com>
This commit is contained in:
parent
a8ef428b4b
commit
a82020839a
|
@ -803,7 +803,7 @@ basl_fwrite_tpm2(FILE *fp, struct vmctx *ctx)
|
|||
|
||||
EFPRINTF(fp, "[0002]\t\tPlatform Class : 0000\n");
|
||||
EFPRINTF(fp, "[0002]\t\tReserved : 0000\n");
|
||||
EFPRINTF(fp, "[0008]\t\tControl Address : %016lX\n", (long)CRB_REGS_CTRL_REQ);
|
||||
EFPRINTF(fp, "[0008]\t\tControl Address : %016lX\n", get_tpm_crb_mmio_addr() + (long)CRB_REGS_CTRL_REQ);
|
||||
EFPRINTF(fp, "[0004]\t\tStart Method : 00000007\n");
|
||||
|
||||
EFPRINTF(fp, "[0012]\t\tMethod Parameters : 00 00 00 00 00 00 00 00 00 00 00 00\n");
|
||||
|
|
Loading…
Reference in New Issue