mbox series

[v3,0/2] tpm: Add reserved memory event log

Message ID 20230126210810.881119-1-eajames@linux.ibm.com
Headers show
Series tpm: Add reserved memory event log | expand

Message

Eddie James Jan. 26, 2023, 9:08 p.m. UTC
Some platforms may desire to pass the event log up to Linux in the
form of a reserved memory region. In particular, this is desirable
for embedded systems or baseboard management controllers (BMCs)
booting with U-Boot. IBM OpenBMC BMCs will be the first user.
Add support for the reserved memory in the TPM core to find the
region and map it.
Since the memory is mapped, not allocated, change all the event log
allocation functions to managed allocations so that the memory can be
either automatically freed or unmapped.

Changes since v2:
 - Improve commit message for patch 2

Changes since v1:
 - Use managed memory

Eddie James (2):
  tpm: Use managed allocation for bios event log
  tpm: Add reserved memory event log

 drivers/char/tpm/eventlog/acpi.c |  5 ++--
 drivers/char/tpm/eventlog/efi.c  | 13 +++++-----
 drivers/char/tpm/eventlog/of.c   | 41 ++++++++++++++++++++++++++++++--
 drivers/char/tpm/tpm-chip.c      |  1 -
 4 files changed, 49 insertions(+), 11 deletions(-)