blob: 1ac60ede6b7e9873f029bcbb9f9216b23a0ec41b [file] [log] [blame]
Alexey Kardashevskiy26b8e6d2019-06-13 15:09:37 +10001# loader.c
2loader_write_rom(const char *name, uint64_t gpa, uint64_t size, bool isrom) "%s: @0x%"PRIx64" size=0x%"PRIx64" ROM=%d"
Damien Hedde70804c82020-01-30 16:02:03 +00003
4# qdev.c
5qdev_reset(void *obj, const char *objtype) "obj=%p(%s)"
6qdev_reset_all(void *obj, const char *objtype) "obj=%p(%s)"
7qdev_reset_tree(void *obj, const char *objtype) "obj=%p(%s)"
8qbus_reset(void *obj, const char *objtype) "obj=%p(%s)"
9qbus_reset_all(void *obj, const char *objtype) "obj=%p(%s)"
10qbus_reset_tree(void *obj, const char *objtype) "obj=%p(%s)"
11qdev_update_parent_bus(void *obj, const char *objtype, void *oldp, const char *oldptype, void *newp, const char *newptype) "obj=%p(%s) old_parent=%p(%s) new_parent=%p(%s)"
Damien Heddebc5a39b2020-01-30 16:02:03 +000012
13# resettable.c
14resettable_reset(void *obj, int cold) "obj=%p cold=%d"
15resettable_reset_assert_begin(void *obj, int cold) "obj=%p cold=%d"
16resettable_reset_assert_end(void *obj) "obj=%p"
17resettable_reset_release_begin(void *obj, int cold) "obj=%p cold=%d"
18resettable_reset_release_end(void *obj) "obj=%p"
Damien Hedde614f7312020-01-30 16:02:04 +000019resettable_change_parent(void *obj, void *o, unsigned oc, void *n, unsigned nc) "obj=%p from=%p(%d) to=%p(%d)"
Damien Heddebc5a39b2020-01-30 16:02:03 +000020resettable_phase_enter_begin(void *obj, const char *objtype, unsigned count, int type) "obj=%p(%s) count=%d type=%d"
21resettable_phase_enter_exec(void *obj, const char *objtype, int type, int has_method) "obj=%p(%s) type=%d method=%d"
22resettable_phase_enter_end(void *obj, const char *objtype, unsigned count) "obj=%p(%s) count=%d"
23resettable_phase_hold_begin(void *obj, const char *objtype, unsigned count, int type) "obj=%p(%s) count=%d type=%d"
24resettable_phase_hold_exec(void *obj, const char *objtype, int has_method) "obj=%p(%s) method=%d"
25resettable_phase_hold_end(void *obj, const char *objtype, unsigned count) "obj=%p(%s) count=%d"
26resettable_phase_exit_begin(void *obj, const char *objtype, unsigned count, int type) "obj=%p(%s) count=%d type=%d"
27resettable_phase_exit_exec(void *obj, const char *objtype, int has_method) "obj=%p(%s) method=%d"
28resettable_phase_exit_end(void *obj, const char *objtype, unsigned count) "obj=%p(%s) count=%d"
29resettable_transitional_function(void *obj, const char *objtype) "obj=%p(%s)"
Peter Maydell4cba0752020-04-17 16:54:28 +010030
31# clock.c
32clock_set_source(const char *clk, const char *src) "'%s', src='%s'"
33clock_disconnect(const char *clk) "'%s'"
34clock_set(const char *clk, uint64_t old, uint64_t new) "'%s', ns=%"PRIu64"->%"PRIu64
35clock_propagate(const char *clk) "'%s'"
36clock_update(const char *clk, const char *src, uint64_t val, int cb) "'%s', src='%s', ns=%"PRIu64", cb=%d"