| 1 | # See docs/devel/tracing.rst for syntax documentation. |
| 2 | |
| 3 | # helper.c |
| 4 | arm_gt_recalc(int timer, uint64_t nexttick) "gt recalc: timer %d next tick 0x%" PRIx64 |
| 5 | arm_gt_recalc_disabled(int timer) "gt recalc: timer %d timer disabled" |
| 6 | arm_gt_cval_write(int timer, uint64_t value) "gt_cval_write: timer %d value 0x%" PRIx64 |
| 7 | arm_gt_tval_write(int timer, uint64_t value) "gt_tval_write: timer %d value 0x%" PRIx64 |
| 8 | arm_gt_ctl_write(int timer, uint64_t value) "gt_ctl_write: timer %d value 0x%" PRIx64 |
| 9 | arm_gt_imask_toggle(int timer) "gt_ctl_write: timer %d IMASK toggle" |
| 10 | arm_gt_cntvoff_write(uint64_t value) "gt_cntvoff_write: value 0x%" PRIx64 |
| 11 | arm_gt_cntpoff_write(uint64_t value) "gt_cntpoff_write: value 0x%" PRIx64 |
| 12 | arm_gt_update_irq(int timer, int irqstate) "gt_update_irq: timer %d irqstate %d" |
| 13 | |
| 14 | # kvm.c |
| 15 | kvm_arm_fixup_msi_route(uint64_t iova, uint64_t gpa) "MSI iova = 0x%"PRIx64" is translated into 0x%"PRIx64 |
| 16 | |
| 17 | # cpu.c |
| 18 | arm_cpu_reset(uint64_t mp_aff) "cpu %" PRIu64 |
| 19 | arm_emulate_firmware_reset(uint64_t mp_aff, unsigned target_el) "cpu %" PRIu64 " @EL%u" |
| 20 | |
| 21 | # arm-powerctl.c |
| 22 | arm_powerctl_set_cpu_on(uint64_t mp_aff, unsigned target_el, const char *mode, uint64_t entry, uint64_t context_id) "cpu %" PRIu64 " (EL %u, %s) @ 0x%" PRIx64 " with R0 = 0x%" PRIx64 |
| 23 | arm_powerctl_set_cpu_on_and_reset(uint64_t mp_aff) "cpu %" PRIu64 |
| 24 | arm_powerctl_set_cpu_off(uint64_t mp_aff) "cpu %" PRIu64 |
| 25 | arm_powerctl_reset_cpu(uint64_t mp_aff) "cpu %" PRIu64 |
| 26 | |
| 27 | # tcg/psci.c and hvf/hvf.c |
| 28 | arm_psci_call(uint64_t x0, uint64_t x1, uint64_t x2, uint64_t x3, uint32_t cpuid) "PSCI Call x0=0x%016"PRIx64" x1=0x%016"PRIx64" x2=0x%016"PRIx64" x3=0x%016"PRIx64" cpuid=0x%x" |
| 29 | |
| 30 | # machine.c |
| 31 | cpu_post_load(uint32_t cpreg_vmstate_array_len, uint32_t cpreg_array_len) "cpreg_vmstate_array_len=%d cpreg_array_len=%d" |
| 32 | tolerate_cpreg_missing_in_incoming_stream(char *name) "%s is missing in incoming stream but this is explicitly tolerated" |
| 33 | tolerate_cpreg_only_in_incoming_stream(char *name) "%s is in incoming stream but not on destination but this is explicitly tolerated" |