Statistics
| Branch: | Revision:

root / trace-events @ 437fe106

History | View | Annotate | Download (72.7 kB)

1 94a420b1 Stefan Hajnoczi
# Trace events for debugging and performance instrumentation
2 94a420b1 Stefan Hajnoczi
#
3 94a420b1 Stefan Hajnoczi
# This file is processed by the tracetool script during the build.
4 94a420b1 Stefan Hajnoczi
#
5 94a420b1 Stefan Hajnoczi
# To add a new trace event:
6 94a420b1 Stefan Hajnoczi
#
7 94a420b1 Stefan Hajnoczi
# 1. Choose a name for the trace event.  Declare its arguments and format
8 94a420b1 Stefan Hajnoczi
#    string.
9 94a420b1 Stefan Hajnoczi
#
10 94a420b1 Stefan Hajnoczi
# 2. Call the trace event from code using trace_##name, e.g. multiwrite_cb() ->
11 94a420b1 Stefan Hajnoczi
#    trace_multiwrite_cb().  The source file must #include "trace.h".
12 94a420b1 Stefan Hajnoczi
#
13 94a420b1 Stefan Hajnoczi
# Format of a trace event:
14 94a420b1 Stefan Hajnoczi
#
15 1e2cf2bc Stefan Hajnoczi
# [disable] <name>(<type1> <arg1>[, <type2> <arg2>] ...) "<format-string>"
16 94a420b1 Stefan Hajnoczi
#
17 a74cd8cc Frediano Ziglio
# Example: g_malloc(size_t size) "size %zu"
18 94a420b1 Stefan Hajnoczi
#
19 1e2cf2bc Stefan Hajnoczi
# The "disable" keyword will build without the trace event.
20 1e2cf2bc Stefan Hajnoczi
#
21 94a420b1 Stefan Hajnoczi
# The <name> must be a valid as a C function name.
22 94a420b1 Stefan Hajnoczi
#
23 94a420b1 Stefan Hajnoczi
# Types should be standard C types.  Use void * for pointers because the trace
24 94a420b1 Stefan Hajnoczi
# system may not have the necessary headers included.
25 94a420b1 Stefan Hajnoczi
#
26 94a420b1 Stefan Hajnoczi
# The <format-string> should be a sprintf()-compatible format string.
27 cd245a19 Stefan Hajnoczi
28 cd245a19 Stefan Hajnoczi
# qemu-malloc.c
29 a74cd8cc Frediano Ziglio
g_malloc(size_t size, void *ptr) "size %zu ptr %p"
30 a74cd8cc Frediano Ziglio
g_realloc(void *ptr, size_t size, void *newptr) "ptr %p size %zu newptr %p"
31 a74cd8cc Frediano Ziglio
g_free(void *ptr) "ptr %p"
32 cd245a19 Stefan Hajnoczi
33 cd245a19 Stefan Hajnoczi
# osdep.c
34 47f08d7a Lluís
qemu_memalign(size_t alignment, size_t size, void *ptr) "alignment %zu size %zu ptr %p"
35 47f08d7a Lluís
qemu_vmalloc(size_t size, void *ptr) "size %zu ptr %p"
36 47f08d7a Lluís
qemu_vfree(void *ptr) "ptr %p"
37 6d519a5f Stefan Hajnoczi
38 64979a4d Stefan Hajnoczi
# hw/virtio.c
39 47f08d7a Lluís
virtqueue_fill(void *vq, const void *elem, unsigned int len, unsigned int idx) "vq %p elem %p len %u idx %u"
40 47f08d7a Lluís
virtqueue_flush(void *vq, unsigned int count) "vq %p count %u"
41 47f08d7a Lluís
virtqueue_pop(void *vq, void *elem, unsigned int in_num, unsigned int out_num) "vq %p elem %p in_num %u out_num %u"
42 47f08d7a Lluís
virtio_queue_notify(void *vdev, int n, void *vq) "vdev %p n %d vq %p"
43 47f08d7a Lluís
virtio_irq(void *vq) "vq %p"
44 47f08d7a Lluís
virtio_notify(void *vdev, void *vq) "vdev %p vq %p"
45 4e1837f8 Stefan Hajnoczi
virtio_set_status(void *vdev, uint8_t val) "vdev %p val %u"
46 64979a4d Stefan Hajnoczi
47 49e3fdd7 Amit Shah
# hw/virtio-serial-bus.c
48 47f08d7a Lluís
virtio_serial_send_control_event(unsigned int port, uint16_t event, uint16_t value) "port %u, event %u, value %u"
49 47f08d7a Lluís
virtio_serial_throttle_port(unsigned int port, bool throttle) "port %u, throttle %d"
50 47f08d7a Lluís
virtio_serial_handle_control_message(uint16_t event, uint16_t value) "event %u, value %u"
51 47f08d7a Lluís
virtio_serial_handle_control_message_port(unsigned int port) "port %u"
52 49e3fdd7 Amit Shah
53 d02e4fa4 Amit Shah
# hw/virtio-console.c
54 47f08d7a Lluís
virtio_console_flush_buf(unsigned int port, size_t len, ssize_t ret) "port %u, in_len %zu, out_len %zd"
55 47f08d7a Lluís
virtio_console_chr_read(unsigned int port, int size) "port %u, size %d"
56 47f08d7a Lluís
virtio_console_chr_event(unsigned int port, int event) "port %u, event %d"
57 d02e4fa4 Amit Shah
58 6d519a5f Stefan Hajnoczi
# block.c
59 28dcee10 Stefan Hajnoczi
bdrv_open_common(void *bs, const char *filename, int flags, const char *format_name) "bs %p filename \"%s\" flags %#x format_name \"%s\""
60 47f08d7a Lluís
multiwrite_cb(void *mcb, int ret) "mcb %p ret %d"
61 47f08d7a Lluís
bdrv_aio_multiwrite(void *mcb, int num_callbacks, int num_reqs) "mcb %p num_callbacks %d num_reqs %d"
62 4265d620 Paolo Bonzini
bdrv_aio_discard(void *bs, int64_t sector_num, int nb_sectors, void *opaque) "bs %p sector_num %"PRId64" nb_sectors %d opaque %p"
63 47f08d7a Lluís
bdrv_aio_flush(void *bs, void *opaque) "bs %p opaque %p"
64 47f08d7a Lluís
bdrv_aio_readv(void *bs, int64_t sector_num, int nb_sectors, void *opaque) "bs %p sector_num %"PRId64" nb_sectors %d opaque %p"
65 47f08d7a Lluís
bdrv_aio_writev(void *bs, int64_t sector_num, int nb_sectors, void *opaque) "bs %p sector_num %"PRId64" nb_sectors %d opaque %p"
66 025e849a Markus Armbruster
bdrv_lock_medium(void *bs, bool locked) "bs %p locked %d"
67 47f08d7a Lluís
bdrv_co_readv(void *bs, int64_t sector_num, int nb_sector) "bs %p sector_num %"PRId64" nb_sectors %d"
68 470c0504 Stefan Hajnoczi
bdrv_co_copy_on_readv(void *bs, int64_t sector_num, int nb_sector) "bs %p sector_num %"PRId64" nb_sectors %d"
69 47f08d7a Lluís
bdrv_co_writev(void *bs, int64_t sector_num, int nb_sector) "bs %p sector_num %"PRId64" nb_sectors %d"
70 f08f2dda Stefan Hajnoczi
bdrv_co_write_zeroes(void *bs, int64_t sector_num, int nb_sector) "bs %p sector_num %"PRId64" nb_sectors %d"
71 59370aaa Stefan Hajnoczi
bdrv_co_io_em(void *bs, int64_t sector_num, int nb_sectors, int is_write, void *acb) "bs %p sector_num %"PRId64" nb_sectors %d is_write %d acb %p"
72 470c0504 Stefan Hajnoczi
bdrv_co_do_copy_on_readv(void *bs, int64_t sector_num, int nb_sectors, int64_t cluster_sector_num, int cluster_nb_sectors) "bs %p sector_num %"PRId64" nb_sectors %d cluster_sector_num %"PRId64" cluster_nb_sectors %d"
73 6d519a5f Stefan Hajnoczi
74 4f1043b4 Stefan Hajnoczi
# block/stream.c
75 4f1043b4 Stefan Hajnoczi
stream_one_iteration(void *s, int64_t sector_num, int nb_sectors, int is_allocated) "s %p sector_num %"PRId64" nb_sectors %d is_allocated %d"
76 4f1043b4 Stefan Hajnoczi
stream_start(void *bs, void *base, void *s, void *co, void *opaque) "bs %p base %p s %p co %p opaque %p"
77 747ff602 Jeff Cody
commit_one_iteration(void *s, int64_t sector_num, int nb_sectors, int is_allocated) "s %p sector_num %"PRId64" nb_sectors %d is_allocated %d"
78 747ff602 Jeff Cody
commit_start(void *bs, void *base, void *top, void *s, void *co, void *opaque) "bs %p base %p top %p s %p co %p opaque %p"
79 4f1043b4 Stefan Hajnoczi
80 893f7eba Paolo Bonzini
# block/mirror.c
81 893f7eba Paolo Bonzini
mirror_start(void *bs, void *s, void *co, void *opaque) "bs %p s %p co %p opaque %p"
82 8f0720ec Paolo Bonzini
mirror_restart_iter(void *s, int64_t cnt) "s %p dirty count %"PRId64
83 893f7eba Paolo Bonzini
mirror_before_flush(void *s) "s %p"
84 893f7eba Paolo Bonzini
mirror_before_drain(void *s, int64_t cnt) "s %p dirty count %"PRId64
85 893f7eba Paolo Bonzini
mirror_before_sleep(void *s, int64_t cnt, int synced) "s %p dirty count %"PRId64" synced %d"
86 893f7eba Paolo Bonzini
mirror_one_iteration(void *s, int64_t sector_num, int nb_sectors) "s %p sector_num %"PRId64" nb_sectors %d"
87 b812f671 Paolo Bonzini
mirror_cow(void *s, int64_t sector_num) "s %p sector_num %"PRId64
88 bd48bde8 Paolo Bonzini
mirror_iteration_done(void *s, int64_t sector_num, int nb_sectors, int ret) "s %p sector_num %"PRId64" nb_sectors %d ret %d"
89 402a4741 Paolo Bonzini
mirror_yield(void *s, int64_t cnt, int buf_free_count, int in_flight) "s %p dirty count %"PRId64" free buffers %d in_flight %d"
90 402a4741 Paolo Bonzini
mirror_yield_in_flight(void *s, int64_t sector_num, int in_flight) "s %p sector_num %"PRId64" in_flight %d"
91 402a4741 Paolo Bonzini
mirror_yield_buf_busy(void *s, int nb_chunks, int in_flight) "s %p requested chunks %d in_flight %d"
92 884fea4e Paolo Bonzini
mirror_break_buf_busy(void *s, int nb_chunks, int in_flight) "s %p requested chunks %d in_flight %d"
93 4f1043b4 Stefan Hajnoczi
94 12bd451f Stefan Hajnoczi
# blockdev.c
95 370521a1 Stefan Hajnoczi
qmp_block_job_cancel(void *job) "job %p"
96 6e37fb81 Paolo Bonzini
qmp_block_job_pause(void *job) "job %p"
97 6e37fb81 Paolo Bonzini
qmp_block_job_resume(void *job) "job %p"
98 aeae883b Paolo Bonzini
qmp_block_job_complete(void *job) "job %p"
99 9abf2dba Jeff Cody
block_job_cb(void *bs, void *job, int ret) "bs %p job %p ret %d"
100 12bd451f Stefan Hajnoczi
qmp_block_stream(void *bs, void *job) "bs %p job %p"
101 12bd451f Stefan Hajnoczi
102 6d519a5f Stefan Hajnoczi
# hw/virtio-blk.c
103 47f08d7a Lluís
virtio_blk_req_complete(void *req, int status) "req %p status %d"
104 47f08d7a Lluís
virtio_blk_rw_complete(void *req, int ret) "req %p ret %d"
105 47f08d7a Lluís
virtio_blk_handle_write(void *req, uint64_t sector, size_t nsectors) "req %p sector %"PRIu64" nsectors %zu"
106 81b6b9fa Stefan Hajnoczi
virtio_blk_handle_read(void *req, uint64_t sector, size_t nsectors) "req %p sector %"PRIu64" nsectors %zu"
107 6d519a5f Stefan Hajnoczi
108 e72f66a0 Stefan Hajnoczi
# hw/dataplane/virtio-blk.c
109 e72f66a0 Stefan Hajnoczi
virtio_blk_data_plane_start(void *s) "dataplane %p"
110 e72f66a0 Stefan Hajnoczi
virtio_blk_data_plane_stop(void *s) "dataplane %p"
111 e72f66a0 Stefan Hajnoczi
virtio_blk_data_plane_process_request(void *s, unsigned int out_num, unsigned int in_num, unsigned int head) "dataplane %p out_num %u in_num %u head %u"
112 e72f66a0 Stefan Hajnoczi
virtio_blk_data_plane_complete_request(void *s, unsigned int head, int ret) "dataplane %p head %u ret %d"
113 e72f66a0 Stefan Hajnoczi
114 88807f89 Stefan Hajnoczi
# hw/dataplane/vring.c
115 88807f89 Stefan Hajnoczi
vring_setup(uint64_t physical, void *desc, void *avail, void *used) "vring physical %#"PRIx64" desc %p avail %p used %p"
116 88807f89 Stefan Hajnoczi
117 d354c7ec Paolo Bonzini
# thread-pool.c
118 b811203c Stefan Hajnoczi
thread_pool_submit(void *pool, void *req, void *opaque) "pool %p req %p opaque %p"
119 b811203c Stefan Hajnoczi
thread_pool_complete(void *pool, void *req, void *opaque, int ret) "pool %p req %p opaque %p ret %d"
120 d354c7ec Paolo Bonzini
thread_pool_cancel(void *req, void *opaque) "req %p opaque %p"
121 d354c7ec Paolo Bonzini
122 6d519a5f Stefan Hajnoczi
# posix-aio-compat.c
123 47f08d7a Lluís
paio_submit(void *acb, void *opaque, int64_t sector_num, int nb_sectors, int type) "acb %p opaque %p sector_num %"PRId64" nb_sectors %d type %d"
124 47f08d7a Lluís
paio_complete(void *acb, void *opaque, int ret) "acb %p opaque %p ret %d"
125 47f08d7a Lluís
paio_cancel(void *acb, void *opaque) "acb %p opaque %p"
126 bd3c9aa5 Prerna Saxena
127 bd3c9aa5 Prerna Saxena
# ioport.c
128 47f08d7a Lluís
cpu_in(unsigned int addr, unsigned int val) "addr %#x value %u"
129 47f08d7a Lluís
cpu_out(unsigned int addr, unsigned int val) "addr %#x value %u"
130 62dd89de Prerna Saxena
131 62dd89de Prerna Saxena
# balloon.c
132 62dd89de Prerna Saxena
# Since requests are raised via monitor, not many tracepoints are needed.
133 47f08d7a Lluís
balloon_event(void *opaque, unsigned long addr) "opaque %p addr %lu"
134 d8023f31 Blue Swirl
135 d8023f31 Blue Swirl
# hw/apic.c
136 47f08d7a Lluís
apic_local_deliver(int vector, uint32_t lvt) "vector %d delivery mode %d"
137 47f08d7a Lluís
apic_deliver_irq(uint8_t dest, uint8_t dest_mode, uint8_t delivery_mode, uint8_t vector_num, uint8_t trigger_mode) "dest %d dest_mode %d delivery_mode %d vector %d trigger_mode %d"
138 689d7e2f Stefan Hajnoczi
cpu_set_apic_base(uint64_t val) "%016"PRIx64
139 689d7e2f Stefan Hajnoczi
cpu_get_apic_base(uint64_t val) "%016"PRIx64
140 47f08d7a Lluís
apic_mem_readl(uint64_t addr, uint32_t val)  "%"PRIx64" = %08x"
141 47f08d7a Lluís
apic_mem_writel(uint64_t addr, uint32_t val) "%"PRIx64" = %08x"
142 d8023f31 Blue Swirl
# coalescing
143 343270ea Jan Kiszka
apic_report_irq_delivered(int apic_irq_delivered) "coalescing %d"
144 47f08d7a Lluís
apic_reset_irq_delivered(int apic_irq_delivered) "old coalescing %d"
145 47f08d7a Lluís
apic_get_irq_delivered(int apic_irq_delivered) "returning coalescing %d"
146 97bf4851 Blue Swirl
147 97bf4851 Blue Swirl
# hw/cs4231.c
148 47f08d7a Lluís
cs4231_mem_readl_dreg(uint32_t reg, uint32_t ret) "read dreg %d: 0x%02x"
149 47f08d7a Lluís
cs4231_mem_readl_reg(uint32_t reg, uint32_t ret) "read reg %d: 0x%08x"
150 47f08d7a Lluís
cs4231_mem_writel_reg(uint32_t reg, uint32_t old, uint32_t val) "write reg %d: 0x%08x -> 0x%08x"
151 47f08d7a Lluís
cs4231_mem_writel_dreg(uint32_t reg, uint32_t old, uint32_t val) "write dreg %d: 0x%02x -> 0x%02x"
152 97bf4851 Blue Swirl
153 d43ed9ec Hervé Poussineau
# hw/ds1225y.c
154 47f08d7a Lluís
nvram_read(uint32_t addr, uint32_t ret) "read addr %d: 0x%02x"
155 47f08d7a Lluís
nvram_write(uint32_t addr, uint32_t old, uint32_t val) "write addr %d: 0x%02x -> 0x%02x"
156 d43ed9ec Hervé Poussineau
157 97bf4851 Blue Swirl
# hw/eccmemctl.c
158 47f08d7a Lluís
ecc_mem_writel_mer(uint32_t val) "Write memory enable %08x"
159 47f08d7a Lluís
ecc_mem_writel_mdr(uint32_t val) "Write memory delay %08x"
160 47f08d7a Lluís
ecc_mem_writel_mfsr(uint32_t val) "Write memory fault status %08x"
161 47f08d7a Lluís
ecc_mem_writel_vcr(uint32_t val) "Write slot configuration %08x"
162 47f08d7a Lluís
ecc_mem_writel_dr(uint32_t val) "Write diagnostic %08x"
163 47f08d7a Lluís
ecc_mem_writel_ecr0(uint32_t val) "Write event count 1 %08x"
164 47f08d7a Lluís
ecc_mem_writel_ecr1(uint32_t val) "Write event count 2 %08x"
165 47f08d7a Lluís
ecc_mem_readl_mer(uint32_t ret) "Read memory enable %08x"
166 47f08d7a Lluís
ecc_mem_readl_mdr(uint32_t ret) "Read memory delay %08x"
167 47f08d7a Lluís
ecc_mem_readl_mfsr(uint32_t ret) "Read memory fault status %08x"
168 47f08d7a Lluís
ecc_mem_readl_vcr(uint32_t ret) "Read slot configuration %08x"
169 47f08d7a Lluís
ecc_mem_readl_mfar0(uint32_t ret) "Read memory fault address 0 %08x"
170 47f08d7a Lluís
ecc_mem_readl_mfar1(uint32_t ret) "Read memory fault address 1 %08x"
171 47f08d7a Lluís
ecc_mem_readl_dr(uint32_t ret) "Read diagnostic %08x"
172 47f08d7a Lluís
ecc_mem_readl_ecr0(uint32_t ret) "Read event count 1 %08x"
173 47f08d7a Lluís
ecc_mem_readl_ecr1(uint32_t ret) "Read event count 2 %08x"
174 47f08d7a Lluís
ecc_diag_mem_writeb(uint64_t addr, uint32_t val) "Write diagnostic %"PRId64" = %02x"
175 47f08d7a Lluís
ecc_diag_mem_readb(uint64_t addr, uint32_t ret) "Read diagnostic %"PRId64"= %02x"
176 97bf4851 Blue Swirl
177 f6e35343 Markus Armbruster
# hw/fw_cfg.c
178 f6e35343 Markus Armbruster
fw_cfg_write(void *s, uint8_t value) "%p %d"
179 f6e35343 Markus Armbruster
fw_cfg_select(void *s, uint16_t key, int ret) "%p key %d = %d"
180 f6e35343 Markus Armbruster
fw_cfg_read(void *s, uint8_t ret) "%p = %d"
181 f6e35343 Markus Armbruster
fw_cfg_add_file_dupe(void *s, char *name) "%p %s"
182 089da572 Markus Armbruster
fw_cfg_add_file(void *s, int index, char *name, size_t len) "%p #%d: %s (%zd bytes)"
183 f6e35343 Markus Armbruster
184 31f7eedf Markus Armbruster
# hw/hd-geometry.c
185 31f7eedf Markus Armbruster
hd_geometry_lchs_guess(void *bs, int cyls, int heads, int secs) "bs %p LCHS %d %d %d"
186 1f24d7b4 Markus Armbruster
hd_geometry_guess(void *bs, uint32_t cyls, uint32_t heads, uint32_t secs, int trans) "bs %p CHS %u %u %u trans %d"
187 31f7eedf Markus Armbruster
188 63b9932d Hervé Poussineau
# hw/jazz-led.c
189 63b9932d Hervé Poussineau
jazz_led_read(uint64_t addr, uint8_t val) "read addr=0x%"PRIx64": 0x%x"
190 63b9932d Hervé Poussineau
jazz_led_write(uint64_t addr, uint8_t new) "write addr=0x%"PRIx64": 0x%x"
191 63b9932d Hervé Poussineau
192 97bf4851 Blue Swirl
# hw/lance.c
193 47f08d7a Lluís
lance_mem_readw(uint64_t addr, uint32_t ret) "addr=%"PRIx64"val=0x%04x"
194 47f08d7a Lluís
lance_mem_writew(uint64_t addr, uint32_t val) "addr=%"PRIx64"val=0x%04x"
195 97bf4851 Blue Swirl
196 97bf4851 Blue Swirl
# hw/slavio_intctl.c
197 47f08d7a Lluís
slavio_intctl_mem_readl(uint32_t cpu, uint64_t addr, uint32_t ret) "read cpu %d reg 0x%"PRIx64" = %x"
198 47f08d7a Lluís
slavio_intctl_mem_writel(uint32_t cpu, uint64_t addr, uint32_t val) "write cpu %d reg 0x%"PRIx64" = %x"
199 47f08d7a Lluís
slavio_intctl_mem_writel_clear(uint32_t cpu, uint32_t val, uint32_t intreg_pending) "Cleared cpu %d irq mask %x, curmask %x"
200 47f08d7a Lluís
slavio_intctl_mem_writel_set(uint32_t cpu, uint32_t val, uint32_t intreg_pending) "Set cpu %d irq mask %x, curmask %x"
201 47f08d7a Lluís
slavio_intctlm_mem_readl(uint64_t addr, uint32_t ret) "read system reg 0x%"PRIx64" = %x"
202 47f08d7a Lluís
slavio_intctlm_mem_writel(uint64_t addr, uint32_t val) "write system reg 0x%"PRIx64" = %x"
203 47f08d7a Lluís
slavio_intctlm_mem_writel_enable(uint32_t val, uint32_t intregm_disabled) "Enabled master irq mask %x, curmask %x"
204 47f08d7a Lluís
slavio_intctlm_mem_writel_disable(uint32_t val, uint32_t intregm_disabled) "Disabled master irq mask %x, curmask %x"
205 47f08d7a Lluís
slavio_intctlm_mem_writel_target(uint32_t cpu) "Set master irq cpu %d"
206 47f08d7a Lluís
slavio_check_interrupts(uint32_t pending, uint32_t intregm_disabled) "pending %x disabled %x"
207 47f08d7a Lluís
slavio_set_irq(uint32_t target_cpu, int irq, uint32_t pil, int level) "Set cpu %d irq %d -> pil %d level %d"
208 47f08d7a Lluís
slavio_set_timer_irq_cpu(int cpu, int level) "Set cpu %d local timer level %d"
209 97bf4851 Blue Swirl
210 97bf4851 Blue Swirl
# hw/slavio_misc.c
211 47f08d7a Lluís
slavio_misc_update_irq_raise(void) "Raise IRQ"
212 47f08d7a Lluís
slavio_misc_update_irq_lower(void) "Lower IRQ"
213 47f08d7a Lluís
slavio_set_power_fail(int power_failing, uint8_t config) "Power fail: %d, config: %d"
214 47f08d7a Lluís
slavio_cfg_mem_writeb(uint32_t val) "Write config %02x"
215 47f08d7a Lluís
slavio_cfg_mem_readb(uint32_t ret) "Read config %02x"
216 47f08d7a Lluís
slavio_diag_mem_writeb(uint32_t val) "Write diag %02x"
217 47f08d7a Lluís
slavio_diag_mem_readb(uint32_t ret) "Read diag %02x"
218 47f08d7a Lluís
slavio_mdm_mem_writeb(uint32_t val) "Write modem control %02x"
219 47f08d7a Lluís
slavio_mdm_mem_readb(uint32_t ret) "Read modem control %02x"
220 47f08d7a Lluís
slavio_aux1_mem_writeb(uint32_t val) "Write aux1 %02x"
221 47f08d7a Lluís
slavio_aux1_mem_readb(uint32_t ret) "Read aux1 %02x"
222 47f08d7a Lluís
slavio_aux2_mem_writeb(uint32_t val) "Write aux2 %02x"
223 47f08d7a Lluís
slavio_aux2_mem_readb(uint32_t ret) "Read aux2 %02x"
224 47f08d7a Lluís
apc_mem_writeb(uint32_t val) "Write power management %02x"
225 47f08d7a Lluís
apc_mem_readb(uint32_t ret) "Read power management %02x"
226 47f08d7a Lluís
slavio_sysctrl_mem_writel(uint32_t val) "Write system control %08x"
227 47f08d7a Lluís
slavio_sysctrl_mem_readl(uint32_t ret) "Read system control %08x"
228 47f08d7a Lluís
slavio_led_mem_writew(uint32_t val) "Write diagnostic LED %04x"
229 47f08d7a Lluís
slavio_led_mem_readw(uint32_t ret) "Read diagnostic LED %04x"
230 97bf4851 Blue Swirl
231 97bf4851 Blue Swirl
# hw/slavio_timer.c
232 47f08d7a Lluís
slavio_timer_get_out(uint64_t limit, uint32_t counthigh, uint32_t count) "limit %"PRIx64" count %x%08x"
233 47f08d7a Lluís
slavio_timer_irq(uint32_t counthigh, uint32_t count) "callback: count %x%08x"
234 689d7e2f Stefan Hajnoczi
slavio_timer_mem_readl_invalid(uint64_t addr) "invalid read address %"PRIx64
235 47f08d7a Lluís
slavio_timer_mem_readl(uint64_t addr, uint32_t ret) "read %"PRIx64" = %08x"
236 47f08d7a Lluís
slavio_timer_mem_writel(uint64_t addr, uint32_t val) "write %"PRIx64" = %08x"
237 689d7e2f Stefan Hajnoczi
slavio_timer_mem_writel_limit(unsigned int timer_index, uint64_t count) "processor %d user timer set to %016"PRIx64
238 47f08d7a Lluís
slavio_timer_mem_writel_counter_invalid(void) "not user timer"
239 47f08d7a Lluís
slavio_timer_mem_writel_status_start(unsigned int timer_index) "processor %d user timer started"
240 47f08d7a Lluís
slavio_timer_mem_writel_status_stop(unsigned int timer_index) "processor %d user timer stopped"
241 47f08d7a Lluís
slavio_timer_mem_writel_mode_user(unsigned int timer_index) "processor %d changed from counter to user timer"
242 47f08d7a Lluís
slavio_timer_mem_writel_mode_counter(unsigned int timer_index) "processor %d changed from user timer to counter"
243 47f08d7a Lluís
slavio_timer_mem_writel_mode_invalid(void) "not system timer"
244 689d7e2f Stefan Hajnoczi
slavio_timer_mem_writel_invalid(uint64_t addr) "invalid write address %"PRIx64
245 97bf4851 Blue Swirl
246 97bf4851 Blue Swirl
# hw/sparc32_dma.c
247 689d7e2f Stefan Hajnoczi
ledma_memory_read(uint64_t addr) "DMA read addr 0x%"PRIx64
248 689d7e2f Stefan Hajnoczi
ledma_memory_write(uint64_t addr) "DMA write addr 0x%"PRIx64
249 47f08d7a Lluís
sparc32_dma_set_irq_raise(void) "Raise IRQ"
250 47f08d7a Lluís
sparc32_dma_set_irq_lower(void) "Lower IRQ"
251 47f08d7a Lluís
espdma_memory_read(uint32_t addr) "DMA read addr 0x%08x"
252 47f08d7a Lluís
espdma_memory_write(uint32_t addr) "DMA write addr 0x%08x"
253 47f08d7a Lluís
sparc32_dma_mem_readl(uint64_t addr, uint32_t ret) "read dmareg %"PRIx64": 0x%08x"
254 47f08d7a Lluís
sparc32_dma_mem_writel(uint64_t addr, uint32_t old, uint32_t val) "write dmareg %"PRIx64": 0x%08x -> 0x%08x"
255 47f08d7a Lluís
sparc32_dma_enable_raise(void) "Raise DMA enable"
256 47f08d7a Lluís
sparc32_dma_enable_lower(void) "Lower DMA enable"
257 97bf4851 Blue Swirl
258 97bf4851 Blue Swirl
# hw/sun4m.c
259 47f08d7a Lluís
sun4m_cpu_interrupt(unsigned int level) "Set CPU IRQ %d"
260 47f08d7a Lluís
sun4m_cpu_reset_interrupt(unsigned int level) "Reset CPU IRQ %d"
261 47f08d7a Lluís
sun4m_cpu_set_irq_raise(int level) "Raise CPU IRQ %d"
262 47f08d7a Lluís
sun4m_cpu_set_irq_lower(int level) "Lower CPU IRQ %d"
263 97bf4851 Blue Swirl
264 97bf4851 Blue Swirl
# hw/sun4m_iommu.c
265 47f08d7a Lluís
sun4m_iommu_mem_readl(uint64_t addr, uint32_t ret) "read reg[%"PRIx64"] = %x"
266 47f08d7a Lluís
sun4m_iommu_mem_writel(uint64_t addr, uint32_t val) "write reg[%"PRIx64"] = %x"
267 689d7e2f Stefan Hajnoczi
sun4m_iommu_mem_writel_ctrl(uint64_t iostart) "iostart = %"PRIx64
268 47f08d7a Lluís
sun4m_iommu_mem_writel_tlbflush(uint32_t val) "tlb flush %x"
269 47f08d7a Lluís
sun4m_iommu_mem_writel_pgflush(uint32_t val) "page flush %x"
270 47f08d7a Lluís
sun4m_iommu_page_get_flags(uint64_t pa, uint64_t iopte, uint32_t ret) "get flags addr %"PRIx64" => pte %"PRIx64", *pte = %x"
271 47f08d7a Lluís
sun4m_iommu_translate_pa(uint64_t addr, uint64_t pa, uint32_t iopte) "xlate dva %"PRIx64" => pa %"PRIx64" iopte = %x"
272 689d7e2f Stefan Hajnoczi
sun4m_iommu_bad_addr(uint64_t addr) "bad addr %"PRIx64
273 94b0b5ff Stefan Hajnoczi
274 f1ae32a1 Gerd Hoffmann
# hw/usb/core.c
275 808aeb98 Gerd Hoffmann
usb_packet_state_change(int bus, const char *port, int ep, void *p, const char *o, const char *n) "bus %d, port %s, ep %d, packet %p, state %s -> %s"
276 5ac2731c Gerd Hoffmann
usb_packet_state_fault(int bus, const char *port, int ep, void *p, const char *o, const char *n) "bus %d, port %s, ep %d, packet %p, state %s, expected %s"
277 808aeb98 Gerd Hoffmann
278 f1ae32a1 Gerd Hoffmann
# hw/usb/bus.c
279 891fb2cd Gerd Hoffmann
usb_port_claim(int bus, const char *port) "bus %d, port %s"
280 891fb2cd Gerd Hoffmann
usb_port_attach(int bus, const char *port) "bus %d, port %s"
281 891fb2cd Gerd Hoffmann
usb_port_detach(int bus, const char *port) "bus %d, port %s"
282 891fb2cd Gerd Hoffmann
usb_port_release(int bus, const char *port) "bus %d, port %s"
283 891fb2cd Gerd Hoffmann
284 f1ae32a1 Gerd Hoffmann
# hw/usb/hcd-ehci.c
285 47f08d7a Lluís
usb_ehci_reset(void) "=== RESET ==="
286 3e4f910c Gerd Hoffmann
usb_ehci_opreg_read(uint32_t addr, const char *str, uint32_t val) "rd mmio %04x [%s] = %x"
287 3e4f910c Gerd Hoffmann
usb_ehci_opreg_write(uint32_t addr, const char *str, uint32_t val) "wr mmio %04x [%s] = %x"
288 3e4f910c Gerd Hoffmann
usb_ehci_opreg_change(uint32_t addr, const char *str, uint32_t new, uint32_t old) "ch mmio %04x [%s] = %x (old: %x)"
289 3e4f910c Gerd Hoffmann
usb_ehci_portsc_read(uint32_t addr, uint32_t port, uint32_t val) "rd mmio %04x [port %d] = %x"
290 3e4f910c Gerd Hoffmann
usb_ehci_portsc_write(uint32_t addr, uint32_t port, uint32_t val) "wr mmio %04x [port %d] = %x"
291 3e4f910c Gerd Hoffmann
usb_ehci_portsc_change(uint32_t addr, uint32_t port, uint32_t new, uint32_t old) "ch mmio %04x [port %d] = %x (old: %x)"
292 47f08d7a Lluís
usb_ehci_usbsts(const char *sts, int state) "usbsts %s %d"
293 47f08d7a Lluís
usb_ehci_state(const char *schedule, const char *state) "%s schedule %s"
294 47f08d7a Lluís
usb_ehci_qh_ptrs(void *q, uint32_t addr, uint32_t nxt, uint32_t c_qtd, uint32_t n_qtd, uint32_t a_qtd) "q %p - QH @ %08x: next %08x qtds %08x,%08x,%08x"
295 47f08d7a Lluís
usb_ehci_qh_fields(uint32_t addr, int rl, int mplen, int eps, int ep, int devaddr) "QH @ %08x - rl %d, mplen %d, eps %d, ep %d, dev %d"
296 47f08d7a Lluís
usb_ehci_qh_bits(uint32_t addr, int c, int h, int dtc, int i) "QH @ %08x - c %d, h %d, dtc %d, i %d"
297 47f08d7a Lluís
usb_ehci_qtd_ptrs(void *q, uint32_t addr, uint32_t nxt, uint32_t altnext) "q %p - QTD @ %08x: next %08x altnext %08x"
298 47f08d7a Lluís
usb_ehci_qtd_fields(uint32_t addr, int tbytes, int cpage, int cerr, int pid) "QTD @ %08x - tbytes %d, cpage %d, cerr %d, pid %d"
299 47f08d7a Lluís
usb_ehci_qtd_bits(uint32_t addr, int ioc, int active, int halt, int babble, int xacterr) "QTD @ %08x - ioc %d, active %d, halt %d, babble %d, xacterr %d"
300 47f08d7a Lluís
usb_ehci_itd(uint32_t addr, uint32_t nxt, uint32_t mplen, uint32_t mult, uint32_t ep, uint32_t devaddr) "ITD @ %08x: next %08x - mplen %d, mult %d, ep %d, dev %d"
301 2fe80192 Gerd Hoffmann
usb_ehci_sitd(uint32_t addr, uint32_t nxt, uint32_t active) "ITD @ %08x: next %08x - active %d"
302 30e9d412 Gerd Hoffmann
usb_ehci_port_attach(uint32_t port, const char *owner, const char *device) "attach port #%d, owner %s, device %s"
303 30e9d412 Gerd Hoffmann
usb_ehci_port_detach(uint32_t port, const char *owner) "detach port #%d, owner %s"
304 47f08d7a Lluís
usb_ehci_port_reset(uint32_t port, int enable) "reset port #%d - %d"
305 47f08d7a Lluís
usb_ehci_data(int rw, uint32_t cpage, uint32_t offset, uint32_t addr, uint32_t len, uint32_t bufpos) "write %d, cpage %d, offset 0x%03x, addr 0x%08x, len %d, bufpos %d"
306 47f08d7a Lluís
usb_ehci_queue_action(void *q, const char *action) "q %p: %s"
307 eb36a88e Gerd Hoffmann
usb_ehci_packet_action(void *q, void *p, const char *action) "q %p p %p: %s"
308 7efc17af Gerd Hoffmann
usb_ehci_irq(uint32_t level, uint32_t frindex, uint32_t sts, uint32_t mask) "level %d, frindex 0x%04x, sts 0x%x, mask 0x%x"
309 5c514681 Gerd Hoffmann
usb_ehci_guest_bug(const char *reason) "%s"
310 1defcbd1 Gerd Hoffmann
usb_ehci_doorbell_ring(void) ""
311 1defcbd1 Gerd Hoffmann
usb_ehci_doorbell_ack(void) ""
312 55903f1d Gerd Hoffmann
usb_ehci_dma_error(void) ""
313 439a97cc Gerd Hoffmann
314 50dcc0f8 Gerd Hoffmann
# hw/usb/hcd-uhci.c
315 50dcc0f8 Gerd Hoffmann
usb_uhci_reset(void) "=== RESET ==="
316 50dcc0f8 Gerd Hoffmann
usb_uhci_schedule_start(void) ""
317 50dcc0f8 Gerd Hoffmann
usb_uhci_schedule_stop(void) ""
318 50dcc0f8 Gerd Hoffmann
usb_uhci_frame_start(uint32_t num) "nr %d"
319 4aed20e2 Gerd Hoffmann
usb_uhci_frame_stop_bandwidth(void) ""
320 50dcc0f8 Gerd Hoffmann
usb_uhci_frame_loop_stop_idle(void) ""
321 50dcc0f8 Gerd Hoffmann
usb_uhci_frame_loop_continue(void) ""
322 7dd0dfd7 Gerd Hoffmann
usb_uhci_mmio_readw(uint32_t addr, uint32_t val) "addr 0x%04x, ret 0x%04x"
323 7dd0dfd7 Gerd Hoffmann
usb_uhci_mmio_writew(uint32_t addr, uint32_t val) "addr 0x%04x, val 0x%04x"
324 50dcc0f8 Gerd Hoffmann
usb_uhci_queue_add(uint32_t token) "token 0x%x"
325 66a08cbe Hans de Goede
usb_uhci_queue_del(uint32_t token, const char *reason) "token 0x%x: %s"
326 50dcc0f8 Gerd Hoffmann
usb_uhci_packet_add(uint32_t token, uint32_t addr) "token 0x%x, td 0x%x"
327 50dcc0f8 Gerd Hoffmann
usb_uhci_packet_link_async(uint32_t token, uint32_t addr) "token 0x%x, td 0x%x"
328 50dcc0f8 Gerd Hoffmann
usb_uhci_packet_unlink_async(uint32_t token, uint32_t addr) "token 0x%x, td 0x%x"
329 50dcc0f8 Gerd Hoffmann
usb_uhci_packet_cancel(uint32_t token, uint32_t addr, int done) "token 0x%x, td 0x%x, done %d"
330 50dcc0f8 Gerd Hoffmann
usb_uhci_packet_complete_success(uint32_t token, uint32_t addr) "token 0x%x, td 0x%x"
331 50dcc0f8 Gerd Hoffmann
usb_uhci_packet_complete_shortxfer(uint32_t token, uint32_t addr) "token 0x%x, td 0x%x"
332 50dcc0f8 Gerd Hoffmann
usb_uhci_packet_complete_stall(uint32_t token, uint32_t addr) "token 0x%x, td 0x%x"
333 50dcc0f8 Gerd Hoffmann
usb_uhci_packet_complete_babble(uint32_t token, uint32_t addr) "token 0x%x, td 0x%x"
334 50dcc0f8 Gerd Hoffmann
usb_uhci_packet_complete_error(uint32_t token, uint32_t addr) "token 0x%x, td 0x%x"
335 50dcc0f8 Gerd Hoffmann
usb_uhci_packet_del(uint32_t token, uint32_t addr) "token 0x%x, td 0x%x"
336 50dcc0f8 Gerd Hoffmann
usb_uhci_qh_load(uint32_t qh) "qh 0x%x"
337 50dcc0f8 Gerd Hoffmann
usb_uhci_td_load(uint32_t qh, uint32_t td, uint32_t ctrl, uint32_t token) "qh 0x%x, td 0x%x, ctrl 0x%x, token 0x%x"
338 50dcc0f8 Gerd Hoffmann
usb_uhci_td_queue(uint32_t td, uint32_t ctrl, uint32_t token) "td 0x%x, ctrl 0x%x, token 0x%x"
339 50dcc0f8 Gerd Hoffmann
usb_uhci_td_nextqh(uint32_t qh, uint32_t td) "qh 0x%x, td 0x%x"
340 50dcc0f8 Gerd Hoffmann
usb_uhci_td_async(uint32_t qh, uint32_t td) "qh 0x%x, td 0x%x"
341 50dcc0f8 Gerd Hoffmann
usb_uhci_td_complete(uint32_t qh, uint32_t td) "qh 0x%x, td 0x%x"
342 50dcc0f8 Gerd Hoffmann
343 2d754a10 Gerd Hoffmann
# hw/usb/hcd-xhci.c
344 2d754a10 Gerd Hoffmann
usb_xhci_reset(void) "=== RESET ==="
345 fc0ddaca Gerd Hoffmann
usb_xhci_run(void) ""
346 fc0ddaca Gerd Hoffmann
usb_xhci_stop(void) ""
347 2d754a10 Gerd Hoffmann
usb_xhci_cap_read(uint32_t off, uint32_t val) "off 0x%04x, ret 0x%08x"
348 2d754a10 Gerd Hoffmann
usb_xhci_oper_read(uint32_t off, uint32_t val) "off 0x%04x, ret 0x%08x"
349 2d754a10 Gerd Hoffmann
usb_xhci_port_read(uint32_t port, uint32_t off, uint32_t val) "port %d, off 0x%04x, ret 0x%08x"
350 2d754a10 Gerd Hoffmann
usb_xhci_runtime_read(uint32_t off, uint32_t val) "off 0x%04x, ret 0x%08x"
351 2d754a10 Gerd Hoffmann
usb_xhci_doorbell_read(uint32_t off, uint32_t val) "off 0x%04x, ret 0x%08x"
352 2d754a10 Gerd Hoffmann
usb_xhci_oper_write(uint32_t off, uint32_t val) "off 0x%04x, val 0x%08x"
353 2d754a10 Gerd Hoffmann
usb_xhci_port_write(uint32_t port, uint32_t off, uint32_t val) "port %d, off 0x%04x, val 0x%08x"
354 2d754a10 Gerd Hoffmann
usb_xhci_runtime_write(uint32_t off, uint32_t val) "off 0x%04x, val 0x%08x"
355 2d754a10 Gerd Hoffmann
usb_xhci_doorbell_write(uint32_t off, uint32_t val) "off 0x%04x, val 0x%08x"
356 7acd279f Gerd Hoffmann
usb_xhci_irq_intx(uint32_t level) "level %d"
357 7acd279f Gerd Hoffmann
usb_xhci_irq_msi(uint32_t nr) "nr %d"
358 4c47f800 Gerd Hoffmann
usb_xhci_irq_msix(uint32_t nr) "nr %d"
359 4c47f800 Gerd Hoffmann
usb_xhci_irq_msix_use(uint32_t nr) "nr %d"
360 4c47f800 Gerd Hoffmann
usb_xhci_irq_msix_unuse(uint32_t nr) "nr %d"
361 962d11e1 Gerd Hoffmann
usb_xhci_queue_event(uint32_t vector, uint32_t idx, const char *trb, const char *evt, uint64_t param, uint32_t status, uint32_t control) "v %d, idx %d, %s, %s, p %016" PRIx64 ", s %08x, c 0x%08x"
362 0703a4a7 Gerd Hoffmann
usb_xhci_fetch_trb(uint64_t addr, const char *name, uint64_t param, uint32_t status, uint32_t control) "addr %016" PRIx64 ", %s, p %016" PRIx64 ", s %08x, c 0x%08x"
363 4f47f0f8 Gerd Hoffmann
usb_xhci_port_reset(uint32_t port) "port %d"
364 4f47f0f8 Gerd Hoffmann
usb_xhci_port_link(uint32_t port, uint32_t pls) "port %d, pls %d"
365 348f1037 Gerd Hoffmann
usb_xhci_slot_enable(uint32_t slotid) "slotid %d"
366 348f1037 Gerd Hoffmann
usb_xhci_slot_disable(uint32_t slotid) "slotid %d"
367 348f1037 Gerd Hoffmann
usb_xhci_slot_address(uint32_t slotid) "slotid %d"
368 348f1037 Gerd Hoffmann
usb_xhci_slot_configure(uint32_t slotid) "slotid %d"
369 348f1037 Gerd Hoffmann
usb_xhci_slot_evaluate(uint32_t slotid) "slotid %d"
370 348f1037 Gerd Hoffmann
usb_xhci_slot_reset(uint32_t slotid) "slotid %d"
371 c1f6b493 Gerd Hoffmann
usb_xhci_ep_enable(uint32_t slotid, uint32_t epid) "slotid %d, epid %d"
372 c1f6b493 Gerd Hoffmann
usb_xhci_ep_disable(uint32_t slotid, uint32_t epid) "slotid %d, epid %d"
373 024426ac Gerd Hoffmann
usb_xhci_ep_set_dequeue(uint32_t slotid, uint32_t epid, uint32_t streamid, uint64_t param) "slotid %d, epid %d, streamid %d, ptr %016" PRIx64
374 024426ac Gerd Hoffmann
usb_xhci_ep_kick(uint32_t slotid, uint32_t epid, uint32_t streamid) "slotid %d, epid %d, streamid %d"
375 c1f6b493 Gerd Hoffmann
usb_xhci_ep_stop(uint32_t slotid, uint32_t epid) "slotid %d, epid %d"
376 c1f6b493 Gerd Hoffmann
usb_xhci_ep_reset(uint32_t slotid, uint32_t epid) "slotid %d, epid %d"
377 024426ac Gerd Hoffmann
usb_xhci_xfer_start(void *xfer, uint32_t slotid, uint32_t epid, uint32_t streamid) "%p: slotid %d, epid %d, streamid %d"
378 97df650b Gerd Hoffmann
usb_xhci_xfer_async(void *xfer) "%p"
379 97df650b Gerd Hoffmann
usb_xhci_xfer_nak(void *xfer) "%p"
380 97df650b Gerd Hoffmann
usb_xhci_xfer_retry(void *xfer) "%p"
381 97df650b Gerd Hoffmann
usb_xhci_xfer_success(void *xfer, uint32_t bytes) "%p: len %d"
382 97df650b Gerd Hoffmann
usb_xhci_xfer_error(void *xfer, uint32_t ret) "%p: ret %d"
383 0ab966cf Gerd Hoffmann
usb_xhci_unimplemented(const char *item, int nr) "%s (0x%x)"
384 2d754a10 Gerd Hoffmann
385 529f8f9f Gerd Hoffmann
# hw/usb/desc.c
386 47f08d7a Lluís
usb_desc_device(int addr, int len, int ret) "dev %d query device, len %d, ret %d"
387 47f08d7a Lluís
usb_desc_device_qualifier(int addr, int len, int ret) "dev %d query device qualifier, len %d, ret %d"
388 47f08d7a Lluís
usb_desc_config(int addr, int index, int len, int ret) "dev %d query config %d, len %d, ret %d"
389 47f08d7a Lluís
usb_desc_other_speed_config(int addr, int index, int len, int ret) "dev %d query config %d, len %d, ret %d"
390 47f08d7a Lluís
usb_desc_string(int addr, int index, int len, int ret) "dev %d query string %d, len %d, ret %d"
391 2077469b Gerd Hoffmann
usb_desc_bos(int addr, int len, int ret) "dev %d bos, len %d, ret %d"
392 47f08d7a Lluís
usb_set_addr(int addr) "dev %d"
393 47f08d7a Lluís
usb_set_config(int addr, int config, int ret) "dev %d, config %d, ret %d"
394 1de14d43 Gerd Hoffmann
usb_set_interface(int addr, int iface, int alt, int ret) "dev %d, interface %d, altsetting %d, ret %d"
395 47f08d7a Lluís
usb_clear_device_feature(int addr, int feature, int ret) "dev %d, feature %d, ret %d"
396 47f08d7a Lluís
usb_set_device_feature(int addr, int feature, int ret) "dev %d, feature %d, ret %d"
397 37fb59d3 Gerd Hoffmann
398 529f8f9f Gerd Hoffmann
# hw/usb/dev-hub.c
399 529f8f9f Gerd Hoffmann
usb_hub_reset(int addr) "dev %d"
400 529f8f9f Gerd Hoffmann
usb_hub_control(int addr, int request, int value, int index, int length) "dev %d, req 0x%x, value %d, index %d, langth %d"
401 529f8f9f Gerd Hoffmann
usb_hub_get_port_status(int addr, int nr, int status, int changed) "dev %d, port %d, status 0x%x, changed 0x%x"
402 529f8f9f Gerd Hoffmann
usb_hub_set_port_feature(int addr, int nr, const char *f) "dev %d, port %d, feature %s"
403 529f8f9f Gerd Hoffmann
usb_hub_clear_port_feature(int addr, int nr, const char *f) "dev %d, port %d, feature %s"
404 529f8f9f Gerd Hoffmann
usb_hub_attach(int addr, int nr) "dev %d, port %d"
405 529f8f9f Gerd Hoffmann
usb_hub_detach(int addr, int nr) "dev %d, port %d"
406 529f8f9f Gerd Hoffmann
407 0f58f68b Gerd Hoffmann
# hw/usb/dev-uas.c
408 0f58f68b Gerd Hoffmann
usb_uas_reset(int addr) "dev %d"
409 0f58f68b Gerd Hoffmann
usb_uas_command(int addr, uint16_t tag, int lun, uint32_t lun64_1, uint32_t lun64_2) "dev %d, tag 0x%x, lun %d, lun64 %08x-%08x"
410 0f58f68b Gerd Hoffmann
usb_uas_response(int addr, uint16_t tag, uint8_t code) "dev %d, tag 0x%x, code 0x%x"
411 0f58f68b Gerd Hoffmann
usb_uas_sense(int addr, uint16_t tag, uint8_t status) "dev %d, tag 0x%x, status 0x%x"
412 0f58f68b Gerd Hoffmann
usb_uas_read_ready(int addr, uint16_t tag) "dev %d, tag 0x%x"
413 0f58f68b Gerd Hoffmann
usb_uas_write_ready(int addr, uint16_t tag) "dev %d, tag 0x%x"
414 0f58f68b Gerd Hoffmann
usb_uas_xfer_data(int addr, uint16_t tag, uint32_t copy, uint32_t uoff, uint32_t usize, uint32_t soff, uint32_t ssize) "dev %d, tag 0x%x, copy %d, usb-pkt %d/%d, scsi-buf %d/%d"
415 0f58f68b Gerd Hoffmann
usb_uas_scsi_data(int addr, uint16_t tag, uint32_t bytes) "dev %d, tag 0x%x, bytes %d"
416 0f58f68b Gerd Hoffmann
usb_uas_scsi_complete(int addr, uint16_t tag, uint32_t status, uint32_t resid) "dev %d, tag 0x%x, status 0x%x, residue %d"
417 0f58f68b Gerd Hoffmann
usb_uas_tmf_abort_task(int addr, uint16_t tag, uint16_t task_tag) "dev %d, tag 0x%x, task-tag 0x%x"
418 0f58f68b Gerd Hoffmann
usb_uas_tmf_logical_unit_reset(int addr, uint16_t tag, int lun) "dev %d, tag 0x%x, lun %d"
419 0f58f68b Gerd Hoffmann
usb_uas_tmf_unsupported(int addr, uint16_t tag, uint32_t function) "dev %d, tag 0x%x, function 0x%x"
420 0f58f68b Gerd Hoffmann
421 f1ae32a1 Gerd Hoffmann
# hw/usb/host-linux.c
422 e6a2f500 Gerd Hoffmann
usb_host_open_started(int bus, int addr) "dev %d:%d"
423 e6a2f500 Gerd Hoffmann
usb_host_open_success(int bus, int addr) "dev %d:%d"
424 e6a2f500 Gerd Hoffmann
usb_host_open_failure(int bus, int addr) "dev %d:%d"
425 e6a2f500 Gerd Hoffmann
usb_host_disconnect(int bus, int addr) "dev %d:%d"
426 e6a2f500 Gerd Hoffmann
usb_host_close(int bus, int addr) "dev %d:%d"
427 e6a2f500 Gerd Hoffmann
usb_host_set_address(int bus, int addr, int config) "dev %d:%d, address %d"
428 e6a2f500 Gerd Hoffmann
usb_host_set_config(int bus, int addr, int config) "dev %d:%d, config %d"
429 e6a2f500 Gerd Hoffmann
usb_host_set_interface(int bus, int addr, int interface, int alt) "dev %d:%d, interface %d, alt %d"
430 e6a2f500 Gerd Hoffmann
usb_host_claim_interfaces(int bus, int addr, int config, int nif) "dev %d:%d, config %d, nif %d"
431 e6a2f500 Gerd Hoffmann
usb_host_release_interfaces(int bus, int addr) "dev %d:%d"
432 19b89252 Gerd Hoffmann
usb_host_req_control(int bus, int addr, void *p, int req, int value, int index) "dev %d:%d, packet %p, req 0x%x, value %d, index %d"
433 19b89252 Gerd Hoffmann
usb_host_req_data(int bus, int addr, void *p, int in, int ep, int size) "dev %d:%d, packet %p, in %d, ep %d, size %d"
434 8c908fca Gerd Hoffmann
usb_host_req_complete(int bus, int addr, void *p, int status, int length) "dev %d:%d, packet %p, status %d, length %d"
435 19b89252 Gerd Hoffmann
usb_host_req_emulated(int bus, int addr, void *p, int status) "dev %d:%d, packet %p, status %d"
436 19b89252 Gerd Hoffmann
usb_host_req_canceled(int bus, int addr, void *p) "dev %d:%d, packet %p"
437 e6a2f500 Gerd Hoffmann
usb_host_urb_submit(int bus, int addr, void *aurb, int length, int more) "dev %d:%d, aurb %p, length %d, more %d"
438 e6a2f500 Gerd Hoffmann
usb_host_urb_complete(int bus, int addr, void *aurb, int status, int length, int more) "dev %d:%d, aurb %p, status %d, length %d, more %d"
439 6aebe407 Gerd Hoffmann
usb_host_urb_canceled(int bus, int addr, void *aurb) "dev %d:%d, aurb %p"
440 e6a2f500 Gerd Hoffmann
usb_host_ep_set_halt(int bus, int addr, int ep) "dev %d:%d, ep %d"
441 e6a2f500 Gerd Hoffmann
usb_host_ep_clear_halt(int bus, int addr, int ep) "dev %d:%d, ep %d"
442 c32da151 Gerd Hoffmann
usb_host_iso_start(int bus, int addr, int ep) "dev %d:%d, ep %d"
443 c32da151 Gerd Hoffmann
usb_host_iso_stop(int bus, int addr, int ep) "dev %d:%d, ep %d"
444 c32da151 Gerd Hoffmann
usb_host_iso_out_of_bufs(int bus, int addr, int ep) "dev %d:%d, ep %d"
445 c32da151 Gerd Hoffmann
usb_host_iso_many_urbs(int bus, int addr, int count) "dev %d:%d, count %d"
446 e6a2f500 Gerd Hoffmann
usb_host_reset(int bus, int addr) "dev %d:%d"
447 e6a2f500 Gerd Hoffmann
usb_host_auto_scan_enabled(void)
448 e6a2f500 Gerd Hoffmann
usb_host_auto_scan_disabled(void)
449 9516bb47 Gerd Hoffmann
usb_host_claim_port(int bus, int hub, int port) "bus %d, hub addr %d, port %d"
450 96dd9aac Gerd Hoffmann
usb_host_parse_device(int bus, int addr, int vendor, int product) "dev %d:%d, id %04x:%04x"
451 96dd9aac Gerd Hoffmann
usb_host_parse_config(int bus, int addr, int value, int active) "dev %d:%d, value %d, active %d"
452 96dd9aac Gerd Hoffmann
usb_host_parse_interface(int bus, int addr, int num, int alt, int active) "dev %d:%d, num %d, alt %d, active %d"
453 96dd9aac Gerd Hoffmann
usb_host_parse_endpoint(int bus, int addr, int ep, const char *dir, const char *type, int active) "dev %d:%d, ep %d, %s, %s, active %d"
454 96dd9aac Gerd Hoffmann
usb_host_parse_unknown(int bus, int addr, int len, int type) "dev %d:%d, len %d, type %d"
455 96dd9aac Gerd Hoffmann
usb_host_parse_error(int bus, int addr, const char *errmsg) "dev %d:%d, msg %s"
456 e6a2f500 Gerd Hoffmann
457 5138efec Paolo Bonzini
# hw/scsi-bus.c
458 47f08d7a Lluís
scsi_req_alloc(int target, int lun, int tag) "target %d lun %d tag %d"
459 814589c4 Paolo Bonzini
scsi_req_cancel(int target, int lun, int tag) "target %d lun %d tag %d"
460 47f08d7a Lluís
scsi_req_data(int target, int lun, int tag, int len) "target %d lun %d tag %d len %d"
461 e88c591d Paolo Bonzini
scsi_req_data_canceled(int target, int lun, int tag, int len) "target %d lun %d tag %d len %d"
462 47f08d7a Lluís
scsi_req_dequeue(int target, int lun, int tag) "target %d lun %d tag %d"
463 47f08d7a Lluís
scsi_req_continue(int target, int lun, int tag) "target %d lun %d tag %d"
464 6f6710aa Paolo Bonzini
scsi_req_continue_canceled(int target, int lun, int tag) "target %d lun %d tag %d"
465 47f08d7a Lluís
scsi_req_parsed(int target, int lun, int tag, int cmd, int mode, int xfer) "target %d lun %d tag %d command %d dir %d length %d"
466 689d7e2f Stefan Hajnoczi
scsi_req_parsed_lba(int target, int lun, int tag, int cmd, uint64_t lba) "target %d lun %d tag %d command %d lba %"PRIu64
467 47f08d7a Lluís
scsi_req_parse_bad(int target, int lun, int tag, int cmd) "target %d lun %d tag %d command %d"
468 47f08d7a Lluís
scsi_req_build_sense(int target, int lun, int tag, int key, int asc, int ascq) "target %d lun %d tag %d key %#02x asc %#02x ascq %#02x"
469 e48e84ea Paolo Bonzini
scsi_device_set_ua(int target, int lun, int key, int asc, int ascq) "target %d lun %d key %#02x asc %#02x ascq %#02x"
470 47f08d7a Lluís
scsi_report_luns(int target, int lun, int tag) "target %d lun %d tag %d"
471 47f08d7a Lluís
scsi_inquiry(int target, int lun, int tag, int cdb1, int cdb2) "target %d lun %d tag %d page %#02x/%#02x"
472 47f08d7a Lluís
scsi_test_unit_ready(int target, int lun, int tag) "target %d lun %d tag %d"
473 47f08d7a Lluís
scsi_request_sense(int target, int lun, int tag) "target %d lun %d tag %d"
474 5138efec Paolo Bonzini
475 94b0b5ff Stefan Hajnoczi
# vl.c
476 47f08d7a Lluís
vm_state_notify(int running, int reason) "running %d reason %d"
477 4524051c Gerd Hoffmann
load_file(const char *name, const char *path) "name %s location %s"
478 7e866003 Kazuya Saito
runstate_set(int new_state) "new state %d"
479 298800ca Stefan Hajnoczi
480 3cce16f4 Kevin Wolf
# block/qcow2.c
481 3cce16f4 Kevin Wolf
qcow2_writev_start_req(void *co, int64_t sector, int nb_sectors) "co %p sector %" PRIx64 " nb_sectors %d"
482 3cce16f4 Kevin Wolf
qcow2_writev_done_req(void *co, int ret) "co %p ret %d"
483 3cce16f4 Kevin Wolf
qcow2_writev_start_part(void *co) "co %p"
484 3cce16f4 Kevin Wolf
qcow2_writev_done_part(void *co, int cur_nr_sectors) "co %p cur_nr_sectors %d"
485 3cce16f4 Kevin Wolf
qcow2_writev_data(void *co, uint64_t offset) "co %p offset %" PRIx64
486 3cce16f4 Kevin Wolf
487 3cce16f4 Kevin Wolf
qcow2_alloc_clusters_offset(void *co, uint64_t offset, int n_start, int n_end) "co %p offet %" PRIx64 " n_start %d n_end %d"
488 0af729ec Kevin Wolf
qcow2_handle_copied(void *co, uint64_t guest_offset, uint64_t host_offset, uint64_t bytes) "co %p guest_offet %" PRIx64 " host_offset %" PRIx64 " bytes %" PRIx64
489 10f0ed8b Kevin Wolf
qcow2_handle_alloc(void *co, uint64_t guest_offset, uint64_t host_offset, uint64_t bytes) "co %p guest_offet %" PRIx64 " host_offset %" PRIx64 " bytes %" PRIx64
490 250196f1 Kevin Wolf
qcow2_do_alloc_clusters_offset(void *co, uint64_t guest_offset, uint64_t host_offset, int nb_clusters) "co %p guest_offet %" PRIx64 " host_offset %" PRIx64 " nb_clusters %d"
491 3cce16f4 Kevin Wolf
qcow2_cluster_alloc_phys(void *co) "co %p"
492 3cce16f4 Kevin Wolf
qcow2_cluster_link_l2(void *co, int nb_clusters) "co %p nb_clusters %d"
493 3cce16f4 Kevin Wolf
494 3cce16f4 Kevin Wolf
qcow2_l2_allocate(void *bs, int l1_index) "bs %p l1_index %d"
495 3cce16f4 Kevin Wolf
qcow2_l2_allocate_get_empty(void *bs, int l1_index) "bs %p l1_index %d"
496 3cce16f4 Kevin Wolf
qcow2_l2_allocate_write_l2(void *bs, int l1_index) "bs %p l1_index %d"
497 3cce16f4 Kevin Wolf
qcow2_l2_allocate_write_l1(void *bs, int l1_index) "bs %p l1_index %d"
498 3cce16f4 Kevin Wolf
qcow2_l2_allocate_done(void *bs, int l1_index, int ret) "bs %p l1_index %d ret %d"
499 3cce16f4 Kevin Wolf
500 3cce16f4 Kevin Wolf
qcow2_cache_get(void *co, int c, uint64_t offset, bool read_from_disk) "co %p is_l2_cache %d offset %" PRIx64 " read_from_disk %d"
501 3cce16f4 Kevin Wolf
qcow2_cache_get_replace_entry(void *co, int c, int i) "co %p is_l2_cache %d index %d"
502 3cce16f4 Kevin Wolf
qcow2_cache_get_read(void *co, int c, int i) "co %p is_l2_cache %d index %d"
503 3cce16f4 Kevin Wolf
qcow2_cache_get_done(void *co, int c, int i) "co %p is_l2_cache %d index %d"
504 3cce16f4 Kevin Wolf
qcow2_cache_flush(void *co, int c) "co %p is_l2_cache %d"
505 3cce16f4 Kevin Wolf
qcow2_cache_entry_flush(void *co, int c, int i) "co %p is_l2_cache %d index %d"
506 3cce16f4 Kevin Wolf
507 298800ca Stefan Hajnoczi
# block/qed-l2-cache.c
508 47f08d7a Lluís
qed_alloc_l2_cache_entry(void *l2_cache, void *entry) "l2_cache %p entry %p"
509 47f08d7a Lluís
qed_unref_l2_cache_entry(void *entry, int ref) "entry %p ref %d"
510 47f08d7a Lluís
qed_find_l2_cache_entry(void *l2_cache, void *entry, uint64_t offset, int ref) "l2_cache %p entry %p offset %"PRIu64" ref %d"
511 298800ca Stefan Hajnoczi
512 298800ca Stefan Hajnoczi
# block/qed-table.c
513 47f08d7a Lluís
qed_read_table(void *s, uint64_t offset, void *table) "s %p offset %"PRIu64" table %p"
514 47f08d7a Lluís
qed_read_table_cb(void *s, void *table, int ret) "s %p table %p ret %d"
515 47f08d7a Lluís
qed_write_table(void *s, uint64_t offset, void *table, unsigned int index, unsigned int n) "s %p offset %"PRIu64" table %p index %u n %u"
516 47f08d7a Lluís
qed_write_table_cb(void *s, void *table, int flush, int ret) "s %p table %p flush %d ret %d"
517 eabba580 Stefan Hajnoczi
518 eabba580 Stefan Hajnoczi
# block/qed.c
519 47f08d7a Lluís
qed_need_check_timer_cb(void *s) "s %p"
520 47f08d7a Lluís
qed_start_need_check_timer(void *s) "s %p"
521 47f08d7a Lluís
qed_cancel_need_check_timer(void *s) "s %p"
522 47f08d7a Lluís
qed_aio_complete(void *s, void *acb, int ret) "s %p acb %p ret %d"
523 6e4f59bd Stefan Hajnoczi
qed_aio_setup(void *s, void *acb, int64_t sector_num, int nb_sectors, void *opaque, int flags) "s %p acb %p sector_num %"PRId64" nb_sectors %d opaque %p flags %#x"
524 689d7e2f Stefan Hajnoczi
qed_aio_next_io(void *s, void *acb, int ret, uint64_t cur_pos) "s %p acb %p ret %d cur_pos %"PRIu64
525 47f08d7a Lluís
qed_aio_read_data(void *s, void *acb, int ret, uint64_t offset, size_t len) "s %p acb %p ret %d offset %"PRIu64" len %zu"
526 47f08d7a Lluís
qed_aio_write_data(void *s, void *acb, int ret, uint64_t offset, size_t len) "s %p acb %p ret %d offset %"PRIu64" len %zu"
527 689d7e2f Stefan Hajnoczi
qed_aio_write_prefill(void *s, void *acb, uint64_t start, size_t len, uint64_t offset) "s %p acb %p start %"PRIu64" len %zu offset %"PRIu64
528 689d7e2f Stefan Hajnoczi
qed_aio_write_postfill(void *s, void *acb, uint64_t start, size_t len, uint64_t offset) "s %p acb %p start %"PRIu64" len %zu offset %"PRIu64
529 47f08d7a Lluís
qed_aio_write_main(void *s, void *acb, int ret, uint64_t offset, size_t len) "s %p acb %p ret %d offset %"PRIu64" len %zu"
530 0f3a4a01 Fabien Chouteau
531 b213b370 Hervé Poussineau
# hw/g364fb.c
532 47f08d7a Lluís
g364fb_read(uint64_t addr, uint32_t val) "read addr=0x%"PRIx64": 0x%x"
533 47f08d7a Lluís
g364fb_write(uint64_t addr, uint32_t new) "write addr=0x%"PRIx64": 0x%x"
534 b213b370 Hervé Poussineau
535 0f3a4a01 Fabien Chouteau
# hw/grlib_gptimer.c
536 47f08d7a Lluís
grlib_gptimer_enable(int id, uint32_t count) "timer:%d set count 0x%x and run"
537 47f08d7a Lluís
grlib_gptimer_disabled(int id, uint32_t config) "timer:%d Timer disable config 0x%x"
538 47f08d7a Lluís
grlib_gptimer_restart(int id, uint32_t reload) "timer:%d reload val: 0x%x"
539 47f08d7a Lluís
grlib_gptimer_set_scaler(uint32_t scaler, uint32_t freq) "scaler:0x%x freq: 0x%x"
540 47f08d7a Lluís
grlib_gptimer_hit(int id) "timer:%d HIT"
541 47f08d7a Lluís
grlib_gptimer_readl(int id, uint64_t addr, uint32_t val) "timer:%d addr 0x%"PRIx64" 0x%x"
542 47f08d7a Lluís
grlib_gptimer_writel(int id, uint64_t addr, uint32_t val) "timer:%d addr 0x%"PRIx64" 0x%x"
543 3f10bcbb Fabien Chouteau
544 3f10bcbb Fabien Chouteau
# hw/grlib_irqmp.c
545 2f4a725b Stefan Hajnoczi
grlib_irqmp_check_irqs(uint32_t pend, uint32_t force, uint32_t mask, uint32_t lvl1, uint32_t lvl2) "pend:0x%04x force:0x%04x mask:0x%04x lvl1:0x%04x lvl0:0x%04x"
546 47f08d7a Lluís
grlib_irqmp_ack(int intno) "interrupt:%d"
547 47f08d7a Lluís
grlib_irqmp_set_irq(int irq) "Raise CPU IRQ %d"
548 689d7e2f Stefan Hajnoczi
grlib_irqmp_readl_unknown(uint64_t addr) "addr 0x%"PRIx64
549 47f08d7a Lluís
grlib_irqmp_writel_unknown(uint64_t addr, uint32_t value) "addr 0x%"PRIx64" value 0x%x"
550 8b1e1320 Fabien Chouteau
551 8b1e1320 Fabien Chouteau
# hw/grlib_apbuart.c
552 47f08d7a Lluís
grlib_apbuart_event(int event) "event:%d"
553 47f08d7a Lluís
grlib_apbuart_writel_unknown(uint64_t addr, uint32_t value) "addr 0x%"PRIx64" value 0x%x"
554 0c685d28 Fabien Chouteau
grlib_apbuart_readl_unknown(uint64_t addr) "addr 0x%"PRIx64""
555 b04d9890 Fabien Chouteau
556 b04d9890 Fabien Chouteau
# hw/leon3.c
557 47f08d7a Lluís
leon3_set_irq(int intno) "Set CPU IRQ %d"
558 47f08d7a Lluís
leon3_reset_irq(int intno) "Reset CPU IRQ %d"
559 9363ee31 Anthony Liguori
560 cbcc6336 Alon Levy
# spice-qemu-char.c
561 47f08d7a Lluís
spice_vmc_write(ssize_t out, int len) "spice wrottn %zd of requested %d"
562 47f08d7a Lluís
spice_vmc_read(int bytes, int len) "spice read %d of requested %d"
563 47f08d7a Lluís
spice_vmc_register_interface(void *scd) "spice vmc registered interface %p"
564 47f08d7a Lluís
spice_vmc_unregister_interface(void *scd) "spice vmc unregistered interface %p"
565 5a49d3e9 Marc-André Lureau
spice_vmc_event(int event) "spice vmc event %d"
566 4ef66fa7 Michael Walle
567 4ef66fa7 Michael Walle
# hw/lm32_pic.c
568 47f08d7a Lluís
lm32_pic_raise_irq(void) "Raise CPU interrupt"
569 47f08d7a Lluís
lm32_pic_lower_irq(void) "Lower CPU interrupt"
570 47f08d7a Lluís
lm32_pic_interrupt(int irq, int level) "Set IRQ%d %d"
571 47f08d7a Lluís
lm32_pic_set_im(uint32_t im) "im 0x%08x"
572 47f08d7a Lluís
lm32_pic_set_ip(uint32_t ip) "ip 0x%08x"
573 47f08d7a Lluís
lm32_pic_get_im(uint32_t im) "im 0x%08x"
574 47f08d7a Lluís
lm32_pic_get_ip(uint32_t ip) "ip 0x%08x"
575 15d7dc4f Michael Walle
576 15d7dc4f Michael Walle
# hw/lm32_juart.c
577 47f08d7a Lluís
lm32_juart_get_jtx(uint32_t value) "jtx 0x%08x"
578 47f08d7a Lluís
lm32_juart_set_jtx(uint32_t value) "jtx 0x%08x"
579 47f08d7a Lluís
lm32_juart_get_jrx(uint32_t value) "jrx 0x%08x"
580 47f08d7a Lluís
lm32_juart_set_jrx(uint32_t value) "jrx 0x%08x"
581 ea7924dc Michael Walle
582 ea7924dc Michael Walle
# hw/lm32_timer.c
583 47f08d7a Lluís
lm32_timer_memory_write(uint32_t addr, uint32_t value) "addr 0x%08x value 0x%08x"
584 47f08d7a Lluís
lm32_timer_memory_read(uint32_t addr, uint32_t value) "addr 0x%08x value 0x%08x"
585 47f08d7a Lluís
lm32_timer_hit(void) "timer hit"
586 47f08d7a Lluís
lm32_timer_irq_state(int level) "irq state %d"
587 770ae571 Michael Walle
588 770ae571 Michael Walle
# hw/lm32_uart.c
589 47f08d7a Lluís
lm32_uart_memory_write(uint32_t addr, uint32_t value) "addr 0x%08x value 0x%08x"
590 47f08d7a Lluís
lm32_uart_memory_read(uint32_t addr, uint32_t value) "addr 0x%08x value 0x%08x"
591 47f08d7a Lluís
lm32_uart_irq_state(int level) "irq state %d"
592 f19410ca Michael Walle
593 f19410ca Michael Walle
# hw/lm32_sys.c
594 47f08d7a Lluís
lm32_sys_memory_write(uint32_t addr, uint32_t value) "addr 0x%08x value 0x%08x"
595 25a8bb96 Michael Walle
596 e8f943c3 Hannes Reinecke
# hw/megasas.c
597 e8f943c3 Hannes Reinecke
megasas_init_firmware(uint64_t pa) "pa %" PRIx64 " "
598 e8f943c3 Hannes Reinecke
megasas_init_queue(uint64_t queue_pa, int queue_len, uint64_t head, uint64_t tail, uint32_t flags) "queue at %" PRIx64 " len %d head %" PRIx64 " tail %" PRIx64 " flags %x"
599 e8f943c3 Hannes Reinecke
megasas_initq_map_failed(int frame) "scmd %d: failed to map queue"
600 e8f943c3 Hannes Reinecke
megasas_initq_mismatch(int queue_len, int fw_cmds) "queue size %d max fw cmds %d"
601 e8f943c3 Hannes Reinecke
megasas_qf_found(unsigned int index, uint64_t pa) "found mapped frame %x pa %" PRIx64 ""
602 e8f943c3 Hannes Reinecke
megasas_qf_new(unsigned int index, void *cmd) "return new frame %x cmd %p"
603 e8f943c3 Hannes Reinecke
megasas_qf_failed(unsigned long pa) "all frames busy for frame %lx"
604 e8f943c3 Hannes Reinecke
megasas_qf_enqueue(unsigned int index, unsigned int count, uint64_t context, unsigned int tail, int busy) "enqueue frame %x count %d context %" PRIx64 " tail %x busy %d"
605 e8f943c3 Hannes Reinecke
megasas_qf_update(unsigned int head, unsigned int busy) "update reply queue head %x busy %d"
606 e8f943c3 Hannes Reinecke
megasas_qf_dequeue(unsigned int index) "dequeue frame %x"
607 e8f943c3 Hannes Reinecke
megasas_qf_map_failed(int cmd, unsigned long frame) "scmd %d: frame %lu"
608 e8f943c3 Hannes Reinecke
megasas_qf_complete_noirq(uint64_t context) "context %" PRIx64 " "
609 e8f943c3 Hannes Reinecke
megasas_qf_complete(uint64_t context, unsigned int tail, unsigned int offset, int busy, unsigned int doorbell) "context %" PRIx64 " tail %x offset %d busy %d doorbell %x"
610 e8f943c3 Hannes Reinecke
megasas_handle_frame(const char *cmd, uint64_t addr, uint64_t context, uint32_t count) "MFI cmd %s addr %" PRIx64 " context %" PRIx64 " count %d"
611 e8f943c3 Hannes Reinecke
megasas_frame_busy(uint64_t addr) "frame %" PRIx64 " busy"
612 e8f943c3 Hannes Reinecke
megasas_unhandled_frame_cmd(int cmd, uint8_t frame_cmd) "scmd %d: Unhandled MFI cmd %x"
613 e8f943c3 Hannes Reinecke
megasas_handle_scsi(const char *frame, int bus, int dev, int lun, void *sdev, unsigned long size) "%s dev %x/%x/%x sdev %p xfer %lu"
614 e8f943c3 Hannes Reinecke
megasas_scsi_target_not_present(const char *frame, int bus, int dev, int lun) "%s dev %x/%x/%x target not present"
615 e8f943c3 Hannes Reinecke
megasas_scsi_invalid_cdb_len(const char *frame, int bus, int dev, int lun, int len) "%s dev %x/%x/%x invalid cdb len %d"
616 e8f943c3 Hannes Reinecke
megasas_iov_read_overflow(int cmd, int bytes, int len) "scmd %d: %d/%d bytes"
617 e8f943c3 Hannes Reinecke
megasas_iov_write_overflow(int cmd, int bytes, int len) "scmd %d: %d/%d bytes"
618 e8f943c3 Hannes Reinecke
megasas_iov_read_underflow(int cmd, int bytes, int len) "scmd %d: %d/%d bytes"
619 e8f943c3 Hannes Reinecke
megasas_iov_write_underflow(int cmd, int bytes, int len) "scmd %d: %d/%d bytes"
620 e8f943c3 Hannes Reinecke
megasas_scsi_req_alloc_failed(const char *frame, int dev, int lun) "%s dev %x/%x req allocation failed"
621 e8f943c3 Hannes Reinecke
megasas_scsi_read_start(int cmd, int len) "scmd %d: transfer %d bytes of data"
622 e8f943c3 Hannes Reinecke
megasas_scsi_write_start(int cmd, int len) "scmd %d: transfer %d bytes of data"
623 e8f943c3 Hannes Reinecke
megasas_scsi_nodata(int cmd) "scmd %d: no data to be transferred"
624 e8f943c3 Hannes Reinecke
megasas_scsi_complete(int cmd, uint32_t status, int len, int xfer) "scmd %d: finished with status %x, len %u/%u"
625 e8f943c3 Hannes Reinecke
megasas_command_complete(int cmd, uint32_t status, uint32_t resid) "scmd %d: command completed, status %x, residual %d"
626 e8f943c3 Hannes Reinecke
megasas_handle_io(int cmd, const char *frame, int dev, int lun, unsigned long lba, unsigned long count) "scmd %d: %s dev %x/%x lba %lx count %lu"
627 e8f943c3 Hannes Reinecke
megasas_io_target_not_present(int cmd, const char *frame, int dev, int lun) "scmd %d: %s dev 1/%x/%x LUN not present"
628 e8f943c3 Hannes Reinecke
megasas_io_read_start(int cmd, unsigned long lba, unsigned long count, unsigned long len) "scmd %d: start LBA %lx %lu blocks (%lu bytes)"
629 e8f943c3 Hannes Reinecke
megasas_io_write_start(int cmd, unsigned long lba, unsigned long count, unsigned long len) "scmd %d: start LBA %lx %lu blocks (%lu bytes)"
630 e8f943c3 Hannes Reinecke
megasas_io_complete(int cmd, uint32_t len) "scmd %d: %d bytes completed"
631 e8f943c3 Hannes Reinecke
megasas_io_read(int cmd, int bytes, int len, unsigned long offset) "scmd %d: %d/%d bytes, iov offset %lu"
632 e8f943c3 Hannes Reinecke
megasas_io_write(int cmd, int bytes, int len, unsigned long offset) "scmd %d: %d/%d bytes, iov offset %lu"
633 e8f943c3 Hannes Reinecke
megasas_io_continue(int cmd, int bytes) "scmd %d: %d bytes left"
634 e8f943c3 Hannes Reinecke
megasas_iovec_map_failed(int cmd, int index, unsigned long iov_size) "scmd %d: iovec %d size %lu"
635 e8f943c3 Hannes Reinecke
megasas_iovec_sgl_overflow(int cmd, int index, int limit) "scmd %d: iovec count %d limit %d"
636 e8f943c3 Hannes Reinecke
megasas_iovec_sgl_underflow(int cmd, int index) "scmd %d: iovec count %d"
637 e8f943c3 Hannes Reinecke
megasas_iovec_sgl_invalid(int cmd, int index, uint64_t pa, uint32_t len) "scmd %d: element %d pa %" PRIx64 " len %u"
638 e8f943c3 Hannes Reinecke
megasas_iovec_overflow(int cmd, int len, int limit) "scmd %d: len %d limit %d"
639 e8f943c3 Hannes Reinecke
megasas_iovec_underflow(int cmd, int len, int limit) "scmd %d: len %d limit %d"
640 e8f943c3 Hannes Reinecke
megasas_handle_dcmd(int cmd, int opcode) "scmd %d: MFI DCMD opcode %x"
641 e8f943c3 Hannes Reinecke
megasas_finish_dcmd(int cmd, int size) "scmd %d: MFI DCMD wrote %d bytes"
642 e8f943c3 Hannes Reinecke
megasas_dcmd_req_alloc_failed(int cmd, const char *desc) "scmd %d: %s alloc failed"
643 e8f943c3 Hannes Reinecke
megasas_dcmd_internal_submit(int cmd, const char *desc, int dev) "scmd %d: %s to dev %d"
644 e8f943c3 Hannes Reinecke
megasas_dcmd_internal_finish(int cmd, int opcode, int lun) "scmd %d: DCMD finish internal cmd %x lun %d"
645 e8f943c3 Hannes Reinecke
megasas_dcmd_internal_invalid(int cmd, int opcode) "scmd %d: Invalid internal DCMD %x"
646 e8f943c3 Hannes Reinecke
megasas_dcmd_unhandled(int cmd, int opcode, int len) "scmd %d: opcode %x, len %d"
647 e8f943c3 Hannes Reinecke
megasas_dcmd_zero_sge(int cmd) "scmd %d: zero DCMD sge count"
648 e8f943c3 Hannes Reinecke
megasas_dcmd_invalid_sge(int cmd, int count) "scmd %d: invalid DCMD sge count %d"
649 e8f943c3 Hannes Reinecke
megasas_dcmd_map_failed(int cmd) "scmd %d: Failed to map DCMD buffer"
650 e8f943c3 Hannes Reinecke
megasas_dcmd_invalid_xfer_len(int cmd, unsigned long size, unsigned long max) "scmd %d: invalid xfer len %ld, max %ld"
651 e8f943c3 Hannes Reinecke
megasas_dcmd_enter(int cmd, const char *dcmd, int len) "scmd %d: DCMD %s len %d"
652 e8f943c3 Hannes Reinecke
megasas_dcmd_dummy(int cmd, unsigned long size) "scmd %d: DCMD dummy xfer len %ld"
653 e8f943c3 Hannes Reinecke
megasas_dcmd_set_fw_time(int cmd, unsigned long time) "scmd %d: Set FW time %lx"
654 e8f943c3 Hannes Reinecke
megasas_dcmd_pd_get_list(int cmd, int num, int max, int offset) "scmd %d: DCMD PD get list: %d / %d PDs, size %d"
655 e8f943c3 Hannes Reinecke
megasas_dcmd_ld_get_list(int cmd, int num, int max) "scmd %d: DCMD LD get list: found %d / %d LDs"
656 e8f943c3 Hannes Reinecke
megasas_dcmd_ld_get_info(int cmd, int ld_id) "scmd %d: DCMD LD get info for dev %d"
657 e8f943c3 Hannes Reinecke
megasas_dcmd_pd_get_info(int cmd, int pd_id) "scmd %d: DCMD PD get info for dev %d"
658 e8f943c3 Hannes Reinecke
megasas_dcmd_pd_list_query(int cmd, int flags) "scmd %d: DCMD PD list query flags %x"
659 10d6530c Hannes Reinecke
megasas_dcmd_unsupported(int cmd, unsigned long size) "scmd %d: set properties len %ld"
660 e8f943c3 Hannes Reinecke
megasas_abort_frame(int cmd, int abort_cmd) "scmd %d: aborting frame %x"
661 e8f943c3 Hannes Reinecke
megasas_abort_no_cmd(int cmd, uint64_t context) "scmd %d: no active command for frame context %" PRIx64 ""
662 e8f943c3 Hannes Reinecke
megasas_abort_invalid_context(int cmd, uint64_t context, int abort_cmd) "scmd %d: invalid frame context %" PRIx64 " for abort frame %x"
663 e8f943c3 Hannes Reinecke
megasas_reset(void) "Reset"
664 e8f943c3 Hannes Reinecke
megasas_init(int sges, int cmds, const char *intr, const char *mode) "Using %d sges, %d cmds, %s, %s mode"
665 e8f943c3 Hannes Reinecke
megasas_msix_raise(int vector) "vector %d"
666 e8f943c3 Hannes Reinecke
megasas_irq_lower(void) "INTx"
667 e8f943c3 Hannes Reinecke
megasas_irq_raise(void) "INTx"
668 e8f943c3 Hannes Reinecke
megasas_intr_enabled(void) "Interrupts enabled"
669 e8f943c3 Hannes Reinecke
megasas_intr_disabled(void) "Interrupts disabled"
670 e8f943c3 Hannes Reinecke
megasas_mmio_readl(unsigned long addr, uint32_t val) "addr 0x%lx: 0x%x"
671 e8f943c3 Hannes Reinecke
megasas_mmio_invalid_readl(unsigned long addr) "addr 0x%lx"
672 e8f943c3 Hannes Reinecke
megasas_mmio_writel(uint32_t addr, uint32_t val) "addr 0x%x: 0x%x"
673 e8f943c3 Hannes Reinecke
megasas_mmio_invalid_writel(uint32_t addr, uint32_t val) "addr 0x%x: 0x%x"
674 e8f943c3 Hannes Reinecke
675 25a8bb96 Michael Walle
# hw/milkymist-ac97.c
676 47f08d7a Lluís
milkymist_ac97_memory_read(uint32_t addr, uint32_t value) "addr %08x value %08x"
677 47f08d7a Lluís
milkymist_ac97_memory_write(uint32_t addr, uint32_t value) "addr %08x value %08x"
678 47f08d7a Lluís
milkymist_ac97_pulse_irq_crrequest(void) "Pulse IRQ CR request"
679 47f08d7a Lluís
milkymist_ac97_pulse_irq_crreply(void) "Pulse IRQ CR reply"
680 47f08d7a Lluís
milkymist_ac97_pulse_irq_dmaw(void) "Pulse IRQ DMA write"
681 47f08d7a Lluís
milkymist_ac97_pulse_irq_dmar(void) "Pulse IRQ DMA read"
682 47f08d7a Lluís
milkymist_ac97_in_cb(int avail, uint32_t remaining) "avail %d remaining %u"
683 47f08d7a Lluís
milkymist_ac97_in_cb_transferred(int transferred) "transferred %d"
684 47f08d7a Lluís
milkymist_ac97_out_cb(int free, uint32_t remaining) "free %d remaining %u"
685 47f08d7a Lluís
milkymist_ac97_out_cb_transferred(int transferred) "transferred %d"
686 e4dc6d2c Michael Walle
687 e4dc6d2c Michael Walle
# hw/milkymist-hpdmc.c
688 47f08d7a Lluís
milkymist_hpdmc_memory_read(uint32_t addr, uint32_t value) "addr=%08x value=%08x"
689 47f08d7a Lluís
milkymist_hpdmc_memory_write(uint32_t addr, uint32_t value) "addr=%08x value=%08x"
690 b4e37d98 Michael Walle
691 b4e37d98 Michael Walle
# hw/milkymist-memcard.c
692 47f08d7a Lluís
milkymist_memcard_memory_read(uint32_t addr, uint32_t value) "addr %08x value %08x"
693 47f08d7a Lluís
milkymist_memcard_memory_write(uint32_t addr, uint32_t value) "addr %08x value %08x"
694 07424544 Michael Walle
695 57aa265d Michael Walle
# hw/milkymist-minimac2.c
696 47f08d7a Lluís
milkymist_minimac2_memory_read(uint32_t addr, uint32_t value) "addr %08x value %08x"
697 47f08d7a Lluís
milkymist_minimac2_memory_write(uint32_t addr, uint32_t value) "addr %08x value %08x"
698 47f08d7a Lluís
milkymist_minimac2_mdio_write(uint8_t phy_addr, uint8_t addr, uint16_t value) "phy_addr %02x addr %02x value %04x"
699 47f08d7a Lluís
milkymist_minimac2_mdio_read(uint8_t phy_addr, uint8_t addr, uint16_t value) "phy_addr %02x addr %02x value %04x"
700 47f08d7a Lluís
milkymist_minimac2_tx_frame(uint32_t length) "length %u"
701 47f08d7a Lluís
milkymist_minimac2_rx_frame(const void *buf, uint32_t length) "buf %p length %u"
702 47f08d7a Lluís
milkymist_minimac2_drop_rx_frame(const void *buf) "buf %p"
703 47f08d7a Lluís
milkymist_minimac2_rx_transfer(const void *buf, uint32_t length) "buf %p length %d"
704 47f08d7a Lluís
milkymist_minimac2_raise_irq_rx(void) "Raise IRQ RX"
705 47f08d7a Lluís
milkymist_minimac2_lower_irq_rx(void) "Lower IRQ RX"
706 47f08d7a Lluís
milkymist_minimac2_pulse_irq_tx(void) "Pulse IRQ TX"
707 5ee18b9c Michael Walle
708 5ee18b9c Michael Walle
# hw/milkymist-pfpu.c
709 47f08d7a Lluís
milkymist_pfpu_memory_read(uint32_t addr, uint32_t value) "addr %08x value %08x"
710 47f08d7a Lluís
milkymist_pfpu_memory_write(uint32_t addr, uint32_t value) "addr %08x value %08x"
711 47f08d7a Lluís
milkymist_pfpu_vectout(uint32_t a, uint32_t b, uint32_t dma_ptr) "a %08x b %08x dma_ptr %08x"
712 47f08d7a Lluís
milkymist_pfpu_pulse_irq(void) "Pulse IRQ"
713 87a381ec Michael Walle
714 87a381ec Michael Walle
# hw/milkymist-softusb.c
715 47f08d7a Lluís
milkymist_softusb_memory_read(uint32_t addr, uint32_t value) "addr %08x value %08x"
716 47f08d7a Lluís
milkymist_softusb_memory_write(uint32_t addr, uint32_t value) "addr %08x value %08x"
717 47f08d7a Lluís
milkymist_softusb_mevt(uint8_t m) "m %d"
718 47f08d7a Lluís
milkymist_softusb_kevt(uint8_t m) "m %d"
719 47f08d7a Lluís
milkymist_softusb_mouse_event(int dx, int dy, int dz, int bs) "dx %d dy %d dz %d bs %02x"
720 47f08d7a Lluís
milkymist_softusb_pulse_irq(void) "Pulse IRQ"
721 96832424 Michael Walle
722 96832424 Michael Walle
# hw/milkymist-sysctl.c
723 47f08d7a Lluís
milkymist_sysctl_memory_read(uint32_t addr, uint32_t value) "addr %08x value %08x"
724 47f08d7a Lluís
milkymist_sysctl_memory_write(uint32_t addr, uint32_t value) "addr %08x value %08x"
725 47f08d7a Lluís
milkymist_sysctl_icap_write(uint32_t value) "value %08x"
726 47f08d7a Lluís
milkymist_sysctl_start_timer0(void) "Start timer0"
727 47f08d7a Lluís
milkymist_sysctl_stop_timer0(void) "Stop timer0"
728 47f08d7a Lluís
milkymist_sysctl_start_timer1(void) "Start timer1"
729 47f08d7a Lluís
milkymist_sysctl_stop_timer1(void) "Stop timer1"
730 47f08d7a Lluís
milkymist_sysctl_pulse_irq_timer0(void) "Pulse IRQ Timer0"
731 47f08d7a Lluís
milkymist_sysctl_pulse_irq_timer1(void) "Pulse IRQ Timer1"
732 0670dadd Michael Walle
733 0670dadd Michael Walle
# hw/milkymist-tmu2.c
734 47f08d7a Lluís
milkymist_tmu2_memory_read(uint32_t addr, uint32_t value) "addr %08x value %08x"
735 47f08d7a Lluís
milkymist_tmu2_memory_write(uint32_t addr, uint32_t value) "addr %08x value %08x"
736 47f08d7a Lluís
milkymist_tmu2_start(void) "Start TMU"
737 47f08d7a Lluís
milkymist_tmu2_pulse_irq(void) "Pulse IRQ"
738 883de16b Michael Walle
739 883de16b Michael Walle
# hw/milkymist-uart.c
740 47f08d7a Lluís
milkymist_uart_memory_read(uint32_t addr, uint32_t value) "addr %08x value %08x"
741 47f08d7a Lluís
milkymist_uart_memory_write(uint32_t addr, uint32_t value) "addr %08x value %08x"
742 fcfa3397 Michael Walle
milkymist_uart_raise_irq(void) "Raise IRQ"
743 fcfa3397 Michael Walle
milkymist_uart_lower_irq(void) "Lower IRQ"
744 d23948b1 Michael Walle
745 d23948b1 Michael Walle
# hw/milkymist-vgafb.c
746 47f08d7a Lluís
milkymist_vgafb_memory_read(uint32_t addr, uint32_t value) "addr %08x value %08x"
747 47f08d7a Lluís
milkymist_vgafb_memory_write(uint32_t addr, uint32_t value) "addr %08x value %08x"
748 432d268c Jun Nakajima
749 83818f7c Hervé Poussineau
# hw/mipsnet.c
750 83818f7c Hervé Poussineau
mipsnet_send(uint32_t size) "sending len=%u"
751 83818f7c Hervé Poussineau
mipsnet_receive(uint32_t size) "receiving len=%u"
752 83818f7c Hervé Poussineau
mipsnet_read(uint64_t addr, uint32_t val) "read addr=0x%" PRIx64 " val=0x%x"
753 903ec8ea Paolo Bonzini
mipsnet_write(uint64_t addr, uint64_t val) "write addr=0x%" PRIx64 " val=0x%" PRIx64 ""
754 83818f7c Hervé Poussineau
mipsnet_irq(uint32_t isr, uint32_t intctl) "set irq to %d (%02x)"
755 83818f7c Hervé Poussineau
756 1ae41f44 Hervé Poussineau
# hw/pc87312.c
757 1ae41f44 Hervé Poussineau
pc87312_io_read(uint32_t addr, uint32_t val) "read addr=%x val=%x"
758 1ae41f44 Hervé Poussineau
pc87312_io_write(uint32_t addr, uint32_t val) "write addr=%x val=%x"
759 1ae41f44 Hervé Poussineau
pc87312_info_floppy(uint32_t base) "base 0x%x"
760 1ae41f44 Hervé Poussineau
pc87312_info_ide(uint32_t base) "base 0x%x"
761 1ae41f44 Hervé Poussineau
pc87312_info_parallel(uint32_t base, uint32_t irq) "base 0x%x, irq %u"
762 1ae41f44 Hervé Poussineau
pc87312_info_serial(int n, uint32_t base, uint32_t irq) "id=%d, base 0x%x, irq %u"
763 1ae41f44 Hervé Poussineau
764 432d268c Jun Nakajima
# xen-all.c
765 47f08d7a Lluís
xen_ram_alloc(unsigned long ram_addr, unsigned long size) "requested: %#lx, size %#lx"
766 20581d20 Avi Kivity
xen_client_set_memory(uint64_t start_addr, unsigned long size, bool log_dirty) "%#"PRIx64" size %#lx, log_dirty %i"
767 432d268c Jun Nakajima
768 432d268c Jun Nakajima
# xen-mapcache.c
769 689d7e2f Stefan Hajnoczi
xen_map_cache(uint64_t phys_addr) "want %#"PRIx64
770 689d7e2f Stefan Hajnoczi
xen_remap_bucket(uint64_t index) "index %#"PRIx64
771 47f08d7a Lluís
xen_map_cache_return(void* ptr) "%p"
772 689d7e2f Stefan Hajnoczi
xen_map_block(uint64_t phys_addr, uint64_t size) "%#"PRIx64", size %#"PRIx64
773 47f08d7a Lluís
xen_unmap_block(void* addr, unsigned long size) "%p, size %#lx"
774 050a0ddf Anthony PERARD
775 050a0ddf Anthony PERARD
# exec.c
776 47f08d7a Lluís
qemu_put_ram_ptr(void* addr) "%p"
777 01195b73 Steven Smith
778 01195b73 Steven Smith
# hw/xen_platform.c
779 47f08d7a Lluís
xen_platform_log(char *s) "xen platform: %s"
780 00dccaf1 Kevin Wolf
781 00dccaf1 Kevin Wolf
# qemu-coroutine.c
782 47f08d7a Lluís
qemu_coroutine_enter(void *from, void *to, void *opaque) "from %p to %p opaque %p"
783 47f08d7a Lluís
qemu_coroutine_yield(void *from, void *to) "from %p to %p"
784 47f08d7a Lluís
qemu_coroutine_terminate(void *co) "self %p"
785 b96e9247 Kevin Wolf
786 b96e9247 Kevin Wolf
# qemu-coroutine-lock.c
787 47f08d7a Lluís
qemu_co_queue_next_bh(void) ""
788 bfe24e1a Kevin Wolf
qemu_co_queue_next(void *nxt) "next %p"
789 47f08d7a Lluís
qemu_co_mutex_lock_entry(void *mutex, void *self) "mutex %p self %p"
790 47f08d7a Lluís
qemu_co_mutex_lock_return(void *mutex, void *self) "mutex %p self %p"
791 47f08d7a Lluís
qemu_co_mutex_unlock_entry(void *mutex, void *self) "mutex %p self %p"
792 47f08d7a Lluís
qemu_co_mutex_unlock_return(void *mutex, void *self) "mutex %p self %p"
793 30c2f238 Blue Swirl
794 30c2f238 Blue Swirl
# hw/escc.c
795 47f08d7a Lluís
escc_put_queue(char channel, int b) "channel %c put: 0x%02x"
796 47f08d7a Lluís
escc_get_queue(char channel, int val) "channel %c get 0x%02x"
797 47f08d7a Lluís
escc_update_irq(int irq) "IRQ = %d"
798 47f08d7a Lluís
escc_update_parameters(char channel, int speed, int parity, int data_bits, int stop_bits) "channel %c: speed=%d parity=%c data=%d stop=%d"
799 47f08d7a Lluís
escc_mem_writeb_ctrl(char channel, uint32_t reg, uint32_t val) "Write channel %c, reg[%d] = %2.2x"
800 47f08d7a Lluís
escc_mem_writeb_data(char channel, uint32_t val) "Write channel %c, ch %d"
801 47f08d7a Lluís
escc_mem_readb_ctrl(char channel, uint32_t reg, uint8_t val) "Read channel %c, reg[%d] = %2.2x"
802 47f08d7a Lluís
escc_mem_readb_data(char channel, uint32_t ret) "Read channel %c, ch %d"
803 47f08d7a Lluís
escc_serial_receive_byte(char channel, int ch) "channel %c put ch %d"
804 47f08d7a Lluís
escc_sunkbd_event_in(int ch) "Untranslated keycode %2.2x"
805 47f08d7a Lluís
escc_sunkbd_event_out(int ch) "Translated keycode %2.2x"
806 47f08d7a Lluís
escc_kbd_command(int val) "Command %d"
807 47f08d7a Lluís
escc_sunmouse_event(int dx, int dy, int buttons_state) "dx=%d dy=%d buttons=%01x"
808 bf4b9889 Blue Swirl
809 c589b249 Ronnie Sahlberg
# block/iscsi.c
810 f4dfa67f Ronnie Sahlberg
iscsi_aio_write16_cb(void *iscsi, int status, void *acb, int canceled) "iscsi %p status %d acb %p canceled %d"
811 c589b249 Ronnie Sahlberg
iscsi_aio_writev(void *iscsi, int64_t sector_num, int nb_sectors, void *opaque, void *acb) "iscsi %p sector_num %"PRId64" nb_sectors %d opaque %p acb %p"
812 f4dfa67f Ronnie Sahlberg
iscsi_aio_read16_cb(void *iscsi, int status, void *acb, int canceled) "iscsi %p status %d acb %p canceled %d"
813 c589b249 Ronnie Sahlberg
iscsi_aio_readv(void *iscsi, int64_t sector_num, int nb_sectors, void *opaque, void *acb) "iscsi %p sector_num %"PRId64" nb_sectors %d opaque %p acb %p"
814 c589b249 Ronnie Sahlberg
815 bf4b9889 Blue Swirl
# hw/esp.c
816 3af4e9aa Hervé Poussineau
esp_error_fifo_overrun(void) "FIFO overrun"
817 3af4e9aa Hervé Poussineau
esp_error_unhandled_command(uint32_t val) "unhandled command (%2.2x)"
818 3af4e9aa Hervé Poussineau
esp_error_invalid_write(uint32_t val, uint32_t addr) "invalid write of 0x%02x at [0x%x]"
819 bf4b9889 Blue Swirl
esp_raise_irq(void) "Raise IRQ"
820 bf4b9889 Blue Swirl
esp_lower_irq(void) "Lower IRQ"
821 bf4b9889 Blue Swirl
esp_dma_enable(void) "Raise enable"
822 bf4b9889 Blue Swirl
esp_dma_disable(void) "Lower enable"
823 bf4b9889 Blue Swirl
esp_get_cmd(uint32_t dmalen, int target) "len %d target %d"
824 bf4b9889 Blue Swirl
esp_do_busid_cmd(uint8_t busid) "busid 0x%x"
825 bf4b9889 Blue Swirl
esp_handle_satn_stop(uint32_t cmdlen) "cmdlen %d"
826 bf4b9889 Blue Swirl
esp_write_response(uint32_t status) "Transfer status (status=%d)"
827 bf4b9889 Blue Swirl
esp_do_dma(uint32_t cmdlen, uint32_t len) "command len %d + %d"
828 bf4b9889 Blue Swirl
esp_command_complete(void) "SCSI Command complete"
829 bf4b9889 Blue Swirl
esp_command_complete_unexpected(void) "SCSI command completed unexpectedly"
830 bf4b9889 Blue Swirl
esp_command_complete_fail(void) "Command failed"
831 bf4b9889 Blue Swirl
esp_transfer_data(uint32_t dma_left, int32_t ti_size) "transfer %d/%d"
832 bf4b9889 Blue Swirl
esp_handle_ti(uint32_t minlen) "Transfer Information len %d"
833 bf4b9889 Blue Swirl
esp_handle_ti_cmd(uint32_t cmdlen) "command len %d"
834 bf4b9889 Blue Swirl
esp_mem_readb(uint32_t saddr, uint8_t reg) "reg[%d]: 0x%2.2x"
835 bf4b9889 Blue Swirl
esp_mem_writeb(uint32_t saddr, uint8_t reg, uint32_t val) "reg[%d]: 0x%2.2x -> 0x%2.2x"
836 bf4b9889 Blue Swirl
esp_mem_writeb_cmd_nop(uint32_t val) "NOP (%2.2x)"
837 bf4b9889 Blue Swirl
esp_mem_writeb_cmd_flush(uint32_t val) "Flush FIFO (%2.2x)"
838 bf4b9889 Blue Swirl
esp_mem_writeb_cmd_reset(uint32_t val) "Chip reset (%2.2x)"
839 bf4b9889 Blue Swirl
esp_mem_writeb_cmd_bus_reset(uint32_t val) "Bus reset (%2.2x)"
840 bf4b9889 Blue Swirl
esp_mem_writeb_cmd_iccs(uint32_t val) "Initiator Command Complete Sequence (%2.2x)"
841 bf4b9889 Blue Swirl
esp_mem_writeb_cmd_msgacc(uint32_t val) "Message Accepted (%2.2x)"
842 bf4b9889 Blue Swirl
esp_mem_writeb_cmd_pad(uint32_t val) "Transfer padding (%2.2x)"
843 bf4b9889 Blue Swirl
esp_mem_writeb_cmd_satn(uint32_t val) "Set ATN (%2.2x)"
844 6915bff1 Hervé Poussineau
esp_mem_writeb_cmd_rstatn(uint32_t val) "Reset ATN (%2.2x)"
845 bf4b9889 Blue Swirl
esp_mem_writeb_cmd_sel(uint32_t val) "Select without ATN (%2.2x)"
846 bf4b9889 Blue Swirl
esp_mem_writeb_cmd_selatn(uint32_t val) "Select with ATN (%2.2x)"
847 bf4b9889 Blue Swirl
esp_mem_writeb_cmd_selatns(uint32_t val) "Select with ATN & stop (%2.2x)"
848 bf4b9889 Blue Swirl
esp_mem_writeb_cmd_ensel(uint32_t val) "Enable selection (%2.2x)"
849 6fe84c18 Hervé Poussineau
esp_mem_writeb_cmd_dissel(uint32_t val) "Disable selection (%2.2x)"
850 fabaaf1d Hervé Poussineau
esp_pci_error_invalid_dma_direction(void) "invalid DMA transfer direction"
851 fabaaf1d Hervé Poussineau
esp_pci_error_invalid_read(uint32_t reg) "read access outside bounds (reg 0x%x)"
852 fabaaf1d Hervé Poussineau
esp_pci_error_invalid_write(uint32_t reg) "write access outside bounds (reg 0x%x)"
853 fabaaf1d Hervé Poussineau
esp_pci_error_invalid_write_dma(uint32_t val, uint32_t addr) "invalid write of 0x%02x at [0x%x]"
854 fabaaf1d Hervé Poussineau
esp_pci_dma_read(uint32_t saddr, uint32_t reg) "reg[%d]: 0x%8.8x"
855 fabaaf1d Hervé Poussineau
esp_pci_dma_write(uint32_t saddr, uint32_t reg, uint32_t val) "reg[%d]: 0x%8.8x -> 0x%8.8x"
856 fabaaf1d Hervé Poussineau
esp_pci_dma_idle(uint32_t val) "IDLE (%.8x)"
857 fabaaf1d Hervé Poussineau
esp_pci_dma_blast(uint32_t val) "BLAST (%.8x)"
858 fabaaf1d Hervé Poussineau
esp_pci_dma_abort(uint32_t val) "ABORT (%.8x)"
859 fabaaf1d Hervé Poussineau
esp_pci_dma_start(uint32_t val) "START (%.8x)"
860 fabaaf1d Hervé Poussineau
esp_pci_sbac_read(uint32_t reg) "sbac: 0x%8.8x"
861 fabaaf1d Hervé Poussineau
esp_pci_sbac_write(uint32_t reg, uint32_t val) "sbac: 0x%8.8x -> 0x%8.8x"
862 89bd820a Stefan Hajnoczi
863 89bd820a Stefan Hajnoczi
# monitor.c
864 89bd820a Stefan Hajnoczi
handle_qmp_command(void *mon, const char *cmd_name) "mon %p cmd_name \"%s\""
865 89bd820a Stefan Hajnoczi
monitor_protocol_emitter(void *mon) "mon %p"
866 afeecec2 Daniel P. Berrange
monitor_protocol_event(uint32_t event, const char *evname, void *data) "event=%d name \"%s\" data %p"
867 afeecec2 Daniel P. Berrange
monitor_protocol_event_handler(uint32_t event, void *data, uint64_t last, uint64_t now) "event=%d data=%p last=%" PRId64 " now=%" PRId64
868 afeecec2 Daniel P. Berrange
monitor_protocol_event_emit(uint32_t event, void *data) "event=%d data=%p"
869 afeecec2 Daniel P. Berrange
monitor_protocol_event_queue(uint32_t event, void *data, uint64_t rate, uint64_t last, uint64_t now) "event=%d data=%p rate=%" PRId64 " last=%" PRId64 " now=%" PRId64
870 afeecec2 Daniel P. Berrange
monitor_protocol_event_throttle(uint32_t event, uint64_t rate) "event=%d rate=%" PRId64
871 342407fd Max Filippov
872 342407fd Max Filippov
# hw/opencores_eth.c
873 342407fd Max Filippov
open_eth_mii_write(unsigned idx, uint16_t v) "MII[%02x] <- %04x"
874 342407fd Max Filippov
open_eth_mii_read(unsigned idx, uint16_t v) "MII[%02x] -> %04x"
875 342407fd Max Filippov
open_eth_update_irq(uint32_t v) "IRQ <- %x"
876 342407fd Max Filippov
open_eth_receive(unsigned len) "RX: len: %u"
877 342407fd Max Filippov
open_eth_receive_mcast(unsigned idx, uint32_t h0, uint32_t h1) "MCAST: idx = %u, hash: %08x:%08x"
878 342407fd Max Filippov
open_eth_receive_reject(void) "RX: rejected"
879 342407fd Max Filippov
open_eth_receive_desc(uint32_t addr, uint32_t len_flags) "RX: %08x, len_flags: %08x"
880 342407fd Max Filippov
open_eth_start_xmit(uint32_t addr, unsigned len, unsigned tx_len) "TX: %08x, len: %u, tx_len: %u"
881 342407fd Max Filippov
open_eth_reg_read(uint32_t addr, uint32_t v) "MAC[%02x] -> %08x"
882 342407fd Max Filippov
open_eth_reg_write(uint32_t addr, uint32_t v) "MAC[%02x] <- %08x"
883 342407fd Max Filippov
open_eth_desc_read(uint32_t addr, uint32_t v) "DESC[%04x] -> %08x"
884 342407fd Max Filippov
open_eth_desc_write(uint32_t addr, uint32_t v) "DESC[%04x] <- %08x"
885 1f99b949 Anthony Liguori
886 c572f23a Harsh Prateek Bora
# hw/9pfs/virtio-9p.c
887 7999f7e1 Aneesh Kumar K.V
v9fs_rerror(uint16_t tag, uint8_t id, int err) "tag %d id %d err %d"
888 c572f23a Harsh Prateek Bora
v9fs_version(uint16_t tag, uint8_t id, int32_t msize, char* version) "tag %d id %d msize %d version %s"
889 c572f23a Harsh Prateek Bora
v9fs_version_return(uint16_t tag, uint8_t id, int32_t msize, char* version) "tag %d id %d msize %d version %s"
890 c76eaf13 Stefan Weil
v9fs_attach(uint16_t tag, uint8_t id, int32_t fid, int32_t afid, char* uname, char* aname) "tag %u id %u fid %d afid %d uname %s aname %s"
891 c572f23a Harsh Prateek Bora
v9fs_attach_return(uint16_t tag, uint8_t id, int8_t type, int32_t version, int64_t path) "tag %d id %d type %d version %d path %"PRId64""
892 c572f23a Harsh Prateek Bora
v9fs_stat(uint16_t tag, uint8_t id, int32_t fid) "tag %d id %d fid %d"
893 c572f23a Harsh Prateek Bora
v9fs_stat_return(uint16_t tag, uint8_t id, int32_t mode, int32_t atime, int32_t mtime, int64_t length) "tag %d id %d stat={mode %d atime %d mtime %d length %"PRId64"}"
894 c572f23a Harsh Prateek Bora
v9fs_getattr(uint16_t tag, uint8_t id, int32_t fid, uint64_t request_mask) "tag %d id %d fid %d request_mask %"PRIu64""
895 c572f23a Harsh Prateek Bora
v9fs_getattr_return(uint16_t tag, uint8_t id, uint64_t result_mask, uint32_t mode, uint32_t uid, uint32_t gid) "tag %d id %d getattr={result_mask %"PRId64" mode %u uid %u gid %u}"
896 c572f23a Harsh Prateek Bora
v9fs_walk(uint16_t tag, uint8_t id, int32_t fid, int32_t newfid, uint16_t nwnames) "tag %d id %d fid %d newfid %d nwnames %d"
897 c572f23a Harsh Prateek Bora
v9fs_walk_return(uint16_t tag, uint8_t id, uint16_t nwnames, void* qids) "tag %d id %d nwnames %d qids %p"
898 c572f23a Harsh Prateek Bora
v9fs_open(uint16_t tag, uint8_t id, int32_t fid, int32_t mode) "tag %d id %d fid %d mode %d"
899 c572f23a Harsh Prateek Bora
v9fs_open_return(uint16_t tag, uint8_t id, int8_t type, int32_t version, int64_t path, int iounit) "tag %d id %d qid={type %d version %d path %"PRId64"} iounit %d"
900 c572f23a Harsh Prateek Bora
v9fs_lcreate(uint16_t tag, uint8_t id, int32_t dfid, int32_t flags, int32_t mode, uint32_t gid) "tag %d id %d dfid %d flags %d mode %d gid %u"
901 c572f23a Harsh Prateek Bora
v9fs_lcreate_return(uint16_t tag, uint8_t id, int8_t type, int32_t version, int64_t path, int32_t iounit) "tag %d id %d qid={type %d version %d path %"PRId64"} iounit %d"
902 c572f23a Harsh Prateek Bora
v9fs_fsync(uint16_t tag, uint8_t id, int32_t fid, int datasync) "tag %d id %d fid %d datasync %d"
903 c572f23a Harsh Prateek Bora
v9fs_clunk(uint16_t tag, uint8_t id, int32_t fid) "tag %d id %d fid %d"
904 2f008a8c Aneesh Kumar K.V
v9fs_read(uint16_t tag, uint8_t id, int32_t fid, uint64_t off, uint32_t max_count) "tag %d id %d fid %d off %"PRIu64" max_count %u"
905 c572f23a Harsh Prateek Bora
v9fs_read_return(uint16_t tag, uint8_t id, int32_t count, ssize_t err) "tag %d id %d count %d err %zd"
906 2f008a8c Aneesh Kumar K.V
v9fs_readdir(uint16_t tag, uint8_t id, int32_t fid, uint64_t offset, uint32_t max_count) "tag %d id %d fid %d offset %"PRIu64" max_count %u"
907 2f008a8c Aneesh Kumar K.V
v9fs_readdir_return(uint16_t tag, uint8_t id, uint32_t count, ssize_t retval) "tag %d id %d count %u retval %zd"
908 2f008a8c Aneesh Kumar K.V
v9fs_write(uint16_t tag, uint8_t id, int32_t fid, uint64_t off, uint32_t count, int cnt) "tag %d id %d fid %d off %"PRIu64" count %u cnt %d"
909 c572f23a Harsh Prateek Bora
v9fs_write_return(uint16_t tag, uint8_t id, int32_t total, ssize_t err) "tag %d id %d total %d err %zd"
910 c572f23a Harsh Prateek Bora
v9fs_create(uint16_t tag, uint8_t id, int32_t fid, char* name, int32_t perm, int8_t mode) "tag %d id %d fid %d name %s perm %d mode %d"
911 c572f23a Harsh Prateek Bora
v9fs_create_return(uint16_t tag, uint8_t id, int8_t type, int32_t version, int64_t path, int iounit) "tag %d id %d qid={type %d version %d path %"PRId64"} iounit %d"
912 c572f23a Harsh Prateek Bora
v9fs_symlink(uint16_t tag, uint8_t id, int32_t fid,  char* name, char* symname, uint32_t gid) "tag %d id %d fid %d name %s symname %s gid %u"
913 c572f23a Harsh Prateek Bora
v9fs_symlink_return(uint16_t tag, uint8_t id, int8_t type, int32_t version, int64_t path) "tag %d id %d qid={type %d version %d path %"PRId64"}"
914 c572f23a Harsh Prateek Bora
v9fs_flush(uint16_t tag, uint8_t id, int16_t flush_tag) "tag %d id %d flush_tag %d"
915 c572f23a Harsh Prateek Bora
v9fs_link(uint16_t tag, uint8_t id, int32_t dfid, int32_t oldfid, char* name) "tag %d id %d dfid %d oldfid %d name %s"
916 c572f23a Harsh Prateek Bora
v9fs_remove(uint16_t tag, uint8_t id, int32_t fid) "tag %d id %d fid %d"
917 c76eaf13 Stefan Weil
v9fs_wstat(uint16_t tag, uint8_t id, int32_t fid, int32_t mode, int32_t atime, int32_t mtime) "tag %u id %u fid %d stat={mode %d atime %d mtime %d}"
918 c572f23a Harsh Prateek Bora
v9fs_mknod(uint16_t tag, uint8_t id, int32_t fid, int mode, int major, int minor) "tag %d id %d fid %d mode %d major %d minor %d"
919 c572f23a Harsh Prateek Bora
v9fs_mknod_return(uint16_t tag, uint8_t id, int8_t type, int32_t version, int64_t path) "tag %d id %d qid={type %d version %d path %"PRId64"}"
920 c572f23a Harsh Prateek Bora
v9fs_lock(uint16_t tag, uint8_t id, int32_t fid, uint8_t type, uint64_t start, uint64_t length) "tag %d id %d fid %d type %d start %"PRIu64" length %"PRIu64""
921 c572f23a Harsh Prateek Bora
v9fs_lock_return(uint16_t tag, uint8_t id, int8_t status) "tag %d id %d status %d"
922 c572f23a Harsh Prateek Bora
v9fs_getlock(uint16_t tag, uint8_t id, int32_t fid, uint8_t type, uint64_t start, uint64_t length)"tag %d id %d fid %d type %d start %"PRIu64" length %"PRIu64""
923 c572f23a Harsh Prateek Bora
v9fs_getlock_return(uint16_t tag, uint8_t id, uint8_t type, uint64_t start, uint64_t length, uint32_t proc_id) "tag %d id %d type %d start %"PRIu64" length %"PRIu64" proc_id %u"
924 c76eaf13 Stefan Weil
v9fs_mkdir(uint16_t tag, uint8_t id, int32_t fid, char* name, int mode, uint32_t gid) "tag %u id %u fid %d name %s mode %d gid %u"
925 c76eaf13 Stefan Weil
v9fs_mkdir_return(uint16_t tag, uint8_t id, int8_t type, int32_t version, int64_t path, int err) "tag %u id %u qid={type %d version %d path %"PRId64"} err %d"
926 c572f23a Harsh Prateek Bora
v9fs_xattrwalk(uint16_t tag, uint8_t id, int32_t fid, int32_t newfid, char* name) "tag %d id %d fid %d newfid %d name %s"
927 c572f23a Harsh Prateek Bora
v9fs_xattrwalk_return(uint16_t tag, uint8_t id, int64_t size) "tag %d id %d size %"PRId64""
928 c572f23a Harsh Prateek Bora
v9fs_xattrcreate(uint16_t tag, uint8_t id, int32_t fid, char* name, int64_t size, int flags) "tag %d id %d fid %d name %s size %"PRId64" flags %d"
929 c572f23a Harsh Prateek Bora
v9fs_readlink(uint16_t tag, uint8_t id, int32_t fid) "tag %d id %d fid %d"
930 c572f23a Harsh Prateek Bora
v9fs_readlink_return(uint16_t tag, uint8_t id, char* target) "tag %d id %d name %s"
931 ec0ceb17 Blue Swirl
932 ec0ceb17 Blue Swirl
# target-sparc/mmu_helper.c
933 ec0ceb17 Blue Swirl
mmu_helper_dfault(uint64_t address, uint64_t context, int mmu_idx, uint32_t tl) "DFAULT at %"PRIx64" context %"PRIx64" mmu_idx=%d tl=%d"
934 ec0ceb17 Blue Swirl
mmu_helper_dprot(uint64_t address, uint64_t context, int mmu_idx, uint32_t tl) "DPROT at %"PRIx64" context %"PRIx64" mmu_idx=%d tl=%d"
935 ec0ceb17 Blue Swirl
mmu_helper_dmiss(uint64_t address, uint64_t context) "DMISS at %"PRIx64" context %"PRIx64""
936 ec0ceb17 Blue Swirl
mmu_helper_tfault(uint64_t address, uint64_t context) "TFAULT at %"PRIx64" context %"PRIx64""
937 ec0ceb17 Blue Swirl
mmu_helper_tmiss(uint64_t address, uint64_t context) "TMISS at %"PRIx64" context %"PRIx64""
938 ec0ceb17 Blue Swirl
mmu_helper_get_phys_addr_code(uint32_t tl, int mmu_idx, uint64_t prim_context, uint64_t sec_context, uint64_t address) "tl=%d mmu_idx=%d primary context=%"PRIx64" secondary context=%"PRIx64" address=%"PRIx64""
939 ec0ceb17 Blue Swirl
mmu_helper_get_phys_addr_data(uint32_t tl, int mmu_idx, uint64_t prim_context, uint64_t sec_context, uint64_t address) "tl=%d mmu_idx=%d primary context=%"PRIx64" secondary context=%"PRIx64" address=%"PRIx64""
940 ec0ceb17 Blue Swirl
mmu_helper_mmu_fault(uint64_t address, uint64_t paddr, int mmu_idx, uint32_t tl, uint64_t prim_context, uint64_t sec_context) "Translate at %"PRIx64" -> %"PRIx64", mmu_idx=%d tl=%d primary context=%"PRIx64" secondary context=%"PRIx64""
941 11e66bca Blue Swirl
942 11e66bca Blue Swirl
# target-sparc/int_helper.c
943 11e66bca Blue Swirl
int_helper_set_softint(uint32_t softint) "new %08x"
944 11e66bca Blue Swirl
int_helper_clear_softint(uint32_t softint) "new %08x"
945 11e66bca Blue Swirl
int_helper_write_softint(uint32_t softint) "new %08x"
946 11e66bca Blue Swirl
int_helper_icache_freeze(void) "Instruction cache: freeze"
947 11e66bca Blue Swirl
int_helper_dcache_freeze(void) "Data cache: freeze"
948 870be6ad Blue Swirl
949 870be6ad Blue Swirl
# target-sparc/win_helper.c
950 870be6ad Blue Swirl
win_helper_gregset_error(uint32_t pstate) "ERROR in get_gregset: active pstate bits=%x"
951 870be6ad Blue Swirl
win_helper_switch_pstate(uint32_t pstate_regs, uint32_t new_pstate_regs) "change_pstate: switching regs old=%x new=%x"
952 870be6ad Blue Swirl
win_helper_no_switch_pstate(uint32_t new_pstate_regs) "change_pstate: regs new=%x (unchanged)"
953 870be6ad Blue Swirl
win_helper_wrpil(uint32_t psrpil, uint32_t new_pil) "old=%x new=%x"
954 870be6ad Blue Swirl
win_helper_done(uint32_t tl) "tl=%d"
955 870be6ad Blue Swirl
win_helper_retry(uint32_t tl) "tl=%d"
956 c57c4658 Kevin Wolf
957 c57c4658 Kevin Wolf
# dma-helpers.c
958 c57c4658 Kevin Wolf
dma_bdrv_io(void *dbs, void *bs, int64_t sector_num, bool to_dev) "dbs=%p bs=%p sector_num=%" PRId64 " to_dev=%d"
959 c57c4658 Kevin Wolf
dma_aio_cancel(void *dbs) "dbs=%p"
960 c57c4658 Kevin Wolf
dma_complete(void *dbs, int ret, void *cb) "dbs=%p ret=%d cb=%p"
961 c57c4658 Kevin Wolf
dma_bdrv_cb(void *dbs, int ret) "dbs=%p ret=%d"
962 c57c4658 Kevin Wolf
dma_map_wait(void *dbs) "dbs=%p"
963 cdbc19dd Alon Levy
964 cdbc19dd Alon Levy
# console.h
965 437fe106 Gerd Hoffmann
console_gfx_new(void) ""
966 437fe106 Gerd Hoffmann
console_txt_new(int w, int h) "%dx%d"
967 437fe106 Gerd Hoffmann
console_select(int nr) "%d"
968 da229ef3 Gerd Hoffmann
displaysurface_create(void *display_surface, int w, int h) "surface=%p, %dx%d"
969 da229ef3 Gerd Hoffmann
displaysurface_create_from(void *display_surface, int w, int h, int bpp, int swap) "surface=%p, %dx%d, bpp %d, bswap %d"
970 da229ef3 Gerd Hoffmann
displaysurface_free(void *display_surface) "surface=%p"
971 7c20b4a3 Gerd Hoffmann
displaychangelistener_register(void *dcl, const char *name) "%p [ %s ]"
972 7c20b4a3 Gerd Hoffmann
displaychangelistener_unregister(void *dcl, const char *name) "%p [ %s ]"
973 72750018 Alon Levy
974 72750018 Alon Levy
# vga.c
975 72750018 Alon Levy
ppm_save(const char *filename, void *display_surface) "%s surface=%p"
976 7a6404cd Gerd Hoffmann
vmware_value_read(uint32_t index, uint32_t value) "index %d, value 0x%x"
977 7a6404cd Gerd Hoffmann
vmware_value_write(uint32_t index, uint32_t value) "index %d, value 0x%x"
978 7a6404cd Gerd Hoffmann
vmware_palette_read(uint32_t index, uint32_t value) "index %d, value 0x%x"
979 7a6404cd Gerd Hoffmann
vmware_palette_write(uint32_t index, uint32_t value) "index %d, value 0x%x"
980 7a6404cd Gerd Hoffmann
vmware_scratch_read(uint32_t index, uint32_t value) "index %d, value 0x%x"
981 7a6404cd Gerd Hoffmann
vmware_scratch_write(uint32_t index, uint32_t value) "index %d, value 0x%x"
982 eb2f9b02 Gerd Hoffmann
vmware_setmode(uint32_t w, uint32_t h, uint32_t bpp) "%dx%d @ %d bpp"
983 c480bb7d Alon Levy
984 517a13c9 Juan Quintela
# savevm.c
985 517a13c9 Juan Quintela
986 517a13c9 Juan Quintela
savevm_section_start(void) ""
987 517a13c9 Juan Quintela
savevm_section_end(unsigned int section_id) "section_id %u"
988 517a13c9 Juan Quintela
989 3c12193d Juan Quintela
# arch_init.c
990 3c12193d Juan Quintela
migration_bitmap_sync_start(void) ""
991 3c12193d Juan Quintela
migration_bitmap_sync_end(uint64_t dirty_pages) "dirty_pages %" PRIu64""
992 3c12193d Juan Quintela
993 c480bb7d Alon Levy
# hw/qxl.c
994 c480bb7d Alon Levy
disable qxl_interface_set_mm_time(int qid, uint32_t mm_time) "%d %d"
995 c480bb7d Alon Levy
disable qxl_io_write_vga(int qid, const char *mode, uint32_t addr, uint32_t val) "%d %s addr=%u val=%u"
996 95b752bc Stefan Weil
qxl_create_guest_primary(int qid, uint32_t width, uint32_t height, uint64_t mem, uint32_t format, uint32_t position) "%d %ux%u mem=%" PRIx64 " %u,%u"
997 c480bb7d Alon Levy
qxl_create_guest_primary_rest(int qid, int32_t stride, uint32_t type, uint32_t flags) "%d %d,%d,%d"
998 c480bb7d Alon Levy
qxl_destroy_primary(int qid) "%d"
999 c480bb7d Alon Levy
qxl_enter_vga_mode(int qid) "%d"
1000 c480bb7d Alon Levy
qxl_exit_vga_mode(int qid) "%d"
1001 c480bb7d Alon Levy
qxl_hard_reset(int qid, int64_t loadvm) "%d loadvm=%"PRId64""
1002 c480bb7d Alon Levy
qxl_interface_async_complete_io(int qid, uint32_t current_async, void *cookie) "%d current=%d cookie=%p"
1003 c480bb7d Alon Levy
qxl_interface_attach_worker(int qid) "%d"
1004 c480bb7d Alon Levy
qxl_interface_get_init_info(int qid) "%d"
1005 c480bb7d Alon Levy
qxl_interface_set_compression_level(int qid, int64_t level) "%d %"PRId64
1006 c480bb7d Alon Levy
qxl_interface_update_area_complete(int qid, uint32_t surface_id, uint32_t dirty_left, uint32_t dirty_right, uint32_t dirty_top, uint32_t dirty_bottom) "%d surface=%d [%d,%d,%d,%d]"
1007 c480bb7d Alon Levy
qxl_interface_update_area_complete_rest(int qid, uint32_t num_updated_rects) "%d #=%d"
1008 c480bb7d Alon Levy
qxl_interface_update_area_complete_overflow(int qid, int max) "%d max=%d"
1009 c480bb7d Alon Levy
qxl_interface_update_area_complete_schedule_bh(int qid, uint32_t num_dirty) "%d #dirty=%d"
1010 c480bb7d Alon Levy
qxl_io_destroy_primary_ignored(int qid, const char *mode) "%d %s"
1011 a639ab04 Alon Levy
qxl_io_log(int qid, const uint8_t *log_buf) "%d %s"
1012 c480bb7d Alon Levy
qxl_io_read_unexpected(int qid) "%d"
1013 917ae08c Alon Levy
qxl_io_unexpected_vga_mode(int qid, uint64_t addr, uint64_t val, const char *desc) "%d 0x%"PRIx64"=%"PRIu64" (%s)"
1014 c480bb7d Alon Levy
qxl_io_write(int qid, const char *mode, uint64_t addr, uint64_t val, unsigned size, int async) "%d %s addr=%"PRIu64 " val=%"PRIu64" size=%u async=%d"
1015 c480bb7d Alon Levy
qxl_memslot_add_guest(int qid, uint32_t slot_id, uint64_t guest_start, uint64_t guest_end) "%d %u: guest phys 0x%"PRIx64 " - 0x%" PRIx64
1016 c480bb7d Alon Levy
qxl_post_load(int qid, const char *mode) "%d %s"
1017 c480bb7d Alon Levy
qxl_pre_load(int qid) "%d"
1018 c480bb7d Alon Levy
qxl_pre_save(int qid) "%d"
1019 c480bb7d Alon Levy
qxl_reset_surfaces(int qid) "%d"
1020 c480bb7d Alon Levy
qxl_ring_command_check(int qid, const char *mode) "%d %s"
1021 c480bb7d Alon Levy
qxl_ring_command_get(int qid, const char *mode) "%d %s"
1022 c480bb7d Alon Levy
qxl_ring_command_req_notification(int qid) "%d"
1023 c480bb7d Alon Levy
qxl_ring_cursor_check(int qid, const char *mode) "%d %s"
1024 c480bb7d Alon Levy
qxl_ring_cursor_get(int qid, const char *mode) "%d %s"
1025 c480bb7d Alon Levy
qxl_ring_cursor_req_notification(int qid) "%d"
1026 c480bb7d Alon Levy
qxl_ring_res_push(int qid, const char *mode, uint32_t surface_count, uint32_t free_res, void *last_release, const char *notify) "%d %s s#=%d res#=%d last=%p notify=%s"
1027 c480bb7d Alon Levy
qxl_ring_res_push_rest(int qid, uint32_t ring_has, uint32_t ring_size, uint32_t prod, uint32_t cons) "%d ring %d/%d [%d,%d]"
1028 c480bb7d Alon Levy
qxl_ring_res_put(int qid, uint32_t free_res) "%d #res=%d"
1029 c480bb7d Alon Levy
qxl_set_mode(int qid, int modenr, uint32_t x_res, uint32_t y_res, uint32_t bits, uint64_t devmem) "%d mode=%d [ x=%d y=%d @ bpp=%d devmem=0x%" PRIx64 " ]"
1030 c480bb7d Alon Levy
qxl_soft_reset(int qid) "%d"
1031 c480bb7d Alon Levy
qemu_spice_add_memslot(int qid, uint32_t slot_id, unsigned long virt_start, unsigned long virt_end, int async) "%d %u: host virt 0x%lx - 0x%lx async=%d"
1032 c480bb7d Alon Levy
qemu_spice_del_memslot(int qid, uint32_t gid, uint32_t slot_id) "%d gid=%u sid=%u"
1033 c480bb7d Alon Levy
qemu_spice_create_primary_surface(int qid, uint32_t sid, void *surface, int async) "%d sid=%u surface=%p async=%d"
1034 c480bb7d Alon Levy
qemu_spice_destroy_primary_surface(int qid, uint32_t sid, int async) "%d sid=%u async=%d"
1035 c480bb7d Alon Levy
qemu_spice_wakeup(uint32_t qid) "%d"
1036 c480bb7d Alon Levy
qemu_spice_start(uint32_t qid) "%d"
1037 c480bb7d Alon Levy
qemu_spice_stop(uint32_t qid) "%d"
1038 c480bb7d Alon Levy
qemu_spice_create_update(uint32_t left, uint32_t right, uint32_t top, uint32_t bottom) "lr %d -> %d,  tb -> %d -> %d"
1039 c480bb7d Alon Levy
qxl_spice_destroy_surfaces_complete(int qid) "%d"
1040 c480bb7d Alon Levy
qxl_spice_destroy_surfaces(int qid, int async) "%d async=%d"
1041 c480bb7d Alon Levy
qxl_spice_destroy_surface_wait_complete(int qid, uint32_t id) "%d sid=%d"
1042 c480bb7d Alon Levy
qxl_spice_destroy_surface_wait(int qid, uint32_t id, int async) "%d sid=%d async=%d"
1043 c480bb7d Alon Levy
qxl_spice_flush_surfaces_async(int qid, uint32_t surface_count, uint32_t num_free_res) "%d s#=%d, res#=%d"
1044 917ae08c Alon Levy
qxl_spice_monitors_config(int qid) "%d"
1045 c480bb7d Alon Levy
qxl_spice_loadvm_commands(int qid, void *ext, uint32_t count) "%d ext=%p count=%d"
1046 c480bb7d Alon Levy
qxl_spice_oom(int qid) "%d"
1047 c480bb7d Alon Levy
qxl_spice_reset_cursor(int qid) "%d"
1048 c480bb7d Alon Levy
qxl_spice_reset_image_cache(int qid) "%d"
1049 c480bb7d Alon Levy
qxl_spice_reset_memslots(int qid) "%d"
1050 c480bb7d Alon Levy
qxl_spice_update_area(int qid, uint32_t surface_id, uint32_t left, uint32_t right, uint32_t top, uint32_t bottom) "%d sid=%d [%d,%d,%d,%d]"
1051 c480bb7d Alon Levy
qxl_spice_update_area_rest(int qid, uint32_t num_dirty_rects, uint32_t clear_dirty_region) "%d #d=%d clear=%d"
1052 c480bb7d Alon Levy
qxl_surfaces_dirty(int qid, int surface, int offset, int size) "%d surface=%d offset=%d size=%d"
1053 917ae08c Alon Levy
qxl_send_events(int qid, uint32_t events) "%d %d"
1054 511aefb0 Alon Levy
qxl_send_events_vm_stopped(int qid, uint32_t events) "%d %d"
1055 917ae08c Alon Levy
qxl_set_guest_bug(int qid) "%d"
1056 a639ab04 Alon Levy
qxl_interrupt_client_monitors_config(int qid, int num_heads, void *heads) "%d %d %p"
1057 a639ab04 Alon Levy
qxl_client_monitors_config_unsupported_by_guest(int qid, uint32_t int_mask, void *client_monitors_config) "%d %X %p"
1058 e0ac6097 Alon Levy
qxl_client_monitors_config_unsupported_by_device(int qid, int revision) "%d revision=%d"
1059 a639ab04 Alon Levy
qxl_client_monitors_config_capped(int qid, int requested, int limit) "%d %d %d"
1060 a639ab04 Alon Levy
qxl_client_monitors_config_crc(int qid, unsigned size, uint32_t crc32) "%d %u %u"
1061 e0ac6097 Alon Levy
qxl_set_client_capabilities_unsupported_by_revision(int qid, int revision) "%d revision=%d"
1062 d53291cf Alon Levy
1063 d53291cf Alon Levy
# hw/qxl-render.c
1064 d53291cf Alon Levy
qxl_render_blit_guest_primary_initialized(void) ""
1065 d53291cf Alon Levy
qxl_render_blit(int32_t stride, int32_t left, int32_t right, int32_t top, int32_t bottom) "stride=%d [%d, %d, %d, %d]"
1066 d53291cf Alon Levy
qxl_render_guest_primary_resized(int32_t width, int32_t height, int32_t stride, int32_t bytes_pp, int32_t bits_pp) "%dx%d, stride %d, bpp %d, depth %d"
1067 d53291cf Alon Levy
qxl_render_update_area_done(void *cookie) "%p"
1068 a2950fb6 Alexey Kardashevskiy
1069 a2950fb6 Alexey Kardashevskiy
# hw/spapr_pci.c
1070 0ee2c058 Alexey Kardashevskiy
spapr_pci_msi(const char *msg, uint32_t n, uint32_t ca) "%s (device#%d, cfg=%x)"
1071 0ee2c058 Alexey Kardashevskiy
spapr_pci_msi_setup(const char *name, unsigned vector, uint64_t addr) "dev\"%s\" vector %u, addr=%"PRIx64
1072 0ee2c058 Alexey Kardashevskiy
spapr_pci_rtas_ibm_change_msi(unsigned func, unsigned req) "func %u, requested %u"
1073 0ee2c058 Alexey Kardashevskiy
spapr_pci_rtas_ibm_query_interrupt_source_number(unsigned ioa, unsigned intr) "queries for #%u, IRQ%u"
1074 0ee2c058 Alexey Kardashevskiy
spapr_pci_msi_write(uint64_t addr, uint64_t data, uint32_t dt_irq) "@%"PRIx64"<=%"PRIx64" IRQ %u"
1075 a2950fb6 Alexey Kardashevskiy
spapr_pci_lsi_set(const char *busname, int pin, uint32_t irq) "%s PIN%d IRQ %u"
1076 500efa23 David Gibson
1077 500efa23 David Gibson
# hw/xics.c
1078 500efa23 David Gibson
xics_icp_check_ipi(int server, uint8_t mfrr) "CPU %d can take IPI mfrr=%#x"
1079 500efa23 David Gibson
xics_icp_accept(uint32_t old_xirr, uint32_t new_xirr) "icp_accept: XIRR %#"PRIx32"->%#"PRIx32
1080 500efa23 David Gibson
xics_icp_eoi(int server, uint32_t xirr, uint32_t new_xirr) "icp_eoi: server %d given XIRR %#"PRIx32" new XIRR %#"PRIx32
1081 500efa23 David Gibson
xics_icp_irq(int server, int nr, uint8_t priority) "cpu %d trying to deliver irq %#"PRIx32" priority %#x"
1082 500efa23 David Gibson
xics_icp_raise(uint32_t xirr, uint8_t pending_priority) "raising IRQ new XIRR=%#x new pending priority=%#x"
1083 500efa23 David Gibson
xics_set_irq_msi(int srcno, int nr) "set_irq_msi: srcno %d [irq %#x]"
1084 500efa23 David Gibson
xics_masked_pending(void) "set_irq_msi: masked pending"
1085 500efa23 David Gibson
xics_set_irq_lsi(int srcno, int nr) "set_irq_lsi: srcno %d [irq %#x]"
1086 500efa23 David Gibson
xics_ics_write_xive(int nr, int srcno, int server, uint8_t priority) "ics_write_xive: irq %#x [src %d] server %#x prio %#x"
1087 500efa23 David Gibson
xics_ics_reject(int nr, int srcno) "reject irq %#x [src %d]"
1088 500efa23 David Gibson
xics_ics_eoi(int nr) "ics_eoi: irq %#x"
1089 e7c033c3 Paolo Bonzini
1090 e7c033c3 Paolo Bonzini
# hbitmap.c
1091 e7c033c3 Paolo Bonzini
hbitmap_iter_skip_words(const void *hb, void *hbi, uint64_t pos, unsigned long cur) "hb %p hbi %p pos %"PRId64" cur 0x%lx"
1092 e7c033c3 Paolo Bonzini
hbitmap_reset(void *hb, uint64_t start, uint64_t count, uint64_t sbit, uint64_t ebit) "hb %p items %"PRIu64",%"PRIu64" bits %"PRIu64"..%"PRIu64
1093 e7c033c3 Paolo Bonzini
hbitmap_set(void *hb, uint64_t start, uint64_t count, uint64_t sbit, uint64_t ebit) "hb %p items %"PRIu64",%"PRIu64" bits %"PRIu64"..%"PRIu64
1094 7b18aad5 Cornelia Huck
1095 7b18aad5 Cornelia Huck
# target-s390x/ioinst.c
1096 7b18aad5 Cornelia Huck
ioinst(const char *insn) "IOINST: %s"
1097 7b18aad5 Cornelia Huck
ioinst_sch_id(const char *insn, int cssid, int ssid, int schid) "IOINST: %s (%x.%x.%04x)"
1098 7b18aad5 Cornelia Huck
ioinst_chp_id(const char *insn, int cssid, int chpid) "IOINST: %s (%x.%02x)"
1099 7b18aad5 Cornelia Huck
ioinst_chsc_cmd(uint16_t cmd, uint16_t len) "IOINST: chsc command %04x, len %04x"
1100 df1fe5bb Cornelia Huck
1101 df1fe5bb Cornelia Huck
# hw/s390x/css.c
1102 df1fe5bb Cornelia Huck
css_enable_facility(const char *facility) "CSS: enable %s"
1103 df1fe5bb Cornelia Huck
css_crw(uint8_t rsc, uint8_t erc, uint16_t rsid, const char *chained) "CSS: queueing crw: rsc=%x, erc=%x, rsid=%x %s"
1104 df1fe5bb Cornelia Huck
css_chpid_add(uint8_t cssid, uint8_t chpid, uint8_t type) "CSS: add chpid %x.%02x (type %02x)"
1105 df1fe5bb Cornelia Huck
css_new_image(uint8_t cssid, const char *default_cssid) "CSS: add css image %02x %s"
1106 df1fe5bb Cornelia Huck
css_assign_subch(const char *do_assign, uint8_t cssid, uint8_t ssid, uint16_t schid, uint16_t devno) "CSS: %s %x.%x.%04x (devno %04x)"
1107 df1fe5bb Cornelia Huck
css_io_interrupt(int cssid, int ssid, int schid, uint32_t intparm, uint8_t isc, const char *conditional) "CSS: I/O interrupt on sch %x.%x.%04x (intparm %08x, isc %x) %s"
1108 a5cf2bb4 Cornelia Huck
1109 a5cf2bb4 Cornelia Huck
# hw/s390x/virtio-ccw.c
1110 a5cf2bb4 Cornelia Huck
virtio_ccw_interpret_ccw(int cssid, int ssid, int schid, int cmd_code) "VIRTIO-CCW: %x.%x.%04x: interpret command %x"
1111 a5cf2bb4 Cornelia Huck
virtio_ccw_new_device(int cssid, int ssid, int schid, int devno, const char *devno_mode) "VIRTIO-CCW: add subchannel %x.%x.%04x, devno %04x (%s)"
1112 c09e5bb1 Kazuya Saito
1113 c09e5bb1 Kazuya Saito
# migration.c
1114 c09e5bb1 Kazuya Saito
migrate_set_state(int new_state) "new state %d"