2021-05-17 18:16:58 +03:00
|
|
|
# See docs/devel/tracing.rst for syntax documentation.
|
2016-07-14 08:56:25 +03:00
|
|
|
|
2019-03-14 21:09:26 +03:00
|
|
|
# sev.c
|
2018-03-08 15:48:44 +03:00
|
|
|
kvm_sev_init(void) ""
|
2020-11-03 13:07:45 +03:00
|
|
|
kvm_memcrypt_register_region(void *addr, size_t len) "addr %p len 0x%zx"
|
|
|
|
kvm_memcrypt_unregister_region(void *addr, size_t len) "addr %p len 0x%zx"
|
2018-03-08 15:48:48 +03:00
|
|
|
kvm_sev_change_state(const char *old, const char *new) "%s -> %s"
|
|
|
|
kvm_sev_launch_start(int policy, void *session, void *pdh) "policy 0x%x session %p pdh %p"
|
2020-11-03 13:07:45 +03:00
|
|
|
kvm_sev_launch_update_data(void *addr, uint64_t len) "addr %p len 0x%" PRIx64
|
2018-03-08 15:48:51 +03:00
|
|
|
kvm_sev_launch_measurement(const char *value) "data %s"
|
2018-03-08 15:48:52 +03:00
|
|
|
kvm_sev_launch_finish(void) ""
|
2020-10-27 20:03:03 +03:00
|
|
|
kvm_sev_launch_secret(uint64_t hpa, uint64_t hva, uint64_t secret, int len) "hpa 0x%" PRIx64 " hva 0x%" PRIx64 " data 0x%" PRIx64 " len %d"
|
2021-04-29 20:07:28 +03:00
|
|
|
kvm_sev_attestation_report(const char *mnonce, const char *data) "mnonce %s data %s"
|