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 | |
Markus Armbruster | 3ba0063 | 2013-06-07 12:59:21 +0200 | [diff] [blame] | 28 | # util/oslib-win32.c |
| 29 | # util/oslib-posix.c |
Lluís | 47f08d7 | 2011-08-31 20:31:58 +0200 | [diff] [blame] | 30 | qemu_memalign(size_t alignment, size_t size, void *ptr) "alignment %zu size %zu ptr %p" |
Paolo Bonzini | 6eebf95 | 2013-05-13 16:19:55 +0200 | [diff] [blame] | 31 | qemu_anon_ram_alloc(size_t size, void *ptr) "size %zu ptr %p" |
Lluís | 47f08d7 | 2011-08-31 20:31:58 +0200 | [diff] [blame] | 32 | qemu_vfree(void *ptr) "ptr %p" |
Hervé Poussineau | da4c1a7 | 2013-05-20 12:33:08 +0200 | [diff] [blame] | 33 | qemu_anon_ram_free(void *ptr, size_t size) "ptr %p size %zu" |
Stefan Hajnoczi | 6d519a5 | 2010-05-22 18:15:08 +0100 | [diff] [blame] | 34 | |
Markus Armbruster | 3ba0063 | 2013-06-07 12:59:21 +0200 | [diff] [blame] | 35 | # hw/virtio/virtio.c |
Lluís | 47f08d7 | 2011-08-31 20:31:58 +0200 | [diff] [blame] | 36 | virtqueue_fill(void *vq, const void *elem, unsigned int len, unsigned int idx) "vq %p elem %p len %u idx %u" |
| 37 | virtqueue_flush(void *vq, unsigned int count) "vq %p count %u" |
| 38 | virtqueue_pop(void *vq, void *elem, unsigned int in_num, unsigned int out_num) "vq %p elem %p in_num %u out_num %u" |
| 39 | virtio_queue_notify(void *vdev, int n, void *vq) "vdev %p n %d vq %p" |
| 40 | virtio_irq(void *vq) "vq %p" |
| 41 | virtio_notify(void *vdev, void *vq) "vdev %p vq %p" |
Stefan Hajnoczi | 4e1837f | 2011-09-13 13:34:37 +0100 | [diff] [blame] | 42 | virtio_set_status(void *vdev, uint8_t val) "vdev %p val %u" |
Stefan Hajnoczi | 64979a4 | 2010-05-24 13:19:21 +0100 | [diff] [blame] | 43 | |
Markus Armbruster | 3ba0063 | 2013-06-07 12:59:21 +0200 | [diff] [blame] | 44 | # hw/char/virtio-serial-bus.c |
Lluís | 47f08d7 | 2011-08-31 20:31:58 +0200 | [diff] [blame] | 45 | virtio_serial_send_control_event(unsigned int port, uint16_t event, uint16_t value) "port %u, event %u, value %u" |
| 46 | virtio_serial_throttle_port(unsigned int port, bool throttle) "port %u, throttle %d" |
| 47 | virtio_serial_handle_control_message(uint16_t event, uint16_t value) "event %u, value %u" |
| 48 | virtio_serial_handle_control_message_port(unsigned int port) "port %u" |
Amit Shah | 49e3fdd | 2011-07-05 16:36:39 +0530 | [diff] [blame] | 49 | |
Markus Armbruster | 3ba0063 | 2013-06-07 12:59:21 +0200 | [diff] [blame] | 50 | # hw/char/virtio-console.c |
Lluís | 47f08d7 | 2011-08-31 20:31:58 +0200 | [diff] [blame] | 51 | virtio_console_flush_buf(unsigned int port, size_t len, ssize_t ret) "port %u, in_len %zu, out_len %zd" |
| 52 | virtio_console_chr_read(unsigned int port, int size) "port %u, size %d" |
| 53 | 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] | 54 | |
Stefan Hajnoczi | 6d519a5 | 2010-05-22 18:15:08 +0100 | [diff] [blame] | 55 | # block.c |
Stefan Hajnoczi | 28dcee1 | 2011-09-22 20:14:12 +0100 | [diff] [blame] | 56 | 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] | 57 | multiwrite_cb(void *mcb, int ret) "mcb %p ret %d" |
| 58 | 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] | 59 | 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] | 60 | bdrv_aio_flush(void *bs, void *opaque) "bs %p opaque %p" |
| 61 | bdrv_aio_readv(void *bs, int64_t sector_num, int nb_sectors, void *opaque) "bs %p sector_num %"PRId64" nb_sectors %d opaque %p" |
| 62 | 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] | 63 | bdrv_lock_medium(void *bs, bool locked) "bs %p locked %d" |
Lluís | 47f08d7 | 2011-08-31 20:31:58 +0200 | [diff] [blame] | 64 | 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] | 65 | 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] | 66 | 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] | 67 | 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] | 68 | 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] | 69 | 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] | 70 | |
Stefan Hajnoczi | 4f1043b | 2012-01-18 14:40:44 +0000 | [diff] [blame] | 71 | # block/stream.c |
| 72 | 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" |
| 73 | stream_start(void *bs, void *base, void *s, void *co, void *opaque) "bs %p base %p s %p co %p opaque %p" |
Markus Armbruster | 3ba0063 | 2013-06-07 12:59:21 +0200 | [diff] [blame] | 74 | |
| 75 | # block/commit.c |
Jeff Cody | 747ff60 | 2012-09-27 13:29:13 -0400 | [diff] [blame] | 76 | 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" |
| 77 | 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] | 78 | |
Paolo Bonzini | 893f7eb | 2012-10-18 16:49:23 +0200 | [diff] [blame] | 79 | # block/mirror.c |
| 80 | mirror_start(void *bs, void *s, void *co, void *opaque) "bs %p s %p co %p opaque %p" |
Paolo Bonzini | 8f0720e | 2013-01-21 17:09:41 +0100 | [diff] [blame] | 81 | mirror_restart_iter(void *s, int64_t cnt) "s %p dirty count %"PRId64 |
Paolo Bonzini | 893f7eb | 2012-10-18 16:49:23 +0200 | [diff] [blame] | 82 | mirror_before_flush(void *s) "s %p" |
| 83 | mirror_before_drain(void *s, int64_t cnt) "s %p dirty count %"PRId64 |
| 84 | mirror_before_sleep(void *s, int64_t cnt, int synced) "s %p dirty count %"PRId64" synced %d" |
| 85 | mirror_one_iteration(void *s, int64_t sector_num, int nb_sectors) "s %p sector_num %"PRId64" nb_sectors %d" |
Paolo Bonzini | bd48bde | 2013-01-22 09:03:12 +0100 | [diff] [blame] | 86 | mirror_iteration_done(void *s, int64_t sector_num, int nb_sectors, int ret) "s %p sector_num %"PRId64" nb_sectors %d ret %d" |
Paolo Bonzini | 402a474 | 2013-01-22 09:03:14 +0100 | [diff] [blame] | 87 | mirror_yield(void *s, int64_t cnt, int buf_free_count, int in_flight) "s %p dirty count %"PRId64" free buffers %d in_flight %d" |
| 88 | mirror_yield_in_flight(void *s, int64_t sector_num, int in_flight) "s %p sector_num %"PRId64" in_flight %d" |
| 89 | mirror_yield_buf_busy(void *s, int nb_chunks, int in_flight) "s %p requested chunks %d in_flight %d" |
Paolo Bonzini | 884fea4 | 2013-01-22 09:03:15 +0100 | [diff] [blame] | 90 | mirror_break_buf_busy(void *s, int nb_chunks, int in_flight) "s %p requested chunks %d in_flight %d" |
Lluís | 47f08d7 | 2011-08-31 20:31:58 +0200 | [diff] [blame] | 91 | |
Dietmar Maurer | 98d2c6f | 2013-06-24 17:13:11 +0200 | [diff] [blame] | 92 | # block/backup.c |
| 93 | backup_do_cow_enter(void *job, int64_t start, int64_t sector_num, int nb_sectors) "job %p start %"PRId64" sector_num %"PRId64" nb_sectors %d" |
| 94 | backup_do_cow_return(void *job, int64_t sector_num, int nb_sectors, int ret) "job %p sector_num %"PRId64" nb_sectors %d ret %d" |
| 95 | backup_do_cow_skip(void *job, int64_t start) "job %p start %"PRId64 |
| 96 | backup_do_cow_process(void *job, int64_t start) "job %p start %"PRId64 |
| 97 | backup_do_cow_read_fail(void *job, int64_t start, int ret) "job %p start %"PRId64" ret %d" |
| 98 | backup_do_cow_write_fail(void *job, int64_t start, int ret) "job %p start %"PRId64" ret %d" |
| 99 | |
Stefan Hajnoczi | 12bd451 | 2012-01-18 14:40:46 +0000 | [diff] [blame] | 100 | # blockdev.c |
Stefan Hajnoczi | 370521a | 2012-01-18 14:40:48 +0000 | [diff] [blame] | 101 | qmp_block_job_cancel(void *job) "job %p" |
Paolo Bonzini | 6e37fb8 | 2012-09-28 17:22:51 +0200 | [diff] [blame] | 102 | qmp_block_job_pause(void *job) "job %p" |
| 103 | qmp_block_job_resume(void *job) "job %p" |
Paolo Bonzini | aeae883 | 2012-10-18 16:49:21 +0200 | [diff] [blame] | 104 | qmp_block_job_complete(void *job) "job %p" |
Jeff Cody | 9abf2db | 2012-09-27 13:29:14 -0400 | [diff] [blame] | 105 | 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] | 106 | qmp_block_stream(void *bs, void *job) "bs %p job %p" |
| 107 | |
Markus Armbruster | 3ba0063 | 2013-06-07 12:59:21 +0200 | [diff] [blame] | 108 | # hw/block/virtio-blk.c |
Stefan Hajnoczi | 6d519a5 | 2010-05-22 18:15:08 +0100 | [diff] [blame] | 109 | virtio_blk_req_complete(void *req, int status) "req %p status %d" |
| 110 | virtio_blk_rw_complete(void *req, int ret) "req %p ret %d" |
Stefan Hajnoczi | 9a85d39 | 2010-10-05 14:28:50 +0100 | [diff] [blame] | 111 | 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] | 112 | 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] | 113 | |
Markus Armbruster | 3ba0063 | 2013-06-07 12:59:21 +0200 | [diff] [blame] | 114 | # hw/block/dataplane/virtio-blk.c |
Stefan Hajnoczi | e72f66a | 2012-11-14 15:39:30 +0100 | [diff] [blame] | 115 | virtio_blk_data_plane_start(void *s) "dataplane %p" |
| 116 | virtio_blk_data_plane_stop(void *s) "dataplane %p" |
| 117 | virtio_blk_data_plane_process_request(void *s, unsigned int out_num, unsigned int in_num, unsigned int head) "dataplane %p out_num %u in_num %u head %u" |
| 118 | virtio_blk_data_plane_complete_request(void *s, unsigned int head, int ret) "dataplane %p head %u ret %d" |
| 119 | |
Markus Armbruster | 3ba0063 | 2013-06-07 12:59:21 +0200 | [diff] [blame] | 120 | # hw/virtio/dataplane/vring.c |
Stefan Hajnoczi | 88807f8 | 2012-11-14 15:15:50 +0100 | [diff] [blame] | 121 | vring_setup(uint64_t physical, void *desc, void *avail, void *used) "vring physical %#"PRIx64" desc %p avail %p used %p" |
| 122 | |
Paolo Bonzini | d354c7e | 2012-02-23 13:23:34 +0100 | [diff] [blame] | 123 | # thread-pool.c |
Stefan Hajnoczi | b811203 | 2013-03-07 13:41:45 +0100 | [diff] [blame] | 124 | thread_pool_submit(void *pool, void *req, void *opaque) "pool %p req %p opaque %p" |
| 125 | thread_pool_complete(void *pool, void *req, void *opaque, int ret) "pool %p req %p opaque %p ret %d" |
Paolo Bonzini | d354c7e | 2012-02-23 13:23:34 +0100 | [diff] [blame] | 126 | thread_pool_cancel(void *req, void *opaque) "req %p opaque %p" |
| 127 | |
Markus Armbruster | 3ba0063 | 2013-06-07 12:59:21 +0200 | [diff] [blame] | 128 | # block/raw-win32.c |
| 129 | # block/raw-posix.c |
Lluís | 47f08d7 | 2011-08-31 20:31:58 +0200 | [diff] [blame] | 130 | 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" |
Prerna Saxena | bd3c9aa | 2010-08-11 17:15:11 +0530 | [diff] [blame] | 131 | |
| 132 | # ioport.c |
Lluís | 47f08d7 | 2011-08-31 20:31:58 +0200 | [diff] [blame] | 133 | cpu_in(unsigned int addr, unsigned int val) "addr %#x value %u" |
| 134 | cpu_out(unsigned int addr, unsigned int val) "addr %#x value %u" |
Prerna Saxena | 62dd89d | 2010-08-11 17:16:03 +0530 | [diff] [blame] | 135 | |
| 136 | # balloon.c |
| 137 | # Since requests are raised via monitor, not many tracepoints are needed. |
Lluís | 47f08d7 | 2011-08-31 20:31:58 +0200 | [diff] [blame] | 138 | balloon_event(void *opaque, unsigned long addr) "opaque %p addr %lu" |
Blue Swirl | d8023f3 | 2010-10-20 16:41:28 +0000 | [diff] [blame] | 139 | |
Markus Armbruster | 3ba0063 | 2013-06-07 12:59:21 +0200 | [diff] [blame] | 140 | # hw/intc/apic_common.c |
Stefan Hajnoczi | 689d7e2 | 2011-09-13 13:34:36 +0100 | [diff] [blame] | 141 | cpu_set_apic_base(uint64_t val) "%016"PRIx64 |
| 142 | cpu_get_apic_base(uint64_t val) "%016"PRIx64 |
Blue Swirl | d8023f3 | 2010-10-20 16:41:28 +0000 | [diff] [blame] | 143 | # coalescing |
Jan Kiszka | 343270e | 2011-12-13 15:39:04 +0100 | [diff] [blame] | 144 | apic_report_irq_delivered(int apic_irq_delivered) "coalescing %d" |
Lluís | 47f08d7 | 2011-08-31 20:31:58 +0200 | [diff] [blame] | 145 | apic_reset_irq_delivered(int apic_irq_delivered) "old coalescing %d" |
| 146 | apic_get_irq_delivered(int apic_irq_delivered) "returning coalescing %d" |
Blue Swirl | 97bf485 | 2010-10-31 09:24:14 +0000 | [diff] [blame] | 147 | |
Markus Armbruster | 3ba0063 | 2013-06-07 12:59:21 +0200 | [diff] [blame] | 148 | # hw/intc/apic.c |
| 149 | apic_local_deliver(int vector, uint32_t lvt) "vector %d delivery mode %d" |
| 150 | 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" |
| 151 | apic_mem_readl(uint64_t addr, uint32_t val) "%"PRIx64" = %08x" |
| 152 | apic_mem_writel(uint64_t addr, uint32_t val) "%"PRIx64" = %08x" |
| 153 | |
| 154 | # hw/audio/cs4231.c |
Lluís | 47f08d7 | 2011-08-31 20:31:58 +0200 | [diff] [blame] | 155 | cs4231_mem_readl_dreg(uint32_t reg, uint32_t ret) "read dreg %d: 0x%02x" |
| 156 | cs4231_mem_readl_reg(uint32_t reg, uint32_t ret) "read reg %d: 0x%08x" |
| 157 | cs4231_mem_writel_reg(uint32_t reg, uint32_t old, uint32_t val) "write reg %d: 0x%08x -> 0x%08x" |
| 158 | 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] | 159 | |
Markus Armbruster | 3ba0063 | 2013-06-07 12:59:21 +0200 | [diff] [blame] | 160 | # hw/nvram/ds1225y.c |
Lluís | 47f08d7 | 2011-08-31 20:31:58 +0200 | [diff] [blame] | 161 | nvram_read(uint32_t addr, uint32_t ret) "read addr %d: 0x%02x" |
| 162 | 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] | 163 | |
Markus Armbruster | 3ba0063 | 2013-06-07 12:59:21 +0200 | [diff] [blame] | 164 | # hw/misc/eccmemctl.c |
Lluís | 47f08d7 | 2011-08-31 20:31:58 +0200 | [diff] [blame] | 165 | ecc_mem_writel_mer(uint32_t val) "Write memory enable %08x" |
| 166 | ecc_mem_writel_mdr(uint32_t val) "Write memory delay %08x" |
| 167 | ecc_mem_writel_mfsr(uint32_t val) "Write memory fault status %08x" |
| 168 | ecc_mem_writel_vcr(uint32_t val) "Write slot configuration %08x" |
| 169 | ecc_mem_writel_dr(uint32_t val) "Write diagnostic %08x" |
| 170 | ecc_mem_writel_ecr0(uint32_t val) "Write event count 1 %08x" |
| 171 | ecc_mem_writel_ecr1(uint32_t val) "Write event count 2 %08x" |
| 172 | ecc_mem_readl_mer(uint32_t ret) "Read memory enable %08x" |
| 173 | ecc_mem_readl_mdr(uint32_t ret) "Read memory delay %08x" |
| 174 | ecc_mem_readl_mfsr(uint32_t ret) "Read memory fault status %08x" |
| 175 | ecc_mem_readl_vcr(uint32_t ret) "Read slot configuration %08x" |
| 176 | ecc_mem_readl_mfar0(uint32_t ret) "Read memory fault address 0 %08x" |
| 177 | ecc_mem_readl_mfar1(uint32_t ret) "Read memory fault address 1 %08x" |
| 178 | ecc_mem_readl_dr(uint32_t ret) "Read diagnostic %08x" |
| 179 | ecc_mem_readl_ecr0(uint32_t ret) "Read event count 1 %08x" |
| 180 | ecc_mem_readl_ecr1(uint32_t ret) "Read event count 2 %08x" |
| 181 | ecc_diag_mem_writeb(uint64_t addr, uint32_t val) "Write diagnostic %"PRId64" = %02x" |
| 182 | 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] | 183 | |
Markus Armbruster | 3ba0063 | 2013-06-07 12:59:21 +0200 | [diff] [blame] | 184 | # hw/nvram/fw_cfg.c |
Markus Armbruster | f6e3534 | 2013-01-16 14:50:22 +0100 | [diff] [blame] | 185 | fw_cfg_write(void *s, uint8_t value) "%p %d" |
| 186 | fw_cfg_select(void *s, uint16_t key, int ret) "%p key %d = %d" |
| 187 | fw_cfg_read(void *s, uint8_t ret) "%p = %d" |
| 188 | fw_cfg_add_file_dupe(void *s, char *name) "%p %s" |
Markus Armbruster | 089da57 | 2013-01-16 14:50:28 +0100 | [diff] [blame] | 189 | fw_cfg_add_file(void *s, int index, char *name, size_t len) "%p #%d: %s (%zd bytes)" |
Markus Armbruster | f6e3534 | 2013-01-16 14:50:22 +0100 | [diff] [blame] | 190 | |
Markus Armbruster | 3ba0063 | 2013-06-07 12:59:21 +0200 | [diff] [blame] | 191 | # hw/block/hd-geometry.c |
Markus Armbruster | 31f7eed | 2012-07-10 11:12:32 +0200 | [diff] [blame] | 192 | 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] | 193 | 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] | 194 | |
Markus Armbruster | 3ba0063 | 2013-06-07 12:59:21 +0200 | [diff] [blame] | 195 | # hw/display/jazz_led.c |
Hervé Poussineau | 63b9932 | 2012-02-17 20:27:15 +0100 | [diff] [blame] | 196 | jazz_led_read(uint64_t addr, uint8_t val) "read addr=0x%"PRIx64": 0x%x" |
| 197 | jazz_led_write(uint64_t addr, uint8_t new) "write addr=0x%"PRIx64": 0x%x" |
| 198 | |
Markus Armbruster | 3ba0063 | 2013-06-07 12:59:21 +0200 | [diff] [blame] | 199 | # hw/net/lance.c |
Lluís | 47f08d7 | 2011-08-31 20:31:58 +0200 | [diff] [blame] | 200 | lance_mem_readw(uint64_t addr, uint32_t ret) "addr=%"PRIx64"val=0x%04x" |
| 201 | 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] | 202 | |
Markus Armbruster | 3ba0063 | 2013-06-07 12:59:21 +0200 | [diff] [blame] | 203 | # hw/intc/slavio_intctl.c |
Lluís | 47f08d7 | 2011-08-31 20:31:58 +0200 | [diff] [blame] | 204 | slavio_intctl_mem_readl(uint32_t cpu, uint64_t addr, uint32_t ret) "read cpu %d reg 0x%"PRIx64" = %x" |
| 205 | slavio_intctl_mem_writel(uint32_t cpu, uint64_t addr, uint32_t val) "write cpu %d reg 0x%"PRIx64" = %x" |
| 206 | slavio_intctl_mem_writel_clear(uint32_t cpu, uint32_t val, uint32_t intreg_pending) "Cleared cpu %d irq mask %x, curmask %x" |
| 207 | slavio_intctl_mem_writel_set(uint32_t cpu, uint32_t val, uint32_t intreg_pending) "Set cpu %d irq mask %x, curmask %x" |
| 208 | slavio_intctlm_mem_readl(uint64_t addr, uint32_t ret) "read system reg 0x%"PRIx64" = %x" |
| 209 | slavio_intctlm_mem_writel(uint64_t addr, uint32_t val) "write system reg 0x%"PRIx64" = %x" |
| 210 | slavio_intctlm_mem_writel_enable(uint32_t val, uint32_t intregm_disabled) "Enabled master irq mask %x, curmask %x" |
| 211 | slavio_intctlm_mem_writel_disable(uint32_t val, uint32_t intregm_disabled) "Disabled master irq mask %x, curmask %x" |
| 212 | slavio_intctlm_mem_writel_target(uint32_t cpu) "Set master irq cpu %d" |
| 213 | slavio_check_interrupts(uint32_t pending, uint32_t intregm_disabled) "pending %x disabled %x" |
| 214 | slavio_set_irq(uint32_t target_cpu, int irq, uint32_t pil, int level) "Set cpu %d irq %d -> pil %d level %d" |
| 215 | 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] | 216 | |
Markus Armbruster | 3ba0063 | 2013-06-07 12:59:21 +0200 | [diff] [blame] | 217 | # hw/misc/slavio_misc.c |
Lluís | 47f08d7 | 2011-08-31 20:31:58 +0200 | [diff] [blame] | 218 | slavio_misc_update_irq_raise(void) "Raise IRQ" |
| 219 | slavio_misc_update_irq_lower(void) "Lower IRQ" |
| 220 | slavio_set_power_fail(int power_failing, uint8_t config) "Power fail: %d, config: %d" |
| 221 | slavio_cfg_mem_writeb(uint32_t val) "Write config %02x" |
| 222 | slavio_cfg_mem_readb(uint32_t ret) "Read config %02x" |
| 223 | slavio_diag_mem_writeb(uint32_t val) "Write diag %02x" |
| 224 | slavio_diag_mem_readb(uint32_t ret) "Read diag %02x" |
| 225 | slavio_mdm_mem_writeb(uint32_t val) "Write modem control %02x" |
| 226 | slavio_mdm_mem_readb(uint32_t ret) "Read modem control %02x" |
| 227 | slavio_aux1_mem_writeb(uint32_t val) "Write aux1 %02x" |
| 228 | slavio_aux1_mem_readb(uint32_t ret) "Read aux1 %02x" |
| 229 | slavio_aux2_mem_writeb(uint32_t val) "Write aux2 %02x" |
| 230 | slavio_aux2_mem_readb(uint32_t ret) "Read aux2 %02x" |
| 231 | apc_mem_writeb(uint32_t val) "Write power management %02x" |
| 232 | apc_mem_readb(uint32_t ret) "Read power management %02x" |
| 233 | slavio_sysctrl_mem_writel(uint32_t val) "Write system control %08x" |
| 234 | slavio_sysctrl_mem_readl(uint32_t ret) "Read system control %08x" |
| 235 | slavio_led_mem_writew(uint32_t val) "Write diagnostic LED %04x" |
| 236 | slavio_led_mem_readw(uint32_t ret) "Read diagnostic LED %04x" |
Blue Swirl | 97bf485 | 2010-10-31 09:24:14 +0000 | [diff] [blame] | 237 | |
Markus Armbruster | 3ba0063 | 2013-06-07 12:59:21 +0200 | [diff] [blame] | 238 | # hw/timer/slavio_timer.c |
Lluís | 47f08d7 | 2011-08-31 20:31:58 +0200 | [diff] [blame] | 239 | slavio_timer_get_out(uint64_t limit, uint32_t counthigh, uint32_t count) "limit %"PRIx64" count %x%08x" |
| 240 | 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] | 241 | slavio_timer_mem_readl_invalid(uint64_t addr) "invalid read address %"PRIx64 |
Lluís | 47f08d7 | 2011-08-31 20:31:58 +0200 | [diff] [blame] | 242 | slavio_timer_mem_readl(uint64_t addr, uint32_t ret) "read %"PRIx64" = %08x" |
| 243 | 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] | 244 | 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] | 245 | slavio_timer_mem_writel_counter_invalid(void) "not user timer" |
| 246 | slavio_timer_mem_writel_status_start(unsigned int timer_index) "processor %d user timer started" |
| 247 | slavio_timer_mem_writel_status_stop(unsigned int timer_index) "processor %d user timer stopped" |
| 248 | slavio_timer_mem_writel_mode_user(unsigned int timer_index) "processor %d changed from counter to user timer" |
| 249 | slavio_timer_mem_writel_mode_counter(unsigned int timer_index) "processor %d changed from user timer to counter" |
| 250 | slavio_timer_mem_writel_mode_invalid(void) "not system timer" |
Stefan Hajnoczi | 689d7e2 | 2011-09-13 13:34:36 +0100 | [diff] [blame] | 251 | slavio_timer_mem_writel_invalid(uint64_t addr) "invalid write address %"PRIx64 |
Blue Swirl | 97bf485 | 2010-10-31 09:24:14 +0000 | [diff] [blame] | 252 | |
Markus Armbruster | 3ba0063 | 2013-06-07 12:59:21 +0200 | [diff] [blame] | 253 | # hw/dma/sparc32_dma.c |
Stefan Hajnoczi | 689d7e2 | 2011-09-13 13:34:36 +0100 | [diff] [blame] | 254 | ledma_memory_read(uint64_t addr) "DMA read addr 0x%"PRIx64 |
| 255 | ledma_memory_write(uint64_t addr) "DMA write addr 0x%"PRIx64 |
Lluís | 47f08d7 | 2011-08-31 20:31:58 +0200 | [diff] [blame] | 256 | sparc32_dma_set_irq_raise(void) "Raise IRQ" |
| 257 | sparc32_dma_set_irq_lower(void) "Lower IRQ" |
| 258 | espdma_memory_read(uint32_t addr) "DMA read addr 0x%08x" |
| 259 | espdma_memory_write(uint32_t addr) "DMA write addr 0x%08x" |
| 260 | sparc32_dma_mem_readl(uint64_t addr, uint32_t ret) "read dmareg %"PRIx64": 0x%08x" |
| 261 | sparc32_dma_mem_writel(uint64_t addr, uint32_t old, uint32_t val) "write dmareg %"PRIx64": 0x%08x -> 0x%08x" |
| 262 | sparc32_dma_enable_raise(void) "Raise DMA enable" |
| 263 | sparc32_dma_enable_lower(void) "Lower DMA enable" |
Blue Swirl | 97bf485 | 2010-10-31 09:24:14 +0000 | [diff] [blame] | 264 | |
Markus Armbruster | 3ba0063 | 2013-06-07 12:59:21 +0200 | [diff] [blame] | 265 | # hw/sparc/sun4m.c |
Lluís | 47f08d7 | 2011-08-31 20:31:58 +0200 | [diff] [blame] | 266 | sun4m_cpu_interrupt(unsigned int level) "Set CPU IRQ %d" |
| 267 | sun4m_cpu_reset_interrupt(unsigned int level) "Reset CPU IRQ %d" |
| 268 | sun4m_cpu_set_irq_raise(int level) "Raise CPU IRQ %d" |
| 269 | sun4m_cpu_set_irq_lower(int level) "Lower CPU IRQ %d" |
Blue Swirl | 97bf485 | 2010-10-31 09:24:14 +0000 | [diff] [blame] | 270 | |
Markus Armbruster | 3ba0063 | 2013-06-07 12:59:21 +0200 | [diff] [blame] | 271 | # hw/dma/sun4m_iommu.c |
Lluís | 47f08d7 | 2011-08-31 20:31:58 +0200 | [diff] [blame] | 272 | sun4m_iommu_mem_readl(uint64_t addr, uint32_t ret) "read reg[%"PRIx64"] = %x" |
| 273 | 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] | 274 | sun4m_iommu_mem_writel_ctrl(uint64_t iostart) "iostart = %"PRIx64 |
Lluís | 47f08d7 | 2011-08-31 20:31:58 +0200 | [diff] [blame] | 275 | sun4m_iommu_mem_writel_tlbflush(uint32_t val) "tlb flush %x" |
| 276 | sun4m_iommu_mem_writel_pgflush(uint32_t val) "page flush %x" |
| 277 | sun4m_iommu_page_get_flags(uint64_t pa, uint64_t iopte, uint32_t ret) "get flags addr %"PRIx64" => pte %"PRIx64", *pte = %x" |
| 278 | 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] | 279 | sun4m_iommu_bad_addr(uint64_t addr) "bad addr %"PRIx64 |
Stefan Hajnoczi | 94b0b5f | 2010-11-16 12:20:25 +0000 | [diff] [blame] | 280 | |
Gerd Hoffmann | f1ae32a | 2012-03-07 14:55:18 +0100 | [diff] [blame] | 281 | # hw/usb/core.c |
Gerd Hoffmann | 808aeb9 | 2012-02-24 11:03:27 +0100 | [diff] [blame] | 282 | 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] | 283 | 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] | 284 | |
Gerd Hoffmann | f1ae32a | 2012-03-07 14:55:18 +0100 | [diff] [blame] | 285 | # hw/usb/bus.c |
Gerd Hoffmann | 891fb2c | 2011-09-01 13:56:37 +0200 | [diff] [blame] | 286 | usb_port_claim(int bus, const char *port) "bus %d, port %s" |
Gerd Hoffmann | 3b7e759 | 2013-04-18 11:57:21 +0200 | [diff] [blame] | 287 | usb_port_attach(int bus, const char *port, const char *devspeed, const char *portspeed) "bus %d, port %s, devspeed %s, portspeed %s" |
Gerd Hoffmann | 891fb2c | 2011-09-01 13:56:37 +0200 | [diff] [blame] | 288 | usb_port_detach(int bus, const char *port) "bus %d, port %s" |
| 289 | usb_port_release(int bus, const char *port) "bus %d, port %s" |
| 290 | |
Gerd Hoffmann | f1ae32a | 2012-03-07 14:55:18 +0100 | [diff] [blame] | 291 | # hw/usb/hcd-ehci.c |
Lluís | 47f08d7 | 2011-08-31 20:31:58 +0200 | [diff] [blame] | 292 | usb_ehci_reset(void) "=== RESET ===" |
Gerd Hoffmann | 3e4f910 | 2012-09-06 11:24:51 +0200 | [diff] [blame] | 293 | usb_ehci_opreg_read(uint32_t addr, const char *str, uint32_t val) "rd mmio %04x [%s] = %x" |
| 294 | usb_ehci_opreg_write(uint32_t addr, const char *str, uint32_t val) "wr mmio %04x [%s] = %x" |
| 295 | usb_ehci_opreg_change(uint32_t addr, const char *str, uint32_t new, uint32_t old) "ch mmio %04x [%s] = %x (old: %x)" |
| 296 | usb_ehci_portsc_read(uint32_t addr, uint32_t port, uint32_t val) "rd mmio %04x [port %d] = %x" |
| 297 | usb_ehci_portsc_write(uint32_t addr, uint32_t port, uint32_t val) "wr mmio %04x [port %d] = %x" |
| 298 | 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] | 299 | usb_ehci_usbsts(const char *sts, int state) "usbsts %s %d" |
| 300 | usb_ehci_state(const char *schedule, const char *state) "%s schedule %s" |
| 301 | 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" |
| 302 | 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" |
| 303 | 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" |
| 304 | usb_ehci_qtd_ptrs(void *q, uint32_t addr, uint32_t nxt, uint32_t altnext) "q %p - QTD @ %08x: next %08x altnext %08x" |
| 305 | 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" |
| 306 | 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" |
| 307 | 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] | 308 | 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] | 309 | usb_ehci_port_attach(uint32_t port, const char *owner, const char *device) "attach port #%d, owner %s, device %s" |
| 310 | 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] | 311 | usb_ehci_port_reset(uint32_t port, int enable) "reset port #%d - %d" |
Lluís | 47f08d7 | 2011-08-31 20:31:58 +0200 | [diff] [blame] | 312 | usb_ehci_queue_action(void *q, const char *action) "q %p: %s" |
Gerd Hoffmann | eb36a88 | 2012-05-09 17:06:36 +0200 | [diff] [blame] | 313 | 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] | 314 | 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] | 315 | usb_ehci_guest_bug(const char *reason) "%s" |
Gerd Hoffmann | 1defcbd | 2012-08-31 12:41:43 +0200 | [diff] [blame] | 316 | usb_ehci_doorbell_ring(void) "" |
| 317 | usb_ehci_doorbell_ack(void) "" |
Gerd Hoffmann | 55903f1 | 2012-11-15 13:07:49 +0100 | [diff] [blame] | 318 | usb_ehci_dma_error(void) "" |
Gerd Hoffmann | 439a97c | 2011-05-18 10:12:58 +0200 | [diff] [blame] | 319 | |
Gerd Hoffmann | 50dcc0f | 2012-03-08 13:12:38 +0100 | [diff] [blame] | 320 | # hw/usb/hcd-uhci.c |
| 321 | usb_uhci_reset(void) "=== RESET ===" |
| 322 | usb_uhci_schedule_start(void) "" |
| 323 | usb_uhci_schedule_stop(void) "" |
| 324 | usb_uhci_frame_start(uint32_t num) "nr %d" |
Gerd Hoffmann | 4aed20e | 2012-05-11 09:18:05 +0200 | [diff] [blame] | 325 | usb_uhci_frame_stop_bandwidth(void) "" |
Gerd Hoffmann | 50dcc0f | 2012-03-08 13:12:38 +0100 | [diff] [blame] | 326 | usb_uhci_frame_loop_stop_idle(void) "" |
Gerd Hoffmann | 50dcc0f | 2012-03-08 13:12:38 +0100 | [diff] [blame] | 327 | usb_uhci_frame_loop_continue(void) "" |
Gerd Hoffmann | 7dd0dfd | 2012-05-11 12:57:34 +0200 | [diff] [blame] | 328 | usb_uhci_mmio_readw(uint32_t addr, uint32_t val) "addr 0x%04x, ret 0x%04x" |
| 329 | usb_uhci_mmio_writew(uint32_t addr, uint32_t val) "addr 0x%04x, val 0x%04x" |
Gerd Hoffmann | 50dcc0f | 2012-03-08 13:12:38 +0100 | [diff] [blame] | 330 | usb_uhci_queue_add(uint32_t token) "token 0x%x" |
Hans de Goede | 66a08cb | 2012-10-24 18:31:15 +0200 | [diff] [blame] | 331 | usb_uhci_queue_del(uint32_t token, const char *reason) "token 0x%x: %s" |
Gerd Hoffmann | 50dcc0f | 2012-03-08 13:12:38 +0100 | [diff] [blame] | 332 | usb_uhci_packet_add(uint32_t token, uint32_t addr) "token 0x%x, td 0x%x" |
| 333 | usb_uhci_packet_link_async(uint32_t token, uint32_t addr) "token 0x%x, td 0x%x" |
| 334 | usb_uhci_packet_unlink_async(uint32_t token, uint32_t addr) "token 0x%x, td 0x%x" |
| 335 | usb_uhci_packet_cancel(uint32_t token, uint32_t addr, int done) "token 0x%x, td 0x%x, done %d" |
| 336 | usb_uhci_packet_complete_success(uint32_t token, uint32_t addr) "token 0x%x, td 0x%x" |
| 337 | usb_uhci_packet_complete_shortxfer(uint32_t token, uint32_t addr) "token 0x%x, td 0x%x" |
| 338 | usb_uhci_packet_complete_stall(uint32_t token, uint32_t addr) "token 0x%x, td 0x%x" |
| 339 | usb_uhci_packet_complete_babble(uint32_t token, uint32_t addr) "token 0x%x, td 0x%x" |
| 340 | usb_uhci_packet_complete_error(uint32_t token, uint32_t addr) "token 0x%x, td 0x%x" |
| 341 | usb_uhci_packet_del(uint32_t token, uint32_t addr) "token 0x%x, td 0x%x" |
| 342 | usb_uhci_qh_load(uint32_t qh) "qh 0x%x" |
| 343 | 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" |
| 344 | usb_uhci_td_queue(uint32_t td, uint32_t ctrl, uint32_t token) "td 0x%x, ctrl 0x%x, token 0x%x" |
| 345 | usb_uhci_td_nextqh(uint32_t qh, uint32_t td) "qh 0x%x, td 0x%x" |
| 346 | usb_uhci_td_async(uint32_t qh, uint32_t td) "qh 0x%x, td 0x%x" |
| 347 | usb_uhci_td_complete(uint32_t qh, uint32_t td) "qh 0x%x, td 0x%x" |
| 348 | |
Gerd Hoffmann | 2d754a1 | 2012-05-11 12:49:31 +0200 | [diff] [blame] | 349 | # hw/usb/hcd-xhci.c |
| 350 | usb_xhci_reset(void) "=== RESET ===" |
Gerd Hoffmann | fc0ddac | 2012-05-11 14:54:57 +0200 | [diff] [blame] | 351 | usb_xhci_run(void) "" |
| 352 | usb_xhci_stop(void) "" |
Gerd Hoffmann | 2d754a1 | 2012-05-11 12:49:31 +0200 | [diff] [blame] | 353 | usb_xhci_cap_read(uint32_t off, uint32_t val) "off 0x%04x, ret 0x%08x" |
| 354 | usb_xhci_oper_read(uint32_t off, uint32_t val) "off 0x%04x, ret 0x%08x" |
| 355 | usb_xhci_port_read(uint32_t port, uint32_t off, uint32_t val) "port %d, off 0x%04x, ret 0x%08x" |
| 356 | usb_xhci_runtime_read(uint32_t off, uint32_t val) "off 0x%04x, ret 0x%08x" |
| 357 | usb_xhci_doorbell_read(uint32_t off, uint32_t val) "off 0x%04x, ret 0x%08x" |
| 358 | usb_xhci_oper_write(uint32_t off, uint32_t val) "off 0x%04x, val 0x%08x" |
| 359 | usb_xhci_port_write(uint32_t port, uint32_t off, uint32_t val) "port %d, off 0x%04x, val 0x%08x" |
| 360 | usb_xhci_runtime_write(uint32_t off, uint32_t val) "off 0x%04x, val 0x%08x" |
| 361 | 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] | 362 | usb_xhci_irq_intx(uint32_t level) "level %d" |
| 363 | usb_xhci_irq_msi(uint32_t nr) "nr %d" |
Gerd Hoffmann | 4c47f80 | 2012-08-30 12:06:59 +0200 | [diff] [blame] | 364 | usb_xhci_irq_msix(uint32_t nr) "nr %d" |
| 365 | usb_xhci_irq_msix_use(uint32_t nr) "nr %d" |
| 366 | usb_xhci_irq_msix_unuse(uint32_t nr) "nr %d" |
Gerd Hoffmann | 962d11e | 2012-08-30 15:49:03 +0200 | [diff] [blame] | 367 | 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] | 368 | 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 | 4f47f0f | 2012-10-26 11:49:06 +0200 | [diff] [blame] | 369 | usb_xhci_port_reset(uint32_t port) "port %d" |
| 370 | usb_xhci_port_link(uint32_t port, uint32_t pls) "port %d, pls %d" |
Gerd Hoffmann | bdfce20 | 2013-04-05 14:55:28 +0200 | [diff] [blame] | 371 | usb_xhci_port_notify(uint32_t port, uint32_t pls) "port %d, bits %x" |
Gerd Hoffmann | 348f103 | 2012-05-11 15:15:27 +0200 | [diff] [blame] | 372 | usb_xhci_slot_enable(uint32_t slotid) "slotid %d" |
| 373 | usb_xhci_slot_disable(uint32_t slotid) "slotid %d" |
Gerd Hoffmann | 65d81ed | 2013-08-28 11:46:45 +0200 | [diff] [blame] | 374 | usb_xhci_slot_address(uint32_t slotid, const char *port) "slotid %d, port %s" |
Gerd Hoffmann | 348f103 | 2012-05-11 15:15:27 +0200 | [diff] [blame] | 375 | usb_xhci_slot_configure(uint32_t slotid) "slotid %d" |
| 376 | usb_xhci_slot_evaluate(uint32_t slotid) "slotid %d" |
| 377 | usb_xhci_slot_reset(uint32_t slotid) "slotid %d" |
Gerd Hoffmann | c1f6b49 | 2012-05-11 14:26:15 +0200 | [diff] [blame] | 378 | usb_xhci_ep_enable(uint32_t slotid, uint32_t epid) "slotid %d, epid %d" |
| 379 | usb_xhci_ep_disable(uint32_t slotid, uint32_t epid) "slotid %d, epid %d" |
Gerd Hoffmann | 024426a | 2013-01-25 17:23:44 +0100 | [diff] [blame] | 380 | usb_xhci_ep_set_dequeue(uint32_t slotid, uint32_t epid, uint32_t streamid, uint64_t param) "slotid %d, epid %d, streamid %d, ptr %016" PRIx64 |
| 381 | usb_xhci_ep_kick(uint32_t slotid, uint32_t epid, uint32_t streamid) "slotid %d, epid %d, streamid %d" |
Gerd Hoffmann | c1f6b49 | 2012-05-11 14:26:15 +0200 | [diff] [blame] | 382 | usb_xhci_ep_stop(uint32_t slotid, uint32_t epid) "slotid %d, epid %d" |
| 383 | usb_xhci_ep_reset(uint32_t slotid, uint32_t epid) "slotid %d, epid %d" |
Gerd Hoffmann | 1c82392 | 2013-04-24 15:01:25 +0200 | [diff] [blame] | 384 | usb_xhci_ep_state(uint32_t slotid, uint32_t epid, const char *os, const char *ns) "slotid %d, epid %d, %s -> %s" |
Gerd Hoffmann | 024426a | 2013-01-25 17:23:44 +0100 | [diff] [blame] | 385 | usb_xhci_xfer_start(void *xfer, uint32_t slotid, uint32_t epid, uint32_t streamid) "%p: slotid %d, epid %d, streamid %d" |
Gerd Hoffmann | 97df650 | 2012-05-11 14:27:08 +0200 | [diff] [blame] | 386 | usb_xhci_xfer_async(void *xfer) "%p" |
| 387 | usb_xhci_xfer_nak(void *xfer) "%p" |
| 388 | usb_xhci_xfer_retry(void *xfer) "%p" |
| 389 | usb_xhci_xfer_success(void *xfer, uint32_t bytes) "%p: len %d" |
| 390 | usb_xhci_xfer_error(void *xfer, uint32_t ret) "%p: ret %d" |
Gerd Hoffmann | 0ab966c | 2013-03-20 12:49:42 +0100 | [diff] [blame] | 391 | usb_xhci_unimplemented(const char *item, int nr) "%s (0x%x)" |
Gerd Hoffmann | 2d754a1 | 2012-05-11 12:49:31 +0200 | [diff] [blame] | 392 | |
Gerd Hoffmann | 529f8f9 | 2012-03-23 15:42:58 +0100 | [diff] [blame] | 393 | # hw/usb/desc.c |
Lluís | 47f08d7 | 2011-08-31 20:31:58 +0200 | [diff] [blame] | 394 | usb_desc_device(int addr, int len, int ret) "dev %d query device, len %d, ret %d" |
| 395 | usb_desc_device_qualifier(int addr, int len, int ret) "dev %d query device qualifier, len %d, ret %d" |
| 396 | usb_desc_config(int addr, int index, int len, int ret) "dev %d query config %d, len %d, ret %d" |
| 397 | usb_desc_other_speed_config(int addr, int index, int len, int ret) "dev %d query config %d, len %d, ret %d" |
| 398 | 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] | 399 | 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] | 400 | usb_set_addr(int addr) "dev %d" |
| 401 | 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] | 402 | 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] | 403 | usb_clear_device_feature(int addr, int feature, int ret) "dev %d, feature %d, ret %d" |
| 404 | 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] | 405 | |
Gerd Hoffmann | 529f8f9 | 2012-03-23 15:42:58 +0100 | [diff] [blame] | 406 | # hw/usb/dev-hub.c |
| 407 | usb_hub_reset(int addr) "dev %d" |
| 408 | usb_hub_control(int addr, int request, int value, int index, int length) "dev %d, req 0x%x, value %d, index %d, langth %d" |
| 409 | usb_hub_get_port_status(int addr, int nr, int status, int changed) "dev %d, port %d, status 0x%x, changed 0x%x" |
| 410 | usb_hub_set_port_feature(int addr, int nr, const char *f) "dev %d, port %d, feature %s" |
| 411 | usb_hub_clear_port_feature(int addr, int nr, const char *f) "dev %d, port %d, feature %s" |
| 412 | usb_hub_attach(int addr, int nr) "dev %d, port %d" |
| 413 | usb_hub_detach(int addr, int nr) "dev %d, port %d" |
Gerd Hoffmann | b8cbc13 | 2013-08-27 16:59:37 +0200 | [diff] [blame] | 414 | usb_hub_status_report(int addr, int status) "dev %d, status 0x%x" |
Gerd Hoffmann | 529f8f9 | 2012-03-23 15:42:58 +0100 | [diff] [blame] | 415 | |
Gerd Hoffmann | 0f58f68 | 2012-06-08 16:03:37 +0200 | [diff] [blame] | 416 | # hw/usb/dev-uas.c |
| 417 | usb_uas_reset(int addr) "dev %d" |
| 418 | 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" |
| 419 | usb_uas_response(int addr, uint16_t tag, uint8_t code) "dev %d, tag 0x%x, code 0x%x" |
| 420 | usb_uas_sense(int addr, uint16_t tag, uint8_t status) "dev %d, tag 0x%x, status 0x%x" |
| 421 | usb_uas_read_ready(int addr, uint16_t tag) "dev %d, tag 0x%x" |
| 422 | usb_uas_write_ready(int addr, uint16_t tag) "dev %d, tag 0x%x" |
| 423 | 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" |
| 424 | usb_uas_scsi_data(int addr, uint16_t tag, uint32_t bytes) "dev %d, tag 0x%x, bytes %d" |
| 425 | 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" |
| 426 | usb_uas_tmf_abort_task(int addr, uint16_t tag, uint16_t task_tag) "dev %d, tag 0x%x, task-tag 0x%x" |
| 427 | usb_uas_tmf_logical_unit_reset(int addr, uint16_t tag, int lun) "dev %d, tag 0x%x, lun %d" |
| 428 | usb_uas_tmf_unsupported(int addr, uint16_t tag, uint32_t function) "dev %d, tag 0x%x, function 0x%x" |
| 429 | |
Gerd Hoffmann | f1ae32a | 2012-03-07 14:55:18 +0100 | [diff] [blame] | 430 | # hw/usb/host-linux.c |
Markus Armbruster | 3ba0063 | 2013-06-07 12:59:21 +0200 | [diff] [blame] | 431 | # hw/usb/host-libusb.c |
Gerd Hoffmann | e6a2f50 | 2011-08-22 14:13:20 +0200 | [diff] [blame] | 432 | usb_host_open_started(int bus, int addr) "dev %d:%d" |
| 433 | usb_host_open_success(int bus, int addr) "dev %d:%d" |
| 434 | usb_host_open_failure(int bus, int addr) "dev %d:%d" |
| 435 | usb_host_disconnect(int bus, int addr) "dev %d:%d" |
| 436 | usb_host_close(int bus, int addr) "dev %d:%d" |
Gerd Hoffmann | 2b2325f | 2012-11-30 16:02:11 +0100 | [diff] [blame] | 437 | usb_host_attach_kernel(int bus, int addr, int interface) "dev %d:%d, if %d" |
| 438 | usb_host_detach_kernel(int bus, int addr, int interface) "dev %d:%d, if %d" |
Gerd Hoffmann | e6a2f50 | 2011-08-22 14:13:20 +0200 | [diff] [blame] | 439 | usb_host_set_address(int bus, int addr, int config) "dev %d:%d, address %d" |
| 440 | usb_host_set_config(int bus, int addr, int config) "dev %d:%d, config %d" |
| 441 | usb_host_set_interface(int bus, int addr, int interface, int alt) "dev %d:%d, interface %d, alt %d" |
| 442 | usb_host_claim_interfaces(int bus, int addr, int config, int nif) "dev %d:%d, config %d, nif %d" |
Gerd Hoffmann | 2b2325f | 2012-11-30 16:02:11 +0100 | [diff] [blame] | 443 | usb_host_claim_interface(int bus, int addr, int config, int interface) "dev %d:%d, config %d, if %d" |
Gerd Hoffmann | e6a2f50 | 2011-08-22 14:13:20 +0200 | [diff] [blame] | 444 | usb_host_release_interfaces(int bus, int addr) "dev %d:%d" |
Gerd Hoffmann | 2b2325f | 2012-11-30 16:02:11 +0100 | [diff] [blame] | 445 | usb_host_release_interface(int bus, int addr, int interface) "dev %d:%d, if %d" |
Gerd Hoffmann | 19b8925 | 2012-03-23 12:35:55 +0100 | [diff] [blame] | 446 | 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" |
| 447 | 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" |
Gerd Hoffmann | 8c908fc | 2012-11-15 16:11:20 +0100 | [diff] [blame] | 448 | usb_host_req_complete(int bus, int addr, void *p, int status, int length) "dev %d:%d, packet %p, status %d, length %d" |
Gerd Hoffmann | 19b8925 | 2012-03-23 12:35:55 +0100 | [diff] [blame] | 449 | usb_host_req_emulated(int bus, int addr, void *p, int status) "dev %d:%d, packet %p, status %d" |
| 450 | 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] | 451 | usb_host_urb_submit(int bus, int addr, void *aurb, int length, int more) "dev %d:%d, aurb %p, length %d, more %d" |
| 452 | 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] | 453 | 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] | 454 | usb_host_ep_set_halt(int bus, int addr, int ep) "dev %d:%d, ep %d" |
| 455 | 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] | 456 | usb_host_iso_start(int bus, int addr, int ep) "dev %d:%d, ep %d" |
| 457 | usb_host_iso_stop(int bus, int addr, int ep) "dev %d:%d, ep %d" |
| 458 | usb_host_iso_out_of_bufs(int bus, int addr, int ep) "dev %d:%d, ep %d" |
| 459 | 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] | 460 | usb_host_reset(int bus, int addr) "dev %d:%d" |
| 461 | usb_host_auto_scan_enabled(void) |
| 462 | usb_host_auto_scan_disabled(void) |
Gerd Hoffmann | 9516bb4 | 2011-08-24 13:34:17 +0200 | [diff] [blame] | 463 | 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] | 464 | usb_host_parse_device(int bus, int addr, int vendor, int product) "dev %d:%d, id %04x:%04x" |
| 465 | usb_host_parse_config(int bus, int addr, int value, int active) "dev %d:%d, value %d, active %d" |
| 466 | usb_host_parse_interface(int bus, int addr, int num, int alt, int active) "dev %d:%d, num %d, alt %d, active %d" |
| 467 | 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" |
| 468 | usb_host_parse_unknown(int bus, int addr, int len, int type) "dev %d:%d, len %d, type %d" |
| 469 | 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] | 470 | |
Markus Armbruster | 3ba0063 | 2013-06-07 12:59:21 +0200 | [diff] [blame] | 471 | # hw/scsi/scsi-bus.c |
Lluís | 47f08d7 | 2011-08-31 20:31:58 +0200 | [diff] [blame] | 472 | 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] | 473 | 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] | 474 | 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] | 475 | 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] | 476 | scsi_req_dequeue(int target, int lun, int tag) "target %d lun %d tag %d" |
| 477 | scsi_req_continue(int target, int lun, int tag) "target %d lun %d tag %d" |
Paolo Bonzini | 6f6710a | 2013-02-25 12:12:58 +0100 | [diff] [blame] | 478 | scsi_req_continue_canceled(int target, int lun, int tag) "target %d lun %d tag %d" |
Lluís | 47f08d7 | 2011-08-31 20:31:58 +0200 | [diff] [blame] | 479 | 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] | 480 | 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] | 481 | scsi_req_parse_bad(int target, int lun, int tag, int cmd) "target %d lun %d tag %d command %d" |
| 482 | 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] | 483 | 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] | 484 | scsi_report_luns(int target, int lun, int tag) "target %d lun %d tag %d" |
| 485 | scsi_inquiry(int target, int lun, int tag, int cdb1, int cdb2) "target %d lun %d tag %d page %#02x/%#02x" |
| 486 | scsi_test_unit_ready(int target, int lun, int tag) "target %d lun %d tag %d" |
| 487 | 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] | 488 | |
Stefan Hajnoczi | 94b0b5f | 2010-11-16 12:20:25 +0000 | [diff] [blame] | 489 | # vl.c |
Lluís | 47f08d7 | 2011-08-31 20:31:58 +0200 | [diff] [blame] | 490 | vm_state_notify(int running, int reason) "running %d reason %d" |
Gerd Hoffmann | 4524051 | 2013-03-08 11:42:24 +0100 | [diff] [blame] | 491 | load_file(const char *name, const char *path) "name %s location %s" |
Kazuya Saito | 7e86600 | 2013-03-22 17:26:59 +0900 | [diff] [blame] | 492 | runstate_set(int new_state) "new state %d" |
Markus Armbruster | 3ba0063 | 2013-06-07 12:59:21 +0200 | [diff] [blame] | 493 | g_malloc(size_t size, void *ptr) "size %zu ptr %p" |
| 494 | g_realloc(void *ptr, size_t size, void *newptr) "ptr %p size %zu newptr %p" |
| 495 | g_free(void *ptr) "ptr %p" |
Stefan Hajnoczi | 298800c | 2010-12-06 16:08:01 +0000 | [diff] [blame] | 496 | |
Kevin Wolf | 3cce16f | 2012-03-01 18:36:21 +0100 | [diff] [blame] | 497 | # block/qcow2.c |
| 498 | qcow2_writev_start_req(void *co, int64_t sector, int nb_sectors) "co %p sector %" PRIx64 " nb_sectors %d" |
| 499 | qcow2_writev_done_req(void *co, int ret) "co %p ret %d" |
| 500 | qcow2_writev_start_part(void *co) "co %p" |
| 501 | qcow2_writev_done_part(void *co, int cur_nr_sectors) "co %p cur_nr_sectors %d" |
| 502 | qcow2_writev_data(void *co, uint64_t offset) "co %p offset %" PRIx64 |
| 503 | |
Markus Armbruster | 3ba0063 | 2013-06-07 12:59:21 +0200 | [diff] [blame] | 504 | # block/qcow2-cluster.c |
Kevin Wolf | 3cce16f | 2012-03-01 18:36:21 +0100 | [diff] [blame] | 505 | 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 | 0af729e | 2013-03-26 17:50:05 +0100 | [diff] [blame] | 506 | qcow2_handle_copied(void *co, uint64_t guest_offset, uint64_t host_offset, uint64_t bytes) "co %p guest_offet %" PRIx64 " host_offset %" PRIx64 " bytes %" PRIx64 |
Kevin Wolf | 10f0ed8 | 2013-03-26 17:50:00 +0100 | [diff] [blame] | 507 | qcow2_handle_alloc(void *co, uint64_t guest_offset, uint64_t host_offset, uint64_t bytes) "co %p guest_offet %" PRIx64 " host_offset %" PRIx64 " bytes %" PRIx64 |
Kevin Wolf | 250196f | 2012-03-02 14:10:54 +0100 | [diff] [blame] | 508 | 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] | 509 | qcow2_cluster_alloc_phys(void *co) "co %p" |
| 510 | qcow2_cluster_link_l2(void *co, int nb_clusters) "co %p nb_clusters %d" |
| 511 | |
| 512 | qcow2_l2_allocate(void *bs, int l1_index) "bs %p l1_index %d" |
| 513 | qcow2_l2_allocate_get_empty(void *bs, int l1_index) "bs %p l1_index %d" |
| 514 | qcow2_l2_allocate_write_l2(void *bs, int l1_index) "bs %p l1_index %d" |
| 515 | qcow2_l2_allocate_write_l1(void *bs, int l1_index) "bs %p l1_index %d" |
| 516 | qcow2_l2_allocate_done(void *bs, int l1_index, int ret) "bs %p l1_index %d ret %d" |
| 517 | |
Markus Armbruster | 3ba0063 | 2013-06-07 12:59:21 +0200 | [diff] [blame] | 518 | # block/qcow2-cache.c |
Kevin Wolf | 3cce16f | 2012-03-01 18:36:21 +0100 | [diff] [blame] | 519 | 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" |
| 520 | qcow2_cache_get_replace_entry(void *co, int c, int i) "co %p is_l2_cache %d index %d" |
| 521 | qcow2_cache_get_read(void *co, int c, int i) "co %p is_l2_cache %d index %d" |
| 522 | qcow2_cache_get_done(void *co, int c, int i) "co %p is_l2_cache %d index %d" |
| 523 | qcow2_cache_flush(void *co, int c) "co %p is_l2_cache %d" |
| 524 | qcow2_cache_entry_flush(void *co, int c, int i) "co %p is_l2_cache %d index %d" |
| 525 | |
Stefan Hajnoczi | 298800c | 2010-12-06 16:08:01 +0000 | [diff] [blame] | 526 | # block/qed-l2-cache.c |
Lluís | 47f08d7 | 2011-08-31 20:31:58 +0200 | [diff] [blame] | 527 | qed_alloc_l2_cache_entry(void *l2_cache, void *entry) "l2_cache %p entry %p" |
| 528 | qed_unref_l2_cache_entry(void *entry, int ref) "entry %p ref %d" |
| 529 | 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] | 530 | |
| 531 | # block/qed-table.c |
Lluís | 47f08d7 | 2011-08-31 20:31:58 +0200 | [diff] [blame] | 532 | qed_read_table(void *s, uint64_t offset, void *table) "s %p offset %"PRIu64" table %p" |
| 533 | qed_read_table_cb(void *s, void *table, int ret) "s %p table %p ret %d" |
| 534 | 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" |
| 535 | 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] | 536 | |
| 537 | # block/qed.c |
Lluís | 47f08d7 | 2011-08-31 20:31:58 +0200 | [diff] [blame] | 538 | qed_need_check_timer_cb(void *s) "s %p" |
| 539 | qed_start_need_check_timer(void *s) "s %p" |
| 540 | qed_cancel_need_check_timer(void *s) "s %p" |
| 541 | 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] | 542 | 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] | 543 | 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] | 544 | 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" |
| 545 | 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] | 546 | 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 |
| 547 | 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] | 548 | 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] | 549 | |
Markus Armbruster | 3ba0063 | 2013-06-07 12:59:21 +0200 | [diff] [blame] | 550 | # hw/display/g364fb.c |
Lluís | 47f08d7 | 2011-08-31 20:31:58 +0200 | [diff] [blame] | 551 | g364fb_read(uint64_t addr, uint32_t val) "read addr=0x%"PRIx64": 0x%x" |
| 552 | 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] | 553 | |
Markus Armbruster | 3ba0063 | 2013-06-07 12:59:21 +0200 | [diff] [blame] | 554 | # hw/timer/grlib_gptimer.c |
Lluís | 47f08d7 | 2011-08-31 20:31:58 +0200 | [diff] [blame] | 555 | grlib_gptimer_enable(int id, uint32_t count) "timer:%d set count 0x%x and run" |
| 556 | grlib_gptimer_disabled(int id, uint32_t config) "timer:%d Timer disable config 0x%x" |
| 557 | grlib_gptimer_restart(int id, uint32_t reload) "timer:%d reload val: 0x%x" |
| 558 | grlib_gptimer_set_scaler(uint32_t scaler, uint32_t freq) "scaler:0x%x freq: 0x%x" |
| 559 | grlib_gptimer_hit(int id) "timer:%d HIT" |
| 560 | grlib_gptimer_readl(int id, uint64_t addr, uint32_t val) "timer:%d addr 0x%"PRIx64" 0x%x" |
| 561 | 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] | 562 | |
Markus Armbruster | 3ba0063 | 2013-06-07 12:59:21 +0200 | [diff] [blame] | 563 | # hw/intc/grlib_irqmp.c |
Stefan Hajnoczi | 2f4a725 | 2011-09-13 13:34:34 +0100 | [diff] [blame] | 564 | 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] | 565 | grlib_irqmp_ack(int intno) "interrupt:%d" |
| 566 | grlib_irqmp_set_irq(int irq) "Raise CPU IRQ %d" |
Stefan Hajnoczi | 689d7e2 | 2011-09-13 13:34:36 +0100 | [diff] [blame] | 567 | grlib_irqmp_readl_unknown(uint64_t addr) "addr 0x%"PRIx64 |
Lluís | 47f08d7 | 2011-08-31 20:31:58 +0200 | [diff] [blame] | 568 | 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] | 569 | |
Markus Armbruster | 3ba0063 | 2013-06-07 12:59:21 +0200 | [diff] [blame] | 570 | # hw/char/grlib_apbuart.c |
Lluís | 47f08d7 | 2011-08-31 20:31:58 +0200 | [diff] [blame] | 571 | grlib_apbuart_event(int event) "event:%d" |
| 572 | 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] | 573 | grlib_apbuart_readl_unknown(uint64_t addr) "addr 0x%"PRIx64"" |
Fabien Chouteau | b04d989 | 2011-01-24 12:56:55 +0100 | [diff] [blame] | 574 | |
Markus Armbruster | 3ba0063 | 2013-06-07 12:59:21 +0200 | [diff] [blame] | 575 | # hw/sparc/leon3.c |
Lluís | 47f08d7 | 2011-08-31 20:31:58 +0200 | [diff] [blame] | 576 | leon3_set_irq(int intno) "Set CPU IRQ %d" |
| 577 | leon3_reset_irq(int intno) "Reset CPU IRQ %d" |
Anthony Liguori | 9363ee3 | 2011-02-01 15:22:48 -0600 | [diff] [blame] | 578 | |
Alon Levy | cbcc633 | 2011-01-19 10:49:50 +0200 | [diff] [blame] | 579 | # spice-qemu-char.c |
Lluís | 47f08d7 | 2011-08-31 20:31:58 +0200 | [diff] [blame] | 580 | spice_vmc_write(ssize_t out, int len) "spice wrottn %zd of requested %d" |
| 581 | spice_vmc_read(int bytes, int len) "spice read %d of requested %d" |
| 582 | spice_vmc_register_interface(void *scd) "spice vmc registered interface %p" |
| 583 | spice_vmc_unregister_interface(void *scd) "spice vmc unregistered interface %p" |
Marc-André Lureau | 5a49d3e | 2012-12-05 16:15:34 +0100 | [diff] [blame] | 584 | spice_vmc_event(int event) "spice vmc event %d" |
Michael Walle | 4ef66fa | 2011-02-17 23:45:07 +0100 | [diff] [blame] | 585 | |
Markus Armbruster | 3ba0063 | 2013-06-07 12:59:21 +0200 | [diff] [blame] | 586 | # hw/intc/lm32_pic.c |
Lluís | 47f08d7 | 2011-08-31 20:31:58 +0200 | [diff] [blame] | 587 | lm32_pic_raise_irq(void) "Raise CPU interrupt" |
| 588 | lm32_pic_lower_irq(void) "Lower CPU interrupt" |
| 589 | lm32_pic_interrupt(int irq, int level) "Set IRQ%d %d" |
| 590 | lm32_pic_set_im(uint32_t im) "im 0x%08x" |
| 591 | lm32_pic_set_ip(uint32_t ip) "ip 0x%08x" |
| 592 | lm32_pic_get_im(uint32_t im) "im 0x%08x" |
| 593 | lm32_pic_get_ip(uint32_t ip) "ip 0x%08x" |
Michael Walle | 15d7dc4 | 2011-02-17 23:45:08 +0100 | [diff] [blame] | 594 | |
Markus Armbruster | 3ba0063 | 2013-06-07 12:59:21 +0200 | [diff] [blame] | 595 | # hw/char/lm32_juart.c |
Lluís | 47f08d7 | 2011-08-31 20:31:58 +0200 | [diff] [blame] | 596 | lm32_juart_get_jtx(uint32_t value) "jtx 0x%08x" |
| 597 | lm32_juart_set_jtx(uint32_t value) "jtx 0x%08x" |
| 598 | lm32_juart_get_jrx(uint32_t value) "jrx 0x%08x" |
| 599 | lm32_juart_set_jrx(uint32_t value) "jrx 0x%08x" |
Michael Walle | ea7924d | 2011-02-17 23:45:10 +0100 | [diff] [blame] | 600 | |
Markus Armbruster | 3ba0063 | 2013-06-07 12:59:21 +0200 | [diff] [blame] | 601 | # hw/timer/lm32_timer.c |
Lluís | 47f08d7 | 2011-08-31 20:31:58 +0200 | [diff] [blame] | 602 | lm32_timer_memory_write(uint32_t addr, uint32_t value) "addr 0x%08x value 0x%08x" |
| 603 | lm32_timer_memory_read(uint32_t addr, uint32_t value) "addr 0x%08x value 0x%08x" |
| 604 | lm32_timer_hit(void) "timer hit" |
| 605 | lm32_timer_irq_state(int level) "irq state %d" |
Michael Walle | 770ae57 | 2011-02-17 23:45:11 +0100 | [diff] [blame] | 606 | |
Markus Armbruster | 3ba0063 | 2013-06-07 12:59:21 +0200 | [diff] [blame] | 607 | # hw/char/lm32_uart.c |
Lluís | 47f08d7 | 2011-08-31 20:31:58 +0200 | [diff] [blame] | 608 | lm32_uart_memory_write(uint32_t addr, uint32_t value) "addr 0x%08x value 0x%08x" |
| 609 | lm32_uart_memory_read(uint32_t addr, uint32_t value) "addr 0x%08x value 0x%08x" |
| 610 | lm32_uart_irq_state(int level) "irq state %d" |
Michael Walle | f19410c | 2011-02-17 23:45:12 +0100 | [diff] [blame] | 611 | |
Markus Armbruster | 3ba0063 | 2013-06-07 12:59:21 +0200 | [diff] [blame] | 612 | # hw/misc/lm32_sys.c |
Lluís | 47f08d7 | 2011-08-31 20:31:58 +0200 | [diff] [blame] | 613 | 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] | 614 | |
Markus Armbruster | 3ba0063 | 2013-06-07 12:59:21 +0200 | [diff] [blame] | 615 | # hw/scsi/megasas.c |
Hannes Reinecke | e8f943c | 2012-05-29 13:51:17 +0200 | [diff] [blame] | 616 | megasas_init_firmware(uint64_t pa) "pa %" PRIx64 " " |
| 617 | 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" |
| 618 | megasas_initq_map_failed(int frame) "scmd %d: failed to map queue" |
| 619 | megasas_initq_mismatch(int queue_len, int fw_cmds) "queue size %d max fw cmds %d" |
| 620 | megasas_qf_found(unsigned int index, uint64_t pa) "found mapped frame %x pa %" PRIx64 "" |
| 621 | megasas_qf_new(unsigned int index, void *cmd) "return new frame %x cmd %p" |
| 622 | megasas_qf_failed(unsigned long pa) "all frames busy for frame %lx" |
| 623 | 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" |
| 624 | megasas_qf_update(unsigned int head, unsigned int busy) "update reply queue head %x busy %d" |
Hannes Reinecke | e8f943c | 2012-05-29 13:51:17 +0200 | [diff] [blame] | 625 | megasas_qf_map_failed(int cmd, unsigned long frame) "scmd %d: frame %lu" |
| 626 | megasas_qf_complete_noirq(uint64_t context) "context %" PRIx64 " " |
| 627 | 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" |
Hannes Reinecke | e8f943c | 2012-05-29 13:51:17 +0200 | [diff] [blame] | 628 | megasas_frame_busy(uint64_t addr) "frame %" PRIx64 " busy" |
| 629 | megasas_unhandled_frame_cmd(int cmd, uint8_t frame_cmd) "scmd %d: Unhandled MFI cmd %x" |
| 630 | 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" |
| 631 | megasas_scsi_target_not_present(const char *frame, int bus, int dev, int lun) "%s dev %x/%x/%x target not present" |
| 632 | 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" |
| 633 | megasas_iov_read_overflow(int cmd, int bytes, int len) "scmd %d: %d/%d bytes" |
| 634 | megasas_iov_write_overflow(int cmd, int bytes, int len) "scmd %d: %d/%d bytes" |
| 635 | megasas_iov_read_underflow(int cmd, int bytes, int len) "scmd %d: %d/%d bytes" |
| 636 | megasas_iov_write_underflow(int cmd, int bytes, int len) "scmd %d: %d/%d bytes" |
| 637 | megasas_scsi_req_alloc_failed(const char *frame, int dev, int lun) "%s dev %x/%x req allocation failed" |
| 638 | megasas_scsi_read_start(int cmd, int len) "scmd %d: transfer %d bytes of data" |
| 639 | megasas_scsi_write_start(int cmd, int len) "scmd %d: transfer %d bytes of data" |
| 640 | megasas_scsi_nodata(int cmd) "scmd %d: no data to be transferred" |
| 641 | megasas_scsi_complete(int cmd, uint32_t status, int len, int xfer) "scmd %d: finished with status %x, len %u/%u" |
| 642 | megasas_command_complete(int cmd, uint32_t status, uint32_t resid) "scmd %d: command completed, status %x, residual %d" |
| 643 | 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" |
| 644 | megasas_io_target_not_present(int cmd, const char *frame, int dev, int lun) "scmd %d: %s dev 1/%x/%x LUN not present" |
| 645 | megasas_io_read_start(int cmd, unsigned long lba, unsigned long count, unsigned long len) "scmd %d: start LBA %lx %lu blocks (%lu bytes)" |
| 646 | megasas_io_write_start(int cmd, unsigned long lba, unsigned long count, unsigned long len) "scmd %d: start LBA %lx %lu blocks (%lu bytes)" |
| 647 | megasas_io_complete(int cmd, uint32_t len) "scmd %d: %d bytes completed" |
| 648 | megasas_io_read(int cmd, int bytes, int len, unsigned long offset) "scmd %d: %d/%d bytes, iov offset %lu" |
| 649 | megasas_io_write(int cmd, int bytes, int len, unsigned long offset) "scmd %d: %d/%d bytes, iov offset %lu" |
Hannes Reinecke | e8f943c | 2012-05-29 13:51:17 +0200 | [diff] [blame] | 650 | megasas_iovec_sgl_overflow(int cmd, int index, int limit) "scmd %d: iovec count %d limit %d" |
| 651 | megasas_iovec_sgl_underflow(int cmd, int index) "scmd %d: iovec count %d" |
| 652 | megasas_iovec_sgl_invalid(int cmd, int index, uint64_t pa, uint32_t len) "scmd %d: element %d pa %" PRIx64 " len %u" |
| 653 | megasas_iovec_overflow(int cmd, int len, int limit) "scmd %d: len %d limit %d" |
| 654 | megasas_iovec_underflow(int cmd, int len, int limit) "scmd %d: len %d limit %d" |
| 655 | megasas_handle_dcmd(int cmd, int opcode) "scmd %d: MFI DCMD opcode %x" |
| 656 | megasas_finish_dcmd(int cmd, int size) "scmd %d: MFI DCMD wrote %d bytes" |
| 657 | megasas_dcmd_req_alloc_failed(int cmd, const char *desc) "scmd %d: %s alloc failed" |
| 658 | megasas_dcmd_internal_submit(int cmd, const char *desc, int dev) "scmd %d: %s to dev %d" |
| 659 | megasas_dcmd_internal_finish(int cmd, int opcode, int lun) "scmd %d: DCMD finish internal cmd %x lun %d" |
| 660 | megasas_dcmd_internal_invalid(int cmd, int opcode) "scmd %d: Invalid internal DCMD %x" |
| 661 | megasas_dcmd_unhandled(int cmd, int opcode, int len) "scmd %d: opcode %x, len %d" |
| 662 | megasas_dcmd_zero_sge(int cmd) "scmd %d: zero DCMD sge count" |
| 663 | megasas_dcmd_invalid_sge(int cmd, int count) "scmd %d: invalid DCMD sge count %d" |
Hannes Reinecke | e8f943c | 2012-05-29 13:51:17 +0200 | [diff] [blame] | 664 | megasas_dcmd_invalid_xfer_len(int cmd, unsigned long size, unsigned long max) "scmd %d: invalid xfer len %ld, max %ld" |
| 665 | megasas_dcmd_enter(int cmd, const char *dcmd, int len) "scmd %d: DCMD %s len %d" |
| 666 | megasas_dcmd_dummy(int cmd, unsigned long size) "scmd %d: DCMD dummy xfer len %ld" |
| 667 | megasas_dcmd_set_fw_time(int cmd, unsigned long time) "scmd %d: Set FW time %lx" |
| 668 | megasas_dcmd_pd_get_list(int cmd, int num, int max, int offset) "scmd %d: DCMD PD get list: %d / %d PDs, size %d" |
| 669 | megasas_dcmd_ld_get_list(int cmd, int num, int max) "scmd %d: DCMD LD get list: found %d / %d LDs" |
| 670 | megasas_dcmd_ld_get_info(int cmd, int ld_id) "scmd %d: DCMD LD get info for dev %d" |
| 671 | megasas_dcmd_pd_get_info(int cmd, int pd_id) "scmd %d: DCMD PD get info for dev %d" |
| 672 | 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] | 673 | 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] | 674 | megasas_abort_frame(int cmd, int abort_cmd) "scmd %d: aborting frame %x" |
| 675 | megasas_abort_no_cmd(int cmd, uint64_t context) "scmd %d: no active command for frame context %" PRIx64 "" |
| 676 | megasas_abort_invalid_context(int cmd, uint64_t context, int abort_cmd) "scmd %d: invalid frame context %" PRIx64 " for abort frame %x" |
| 677 | megasas_reset(void) "Reset" |
| 678 | megasas_init(int sges, int cmds, const char *intr, const char *mode) "Using %d sges, %d cmds, %s, %s mode" |
| 679 | megasas_msix_raise(int vector) "vector %d" |
| 680 | megasas_irq_lower(void) "INTx" |
| 681 | megasas_irq_raise(void) "INTx" |
| 682 | megasas_intr_enabled(void) "Interrupts enabled" |
| 683 | megasas_intr_disabled(void) "Interrupts disabled" |
| 684 | megasas_mmio_readl(unsigned long addr, uint32_t val) "addr 0x%lx: 0x%x" |
| 685 | megasas_mmio_invalid_readl(unsigned long addr) "addr 0x%lx" |
| 686 | megasas_mmio_writel(uint32_t addr, uint32_t val) "addr 0x%x: 0x%x" |
| 687 | megasas_mmio_invalid_writel(uint32_t addr, uint32_t val) "addr 0x%x: 0x%x" |
| 688 | |
Markus Armbruster | 3ba0063 | 2013-06-07 12:59:21 +0200 | [diff] [blame] | 689 | # hw/audio/milkymist-ac97.c |
Lluís | 47f08d7 | 2011-08-31 20:31:58 +0200 | [diff] [blame] | 690 | milkymist_ac97_memory_read(uint32_t addr, uint32_t value) "addr %08x value %08x" |
| 691 | milkymist_ac97_memory_write(uint32_t addr, uint32_t value) "addr %08x value %08x" |
| 692 | milkymist_ac97_pulse_irq_crrequest(void) "Pulse IRQ CR request" |
| 693 | milkymist_ac97_pulse_irq_crreply(void) "Pulse IRQ CR reply" |
| 694 | milkymist_ac97_pulse_irq_dmaw(void) "Pulse IRQ DMA write" |
| 695 | milkymist_ac97_pulse_irq_dmar(void) "Pulse IRQ DMA read" |
| 696 | milkymist_ac97_in_cb(int avail, uint32_t remaining) "avail %d remaining %u" |
| 697 | milkymist_ac97_in_cb_transferred(int transferred) "transferred %d" |
| 698 | milkymist_ac97_out_cb(int free, uint32_t remaining) "free %d remaining %u" |
| 699 | milkymist_ac97_out_cb_transferred(int transferred) "transferred %d" |
Michael Walle | e4dc6d2 | 2011-03-07 23:32:33 +0100 | [diff] [blame] | 700 | |
Markus Armbruster | 3ba0063 | 2013-06-07 12:59:21 +0200 | [diff] [blame] | 701 | # hw/misc/milkymist-hpdmc.c |
Lluís | 47f08d7 | 2011-08-31 20:31:58 +0200 | [diff] [blame] | 702 | milkymist_hpdmc_memory_read(uint32_t addr, uint32_t value) "addr=%08x value=%08x" |
| 703 | 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] | 704 | |
Markus Armbruster | 3ba0063 | 2013-06-07 12:59:21 +0200 | [diff] [blame] | 705 | # hw/sd/milkymist-memcard.c |
Lluís | 47f08d7 | 2011-08-31 20:31:58 +0200 | [diff] [blame] | 706 | milkymist_memcard_memory_read(uint32_t addr, uint32_t value) "addr %08x value %08x" |
| 707 | 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] | 708 | |
Markus Armbruster | 3ba0063 | 2013-06-07 12:59:21 +0200 | [diff] [blame] | 709 | # hw/net/milkymist-minimac2.c |
Lluís | 47f08d7 | 2011-08-31 20:31:58 +0200 | [diff] [blame] | 710 | milkymist_minimac2_memory_read(uint32_t addr, uint32_t value) "addr %08x value %08x" |
| 711 | milkymist_minimac2_memory_write(uint32_t addr, uint32_t value) "addr %08x value %08x" |
| 712 | milkymist_minimac2_mdio_write(uint8_t phy_addr, uint8_t addr, uint16_t value) "phy_addr %02x addr %02x value %04x" |
| 713 | milkymist_minimac2_mdio_read(uint8_t phy_addr, uint8_t addr, uint16_t value) "phy_addr %02x addr %02x value %04x" |
| 714 | milkymist_minimac2_tx_frame(uint32_t length) "length %u" |
| 715 | milkymist_minimac2_rx_frame(const void *buf, uint32_t length) "buf %p length %u" |
| 716 | milkymist_minimac2_drop_rx_frame(const void *buf) "buf %p" |
| 717 | milkymist_minimac2_rx_transfer(const void *buf, uint32_t length) "buf %p length %d" |
| 718 | milkymist_minimac2_raise_irq_rx(void) "Raise IRQ RX" |
| 719 | milkymist_minimac2_lower_irq_rx(void) "Lower IRQ RX" |
| 720 | milkymist_minimac2_pulse_irq_tx(void) "Pulse IRQ TX" |
Michael Walle | 5ee18b9 | 2011-03-07 23:32:36 +0100 | [diff] [blame] | 721 | |
Markus Armbruster | 3ba0063 | 2013-06-07 12:59:21 +0200 | [diff] [blame] | 722 | # hw/misc/milkymist-pfpu.c |
Lluís | 47f08d7 | 2011-08-31 20:31:58 +0200 | [diff] [blame] | 723 | milkymist_pfpu_memory_read(uint32_t addr, uint32_t value) "addr %08x value %08x" |
| 724 | milkymist_pfpu_memory_write(uint32_t addr, uint32_t value) "addr %08x value %08x" |
| 725 | milkymist_pfpu_vectout(uint32_t a, uint32_t b, uint32_t dma_ptr) "a %08x b %08x dma_ptr %08x" |
| 726 | milkymist_pfpu_pulse_irq(void) "Pulse IRQ" |
Michael Walle | 87a381e | 2011-03-07 23:32:37 +0100 | [diff] [blame] | 727 | |
Markus Armbruster | 3ba0063 | 2013-06-07 12:59:21 +0200 | [diff] [blame] | 728 | # hw/input/milkymist-softusb.c |
Lluís | 47f08d7 | 2011-08-31 20:31:58 +0200 | [diff] [blame] | 729 | milkymist_softusb_memory_read(uint32_t addr, uint32_t value) "addr %08x value %08x" |
| 730 | milkymist_softusb_memory_write(uint32_t addr, uint32_t value) "addr %08x value %08x" |
| 731 | milkymist_softusb_mevt(uint8_t m) "m %d" |
| 732 | milkymist_softusb_kevt(uint8_t m) "m %d" |
Lluís | 47f08d7 | 2011-08-31 20:31:58 +0200 | [diff] [blame] | 733 | milkymist_softusb_pulse_irq(void) "Pulse IRQ" |
Michael Walle | 9683242 | 2011-03-07 23:32:38 +0100 | [diff] [blame] | 734 | |
Markus Armbruster | 3ba0063 | 2013-06-07 12:59:21 +0200 | [diff] [blame] | 735 | # hw/timer/milkymist-sysctl.c |
Lluís | 47f08d7 | 2011-08-31 20:31:58 +0200 | [diff] [blame] | 736 | milkymist_sysctl_memory_read(uint32_t addr, uint32_t value) "addr %08x value %08x" |
| 737 | milkymist_sysctl_memory_write(uint32_t addr, uint32_t value) "addr %08x value %08x" |
| 738 | milkymist_sysctl_icap_write(uint32_t value) "value %08x" |
| 739 | milkymist_sysctl_start_timer0(void) "Start timer0" |
| 740 | milkymist_sysctl_stop_timer0(void) "Stop timer0" |
| 741 | milkymist_sysctl_start_timer1(void) "Start timer1" |
| 742 | milkymist_sysctl_stop_timer1(void) "Stop timer1" |
| 743 | milkymist_sysctl_pulse_irq_timer0(void) "Pulse IRQ Timer0" |
| 744 | milkymist_sysctl_pulse_irq_timer1(void) "Pulse IRQ Timer1" |
Michael Walle | 0670dad | 2011-03-07 23:32:40 +0100 | [diff] [blame] | 745 | |
Markus Armbruster | 3ba0063 | 2013-06-07 12:59:21 +0200 | [diff] [blame] | 746 | # hw/display/milkymist-tmu2.c |
Lluís | 47f08d7 | 2011-08-31 20:31:58 +0200 | [diff] [blame] | 747 | milkymist_tmu2_memory_read(uint32_t addr, uint32_t value) "addr %08x value %08x" |
| 748 | milkymist_tmu2_memory_write(uint32_t addr, uint32_t value) "addr %08x value %08x" |
| 749 | milkymist_tmu2_start(void) "Start TMU" |
| 750 | milkymist_tmu2_pulse_irq(void) "Pulse IRQ" |
Michael Walle | 883de16 | 2011-03-07 23:32:41 +0100 | [diff] [blame] | 751 | |
Markus Armbruster | 3ba0063 | 2013-06-07 12:59:21 +0200 | [diff] [blame] | 752 | # hw/char/milkymist-uart.c |
Lluís | 47f08d7 | 2011-08-31 20:31:58 +0200 | [diff] [blame] | 753 | milkymist_uart_memory_read(uint32_t addr, uint32_t value) "addr %08x value %08x" |
| 754 | 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] | 755 | milkymist_uart_raise_irq(void) "Raise IRQ" |
| 756 | milkymist_uart_lower_irq(void) "Lower IRQ" |
Michael Walle | d23948b | 2011-03-07 23:32:42 +0100 | [diff] [blame] | 757 | |
Markus Armbruster | 3ba0063 | 2013-06-07 12:59:21 +0200 | [diff] [blame] | 758 | # hw/display/milkymist-vgafb.c |
Lluís | 47f08d7 | 2011-08-31 20:31:58 +0200 | [diff] [blame] | 759 | milkymist_vgafb_memory_read(uint32_t addr, uint32_t value) "addr %08x value %08x" |
| 760 | 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] | 761 | |
Markus Armbruster | 3ba0063 | 2013-06-07 12:59:21 +0200 | [diff] [blame] | 762 | # hw/net/mipsnet.c |
Hervé Poussineau | 83818f7 | 2011-09-04 22:29:27 +0200 | [diff] [blame] | 763 | mipsnet_send(uint32_t size) "sending len=%u" |
| 764 | mipsnet_receive(uint32_t size) "receiving len=%u" |
| 765 | 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] | 766 | 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] | 767 | mipsnet_irq(uint32_t isr, uint32_t intctl) "set irq to %d (%02x)" |
| 768 | |
Markus Armbruster | 3ba0063 | 2013-06-07 12:59:21 +0200 | [diff] [blame] | 769 | # hw/isa/pc87312.c |
Hervé Poussineau | 1ae41f4 | 2012-04-14 22:48:35 +0200 | [diff] [blame] | 770 | pc87312_io_read(uint32_t addr, uint32_t val) "read addr=%x val=%x" |
| 771 | pc87312_io_write(uint32_t addr, uint32_t val) "write addr=%x val=%x" |
| 772 | pc87312_info_floppy(uint32_t base) "base 0x%x" |
| 773 | pc87312_info_ide(uint32_t base) "base 0x%x" |
| 774 | pc87312_info_parallel(uint32_t base, uint32_t irq) "base 0x%x, irq %u" |
| 775 | pc87312_info_serial(int n, uint32_t base, uint32_t irq) "id=%d, base 0x%x, irq %u" |
| 776 | |
Dmitry Fleytman | 881d588 | 2013-04-19 10:05:46 +0300 | [diff] [blame] | 777 | # hw/scsi/vmw_pvscsi.c |
| 778 | pvscsi_ring_init_data(uint32_t txr_len_log2, uint32_t rxr_len_log2) "TX/RX rings logarithms set to %d/%d" |
| 779 | pvscsi_ring_init_msg(uint32_t len_log2) "MSG ring logarithm set to %d" |
| 780 | pvscsi_ring_flush_cmp(uint64_t filled_cmp_ptr) "new production counter of completion ring is 0x%"PRIx64"" |
| 781 | pvscsi_ring_flush_msg(uint64_t filled_cmp_ptr) "new production counter of message ring is 0x%"PRIx64"" |
| 782 | pvscsi_update_irq_level(bool raise, uint64_t mask, uint64_t status) "interrupt level set to %d (MASK: 0x%"PRIx64", STATUS: 0x%"PRIx64")" |
| 783 | pvscsi_update_irq_msi(void) "sending MSI notification" |
| 784 | pvscsi_cmp_ring_put(unsigned long addr) "got completion descriptor 0x%lx" |
| 785 | pvscsi_msg_ring_put(unsigned long addr) "got message descriptor 0x%lx" |
| 786 | pvscsi_complete_request(uint64_t context, uint64_t len, uint8_t sense_key) "completion: ctx: 0x%"PRIx64", len: 0x%"PRIx64", sense key: %u" |
Hervé Poussineau | 6e860b5 | 2013-05-01 07:41:26 +0200 | [diff] [blame] | 787 | pvscsi_get_sg_list(int nsg, size_t size) "get SG list: depth: %u, size: %zu" |
Dmitry Fleytman | 881d588 | 2013-04-19 10:05:46 +0300 | [diff] [blame] | 788 | pvscsi_get_next_sg_elem(uint32_t flags) "unknown flags in SG element (val: 0x%x)" |
| 789 | pvscsi_command_complete_not_found(uint32_t tag) "can't find request for tag 0x%x" |
| 790 | pvscsi_command_complete_data_run(void) "not all data required for command transferred" |
| 791 | pvscsi_command_complete_sense_len(int len) "sense information length is %d bytes" |
| 792 | pvscsi_convert_sglist(uint64_t context, unsigned long addr, uint32_t resid) "element: ctx: 0x%"PRIx64" addr: 0x%lx, len: %ul" |
| 793 | pvscsi_process_req_descr(uint8_t cmd, uint64_t ctx) "SCSI cmd 0x%x, ctx: 0x%"PRIx64"" |
| 794 | pvscsi_process_req_descr_unknown_device(void) "command directed to unknown device rejected" |
| 795 | pvscsi_process_req_descr_invalid_dir(void) "command with invalid transfer direction rejected" |
| 796 | pvscsi_process_io(unsigned long addr) "got descriptor 0x%lx" |
| 797 | pvscsi_on_cmd_noimpl(const char* cmd) "unimplemented command %s ignored" |
| 798 | pvscsi_on_cmd_reset_dev(uint32_t tgt, int lun, void* dev) "PVSCSI_CMD_RESET_DEVICE[target %u lun %d (dev 0x%p)]" |
| 799 | pvscsi_on_cmd_arrived(const char* cmd) "command %s arrived" |
| 800 | pvscsi_on_cmd_abort(uint64_t ctx, uint32_t tgt) "command PVSCSI_CMD_ABORT_CMD for ctx 0x%"PRIx64", target %u" |
| 801 | pvscsi_on_cmd_unknown(uint64_t cmd_id) "unknown command %"PRIx64"" |
| 802 | pvscsi_on_cmd_unknown_data(uint32_t data) "data for unknown command 0x:%x" |
| 803 | pvscsi_io_write(const char* cmd, uint64_t val) "%s write: %"PRIx64"" |
| 804 | pvscsi_io_write_unknown(unsigned long addr, unsigned sz, uint64_t val) "unknown write address: 0x%lx size: %u bytes value: 0x%"PRIx64"" |
| 805 | pvscsi_io_read(const char* cmd, uint64_t status) "%s read: 0x%"PRIx64"" |
| 806 | pvscsi_io_read_unknown(unsigned long addr, unsigned sz) "unknown read address: 0x%lx size: %u bytes" |
| 807 | pvscsi_init_msi_fail(int res) "failed to initialize MSI, error %d" |
| 808 | pvscsi_state(const char* state) "starting %s ..." |
| 809 | pvscsi_tx_rings_ppn(const char* label, uint64_t ppn) "%s page: %"PRIx64"" |
| 810 | pvscsi_tx_rings_num_pages(const char* label, uint32_t num) "Number of %s pages: %u" |
| 811 | |
Jun Nakajima | 432d268 | 2010-08-31 16:41:25 +0100 | [diff] [blame] | 812 | # xen-all.c |
Lluís | 47f08d7 | 2011-08-31 20:31:58 +0200 | [diff] [blame] | 813 | 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] | 814 | 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] | 815 | |
| 816 | # xen-mapcache.c |
Stefan Hajnoczi | 689d7e2 | 2011-09-13 13:34:36 +0100 | [diff] [blame] | 817 | xen_map_cache(uint64_t phys_addr) "want %#"PRIx64 |
| 818 | xen_remap_bucket(uint64_t index) "index %#"PRIx64 |
Lluís | 47f08d7 | 2011-08-31 20:31:58 +0200 | [diff] [blame] | 819 | xen_map_cache_return(void* ptr) "%p" |
Anthony PERARD | 050a0dd | 2010-09-16 13:57:49 +0100 | [diff] [blame] | 820 | |
Markus Armbruster | 3ba0063 | 2013-06-07 12:59:21 +0200 | [diff] [blame] | 821 | # hw/xen/xen_platform.c |
Lluís | 47f08d7 | 2011-08-31 20:31:58 +0200 | [diff] [blame] | 822 | xen_platform_log(char *s) "xen platform: %s" |
Kevin Wolf | 00dccaf | 2011-01-17 16:08:14 +0000 | [diff] [blame] | 823 | |
| 824 | # qemu-coroutine.c |
Lluís | 47f08d7 | 2011-08-31 20:31:58 +0200 | [diff] [blame] | 825 | qemu_coroutine_enter(void *from, void *to, void *opaque) "from %p to %p opaque %p" |
| 826 | qemu_coroutine_yield(void *from, void *to) "from %p to %p" |
| 827 | qemu_coroutine_terminate(void *co) "self %p" |
Kevin Wolf | b96e924 | 2011-06-30 17:56:46 +0200 | [diff] [blame] | 828 | |
| 829 | # qemu-coroutine-lock.c |
Stefan Hajnoczi | 02ffb50 | 2013-05-17 15:51:26 +0200 | [diff] [blame] | 830 | qemu_co_queue_run_restart(void *co) "co %p" |
Kevin Wolf | bfe24e1 | 2012-03-12 10:28:34 +0100 | [diff] [blame] | 831 | qemu_co_queue_next(void *nxt) "next %p" |
Lluís | 47f08d7 | 2011-08-31 20:31:58 +0200 | [diff] [blame] | 832 | qemu_co_mutex_lock_entry(void *mutex, void *self) "mutex %p self %p" |
| 833 | qemu_co_mutex_lock_return(void *mutex, void *self) "mutex %p self %p" |
| 834 | qemu_co_mutex_unlock_entry(void *mutex, void *self) "mutex %p self %p" |
| 835 | 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] | 836 | |
Markus Armbruster | 3ba0063 | 2013-06-07 12:59:21 +0200 | [diff] [blame] | 837 | # hw/char/escc.c |
Lluís | 47f08d7 | 2011-08-31 20:31:58 +0200 | [diff] [blame] | 838 | escc_put_queue(char channel, int b) "channel %c put: 0x%02x" |
| 839 | escc_get_queue(char channel, int val) "channel %c get 0x%02x" |
| 840 | escc_update_irq(int irq) "IRQ = %d" |
| 841 | 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" |
| 842 | escc_mem_writeb_ctrl(char channel, uint32_t reg, uint32_t val) "Write channel %c, reg[%d] = %2.2x" |
| 843 | escc_mem_writeb_data(char channel, uint32_t val) "Write channel %c, ch %d" |
| 844 | escc_mem_readb_ctrl(char channel, uint32_t reg, uint8_t val) "Read channel %c, reg[%d] = %2.2x" |
| 845 | escc_mem_readb_data(char channel, uint32_t ret) "Read channel %c, ch %d" |
| 846 | escc_serial_receive_byte(char channel, int ch) "channel %c put ch %d" |
| 847 | escc_sunkbd_event_in(int ch) "Untranslated keycode %2.2x" |
| 848 | escc_sunkbd_event_out(int ch) "Translated keycode %2.2x" |
| 849 | escc_kbd_command(int val) "Command %d" |
| 850 | 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] | 851 | |
Ronnie Sahlberg | c589b24 | 2011-10-25 19:24:24 +1100 | [diff] [blame] | 852 | # block/iscsi.c |
Ronnie Sahlberg | f4dfa67 | 2012-05-22 20:10:05 +1000 | [diff] [blame] | 853 | 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] | 854 | 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] | 855 | 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] | 856 | 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" |
| 857 | |
Markus Armbruster | 3ba0063 | 2013-06-07 12:59:21 +0200 | [diff] [blame] | 858 | # hw/scsi/esp.c |
Hervé Poussineau | 3af4e9a | 2012-07-09 12:02:29 +0200 | [diff] [blame] | 859 | esp_error_fifo_overrun(void) "FIFO overrun" |
| 860 | esp_error_unhandled_command(uint32_t val) "unhandled command (%2.2x)" |
| 861 | 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] | 862 | esp_raise_irq(void) "Raise IRQ" |
| 863 | esp_lower_irq(void) "Lower IRQ" |
| 864 | esp_dma_enable(void) "Raise enable" |
| 865 | esp_dma_disable(void) "Lower enable" |
| 866 | esp_get_cmd(uint32_t dmalen, int target) "len %d target %d" |
| 867 | esp_do_busid_cmd(uint8_t busid) "busid 0x%x" |
| 868 | esp_handle_satn_stop(uint32_t cmdlen) "cmdlen %d" |
| 869 | esp_write_response(uint32_t status) "Transfer status (status=%d)" |
| 870 | esp_do_dma(uint32_t cmdlen, uint32_t len) "command len %d + %d" |
| 871 | esp_command_complete(void) "SCSI Command complete" |
| 872 | esp_command_complete_unexpected(void) "SCSI command completed unexpectedly" |
| 873 | esp_command_complete_fail(void) "Command failed" |
| 874 | esp_transfer_data(uint32_t dma_left, int32_t ti_size) "transfer %d/%d" |
| 875 | esp_handle_ti(uint32_t minlen) "Transfer Information len %d" |
| 876 | esp_handle_ti_cmd(uint32_t cmdlen) "command len %d" |
| 877 | esp_mem_readb(uint32_t saddr, uint8_t reg) "reg[%d]: 0x%2.2x" |
| 878 | esp_mem_writeb(uint32_t saddr, uint8_t reg, uint32_t val) "reg[%d]: 0x%2.2x -> 0x%2.2x" |
| 879 | esp_mem_writeb_cmd_nop(uint32_t val) "NOP (%2.2x)" |
| 880 | esp_mem_writeb_cmd_flush(uint32_t val) "Flush FIFO (%2.2x)" |
| 881 | esp_mem_writeb_cmd_reset(uint32_t val) "Chip reset (%2.2x)" |
| 882 | esp_mem_writeb_cmd_bus_reset(uint32_t val) "Bus reset (%2.2x)" |
| 883 | esp_mem_writeb_cmd_iccs(uint32_t val) "Initiator Command Complete Sequence (%2.2x)" |
| 884 | esp_mem_writeb_cmd_msgacc(uint32_t val) "Message Accepted (%2.2x)" |
| 885 | esp_mem_writeb_cmd_pad(uint32_t val) "Transfer padding (%2.2x)" |
| 886 | esp_mem_writeb_cmd_satn(uint32_t val) "Set ATN (%2.2x)" |
Hervé Poussineau | 6915bff | 2012-07-09 12:02:25 +0200 | [diff] [blame] | 887 | esp_mem_writeb_cmd_rstatn(uint32_t val) "Reset ATN (%2.2x)" |
Blue Swirl | bf4b988 | 2011-09-11 15:54:18 +0000 | [diff] [blame] | 888 | esp_mem_writeb_cmd_sel(uint32_t val) "Select without ATN (%2.2x)" |
| 889 | esp_mem_writeb_cmd_selatn(uint32_t val) "Select with ATN (%2.2x)" |
| 890 | esp_mem_writeb_cmd_selatns(uint32_t val) "Select with ATN & stop (%2.2x)" |
| 891 | esp_mem_writeb_cmd_ensel(uint32_t val) "Enable selection (%2.2x)" |
Hervé Poussineau | 6fe84c1 | 2012-07-09 12:02:24 +0200 | [diff] [blame] | 892 | esp_mem_writeb_cmd_dissel(uint32_t val) "Disable selection (%2.2x)" |
Markus Armbruster | 3ba0063 | 2013-06-07 12:59:21 +0200 | [diff] [blame] | 893 | |
| 894 | # hw/scsi/esp-pci.c |
Hervé Poussineau | fabaaf1 | 2012-07-09 12:02:31 +0200 | [diff] [blame] | 895 | esp_pci_error_invalid_dma_direction(void) "invalid DMA transfer direction" |
| 896 | esp_pci_error_invalid_read(uint32_t reg) "read access outside bounds (reg 0x%x)" |
| 897 | esp_pci_error_invalid_write(uint32_t reg) "write access outside bounds (reg 0x%x)" |
| 898 | esp_pci_error_invalid_write_dma(uint32_t val, uint32_t addr) "invalid write of 0x%02x at [0x%x]" |
| 899 | esp_pci_dma_read(uint32_t saddr, uint32_t reg) "reg[%d]: 0x%8.8x" |
| 900 | esp_pci_dma_write(uint32_t saddr, uint32_t reg, uint32_t val) "reg[%d]: 0x%8.8x -> 0x%8.8x" |
| 901 | esp_pci_dma_idle(uint32_t val) "IDLE (%.8x)" |
| 902 | esp_pci_dma_blast(uint32_t val) "BLAST (%.8x)" |
| 903 | esp_pci_dma_abort(uint32_t val) "ABORT (%.8x)" |
| 904 | esp_pci_dma_start(uint32_t val) "START (%.8x)" |
| 905 | esp_pci_sbac_read(uint32_t reg) "sbac: 0x%8.8x" |
| 906 | 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] | 907 | |
| 908 | # monitor.c |
| 909 | handle_qmp_command(void *mon, const char *cmd_name) "mon %p cmd_name \"%s\"" |
| 910 | monitor_protocol_emitter(void *mon) "mon %p" |
Daniel P. Berrange | afeecec | 2012-06-14 18:12:57 +0100 | [diff] [blame] | 911 | monitor_protocol_event(uint32_t event, const char *evname, void *data) "event=%d name \"%s\" data %p" |
| 912 | monitor_protocol_event_handler(uint32_t event, void *data, uint64_t last, uint64_t now) "event=%d data=%p last=%" PRId64 " now=%" PRId64 |
| 913 | monitor_protocol_event_emit(uint32_t event, void *data) "event=%d data=%p" |
| 914 | 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 |
| 915 | 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] | 916 | |
Markus Armbruster | 3ba0063 | 2013-06-07 12:59:21 +0200 | [diff] [blame] | 917 | # hw/net/opencores_eth.c |
Max Filippov | 342407f | 2011-10-16 02:56:45 +0400 | [diff] [blame] | 918 | open_eth_mii_write(unsigned idx, uint16_t v) "MII[%02x] <- %04x" |
| 919 | open_eth_mii_read(unsigned idx, uint16_t v) "MII[%02x] -> %04x" |
| 920 | open_eth_update_irq(uint32_t v) "IRQ <- %x" |
| 921 | open_eth_receive(unsigned len) "RX: len: %u" |
| 922 | open_eth_receive_mcast(unsigned idx, uint32_t h0, uint32_t h1) "MCAST: idx = %u, hash: %08x:%08x" |
| 923 | open_eth_receive_reject(void) "RX: rejected" |
| 924 | open_eth_receive_desc(uint32_t addr, uint32_t len_flags) "RX: %08x, len_flags: %08x" |
| 925 | open_eth_start_xmit(uint32_t addr, unsigned len, unsigned tx_len) "TX: %08x, len: %u, tx_len: %u" |
| 926 | open_eth_reg_read(uint32_t addr, uint32_t v) "MAC[%02x] -> %08x" |
| 927 | open_eth_reg_write(uint32_t addr, uint32_t v) "MAC[%02x] <- %08x" |
| 928 | open_eth_desc_read(uint32_t addr, uint32_t v) "DESC[%04x] -> %08x" |
| 929 | 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] | 930 | |
Harsh Prateek Bora | c572f23 | 2011-10-12 19:11:25 +0530 | [diff] [blame] | 931 | # hw/9pfs/virtio-9p.c |
Aneesh Kumar K.V | 7999f7e | 2011-10-24 15:09:49 +0530 | [diff] [blame] | 932 | 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] | 933 | v9fs_version(uint16_t tag, uint8_t id, int32_t msize, char* version) "tag %d id %d msize %d version %s" |
| 934 | 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] | 935 | 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] | 936 | 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"" |
| 937 | v9fs_stat(uint16_t tag, uint8_t id, int32_t fid) "tag %d id %d fid %d" |
| 938 | 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"}" |
| 939 | v9fs_getattr(uint16_t tag, uint8_t id, int32_t fid, uint64_t request_mask) "tag %d id %d fid %d request_mask %"PRIu64"" |
| 940 | 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}" |
| 941 | 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" |
| 942 | v9fs_walk_return(uint16_t tag, uint8_t id, uint16_t nwnames, void* qids) "tag %d id %d nwnames %d qids %p" |
| 943 | v9fs_open(uint16_t tag, uint8_t id, int32_t fid, int32_t mode) "tag %d id %d fid %d mode %d" |
| 944 | 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" |
| 945 | 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" |
| 946 | 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" |
| 947 | v9fs_fsync(uint16_t tag, uint8_t id, int32_t fid, int datasync) "tag %d id %d fid %d datasync %d" |
| 948 | 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] | 949 | 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] | 950 | 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] | 951 | 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" |
| 952 | v9fs_readdir_return(uint16_t tag, uint8_t id, uint32_t count, ssize_t retval) "tag %d id %d count %u retval %zd" |
| 953 | 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] | 954 | v9fs_write_return(uint16_t tag, uint8_t id, int32_t total, ssize_t err) "tag %d id %d total %d err %zd" |
| 955 | 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" |
| 956 | 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" |
| 957 | 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" |
| 958 | 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"}" |
| 959 | v9fs_flush(uint16_t tag, uint8_t id, int16_t flush_tag) "tag %d id %d flush_tag %d" |
| 960 | 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" |
| 961 | 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] | 962 | 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] | 963 | 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" |
| 964 | 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"}" |
| 965 | 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"" |
| 966 | v9fs_lock_return(uint16_t tag, uint8_t id, int8_t status) "tag %d id %d status %d" |
| 967 | 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"" |
| 968 | 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] | 969 | 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" |
| 970 | 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] | 971 | 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" |
| 972 | v9fs_xattrwalk_return(uint16_t tag, uint8_t id, int64_t size) "tag %d id %d size %"PRId64"" |
| 973 | 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" |
| 974 | v9fs_readlink(uint16_t tag, uint8_t id, int32_t fid) "tag %d id %d fid %d" |
| 975 | 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] | 976 | |
| 977 | # target-sparc/mmu_helper.c |
| 978 | 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" |
| 979 | 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" |
| 980 | mmu_helper_dmiss(uint64_t address, uint64_t context) "DMISS at %"PRIx64" context %"PRIx64"" |
| 981 | mmu_helper_tfault(uint64_t address, uint64_t context) "TFAULT at %"PRIx64" context %"PRIx64"" |
| 982 | mmu_helper_tmiss(uint64_t address, uint64_t context) "TMISS at %"PRIx64" context %"PRIx64"" |
| 983 | 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"" |
| 984 | 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"" |
| 985 | 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] | 986 | |
Markus Armbruster | 3ba0063 | 2013-06-07 12:59:21 +0200 | [diff] [blame] | 987 | # target-sparc/int64_helper.c |
Blue Swirl | 11e66bc | 2011-09-11 15:05:41 +0000 | [diff] [blame] | 988 | int_helper_set_softint(uint32_t softint) "new %08x" |
| 989 | int_helper_clear_softint(uint32_t softint) "new %08x" |
| 990 | int_helper_write_softint(uint32_t softint) "new %08x" |
Markus Armbruster | 3ba0063 | 2013-06-07 12:59:21 +0200 | [diff] [blame] | 991 | |
| 992 | # target-sparc/int32_helper.c |
Blue Swirl | 11e66bc | 2011-09-11 15:05:41 +0000 | [diff] [blame] | 993 | int_helper_icache_freeze(void) "Instruction cache: freeze" |
| 994 | int_helper_dcache_freeze(void) "Data cache: freeze" |
Blue Swirl | 870be6a | 2011-09-11 15:53:35 +0000 | [diff] [blame] | 995 | |
| 996 | # target-sparc/win_helper.c |
| 997 | win_helper_gregset_error(uint32_t pstate) "ERROR in get_gregset: active pstate bits=%x" |
| 998 | win_helper_switch_pstate(uint32_t pstate_regs, uint32_t new_pstate_regs) "change_pstate: switching regs old=%x new=%x" |
| 999 | win_helper_no_switch_pstate(uint32_t new_pstate_regs) "change_pstate: regs new=%x (unchanged)" |
| 1000 | win_helper_wrpil(uint32_t psrpil, uint32_t new_pil) "old=%x new=%x" |
| 1001 | win_helper_done(uint32_t tl) "tl=%d" |
| 1002 | win_helper_retry(uint32_t tl) "tl=%d" |
Kevin Wolf | c57c465 | 2011-11-24 06:15:28 -0500 | [diff] [blame] | 1003 | |
| 1004 | # dma-helpers.c |
| 1005 | dma_bdrv_io(void *dbs, void *bs, int64_t sector_num, bool to_dev) "dbs=%p bs=%p sector_num=%" PRId64 " to_dev=%d" |
| 1006 | dma_aio_cancel(void *dbs) "dbs=%p" |
| 1007 | dma_complete(void *dbs, int ret, void *cb) "dbs=%p ret=%d cb=%p" |
| 1008 | dma_bdrv_cb(void *dbs, int ret) "dbs=%p ret=%d" |
| 1009 | dma_map_wait(void *dbs) "dbs=%p" |
Alon Levy | cdbc19d | 2012-03-11 18:11:26 +0200 | [diff] [blame] | 1010 | |
Markus Armbruster | 3ba0063 | 2013-06-07 12:59:21 +0200 | [diff] [blame] | 1011 | # ui/console.c |
Gerd Hoffmann | 437fe10 | 2013-03-07 16:04:52 +0100 | [diff] [blame] | 1012 | console_gfx_new(void) "" |
| 1013 | console_txt_new(int w, int h) "%dx%d" |
| 1014 | console_select(int nr) "%d" |
Gerd Hoffmann | 0f7b286 | 2013-03-14 11:56:16 +0100 | [diff] [blame] | 1015 | console_refresh(int interval) "interval %d ms" |
Gerd Hoffmann | da229ef | 2013-02-28 10:48:02 +0100 | [diff] [blame] | 1016 | displaysurface_create(void *display_surface, int w, int h) "surface=%p, %dx%d" |
| 1017 | displaysurface_create_from(void *display_surface, int w, int h, int bpp, int swap) "surface=%p, %dx%d, bpp %d, bswap %d" |
| 1018 | displaysurface_free(void *display_surface) "surface=%p" |
Gerd Hoffmann | 7c20b4a | 2012-11-13 14:51:41 +0100 | [diff] [blame] | 1019 | displaychangelistener_register(void *dcl, const char *name) "%p [ %s ]" |
| 1020 | displaychangelistener_unregister(void *dcl, const char *name) "%p [ %s ]" |
Alon Levy | 7275001 | 2012-03-11 18:11:27 +0200 | [diff] [blame] | 1021 | ppm_save(const char *filename, void *display_surface) "%s surface=%p" |
Markus Armbruster | 3ba0063 | 2013-06-07 12:59:21 +0200 | [diff] [blame] | 1022 | |
| 1023 | # hw/display/vmware_vga.c |
Gerd Hoffmann | 7a6404c | 2013-03-25 09:53:35 +0100 | [diff] [blame] | 1024 | vmware_value_read(uint32_t index, uint32_t value) "index %d, value 0x%x" |
| 1025 | vmware_value_write(uint32_t index, uint32_t value) "index %d, value 0x%x" |
| 1026 | vmware_palette_read(uint32_t index, uint32_t value) "index %d, value 0x%x" |
| 1027 | vmware_palette_write(uint32_t index, uint32_t value) "index %d, value 0x%x" |
| 1028 | vmware_scratch_read(uint32_t index, uint32_t value) "index %d, value 0x%x" |
| 1029 | vmware_scratch_write(uint32_t index, uint32_t value) "index %d, value 0x%x" |
Gerd Hoffmann | eb2f9b0 | 2013-03-25 11:44:21 +0100 | [diff] [blame] | 1030 | vmware_setmode(uint32_t w, uint32_t h, uint32_t bpp) "%dx%d @ %d bpp" |
Alon Levy | c480bb7 | 2012-03-18 13:46:14 +0100 | [diff] [blame] | 1031 | |
Juan Quintela | 517a13c | 2012-05-21 23:46:44 +0200 | [diff] [blame] | 1032 | # savevm.c |
Juan Quintela | 517a13c | 2012-05-21 23:46:44 +0200 | [diff] [blame] | 1033 | savevm_section_start(void) "" |
| 1034 | savevm_section_end(unsigned int section_id) "section_id %u" |
| 1035 | |
Juan Quintela | 3c12193 | 2012-09-04 13:08:57 +0200 | [diff] [blame] | 1036 | # arch_init.c |
| 1037 | migration_bitmap_sync_start(void) "" |
| 1038 | migration_bitmap_sync_end(uint64_t dirty_pages) "dirty_pages %" PRIu64"" |
Chegu Vinod | 7ca1dfa | 2013-06-24 03:47:39 -0600 | [diff] [blame] | 1039 | migration_throttle(void) "" |
Juan Quintela | 3c12193 | 2012-09-04 13:08:57 +0200 | [diff] [blame] | 1040 | |
Markus Armbruster | 3ba0063 | 2013-06-07 12:59:21 +0200 | [diff] [blame] | 1041 | # hw/display/qxl.c |
Alon Levy | c480bb7 | 2012-03-18 13:46:14 +0100 | [diff] [blame] | 1042 | disable qxl_interface_set_mm_time(int qid, uint32_t mm_time) "%d %d" |
| 1043 | 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] | 1044 | 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] | 1045 | qxl_create_guest_primary_rest(int qid, int32_t stride, uint32_t type, uint32_t flags) "%d %d,%d,%d" |
| 1046 | qxl_destroy_primary(int qid) "%d" |
| 1047 | qxl_enter_vga_mode(int qid) "%d" |
| 1048 | qxl_exit_vga_mode(int qid) "%d" |
| 1049 | qxl_hard_reset(int qid, int64_t loadvm) "%d loadvm=%"PRId64"" |
| 1050 | qxl_interface_async_complete_io(int qid, uint32_t current_async, void *cookie) "%d current=%d cookie=%p" |
| 1051 | qxl_interface_attach_worker(int qid) "%d" |
| 1052 | qxl_interface_get_init_info(int qid) "%d" |
| 1053 | qxl_interface_set_compression_level(int qid, int64_t level) "%d %"PRId64 |
| 1054 | 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]" |
| 1055 | qxl_interface_update_area_complete_rest(int qid, uint32_t num_updated_rects) "%d #=%d" |
| 1056 | qxl_interface_update_area_complete_overflow(int qid, int max) "%d max=%d" |
| 1057 | qxl_interface_update_area_complete_schedule_bh(int qid, uint32_t num_dirty) "%d #dirty=%d" |
| 1058 | qxl_io_destroy_primary_ignored(int qid, const char *mode) "%d %s" |
Alon Levy | a639ab0 | 2012-09-12 16:13:28 +0300 | [diff] [blame] | 1059 | qxl_io_log(int qid, const uint8_t *log_buf) "%d %s" |
Alon Levy | c480bb7 | 2012-03-18 13:46:14 +0100 | [diff] [blame] | 1060 | qxl_io_read_unexpected(int qid) "%d" |
Alon Levy | 917ae08 | 2012-09-12 16:13:26 +0300 | [diff] [blame] | 1061 | qxl_io_unexpected_vga_mode(int qid, uint64_t addr, uint64_t val, const char *desc) "%d 0x%"PRIx64"=%"PRIu64" (%s)" |
Gerd Hoffmann | 18b2038 | 2013-09-05 17:30:05 +0200 | [diff] [blame] | 1062 | qxl_io_write(int qid, const char *mode, uint64_t addr, const char *aname, uint64_t val, unsigned size, int async) "%d %s addr=%"PRIu64 " (%s) val=%"PRIu64" size=%u async=%d" |
Alon Levy | c480bb7 | 2012-03-18 13:46:14 +0100 | [diff] [blame] | 1063 | 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 |
| 1064 | qxl_post_load(int qid, const char *mode) "%d %s" |
| 1065 | qxl_pre_load(int qid) "%d" |
| 1066 | qxl_pre_save(int qid) "%d" |
| 1067 | qxl_reset_surfaces(int qid) "%d" |
| 1068 | qxl_ring_command_check(int qid, const char *mode) "%d %s" |
| 1069 | qxl_ring_command_get(int qid, const char *mode) "%d %s" |
| 1070 | qxl_ring_command_req_notification(int qid) "%d" |
| 1071 | qxl_ring_cursor_check(int qid, const char *mode) "%d %s" |
| 1072 | qxl_ring_cursor_get(int qid, const char *mode) "%d %s" |
| 1073 | qxl_ring_cursor_req_notification(int qid) "%d" |
| 1074 | 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" |
| 1075 | 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]" |
| 1076 | qxl_ring_res_put(int qid, uint32_t free_res) "%d #res=%d" |
| 1077 | 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 " ]" |
| 1078 | qxl_soft_reset(int qid) "%d" |
Alon Levy | c480bb7 | 2012-03-18 13:46:14 +0100 | [diff] [blame] | 1079 | qxl_spice_destroy_surfaces_complete(int qid) "%d" |
| 1080 | qxl_spice_destroy_surfaces(int qid, int async) "%d async=%d" |
| 1081 | qxl_spice_destroy_surface_wait_complete(int qid, uint32_t id) "%d sid=%d" |
| 1082 | qxl_spice_destroy_surface_wait(int qid, uint32_t id, int async) "%d sid=%d async=%d" |
| 1083 | 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] | 1084 | qxl_spice_monitors_config(int qid) "%d" |
Alon Levy | c480bb7 | 2012-03-18 13:46:14 +0100 | [diff] [blame] | 1085 | qxl_spice_loadvm_commands(int qid, void *ext, uint32_t count) "%d ext=%p count=%d" |
| 1086 | qxl_spice_oom(int qid) "%d" |
| 1087 | qxl_spice_reset_cursor(int qid) "%d" |
| 1088 | qxl_spice_reset_image_cache(int qid) "%d" |
| 1089 | qxl_spice_reset_memslots(int qid) "%d" |
| 1090 | 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]" |
| 1091 | qxl_spice_update_area_rest(int qid, uint32_t num_dirty_rects, uint32_t clear_dirty_region) "%d #d=%d clear=%d" |
| 1092 | 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] | 1093 | qxl_send_events(int qid, uint32_t events) "%d %d" |
Alon Levy | 511aefb | 2012-11-01 14:56:00 +0200 | [diff] [blame] | 1094 | qxl_send_events_vm_stopped(int qid, uint32_t events) "%d %d" |
Alon Levy | 917ae08 | 2012-09-12 16:13:26 +0300 | [diff] [blame] | 1095 | qxl_set_guest_bug(int qid) "%d" |
Alon Levy | a639ab0 | 2012-09-12 16:13:28 +0300 | [diff] [blame] | 1096 | qxl_interrupt_client_monitors_config(int qid, int num_heads, void *heads) "%d %d %p" |
| 1097 | qxl_client_monitors_config_unsupported_by_guest(int qid, uint32_t int_mask, void *client_monitors_config) "%d %X %p" |
Alon Levy | e0ac609 | 2013-01-21 14:48:06 +0200 | [diff] [blame] | 1098 | qxl_client_monitors_config_unsupported_by_device(int qid, int revision) "%d revision=%d" |
Alon Levy | a639ab0 | 2012-09-12 16:13:28 +0300 | [diff] [blame] | 1099 | qxl_client_monitors_config_capped(int qid, int requested, int limit) "%d %d %d" |
| 1100 | qxl_client_monitors_config_crc(int qid, unsigned size, uint32_t crc32) "%d %u %u" |
Alon Levy | e0ac609 | 2013-01-21 14:48:06 +0200 | [diff] [blame] | 1101 | qxl_set_client_capabilities_unsupported_by_revision(int qid, int revision) "%d revision=%d" |
Alon Levy | d53291c | 2012-03-18 13:46:15 +0100 | [diff] [blame] | 1102 | |
Markus Armbruster | 3ba0063 | 2013-06-07 12:59:21 +0200 | [diff] [blame] | 1103 | # ui/spice-display.c |
| 1104 | 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" |
| 1105 | qemu_spice_del_memslot(int qid, uint32_t gid, uint32_t slot_id) "%d gid=%u sid=%u" |
| 1106 | qemu_spice_create_primary_surface(int qid, uint32_t sid, void *surface, int async) "%d sid=%u surface=%p async=%d" |
| 1107 | qemu_spice_destroy_primary_surface(int qid, uint32_t sid, int async) "%d sid=%u async=%d" |
| 1108 | qemu_spice_wakeup(uint32_t qid) "%d" |
| 1109 | qemu_spice_create_update(uint32_t left, uint32_t right, uint32_t top, uint32_t bottom) "lr %d -> %d, tb -> %d -> %d" |
| 1110 | |
| 1111 | # hw/display/qxl-render.c |
Alon Levy | d53291c | 2012-03-18 13:46:15 +0100 | [diff] [blame] | 1112 | qxl_render_blit(int32_t stride, int32_t left, int32_t right, int32_t top, int32_t bottom) "stride=%d [%d, %d, %d, %d]" |
| 1113 | 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" |
| 1114 | qxl_render_update_area_done(void *cookie) "%p" |
Alexey Kardashevskiy | a2950fb | 2012-08-07 16:10:36 +0000 | [diff] [blame] | 1115 | |
Markus Armbruster | 3ba0063 | 2013-06-07 12:59:21 +0200 | [diff] [blame] | 1116 | # hw/ppc/spapr_pci.c |
Alexey Kardashevskiy | 0ee2c05 | 2012-08-07 16:10:37 +0000 | [diff] [blame] | 1117 | spapr_pci_msi(const char *msg, uint32_t n, uint32_t ca) "%s (device#%d, cfg=%x)" |
| 1118 | spapr_pci_msi_setup(const char *name, unsigned vector, uint64_t addr) "dev\"%s\" vector %u, addr=%"PRIx64 |
| 1119 | spapr_pci_rtas_ibm_change_msi(unsigned func, unsigned req) "func %u, requested %u" |
| 1120 | spapr_pci_rtas_ibm_query_interrupt_source_number(unsigned ioa, unsigned intr) "queries for #%u, IRQ%u" |
| 1121 | 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] | 1122 | spapr_pci_lsi_set(const char *busname, int pin, uint32_t irq) "%s PIN%d IRQ %u" |
David Gibson | 500efa2 | 2012-11-12 16:46:54 +0000 | [diff] [blame] | 1123 | |
Markus Armbruster | ddd0bd4 | 2013-09-13 10:49:51 +0200 | [diff] [blame] | 1124 | # hw/intc/xics.c |
David Gibson | 500efa2 | 2012-11-12 16:46:54 +0000 | [diff] [blame] | 1125 | xics_icp_check_ipi(int server, uint8_t mfrr) "CPU %d can take IPI mfrr=%#x" |
| 1126 | xics_icp_accept(uint32_t old_xirr, uint32_t new_xirr) "icp_accept: XIRR %#"PRIx32"->%#"PRIx32 |
| 1127 | xics_icp_eoi(int server, uint32_t xirr, uint32_t new_xirr) "icp_eoi: server %d given XIRR %#"PRIx32" new XIRR %#"PRIx32 |
| 1128 | xics_icp_irq(int server, int nr, uint8_t priority) "cpu %d trying to deliver irq %#"PRIx32" priority %#x" |
| 1129 | xics_icp_raise(uint32_t xirr, uint8_t pending_priority) "raising IRQ new XIRR=%#x new pending priority=%#x" |
| 1130 | xics_set_irq_msi(int srcno, int nr) "set_irq_msi: srcno %d [irq %#x]" |
| 1131 | xics_masked_pending(void) "set_irq_msi: masked pending" |
| 1132 | xics_set_irq_lsi(int srcno, int nr) "set_irq_lsi: srcno %d [irq %#x]" |
| 1133 | xics_ics_write_xive(int nr, int srcno, int server, uint8_t priority) "ics_write_xive: irq %#x [src %d] server %#x prio %#x" |
| 1134 | xics_ics_reject(int nr, int srcno) "reject irq %#x [src %d]" |
| 1135 | xics_ics_eoi(int nr) "ics_eoi: irq %#x" |
Paolo Bonzini | e7c033c | 2013-01-21 17:09:40 +0100 | [diff] [blame] | 1136 | |
Alexey Kardashevskiy | 7e47226 | 2013-08-29 18:05:00 +1000 | [diff] [blame] | 1137 | # hw/ppc/spapr_iommu.c |
| 1138 | spapr_iommu_put(uint64_t liobn, uint64_t ioba, uint64_t tce, uint64_t ret) "liobn=%"PRIx64" ioba=0x%"PRIx64" tce=0x%"PRIx64" ret=%"PRId64 |
| 1139 | spapr_iommu_xlate(uint64_t liobn, uint64_t ioba, uint64_t tce, unsigned perm, unsigned pgsize) "liobn=%"PRIx64" 0x%"PRIx64" -> 0x%"PRIx64" perm=%u mask=%x" |
| 1140 | spapr_iommu_new_table(uint64_t liobn, void *tcet, void *table, int fd) "liobn=%"PRIx64" tcet=%p table=%p fd=%d" |
| 1141 | |
Markus Armbruster | 3ba0063 | 2013-06-07 12:59:21 +0200 | [diff] [blame] | 1142 | # util/hbitmap.c |
Paolo Bonzini | e7c033c | 2013-01-21 17:09:40 +0100 | [diff] [blame] | 1143 | hbitmap_iter_skip_words(const void *hb, void *hbi, uint64_t pos, unsigned long cur) "hb %p hbi %p pos %"PRId64" cur 0x%lx" |
| 1144 | hbitmap_reset(void *hb, uint64_t start, uint64_t count, uint64_t sbit, uint64_t ebit) "hb %p items %"PRIu64",%"PRIu64" bits %"PRIu64"..%"PRIu64 |
| 1145 | hbitmap_set(void *hb, uint64_t start, uint64_t count, uint64_t sbit, uint64_t ebit) "hb %p items %"PRIu64",%"PRIu64" bits %"PRIu64"..%"PRIu64 |
Cornelia Huck | 7b18aad | 2013-01-24 02:28:05 +0000 | [diff] [blame] | 1146 | |
| 1147 | # target-s390x/ioinst.c |
| 1148 | ioinst(const char *insn) "IOINST: %s" |
| 1149 | ioinst_sch_id(const char *insn, int cssid, int ssid, int schid) "IOINST: %s (%x.%x.%04x)" |
| 1150 | ioinst_chp_id(const char *insn, int cssid, int chpid) "IOINST: %s (%x.%02x)" |
| 1151 | ioinst_chsc_cmd(uint16_t cmd, uint16_t len) "IOINST: chsc command %04x, len %04x" |
Cornelia Huck | df1fe5b | 2013-01-24 02:28:06 +0000 | [diff] [blame] | 1152 | |
| 1153 | # hw/s390x/css.c |
| 1154 | css_enable_facility(const char *facility) "CSS: enable %s" |
| 1155 | css_crw(uint8_t rsc, uint8_t erc, uint16_t rsid, const char *chained) "CSS: queueing crw: rsc=%x, erc=%x, rsid=%x %s" |
| 1156 | css_chpid_add(uint8_t cssid, uint8_t chpid, uint8_t type) "CSS: add chpid %x.%02x (type %02x)" |
| 1157 | css_new_image(uint8_t cssid, const char *default_cssid) "CSS: add css image %02x %s" |
| 1158 | css_assign_subch(const char *do_assign, uint8_t cssid, uint8_t ssid, uint16_t schid, uint16_t devno) "CSS: %s %x.%x.%04x (devno %04x)" |
| 1159 | css_io_interrupt(int cssid, int ssid, int schid, uint32_t intparm, uint8_t isc, const char *conditional) "CSS: I/O interrupt on sch %x.%x.%04x (intparm %08x, isc %x) %s" |
Cornelia Huck | a5cf2bb | 2013-01-24 06:08:55 +0000 | [diff] [blame] | 1160 | |
| 1161 | # hw/s390x/virtio-ccw.c |
| 1162 | virtio_ccw_interpret_ccw(int cssid, int ssid, int schid, int cmd_code) "VIRTIO-CCW: %x.%x.%04x: interpret command %x" |
| 1163 | virtio_ccw_new_device(int cssid, int ssid, int schid, int devno, const char *devno_mode) "VIRTIO-CCW: add subchannel %x.%x.%04x, devno %04x (%s)" |
Kazuya Saito | c09e5bb | 2013-02-22 17:36:19 +0100 | [diff] [blame] | 1164 | |
| 1165 | # migration.c |
| 1166 | migrate_set_state(int new_state) "new state %d" |
Kazuya Saito | 9c77572 | 2013-03-29 13:27:05 +0900 | [diff] [blame] | 1167 | |
| 1168 | # kvm-all.c |
Alexey Kardashevskiy | 4fe6e9e | 2013-09-04 20:26:25 +1000 | [diff] [blame] | 1169 | kvm_ioctl(int type, void *arg) "type 0x%x, arg %p" |
| 1170 | kvm_vm_ioctl(int type, void *arg) "type 0x%x, arg %p" |
| 1171 | kvm_vcpu_ioctl(int cpu_index, int type, void *arg) "cpu_index %d, type 0x%x, arg %p" |
Kazuya Saito | b76ac80 | 2013-03-29 13:27:52 +0900 | [diff] [blame] | 1172 | kvm_run_exit(int cpu_index, uint32_t reason) "cpu_index %d, reason %d" |
| 1173 | |
Paolo Bonzini | 55d5d04 | 2013-07-28 14:57:22 +0200 | [diff] [blame] | 1174 | # memory.c |
| 1175 | memory_region_ops_read(void *mr, uint64_t addr, uint64_t value, unsigned size) "mr %p addr %#"PRIx64" value %#"PRIx64" size %u" |
| 1176 | memory_region_ops_write(void *mr, uint64_t addr, uint64_t value, unsigned size) "mr %p addr %#"PRIx64" value %#"PRIx64" size %u" |
| 1177 | |
Paolo Bonzini | fa131d9 | 2013-05-10 14:16:39 +0200 | [diff] [blame] | 1178 | # qom/object.c |
| 1179 | object_dynamic_cast_assert(const char *type, const char *target, const char *file, int line, const char *func) "%s->%s (%s:%d:%s)" |
| 1180 | object_class_dynamic_cast_assert(const char *type, const char *target, const char *file, int line, const char *func) "%s->%s (%s:%d:%s)" |
Paul Durrant | 8fbab3b | 2013-07-29 10:58:01 +0000 | [diff] [blame] | 1181 | |
| 1182 | # hw/xen/xen_pvdevice.c |
| 1183 | xen_pv_mmio_read(uint64_t addr) "WARNING: read from Xen PV Device MMIO space (address %"PRIx64")" |
| 1184 | xen_pv_mmio_write(uint64_t addr) "WARNING: write to Xen PV Device MMIO space (address %"PRIx64")" |
Alexey Kardashevskiy | 3bf4dfd | 2013-08-21 14:42:06 +1000 | [diff] [blame] | 1185 | |
| 1186 | # hw/pci/pci_host.c |
| 1187 | pci_cfg_read(const char *dev, unsigned devid, unsigned fnid, unsigned offs, unsigned val) "%s %02u:%u @0x%x -> 0x%x" |
| 1188 | pci_cfg_write(const char *dev, unsigned devid, unsigned fnid, unsigned offs, unsigned val) "%s %02u:%u @0x%x <- 0x%x" |