mirror of
https://github.com/xemu-project/xemu.git
synced 2024-11-23 11:39:53 +00:00
3b97c01e9c
Implement a virtual memory device for the TPM Physical Presence interface. The memory is located at 0xFED45000 and used by ACPI to send messages to the firmware (BIOS) and by the firmware to provide parameters for each one of the supported codes. This interface should be used by all TPM devices on x86 and can be added by calling tpm_ppi_init_io(). Note: bios_linker cannot be used to allocate the PPI memory region, since the reserved memory should stay stable across reboots, and might be needed before the ACPI tables are installed. Signed-off-by: Stefan Berger <stefanb@linux.vnet.ibm.com> Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com> Reviewed-by: Igor Mammedov <imammedo@redhat.com> Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com> Reviewed-by: Michael S. Tsirkin <mst@redhat.com> Tested-by: Stefan Berger <stefanb@linux.ibm.com> Reviewed-by: Michael S. Tsirkin <mst@redhat.com> Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
37 lines
843 B
C
37 lines
843 B
C
/*
|
|
* TPM Physical Presence Interface
|
|
*
|
|
* Copyright (C) 2018 IBM Corporation
|
|
*
|
|
* Authors:
|
|
* Stefan Berger <stefanb@us.ibm.com>
|
|
*
|
|
* This work is licensed under the terms of the GNU GPL, version 2 or later.
|
|
* See the COPYING file in the top-level directory.
|
|
*/
|
|
#ifndef TPM_TPM_PPI_H
|
|
#define TPM_TPM_PPI_H
|
|
|
|
#include "hw/acpi/tpm.h"
|
|
#include "exec/address-spaces.h"
|
|
|
|
typedef struct TPMPPI {
|
|
MemoryRegion ram;
|
|
uint8_t *buf;
|
|
} TPMPPI;
|
|
|
|
/**
|
|
* tpm_ppi_init:
|
|
* @tpmppi: a TPMPPI
|
|
* @m: the address-space / MemoryRegion to use
|
|
* @addr: the address of the PPI region
|
|
* @obj: the owner object
|
|
*
|
|
* Register the TPM PPI memory region at @addr on the given address
|
|
* space for the object @obj.
|
|
**/
|
|
void tpm_ppi_init(TPMPPI *tpmppi, struct MemoryRegion *m,
|
|
hwaddr addr, Object *obj);
|
|
|
|
#endif /* TPM_TPM_PPI_H */
|