Commit | Line | Data |
---|---|---|
c39f95dc PMD |
1 | /* |
2 | * TPM stubs | |
3 | * | |
4 | * This work is licensed under the terms of the GNU GPL, version 2 or later. | |
5 | * See the COPYING file in the top-level directory. | |
6 | */ | |
9af23989 | 7 | |
c39f95dc | 8 | #include "qemu/osdep.h" |
9af23989 | 9 | #include "qapi/qapi-commands-tpm.h" |
c39f95dc | 10 | #include "sysemu/tpm.h" |
ac6dd31e | 11 | #include "hw/acpi/tpm.h" |
c39f95dc | 12 | |
d64072c0 | 13 | int tpm_init(void) |
c39f95dc | 14 | { |
d64072c0 | 15 | return 0; |
c39f95dc PMD |
16 | } |
17 | ||
18 | void tpm_cleanup(void) | |
19 | { | |
20 | } | |
21 | ||
22 | TPMInfoList *qmp_query_tpm(Error **errp) | |
23 | { | |
24 | return NULL; | |
25 | } | |
26 | ||
27 | TpmTypeList *qmp_query_tpm_types(Error **errp) | |
28 | { | |
29 | return NULL; | |
30 | } | |
31 | ||
32 | TpmModelList *qmp_query_tpm_models(Error **errp) | |
33 | { | |
34 | return NULL; | |
35 | } | |
ac6dd31e SB |
36 | |
37 | void tpm_build_ppi_acpi(TPMIf *tpm, Aml *dev) | |
38 | { | |
39 | } |