Philippe Mathieu-Daudé | c39f95d | 2017-10-24 09:20:43 -0300 | [diff] [blame] | 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 | */ |
Markus Armbruster | 9af2398 | 2018-02-11 10:36:01 +0100 | [diff] [blame] | 7 | |
Philippe Mathieu-Daudé | c39f95d | 2017-10-24 09:20:43 -0300 | [diff] [blame] | 8 | #include "qemu/osdep.h" |
Markus Armbruster | 9af2398 | 2018-02-11 10:36:01 +0100 | [diff] [blame] | 9 | #include "qapi/qapi-commands-tpm.h" |
Philippe Mathieu-Daudé | c39f95d | 2017-10-24 09:20:43 -0300 | [diff] [blame] | 10 | #include "sysemu/tpm.h" |
Stefan Berger | ac6dd31 | 2019-01-15 02:27:52 +0400 | [diff] [blame] | 11 | #include "hw/acpi/tpm.h" |
Philippe Mathieu-Daudé | c39f95d | 2017-10-24 09:20:43 -0300 | [diff] [blame] | 12 | |
Markus Armbruster | d10e05f | 2018-10-17 10:26:53 +0200 | [diff] [blame] | 13 | void tpm_init(void) |
Philippe Mathieu-Daudé | c39f95d | 2017-10-24 09:20:43 -0300 | [diff] [blame] | 14 | { |
Philippe Mathieu-Daudé | c39f95d | 2017-10-24 09:20:43 -0300 | [diff] [blame] | 15 | } |
| 16 | |
| 17 | void tpm_cleanup(void) |
| 18 | { |
| 19 | } |
| 20 | |
| 21 | TPMInfoList *qmp_query_tpm(Error **errp) |
| 22 | { |
| 23 | return NULL; |
| 24 | } |
| 25 | |
| 26 | TpmTypeList *qmp_query_tpm_types(Error **errp) |
| 27 | { |
| 28 | return NULL; |
| 29 | } |
| 30 | |
| 31 | TpmModelList *qmp_query_tpm_models(Error **errp) |
| 32 | { |
| 33 | return NULL; |
| 34 | } |
Stefan Berger | ac6dd31 | 2019-01-15 02:27:52 +0400 | [diff] [blame] | 35 | |
| 36 | void tpm_build_ppi_acpi(TPMIf *tpm, Aml *dev) |
| 37 | { |
| 38 | } |