]>
Commit | Line | Data |
---|---|---|
94a420b1 SH |
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 | # | |
1e2cf2bc | 15 | # [disable] <name>(<type1> <arg1>[, <type2> <arg2>] ...) "<format-string>" |
94a420b1 SH |
16 | # |
17 | # Example: qemu_malloc(size_t size) "size %zu" | |
18 | # | |
1e2cf2bc SH |
19 | # The "disable" keyword will build without the trace event. |
20 | # In case of 'simple' trace backend, it will allow the trace event to be | |
21 | # compiled, but this would be turned off by default. It can be toggled on via | |
22 | # the monitor. | |
23 | # | |
94a420b1 SH |
24 | # The <name> must be a valid as a C function name. |
25 | # | |
26 | # Types should be standard C types. Use void * for pointers because the trace | |
27 | # system may not have the necessary headers included. | |
28 | # | |
29 | # The <format-string> should be a sprintf()-compatible format string. | |
cd245a19 SH |
30 | |
31 | # qemu-malloc.c | |
32 | disable qemu_malloc(size_t size, void *ptr) "size %zu ptr %p" | |
33 | disable qemu_realloc(void *ptr, size_t size, void *newptr) "ptr %p size %zu newptr %p" | |
34 | disable qemu_free(void *ptr) "ptr %p" | |
35 | ||
36 | # osdep.c | |
37 | disable qemu_memalign(size_t alignment, size_t size, void *ptr) "alignment %zu size %zu ptr %p" | |
dda85211 | 38 | disable qemu_vmalloc(size_t size, void *ptr) "size %zu ptr %p" |
cd245a19 | 39 | disable qemu_vfree(void *ptr) "ptr %p" |
6d519a5f | 40 | |
64979a4d SH |
41 | # hw/virtio.c |
42 | disable virtqueue_fill(void *vq, const void *elem, unsigned int len, unsigned int idx) "vq %p elem %p len %u idx %u" | |
43 | disable virtqueue_flush(void *vq, unsigned int count) "vq %p count %u" | |
44 | disable virtqueue_pop(void *vq, void *elem, unsigned int in_num, unsigned int out_num) "vq %p elem %p in_num %u out_num %u" | |
45 | disable virtio_queue_notify(void *vdev, int n, void *vq) "vdev %p n %d vq %p" | |
46 | disable virtio_irq(void *vq) "vq %p" | |
47 | disable virtio_notify(void *vdev, void *vq) "vdev %p vq %p" | |
48 | ||
49e3fdd7 AS |
49 | # hw/virtio-serial-bus.c |
50 | disable virtio_serial_send_control_event(unsigned int port, uint16_t event, uint16_t value) "port %u, event %u, value %u" | |
51 | disable virtio_serial_throttle_port(unsigned int port, bool throttle) "port %u, throttle %d" | |
52 | disable virtio_serial_handle_control_message(uint16_t event, uint16_t value) "event %u, value %u" | |
53 | disable virtio_serial_handle_control_message_port(unsigned int port) "port %u" | |
54 | ||
d02e4fa4 AS |
55 | # hw/virtio-console.c |
56 | disable virtio_console_flush_buf(unsigned int port, size_t len, ssize_t ret) "port %u, in_len %zu, out_len %zd" | |
57 | disable virtio_console_chr_read(unsigned int port, int size) "port %u, size %d" | |
58 | disable virtio_console_chr_event(unsigned int port, int event) "port %u, event %d" | |
59 | ||
6d519a5f SH |
60 | # block.c |
61 | disable multiwrite_cb(void *mcb, int ret) "mcb %p ret %d" | |
62 | disable bdrv_aio_multiwrite(void *mcb, int num_callbacks, int num_reqs) "mcb %p num_callbacks %d num_reqs %d" | |
63 | disable bdrv_aio_multiwrite_earlyfail(void *mcb) "mcb %p" | |
64 | disable bdrv_aio_multiwrite_latefail(void *mcb, int i) "mcb %p i %d" | |
a13aac04 | 65 | disable bdrv_aio_flush(void *bs, void *opaque) "bs %p opaque %p" |
bbf0a440 SH |
66 | disable bdrv_aio_readv(void *bs, int64_t sector_num, int nb_sectors, void *opaque) "bs %p sector_num %"PRId64" nb_sectors %d opaque %p" |
67 | disable bdrv_aio_writev(void *bs, int64_t sector_num, int nb_sectors, void *opaque) "bs %p sector_num %"PRId64" nb_sectors %d opaque %p" | |
b8c6d095 | 68 | disable bdrv_set_locked(void *bs, int locked) "bs %p locked %d" |
6d519a5f SH |
69 | |
70 | # hw/virtio-blk.c | |
71 | disable virtio_blk_req_complete(void *req, int status) "req %p status %d" | |
72 | disable virtio_blk_rw_complete(void *req, int ret) "req %p ret %d" | |
9a85d394 | 73 | disable virtio_blk_handle_write(void *req, uint64_t sector, size_t nsectors) "req %p sector %"PRIu64" nsectors %zu" |
6d519a5f SH |
74 | |
75 | # posix-aio-compat.c | |
9a85d394 | 76 | disable 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" |
ddca9fb2 SH |
77 | disable paio_complete(void *acb, void *opaque, int ret) "acb %p opaque %p ret %d" |
78 | disable paio_cancel(void *acb, void *opaque) "acb %p opaque %p" | |
bd3c9aa5 PS |
79 | |
80 | # ioport.c | |
81 | disable cpu_in(unsigned int addr, unsigned int val) "addr %#x value %u" | |
82 | disable cpu_out(unsigned int addr, unsigned int val) "addr %#x value %u" | |
62dd89de PS |
83 | |
84 | # balloon.c | |
85 | # Since requests are raised via monitor, not many tracepoints are needed. | |
86 | disable balloon_event(void *opaque, unsigned long addr) "opaque %p addr %lu" | |
d8023f31 BS |
87 | |
88 | # hw/apic.c | |
89 | disable apic_local_deliver(int vector, uint32_t lvt) "vector %d delivery mode %d" | |
90 | disable apic_deliver_irq(uint8_t dest, uint8_t dest_mode, uint8_t delivery_mode, uint8_t vector_num, uint8_t polarity, uint8_t trigger_mode) "dest %d dest_mode %d delivery_mode %d vector %d polarity %d trigger_mode %d" | |
91 | disable cpu_set_apic_base(uint64_t val) "%016"PRIx64"" | |
92 | disable cpu_get_apic_base(uint64_t val) "%016"PRIx64"" | |
93 | disable apic_mem_readl(uint64_t addr, uint32_t val) "%"PRIx64" = %08x" | |
94 | disable apic_mem_writel(uint64_t addr, uint32_t val) "%"PRIx64" = %08x" | |
95 | # coalescing | |
96 | disable apic_reset_irq_delivered(int apic_irq_delivered) "old coalescing %d" | |
97 | disable apic_get_irq_delivered(int apic_irq_delivered) "returning coalescing %d" | |
98 | disable apic_set_irq(int apic_irq_delivered) "coalescing %d" | |
97bf4851 BS |
99 | |
100 | # hw/cs4231.c | |
101 | disable cs4231_mem_readl_dreg(uint32_t reg, uint32_t ret) "read dreg %d: 0x%02x" | |
102 | disable cs4231_mem_readl_reg(uint32_t reg, uint32_t ret) "read reg %d: 0x%08x" | |
103 | disable cs4231_mem_writel_reg(uint32_t reg, uint32_t old, uint32_t val) "write reg %d: 0x%08x -> 0x%08x" | |
104 | disable cs4231_mem_writel_dreg(uint32_t reg, uint32_t old, uint32_t val) "write dreg %d: 0x%02x -> 0x%02x" | |
105 | ||
d43ed9ec HP |
106 | # hw/ds1225y.c |
107 | disable nvram_read(uint32_t addr, uint32_t ret) "read addr %d: 0x%02x" | |
108 | disable nvram_write(uint32_t addr, uint32_t old, uint32_t val) "write addr %d: 0x%02x -> 0x%02x" | |
109 | ||
97bf4851 BS |
110 | # hw/eccmemctl.c |
111 | disable ecc_mem_writel_mer(uint32_t val) "Write memory enable %08x" | |
112 | disable ecc_mem_writel_mdr(uint32_t val) "Write memory delay %08x" | |
113 | disable ecc_mem_writel_mfsr(uint32_t val) "Write memory fault status %08x" | |
114 | disable ecc_mem_writel_vcr(uint32_t val) "Write slot configuration %08x" | |
115 | disable ecc_mem_writel_dr(uint32_t val) "Write diagnostic %08x" | |
116 | disable ecc_mem_writel_ecr0(uint32_t val) "Write event count 1 %08x" | |
117 | disable ecc_mem_writel_ecr1(uint32_t val) "Write event count 2 %08x" | |
118 | disable ecc_mem_readl_mer(uint32_t ret) "Read memory enable %08x" | |
119 | disable ecc_mem_readl_mdr(uint32_t ret) "Read memory delay %08x" | |
120 | disable ecc_mem_readl_mfsr(uint32_t ret) "Read memory fault status %08x" | |
121 | disable ecc_mem_readl_vcr(uint32_t ret) "Read slot configuration %08x" | |
122 | disable ecc_mem_readl_mfar0(uint32_t ret) "Read memory fault address 0 %08x" | |
123 | disable ecc_mem_readl_mfar1(uint32_t ret) "Read memory fault address 1 %08x" | |
124 | disable ecc_mem_readl_dr(uint32_t ret) "Read diagnostic %08x" | |
125 | disable ecc_mem_readl_ecr0(uint32_t ret) "Read event count 1 %08x" | |
126 | disable ecc_mem_readl_ecr1(uint32_t ret) "Read event count 2 %08x" | |
127 | disable ecc_diag_mem_writeb(uint64_t addr, uint32_t val) "Write diagnostic %"PRId64" = %02x" | |
128 | disable ecc_diag_mem_readb(uint64_t addr, uint32_t ret) "Read diagnostic %"PRId64"= %02x" | |
129 | ||
130 | # hw/lance.c | |
131 | disable lance_mem_readw(uint64_t addr, uint32_t ret) "addr=%"PRIx64"val=0x%04x" | |
132 | disable lance_mem_writew(uint64_t addr, uint32_t val) "addr=%"PRIx64"val=0x%04x" | |
133 | ||
134 | # hw/slavio_intctl.c | |
135 | disable slavio_intctl_mem_readl(uint32_t cpu, uint64_t addr, uint32_t ret) "read cpu %d reg 0x%"PRIx64" = %x" | |
136 | disable slavio_intctl_mem_writel(uint32_t cpu, uint64_t addr, uint32_t val) "write cpu %d reg 0x%"PRIx64" = %x" | |
137 | disable slavio_intctl_mem_writel_clear(uint32_t cpu, uint32_t val, uint32_t intreg_pending) "Cleared cpu %d irq mask %x, curmask %x" | |
138 | disable slavio_intctl_mem_writel_set(uint32_t cpu, uint32_t val, uint32_t intreg_pending) "Set cpu %d irq mask %x, curmask %x" | |
139 | disable slavio_intctlm_mem_readl(uint64_t addr, uint32_t ret) "read system reg 0x%"PRIx64" = %x" | |
140 | disable slavio_intctlm_mem_writel(uint64_t addr, uint32_t val) "write system reg 0x%"PRIx64" = %x" | |
141 | disable slavio_intctlm_mem_writel_enable(uint32_t val, uint32_t intregm_disabled) "Enabled master irq mask %x, curmask %x" | |
142 | disable slavio_intctlm_mem_writel_disable(uint32_t val, uint32_t intregm_disabled) "Disabled master irq mask %x, curmask %x" | |
143 | disable slavio_intctlm_mem_writel_target(uint32_t cpu) "Set master irq cpu %d" | |
144 | disable slavio_check_interrupts(uint32_t pending, uint32_t intregm_disabled) "pending %x disabled %x" | |
145 | disable slavio_set_irq(uint32_t target_cpu, int irq, uint32_t pil, int level) "Set cpu %d irq %d -> pil %d level %d" | |
146 | disable slavio_set_timer_irq_cpu(int cpu, int level) "Set cpu %d local timer level %d" | |
147 | ||
148 | # hw/slavio_misc.c | |
149 | disable slavio_misc_update_irq_raise(void) "Raise IRQ" | |
150 | disable slavio_misc_update_irq_lower(void) "Lower IRQ" | |
151 | disable slavio_set_power_fail(int power_failing, uint8_t config) "Power fail: %d, config: %d" | |
152 | disable slavio_cfg_mem_writeb(uint32_t val) "Write config %02x" | |
153 | disable slavio_cfg_mem_readb(uint32_t ret) "Read config %02x" | |
154 | disable slavio_diag_mem_writeb(uint32_t val) "Write diag %02x" | |
155 | disable slavio_diag_mem_readb(uint32_t ret) "Read diag %02x" | |
156 | disable slavio_mdm_mem_writeb(uint32_t val) "Write modem control %02x" | |
157 | disable slavio_mdm_mem_readb(uint32_t ret) "Read modem control %02x" | |
158 | disable slavio_aux1_mem_writeb(uint32_t val) "Write aux1 %02x" | |
159 | disable slavio_aux1_mem_readb(uint32_t ret) "Read aux1 %02x" | |
160 | disable slavio_aux2_mem_writeb(uint32_t val) "Write aux2 %02x" | |
161 | disable slavio_aux2_mem_readb(uint32_t ret) "Read aux2 %02x" | |
162 | disable apc_mem_writeb(uint32_t val) "Write power management %02x" | |
163 | disable apc_mem_readb(uint32_t ret) "Read power management %02x" | |
164 | disable slavio_sysctrl_mem_writel(uint32_t val) "Write system control %08x" | |
165 | disable slavio_sysctrl_mem_readl(uint32_t ret) "Read system control %08x" | |
166 | disable slavio_led_mem_writew(uint32_t val) "Write diagnostic LED %04x" | |
167 | disable slavio_led_mem_readw(uint32_t ret) "Read diagnostic LED %04x" | |
168 | ||
169 | # hw/slavio_timer.c | |
170 | disable slavio_timer_get_out(uint64_t limit, uint32_t counthigh, uint32_t count) "limit %"PRIx64" count %x%08x" | |
171 | disable slavio_timer_irq(uint32_t counthigh, uint32_t count) "callback: count %x%08x" | |
172 | disable slavio_timer_mem_readl_invalid(uint64_t addr) "invalid read address %"PRIx64"" | |
173 | disable slavio_timer_mem_readl(uint64_t addr, uint32_t ret) "read %"PRIx64" = %08x" | |
174 | disable slavio_timer_mem_writel(uint64_t addr, uint32_t val) "write %"PRIx64" = %08x" | |
175 | disable slavio_timer_mem_writel_limit(unsigned int timer_index, uint64_t count) "processor %d user timer set to %016"PRIx64"" | |
176 | disable slavio_timer_mem_writel_counter_invalid(void) "not user timer" | |
177 | disable slavio_timer_mem_writel_status_start(unsigned int timer_index) "processor %d user timer started" | |
178 | disable slavio_timer_mem_writel_status_stop(unsigned int timer_index) "processor %d user timer stopped" | |
179 | disable slavio_timer_mem_writel_mode_user(unsigned int timer_index) "processor %d changed from counter to user timer" | |
180 | disable slavio_timer_mem_writel_mode_counter(unsigned int timer_index) "processor %d changed from user timer to counter" | |
181 | disable slavio_timer_mem_writel_mode_invalid(void) "not system timer" | |
182 | disable slavio_timer_mem_writel_invalid(uint64_t addr) "invalid write address %"PRIx64"" | |
183 | ||
184 | # hw/sparc32_dma.c | |
185 | disable ledma_memory_read(uint64_t addr) "DMA read addr 0x%"PRIx64"" | |
186 | disable ledma_memory_write(uint64_t addr) "DMA write addr 0x%"PRIx64"" | |
187 | disable sparc32_dma_set_irq_raise(void) "Raise IRQ" | |
188 | disable sparc32_dma_set_irq_lower(void) "Lower IRQ" | |
189 | disable espdma_memory_read(uint32_t addr) "DMA read addr 0x%08x" | |
190 | disable espdma_memory_write(uint32_t addr) "DMA write addr 0x%08x" | |
191 | disable sparc32_dma_mem_readl(uint64_t addr, uint32_t ret) "read dmareg %"PRIx64": 0x%08x" | |
192 | disable sparc32_dma_mem_writel(uint64_t addr, uint32_t old, uint32_t val) "write dmareg %"PRIx64": 0x%08x -> 0x%08x" | |
193 | disable sparc32_dma_enable_raise(void) "Raise DMA enable" | |
194 | disable sparc32_dma_enable_lower(void) "Lower DMA enable" | |
195 | ||
196 | # hw/sun4m.c | |
197 | disable sun4m_cpu_interrupt(unsigned int level) "Set CPU IRQ %d" | |
198 | disable sun4m_cpu_reset_interrupt(unsigned int level) "Reset CPU IRQ %d" | |
199 | disable sun4m_cpu_set_irq_raise(int level) "Raise CPU IRQ %d" | |
200 | disable sun4m_cpu_set_irq_lower(int level) "Lower CPU IRQ %d" | |
201 | ||
202 | # hw/sun4m_iommu.c | |
203 | disable sun4m_iommu_mem_readl(uint64_t addr, uint32_t ret) "read reg[%"PRIx64"] = %x" | |
204 | disable sun4m_iommu_mem_writel(uint64_t addr, uint32_t val) "write reg[%"PRIx64"] = %x" | |
205 | disable sun4m_iommu_mem_writel_ctrl(uint64_t iostart) "iostart = %"PRIx64"" | |
206 | disable sun4m_iommu_mem_writel_tlbflush(uint32_t val) "tlb flush %x" | |
207 | disable sun4m_iommu_mem_writel_pgflush(uint32_t val) "page flush %x" | |
208 | disable sun4m_iommu_page_get_flags(uint64_t pa, uint64_t iopte, uint32_t ret) "get flags addr %"PRIx64" => pte %"PRIx64", *pte = %x" | |
209 | disable sun4m_iommu_translate_pa(uint64_t addr, uint64_t pa, uint32_t iopte) "xlate dva %"PRIx64" => pa %"PRIx64" iopte = %x" | |
210 | disable sun4m_iommu_bad_addr(uint64_t addr) "bad addr %"PRIx64"" | |
94b0b5ff | 211 | |
439a97cc GH |
212 | # hw/usb-ehci.c |
213 | disable usb_ehci_reset(void) "=== RESET ===" | |
214 | disable usb_ehci_mmio_readl(uint32_t addr, const char *str, uint32_t val) "rd mmio %04x [%s] = %x" | |
c4f8e211 GH |
215 | disable usb_ehci_mmio_writel(uint32_t addr, const char *str, uint32_t val) "wr mmio %04x [%s] = %x" |
216 | disable usb_ehci_mmio_change(uint32_t addr, const char *str, uint32_t new, uint32_t old) "ch mmio %04x [%s] = %x (old: %x)" | |
439a97cc | 217 | disable usb_ehci_usbsts(const char *sts, int state) "usbsts %s %d" |
26d53979 | 218 | disable usb_ehci_state(const char *schedule, const char *state) "%s schedule %s" |
2e97f03e | 219 | disable 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" |
025b168c GH |
220 | disable 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" |
221 | disable 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" | |
2e97f03e | 222 | disable usb_ehci_qtd_ptrs(void *q, uint32_t addr, uint32_t nxt, uint32_t altnext) "q %p - QTD @ %08x: next %08x altnext %08x" |
025b168c GH |
223 | disable 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" |
224 | disable 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" | |
2e97f03e | 225 | disable 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" |
dcbd0b5c GH |
226 | disable usb_ehci_port_attach(uint32_t port, const char *device) "attach port #%d - %s" |
227 | disable usb_ehci_port_detach(uint32_t port) "detach port #%d" | |
228 | disable usb_ehci_port_reset(uint32_t port, int enable) "reset port #%d - %d" | |
f2c88dc1 | 229 | disable usb_ehci_data(int rw, uint32_t cpage, uint32_t offset, uint32_t addr, uint32_t len, uint32_t bufpos) "write %d, cpage %d, offset 0x%03x, addr 0x%08x, len %d, bufpos %d" |
8ac6d699 | 230 | disable usb_ehci_queue_action(void *q, const char *action) "q %p: %s" |
439a97cc | 231 | |
37fb59d3 GH |
232 | # hw/usb-desc.c |
233 | disable usb_desc_device(int addr, int len, int ret) "dev %d query device, len %d, ret %d" | |
25620cba | 234 | disable usb_desc_device_qualifier(int addr, int len, int ret) "dev %d query device qualifier, len %d, ret %d" |
37fb59d3 | 235 | disable usb_desc_config(int addr, int index, int len, int ret) "dev %d query config %d, len %d, ret %d" |
25620cba | 236 | disable usb_desc_other_speed_config(int addr, int index, int len, int ret) "dev %d query config %d, len %d, ret %d" |
37fb59d3 | 237 | disable usb_desc_string(int addr, int index, int len, int ret) "dev %d query string %d, len %d, ret %d" |
41c6abbd | 238 | disable usb_set_addr(int addr) "dev %d" |
a980a065 | 239 | disable usb_set_config(int addr, int config, int ret) "dev %d, config %d, ret %d" |
ed5a83dd GH |
240 | disable usb_clear_device_feature(int addr, int feature, int ret) "dev %d, feature %d, ret %d" |
241 | disable usb_set_device_feature(int addr, int feature, int ret) "dev %d, feature %d, ret %d" | |
37fb59d3 | 242 | |
5138efec PB |
243 | # hw/scsi-bus.c |
244 | disable scsi_req_alloc(int target, int lun, int tag) "target %d lun %d tag %d" | |
ab9adc88 | 245 | disable scsi_req_data(int target, int lun, int tag, int len) "target %d lun %d tag %d len %d" |
5138efec | 246 | disable scsi_req_dequeue(int target, int lun, int tag) "target %d lun %d tag %d" |
ad3376cc | 247 | disable scsi_req_continue(int target, int lun, int tag) "target %d lun %d tag %d" |
d800040f PB |
248 | disable 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" |
249 | disable 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"" | |
5138efec PB |
250 | disable scsi_req_parse_bad(int target, int lun, int tag, int cmd) "target %d lun %d tag %d command %d" |
251 | ||
94b0b5ff SH |
252 | # vl.c |
253 | disable vm_state_notify(int running, int reason) "running %d reason %d" | |
298800ca SH |
254 | |
255 | # block/qed-l2-cache.c | |
256 | disable qed_alloc_l2_cache_entry(void *l2_cache, void *entry) "l2_cache %p entry %p" | |
257 | disable qed_unref_l2_cache_entry(void *entry, int ref) "entry %p ref %d" | |
258 | disable qed_find_l2_cache_entry(void *l2_cache, void *entry, uint64_t offset, int ref) "l2_cache %p entry %p offset %"PRIu64" ref %d" | |
259 | ||
260 | # block/qed-table.c | |
261 | disable qed_read_table(void *s, uint64_t offset, void *table) "s %p offset %"PRIu64" table %p" | |
262 | disable qed_read_table_cb(void *s, void *table, int ret) "s %p table %p ret %d" | |
263 | disable 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" | |
264 | disable qed_write_table_cb(void *s, void *table, int flush, int ret) "s %p table %p flush %d ret %d" | |
eabba580 SH |
265 | |
266 | # block/qed.c | |
6f321e93 SH |
267 | disable qed_need_check_timer_cb(void *s) "s %p" |
268 | disable qed_start_need_check_timer(void *s) "s %p" | |
269 | disable qed_cancel_need_check_timer(void *s) "s %p" | |
eabba580 SH |
270 | disable qed_aio_complete(void *s, void *acb, int ret) "s %p acb %p ret %d" |
271 | disable qed_aio_setup(void *s, void *acb, int64_t sector_num, int nb_sectors, void *opaque, int is_write) "s %p acb %p sector_num %"PRId64" nb_sectors %d opaque %p is_write %d" | |
272 | disable qed_aio_next_io(void *s, void *acb, int ret, uint64_t cur_pos) "s %p acb %p ret %d cur_pos %"PRIu64"" | |
273 | disable 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" | |
274 | disable 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" | |
275 | disable 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"" | |
276 | disable 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"" | |
277 | disable 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" | |
0f3a4a01 FC |
278 | |
279 | # hw/grlib_gptimer.c | |
280 | disable grlib_gptimer_enable(int id, uint32_t count) "timer:%d set count 0x%x and run" | |
281 | disable grlib_gptimer_disabled(int id, uint32_t config) "timer:%d Timer disable config 0x%x" | |
282 | disable grlib_gptimer_restart(int id, uint32_t reload) "timer:%d reload val: 0x%x" | |
283 | disable grlib_gptimer_set_scaler(uint32_t scaler, uint32_t freq) "scaler:0x%x freq: 0x%x" | |
284 | disable grlib_gptimer_hit(int id) "timer:%d HIT" | |
b4548fcc SH |
285 | disable grlib_gptimer_readl(int id, uint64_t addr, uint32_t val) "timer:%d addr 0x%"PRIx64" 0x%x" |
286 | disable grlib_gptimer_writel(int id, uint64_t addr, uint32_t val) "timer:%d addr 0x%"PRIx64" 0x%x" | |
3f10bcbb FC |
287 | |
288 | # hw/grlib_irqmp.c | |
289 | disable 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\n" | |
290 | disable grlib_irqmp_ack(int intno) "interrupt:%d" | |
291 | disable grlib_irqmp_set_irq(int irq) "Raise CPU IRQ %d" | |
b4548fcc SH |
292 | disable grlib_irqmp_readl_unknown(uint64_t addr) "addr 0x%"PRIx64"" |
293 | disable grlib_irqmp_writel_unknown(uint64_t addr, uint32_t value) "addr 0x%"PRIx64" value 0x%x" | |
8b1e1320 FC |
294 | |
295 | # hw/grlib_apbuart.c | |
296 | disable grlib_apbuart_event(int event) "event:%d" | |
b4548fcc | 297 | disable grlib_apbuart_writel_unknown(uint64_t addr, uint32_t value) "addr 0x%"PRIx64" value 0x%x" |
b04d9890 FC |
298 | |
299 | # hw/leon3.c | |
300 | disable leon3_set_irq(int intno) "Set CPU IRQ %d" | |
301 | disable leon3_reset_irq(int intno) "Reset CPU IRQ %d" | |
9363ee31 | 302 | |
cbcc6336 | 303 | # spice-qemu-char.c |
2b287af6 L |
304 | disable spice_vmc_write(ssize_t out, int len) "spice wrottn %zd of requested %d" |
305 | disable spice_vmc_read(int bytes, int len) "spice read %d of requested %d" | |
cbcc6336 AL |
306 | disable spice_vmc_register_interface(void *scd) "spice vmc registered interface %p" |
307 | disable spice_vmc_unregister_interface(void *scd) "spice vmc unregistered interface %p" | |
4ef66fa7 MW |
308 | |
309 | # hw/lm32_pic.c | |
310 | disable lm32_pic_raise_irq(void) "Raise CPU interrupt" | |
311 | disable lm32_pic_lower_irq(void) "Lower CPU interrupt" | |
312 | disable lm32_pic_interrupt(int irq, int level) "Set IRQ%d %d" | |
313 | disable lm32_pic_set_im(uint32_t im) "im 0x%08x" | |
314 | disable lm32_pic_set_ip(uint32_t ip) "ip 0x%08x" | |
315 | disable lm32_pic_get_im(uint32_t im) "im 0x%08x" | |
316 | disable lm32_pic_get_ip(uint32_t ip) "ip 0x%08x" | |
15d7dc4f MW |
317 | |
318 | # hw/lm32_juart.c | |
319 | disable lm32_juart_get_jtx(uint32_t value) "jtx 0x%08x" | |
320 | disable lm32_juart_set_jtx(uint32_t value) "jtx 0x%08x" | |
321 | disable lm32_juart_get_jrx(uint32_t value) "jrx 0x%08x" | |
322 | disable lm32_juart_set_jrx(uint32_t value) "jrx 0x%08x" | |
ea7924dc MW |
323 | |
324 | # hw/lm32_timer.c | |
325 | disable lm32_timer_memory_write(uint32_t addr, uint32_t value) "addr 0x%08x value 0x%08x" | |
326 | disable lm32_timer_memory_read(uint32_t addr, uint32_t value) "addr 0x%08x value 0x%08x" | |
327 | disable lm32_timer_hit(void) "timer hit" | |
328 | disable lm32_timer_irq_state(int level) "irq state %d" | |
770ae571 MW |
329 | |
330 | # hw/lm32_uart.c | |
331 | disable lm32_uart_memory_write(uint32_t addr, uint32_t value) "addr 0x%08x value 0x%08x" | |
332 | disable lm32_uart_memory_read(uint32_t addr, uint32_t value) "addr 0x%08x value 0x%08x" | |
333 | disable lm32_uart_irq_state(int level) "irq state %d" | |
f19410ca MW |
334 | |
335 | # hw/lm32_sys.c | |
336 | disable lm32_sys_memory_write(uint32_t addr, uint32_t value) "addr 0x%08x value 0x%08x" | |
25a8bb96 MW |
337 | |
338 | # hw/milkymist-ac97.c | |
339 | disable milkymist_ac97_memory_read(uint32_t addr, uint32_t value) "addr %08x value %08x" | |
340 | disable milkymist_ac97_memory_write(uint32_t addr, uint32_t value) "addr %08x value %08x" | |
341 | disable milkymist_ac97_pulse_irq_crrequest(void) "Pulse IRQ CR request" | |
342 | disable milkymist_ac97_pulse_irq_crreply(void) "Pulse IRQ CR reply" | |
343 | disable milkymist_ac97_pulse_irq_dmaw(void) "Pulse IRQ DMA write" | |
344 | disable milkymist_ac97_pulse_irq_dmar(void) "Pulse IRQ DMA read" | |
345 | disable milkymist_ac97_in_cb(int avail, uint32_t remaining) "avail %d remaining %u" | |
346 | disable milkymist_ac97_in_cb_transferred(int transferred) "transferred %d" | |
347 | disable milkymist_ac97_out_cb(int free, uint32_t remaining) "free %d remaining %u" | |
348 | disable milkymist_ac97_out_cb_transferred(int transferred) "transferred %d" | |
e4dc6d2c MW |
349 | |
350 | # hw/milkymist-hpdmc.c | |
b4e37d98 MW |
351 | disable milkymist_hpdmc_memory_read(uint32_t addr, uint32_t value) "addr=%08x value=%08x" |
352 | disable milkymist_hpdmc_memory_write(uint32_t addr, uint32_t value) "addr=%08x value=%08x" | |
353 | ||
354 | # hw/milkymist-memcard.c | |
355 | disable milkymist_memcard_memory_read(uint32_t addr, uint32_t value) "addr %08x value %08x" | |
356 | disable milkymist_memcard_memory_write(uint32_t addr, uint32_t value) "addr %08x value %08x" | |
07424544 | 357 | |
57aa265d MW |
358 | # hw/milkymist-minimac2.c |
359 | disable milkymist_minimac2_memory_read(uint32_t addr, uint32_t value) "addr %08x value %08x" | |
360 | disable milkymist_minimac2_memory_write(uint32_t addr, uint32_t value) "addr %08x value %08x" | |
361 | disable milkymist_minimac2_mdio_write(uint8_t phy_addr, uint8_t addr, uint16_t value) "phy_addr %02x addr %02x value %04x" | |
362 | disable milkymist_minimac2_mdio_read(uint8_t phy_addr, uint8_t addr, uint16_t value) "phy_addr %02x addr %02x value %04x" | |
363 | disable milkymist_minimac2_tx_frame(uint32_t length) "length %u" | |
364 | disable milkymist_minimac2_rx_frame(const void *buf, uint32_t length) "buf %p length %u" | |
365 | disable milkymist_minimac2_drop_rx_frame(const void *buf) "buf %p" | |
366 | disable milkymist_minimac2_rx_transfer(const void *buf, uint32_t length) "buf %p length %d" | |
367 | disable milkymist_minimac2_raise_irq_rx(void) "Raise IRQ RX" | |
368 | disable milkymist_minimac2_lower_irq_rx(void) "Lower IRQ RX" | |
369 | disable milkymist_minimac2_pulse_irq_tx(void) "Pulse IRQ TX" | |
5ee18b9c MW |
370 | |
371 | # hw/milkymist-pfpu.c | |
372 | disable milkymist_pfpu_memory_read(uint32_t addr, uint32_t value) "addr %08x value %08x" | |
373 | disable milkymist_pfpu_memory_write(uint32_t addr, uint32_t value) "addr %08x value %08x" | |
374 | disable milkymist_pfpu_vectout(uint32_t a, uint32_t b, uint32_t dma_ptr) "a %08x b %08x dma_ptr %08x" | |
375 | disable milkymist_pfpu_pulse_irq(void) "Pulse IRQ" | |
87a381ec MW |
376 | |
377 | # hw/milkymist-softusb.c | |
378 | disable milkymist_softusb_memory_read(uint32_t addr, uint32_t value) "addr %08x value %08x" | |
379 | disable milkymist_softusb_memory_write(uint32_t addr, uint32_t value) "addr %08x value %08x" | |
380 | disable milkymist_softusb_mevt(uint8_t m) "m %d" | |
381 | disable milkymist_softusb_kevt(uint8_t m) "m %d" | |
382 | disable milkymist_softusb_mouse_event(int dx, int dy, int dz, int bs) "dx %d dy %d dz %d bs %02x" | |
383 | disable milkymist_softusb_pulse_irq(void) "Pulse IRQ" | |
96832424 MW |
384 | |
385 | # hw/milkymist-sysctl.c | |
386 | disable milkymist_sysctl_memory_read(uint32_t addr, uint32_t value) "addr %08x value %08x" | |
387 | disable milkymist_sysctl_memory_write(uint32_t addr, uint32_t value) "addr %08x value %08x" | |
388 | disable milkymist_sysctl_icap_write(uint32_t value) "value %08x" | |
389 | disable milkymist_sysctl_start_timer0(void) "Start timer0" | |
390 | disable milkymist_sysctl_stop_timer0(void) "Stop timer0" | |
391 | disable milkymist_sysctl_start_timer1(void) "Start timer1" | |
392 | disable milkymist_sysctl_stop_timer1(void) "Stop timer1" | |
393 | disable milkymist_sysctl_pulse_irq_timer0(void) "Pulse IRQ Timer0" | |
394 | disable milkymist_sysctl_pulse_irq_timer1(void) "Pulse IRQ Timer1" | |
0670dadd MW |
395 | |
396 | # hw/milkymist-tmu2.c | |
397 | disable milkymist_tmu2_memory_read(uint32_t addr, uint32_t value) "addr %08x value %08x" | |
398 | disable milkymist_tmu2_memory_write(uint32_t addr, uint32_t value) "addr %08x value %08x" | |
399 | disable milkymist_tmu2_start(void) "Start TMU" | |
400 | disable milkymist_tmu2_pulse_irq(void) "Pulse IRQ" | |
883de16b MW |
401 | |
402 | # hw/milkymist-uart.c | |
403 | disable milkymist_uart_memory_read(uint32_t addr, uint32_t value) "addr %08x value %08x" | |
404 | disable milkymist_uart_memory_write(uint32_t addr, uint32_t value) "addr %08x value %08x" | |
405 | disable milkymist_uart_pulse_irq_rx(void) "Pulse IRQ RX" | |
406 | disable milkymist_uart_pulse_irq_tx(void) "Pulse IRQ TX" | |
d23948b1 MW |
407 | |
408 | # hw/milkymist-vgafb.c | |
409 | disable milkymist_vgafb_memory_read(uint32_t addr, uint32_t value) "addr %08x value %08x" | |
410 | disable milkymist_vgafb_memory_write(uint32_t addr, uint32_t value) "addr %08x value %08x" | |
432d268c JN |
411 | |
412 | # xen-all.c | |
413 | disable xen_ram_alloc(unsigned long ram_addr, unsigned long size) "requested: %#lx, size %#lx" | |
b4dd7802 | 414 | disable xen_client_set_memory(uint64_t start_addr, unsigned long size, unsigned long phys_offset, bool log_dirty) "%#"PRIx64" size %#lx, offset %#lx, log_dirty %i" |
432d268c JN |
415 | |
416 | # xen-mapcache.c | |
e41d7c69 JK |
417 | disable xen_map_cache(uint64_t phys_addr) "want %#"PRIx64"" |
418 | disable xen_remap_bucket(uint64_t index) "index %#"PRIx64"" | |
419 | disable xen_map_cache_return(void* ptr) "%p" | |
432d268c JN |
420 | disable xen_map_block(uint64_t phys_addr, uint64_t size) "%#"PRIx64", size %#"PRIx64"" |
421 | disable xen_unmap_block(void* addr, unsigned long size) "%p, size %#lx" | |
050a0ddf AP |
422 | |
423 | # exec.c | |
424 | disable qemu_put_ram_ptr(void* addr) "%p" | |
01195b73 SS |
425 | |
426 | # hw/xen_platform.c | |
427 | disable xen_platform_log(char *s) "xen platform: %s" |