Alexey Kardashevskiy | 26b8e6d | 2019-06-13 15:09:37 +1000 | [diff] [blame] | 1 | # loader.c |
| 2 | loader_write_rom(const char *name, uint64_t gpa, uint64_t size, bool isrom) "%s: @0x%"PRIx64" size=0x%"PRIx64" ROM=%d" |
Damien Hedde | 70804c8 | 2020-01-30 16:02:03 +0000 | [diff] [blame] | 3 | |
| 4 | # qdev.c |
| 5 | qdev_reset(void *obj, const char *objtype) "obj=%p(%s)" |
| 6 | qdev_reset_all(void *obj, const char *objtype) "obj=%p(%s)" |
| 7 | qdev_reset_tree(void *obj, const char *objtype) "obj=%p(%s)" |
| 8 | qbus_reset(void *obj, const char *objtype) "obj=%p(%s)" |
| 9 | qbus_reset_all(void *obj, const char *objtype) "obj=%p(%s)" |
| 10 | qbus_reset_tree(void *obj, const char *objtype) "obj=%p(%s)" |
| 11 | qdev_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 Hedde | bc5a39b | 2020-01-30 16:02:03 +0000 | [diff] [blame] | 12 | |
| 13 | # resettable.c |
| 14 | resettable_reset(void *obj, int cold) "obj=%p cold=%d" |
| 15 | resettable_reset_assert_begin(void *obj, int cold) "obj=%p cold=%d" |
| 16 | resettable_reset_assert_end(void *obj) "obj=%p" |
| 17 | resettable_reset_release_begin(void *obj, int cold) "obj=%p cold=%d" |
| 18 | resettable_reset_release_end(void *obj) "obj=%p" |
Damien Hedde | 614f731 | 2020-01-30 16:02:04 +0000 | [diff] [blame] | 19 | resettable_change_parent(void *obj, void *o, unsigned oc, void *n, unsigned nc) "obj=%p from=%p(%d) to=%p(%d)" |
Damien Hedde | bc5a39b | 2020-01-30 16:02:03 +0000 | [diff] [blame] | 20 | resettable_phase_enter_begin(void *obj, const char *objtype, unsigned count, int type) "obj=%p(%s) count=%d type=%d" |
| 21 | resettable_phase_enter_exec(void *obj, const char *objtype, int type, int has_method) "obj=%p(%s) type=%d method=%d" |
| 22 | resettable_phase_enter_end(void *obj, const char *objtype, unsigned count) "obj=%p(%s) count=%d" |
| 23 | resettable_phase_hold_begin(void *obj, const char *objtype, unsigned count, int type) "obj=%p(%s) count=%d type=%d" |
| 24 | resettable_phase_hold_exec(void *obj, const char *objtype, int has_method) "obj=%p(%s) method=%d" |
| 25 | resettable_phase_hold_end(void *obj, const char *objtype, unsigned count) "obj=%p(%s) count=%d" |
| 26 | resettable_phase_exit_begin(void *obj, const char *objtype, unsigned count, int type) "obj=%p(%s) count=%d type=%d" |
| 27 | resettable_phase_exit_exec(void *obj, const char *objtype, int has_method) "obj=%p(%s) method=%d" |
| 28 | resettable_phase_exit_end(void *obj, const char *objtype, unsigned count) "obj=%p(%s) count=%d" |
| 29 | resettable_transitional_function(void *obj, const char *objtype) "obj=%p(%s)" |
Peter Maydell | 4cba075 | 2020-04-17 16:54:28 +0100 | [diff] [blame] | 30 | |
| 31 | # clock.c |
| 32 | clock_set_source(const char *clk, const char *src) "'%s', src='%s'" |
| 33 | clock_disconnect(const char *clk) "'%s'" |
Luc Michel | a6414d3 | 2020-10-10 15:57:46 +0200 | [diff] [blame] | 34 | clock_set(const char *clk, uint64_t old, uint64_t new) "'%s', %"PRIu64"Hz->%"PRIu64"Hz" |
Peter Maydell | 4cba075 | 2020-04-17 16:54:28 +0100 | [diff] [blame] | 35 | clock_propagate(const char *clk) "'%s'" |
Luc Michel | a6414d3 | 2020-10-10 15:57:46 +0200 | [diff] [blame] | 36 | clock_update(const char *clk, const char *src, uint64_t hz, int cb) "'%s', src='%s', val=%"PRIu64"Hz cb=%d" |
Peter Maydell | 99abcbc | 2021-08-12 10:33:40 +0100 | [diff] [blame] | 37 | clock_set_mul_div(const char *clk, uint32_t oldmul, uint32_t mul, uint32_t olddiv, uint32_t div) "'%s', mul: %u -> %u, div: %u -> %u" |