8f0605cc9c
QOM-ified the TPM support with much code borrowed from the rng implementation. All other TPM related code moves will be provided in a subsequent patch. Signed-off-by: Stefan Berger <stefanb@linux.vnet.ibm.com> Message-id: 1364469981.24703.1.camel@d941e-10 Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
26 lines
605 B
C
26 lines
605 B
C
/*
|
|
* Public TPM functions
|
|
*
|
|
* Copyright (C) 2011-2013 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 QEMU_TPM_H
|
|
#define QEMU_TPM_H
|
|
|
|
#include "qemu/option.h"
|
|
|
|
typedef struct TPMState TPMState;
|
|
typedef struct TPMSizedBuffer TPMSizedBuffer;
|
|
typedef void (TPMRecvDataCB)(TPMState *, uint8_t locty);
|
|
|
|
int tpm_config_parse(QemuOptsList *opts_list, const char *optarg);
|
|
int tpm_init(void);
|
|
void tpm_cleanup(void);
|
|
|
|
#endif /* QEMU_TPM_H */
|