strip some whitespace
[qemu/ar7.git] / tpm / tpm_int.h
blob340bfd52f1498e01f5f2e9eee1a1e8df9a8250f6
1 /*
2 * TPM configuration
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 TPM_TPM_INT_H
13 #define TPM_TPM_INT_H
15 #include "exec/memory.h"
16 #include "tpm/tpm_tis.h"
18 /* overall state of the TPM interface */
19 struct TPMState {
20 ISADevice busdev;
21 MemoryRegion mmio;
23 union {
24 TPMTISEmuState tis;
25 } s;
27 uint8_t locty_number;
28 TPMLocality *locty_data;
30 char *backend;
31 TPMBackend *be_driver;
34 #define TPM(obj) OBJECT_CHECK(TPMState, (obj), TYPE_TPM_TIS)
36 struct TPMDriverOps {
37 enum TpmType type;
38 /* get a descriptive text of the backend to display to the user */
39 const char *(*desc)(void);
41 TPMBackend *(*create)(QemuOpts *opts, const char *id);
42 void (*destroy)(TPMBackend *t);
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);
51 size_t (*realloc_buffer)(TPMSizedBuffer *sb);
53 void (*deliver_request)(TPMBackend *t);
55 void (*reset)(TPMBackend *t);
57 void (*cancel_cmd)(TPMBackend *t);
59 bool (*get_tpm_established_flag)(TPMBackend *t);
62 struct tpm_req_hdr {
63 uint16_t tag;
64 uint32_t len;
65 uint32_t ordinal;
66 } QEMU_PACKED;
68 struct tpm_resp_hdr {
69 uint16_t tag;
70 uint32_t len;
71 uint32_t errcode;
72 } QEMU_PACKED;
74 #define TPM_TAG_RQU_COMMAND 0xc1
75 #define TPM_TAG_RQU_AUTH1_COMMAND 0xc2
76 #define TPM_TAG_RQU_AUTH2_COMMAND 0xc3
78 #define TPM_TAG_RSP_COMMAND 0xc4
79 #define TPM_TAG_RSP_AUTH1_COMMAND 0xc5
80 #define TPM_TAG_RSP_AUTH2_COMMAND 0xc6
82 #define TPM_FAIL 9
84 #define TPM_ORD_GetTicks 0xf1
86 TPMBackend *qemu_find_tpm(const char *id);
87 int tpm_register_model(enum TpmModel model);
88 int tpm_register_driver(const TPMDriverOps *tdo);
89 void tpm_display_backend_drivers(void);
90 const TPMDriverOps *tpm_get_backend_driver(const char *type);
91 void tpm_write_fatal_error_response(uint8_t *out, uint32_t out_len);
93 extern const TPMDriverOps tpm_passthrough_driver;
95 #endif /* TPM_TPM_INT_H */