]>
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 | ||
6d519a5f SH |
49 | # block.c |
50 | disable multiwrite_cb(void *mcb, int ret) "mcb %p ret %d" | |
51 | disable bdrv_aio_multiwrite(void *mcb, int num_callbacks, int num_reqs) "mcb %p num_callbacks %d num_reqs %d" | |
52 | disable bdrv_aio_multiwrite_earlyfail(void *mcb) "mcb %p" | |
53 | disable bdrv_aio_multiwrite_latefail(void *mcb, int i) "mcb %p i %d" | |
a13aac04 | 54 | disable bdrv_aio_flush(void *bs, void *opaque) "bs %p opaque %p" |
bbf0a440 SH |
55 | 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" |
56 | 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 | 57 | disable bdrv_set_locked(void *bs, int locked) "bs %p locked %d" |
6d519a5f SH |
58 | |
59 | # hw/virtio-blk.c | |
60 | disable virtio_blk_req_complete(void *req, int status) "req %p status %d" | |
61 | disable virtio_blk_rw_complete(void *req, int ret) "req %p ret %d" | |
9a85d394 | 62 | disable virtio_blk_handle_write(void *req, uint64_t sector, size_t nsectors) "req %p sector %"PRIu64" nsectors %zu" |
6d519a5f SH |
63 | |
64 | # posix-aio-compat.c | |
9a85d394 | 65 | 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 |
66 | disable paio_complete(void *acb, void *opaque, int ret) "acb %p opaque %p ret %d" |
67 | disable paio_cancel(void *acb, void *opaque) "acb %p opaque %p" | |
bd3c9aa5 PS |
68 | |
69 | # ioport.c | |
70 | disable cpu_in(unsigned int addr, unsigned int val) "addr %#x value %u" | |
71 | disable cpu_out(unsigned int addr, unsigned int val) "addr %#x value %u" | |
62dd89de PS |
72 | |
73 | # balloon.c | |
74 | # Since requests are raised via monitor, not many tracepoints are needed. | |
75 | disable balloon_event(void *opaque, unsigned long addr) "opaque %p addr %lu" | |
d8023f31 BS |
76 | |
77 | # hw/apic.c | |
78 | disable apic_local_deliver(int vector, uint32_t lvt) "vector %d delivery mode %d" | |
79 | 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" | |
80 | disable cpu_set_apic_base(uint64_t val) "%016"PRIx64"" | |
81 | disable cpu_get_apic_base(uint64_t val) "%016"PRIx64"" | |
82 | disable apic_mem_readl(uint64_t addr, uint32_t val) "%"PRIx64" = %08x" | |
83 | disable apic_mem_writel(uint64_t addr, uint32_t val) "%"PRIx64" = %08x" | |
84 | # coalescing | |
85 | disable apic_reset_irq_delivered(int apic_irq_delivered) "old coalescing %d" | |
86 | disable apic_get_irq_delivered(int apic_irq_delivered) "returning coalescing %d" | |
87 | disable apic_set_irq(int apic_irq_delivered) "coalescing %d" | |
97bf4851 BS |
88 | |
89 | # hw/cs4231.c | |
90 | disable cs4231_mem_readl_dreg(uint32_t reg, uint32_t ret) "read dreg %d: 0x%02x" | |
91 | disable cs4231_mem_readl_reg(uint32_t reg, uint32_t ret) "read reg %d: 0x%08x" | |
92 | disable cs4231_mem_writel_reg(uint32_t reg, uint32_t old, uint32_t val) "write reg %d: 0x%08x -> 0x%08x" | |
93 | disable cs4231_mem_writel_dreg(uint32_t reg, uint32_t old, uint32_t val) "write dreg %d: 0x%02x -> 0x%02x" | |
94 | ||
95 | # hw/eccmemctl.c | |
96 | disable ecc_mem_writel_mer(uint32_t val) "Write memory enable %08x" | |
97 | disable ecc_mem_writel_mdr(uint32_t val) "Write memory delay %08x" | |
98 | disable ecc_mem_writel_mfsr(uint32_t val) "Write memory fault status %08x" | |
99 | disable ecc_mem_writel_vcr(uint32_t val) "Write slot configuration %08x" | |
100 | disable ecc_mem_writel_dr(uint32_t val) "Write diagnostic %08x" | |
101 | disable ecc_mem_writel_ecr0(uint32_t val) "Write event count 1 %08x" | |
102 | disable ecc_mem_writel_ecr1(uint32_t val) "Write event count 2 %08x" | |
103 | disable ecc_mem_readl_mer(uint32_t ret) "Read memory enable %08x" | |
104 | disable ecc_mem_readl_mdr(uint32_t ret) "Read memory delay %08x" | |
105 | disable ecc_mem_readl_mfsr(uint32_t ret) "Read memory fault status %08x" | |
106 | disable ecc_mem_readl_vcr(uint32_t ret) "Read slot configuration %08x" | |
107 | disable ecc_mem_readl_mfar0(uint32_t ret) "Read memory fault address 0 %08x" | |
108 | disable ecc_mem_readl_mfar1(uint32_t ret) "Read memory fault address 1 %08x" | |
109 | disable ecc_mem_readl_dr(uint32_t ret) "Read diagnostic %08x" | |
110 | disable ecc_mem_readl_ecr0(uint32_t ret) "Read event count 1 %08x" | |
111 | disable ecc_mem_readl_ecr1(uint32_t ret) "Read event count 2 %08x" | |
112 | disable ecc_diag_mem_writeb(uint64_t addr, uint32_t val) "Write diagnostic %"PRId64" = %02x" | |
113 | disable ecc_diag_mem_readb(uint64_t addr, uint32_t ret) "Read diagnostic %"PRId64"= %02x" | |
114 | ||
115 | # hw/lance.c | |
116 | disable lance_mem_readw(uint64_t addr, uint32_t ret) "addr=%"PRIx64"val=0x%04x" | |
117 | disable lance_mem_writew(uint64_t addr, uint32_t val) "addr=%"PRIx64"val=0x%04x" | |
118 | ||
119 | # hw/slavio_intctl.c | |
120 | disable slavio_intctl_mem_readl(uint32_t cpu, uint64_t addr, uint32_t ret) "read cpu %d reg 0x%"PRIx64" = %x" | |
121 | disable slavio_intctl_mem_writel(uint32_t cpu, uint64_t addr, uint32_t val) "write cpu %d reg 0x%"PRIx64" = %x" | |
122 | disable slavio_intctl_mem_writel_clear(uint32_t cpu, uint32_t val, uint32_t intreg_pending) "Cleared cpu %d irq mask %x, curmask %x" | |
123 | disable slavio_intctl_mem_writel_set(uint32_t cpu, uint32_t val, uint32_t intreg_pending) "Set cpu %d irq mask %x, curmask %x" | |
124 | disable slavio_intctlm_mem_readl(uint64_t addr, uint32_t ret) "read system reg 0x%"PRIx64" = %x" | |
125 | disable slavio_intctlm_mem_writel(uint64_t addr, uint32_t val) "write system reg 0x%"PRIx64" = %x" | |
126 | disable slavio_intctlm_mem_writel_enable(uint32_t val, uint32_t intregm_disabled) "Enabled master irq mask %x, curmask %x" | |
127 | disable slavio_intctlm_mem_writel_disable(uint32_t val, uint32_t intregm_disabled) "Disabled master irq mask %x, curmask %x" | |
128 | disable slavio_intctlm_mem_writel_target(uint32_t cpu) "Set master irq cpu %d" | |
129 | disable slavio_check_interrupts(uint32_t pending, uint32_t intregm_disabled) "pending %x disabled %x" | |
130 | disable slavio_set_irq(uint32_t target_cpu, int irq, uint32_t pil, int level) "Set cpu %d irq %d -> pil %d level %d" | |
131 | disable slavio_set_timer_irq_cpu(int cpu, int level) "Set cpu %d local timer level %d" | |
132 | ||
133 | # hw/slavio_misc.c | |
134 | disable slavio_misc_update_irq_raise(void) "Raise IRQ" | |
135 | disable slavio_misc_update_irq_lower(void) "Lower IRQ" | |
136 | disable slavio_set_power_fail(int power_failing, uint8_t config) "Power fail: %d, config: %d" | |
137 | disable slavio_cfg_mem_writeb(uint32_t val) "Write config %02x" | |
138 | disable slavio_cfg_mem_readb(uint32_t ret) "Read config %02x" | |
139 | disable slavio_diag_mem_writeb(uint32_t val) "Write diag %02x" | |
140 | disable slavio_diag_mem_readb(uint32_t ret) "Read diag %02x" | |
141 | disable slavio_mdm_mem_writeb(uint32_t val) "Write modem control %02x" | |
142 | disable slavio_mdm_mem_readb(uint32_t ret) "Read modem control %02x" | |
143 | disable slavio_aux1_mem_writeb(uint32_t val) "Write aux1 %02x" | |
144 | disable slavio_aux1_mem_readb(uint32_t ret) "Read aux1 %02x" | |
145 | disable slavio_aux2_mem_writeb(uint32_t val) "Write aux2 %02x" | |
146 | disable slavio_aux2_mem_readb(uint32_t ret) "Read aux2 %02x" | |
147 | disable apc_mem_writeb(uint32_t val) "Write power management %02x" | |
148 | disable apc_mem_readb(uint32_t ret) "Read power management %02x" | |
149 | disable slavio_sysctrl_mem_writel(uint32_t val) "Write system control %08x" | |
150 | disable slavio_sysctrl_mem_readl(uint32_t ret) "Read system control %08x" | |
151 | disable slavio_led_mem_writew(uint32_t val) "Write diagnostic LED %04x" | |
152 | disable slavio_led_mem_readw(uint32_t ret) "Read diagnostic LED %04x" | |
153 | ||
154 | # hw/slavio_timer.c | |
155 | disable slavio_timer_get_out(uint64_t limit, uint32_t counthigh, uint32_t count) "limit %"PRIx64" count %x%08x" | |
156 | disable slavio_timer_irq(uint32_t counthigh, uint32_t count) "callback: count %x%08x" | |
157 | disable slavio_timer_mem_readl_invalid(uint64_t addr) "invalid read address %"PRIx64"" | |
158 | disable slavio_timer_mem_readl(uint64_t addr, uint32_t ret) "read %"PRIx64" = %08x" | |
159 | disable slavio_timer_mem_writel(uint64_t addr, uint32_t val) "write %"PRIx64" = %08x" | |
160 | disable slavio_timer_mem_writel_limit(unsigned int timer_index, uint64_t count) "processor %d user timer set to %016"PRIx64"" | |
161 | disable slavio_timer_mem_writel_counter_invalid(void) "not user timer" | |
162 | disable slavio_timer_mem_writel_status_start(unsigned int timer_index) "processor %d user timer started" | |
163 | disable slavio_timer_mem_writel_status_stop(unsigned int timer_index) "processor %d user timer stopped" | |
164 | disable slavio_timer_mem_writel_mode_user(unsigned int timer_index) "processor %d changed from counter to user timer" | |
165 | disable slavio_timer_mem_writel_mode_counter(unsigned int timer_index) "processor %d changed from user timer to counter" | |
166 | disable slavio_timer_mem_writel_mode_invalid(void) "not system timer" | |
167 | disable slavio_timer_mem_writel_invalid(uint64_t addr) "invalid write address %"PRIx64"" | |
168 | ||
169 | # hw/sparc32_dma.c | |
170 | disable ledma_memory_read(uint64_t addr) "DMA read addr 0x%"PRIx64"" | |
171 | disable ledma_memory_write(uint64_t addr) "DMA write addr 0x%"PRIx64"" | |
172 | disable sparc32_dma_set_irq_raise(void) "Raise IRQ" | |
173 | disable sparc32_dma_set_irq_lower(void) "Lower IRQ" | |
174 | disable espdma_memory_read(uint32_t addr) "DMA read addr 0x%08x" | |
175 | disable espdma_memory_write(uint32_t addr) "DMA write addr 0x%08x" | |
176 | disable sparc32_dma_mem_readl(uint64_t addr, uint32_t ret) "read dmareg %"PRIx64": 0x%08x" | |
177 | disable sparc32_dma_mem_writel(uint64_t addr, uint32_t old, uint32_t val) "write dmareg %"PRIx64": 0x%08x -> 0x%08x" | |
178 | disable sparc32_dma_enable_raise(void) "Raise DMA enable" | |
179 | disable sparc32_dma_enable_lower(void) "Lower DMA enable" | |
180 | ||
181 | # hw/sun4m.c | |
182 | disable sun4m_cpu_interrupt(unsigned int level) "Set CPU IRQ %d" | |
183 | disable sun4m_cpu_reset_interrupt(unsigned int level) "Reset CPU IRQ %d" | |
184 | disable sun4m_cpu_set_irq_raise(int level) "Raise CPU IRQ %d" | |
185 | disable sun4m_cpu_set_irq_lower(int level) "Lower CPU IRQ %d" | |
186 | ||
187 | # hw/sun4m_iommu.c | |
188 | disable sun4m_iommu_mem_readl(uint64_t addr, uint32_t ret) "read reg[%"PRIx64"] = %x" | |
189 | disable sun4m_iommu_mem_writel(uint64_t addr, uint32_t val) "write reg[%"PRIx64"] = %x" | |
190 | disable sun4m_iommu_mem_writel_ctrl(uint64_t iostart) "iostart = %"PRIx64"" | |
191 | disable sun4m_iommu_mem_writel_tlbflush(uint32_t val) "tlb flush %x" | |
192 | disable sun4m_iommu_mem_writel_pgflush(uint32_t val) "page flush %x" | |
193 | disable sun4m_iommu_page_get_flags(uint64_t pa, uint64_t iopte, uint32_t ret) "get flags addr %"PRIx64" => pte %"PRIx64", *pte = %x" | |
194 | disable sun4m_iommu_translate_pa(uint64_t addr, uint64_t pa, uint32_t iopte) "xlate dva %"PRIx64" => pa %"PRIx64" iopte = %x" | |
195 | disable sun4m_iommu_bad_addr(uint64_t addr) "bad addr %"PRIx64"" | |
94b0b5ff | 196 | |
37fb59d3 GH |
197 | # hw/usb-desc.c |
198 | disable usb_desc_device(int addr, int len, int ret) "dev %d query device, len %d, ret %d" | |
25620cba | 199 | disable usb_desc_device_qualifier(int addr, int len, int ret) "dev %d query device qualifier, len %d, ret %d" |
37fb59d3 | 200 | disable usb_desc_config(int addr, int index, int len, int ret) "dev %d query config %d, len %d, ret %d" |
25620cba | 201 | disable usb_desc_other_speed_config(int addr, int index, int len, int ret) "dev %d query config %d, len %d, ret %d" |
37fb59d3 | 202 | disable usb_desc_string(int addr, int index, int len, int ret) "dev %d query string %d, len %d, ret %d" |
41c6abbd | 203 | disable usb_set_addr(int addr) "dev %d" |
a980a065 | 204 | disable usb_set_config(int addr, int config, int ret) "dev %d, config %d, ret %d" |
ed5a83dd GH |
205 | disable usb_clear_device_feature(int addr, int feature, int ret) "dev %d, feature %d, ret %d" |
206 | disable usb_set_device_feature(int addr, int feature, int ret) "dev %d, feature %d, ret %d" | |
37fb59d3 | 207 | |
94b0b5ff SH |
208 | # vl.c |
209 | disable vm_state_notify(int running, int reason) "running %d reason %d" | |
298800ca SH |
210 | |
211 | # block/qed-l2-cache.c | |
212 | disable qed_alloc_l2_cache_entry(void *l2_cache, void *entry) "l2_cache %p entry %p" | |
213 | disable qed_unref_l2_cache_entry(void *entry, int ref) "entry %p ref %d" | |
214 | 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" | |
215 | ||
216 | # block/qed-table.c | |
217 | disable qed_read_table(void *s, uint64_t offset, void *table) "s %p offset %"PRIu64" table %p" | |
218 | disable qed_read_table_cb(void *s, void *table, int ret) "s %p table %p ret %d" | |
219 | 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" | |
220 | disable qed_write_table_cb(void *s, void *table, int flush, int ret) "s %p table %p flush %d ret %d" | |
eabba580 SH |
221 | |
222 | # block/qed.c | |
223 | disable qed_aio_complete(void *s, void *acb, int ret) "s %p acb %p ret %d" | |
224 | 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" | |
225 | disable qed_aio_next_io(void *s, void *acb, int ret, uint64_t cur_pos) "s %p acb %p ret %d cur_pos %"PRIu64"" | |
226 | 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" | |
227 | 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" | |
228 | 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"" | |
229 | 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"" | |
230 | 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 |
231 | |
232 | # hw/grlib_gptimer.c | |
233 | disable grlib_gptimer_enable(int id, uint32_t count) "timer:%d set count 0x%x and run" | |
234 | disable grlib_gptimer_disabled(int id, uint32_t config) "timer:%d Timer disable config 0x%x" | |
235 | disable grlib_gptimer_restart(int id, uint32_t reload) "timer:%d reload val: 0x%x" | |
236 | disable grlib_gptimer_set_scaler(uint32_t scaler, uint32_t freq) "scaler:0x%x freq: 0x%x" | |
237 | disable grlib_gptimer_hit(int id) "timer:%d HIT" | |
b4548fcc SH |
238 | disable grlib_gptimer_readl(int id, uint64_t addr, uint32_t val) "timer:%d addr 0x%"PRIx64" 0x%x" |
239 | disable grlib_gptimer_writel(int id, uint64_t addr, uint32_t val) "timer:%d addr 0x%"PRIx64" 0x%x" | |
3f10bcbb FC |
240 | |
241 | # hw/grlib_irqmp.c | |
242 | 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" | |
243 | disable grlib_irqmp_ack(int intno) "interrupt:%d" | |
244 | disable grlib_irqmp_set_irq(int irq) "Raise CPU IRQ %d" | |
b4548fcc SH |
245 | disable grlib_irqmp_readl_unknown(uint64_t addr) "addr 0x%"PRIx64"" |
246 | disable grlib_irqmp_writel_unknown(uint64_t addr, uint32_t value) "addr 0x%"PRIx64" value 0x%x" | |
8b1e1320 FC |
247 | |
248 | # hw/grlib_apbuart.c | |
249 | disable grlib_apbuart_event(int event) "event:%d" | |
b4548fcc | 250 | disable grlib_apbuart_writel_unknown(uint64_t addr, uint32_t value) "addr 0x%"PRIx64" value 0x%x" |
b04d9890 FC |
251 | |
252 | # hw/leon3.c | |
253 | disable leon3_set_irq(int intno) "Set CPU IRQ %d" | |
254 | disable leon3_reset_irq(int intno) "Reset CPU IRQ %d" | |
9363ee31 | 255 | |
cbcc6336 | 256 | # spice-qemu-char.c |
2b287af6 LV |
257 | disable spice_vmc_write(ssize_t out, int len) "spice wrottn %zd of requested %d" |
258 | disable spice_vmc_read(int bytes, int len) "spice read %d of requested %d" | |
cbcc6336 AL |
259 | disable spice_vmc_register_interface(void *scd) "spice vmc registered interface %p" |
260 | disable spice_vmc_unregister_interface(void *scd) "spice vmc unregistered interface %p" | |
4ef66fa7 MW |
261 | |
262 | # hw/lm32_pic.c | |
263 | disable lm32_pic_raise_irq(void) "Raise CPU interrupt" | |
264 | disable lm32_pic_lower_irq(void) "Lower CPU interrupt" | |
265 | disable lm32_pic_interrupt(int irq, int level) "Set IRQ%d %d" | |
266 | disable lm32_pic_set_im(uint32_t im) "im 0x%08x" | |
267 | disable lm32_pic_set_ip(uint32_t ip) "ip 0x%08x" | |
268 | disable lm32_pic_get_im(uint32_t im) "im 0x%08x" | |
269 | disable lm32_pic_get_ip(uint32_t ip) "ip 0x%08x" | |
15d7dc4f MW |
270 | |
271 | # hw/lm32_juart.c | |
272 | disable lm32_juart_get_jtx(uint32_t value) "jtx 0x%08x" | |
273 | disable lm32_juart_set_jtx(uint32_t value) "jtx 0x%08x" | |
274 | disable lm32_juart_get_jrx(uint32_t value) "jrx 0x%08x" | |
275 | disable lm32_juart_set_jrx(uint32_t value) "jrx 0x%08x" | |
ea7924dc MW |
276 | |
277 | # hw/lm32_timer.c | |
278 | disable lm32_timer_memory_write(uint32_t addr, uint32_t value) "addr 0x%08x value 0x%08x" | |
279 | disable lm32_timer_memory_read(uint32_t addr, uint32_t value) "addr 0x%08x value 0x%08x" | |
280 | disable lm32_timer_hit(void) "timer hit" | |
281 | disable lm32_timer_irq_state(int level) "irq state %d" | |
770ae571 MW |
282 | |
283 | # hw/lm32_uart.c | |
284 | disable lm32_uart_memory_write(uint32_t addr, uint32_t value) "addr 0x%08x value 0x%08x" | |
285 | disable lm32_uart_memory_read(uint32_t addr, uint32_t value) "addr 0x%08x value 0x%08x" | |
286 | disable lm32_uart_irq_state(int level) "irq state %d" | |
f19410ca MW |
287 | |
288 | # hw/lm32_sys.c | |
289 | disable lm32_sys_memory_write(uint32_t addr, uint32_t value) "addr 0x%08x value 0x%08x" | |
25a8bb96 MW |
290 | |
291 | # hw/milkymist-ac97.c | |
292 | disable milkymist_ac97_memory_read(uint32_t addr, uint32_t value) "addr %08x value %08x" | |
293 | disable milkymist_ac97_memory_write(uint32_t addr, uint32_t value) "addr %08x value %08x" | |
294 | disable milkymist_ac97_pulse_irq_crrequest(void) "Pulse IRQ CR request" | |
295 | disable milkymist_ac97_pulse_irq_crreply(void) "Pulse IRQ CR reply" | |
296 | disable milkymist_ac97_pulse_irq_dmaw(void) "Pulse IRQ DMA write" | |
297 | disable milkymist_ac97_pulse_irq_dmar(void) "Pulse IRQ DMA read" | |
298 | disable milkymist_ac97_in_cb(int avail, uint32_t remaining) "avail %d remaining %u" | |
299 | disable milkymist_ac97_in_cb_transferred(int transferred) "transferred %d" | |
300 | disable milkymist_ac97_out_cb(int free, uint32_t remaining) "free %d remaining %u" | |
301 | disable milkymist_ac97_out_cb_transferred(int transferred) "transferred %d" | |
e4dc6d2c MW |
302 | |
303 | # hw/milkymist-hpdmc.c | |
b4e37d98 MW |
304 | disable milkymist_hpdmc_memory_read(uint32_t addr, uint32_t value) "addr=%08x value=%08x" |
305 | disable milkymist_hpdmc_memory_write(uint32_t addr, uint32_t value) "addr=%08x value=%08x" | |
306 | ||
307 | # hw/milkymist-memcard.c | |
308 | disable milkymist_memcard_memory_read(uint32_t addr, uint32_t value) "addr %08x value %08x" | |
309 | disable milkymist_memcard_memory_write(uint32_t addr, uint32_t value) "addr %08x value %08x" | |
07424544 | 310 | |
57aa265d MW |
311 | # hw/milkymist-minimac2.c |
312 | disable milkymist_minimac2_memory_read(uint32_t addr, uint32_t value) "addr %08x value %08x" | |
313 | disable milkymist_minimac2_memory_write(uint32_t addr, uint32_t value) "addr %08x value %08x" | |
314 | disable milkymist_minimac2_mdio_write(uint8_t phy_addr, uint8_t addr, uint16_t value) "phy_addr %02x addr %02x value %04x" | |
315 | disable milkymist_minimac2_mdio_read(uint8_t phy_addr, uint8_t addr, uint16_t value) "phy_addr %02x addr %02x value %04x" | |
316 | disable milkymist_minimac2_tx_frame(uint32_t length) "length %u" | |
317 | disable milkymist_minimac2_rx_frame(const void *buf, uint32_t length) "buf %p length %u" | |
318 | disable milkymist_minimac2_drop_rx_frame(const void *buf) "buf %p" | |
319 | disable milkymist_minimac2_rx_transfer(const void *buf, uint32_t length) "buf %p length %d" | |
320 | disable milkymist_minimac2_raise_irq_rx(void) "Raise IRQ RX" | |
321 | disable milkymist_minimac2_lower_irq_rx(void) "Lower IRQ RX" | |
322 | disable milkymist_minimac2_pulse_irq_tx(void) "Pulse IRQ TX" | |
5ee18b9c MW |
323 | |
324 | # hw/milkymist-pfpu.c | |
325 | disable milkymist_pfpu_memory_read(uint32_t addr, uint32_t value) "addr %08x value %08x" | |
326 | disable milkymist_pfpu_memory_write(uint32_t addr, uint32_t value) "addr %08x value %08x" | |
327 | disable milkymist_pfpu_vectout(uint32_t a, uint32_t b, uint32_t dma_ptr) "a %08x b %08x dma_ptr %08x" | |
328 | disable milkymist_pfpu_pulse_irq(void) "Pulse IRQ" | |
87a381ec MW |
329 | |
330 | # hw/milkymist-softusb.c | |
331 | disable milkymist_softusb_memory_read(uint32_t addr, uint32_t value) "addr %08x value %08x" | |
332 | disable milkymist_softusb_memory_write(uint32_t addr, uint32_t value) "addr %08x value %08x" | |
333 | disable milkymist_softusb_mevt(uint8_t m) "m %d" | |
334 | disable milkymist_softusb_kevt(uint8_t m) "m %d" | |
335 | disable milkymist_softusb_mouse_event(int dx, int dy, int dz, int bs) "dx %d dy %d dz %d bs %02x" | |
336 | disable milkymist_softusb_pulse_irq(void) "Pulse IRQ" | |
96832424 MW |
337 | |
338 | # hw/milkymist-sysctl.c | |
339 | disable milkymist_sysctl_memory_read(uint32_t addr, uint32_t value) "addr %08x value %08x" | |
340 | disable milkymist_sysctl_memory_write(uint32_t addr, uint32_t value) "addr %08x value %08x" | |
341 | disable milkymist_sysctl_icap_write(uint32_t value) "value %08x" | |
342 | disable milkymist_sysctl_start_timer0(void) "Start timer0" | |
343 | disable milkymist_sysctl_stop_timer0(void) "Stop timer0" | |
344 | disable milkymist_sysctl_start_timer1(void) "Start timer1" | |
345 | disable milkymist_sysctl_stop_timer1(void) "Stop timer1" | |
346 | disable milkymist_sysctl_pulse_irq_timer0(void) "Pulse IRQ Timer0" | |
347 | disable milkymist_sysctl_pulse_irq_timer1(void) "Pulse IRQ Timer1" | |
0670dadd MW |
348 | |
349 | # hw/milkymist-tmu2.c | |
350 | disable milkymist_tmu2_memory_read(uint32_t addr, uint32_t value) "addr %08x value %08x" | |
351 | disable milkymist_tmu2_memory_write(uint32_t addr, uint32_t value) "addr %08x value %08x" | |
352 | disable milkymist_tmu2_start(void) "Start TMU" | |
353 | disable milkymist_tmu2_pulse_irq(void) "Pulse IRQ" | |
883de16b MW |
354 | |
355 | # hw/milkymist-uart.c | |
356 | disable milkymist_uart_memory_read(uint32_t addr, uint32_t value) "addr %08x value %08x" | |
357 | disable milkymist_uart_memory_write(uint32_t addr, uint32_t value) "addr %08x value %08x" | |
358 | disable milkymist_uart_pulse_irq_rx(void) "Pulse IRQ RX" | |
359 | disable milkymist_uart_pulse_irq_tx(void) "Pulse IRQ TX" | |
d23948b1 MW |
360 | |
361 | # hw/milkymist-vgafb.c | |
362 | disable milkymist_vgafb_memory_read(uint32_t addr, uint32_t value) "addr %08x value %08x" | |
363 | disable milkymist_vgafb_memory_write(uint32_t addr, uint32_t value) "addr %08x value %08x" |