4 * Copyright (C) 2011-2013 IBM Corporation
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.
15 #include "exec/memory.h"
18 /* overall state of the TPM interface */
28 TPMLocality
*locty_data
;
31 TPMBackend
*be_driver
;
34 #define TPM(obj) OBJECT_CHECK(TPMState, (obj), TYPE_TPM_TIS)
36 #define TPM_STANDARD_CMDLINE_OPTS \
39 .type = QEMU_OPT_STRING, \
40 .help = "Type of TPM backend", \
55 #define TPM_TAG_RQU_COMMAND 0xc1
56 #define TPM_TAG_RQU_AUTH1_COMMAND 0xc2
57 #define TPM_TAG_RQU_AUTH2_COMMAND 0xc3
59 #define TPM_TAG_RSP_COMMAND 0xc4
60 #define TPM_TAG_RSP_AUTH1_COMMAND 0xc5
61 #define TPM_TAG_RSP_AUTH2_COMMAND 0xc6
65 #define TPM_ORD_GetTicks 0xf1
67 #endif /* TPM_TPM_INT_H */