2 * tpm_tis.h - QEMU's TPM TIS interface emulator
4 * Copyright (C) 2006, 2010-2013 IBM Corporation
7 * Stefan Berger <stefanb@us.ibm.com>
8 * David Safford <safford@us.ibm.com>
10 * This work is licensed under the terms of the GNU GPL, version 2 or later.
11 * See the COPYING file in the top-level directory.
13 * Implementation of the TIS interface according to specs found at
14 * http://www.trustedcomputinggroup.org
21 #include "qemu-common.h"
23 #define TPM_TIS_ADDR_BASE 0xFED40000
25 #define TPM_TIS_NUM_LOCALITIES 5 /* per spec */
26 #define TPM_TIS_LOCALITY_SHIFT 12
27 #define TPM_TIS_NO_LOCALITY 0xff
29 #define TPM_TIS_IS_VALID_LOCTY(x) ((x) < TPM_TIS_NUM_LOCALITIES)
33 #define TPM_TIS_BUFFER_MAX 4096
35 #define TYPE_TPM_TIS "tpm-tis"
38 typedef struct TPMSizedBuffer
{
44 TPM_TIS_STATE_IDLE
= 0,
46 TPM_TIS_STATE_COMPLETION
,
47 TPM_TIS_STATE_EXECUTION
,
48 TPM_TIS_STATE_RECEPTION
,
51 /* locality data -- all fields are persisted */
52 typedef struct TPMLocality
{
61 TPMSizedBuffer w_buffer
;
62 TPMSizedBuffer r_buffer
;
65 typedef struct TPMTISEmuState
{
68 uint8_t buf
[TPM_TIS_BUFFER_MAX
];
71 uint8_t aborting_locty
;
74 TPMLocality loc
[TPM_TIS_NUM_LOCALITIES
];
80 #endif /* TPM_TPM_TIS_H */