tpm: Add the SysBus TPM TIS device
[qemu/ar7.git] / include / sysemu / tpm.h
blobf37851b1aabe9cfc069b3286596b97277f29e6b9
1 /*
2 * Public TPM functions
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 QEMU_TPM_H
13 #define QEMU_TPM_H
15 #include "qapi/qapi-types-tpm.h"
16 #include "qom/object.h"
18 int tpm_config_parse(QemuOptsList *opts_list, const char *optarg);
19 void tpm_init(void);
20 void tpm_cleanup(void);
22 typedef enum TPMVersion {
23 TPM_VERSION_UNSPEC = 0,
24 TPM_VERSION_1_2 = 1,
25 TPM_VERSION_2_0 = 2,
26 } TPMVersion;
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)
36 typedef struct TPMIf TPMIf;
38 typedef struct TPMIfClass {
39 InterfaceClass parent_class;
41 enum TpmModel model;
42 void (*request_completed)(TPMIf *obj, int ret);
43 enum TPMVersion (*get_version)(TPMIf *obj);
44 } TPMIfClass;
46 #define TYPE_TPM_TIS_ISA "tpm-tis"
47 #define TYPE_TPM_TIS_SYSBUS "tpm-tis-device"
48 #define TYPE_TPM_CRB "tpm-crb"
49 #define TYPE_TPM_SPAPR "tpm-spapr"
51 #define TPM_IS_TIS_ISA(chr) \
52 object_dynamic_cast(OBJECT(chr), TYPE_TPM_TIS_ISA)
53 #define TPM_IS_CRB(chr) \
54 object_dynamic_cast(OBJECT(chr), TYPE_TPM_CRB)
55 #define TPM_IS_SPAPR(chr) \
56 object_dynamic_cast(OBJECT(chr), TYPE_TPM_SPAPR)
58 /* returns NULL unless there is exactly one TPM device */
59 static inline TPMIf *tpm_find(void)
61 Object *obj = object_resolve_path_type("", TYPE_TPM_IF, NULL);
63 return TPM_IF(obj);
66 static inline TPMVersion tpm_get_version(TPMIf *ti)
68 if (!ti) {
69 return TPM_VERSION_UNSPEC;
72 return TPM_IF_GET_CLASS(ti)->get_version(ti);
75 #endif /* QEMU_TPM_H */