QOM-ify the TPM support
[qemu/ar7.git] / include / tpm / tpm.h
blob2d457c443952dac07f4757d33a9c6bcbca5a1332
1 /*
2 * Public TPM functions
4 * Copyright (C) 2011-2013 IBM Corporation
6 * Authors:
7 * Stefan Berger <stefanb@us.ibm.com>
9 * This work is licensed under the terms of the GNU GPL, version 2 or later.
10 * See the COPYING file in the top-level directory.
12 #ifndef QEMU_TPM_H
13 #define QEMU_TPM_H
15 #include "qemu/option.h"
17 typedef struct TPMState TPMState;
18 typedef struct TPMSizedBuffer TPMSizedBuffer;
19 typedef void (TPMRecvDataCB)(TPMState *, uint8_t locty);
21 int tpm_config_parse(QemuOptsList *opts_list, const char *optarg);
22 int tpm_init(void);
23 void tpm_cleanup(void);
25 #endif /* QEMU_TPM_H */