]>
Commit | Line | Data |
---|---|---|
d1a0cf73 SB |
1 | /* |
2 | * Public TPM functions | |
3 | * | |
4 | * Copyright (C) 2011-2013 IBM Corporation | |
5 | * | |
6 | * Authors: | |
7 | * Stefan Berger <[email protected]> | |
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 QEMU_TPM_H | |
13 | #define QEMU_TPM_H | |
14 | ||
9af23989 | 15 | #include "qapi/qapi-types-tpm.h" |
6b287efe | 16 | #include "qom/object.h" |
d1a0cf73 SB |
17 | |
18 | int tpm_config_parse(QemuOptsList *opts_list, const char *optarg); | |
d10e05f1 | 19 | void tpm_init(void); |
d1a0cf73 SB |
20 | void tpm_cleanup(void); |
21 | ||
3dfd5a2a | 22 | typedef enum TPMVersion { |
116694c3 SB |
23 | TPM_VERSION_UNSPEC = 0, |
24 | TPM_VERSION_1_2 = 1, | |
25 | TPM_VERSION_2_0 = 2, | |
26 | } TPMVersion; | |
27 | ||
67af320c MAL |
28 | #define TYPE_TPM_IF "tpm-if" |
29 | #define TPM_IF_CLASS(klass) \ | |
30 | OBJECT_CLASS_CHECK(TPMIfClass, (klass), TYPE_TPM_IF) | |
31 | #define TPM_IF_GET_CLASS(obj) \ | |
32 | OBJECT_GET_CLASS(TPMIfClass, (obj), TYPE_TPM_IF) | |
33 | #define TPM_IF(obj) \ | |
34 | INTERFACE_CHECK(TPMIf, (obj), TYPE_TPM_IF) | |
35 | ||
aa1b35b9 | 36 | typedef struct TPMIf TPMIf; |
67af320c MAL |
37 | |
38 | typedef struct TPMIfClass { | |
39 | InterfaceClass parent_class; | |
40 | ||
191adc94 | 41 | enum TpmModel model; |
6a8a2354 | 42 | void (*request_completed)(TPMIf *obj, int ret); |
9af7a721 | 43 | enum TPMVersion (*get_version)(TPMIf *obj); |
67af320c MAL |
44 | } TPMIfClass; |
45 | ||
711b20b4 | 46 | #define TYPE_TPM_TIS "tpm-tis" |
4ab6cb4c | 47 | #define TYPE_TPM_CRB "tpm-crb" |
711b20b4 | 48 | |
ff5ce21e MAL |
49 | #define TPM_IS_TIS(chr) \ |
50 | object_dynamic_cast(OBJECT(chr), TYPE_TPM_TIS) | |
4ab6cb4c MAL |
51 | #define TPM_IS_CRB(chr) \ |
52 | object_dynamic_cast(OBJECT(chr), TYPE_TPM_CRB) | |
ff5ce21e | 53 | |
3dfd5a2a MAL |
54 | /* returns NULL unless there is exactly one TPM device */ |
55 | static inline TPMIf *tpm_find(void) | |
711b20b4 | 56 | { |
3dfd5a2a MAL |
57 | Object *obj = object_resolve_path_type("", TYPE_TPM_IF, NULL); |
58 | ||
59 | return TPM_IF(obj); | |
60 | } | |
5cb18b3d | 61 | |
3dfd5a2a MAL |
62 | static inline TPMVersion tpm_get_version(TPMIf *ti) |
63 | { | |
64 | if (!ti) { | |
65 | return TPM_VERSION_UNSPEC; | |
5cb18b3d | 66 | } |
3dfd5a2a | 67 | |
9af7a721 | 68 | return TPM_IF_GET_CLASS(ti)->get_version(ti); |
711b20b4 SB |
69 | } |
70 | ||
d1a0cf73 | 71 | #endif /* QEMU_TPM_H */ |