diff options
author | Blue Swirl <blauwirbel@gmail.com> | 2011-08-07 11:01:05 +0000 |
---|---|---|
committer | Blue Swirl <blauwirbel@gmail.com> | 2011-08-21 20:02:02 +0000 |
commit | 30c2f2388ab083074b3ab0de8e7f87aed9c62c7a (patch) | |
tree | cc7be61fd15f97b46b154bb8ffe29b1c58c53c8c /trace-events | |
parent | 42c812b98bbdb1d9e12b111f779a4cc6d987727d (diff) |
escc: replace DPRINTFs with tracepoints
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
Diffstat (limited to 'trace-events')
-rw-r--r-- | trace-events | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/trace-events b/trace-events index 246704c778..14e6f8b1aa 100644 --- a/trace-events +++ b/trace-events @@ -446,3 +446,18 @@ disable qemu_co_mutex_lock_entry(void *mutex, void *self) "mutex %p self %p" disable qemu_co_mutex_lock_return(void *mutex, void *self) "mutex %p self %p" disable qemu_co_mutex_unlock_entry(void *mutex, void *self) "mutex %p self %p" disable qemu_co_mutex_unlock_return(void *mutex, void *self) "mutex %p self %p" + +# hw/escc.c +disable escc_put_queue(char channel, int b) "channel %c put: 0x%02x" +disable escc_get_queue(char channel, int val) "channel %c get 0x%02x" +disable escc_update_irq(int irq) "IRQ = %d" +disable 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" +disable escc_mem_writeb_ctrl(char channel, uint32_t reg, uint32_t val) "Write channel %c, reg[%d] = %2.2x" +disable escc_mem_writeb_data(char channel, uint32_t val) "Write channel %c, ch %d" +disable escc_mem_readb_ctrl(char channel, uint32_t reg, uint8_t val) "Read channel %c, reg[%d] = %2.2x" +disable escc_mem_readb_data(char channel, uint32_t ret) "Read channel %c, ch %d" +disable escc_serial_receive_byte(char channel, int ch) "channel %c put ch %d" +disable escc_sunkbd_event_in(int ch) "Untranslated keycode %2.2x" +disable escc_sunkbd_event_out(int ch) "Translated keycode %2.2x" +disable escc_kbd_command(int val) "Command %d" +disable escc_sunmouse_event(int dx, int dy, int buttons_state) "dx=%d dy=%d buttons=%01x" |