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"
16 #include "tpm/tpm_tis.h"
19 typedef struct TPMDriverOps TPMDriverOps
;
21 typedef struct TPMPassthruState TPMPassthruState
;
23 typedef struct TPMBackend
{
25 enum TpmModel fe_model
;
28 const TPMDriverOps
*ops
;
31 TPMPassthruState
*tpm_pt
;
34 QLIST_ENTRY(TPMBackend
) list
;
37 /* overall state of the TPM interface */
38 typedef struct TPMState
{
47 TPMLocality
*locty_data
;
50 TPMBackend
*be_driver
;
53 #define TPM(obj) OBJECT_CHECK(TPMState, (obj), TYPE_TPM_TIS)
55 typedef void (TPMRecvDataCB
)(TPMState
*, uint8_t locty
);
59 /* get a descriptive text of the backend to display to the user */
60 const char *(*desc
)(void);
62 TPMBackend
*(*create
)(QemuOpts
*opts
, const char *id
);
63 void (*destroy
)(TPMBackend
*t
);
65 /* initialize the backend */
66 int (*init
)(TPMBackend
*t
, TPMState
*s
, TPMRecvDataCB
*datacb
);
67 /* start up the TPM on the backend */
68 int (*startup_tpm
)(TPMBackend
*t
);
69 /* returns true if nothing will ever answer TPM requests */
70 bool (*had_startup_error
)(TPMBackend
*t
);
72 size_t (*realloc_buffer
)(TPMSizedBuffer
*sb
);
74 void (*deliver_request
)(TPMBackend
*t
);
76 void (*reset
)(TPMBackend
*t
);
78 void (*cancel_cmd
)(TPMBackend
*t
);
80 bool (*get_tpm_established_flag
)(TPMBackend
*t
);
95 #define TPM_TAG_RQU_COMMAND 0xc1
96 #define TPM_TAG_RQU_AUTH1_COMMAND 0xc2
97 #define TPM_TAG_RQU_AUTH2_COMMAND 0xc3
99 #define TPM_TAG_RSP_COMMAND 0xc4
100 #define TPM_TAG_RSP_AUTH1_COMMAND 0xc5
101 #define TPM_TAG_RSP_AUTH2_COMMAND 0xc6
105 #define TPM_ORD_GetTicks 0xf1
107 TPMBackend
*qemu_find_tpm(const char *id
);
108 int tpm_register_model(enum TpmModel model
);
109 int tpm_register_driver(const TPMDriverOps
*tdo
);
110 void tpm_display_backend_drivers(void);
111 const TPMDriverOps
*tpm_get_backend_driver(const char *type
);
112 void tpm_write_fatal_error_response(uint8_t *out
, uint32_t out_len
);
114 extern const TPMDriverOps tpm_passthrough_driver
;
116 #endif /* TPM_TPM_INT_H */