blob: d6e0e7422785a26f50f5f0cd8f826726987c6d4e [file] [log] [blame]
/* SPDX-License-Identifier: BSD-3-Clause */
#ifndef __COREBOOT_SRC_DRIVERS_SPI_TPM_TPM_H
#define __COREBOOT_SRC_DRIVERS_SPI_TPM_TPM_H
#include <drivers/tpm/cr50.h>
#include <security/tpm/tis.h>
#include <security/tpm/tss_errors.h>
#include <stddef.h>
#include <spi-generic.h>
#define TPM_LOCALITY_0_SPI_BASE 0x00d40000
/*
* A TPM device descriptor, values read from the appropriate device registers
* are cached here.
*/
struct tpm2_info {
uint16_t vendor_id;
uint16_t device_id;
uint16_t revision;
};
/*
* Initialize a TPM2 device: read its id, claim locality of zero, verify that
* this indeed is a TPM2 device. Use the passed in handle to access the right
* SPI port.
*
* Return 0 on success, non-zero on failure.
*/
tpm_result_t tpm2_init(struct spi_slave *spi_if);
/*
* Each command processing consists of sending the command to the TPM, by
* writing it into the FIFO register, then polling the status register until
* the TPM is ready to respond, then reading the response from the FIFO
* register. The size of the response can be gleaned from the 6 byte header.
*
* This function places the response into the tpm2_response buffer and returns
* the size of the response.
*/
size_t tpm2_process_command(const void *tpm2_command, size_t command_size,
void *tpm2_response, size_t max_response);
/* Get information about previously initialized TPM device. */
void tpm2_get_info(struct tpm2_info *info);
tis_sendrecv_fn spi_tis_probe(enum tpm_family *family);
#endif /* ! __COREBOOT_SRC_DRIVERS_SPI_TPM_TPM_H */