]> git.proxmox.com Git - qemu.git/blame - tpm/tpm_int.h
Allow qtest to be used together with a virtual CPU
[qemu.git] / tpm / tpm_int.h
CommitLineData
d1a0cf73
SB
1/*
2 * TPM configuration
3 *
4 * Copyright (C) 2011-2013 IBM Corporation
5 *
6 * Authors:
7 * Stefan Berger <stefanb@us.ibm.com>
8 *
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.
11 */
12#ifndef TPM_TPM_INT_H
13#define TPM_TPM_INT_H
14
15#include "exec/memory.h"
16#include "tpm/tpm_tis.h"
17
d1a0cf73 18/* overall state of the TPM interface */
8243b046 19struct TPMState {
d1a0cf73
SB
20 ISADevice busdev;
21 MemoryRegion mmio;
22
23 union {
24 TPMTISEmuState tis;
25 } s;
26
27 uint8_t locty_number;
28 TPMLocality *locty_data;
29
30 char *backend;
31 TPMBackend *be_driver;
8243b046 32};
d1a0cf73
SB
33
34#define TPM(obj) OBJECT_CHECK(TPMState, (obj), TYPE_TPM_TIS)
35
d1a0cf73
SB
36struct TPMDriverOps {
37 enum TpmType type;
38 /* get a descriptive text of the backend to display to the user */
39 const char *(*desc)(void);
40
41 TPMBackend *(*create)(QemuOpts *opts, const char *id);
42 void (*destroy)(TPMBackend *t);
43
44 /* initialize the backend */
45 int (*init)(TPMBackend *t, TPMState *s, TPMRecvDataCB *datacb);
46 /* start up the TPM on the backend */
47 int (*startup_tpm)(TPMBackend *t);
48 /* returns true if nothing will ever answer TPM requests */
49 bool (*had_startup_error)(TPMBackend *t);
50
51 size_t (*realloc_buffer)(TPMSizedBuffer *sb);
52
53 void (*deliver_request)(TPMBackend *t);
54
55 void (*reset)(TPMBackend *t);
56
57 void (*cancel_cmd)(TPMBackend *t);
58
59 bool (*get_tpm_established_flag)(TPMBackend *t);
60};
61
4549a8b7
SB
62struct tpm_req_hdr {
63 uint16_t tag;
64 uint32_t len;
65 uint32_t ordinal;
66} QEMU_PACKED;
67
68struct tpm_resp_hdr {
69 uint16_t tag;
70 uint32_t len;
71 uint32_t errcode;
72} QEMU_PACKED;
73
74#define TPM_TAG_RQU_COMMAND 0xc1
75#define TPM_TAG_RQU_AUTH1_COMMAND 0xc2
76#define TPM_TAG_RQU_AUTH2_COMMAND 0xc3
77
78#define TPM_TAG_RSP_COMMAND 0xc4
79#define TPM_TAG_RSP_AUTH1_COMMAND 0xc5
80#define TPM_TAG_RSP_AUTH2_COMMAND 0xc6
81
82#define TPM_FAIL 9
83
84#define TPM_ORD_GetTicks 0xf1
85
d1a0cf73
SB
86TPMBackend *qemu_find_tpm(const char *id);
87int tpm_register_model(enum TpmModel model);
88int tpm_register_driver(const TPMDriverOps *tdo);
89void tpm_display_backend_drivers(void);
90const TPMDriverOps *tpm_get_backend_driver(const char *type);
4549a8b7
SB
91void tpm_write_fatal_error_response(uint8_t *out, uint32_t out_len);
92
93extern const TPMDriverOps tpm_passthrough_driver;
d1a0cf73
SB
94
95#endif /* TPM_TPM_INT_H */