Stefan Hajnoczi | 94a420b | 2010-05-22 17:52:39 +0100 | [diff] [blame] | 1 | # Trace events for debugging and performance instrumentation |
| 2 | # |
| 3 | # This file is processed by the tracetool script during the build. |
| 4 | # |
| 5 | # To add a new trace event: |
| 6 | # |
| 7 | # 1. Choose a name for the trace event. Declare its arguments and format |
| 8 | # string. |
| 9 | # |
| 10 | # 2. Call the trace event from code using trace_##name, e.g. multiwrite_cb() -> |
| 11 | # trace_multiwrite_cb(). The source file must #include "trace.h". |
| 12 | # |
| 13 | # Format of a trace event: |
| 14 | # |
Stefan Hajnoczi | 1e2cf2b | 2010-05-24 11:32:09 +0100 | [diff] [blame] | 15 | # [disable] <name>(<type1> <arg1>[, <type2> <arg2>] ...) "<format-string>" |
Stefan Hajnoczi | 94a420b | 2010-05-22 17:52:39 +0100 | [diff] [blame] | 16 | # |
Frediano Ziglio | a74cd8c | 2011-08-31 09:25:35 +0200 | [diff] [blame] | 17 | # Example: g_malloc(size_t size) "size %zu" |
Stefan Hajnoczi | 94a420b | 2010-05-22 17:52:39 +0100 | [diff] [blame] | 18 | # |
Stefan Hajnoczi | 1e2cf2b | 2010-05-24 11:32:09 +0100 | [diff] [blame] | 19 | # The "disable" keyword will build without the trace event. |
Stefan Hajnoczi | 1e2cf2b | 2010-05-24 11:32:09 +0100 | [diff] [blame] | 20 | # |
Stefan Hajnoczi | 94a420b | 2010-05-22 17:52:39 +0100 | [diff] [blame] | 21 | # The <name> must be a valid as a C function name. |
| 22 | # |
| 23 | # Types should be standard C types. Use void * for pointers because the trace |
| 24 | # system may not have the necessary headers included. |
| 25 | # |
| 26 | # The <format-string> should be a sprintf()-compatible format string. |
Stefan Hajnoczi | cd245a1 | 2010-05-22 18:09:25 +0100 | [diff] [blame] | 27 | |
| 28 | # qemu-malloc.c |
Frediano Ziglio | a74cd8c | 2011-08-31 09:25:35 +0200 | [diff] [blame] | 29 | g_malloc(size_t size, void *ptr) "size %zu ptr %p" |
| 30 | g_realloc(void *ptr, size_t size, void *newptr) "ptr %p size %zu newptr %p" |
| 31 | g_free(void *ptr) "ptr %p" |
Stefan Hajnoczi | cd245a1 | 2010-05-22 18:09:25 +0100 | [diff] [blame] | 32 | |
| 33 | # osdep.c |
Lluís | 47f08d7 | 2011-08-31 20:31:58 +0200 | [diff] [blame] | 34 | qemu_memalign(size_t alignment, size_t size, void *ptr) "alignment %zu size %zu ptr %p" |
| 35 | qemu_vmalloc(size_t size, void *ptr) "size %zu ptr %p" |
| 36 | qemu_vfree(void *ptr) "ptr %p" |
Stefan Hajnoczi | 6d519a5 | 2010-05-22 18:15:08 +0100 | [diff] [blame] | 37 | |
Stefan Hajnoczi | 64979a4 | 2010-05-24 13:19:21 +0100 | [diff] [blame] | 38 | # hw/virtio.c |
Lluís | 47f08d7 | 2011-08-31 20:31:58 +0200 | [diff] [blame] | 39 | virtqueue_fill(void *vq, const void *elem, unsigned int len, unsigned int idx) "vq %p elem %p len %u idx %u" |
| 40 | virtqueue_flush(void *vq, unsigned int count) "vq %p count %u" |
| 41 | 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 | virtio_queue_notify(void *vdev, int n, void *vq) "vdev %p n %d vq %p" |
| 43 | virtio_irq(void *vq) "vq %p" |
| 44 | virtio_notify(void *vdev, void *vq) "vdev %p vq %p" |
Stefan Hajnoczi | 4e1837f | 2011-09-13 13:34:37 +0100 | [diff] [blame] | 45 | virtio_set_status(void *vdev, uint8_t val) "vdev %p val %u" |
Stefan Hajnoczi | 64979a4 | 2010-05-24 13:19:21 +0100 | [diff] [blame] | 46 | |
Amit Shah | 49e3fdd | 2011-07-05 16:36:39 +0530 | [diff] [blame] | 47 | # hw/virtio-serial-bus.c |
Lluís | 47f08d7 | 2011-08-31 20:31:58 +0200 | [diff] [blame] | 48 | virtio_serial_send_control_event(unsigned int port, uint16_t event, uint16_t value) "port %u, event %u, value %u" |
| 49 | virtio_serial_throttle_port(unsigned int port, bool throttle) "port %u, throttle %d" |
| 50 | virtio_serial_handle_control_message(uint16_t event, uint16_t value) "event %u, value %u" |
| 51 | virtio_serial_handle_control_message_port(unsigned int port) "port %u" |
Amit Shah | 49e3fdd | 2011-07-05 16:36:39 +0530 | [diff] [blame] | 52 | |
Amit Shah | d02e4fa | 2011-07-05 16:37:49 +0530 | [diff] [blame] | 53 | # hw/virtio-console.c |
Lluís | 47f08d7 | 2011-08-31 20:31:58 +0200 | [diff] [blame] | 54 | virtio_console_flush_buf(unsigned int port, size_t len, ssize_t ret) "port %u, in_len %zu, out_len %zd" |
| 55 | virtio_console_chr_read(unsigned int port, int size) "port %u, size %d" |
| 56 | virtio_console_chr_event(unsigned int port, int event) "port %u, event %d" |
Amit Shah | d02e4fa | 2011-07-05 16:37:49 +0530 | [diff] [blame] | 57 | |
Stefan Hajnoczi | 6d519a5 | 2010-05-22 18:15:08 +0100 | [diff] [blame] | 58 | # block.c |
Stefan Hajnoczi | 28dcee1 | 2011-09-22 20:14:12 +0100 | [diff] [blame] | 59 | bdrv_open_common(void *bs, const char *filename, int flags, const char *format_name) "bs %p filename \"%s\" flags %#x format_name \"%s\"" |
Lluís | 47f08d7 | 2011-08-31 20:31:58 +0200 | [diff] [blame] | 60 | multiwrite_cb(void *mcb, int ret) "mcb %p ret %d" |
| 61 | bdrv_aio_multiwrite(void *mcb, int num_callbacks, int num_reqs) "mcb %p num_callbacks %d num_reqs %d" |
Paolo Bonzini | 4265d62 | 2011-10-17 12:32:14 +0200 | [diff] [blame] | 62 | bdrv_aio_discard(void *bs, int64_t sector_num, int nb_sectors, void *opaque) "bs %p sector_num %"PRId64" nb_sectors %d opaque %p" |
Lluís | 47f08d7 | 2011-08-31 20:31:58 +0200 | [diff] [blame] | 63 | bdrv_aio_flush(void *bs, void *opaque) "bs %p opaque %p" |
| 64 | 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 | bdrv_aio_writev(void *bs, int64_t sector_num, int nb_sectors, void *opaque) "bs %p sector_num %"PRId64" nb_sectors %d opaque %p" |
Markus Armbruster | 025e849 | 2011-09-06 18:58:47 +0200 | [diff] [blame] | 66 | bdrv_lock_medium(void *bs, bool locked) "bs %p locked %d" |
Lluís | 47f08d7 | 2011-08-31 20:31:58 +0200 | [diff] [blame] | 67 | bdrv_co_readv(void *bs, int64_t sector_num, int nb_sector) "bs %p sector_num %"PRId64" nb_sectors %d" |
Stefan Hajnoczi | 470c050 | 2012-01-18 14:40:42 +0000 | [diff] [blame] | 68 | bdrv_co_copy_on_readv(void *bs, int64_t sector_num, int nb_sector) "bs %p sector_num %"PRId64" nb_sectors %d" |
Lluís | 47f08d7 | 2011-08-31 20:31:58 +0200 | [diff] [blame] | 69 | bdrv_co_writev(void *bs, int64_t sector_num, int nb_sector) "bs %p sector_num %"PRId64" nb_sectors %d" |
Stefan Hajnoczi | f08f2dd | 2012-02-07 13:27:25 +0000 | [diff] [blame] | 70 | bdrv_co_write_zeroes(void *bs, int64_t sector_num, int nb_sector) "bs %p sector_num %"PRId64" nb_sectors %d" |
Stefan Hajnoczi | 59370aa | 2011-09-30 17:34:58 +0100 | [diff] [blame] | 71 | 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" |
Stefan Hajnoczi | 470c050 | 2012-01-18 14:40:42 +0000 | [diff] [blame] | 72 | 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" |
Stefan Hajnoczi | 6d519a5 | 2010-05-22 18:15:08 +0100 | [diff] [blame] | 73 | |
Stefan Hajnoczi | 4f1043b | 2012-01-18 14:40:44 +0000 | [diff] [blame] | 74 | # block/stream.c |
| 75 | 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 | stream_start(void *bs, void *base, void *s, void *co, void *opaque) "bs %p base %p s %p co %p opaque %p" |
Jeff Cody | 747ff60 | 2012-09-27 13:29:13 -0400 | [diff] [blame] | 77 | 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 | 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" |
Stefan Hajnoczi | 4f1043b | 2012-01-18 14:40:44 +0000 | [diff] [blame] | 79 | |
Stefan Hajnoczi | 12bd451 | 2012-01-18 14:40:46 +0000 | [diff] [blame] | 80 | # blockdev.c |
Stefan Hajnoczi | 370521a | 2012-01-18 14:40:48 +0000 | [diff] [blame] | 81 | qmp_block_job_cancel(void *job) "job %p" |
Paolo Bonzini | 6e37fb8 | 2012-09-28 17:22:51 +0200 | [diff] [blame] | 82 | qmp_block_job_pause(void *job) "job %p" |
| 83 | qmp_block_job_resume(void *job) "job %p" |
Jeff Cody | 9abf2db | 2012-09-27 13:29:14 -0400 | [diff] [blame] | 84 | block_job_cb(void *bs, void *job, int ret) "bs %p job %p ret %d" |
Stefan Hajnoczi | 12bd451 | 2012-01-18 14:40:46 +0000 | [diff] [blame] | 85 | qmp_block_stream(void *bs, void *job) "bs %p job %p" |
| 86 | |
Stefan Hajnoczi | 6d519a5 | 2010-05-22 18:15:08 +0100 | [diff] [blame] | 87 | # hw/virtio-blk.c |
Lluís | 47f08d7 | 2011-08-31 20:31:58 +0200 | [diff] [blame] | 88 | virtio_blk_req_complete(void *req, int status) "req %p status %d" |
| 89 | virtio_blk_rw_complete(void *req, int ret) "req %p ret %d" |
| 90 | virtio_blk_handle_write(void *req, uint64_t sector, size_t nsectors) "req %p sector %"PRIu64" nsectors %zu" |
Stefan Hajnoczi | 81b6b9f | 2011-12-22 13:17:02 +0000 | [diff] [blame] | 91 | virtio_blk_handle_read(void *req, uint64_t sector, size_t nsectors) "req %p sector %"PRIu64" nsectors %zu" |
Stefan Hajnoczi | 6d519a5 | 2010-05-22 18:15:08 +0100 | [diff] [blame] | 92 | |
| 93 | # posix-aio-compat.c |
Lluís | 47f08d7 | 2011-08-31 20:31:58 +0200 | [diff] [blame] | 94 | 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" |
| 95 | paio_complete(void *acb, void *opaque, int ret) "acb %p opaque %p ret %d" |
| 96 | paio_cancel(void *acb, void *opaque) "acb %p opaque %p" |
Prerna Saxena | bd3c9aa | 2010-08-11 17:15:11 +0530 | [diff] [blame] | 97 | |
| 98 | # ioport.c |
Lluís | 47f08d7 | 2011-08-31 20:31:58 +0200 | [diff] [blame] | 99 | cpu_in(unsigned int addr, unsigned int val) "addr %#x value %u" |
| 100 | cpu_out(unsigned int addr, unsigned int val) "addr %#x value %u" |
Prerna Saxena | 62dd89d | 2010-08-11 17:16:03 +0530 | [diff] [blame] | 101 | |
| 102 | # balloon.c |
| 103 | # Since requests are raised via monitor, not many tracepoints are needed. |
Lluís | 47f08d7 | 2011-08-31 20:31:58 +0200 | [diff] [blame] | 104 | balloon_event(void *opaque, unsigned long addr) "opaque %p addr %lu" |
Blue Swirl | d8023f3 | 2010-10-20 16:41:28 +0000 | [diff] [blame] | 105 | |
| 106 | # hw/apic.c |
Lluís | 47f08d7 | 2011-08-31 20:31:58 +0200 | [diff] [blame] | 107 | apic_local_deliver(int vector, uint32_t lvt) "vector %d delivery mode %d" |
| 108 | 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" |
Stefan Hajnoczi | 689d7e2 | 2011-09-13 13:34:36 +0100 | [diff] [blame] | 109 | cpu_set_apic_base(uint64_t val) "%016"PRIx64 |
| 110 | cpu_get_apic_base(uint64_t val) "%016"PRIx64 |
Lluís | 47f08d7 | 2011-08-31 20:31:58 +0200 | [diff] [blame] | 111 | apic_mem_readl(uint64_t addr, uint32_t val) "%"PRIx64" = %08x" |
| 112 | apic_mem_writel(uint64_t addr, uint32_t val) "%"PRIx64" = %08x" |
Blue Swirl | d8023f3 | 2010-10-20 16:41:28 +0000 | [diff] [blame] | 113 | # coalescing |
Jan Kiszka | 343270e | 2011-12-13 15:39:04 +0100 | [diff] [blame] | 114 | apic_report_irq_delivered(int apic_irq_delivered) "coalescing %d" |
Lluís | 47f08d7 | 2011-08-31 20:31:58 +0200 | [diff] [blame] | 115 | apic_reset_irq_delivered(int apic_irq_delivered) "old coalescing %d" |
| 116 | apic_get_irq_delivered(int apic_irq_delivered) "returning coalescing %d" |
Blue Swirl | 97bf485 | 2010-10-31 09:24:14 +0000 | [diff] [blame] | 117 | |
| 118 | # hw/cs4231.c |
Lluís | 47f08d7 | 2011-08-31 20:31:58 +0200 | [diff] [blame] | 119 | cs4231_mem_readl_dreg(uint32_t reg, uint32_t ret) "read dreg %d: 0x%02x" |
| 120 | cs4231_mem_readl_reg(uint32_t reg, uint32_t ret) "read reg %d: 0x%08x" |
| 121 | cs4231_mem_writel_reg(uint32_t reg, uint32_t old, uint32_t val) "write reg %d: 0x%08x -> 0x%08x" |
| 122 | cs4231_mem_writel_dreg(uint32_t reg, uint32_t old, uint32_t val) "write dreg %d: 0x%02x -> 0x%02x" |
Blue Swirl | 97bf485 | 2010-10-31 09:24:14 +0000 | [diff] [blame] | 123 | |
Hervé Poussineau | d43ed9e | 2011-07-18 23:34:21 +0200 | [diff] [blame] | 124 | # hw/ds1225y.c |
Lluís | 47f08d7 | 2011-08-31 20:31:58 +0200 | [diff] [blame] | 125 | nvram_read(uint32_t addr, uint32_t ret) "read addr %d: 0x%02x" |
| 126 | nvram_write(uint32_t addr, uint32_t old, uint32_t val) "write addr %d: 0x%02x -> 0x%02x" |
Hervé Poussineau | d43ed9e | 2011-07-18 23:34:21 +0200 | [diff] [blame] | 127 | |
Blue Swirl | 97bf485 | 2010-10-31 09:24:14 +0000 | [diff] [blame] | 128 | # hw/eccmemctl.c |
Lluís | 47f08d7 | 2011-08-31 20:31:58 +0200 | [diff] [blame] | 129 | ecc_mem_writel_mer(uint32_t val) "Write memory enable %08x" |
| 130 | ecc_mem_writel_mdr(uint32_t val) "Write memory delay %08x" |
| 131 | ecc_mem_writel_mfsr(uint32_t val) "Write memory fault status %08x" |
| 132 | ecc_mem_writel_vcr(uint32_t val) "Write slot configuration %08x" |
| 133 | ecc_mem_writel_dr(uint32_t val) "Write diagnostic %08x" |
| 134 | ecc_mem_writel_ecr0(uint32_t val) "Write event count 1 %08x" |
| 135 | ecc_mem_writel_ecr1(uint32_t val) "Write event count 2 %08x" |
| 136 | ecc_mem_readl_mer(uint32_t ret) "Read memory enable %08x" |
| 137 | ecc_mem_readl_mdr(uint32_t ret) "Read memory delay %08x" |
| 138 | ecc_mem_readl_mfsr(uint32_t ret) "Read memory fault status %08x" |
| 139 | ecc_mem_readl_vcr(uint32_t ret) "Read slot configuration %08x" |
| 140 | ecc_mem_readl_mfar0(uint32_t ret) "Read memory fault address 0 %08x" |
| 141 | ecc_mem_readl_mfar1(uint32_t ret) "Read memory fault address 1 %08x" |
| 142 | ecc_mem_readl_dr(uint32_t ret) "Read diagnostic %08x" |
| 143 | ecc_mem_readl_ecr0(uint32_t ret) "Read event count 1 %08x" |
| 144 | ecc_mem_readl_ecr1(uint32_t ret) "Read event count 2 %08x" |
| 145 | ecc_diag_mem_writeb(uint64_t addr, uint32_t val) "Write diagnostic %"PRId64" = %02x" |
| 146 | ecc_diag_mem_readb(uint64_t addr, uint32_t ret) "Read diagnostic %"PRId64"= %02x" |
Blue Swirl | 97bf485 | 2010-10-31 09:24:14 +0000 | [diff] [blame] | 147 | |
Markus Armbruster | 31f7eed | 2012-07-10 11:12:32 +0200 | [diff] [blame] | 148 | # hw/hd-geometry.c |
| 149 | hd_geometry_lchs_guess(void *bs, int cyls, int heads, int secs) "bs %p LCHS %d %d %d" |
Markus Armbruster | 1f24d7b | 2012-07-10 11:12:41 +0200 | [diff] [blame] | 150 | hd_geometry_guess(void *bs, uint32_t cyls, uint32_t heads, uint32_t secs, int trans) "bs %p CHS %u %u %u trans %d" |
Markus Armbruster | 31f7eed | 2012-07-10 11:12:32 +0200 | [diff] [blame] | 151 | |
Hervé Poussineau | 63b9932 | 2012-02-17 20:27:15 +0100 | [diff] [blame] | 152 | # hw/jazz-led.c |
| 153 | jazz_led_read(uint64_t addr, uint8_t val) "read addr=0x%"PRIx64": 0x%x" |
| 154 | jazz_led_write(uint64_t addr, uint8_t new) "write addr=0x%"PRIx64": 0x%x" |
| 155 | |
Blue Swirl | 97bf485 | 2010-10-31 09:24:14 +0000 | [diff] [blame] | 156 | # hw/lance.c |
Lluís | 47f08d7 | 2011-08-31 20:31:58 +0200 | [diff] [blame] | 157 | lance_mem_readw(uint64_t addr, uint32_t ret) "addr=%"PRIx64"val=0x%04x" |
| 158 | lance_mem_writew(uint64_t addr, uint32_t val) "addr=%"PRIx64"val=0x%04x" |
Blue Swirl | 97bf485 | 2010-10-31 09:24:14 +0000 | [diff] [blame] | 159 | |
| 160 | # hw/slavio_intctl.c |
Lluís | 47f08d7 | 2011-08-31 20:31:58 +0200 | [diff] [blame] | 161 | slavio_intctl_mem_readl(uint32_t cpu, uint64_t addr, uint32_t ret) "read cpu %d reg 0x%"PRIx64" = %x" |
| 162 | slavio_intctl_mem_writel(uint32_t cpu, uint64_t addr, uint32_t val) "write cpu %d reg 0x%"PRIx64" = %x" |
| 163 | slavio_intctl_mem_writel_clear(uint32_t cpu, uint32_t val, uint32_t intreg_pending) "Cleared cpu %d irq mask %x, curmask %x" |
| 164 | slavio_intctl_mem_writel_set(uint32_t cpu, uint32_t val, uint32_t intreg_pending) "Set cpu %d irq mask %x, curmask %x" |
| 165 | slavio_intctlm_mem_readl(uint64_t addr, uint32_t ret) "read system reg 0x%"PRIx64" = %x" |
| 166 | slavio_intctlm_mem_writel(uint64_t addr, uint32_t val) "write system reg 0x%"PRIx64" = %x" |
| 167 | slavio_intctlm_mem_writel_enable(uint32_t val, uint32_t intregm_disabled) "Enabled master irq mask %x, curmask %x" |
| 168 | slavio_intctlm_mem_writel_disable(uint32_t val, uint32_t intregm_disabled) "Disabled master irq mask %x, curmask %x" |
| 169 | slavio_intctlm_mem_writel_target(uint32_t cpu) "Set master irq cpu %d" |
| 170 | slavio_check_interrupts(uint32_t pending, uint32_t intregm_disabled) "pending %x disabled %x" |
| 171 | slavio_set_irq(uint32_t target_cpu, int irq, uint32_t pil, int level) "Set cpu %d irq %d -> pil %d level %d" |
| 172 | slavio_set_timer_irq_cpu(int cpu, int level) "Set cpu %d local timer level %d" |
Blue Swirl | 97bf485 | 2010-10-31 09:24:14 +0000 | [diff] [blame] | 173 | |
| 174 | # hw/slavio_misc.c |
Lluís | 47f08d7 | 2011-08-31 20:31:58 +0200 | [diff] [blame] | 175 | slavio_misc_update_irq_raise(void) "Raise IRQ" |
| 176 | slavio_misc_update_irq_lower(void) "Lower IRQ" |
| 177 | slavio_set_power_fail(int power_failing, uint8_t config) "Power fail: %d, config: %d" |
| 178 | slavio_cfg_mem_writeb(uint32_t val) "Write config %02x" |
| 179 | slavio_cfg_mem_readb(uint32_t ret) "Read config %02x" |
| 180 | slavio_diag_mem_writeb(uint32_t val) "Write diag %02x" |
| 181 | slavio_diag_mem_readb(uint32_t ret) "Read diag %02x" |
| 182 | slavio_mdm_mem_writeb(uint32_t val) "Write modem control %02x" |
| 183 | slavio_mdm_mem_readb(uint32_t ret) "Read modem control %02x" |
| 184 | slavio_aux1_mem_writeb(uint32_t val) "Write aux1 %02x" |
| 185 | slavio_aux1_mem_readb(uint32_t ret) "Read aux1 %02x" |
| 186 | slavio_aux2_mem_writeb(uint32_t val) "Write aux2 %02x" |
| 187 | slavio_aux2_mem_readb(uint32_t ret) "Read aux2 %02x" |
| 188 | apc_mem_writeb(uint32_t val) "Write power management %02x" |
| 189 | apc_mem_readb(uint32_t ret) "Read power management %02x" |
| 190 | slavio_sysctrl_mem_writel(uint32_t val) "Write system control %08x" |
| 191 | slavio_sysctrl_mem_readl(uint32_t ret) "Read system control %08x" |
| 192 | slavio_led_mem_writew(uint32_t val) "Write diagnostic LED %04x" |
| 193 | slavio_led_mem_readw(uint32_t ret) "Read diagnostic LED %04x" |
Blue Swirl | 97bf485 | 2010-10-31 09:24:14 +0000 | [diff] [blame] | 194 | |
| 195 | # hw/slavio_timer.c |
Lluís | 47f08d7 | 2011-08-31 20:31:58 +0200 | [diff] [blame] | 196 | slavio_timer_get_out(uint64_t limit, uint32_t counthigh, uint32_t count) "limit %"PRIx64" count %x%08x" |
| 197 | slavio_timer_irq(uint32_t counthigh, uint32_t count) "callback: count %x%08x" |
Stefan Hajnoczi | 689d7e2 | 2011-09-13 13:34:36 +0100 | [diff] [blame] | 198 | slavio_timer_mem_readl_invalid(uint64_t addr) "invalid read address %"PRIx64 |
Lluís | 47f08d7 | 2011-08-31 20:31:58 +0200 | [diff] [blame] | 199 | slavio_timer_mem_readl(uint64_t addr, uint32_t ret) "read %"PRIx64" = %08x" |
| 200 | slavio_timer_mem_writel(uint64_t addr, uint32_t val) "write %"PRIx64" = %08x" |
Stefan Hajnoczi | 689d7e2 | 2011-09-13 13:34:36 +0100 | [diff] [blame] | 201 | slavio_timer_mem_writel_limit(unsigned int timer_index, uint64_t count) "processor %d user timer set to %016"PRIx64 |
Lluís | 47f08d7 | 2011-08-31 20:31:58 +0200 | [diff] [blame] | 202 | slavio_timer_mem_writel_counter_invalid(void) "not user timer" |
| 203 | slavio_timer_mem_writel_status_start(unsigned int timer_index) "processor %d user timer started" |
| 204 | slavio_timer_mem_writel_status_stop(unsigned int timer_index) "processor %d user timer stopped" |
| 205 | slavio_timer_mem_writel_mode_user(unsigned int timer_index) "processor %d changed from counter to user timer" |
| 206 | slavio_timer_mem_writel_mode_counter(unsigned int timer_index) "processor %d changed from user timer to counter" |
| 207 | slavio_timer_mem_writel_mode_invalid(void) "not system timer" |
Stefan Hajnoczi | 689d7e2 | 2011-09-13 13:34:36 +0100 | [diff] [blame] | 208 | slavio_timer_mem_writel_invalid(uint64_t addr) "invalid write address %"PRIx64 |
Blue Swirl | 97bf485 | 2010-10-31 09:24:14 +0000 | [diff] [blame] | 209 | |
| 210 | # hw/sparc32_dma.c |
Stefan Hajnoczi | 689d7e2 | 2011-09-13 13:34:36 +0100 | [diff] [blame] | 211 | ledma_memory_read(uint64_t addr) "DMA read addr 0x%"PRIx64 |
| 212 | ledma_memory_write(uint64_t addr) "DMA write addr 0x%"PRIx64 |
Lluís | 47f08d7 | 2011-08-31 20:31:58 +0200 | [diff] [blame] | 213 | sparc32_dma_set_irq_raise(void) "Raise IRQ" |
| 214 | sparc32_dma_set_irq_lower(void) "Lower IRQ" |
| 215 | espdma_memory_read(uint32_t addr) "DMA read addr 0x%08x" |
| 216 | espdma_memory_write(uint32_t addr) "DMA write addr 0x%08x" |
| 217 | sparc32_dma_mem_readl(uint64_t addr, uint32_t ret) "read dmareg %"PRIx64": 0x%08x" |
| 218 | sparc32_dma_mem_writel(uint64_t addr, uint32_t old, uint32_t val) "write dmareg %"PRIx64": 0x%08x -> 0x%08x" |
| 219 | sparc32_dma_enable_raise(void) "Raise DMA enable" |
| 220 | sparc32_dma_enable_lower(void) "Lower DMA enable" |
Blue Swirl | 97bf485 | 2010-10-31 09:24:14 +0000 | [diff] [blame] | 221 | |
| 222 | # hw/sun4m.c |
Lluís | 47f08d7 | 2011-08-31 20:31:58 +0200 | [diff] [blame] | 223 | sun4m_cpu_interrupt(unsigned int level) "Set CPU IRQ %d" |
| 224 | sun4m_cpu_reset_interrupt(unsigned int level) "Reset CPU IRQ %d" |
| 225 | sun4m_cpu_set_irq_raise(int level) "Raise CPU IRQ %d" |
| 226 | sun4m_cpu_set_irq_lower(int level) "Lower CPU IRQ %d" |
Blue Swirl | 97bf485 | 2010-10-31 09:24:14 +0000 | [diff] [blame] | 227 | |
| 228 | # hw/sun4m_iommu.c |
Lluís | 47f08d7 | 2011-08-31 20:31:58 +0200 | [diff] [blame] | 229 | sun4m_iommu_mem_readl(uint64_t addr, uint32_t ret) "read reg[%"PRIx64"] = %x" |
| 230 | sun4m_iommu_mem_writel(uint64_t addr, uint32_t val) "write reg[%"PRIx64"] = %x" |
Stefan Hajnoczi | 689d7e2 | 2011-09-13 13:34:36 +0100 | [diff] [blame] | 231 | sun4m_iommu_mem_writel_ctrl(uint64_t iostart) "iostart = %"PRIx64 |
Lluís | 47f08d7 | 2011-08-31 20:31:58 +0200 | [diff] [blame] | 232 | sun4m_iommu_mem_writel_tlbflush(uint32_t val) "tlb flush %x" |
| 233 | sun4m_iommu_mem_writel_pgflush(uint32_t val) "page flush %x" |
| 234 | sun4m_iommu_page_get_flags(uint64_t pa, uint64_t iopte, uint32_t ret) "get flags addr %"PRIx64" => pte %"PRIx64", *pte = %x" |
| 235 | sun4m_iommu_translate_pa(uint64_t addr, uint64_t pa, uint32_t iopte) "xlate dva %"PRIx64" => pa %"PRIx64" iopte = %x" |
Stefan Hajnoczi | 689d7e2 | 2011-09-13 13:34:36 +0100 | [diff] [blame] | 236 | sun4m_iommu_bad_addr(uint64_t addr) "bad addr %"PRIx64 |
Stefan Hajnoczi | 94b0b5f | 2010-11-16 12:20:25 +0000 | [diff] [blame] | 237 | |
Gerd Hoffmann | f1ae32a | 2012-03-07 14:55:18 +0100 | [diff] [blame] | 238 | # hw/usb/core.c |
Gerd Hoffmann | 808aeb9 | 2012-02-24 11:03:27 +0100 | [diff] [blame] | 239 | 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" |
Gerd Hoffmann | 5ac2731 | 2012-03-08 12:27:47 +0100 | [diff] [blame] | 240 | 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" |
Gerd Hoffmann | 808aeb9 | 2012-02-24 11:03:27 +0100 | [diff] [blame] | 241 | |
Gerd Hoffmann | f1ae32a | 2012-03-07 14:55:18 +0100 | [diff] [blame] | 242 | # hw/usb/bus.c |
Gerd Hoffmann | 891fb2c | 2011-09-01 13:56:37 +0200 | [diff] [blame] | 243 | usb_port_claim(int bus, const char *port) "bus %d, port %s" |
| 244 | usb_port_attach(int bus, const char *port) "bus %d, port %s" |
| 245 | usb_port_detach(int bus, const char *port) "bus %d, port %s" |
| 246 | usb_port_release(int bus, const char *port) "bus %d, port %s" |
| 247 | |
Gerd Hoffmann | f1ae32a | 2012-03-07 14:55:18 +0100 | [diff] [blame] | 248 | # hw/usb/hcd-ehci.c |
Lluís | 47f08d7 | 2011-08-31 20:31:58 +0200 | [diff] [blame] | 249 | usb_ehci_reset(void) "=== RESET ===" |
Gerd Hoffmann | 3e4f910 | 2012-09-06 11:24:51 +0200 | [diff] [blame] | 250 | usb_ehci_opreg_read(uint32_t addr, const char *str, uint32_t val) "rd mmio %04x [%s] = %x" |
| 251 | usb_ehci_opreg_write(uint32_t addr, const char *str, uint32_t val) "wr mmio %04x [%s] = %x" |
| 252 | usb_ehci_opreg_change(uint32_t addr, const char *str, uint32_t new, uint32_t old) "ch mmio %04x [%s] = %x (old: %x)" |
| 253 | usb_ehci_portsc_read(uint32_t addr, uint32_t port, uint32_t val) "rd mmio %04x [port %d] = %x" |
| 254 | usb_ehci_portsc_write(uint32_t addr, uint32_t port, uint32_t val) "wr mmio %04x [port %d] = %x" |
| 255 | usb_ehci_portsc_change(uint32_t addr, uint32_t port, uint32_t new, uint32_t old) "ch mmio %04x [port %d] = %x (old: %x)" |
Lluís | 47f08d7 | 2011-08-31 20:31:58 +0200 | [diff] [blame] | 256 | usb_ehci_usbsts(const char *sts, int state) "usbsts %s %d" |
| 257 | usb_ehci_state(const char *schedule, const char *state) "%s schedule %s" |
| 258 | 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" |
| 259 | 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" |
| 260 | 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" |
| 261 | usb_ehci_qtd_ptrs(void *q, uint32_t addr, uint32_t nxt, uint32_t altnext) "q %p - QTD @ %08x: next %08x altnext %08x" |
| 262 | 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" |
| 263 | 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" |
| 264 | 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" |
Gerd Hoffmann | 2fe8019 | 2011-08-26 14:13:48 +0200 | [diff] [blame] | 265 | usb_ehci_sitd(uint32_t addr, uint32_t nxt, uint32_t active) "ITD @ %08x: next %08x - active %d" |
Gerd Hoffmann | 30e9d41 | 2012-06-08 13:00:44 +0200 | [diff] [blame] | 266 | usb_ehci_port_attach(uint32_t port, const char *owner, const char *device) "attach port #%d, owner %s, device %s" |
| 267 | usb_ehci_port_detach(uint32_t port, const char *owner) "detach port #%d, owner %s" |
Lluís | 47f08d7 | 2011-08-31 20:31:58 +0200 | [diff] [blame] | 268 | usb_ehci_port_reset(uint32_t port, int enable) "reset port #%d - %d" |
| 269 | 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" |
| 270 | usb_ehci_queue_action(void *q, const char *action) "q %p: %s" |
Gerd Hoffmann | eb36a88 | 2012-05-09 17:06:36 +0200 | [diff] [blame] | 271 | usb_ehci_packet_action(void *q, void *p, const char *action) "q %p p %p: %s" |
Gerd Hoffmann | 7efc17a | 2012-07-11 11:06:05 +0200 | [diff] [blame] | 272 | 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" |
Gerd Hoffmann | 5c51468 | 2012-08-31 10:44:21 +0200 | [diff] [blame] | 273 | usb_ehci_guest_bug(const char *reason) "%s" |
Gerd Hoffmann | 1defcbd | 2012-08-31 12:41:43 +0200 | [diff] [blame] | 274 | usb_ehci_doorbell_ring(void) "" |
| 275 | usb_ehci_doorbell_ack(void) "" |
Gerd Hoffmann | 439a97c | 2011-05-18 10:12:58 +0200 | [diff] [blame] | 276 | |
Gerd Hoffmann | 50dcc0f | 2012-03-08 13:12:38 +0100 | [diff] [blame] | 277 | # hw/usb/hcd-uhci.c |
| 278 | usb_uhci_reset(void) "=== RESET ===" |
| 279 | usb_uhci_schedule_start(void) "" |
| 280 | usb_uhci_schedule_stop(void) "" |
| 281 | usb_uhci_frame_start(uint32_t num) "nr %d" |
Gerd Hoffmann | 4aed20e | 2012-05-11 09:18:05 +0200 | [diff] [blame] | 282 | usb_uhci_frame_stop_bandwidth(void) "" |
Gerd Hoffmann | 50dcc0f | 2012-03-08 13:12:38 +0100 | [diff] [blame] | 283 | usb_uhci_frame_loop_stop_idle(void) "" |
Gerd Hoffmann | 50dcc0f | 2012-03-08 13:12:38 +0100 | [diff] [blame] | 284 | usb_uhci_frame_loop_continue(void) "" |
Gerd Hoffmann | 7dd0dfd | 2012-05-11 12:57:34 +0200 | [diff] [blame] | 285 | usb_uhci_mmio_readw(uint32_t addr, uint32_t val) "addr 0x%04x, ret 0x%04x" |
| 286 | usb_uhci_mmio_writew(uint32_t addr, uint32_t val) "addr 0x%04x, val 0x%04x" |
| 287 | usb_uhci_mmio_readl(uint32_t addr, uint32_t val) "addr 0x%04x, ret 0x%08x" |
| 288 | usb_uhci_mmio_writel(uint32_t addr, uint32_t val) "addr 0x%04x, val 0x%08x" |
Gerd Hoffmann | 50dcc0f | 2012-03-08 13:12:38 +0100 | [diff] [blame] | 289 | usb_uhci_queue_add(uint32_t token) "token 0x%x" |
| 290 | usb_uhci_queue_del(uint32_t token) "token 0x%x" |
| 291 | usb_uhci_packet_add(uint32_t token, uint32_t addr) "token 0x%x, td 0x%x" |
| 292 | usb_uhci_packet_link_async(uint32_t token, uint32_t addr) "token 0x%x, td 0x%x" |
| 293 | usb_uhci_packet_unlink_async(uint32_t token, uint32_t addr) "token 0x%x, td 0x%x" |
| 294 | usb_uhci_packet_cancel(uint32_t token, uint32_t addr, int done) "token 0x%x, td 0x%x, done %d" |
| 295 | usb_uhci_packet_complete_success(uint32_t token, uint32_t addr) "token 0x%x, td 0x%x" |
| 296 | usb_uhci_packet_complete_shortxfer(uint32_t token, uint32_t addr) "token 0x%x, td 0x%x" |
| 297 | usb_uhci_packet_complete_stall(uint32_t token, uint32_t addr) "token 0x%x, td 0x%x" |
| 298 | usb_uhci_packet_complete_babble(uint32_t token, uint32_t addr) "token 0x%x, td 0x%x" |
| 299 | usb_uhci_packet_complete_error(uint32_t token, uint32_t addr) "token 0x%x, td 0x%x" |
| 300 | usb_uhci_packet_del(uint32_t token, uint32_t addr) "token 0x%x, td 0x%x" |
| 301 | usb_uhci_qh_load(uint32_t qh) "qh 0x%x" |
| 302 | 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" |
| 303 | usb_uhci_td_queue(uint32_t td, uint32_t ctrl, uint32_t token) "td 0x%x, ctrl 0x%x, token 0x%x" |
| 304 | usb_uhci_td_nextqh(uint32_t qh, uint32_t td) "qh 0x%x, td 0x%x" |
| 305 | usb_uhci_td_async(uint32_t qh, uint32_t td) "qh 0x%x, td 0x%x" |
| 306 | usb_uhci_td_complete(uint32_t qh, uint32_t td) "qh 0x%x, td 0x%x" |
| 307 | |
Gerd Hoffmann | 2d754a1 | 2012-05-11 12:49:31 +0200 | [diff] [blame] | 308 | # hw/usb/hcd-xhci.c |
| 309 | usb_xhci_reset(void) "=== RESET ===" |
Gerd Hoffmann | fc0ddac | 2012-05-11 14:54:57 +0200 | [diff] [blame] | 310 | usb_xhci_run(void) "" |
| 311 | usb_xhci_stop(void) "" |
Gerd Hoffmann | 2d754a1 | 2012-05-11 12:49:31 +0200 | [diff] [blame] | 312 | usb_xhci_cap_read(uint32_t off, uint32_t val) "off 0x%04x, ret 0x%08x" |
| 313 | usb_xhci_oper_read(uint32_t off, uint32_t val) "off 0x%04x, ret 0x%08x" |
| 314 | usb_xhci_port_read(uint32_t port, uint32_t off, uint32_t val) "port %d, off 0x%04x, ret 0x%08x" |
| 315 | usb_xhci_runtime_read(uint32_t off, uint32_t val) "off 0x%04x, ret 0x%08x" |
| 316 | usb_xhci_doorbell_read(uint32_t off, uint32_t val) "off 0x%04x, ret 0x%08x" |
| 317 | usb_xhci_oper_write(uint32_t off, uint32_t val) "off 0x%04x, val 0x%08x" |
| 318 | usb_xhci_port_write(uint32_t port, uint32_t off, uint32_t val) "port %d, off 0x%04x, val 0x%08x" |
| 319 | usb_xhci_runtime_write(uint32_t off, uint32_t val) "off 0x%04x, val 0x%08x" |
| 320 | usb_xhci_doorbell_write(uint32_t off, uint32_t val) "off 0x%04x, val 0x%08x" |
Gerd Hoffmann | 7acd279 | 2012-05-11 13:25:09 +0200 | [diff] [blame] | 321 | usb_xhci_irq_intx(uint32_t level) "level %d" |
| 322 | usb_xhci_irq_msi(uint32_t nr) "nr %d" |
Gerd Hoffmann | 4c47f80 | 2012-08-30 12:06:59 +0200 | [diff] [blame] | 323 | usb_xhci_irq_msix(uint32_t nr) "nr %d" |
| 324 | usb_xhci_irq_msix_use(uint32_t nr) "nr %d" |
| 325 | usb_xhci_irq_msix_unuse(uint32_t nr) "nr %d" |
Gerd Hoffmann | 962d11e | 2012-08-30 15:49:03 +0200 | [diff] [blame] | 326 | 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" |
Gerd Hoffmann | 0703a4a | 2012-05-11 14:23:42 +0200 | [diff] [blame] | 327 | 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" |
Gerd Hoffmann | 348f103 | 2012-05-11 15:15:27 +0200 | [diff] [blame] | 328 | usb_xhci_slot_enable(uint32_t slotid) "slotid %d" |
| 329 | usb_xhci_slot_disable(uint32_t slotid) "slotid %d" |
| 330 | usb_xhci_slot_address(uint32_t slotid) "slotid %d" |
| 331 | usb_xhci_slot_configure(uint32_t slotid) "slotid %d" |
| 332 | usb_xhci_slot_evaluate(uint32_t slotid) "slotid %d" |
| 333 | usb_xhci_slot_reset(uint32_t slotid) "slotid %d" |
Gerd Hoffmann | c1f6b49 | 2012-05-11 14:26:15 +0200 | [diff] [blame] | 334 | usb_xhci_ep_enable(uint32_t slotid, uint32_t epid) "slotid %d, epid %d" |
| 335 | usb_xhci_ep_disable(uint32_t slotid, uint32_t epid) "slotid %d, epid %d" |
Gerd Hoffmann | d829fde | 2012-08-29 12:54:59 +0200 | [diff] [blame] | 336 | usb_xhci_ep_set_dequeue(uint32_t slotid, uint32_t epid, uint64_t param) "slotid %d, epid %d, ptr %016" PRIx64 |
Gerd Hoffmann | c1f6b49 | 2012-05-11 14:26:15 +0200 | [diff] [blame] | 337 | usb_xhci_ep_kick(uint32_t slotid, uint32_t epid) "slotid %d, epid %d" |
| 338 | usb_xhci_ep_stop(uint32_t slotid, uint32_t epid) "slotid %d, epid %d" |
| 339 | usb_xhci_ep_reset(uint32_t slotid, uint32_t epid) "slotid %d, epid %d" |
Gerd Hoffmann | d5a1581 | 2012-08-17 11:04:36 +0200 | [diff] [blame] | 340 | usb_xhci_xfer_start(void *xfer, uint32_t slotid, uint32_t epid) "%p: slotid %d, epid %d" |
Gerd Hoffmann | 97df650 | 2012-05-11 14:27:08 +0200 | [diff] [blame] | 341 | usb_xhci_xfer_async(void *xfer) "%p" |
| 342 | usb_xhci_xfer_nak(void *xfer) "%p" |
| 343 | usb_xhci_xfer_retry(void *xfer) "%p" |
| 344 | usb_xhci_xfer_success(void *xfer, uint32_t bytes) "%p: len %d" |
| 345 | usb_xhci_xfer_error(void *xfer, uint32_t ret) "%p: ret %d" |
Gerd Hoffmann | 2d754a1 | 2012-05-11 12:49:31 +0200 | [diff] [blame] | 346 | |
Gerd Hoffmann | 529f8f9 | 2012-03-23 15:42:58 +0100 | [diff] [blame] | 347 | # hw/usb/desc.c |
Lluís | 47f08d7 | 2011-08-31 20:31:58 +0200 | [diff] [blame] | 348 | usb_desc_device(int addr, int len, int ret) "dev %d query device, len %d, ret %d" |
| 349 | usb_desc_device_qualifier(int addr, int len, int ret) "dev %d query device qualifier, len %d, ret %d" |
| 350 | usb_desc_config(int addr, int index, int len, int ret) "dev %d query config %d, len %d, ret %d" |
| 351 | usb_desc_other_speed_config(int addr, int index, int len, int ret) "dev %d query config %d, len %d, ret %d" |
| 352 | usb_desc_string(int addr, int index, int len, int ret) "dev %d query string %d, len %d, ret %d" |
Gerd Hoffmann | 2077469 | 2012-08-28 17:46:29 +0200 | [diff] [blame] | 353 | usb_desc_bos(int addr, int len, int ret) "dev %d bos, len %d, ret %d" |
Lluís | 47f08d7 | 2011-08-31 20:31:58 +0200 | [diff] [blame] | 354 | usb_set_addr(int addr) "dev %d" |
| 355 | usb_set_config(int addr, int config, int ret) "dev %d, config %d, ret %d" |
Gerd Hoffmann | 1de14d4 | 2011-08-30 13:21:27 +0200 | [diff] [blame] | 356 | usb_set_interface(int addr, int iface, int alt, int ret) "dev %d, interface %d, altsetting %d, ret %d" |
Lluís | 47f08d7 | 2011-08-31 20:31:58 +0200 | [diff] [blame] | 357 | usb_clear_device_feature(int addr, int feature, int ret) "dev %d, feature %d, ret %d" |
| 358 | usb_set_device_feature(int addr, int feature, int ret) "dev %d, feature %d, ret %d" |
Gerd Hoffmann | 37fb59d | 2010-11-17 11:03:53 +0100 | [diff] [blame] | 359 | |
Gerd Hoffmann | 529f8f9 | 2012-03-23 15:42:58 +0100 | [diff] [blame] | 360 | # hw/usb/dev-hub.c |
| 361 | usb_hub_reset(int addr) "dev %d" |
| 362 | usb_hub_control(int addr, int request, int value, int index, int length) "dev %d, req 0x%x, value %d, index %d, langth %d" |
| 363 | usb_hub_get_port_status(int addr, int nr, int status, int changed) "dev %d, port %d, status 0x%x, changed 0x%x" |
| 364 | usb_hub_set_port_feature(int addr, int nr, const char *f) "dev %d, port %d, feature %s" |
| 365 | usb_hub_clear_port_feature(int addr, int nr, const char *f) "dev %d, port %d, feature %s" |
| 366 | usb_hub_attach(int addr, int nr) "dev %d, port %d" |
| 367 | usb_hub_detach(int addr, int nr) "dev %d, port %d" |
| 368 | |
Gerd Hoffmann | 0f58f68 | 2012-06-08 16:03:37 +0200 | [diff] [blame] | 369 | # hw/usb/dev-uas.c |
| 370 | usb_uas_reset(int addr) "dev %d" |
| 371 | 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" |
| 372 | usb_uas_response(int addr, uint16_t tag, uint8_t code) "dev %d, tag 0x%x, code 0x%x" |
| 373 | usb_uas_sense(int addr, uint16_t tag, uint8_t status) "dev %d, tag 0x%x, status 0x%x" |
| 374 | usb_uas_read_ready(int addr, uint16_t tag) "dev %d, tag 0x%x" |
| 375 | usb_uas_write_ready(int addr, uint16_t tag) "dev %d, tag 0x%x" |
| 376 | 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" |
| 377 | usb_uas_scsi_data(int addr, uint16_t tag, uint32_t bytes) "dev %d, tag 0x%x, bytes %d" |
| 378 | 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" |
| 379 | usb_uas_tmf_abort_task(int addr, uint16_t tag, uint16_t task_tag) "dev %d, tag 0x%x, task-tag 0x%x" |
| 380 | usb_uas_tmf_logical_unit_reset(int addr, uint16_t tag, int lun) "dev %d, tag 0x%x, lun %d" |
| 381 | usb_uas_tmf_unsupported(int addr, uint16_t tag, uint32_t function) "dev %d, tag 0x%x, function 0x%x" |
| 382 | |
Gerd Hoffmann | f1ae32a | 2012-03-07 14:55:18 +0100 | [diff] [blame] | 383 | # hw/usb/host-linux.c |
Gerd Hoffmann | e6a2f50 | 2011-08-22 14:13:20 +0200 | [diff] [blame] | 384 | usb_host_open_started(int bus, int addr) "dev %d:%d" |
| 385 | usb_host_open_success(int bus, int addr) "dev %d:%d" |
| 386 | usb_host_open_failure(int bus, int addr) "dev %d:%d" |
| 387 | usb_host_disconnect(int bus, int addr) "dev %d:%d" |
| 388 | usb_host_close(int bus, int addr) "dev %d:%d" |
| 389 | usb_host_set_address(int bus, int addr, int config) "dev %d:%d, address %d" |
| 390 | usb_host_set_config(int bus, int addr, int config) "dev %d:%d, config %d" |
| 391 | usb_host_set_interface(int bus, int addr, int interface, int alt) "dev %d:%d, interface %d, alt %d" |
| 392 | usb_host_claim_interfaces(int bus, int addr, int config, int nif) "dev %d:%d, config %d, nif %d" |
| 393 | usb_host_release_interfaces(int bus, int addr) "dev %d:%d" |
Gerd Hoffmann | 19b8925 | 2012-03-23 12:35:55 +0100 | [diff] [blame] | 394 | 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" |
| 395 | 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" |
| 396 | usb_host_req_complete(int bus, int addr, void *p, int status) "dev %d:%d, packet %p, status %d" |
| 397 | usb_host_req_emulated(int bus, int addr, void *p, int status) "dev %d:%d, packet %p, status %d" |
| 398 | usb_host_req_canceled(int bus, int addr, void *p) "dev %d:%d, packet %p" |
Gerd Hoffmann | e6a2f50 | 2011-08-22 14:13:20 +0200 | [diff] [blame] | 399 | usb_host_urb_submit(int bus, int addr, void *aurb, int length, int more) "dev %d:%d, aurb %p, length %d, more %d" |
| 400 | 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" |
Gerd Hoffmann | 6aebe40 | 2012-03-23 12:26:59 +0100 | [diff] [blame] | 401 | usb_host_urb_canceled(int bus, int addr, void *aurb) "dev %d:%d, aurb %p" |
Gerd Hoffmann | e6a2f50 | 2011-08-22 14:13:20 +0200 | [diff] [blame] | 402 | usb_host_ep_set_halt(int bus, int addr, int ep) "dev %d:%d, ep %d" |
| 403 | usb_host_ep_clear_halt(int bus, int addr, int ep) "dev %d:%d, ep %d" |
Gerd Hoffmann | c32da15 | 2012-07-03 15:43:49 +0200 | [diff] [blame] | 404 | usb_host_iso_start(int bus, int addr, int ep) "dev %d:%d, ep %d" |
| 405 | usb_host_iso_stop(int bus, int addr, int ep) "dev %d:%d, ep %d" |
| 406 | usb_host_iso_out_of_bufs(int bus, int addr, int ep) "dev %d:%d, ep %d" |
| 407 | usb_host_iso_many_urbs(int bus, int addr, int count) "dev %d:%d, count %d" |
Gerd Hoffmann | e6a2f50 | 2011-08-22 14:13:20 +0200 | [diff] [blame] | 408 | usb_host_reset(int bus, int addr) "dev %d:%d" |
| 409 | usb_host_auto_scan_enabled(void) |
| 410 | usb_host_auto_scan_disabled(void) |
Gerd Hoffmann | 9516bb4 | 2011-08-24 13:34:17 +0200 | [diff] [blame] | 411 | usb_host_claim_port(int bus, int hub, int port) "bus %d, hub addr %d, port %d" |
Gerd Hoffmann | 96dd9aa | 2012-03-29 16:06:28 +0200 | [diff] [blame] | 412 | usb_host_parse_device(int bus, int addr, int vendor, int product) "dev %d:%d, id %04x:%04x" |
| 413 | usb_host_parse_config(int bus, int addr, int value, int active) "dev %d:%d, value %d, active %d" |
| 414 | usb_host_parse_interface(int bus, int addr, int num, int alt, int active) "dev %d:%d, num %d, alt %d, active %d" |
| 415 | 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" |
| 416 | usb_host_parse_unknown(int bus, int addr, int len, int type) "dev %d:%d, len %d, type %d" |
| 417 | usb_host_parse_error(int bus, int addr, const char *errmsg) "dev %d:%d, msg %s" |
Gerd Hoffmann | e6a2f50 | 2011-08-22 14:13:20 +0200 | [diff] [blame] | 418 | |
Paolo Bonzini | 5138efe | 2011-04-15 11:51:13 +0200 | [diff] [blame] | 419 | # hw/scsi-bus.c |
Lluís | 47f08d7 | 2011-08-31 20:31:58 +0200 | [diff] [blame] | 420 | scsi_req_alloc(int target, int lun, int tag) "target %d lun %d tag %d" |
Paolo Bonzini | 814589c | 2012-07-27 08:23:07 +0200 | [diff] [blame] | 421 | scsi_req_cancel(int target, int lun, int tag) "target %d lun %d tag %d" |
Lluís | 47f08d7 | 2011-08-31 20:31:58 +0200 | [diff] [blame] | 422 | scsi_req_data(int target, int lun, int tag, int len) "target %d lun %d tag %d len %d" |
Paolo Bonzini | e88c591 | 2011-10-25 12:53:33 +0200 | [diff] [blame] | 423 | scsi_req_data_canceled(int target, int lun, int tag, int len) "target %d lun %d tag %d len %d" |
Lluís | 47f08d7 | 2011-08-31 20:31:58 +0200 | [diff] [blame] | 424 | scsi_req_dequeue(int target, int lun, int tag) "target %d lun %d tag %d" |
| 425 | scsi_req_continue(int target, int lun, int tag) "target %d lun %d tag %d" |
| 426 | 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" |
Stefan Hajnoczi | 689d7e2 | 2011-09-13 13:34:36 +0100 | [diff] [blame] | 427 | 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 |
Lluís | 47f08d7 | 2011-08-31 20:31:58 +0200 | [diff] [blame] | 428 | scsi_req_parse_bad(int target, int lun, int tag, int cmd) "target %d lun %d tag %d command %d" |
| 429 | 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" |
Paolo Bonzini | e48e84e | 2012-07-16 14:18:58 +0200 | [diff] [blame] | 430 | scsi_device_set_ua(int target, int lun, int key, int asc, int ascq) "target %d lun %d key %#02x asc %#02x ascq %#02x" |
Lluís | 47f08d7 | 2011-08-31 20:31:58 +0200 | [diff] [blame] | 431 | scsi_report_luns(int target, int lun, int tag) "target %d lun %d tag %d" |
| 432 | scsi_inquiry(int target, int lun, int tag, int cdb1, int cdb2) "target %d lun %d tag %d page %#02x/%#02x" |
| 433 | scsi_test_unit_ready(int target, int lun, int tag) "target %d lun %d tag %d" |
| 434 | scsi_request_sense(int target, int lun, int tag) "target %d lun %d tag %d" |
Paolo Bonzini | 5138efe | 2011-04-15 11:51:13 +0200 | [diff] [blame] | 435 | |
Stefan Hajnoczi | 94b0b5f | 2010-11-16 12:20:25 +0000 | [diff] [blame] | 436 | # vl.c |
Lluís | 47f08d7 | 2011-08-31 20:31:58 +0200 | [diff] [blame] | 437 | vm_state_notify(int running, int reason) "running %d reason %d" |
Stefan Hajnoczi | 298800c | 2010-12-06 16:08:01 +0000 | [diff] [blame] | 438 | |
Kevin Wolf | 3cce16f | 2012-03-01 18:36:21 +0100 | [diff] [blame] | 439 | # block/qcow2.c |
| 440 | qcow2_writev_start_req(void *co, int64_t sector, int nb_sectors) "co %p sector %" PRIx64 " nb_sectors %d" |
| 441 | qcow2_writev_done_req(void *co, int ret) "co %p ret %d" |
| 442 | qcow2_writev_start_part(void *co) "co %p" |
| 443 | qcow2_writev_done_part(void *co, int cur_nr_sectors) "co %p cur_nr_sectors %d" |
| 444 | qcow2_writev_data(void *co, uint64_t offset) "co %p offset %" PRIx64 |
| 445 | |
| 446 | 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" |
Kevin Wolf | 250196f | 2012-03-02 14:10:54 +0100 | [diff] [blame] | 447 | 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" |
Kevin Wolf | 3cce16f | 2012-03-01 18:36:21 +0100 | [diff] [blame] | 448 | qcow2_cluster_alloc_phys(void *co) "co %p" |
| 449 | qcow2_cluster_link_l2(void *co, int nb_clusters) "co %p nb_clusters %d" |
| 450 | |
| 451 | qcow2_l2_allocate(void *bs, int l1_index) "bs %p l1_index %d" |
| 452 | qcow2_l2_allocate_get_empty(void *bs, int l1_index) "bs %p l1_index %d" |
| 453 | qcow2_l2_allocate_write_l2(void *bs, int l1_index) "bs %p l1_index %d" |
| 454 | qcow2_l2_allocate_write_l1(void *bs, int l1_index) "bs %p l1_index %d" |
| 455 | qcow2_l2_allocate_done(void *bs, int l1_index, int ret) "bs %p l1_index %d ret %d" |
| 456 | |
| 457 | 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" |
| 458 | qcow2_cache_get_replace_entry(void *co, int c, int i) "co %p is_l2_cache %d index %d" |
| 459 | qcow2_cache_get_read(void *co, int c, int i) "co %p is_l2_cache %d index %d" |
| 460 | qcow2_cache_get_done(void *co, int c, int i) "co %p is_l2_cache %d index %d" |
| 461 | qcow2_cache_flush(void *co, int c) "co %p is_l2_cache %d" |
| 462 | qcow2_cache_entry_flush(void *co, int c, int i) "co %p is_l2_cache %d index %d" |
| 463 | |
Stefan Hajnoczi | 298800c | 2010-12-06 16:08:01 +0000 | [diff] [blame] | 464 | # block/qed-l2-cache.c |
Lluís | 47f08d7 | 2011-08-31 20:31:58 +0200 | [diff] [blame] | 465 | qed_alloc_l2_cache_entry(void *l2_cache, void *entry) "l2_cache %p entry %p" |
| 466 | qed_unref_l2_cache_entry(void *entry, int ref) "entry %p ref %d" |
| 467 | qed_find_l2_cache_entry(void *l2_cache, void *entry, uint64_t offset, int ref) "l2_cache %p entry %p offset %"PRIu64" ref %d" |
Stefan Hajnoczi | 298800c | 2010-12-06 16:08:01 +0000 | [diff] [blame] | 468 | |
| 469 | # block/qed-table.c |
Lluís | 47f08d7 | 2011-08-31 20:31:58 +0200 | [diff] [blame] | 470 | qed_read_table(void *s, uint64_t offset, void *table) "s %p offset %"PRIu64" table %p" |
| 471 | qed_read_table_cb(void *s, void *table, int ret) "s %p table %p ret %d" |
| 472 | 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" |
| 473 | qed_write_table_cb(void *s, void *table, int flush, int ret) "s %p table %p flush %d ret %d" |
Stefan Hajnoczi | eabba58 | 2010-12-06 16:08:02 +0000 | [diff] [blame] | 474 | |
| 475 | # block/qed.c |
Lluís | 47f08d7 | 2011-08-31 20:31:58 +0200 | [diff] [blame] | 476 | qed_need_check_timer_cb(void *s) "s %p" |
| 477 | qed_start_need_check_timer(void *s) "s %p" |
| 478 | qed_cancel_need_check_timer(void *s) "s %p" |
| 479 | qed_aio_complete(void *s, void *acb, int ret) "s %p acb %p ret %d" |
Stefan Hajnoczi | 6e4f59b | 2012-02-07 13:27:27 +0000 | [diff] [blame] | 480 | 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" |
Stefan Hajnoczi | 689d7e2 | 2011-09-13 13:34:36 +0100 | [diff] [blame] | 481 | qed_aio_next_io(void *s, void *acb, int ret, uint64_t cur_pos) "s %p acb %p ret %d cur_pos %"PRIu64 |
Lluís | 47f08d7 | 2011-08-31 20:31:58 +0200 | [diff] [blame] | 482 | 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" |
| 483 | 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" |
Stefan Hajnoczi | 689d7e2 | 2011-09-13 13:34:36 +0100 | [diff] [blame] | 484 | 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 |
| 485 | 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 |
Lluís | 47f08d7 | 2011-08-31 20:31:58 +0200 | [diff] [blame] | 486 | 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" |
Fabien Chouteau | 0f3a4a0 | 2011-01-24 12:56:52 +0100 | [diff] [blame] | 487 | |
Hervé Poussineau | b213b37 | 2011-08-26 21:20:11 +0200 | [diff] [blame] | 488 | # hw/g364fb.c |
Lluís | 47f08d7 | 2011-08-31 20:31:58 +0200 | [diff] [blame] | 489 | g364fb_read(uint64_t addr, uint32_t val) "read addr=0x%"PRIx64": 0x%x" |
| 490 | g364fb_write(uint64_t addr, uint32_t new) "write addr=0x%"PRIx64": 0x%x" |
Hervé Poussineau | b213b37 | 2011-08-26 21:20:11 +0200 | [diff] [blame] | 491 | |
Fabien Chouteau | 0f3a4a0 | 2011-01-24 12:56:52 +0100 | [diff] [blame] | 492 | # hw/grlib_gptimer.c |
Lluís | 47f08d7 | 2011-08-31 20:31:58 +0200 | [diff] [blame] | 493 | grlib_gptimer_enable(int id, uint32_t count) "timer:%d set count 0x%x and run" |
| 494 | grlib_gptimer_disabled(int id, uint32_t config) "timer:%d Timer disable config 0x%x" |
| 495 | grlib_gptimer_restart(int id, uint32_t reload) "timer:%d reload val: 0x%x" |
| 496 | grlib_gptimer_set_scaler(uint32_t scaler, uint32_t freq) "scaler:0x%x freq: 0x%x" |
| 497 | grlib_gptimer_hit(int id) "timer:%d HIT" |
| 498 | grlib_gptimer_readl(int id, uint64_t addr, uint32_t val) "timer:%d addr 0x%"PRIx64" 0x%x" |
| 499 | grlib_gptimer_writel(int id, uint64_t addr, uint32_t val) "timer:%d addr 0x%"PRIx64" 0x%x" |
Fabien Chouteau | 3f10bcb | 2011-01-24 12:56:53 +0100 | [diff] [blame] | 500 | |
| 501 | # hw/grlib_irqmp.c |
Stefan Hajnoczi | 2f4a725 | 2011-09-13 13:34:34 +0100 | [diff] [blame] | 502 | 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" |
Lluís | 47f08d7 | 2011-08-31 20:31:58 +0200 | [diff] [blame] | 503 | grlib_irqmp_ack(int intno) "interrupt:%d" |
| 504 | grlib_irqmp_set_irq(int irq) "Raise CPU IRQ %d" |
Stefan Hajnoczi | 689d7e2 | 2011-09-13 13:34:36 +0100 | [diff] [blame] | 505 | grlib_irqmp_readl_unknown(uint64_t addr) "addr 0x%"PRIx64 |
Lluís | 47f08d7 | 2011-08-31 20:31:58 +0200 | [diff] [blame] | 506 | grlib_irqmp_writel_unknown(uint64_t addr, uint32_t value) "addr 0x%"PRIx64" value 0x%x" |
Fabien Chouteau | 8b1e1320 | 2011-01-24 12:56:54 +0100 | [diff] [blame] | 507 | |
| 508 | # hw/grlib_apbuart.c |
Lluís | 47f08d7 | 2011-08-31 20:31:58 +0200 | [diff] [blame] | 509 | grlib_apbuart_event(int event) "event:%d" |
| 510 | grlib_apbuart_writel_unknown(uint64_t addr, uint32_t value) "addr 0x%"PRIx64" value 0x%x" |
Fabien Chouteau | 0c685d2 | 2012-01-26 18:03:15 +0100 | [diff] [blame] | 511 | grlib_apbuart_readl_unknown(uint64_t addr) "addr 0x%"PRIx64"" |
Fabien Chouteau | b04d989 | 2011-01-24 12:56:55 +0100 | [diff] [blame] | 512 | |
| 513 | # hw/leon3.c |
Lluís | 47f08d7 | 2011-08-31 20:31:58 +0200 | [diff] [blame] | 514 | leon3_set_irq(int intno) "Set CPU IRQ %d" |
| 515 | leon3_reset_irq(int intno) "Reset CPU IRQ %d" |
Anthony Liguori | 9363ee3 | 2011-02-01 15:22:48 -0600 | [diff] [blame] | 516 | |
Alon Levy | cbcc633 | 2011-01-19 10:49:50 +0200 | [diff] [blame] | 517 | # spice-qemu-char.c |
Lluís | 47f08d7 | 2011-08-31 20:31:58 +0200 | [diff] [blame] | 518 | spice_vmc_write(ssize_t out, int len) "spice wrottn %zd of requested %d" |
| 519 | spice_vmc_read(int bytes, int len) "spice read %d of requested %d" |
| 520 | spice_vmc_register_interface(void *scd) "spice vmc registered interface %p" |
| 521 | spice_vmc_unregister_interface(void *scd) "spice vmc unregistered interface %p" |
Michael Walle | 4ef66fa | 2011-02-17 23:45:07 +0100 | [diff] [blame] | 522 | |
| 523 | # hw/lm32_pic.c |
Lluís | 47f08d7 | 2011-08-31 20:31:58 +0200 | [diff] [blame] | 524 | lm32_pic_raise_irq(void) "Raise CPU interrupt" |
| 525 | lm32_pic_lower_irq(void) "Lower CPU interrupt" |
| 526 | lm32_pic_interrupt(int irq, int level) "Set IRQ%d %d" |
| 527 | lm32_pic_set_im(uint32_t im) "im 0x%08x" |
| 528 | lm32_pic_set_ip(uint32_t ip) "ip 0x%08x" |
| 529 | lm32_pic_get_im(uint32_t im) "im 0x%08x" |
| 530 | lm32_pic_get_ip(uint32_t ip) "ip 0x%08x" |
Michael Walle | 15d7dc4 | 2011-02-17 23:45:08 +0100 | [diff] [blame] | 531 | |
| 532 | # hw/lm32_juart.c |
Lluís | 47f08d7 | 2011-08-31 20:31:58 +0200 | [diff] [blame] | 533 | lm32_juart_get_jtx(uint32_t value) "jtx 0x%08x" |
| 534 | lm32_juart_set_jtx(uint32_t value) "jtx 0x%08x" |
| 535 | lm32_juart_get_jrx(uint32_t value) "jrx 0x%08x" |
| 536 | lm32_juart_set_jrx(uint32_t value) "jrx 0x%08x" |
Michael Walle | ea7924d | 2011-02-17 23:45:10 +0100 | [diff] [blame] | 537 | |
| 538 | # hw/lm32_timer.c |
Lluís | 47f08d7 | 2011-08-31 20:31:58 +0200 | [diff] [blame] | 539 | lm32_timer_memory_write(uint32_t addr, uint32_t value) "addr 0x%08x value 0x%08x" |
| 540 | lm32_timer_memory_read(uint32_t addr, uint32_t value) "addr 0x%08x value 0x%08x" |
| 541 | lm32_timer_hit(void) "timer hit" |
| 542 | lm32_timer_irq_state(int level) "irq state %d" |
Michael Walle | 770ae57 | 2011-02-17 23:45:11 +0100 | [diff] [blame] | 543 | |
| 544 | # hw/lm32_uart.c |
Lluís | 47f08d7 | 2011-08-31 20:31:58 +0200 | [diff] [blame] | 545 | lm32_uart_memory_write(uint32_t addr, uint32_t value) "addr 0x%08x value 0x%08x" |
| 546 | lm32_uart_memory_read(uint32_t addr, uint32_t value) "addr 0x%08x value 0x%08x" |
| 547 | lm32_uart_irq_state(int level) "irq state %d" |
Michael Walle | f19410c | 2011-02-17 23:45:12 +0100 | [diff] [blame] | 548 | |
| 549 | # hw/lm32_sys.c |
Lluís | 47f08d7 | 2011-08-31 20:31:58 +0200 | [diff] [blame] | 550 | lm32_sys_memory_write(uint32_t addr, uint32_t value) "addr 0x%08x value 0x%08x" |
Michael Walle | 25a8bb9 | 2011-03-07 23:32:32 +0100 | [diff] [blame] | 551 | |
Hannes Reinecke | e8f943c | 2012-05-29 13:51:17 +0200 | [diff] [blame] | 552 | # hw/megasas.c |
| 553 | megasas_init_firmware(uint64_t pa) "pa %" PRIx64 " " |
| 554 | 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" |
| 555 | megasas_initq_map_failed(int frame) "scmd %d: failed to map queue" |
| 556 | megasas_initq_mismatch(int queue_len, int fw_cmds) "queue size %d max fw cmds %d" |
| 557 | megasas_qf_found(unsigned int index, uint64_t pa) "found mapped frame %x pa %" PRIx64 "" |
| 558 | megasas_qf_new(unsigned int index, void *cmd) "return new frame %x cmd %p" |
| 559 | megasas_qf_failed(unsigned long pa) "all frames busy for frame %lx" |
| 560 | 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" |
| 561 | megasas_qf_update(unsigned int head, unsigned int busy) "update reply queue head %x busy %d" |
| 562 | megasas_qf_dequeue(unsigned int index) "dequeue frame %x" |
| 563 | megasas_qf_map_failed(int cmd, unsigned long frame) "scmd %d: frame %lu" |
| 564 | megasas_qf_complete_noirq(uint64_t context) "context %" PRIx64 " " |
| 565 | 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" |
| 566 | megasas_handle_frame(const char *cmd, uint64_t addr, uint64_t context, uint32_t count) "MFI cmd %s addr %" PRIx64 " context %" PRIx64 " count %d" |
| 567 | megasas_frame_busy(uint64_t addr) "frame %" PRIx64 " busy" |
| 568 | megasas_unhandled_frame_cmd(int cmd, uint8_t frame_cmd) "scmd %d: Unhandled MFI cmd %x" |
| 569 | 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" |
| 570 | megasas_scsi_target_not_present(const char *frame, int bus, int dev, int lun) "%s dev %x/%x/%x target not present" |
| 571 | 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" |
| 572 | megasas_iov_read_overflow(int cmd, int bytes, int len) "scmd %d: %d/%d bytes" |
| 573 | megasas_iov_write_overflow(int cmd, int bytes, int len) "scmd %d: %d/%d bytes" |
| 574 | megasas_iov_read_underflow(int cmd, int bytes, int len) "scmd %d: %d/%d bytes" |
| 575 | megasas_iov_write_underflow(int cmd, int bytes, int len) "scmd %d: %d/%d bytes" |
| 576 | megasas_scsi_req_alloc_failed(const char *frame, int dev, int lun) "%s dev %x/%x req allocation failed" |
| 577 | megasas_scsi_read_start(int cmd, int len) "scmd %d: transfer %d bytes of data" |
| 578 | megasas_scsi_write_start(int cmd, int len) "scmd %d: transfer %d bytes of data" |
| 579 | megasas_scsi_nodata(int cmd) "scmd %d: no data to be transferred" |
| 580 | megasas_scsi_complete(int cmd, uint32_t status, int len, int xfer) "scmd %d: finished with status %x, len %u/%u" |
| 581 | megasas_command_complete(int cmd, uint32_t status, uint32_t resid) "scmd %d: command completed, status %x, residual %d" |
| 582 | 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" |
| 583 | megasas_io_target_not_present(int cmd, const char *frame, int dev, int lun) "scmd %d: %s dev 1/%x/%x LUN not present" |
| 584 | megasas_io_read_start(int cmd, unsigned long lba, unsigned long count, unsigned long len) "scmd %d: start LBA %lx %lu blocks (%lu bytes)" |
| 585 | megasas_io_write_start(int cmd, unsigned long lba, unsigned long count, unsigned long len) "scmd %d: start LBA %lx %lu blocks (%lu bytes)" |
| 586 | megasas_io_complete(int cmd, uint32_t len) "scmd %d: %d bytes completed" |
| 587 | megasas_io_read(int cmd, int bytes, int len, unsigned long offset) "scmd %d: %d/%d bytes, iov offset %lu" |
| 588 | megasas_io_write(int cmd, int bytes, int len, unsigned long offset) "scmd %d: %d/%d bytes, iov offset %lu" |
| 589 | megasas_io_continue(int cmd, int bytes) "scmd %d: %d bytes left" |
| 590 | megasas_iovec_map_failed(int cmd, int index, unsigned long iov_size) "scmd %d: iovec %d size %lu" |
| 591 | megasas_iovec_sgl_overflow(int cmd, int index, int limit) "scmd %d: iovec count %d limit %d" |
| 592 | megasas_iovec_sgl_underflow(int cmd, int index) "scmd %d: iovec count %d" |
| 593 | megasas_iovec_sgl_invalid(int cmd, int index, uint64_t pa, uint32_t len) "scmd %d: element %d pa %" PRIx64 " len %u" |
| 594 | megasas_iovec_overflow(int cmd, int len, int limit) "scmd %d: len %d limit %d" |
| 595 | megasas_iovec_underflow(int cmd, int len, int limit) "scmd %d: len %d limit %d" |
| 596 | megasas_handle_dcmd(int cmd, int opcode) "scmd %d: MFI DCMD opcode %x" |
| 597 | megasas_finish_dcmd(int cmd, int size) "scmd %d: MFI DCMD wrote %d bytes" |
| 598 | megasas_dcmd_req_alloc_failed(int cmd, const char *desc) "scmd %d: %s alloc failed" |
| 599 | megasas_dcmd_internal_submit(int cmd, const char *desc, int dev) "scmd %d: %s to dev %d" |
| 600 | megasas_dcmd_internal_finish(int cmd, int opcode, int lun) "scmd %d: DCMD finish internal cmd %x lun %d" |
| 601 | megasas_dcmd_internal_invalid(int cmd, int opcode) "scmd %d: Invalid internal DCMD %x" |
| 602 | megasas_dcmd_unhandled(int cmd, int opcode, int len) "scmd %d: opcode %x, len %d" |
| 603 | megasas_dcmd_zero_sge(int cmd) "scmd %d: zero DCMD sge count" |
| 604 | megasas_dcmd_invalid_sge(int cmd, int count) "scmd %d: invalid DCMD sge count %d" |
| 605 | megasas_dcmd_map_failed(int cmd) "scmd %d: Failed to map DCMD buffer" |
| 606 | megasas_dcmd_invalid_xfer_len(int cmd, unsigned long size, unsigned long max) "scmd %d: invalid xfer len %ld, max %ld" |
| 607 | megasas_dcmd_enter(int cmd, const char *dcmd, int len) "scmd %d: DCMD %s len %d" |
| 608 | megasas_dcmd_dummy(int cmd, unsigned long size) "scmd %d: DCMD dummy xfer len %ld" |
| 609 | megasas_dcmd_set_fw_time(int cmd, unsigned long time) "scmd %d: Set FW time %lx" |
| 610 | megasas_dcmd_pd_get_list(int cmd, int num, int max, int offset) "scmd %d: DCMD PD get list: %d / %d PDs, size %d" |
| 611 | megasas_dcmd_ld_get_list(int cmd, int num, int max) "scmd %d: DCMD LD get list: found %d / %d LDs" |
| 612 | megasas_dcmd_ld_get_info(int cmd, int ld_id) "scmd %d: DCMD LD get info for dev %d" |
| 613 | megasas_dcmd_pd_get_info(int cmd, int pd_id) "scmd %d: DCMD PD get info for dev %d" |
| 614 | megasas_dcmd_pd_list_query(int cmd, int flags) "scmd %d: DCMD PD list query flags %x" |
Hannes Reinecke | 10d6530 | 2012-07-11 13:35:16 +0200 | [diff] [blame] | 615 | megasas_dcmd_unsupported(int cmd, unsigned long size) "scmd %d: set properties len %ld" |
Hannes Reinecke | e8f943c | 2012-05-29 13:51:17 +0200 | [diff] [blame] | 616 | megasas_abort_frame(int cmd, int abort_cmd) "scmd %d: aborting frame %x" |
| 617 | megasas_abort_no_cmd(int cmd, uint64_t context) "scmd %d: no active command for frame context %" PRIx64 "" |
| 618 | megasas_abort_invalid_context(int cmd, uint64_t context, int abort_cmd) "scmd %d: invalid frame context %" PRIx64 " for abort frame %x" |
| 619 | megasas_reset(void) "Reset" |
| 620 | megasas_init(int sges, int cmds, const char *intr, const char *mode) "Using %d sges, %d cmds, %s, %s mode" |
| 621 | megasas_msix_raise(int vector) "vector %d" |
| 622 | megasas_irq_lower(void) "INTx" |
| 623 | megasas_irq_raise(void) "INTx" |
| 624 | megasas_intr_enabled(void) "Interrupts enabled" |
| 625 | megasas_intr_disabled(void) "Interrupts disabled" |
| 626 | megasas_mmio_readl(unsigned long addr, uint32_t val) "addr 0x%lx: 0x%x" |
| 627 | megasas_mmio_invalid_readl(unsigned long addr) "addr 0x%lx" |
| 628 | megasas_mmio_writel(uint32_t addr, uint32_t val) "addr 0x%x: 0x%x" |
| 629 | megasas_mmio_invalid_writel(uint32_t addr, uint32_t val) "addr 0x%x: 0x%x" |
| 630 | |
Michael Walle | 25a8bb9 | 2011-03-07 23:32:32 +0100 | [diff] [blame] | 631 | # hw/milkymist-ac97.c |
Lluís | 47f08d7 | 2011-08-31 20:31:58 +0200 | [diff] [blame] | 632 | milkymist_ac97_memory_read(uint32_t addr, uint32_t value) "addr %08x value %08x" |
| 633 | milkymist_ac97_memory_write(uint32_t addr, uint32_t value) "addr %08x value %08x" |
| 634 | milkymist_ac97_pulse_irq_crrequest(void) "Pulse IRQ CR request" |
| 635 | milkymist_ac97_pulse_irq_crreply(void) "Pulse IRQ CR reply" |
| 636 | milkymist_ac97_pulse_irq_dmaw(void) "Pulse IRQ DMA write" |
| 637 | milkymist_ac97_pulse_irq_dmar(void) "Pulse IRQ DMA read" |
| 638 | milkymist_ac97_in_cb(int avail, uint32_t remaining) "avail %d remaining %u" |
| 639 | milkymist_ac97_in_cb_transferred(int transferred) "transferred %d" |
| 640 | milkymist_ac97_out_cb(int free, uint32_t remaining) "free %d remaining %u" |
| 641 | milkymist_ac97_out_cb_transferred(int transferred) "transferred %d" |
Michael Walle | e4dc6d2 | 2011-03-07 23:32:33 +0100 | [diff] [blame] | 642 | |
| 643 | # hw/milkymist-hpdmc.c |
Lluís | 47f08d7 | 2011-08-31 20:31:58 +0200 | [diff] [blame] | 644 | milkymist_hpdmc_memory_read(uint32_t addr, uint32_t value) "addr=%08x value=%08x" |
| 645 | milkymist_hpdmc_memory_write(uint32_t addr, uint32_t value) "addr=%08x value=%08x" |
Michael Walle | b4e37d9 | 2011-03-07 23:32:34 +0100 | [diff] [blame] | 646 | |
| 647 | # hw/milkymist-memcard.c |
Lluís | 47f08d7 | 2011-08-31 20:31:58 +0200 | [diff] [blame] | 648 | milkymist_memcard_memory_read(uint32_t addr, uint32_t value) "addr %08x value %08x" |
| 649 | milkymist_memcard_memory_write(uint32_t addr, uint32_t value) "addr %08x value %08x" |
Michael Walle | 0742454 | 2011-03-07 23:32:35 +0100 | [diff] [blame] | 650 | |
Michael Walle | 57aa265 | 2011-04-13 00:29:36 +0200 | [diff] [blame] | 651 | # hw/milkymist-minimac2.c |
Lluís | 47f08d7 | 2011-08-31 20:31:58 +0200 | [diff] [blame] | 652 | milkymist_minimac2_memory_read(uint32_t addr, uint32_t value) "addr %08x value %08x" |
| 653 | milkymist_minimac2_memory_write(uint32_t addr, uint32_t value) "addr %08x value %08x" |
| 654 | milkymist_minimac2_mdio_write(uint8_t phy_addr, uint8_t addr, uint16_t value) "phy_addr %02x addr %02x value %04x" |
| 655 | milkymist_minimac2_mdio_read(uint8_t phy_addr, uint8_t addr, uint16_t value) "phy_addr %02x addr %02x value %04x" |
| 656 | milkymist_minimac2_tx_frame(uint32_t length) "length %u" |
| 657 | milkymist_minimac2_rx_frame(const void *buf, uint32_t length) "buf %p length %u" |
| 658 | milkymist_minimac2_drop_rx_frame(const void *buf) "buf %p" |
| 659 | milkymist_minimac2_rx_transfer(const void *buf, uint32_t length) "buf %p length %d" |
| 660 | milkymist_minimac2_raise_irq_rx(void) "Raise IRQ RX" |
| 661 | milkymist_minimac2_lower_irq_rx(void) "Lower IRQ RX" |
| 662 | milkymist_minimac2_pulse_irq_tx(void) "Pulse IRQ TX" |
Michael Walle | 5ee18b9 | 2011-03-07 23:32:36 +0100 | [diff] [blame] | 663 | |
| 664 | # hw/milkymist-pfpu.c |
Lluís | 47f08d7 | 2011-08-31 20:31:58 +0200 | [diff] [blame] | 665 | milkymist_pfpu_memory_read(uint32_t addr, uint32_t value) "addr %08x value %08x" |
| 666 | milkymist_pfpu_memory_write(uint32_t addr, uint32_t value) "addr %08x value %08x" |
| 667 | milkymist_pfpu_vectout(uint32_t a, uint32_t b, uint32_t dma_ptr) "a %08x b %08x dma_ptr %08x" |
| 668 | milkymist_pfpu_pulse_irq(void) "Pulse IRQ" |
Michael Walle | 87a381e | 2011-03-07 23:32:37 +0100 | [diff] [blame] | 669 | |
| 670 | # hw/milkymist-softusb.c |
Lluís | 47f08d7 | 2011-08-31 20:31:58 +0200 | [diff] [blame] | 671 | milkymist_softusb_memory_read(uint32_t addr, uint32_t value) "addr %08x value %08x" |
| 672 | milkymist_softusb_memory_write(uint32_t addr, uint32_t value) "addr %08x value %08x" |
| 673 | milkymist_softusb_mevt(uint8_t m) "m %d" |
| 674 | milkymist_softusb_kevt(uint8_t m) "m %d" |
| 675 | milkymist_softusb_mouse_event(int dx, int dy, int dz, int bs) "dx %d dy %d dz %d bs %02x" |
| 676 | milkymist_softusb_pulse_irq(void) "Pulse IRQ" |
Michael Walle | 9683242 | 2011-03-07 23:32:38 +0100 | [diff] [blame] | 677 | |
| 678 | # hw/milkymist-sysctl.c |
Lluís | 47f08d7 | 2011-08-31 20:31:58 +0200 | [diff] [blame] | 679 | milkymist_sysctl_memory_read(uint32_t addr, uint32_t value) "addr %08x value %08x" |
| 680 | milkymist_sysctl_memory_write(uint32_t addr, uint32_t value) "addr %08x value %08x" |
| 681 | milkymist_sysctl_icap_write(uint32_t value) "value %08x" |
| 682 | milkymist_sysctl_start_timer0(void) "Start timer0" |
| 683 | milkymist_sysctl_stop_timer0(void) "Stop timer0" |
| 684 | milkymist_sysctl_start_timer1(void) "Start timer1" |
| 685 | milkymist_sysctl_stop_timer1(void) "Stop timer1" |
| 686 | milkymist_sysctl_pulse_irq_timer0(void) "Pulse IRQ Timer0" |
| 687 | milkymist_sysctl_pulse_irq_timer1(void) "Pulse IRQ Timer1" |
Michael Walle | 0670dad | 2011-03-07 23:32:40 +0100 | [diff] [blame] | 688 | |
| 689 | # hw/milkymist-tmu2.c |
Lluís | 47f08d7 | 2011-08-31 20:31:58 +0200 | [diff] [blame] | 690 | milkymist_tmu2_memory_read(uint32_t addr, uint32_t value) "addr %08x value %08x" |
| 691 | milkymist_tmu2_memory_write(uint32_t addr, uint32_t value) "addr %08x value %08x" |
| 692 | milkymist_tmu2_start(void) "Start TMU" |
| 693 | milkymist_tmu2_pulse_irq(void) "Pulse IRQ" |
Michael Walle | 883de16 | 2011-03-07 23:32:41 +0100 | [diff] [blame] | 694 | |
| 695 | # hw/milkymist-uart.c |
Lluís | 47f08d7 | 2011-08-31 20:31:58 +0200 | [diff] [blame] | 696 | milkymist_uart_memory_read(uint32_t addr, uint32_t value) "addr %08x value %08x" |
| 697 | milkymist_uart_memory_write(uint32_t addr, uint32_t value) "addr %08x value %08x" |
Michael Walle | fcfa339 | 2011-08-11 00:13:23 +0200 | [diff] [blame] | 698 | milkymist_uart_raise_irq(void) "Raise IRQ" |
| 699 | milkymist_uart_lower_irq(void) "Lower IRQ" |
Michael Walle | d23948b | 2011-03-07 23:32:42 +0100 | [diff] [blame] | 700 | |
| 701 | # hw/milkymist-vgafb.c |
Lluís | 47f08d7 | 2011-08-31 20:31:58 +0200 | [diff] [blame] | 702 | milkymist_vgafb_memory_read(uint32_t addr, uint32_t value) "addr %08x value %08x" |
| 703 | milkymist_vgafb_memory_write(uint32_t addr, uint32_t value) "addr %08x value %08x" |
Jun Nakajima | 432d268 | 2010-08-31 16:41:25 +0100 | [diff] [blame] | 704 | |
Hervé Poussineau | 83818f7 | 2011-09-04 22:29:27 +0200 | [diff] [blame] | 705 | # hw/mipsnet.c |
| 706 | mipsnet_send(uint32_t size) "sending len=%u" |
| 707 | mipsnet_receive(uint32_t size) "receiving len=%u" |
| 708 | mipsnet_read(uint64_t addr, uint32_t val) "read addr=0x%" PRIx64 " val=0x%x" |
Paolo Bonzini | 903ec8e | 2011-09-13 17:47:52 +0200 | [diff] [blame] | 709 | mipsnet_write(uint64_t addr, uint64_t val) "write addr=0x%" PRIx64 " val=0x%" PRIx64 "" |
Hervé Poussineau | 83818f7 | 2011-09-04 22:29:27 +0200 | [diff] [blame] | 710 | mipsnet_irq(uint32_t isr, uint32_t intctl) "set irq to %d (%02x)" |
| 711 | |
Jun Nakajima | 432d268 | 2010-08-31 16:41:25 +0100 | [diff] [blame] | 712 | # xen-all.c |
Lluís | 47f08d7 | 2011-08-31 20:31:58 +0200 | [diff] [blame] | 713 | xen_ram_alloc(unsigned long ram_addr, unsigned long size) "requested: %#lx, size %#lx" |
Avi Kivity | 20581d2 | 2011-12-19 12:07:50 +0200 | [diff] [blame] | 714 | xen_client_set_memory(uint64_t start_addr, unsigned long size, bool log_dirty) "%#"PRIx64" size %#lx, log_dirty %i" |
Jun Nakajima | 432d268 | 2010-08-31 16:41:25 +0100 | [diff] [blame] | 715 | |
| 716 | # xen-mapcache.c |
Stefan Hajnoczi | 689d7e2 | 2011-09-13 13:34:36 +0100 | [diff] [blame] | 717 | xen_map_cache(uint64_t phys_addr) "want %#"PRIx64 |
| 718 | xen_remap_bucket(uint64_t index) "index %#"PRIx64 |
Lluís | 47f08d7 | 2011-08-31 20:31:58 +0200 | [diff] [blame] | 719 | xen_map_cache_return(void* ptr) "%p" |
Stefan Hajnoczi | 689d7e2 | 2011-09-13 13:34:36 +0100 | [diff] [blame] | 720 | xen_map_block(uint64_t phys_addr, uint64_t size) "%#"PRIx64", size %#"PRIx64 |
Lluís | 47f08d7 | 2011-08-31 20:31:58 +0200 | [diff] [blame] | 721 | xen_unmap_block(void* addr, unsigned long size) "%p, size %#lx" |
Anthony PERARD | 050a0dd | 2010-09-16 13:57:49 +0100 | [diff] [blame] | 722 | |
| 723 | # exec.c |
Lluís | 47f08d7 | 2011-08-31 20:31:58 +0200 | [diff] [blame] | 724 | qemu_put_ram_ptr(void* addr) "%p" |
Steven Smith | 01195b7 | 2011-06-16 17:05:17 +0100 | [diff] [blame] | 725 | |
| 726 | # hw/xen_platform.c |
Lluís | 47f08d7 | 2011-08-31 20:31:58 +0200 | [diff] [blame] | 727 | xen_platform_log(char *s) "xen platform: %s" |
Kevin Wolf | 00dccaf | 2011-01-17 16:08:14 +0000 | [diff] [blame] | 728 | |
| 729 | # qemu-coroutine.c |
Lluís | 47f08d7 | 2011-08-31 20:31:58 +0200 | [diff] [blame] | 730 | qemu_coroutine_enter(void *from, void *to, void *opaque) "from %p to %p opaque %p" |
| 731 | qemu_coroutine_yield(void *from, void *to) "from %p to %p" |
| 732 | qemu_coroutine_terminate(void *co) "self %p" |
Kevin Wolf | b96e924 | 2011-06-30 17:56:46 +0200 | [diff] [blame] | 733 | |
| 734 | # qemu-coroutine-lock.c |
Lluís | 47f08d7 | 2011-08-31 20:31:58 +0200 | [diff] [blame] | 735 | qemu_co_queue_next_bh(void) "" |
Kevin Wolf | bfe24e1 | 2012-03-12 10:28:34 +0100 | [diff] [blame] | 736 | qemu_co_queue_next(void *nxt) "next %p" |
Lluís | 47f08d7 | 2011-08-31 20:31:58 +0200 | [diff] [blame] | 737 | qemu_co_mutex_lock_entry(void *mutex, void *self) "mutex %p self %p" |
| 738 | qemu_co_mutex_lock_return(void *mutex, void *self) "mutex %p self %p" |
| 739 | qemu_co_mutex_unlock_entry(void *mutex, void *self) "mutex %p self %p" |
| 740 | qemu_co_mutex_unlock_return(void *mutex, void *self) "mutex %p self %p" |
Blue Swirl | 30c2f23 | 2011-08-07 11:01:05 +0000 | [diff] [blame] | 741 | |
| 742 | # hw/escc.c |
Lluís | 47f08d7 | 2011-08-31 20:31:58 +0200 | [diff] [blame] | 743 | escc_put_queue(char channel, int b) "channel %c put: 0x%02x" |
| 744 | escc_get_queue(char channel, int val) "channel %c get 0x%02x" |
| 745 | escc_update_irq(int irq) "IRQ = %d" |
| 746 | 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" |
| 747 | escc_mem_writeb_ctrl(char channel, uint32_t reg, uint32_t val) "Write channel %c, reg[%d] = %2.2x" |
| 748 | escc_mem_writeb_data(char channel, uint32_t val) "Write channel %c, ch %d" |
| 749 | escc_mem_readb_ctrl(char channel, uint32_t reg, uint8_t val) "Read channel %c, reg[%d] = %2.2x" |
| 750 | escc_mem_readb_data(char channel, uint32_t ret) "Read channel %c, ch %d" |
| 751 | escc_serial_receive_byte(char channel, int ch) "channel %c put ch %d" |
| 752 | escc_sunkbd_event_in(int ch) "Untranslated keycode %2.2x" |
| 753 | escc_sunkbd_event_out(int ch) "Translated keycode %2.2x" |
| 754 | escc_kbd_command(int val) "Command %d" |
| 755 | escc_sunmouse_event(int dx, int dy, int buttons_state) "dx=%d dy=%d buttons=%01x" |
Blue Swirl | bf4b988 | 2011-09-11 15:54:18 +0000 | [diff] [blame] | 756 | |
Ronnie Sahlberg | c589b24 | 2011-10-25 19:24:24 +1100 | [diff] [blame] | 757 | # block/iscsi.c |
Ronnie Sahlberg | f4dfa67 | 2012-05-22 20:10:05 +1000 | [diff] [blame] | 758 | iscsi_aio_write16_cb(void *iscsi, int status, void *acb, int canceled) "iscsi %p status %d acb %p canceled %d" |
Ronnie Sahlberg | c589b24 | 2011-10-25 19:24:24 +1100 | [diff] [blame] | 759 | 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" |
Ronnie Sahlberg | f4dfa67 | 2012-05-22 20:10:05 +1000 | [diff] [blame] | 760 | iscsi_aio_read16_cb(void *iscsi, int status, void *acb, int canceled) "iscsi %p status %d acb %p canceled %d" |
Ronnie Sahlberg | c589b24 | 2011-10-25 19:24:24 +1100 | [diff] [blame] | 761 | 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" |
| 762 | |
Blue Swirl | bf4b988 | 2011-09-11 15:54:18 +0000 | [diff] [blame] | 763 | # hw/esp.c |
Hervé Poussineau | 3af4e9a | 2012-07-09 12:02:29 +0200 | [diff] [blame] | 764 | esp_error_fifo_overrun(void) "FIFO overrun" |
| 765 | esp_error_unhandled_command(uint32_t val) "unhandled command (%2.2x)" |
| 766 | esp_error_invalid_write(uint32_t val, uint32_t addr) "invalid write of 0x%02x at [0x%x]" |
Blue Swirl | bf4b988 | 2011-09-11 15:54:18 +0000 | [diff] [blame] | 767 | esp_raise_irq(void) "Raise IRQ" |
| 768 | esp_lower_irq(void) "Lower IRQ" |
| 769 | esp_dma_enable(void) "Raise enable" |
| 770 | esp_dma_disable(void) "Lower enable" |
| 771 | esp_get_cmd(uint32_t dmalen, int target) "len %d target %d" |
| 772 | esp_do_busid_cmd(uint8_t busid) "busid 0x%x" |
| 773 | esp_handle_satn_stop(uint32_t cmdlen) "cmdlen %d" |
| 774 | esp_write_response(uint32_t status) "Transfer status (status=%d)" |
| 775 | esp_do_dma(uint32_t cmdlen, uint32_t len) "command len %d + %d" |
| 776 | esp_command_complete(void) "SCSI Command complete" |
| 777 | esp_command_complete_unexpected(void) "SCSI command completed unexpectedly" |
| 778 | esp_command_complete_fail(void) "Command failed" |
| 779 | esp_transfer_data(uint32_t dma_left, int32_t ti_size) "transfer %d/%d" |
| 780 | esp_handle_ti(uint32_t minlen) "Transfer Information len %d" |
| 781 | esp_handle_ti_cmd(uint32_t cmdlen) "command len %d" |
| 782 | esp_mem_readb(uint32_t saddr, uint8_t reg) "reg[%d]: 0x%2.2x" |
| 783 | esp_mem_writeb(uint32_t saddr, uint8_t reg, uint32_t val) "reg[%d]: 0x%2.2x -> 0x%2.2x" |
| 784 | esp_mem_writeb_cmd_nop(uint32_t val) "NOP (%2.2x)" |
| 785 | esp_mem_writeb_cmd_flush(uint32_t val) "Flush FIFO (%2.2x)" |
| 786 | esp_mem_writeb_cmd_reset(uint32_t val) "Chip reset (%2.2x)" |
| 787 | esp_mem_writeb_cmd_bus_reset(uint32_t val) "Bus reset (%2.2x)" |
| 788 | esp_mem_writeb_cmd_iccs(uint32_t val) "Initiator Command Complete Sequence (%2.2x)" |
| 789 | esp_mem_writeb_cmd_msgacc(uint32_t val) "Message Accepted (%2.2x)" |
| 790 | esp_mem_writeb_cmd_pad(uint32_t val) "Transfer padding (%2.2x)" |
| 791 | esp_mem_writeb_cmd_satn(uint32_t val) "Set ATN (%2.2x)" |
Hervé Poussineau | 6915bff | 2012-07-09 12:02:25 +0200 | [diff] [blame] | 792 | esp_mem_writeb_cmd_rstatn(uint32_t val) "Reset ATN (%2.2x)" |
Blue Swirl | bf4b988 | 2011-09-11 15:54:18 +0000 | [diff] [blame] | 793 | esp_mem_writeb_cmd_sel(uint32_t val) "Select without ATN (%2.2x)" |
| 794 | esp_mem_writeb_cmd_selatn(uint32_t val) "Select with ATN (%2.2x)" |
| 795 | esp_mem_writeb_cmd_selatns(uint32_t val) "Select with ATN & stop (%2.2x)" |
| 796 | esp_mem_writeb_cmd_ensel(uint32_t val) "Enable selection (%2.2x)" |
Hervé Poussineau | 6fe84c1 | 2012-07-09 12:02:24 +0200 | [diff] [blame] | 797 | esp_mem_writeb_cmd_dissel(uint32_t val) "Disable selection (%2.2x)" |
Hervé Poussineau | fabaaf1 | 2012-07-09 12:02:31 +0200 | [diff] [blame] | 798 | esp_pci_error_invalid_dma_direction(void) "invalid DMA transfer direction" |
| 799 | esp_pci_error_invalid_read(uint32_t reg) "read access outside bounds (reg 0x%x)" |
| 800 | esp_pci_error_invalid_write(uint32_t reg) "write access outside bounds (reg 0x%x)" |
| 801 | esp_pci_error_invalid_write_dma(uint32_t val, uint32_t addr) "invalid write of 0x%02x at [0x%x]" |
| 802 | esp_pci_dma_read(uint32_t saddr, uint32_t reg) "reg[%d]: 0x%8.8x" |
| 803 | esp_pci_dma_write(uint32_t saddr, uint32_t reg, uint32_t val) "reg[%d]: 0x%8.8x -> 0x%8.8x" |
| 804 | esp_pci_dma_idle(uint32_t val) "IDLE (%.8x)" |
| 805 | esp_pci_dma_blast(uint32_t val) "BLAST (%.8x)" |
| 806 | esp_pci_dma_abort(uint32_t val) "ABORT (%.8x)" |
| 807 | esp_pci_dma_start(uint32_t val) "START (%.8x)" |
| 808 | esp_pci_sbac_read(uint32_t reg) "sbac: 0x%8.8x" |
| 809 | esp_pci_sbac_write(uint32_t reg, uint32_t val) "sbac: 0x%8.8x -> 0x%8.8x" |
Stefan Hajnoczi | 89bd820 | 2011-09-23 08:23:06 +0100 | [diff] [blame] | 810 | |
| 811 | # monitor.c |
| 812 | handle_qmp_command(void *mon, const char *cmd_name) "mon %p cmd_name \"%s\"" |
| 813 | monitor_protocol_emitter(void *mon) "mon %p" |
Daniel P. Berrange | afeecec | 2012-06-14 18:12:57 +0100 | [diff] [blame] | 814 | monitor_protocol_event(uint32_t event, const char *evname, void *data) "event=%d name \"%s\" data %p" |
| 815 | monitor_protocol_event_handler(uint32_t event, void *data, uint64_t last, uint64_t now) "event=%d data=%p last=%" PRId64 " now=%" PRId64 |
| 816 | monitor_protocol_event_emit(uint32_t event, void *data) "event=%d data=%p" |
| 817 | 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 |
| 818 | monitor_protocol_event_throttle(uint32_t event, uint64_t rate) "event=%d rate=%" PRId64 |
Max Filippov | 342407f | 2011-10-16 02:56:45 +0400 | [diff] [blame] | 819 | |
| 820 | # hw/opencores_eth.c |
| 821 | open_eth_mii_write(unsigned idx, uint16_t v) "MII[%02x] <- %04x" |
| 822 | open_eth_mii_read(unsigned idx, uint16_t v) "MII[%02x] -> %04x" |
| 823 | open_eth_update_irq(uint32_t v) "IRQ <- %x" |
| 824 | open_eth_receive(unsigned len) "RX: len: %u" |
| 825 | open_eth_receive_mcast(unsigned idx, uint32_t h0, uint32_t h1) "MCAST: idx = %u, hash: %08x:%08x" |
| 826 | open_eth_receive_reject(void) "RX: rejected" |
| 827 | open_eth_receive_desc(uint32_t addr, uint32_t len_flags) "RX: %08x, len_flags: %08x" |
| 828 | open_eth_start_xmit(uint32_t addr, unsigned len, unsigned tx_len) "TX: %08x, len: %u, tx_len: %u" |
| 829 | open_eth_reg_read(uint32_t addr, uint32_t v) "MAC[%02x] -> %08x" |
| 830 | open_eth_reg_write(uint32_t addr, uint32_t v) "MAC[%02x] <- %08x" |
| 831 | open_eth_desc_read(uint32_t addr, uint32_t v) "DESC[%04x] -> %08x" |
| 832 | open_eth_desc_write(uint32_t addr, uint32_t v) "DESC[%04x] <- %08x" |
Anthony Liguori | 1f99b94 | 2011-10-20 08:42:08 -0500 | [diff] [blame] | 833 | |
Harsh Prateek Bora | c572f23 | 2011-10-12 19:11:25 +0530 | [diff] [blame] | 834 | # hw/9pfs/virtio-9p.c |
Aneesh Kumar K.V | 7999f7e | 2011-10-24 15:09:49 +0530 | [diff] [blame] | 835 | v9fs_rerror(uint16_t tag, uint8_t id, int err) "tag %d id %d err %d" |
Harsh Prateek Bora | c572f23 | 2011-10-12 19:11:25 +0530 | [diff] [blame] | 836 | v9fs_version(uint16_t tag, uint8_t id, int32_t msize, char* version) "tag %d id %d msize %d version %s" |
| 837 | v9fs_version_return(uint16_t tag, uint8_t id, int32_t msize, char* version) "tag %d id %d msize %d version %s" |
Stefan Weil | c76eaf1 | 2011-10-20 21:55:58 +0200 | [diff] [blame] | 838 | 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" |
Harsh Prateek Bora | c572f23 | 2011-10-12 19:11:25 +0530 | [diff] [blame] | 839 | 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"" |
| 840 | v9fs_stat(uint16_t tag, uint8_t id, int32_t fid) "tag %d id %d fid %d" |
| 841 | 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"}" |
| 842 | v9fs_getattr(uint16_t tag, uint8_t id, int32_t fid, uint64_t request_mask) "tag %d id %d fid %d request_mask %"PRIu64"" |
| 843 | 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}" |
| 844 | 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" |
| 845 | v9fs_walk_return(uint16_t tag, uint8_t id, uint16_t nwnames, void* qids) "tag %d id %d nwnames %d qids %p" |
| 846 | v9fs_open(uint16_t tag, uint8_t id, int32_t fid, int32_t mode) "tag %d id %d fid %d mode %d" |
| 847 | 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" |
| 848 | 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" |
| 849 | 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" |
| 850 | v9fs_fsync(uint16_t tag, uint8_t id, int32_t fid, int datasync) "tag %d id %d fid %d datasync %d" |
| 851 | v9fs_clunk(uint16_t tag, uint8_t id, int32_t fid) "tag %d id %d fid %d" |
Aneesh Kumar K.V | 2f008a8 | 2011-12-21 12:37:23 +0530 | [diff] [blame] | 852 | 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" |
Harsh Prateek Bora | c572f23 | 2011-10-12 19:11:25 +0530 | [diff] [blame] | 853 | v9fs_read_return(uint16_t tag, uint8_t id, int32_t count, ssize_t err) "tag %d id %d count %d err %zd" |
Aneesh Kumar K.V | 2f008a8 | 2011-12-21 12:37:23 +0530 | [diff] [blame] | 854 | 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" |
| 855 | v9fs_readdir_return(uint16_t tag, uint8_t id, uint32_t count, ssize_t retval) "tag %d id %d count %u retval %zd" |
| 856 | 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" |
Harsh Prateek Bora | c572f23 | 2011-10-12 19:11:25 +0530 | [diff] [blame] | 857 | v9fs_write_return(uint16_t tag, uint8_t id, int32_t total, ssize_t err) "tag %d id %d total %d err %zd" |
| 858 | 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" |
| 859 | 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" |
| 860 | 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" |
| 861 | 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"}" |
| 862 | v9fs_flush(uint16_t tag, uint8_t id, int16_t flush_tag) "tag %d id %d flush_tag %d" |
| 863 | 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" |
| 864 | v9fs_remove(uint16_t tag, uint8_t id, int32_t fid) "tag %d id %d fid %d" |
Stefan Weil | c76eaf1 | 2011-10-20 21:55:58 +0200 | [diff] [blame] | 865 | 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}" |
Harsh Prateek Bora | c572f23 | 2011-10-12 19:11:25 +0530 | [diff] [blame] | 866 | 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" |
| 867 | 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"}" |
| 868 | 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"" |
| 869 | v9fs_lock_return(uint16_t tag, uint8_t id, int8_t status) "tag %d id %d status %d" |
| 870 | 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"" |
| 871 | 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" |
Stefan Weil | c76eaf1 | 2011-10-20 21:55:58 +0200 | [diff] [blame] | 872 | 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" |
| 873 | 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" |
Harsh Prateek Bora | c572f23 | 2011-10-12 19:11:25 +0530 | [diff] [blame] | 874 | 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" |
| 875 | v9fs_xattrwalk_return(uint16_t tag, uint8_t id, int64_t size) "tag %d id %d size %"PRId64"" |
| 876 | 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" |
| 877 | v9fs_readlink(uint16_t tag, uint8_t id, int32_t fid) "tag %d id %d fid %d" |
| 878 | v9fs_readlink_return(uint16_t tag, uint8_t id, char* target) "tag %d id %d name %s" |
Blue Swirl | ec0ceb1 | 2011-09-11 14:51:24 +0000 | [diff] [blame] | 879 | |
| 880 | # target-sparc/mmu_helper.c |
| 881 | 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" |
| 882 | 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" |
| 883 | mmu_helper_dmiss(uint64_t address, uint64_t context) "DMISS at %"PRIx64" context %"PRIx64"" |
| 884 | mmu_helper_tfault(uint64_t address, uint64_t context) "TFAULT at %"PRIx64" context %"PRIx64"" |
| 885 | mmu_helper_tmiss(uint64_t address, uint64_t context) "TMISS at %"PRIx64" context %"PRIx64"" |
| 886 | 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"" |
| 887 | 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"" |
| 888 | 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"" |
Blue Swirl | 11e66bc | 2011-09-11 15:05:41 +0000 | [diff] [blame] | 889 | |
| 890 | # target-sparc/int_helper.c |
| 891 | int_helper_set_softint(uint32_t softint) "new %08x" |
| 892 | int_helper_clear_softint(uint32_t softint) "new %08x" |
| 893 | int_helper_write_softint(uint32_t softint) "new %08x" |
| 894 | int_helper_icache_freeze(void) "Instruction cache: freeze" |
| 895 | int_helper_dcache_freeze(void) "Data cache: freeze" |
Blue Swirl | 870be6a | 2011-09-11 15:53:35 +0000 | [diff] [blame] | 896 | |
| 897 | # target-sparc/win_helper.c |
| 898 | win_helper_gregset_error(uint32_t pstate) "ERROR in get_gregset: active pstate bits=%x" |
| 899 | win_helper_switch_pstate(uint32_t pstate_regs, uint32_t new_pstate_regs) "change_pstate: switching regs old=%x new=%x" |
| 900 | win_helper_no_switch_pstate(uint32_t new_pstate_regs) "change_pstate: regs new=%x (unchanged)" |
| 901 | win_helper_wrpil(uint32_t psrpil, uint32_t new_pil) "old=%x new=%x" |
| 902 | win_helper_done(uint32_t tl) "tl=%d" |
| 903 | win_helper_retry(uint32_t tl) "tl=%d" |
Kevin Wolf | c57c465 | 2011-11-24 06:15:28 -0500 | [diff] [blame] | 904 | |
| 905 | # dma-helpers.c |
| 906 | dma_bdrv_io(void *dbs, void *bs, int64_t sector_num, bool to_dev) "dbs=%p bs=%p sector_num=%" PRId64 " to_dev=%d" |
| 907 | dma_aio_cancel(void *dbs) "dbs=%p" |
| 908 | dma_complete(void *dbs, int ret, void *cb) "dbs=%p ret=%d cb=%p" |
| 909 | dma_bdrv_cb(void *dbs, int ret) "dbs=%p ret=%d" |
| 910 | dma_map_wait(void *dbs) "dbs=%p" |
Alon Levy | cdbc19d | 2012-03-11 18:11:26 +0200 | [diff] [blame] | 911 | |
| 912 | # console.h |
| 913 | displaysurface_free(void *display_state, void *display_surface) "state=%p surface=%p" |
| 914 | displaysurface_resize(void *display_state, void *display_surface, int width, int height) "state=%p surface=%p %dx%d" |
Alon Levy | 7275001 | 2012-03-11 18:11:27 +0200 | [diff] [blame] | 915 | |
| 916 | # vga.c |
| 917 | ppm_save(const char *filename, void *display_surface) "%s surface=%p" |
Alon Levy | c480bb7 | 2012-03-18 13:46:14 +0100 | [diff] [blame] | 918 | |
Juan Quintela | 517a13c | 2012-05-21 23:46:44 +0200 | [diff] [blame] | 919 | # savevm.c |
| 920 | |
| 921 | savevm_section_start(void) "" |
| 922 | savevm_section_end(unsigned int section_id) "section_id %u" |
| 923 | |
Juan Quintela | 3c12193 | 2012-09-04 13:08:57 +0200 | [diff] [blame] | 924 | # arch_init.c |
| 925 | migration_bitmap_sync_start(void) "" |
| 926 | migration_bitmap_sync_end(uint64_t dirty_pages) "dirty_pages %" PRIu64"" |
| 927 | |
Alon Levy | c480bb7 | 2012-03-18 13:46:14 +0100 | [diff] [blame] | 928 | # hw/qxl.c |
| 929 | disable qxl_interface_set_mm_time(int qid, uint32_t mm_time) "%d %d" |
| 930 | disable qxl_io_write_vga(int qid, const char *mode, uint32_t addr, uint32_t val) "%d %s addr=%u val=%u" |
Stefan Weil | 95b752b | 2012-03-24 08:13:34 +0100 | [diff] [blame] | 931 | 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" |
Alon Levy | c480bb7 | 2012-03-18 13:46:14 +0100 | [diff] [blame] | 932 | qxl_create_guest_primary_rest(int qid, int32_t stride, uint32_t type, uint32_t flags) "%d %d,%d,%d" |
| 933 | qxl_destroy_primary(int qid) "%d" |
| 934 | qxl_enter_vga_mode(int qid) "%d" |
| 935 | qxl_exit_vga_mode(int qid) "%d" |
| 936 | qxl_hard_reset(int qid, int64_t loadvm) "%d loadvm=%"PRId64"" |
| 937 | qxl_interface_async_complete_io(int qid, uint32_t current_async, void *cookie) "%d current=%d cookie=%p" |
| 938 | qxl_interface_attach_worker(int qid) "%d" |
| 939 | qxl_interface_get_init_info(int qid) "%d" |
| 940 | qxl_interface_set_compression_level(int qid, int64_t level) "%d %"PRId64 |
| 941 | 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]" |
| 942 | qxl_interface_update_area_complete_rest(int qid, uint32_t num_updated_rects) "%d #=%d" |
| 943 | qxl_interface_update_area_complete_overflow(int qid, int max) "%d max=%d" |
| 944 | qxl_interface_update_area_complete_schedule_bh(int qid, uint32_t num_dirty) "%d #dirty=%d" |
| 945 | qxl_io_destroy_primary_ignored(int qid, const char *mode) "%d %s" |
Alon Levy | a639ab0 | 2012-09-12 16:13:28 +0300 | [diff] [blame] | 946 | qxl_io_log(int qid, const uint8_t *log_buf) "%d %s" |
Alon Levy | c480bb7 | 2012-03-18 13:46:14 +0100 | [diff] [blame] | 947 | qxl_io_read_unexpected(int qid) "%d" |
Alon Levy | 917ae08 | 2012-09-12 16:13:26 +0300 | [diff] [blame] | 948 | qxl_io_unexpected_vga_mode(int qid, uint64_t addr, uint64_t val, const char *desc) "%d 0x%"PRIx64"=%"PRIu64" (%s)" |
Alon Levy | c480bb7 | 2012-03-18 13:46:14 +0100 | [diff] [blame] | 949 | 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" |
| 950 | 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 |
| 951 | qxl_post_load(int qid, const char *mode) "%d %s" |
| 952 | qxl_pre_load(int qid) "%d" |
| 953 | qxl_pre_save(int qid) "%d" |
| 954 | qxl_reset_surfaces(int qid) "%d" |
| 955 | qxl_ring_command_check(int qid, const char *mode) "%d %s" |
| 956 | qxl_ring_command_get(int qid, const char *mode) "%d %s" |
| 957 | qxl_ring_command_req_notification(int qid) "%d" |
| 958 | qxl_ring_cursor_check(int qid, const char *mode) "%d %s" |
| 959 | qxl_ring_cursor_get(int qid, const char *mode) "%d %s" |
| 960 | qxl_ring_cursor_req_notification(int qid) "%d" |
| 961 | 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" |
| 962 | 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]" |
| 963 | qxl_ring_res_put(int qid, uint32_t free_res) "%d #res=%d" |
| 964 | 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 " ]" |
| 965 | qxl_soft_reset(int qid) "%d" |
| 966 | 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" |
| 967 | qemu_spice_del_memslot(int qid, uint32_t gid, uint32_t slot_id) "%d gid=%u sid=%u" |
| 968 | qemu_spice_create_primary_surface(int qid, uint32_t sid, void *surface, int async) "%d sid=%u surface=%p async=%d" |
| 969 | qemu_spice_destroy_primary_surface(int qid, uint32_t sid, int async) "%d sid=%u async=%d" |
| 970 | qemu_spice_wakeup(uint32_t qid) "%d" |
| 971 | qemu_spice_start(uint32_t qid) "%d" |
| 972 | qemu_spice_stop(uint32_t qid) "%d" |
| 973 | qemu_spice_create_update(uint32_t left, uint32_t right, uint32_t top, uint32_t bottom) "lr %d -> %d, tb -> %d -> %d" |
| 974 | qxl_spice_destroy_surfaces_complete(int qid) "%d" |
| 975 | qxl_spice_destroy_surfaces(int qid, int async) "%d async=%d" |
| 976 | qxl_spice_destroy_surface_wait_complete(int qid, uint32_t id) "%d sid=%d" |
| 977 | qxl_spice_destroy_surface_wait(int qid, uint32_t id, int async) "%d sid=%d async=%d" |
| 978 | qxl_spice_flush_surfaces_async(int qid, uint32_t surface_count, uint32_t num_free_res) "%d s#=%d, res#=%d" |
Alon Levy | 917ae08 | 2012-09-12 16:13:26 +0300 | [diff] [blame] | 979 | qxl_spice_monitors_config(int qid) "%d" |
Alon Levy | c480bb7 | 2012-03-18 13:46:14 +0100 | [diff] [blame] | 980 | qxl_spice_loadvm_commands(int qid, void *ext, uint32_t count) "%d ext=%p count=%d" |
| 981 | qxl_spice_oom(int qid) "%d" |
| 982 | qxl_spice_reset_cursor(int qid) "%d" |
| 983 | qxl_spice_reset_image_cache(int qid) "%d" |
| 984 | qxl_spice_reset_memslots(int qid) "%d" |
| 985 | 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]" |
| 986 | qxl_spice_update_area_rest(int qid, uint32_t num_dirty_rects, uint32_t clear_dirty_region) "%d #d=%d clear=%d" |
| 987 | qxl_surfaces_dirty(int qid, int surface, int offset, int size) "%d surface=%d offset=%d size=%d" |
Alon Levy | 917ae08 | 2012-09-12 16:13:26 +0300 | [diff] [blame] | 988 | qxl_send_events(int qid, uint32_t events) "%d %d" |
| 989 | qxl_set_guest_bug(int qid) "%d" |
Alon Levy | a639ab0 | 2012-09-12 16:13:28 +0300 | [diff] [blame] | 990 | qxl_interrupt_client_monitors_config(int qid, int num_heads, void *heads) "%d %d %p" |
| 991 | qxl_client_monitors_config_unsupported_by_guest(int qid, uint32_t int_mask, void *client_monitors_config) "%d %X %p" |
| 992 | qxl_client_monitors_config_capped(int qid, int requested, int limit) "%d %d %d" |
| 993 | qxl_client_monitors_config_crc(int qid, unsigned size, uint32_t crc32) "%d %u %u" |
Alon Levy | d53291c | 2012-03-18 13:46:15 +0100 | [diff] [blame] | 994 | |
| 995 | # hw/qxl-render.c |
| 996 | qxl_render_blit_guest_primary_initialized(void) "" |
| 997 | qxl_render_blit(int32_t stride, int32_t left, int32_t right, int32_t top, int32_t bottom) "stride=%d [%d, %d, %d, %d]" |
| 998 | 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" |
| 999 | qxl_render_update_area_done(void *cookie) "%p" |
Alexey Kardashevskiy | a2950fb | 2012-08-07 16:10:36 +0000 | [diff] [blame] | 1000 | |
| 1001 | # hw/spapr_pci.c |
Alexey Kardashevskiy | 0ee2c05 | 2012-08-07 16:10:37 +0000 | [diff] [blame] | 1002 | spapr_pci_msi(const char *msg, uint32_t n, uint32_t ca) "%s (device#%d, cfg=%x)" |
| 1003 | spapr_pci_msi_setup(const char *name, unsigned vector, uint64_t addr) "dev\"%s\" vector %u, addr=%"PRIx64 |
| 1004 | spapr_pci_rtas_ibm_change_msi(unsigned func, unsigned req) "func %u, requested %u" |
| 1005 | spapr_pci_rtas_ibm_query_interrupt_source_number(unsigned ioa, unsigned intr) "queries for #%u, IRQ%u" |
| 1006 | spapr_pci_msi_write(uint64_t addr, uint64_t data, uint32_t dt_irq) "@%"PRIx64"<=%"PRIx64" IRQ %u" |
Alexey Kardashevskiy | a2950fb | 2012-08-07 16:10:36 +0000 | [diff] [blame] | 1007 | spapr_pci_lsi_set(const char *busname, int pin, uint32_t irq) "%s PIN%d IRQ %u" |