2021-05-17 17:16:58 +02:00
|
|
|
# See docs/devel/tracing.rst for syntax documentation.
|
2016-06-16 10:39:54 +02:00
|
|
|
|
2019-03-14 19:09:26 +01:00
|
|
|
# parallel.c
|
2018-06-21 19:12:50 +02:00
|
|
|
parallel_ioport_read(const char *desc, uint16_t addr, uint8_t value) "read [%s] addr 0x%02x val 0x%02x"
|
|
|
|
parallel_ioport_write(const char *desc, uint16_t addr, uint8_t value) "write [%s] addr 0x%02x val 0x%02x"
|
|
|
|
|
2019-03-14 19:09:26 +01:00
|
|
|
# serial.c
|
2020-09-07 03:55:32 +02:00
|
|
|
serial_read(uint16_t addr, uint8_t value) "read addr 0x%02x val 0x%02x"
|
|
|
|
serial_write(uint16_t addr, uint8_t value) "write addr 0x%02x val 0x%02x"
|
2020-09-07 03:55:30 +02:00
|
|
|
serial_update_parameters(uint64_t baudrate, char parity, int data_bits, int stop_bits) "baudrate=%"PRIu64" parity='%c' data=%d stop=%d"
|
2018-06-21 19:12:49 +02:00
|
|
|
|
2019-03-14 19:09:26 +01:00
|
|
|
# virtio-serial-bus.c
|
2016-06-16 10:39:54 +02:00
|
|
|
virtio_serial_send_control_event(unsigned int port, uint16_t event, uint16_t value) "port %u, event %u, value %u"
|
|
|
|
virtio_serial_throttle_port(unsigned int port, bool throttle) "port %u, throttle %d"
|
|
|
|
virtio_serial_handle_control_message(uint16_t event, uint16_t value) "event %u, value %u"
|
|
|
|
virtio_serial_handle_control_message_port(unsigned int port) "port %u"
|
|
|
|
|
2019-03-14 19:09:26 +01:00
|
|
|
# virtio-console.c
|
2016-06-16 10:39:54 +02:00
|
|
|
virtio_console_flush_buf(unsigned int port, size_t len, ssize_t ret) "port %u, in_len %zu, out_len %zd"
|
|
|
|
virtio_console_chr_read(unsigned int port, int size) "port %u, size %d"
|
|
|
|
virtio_console_chr_event(unsigned int port, int event) "port %u, event %d"
|
|
|
|
|
2021-03-12 22:41:41 +01:00
|
|
|
# goldfish_tty.c
|
|
|
|
goldfish_tty_read(void *dev, unsigned int addr, unsigned int size, uint64_t value) "tty: %p reg: 0x%02x size: %d value: 0x%"PRIx64
|
|
|
|
goldfish_tty_write(void *dev, unsigned int addr, unsigned int size, uint64_t value) "tty: %p reg: 0x%02x size: %d value: 0x%"PRIx64
|
|
|
|
goldfish_tty_can_receive(void *dev, unsigned int available) "tty: %p available: %u"
|
|
|
|
goldfish_tty_receive(void *dev, unsigned int size) "tty: %p size: %u"
|
|
|
|
goldfish_tty_reset(void *dev) "tty: %p"
|
|
|
|
goldfish_tty_realize(void *dev) "tty: %p"
|
|
|
|
goldfish_tty_unrealize(void *dev) "tty: %p"
|
|
|
|
goldfish_tty_instance_init(void *dev) "tty: %p"
|
|
|
|
|
2019-03-14 19:09:26 +01:00
|
|
|
# grlib_apbuart.c
|
2016-06-16 10:39:54 +02:00
|
|
|
grlib_apbuart_event(int event) "event:%d"
|
|
|
|
grlib_apbuart_writel_unknown(uint64_t addr, uint32_t value) "addr 0x%"PRIx64" value 0x%x"
|
|
|
|
grlib_apbuart_readl_unknown(uint64_t addr) "addr 0x%"PRIx64
|
|
|
|
|
2019-03-14 19:09:26 +01:00
|
|
|
# escc.c
|
2021-09-03 13:32:18 +02:00
|
|
|
escc_hard_reset(void) "hard reset"
|
2021-09-03 13:32:17 +02:00
|
|
|
escc_soft_reset_chn(char channel) "soft reset channel %c"
|
2016-06-16 10:39:54 +02:00
|
|
|
escc_put_queue(char channel, int b) "channel %c put: 0x%02x"
|
|
|
|
escc_get_queue(char channel, int val) "channel %c get 0x%02x"
|
|
|
|
escc_update_irq(int irq) "IRQ = %d"
|
|
|
|
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"
|
trace-events: fix code style: print 0x before hex numbers
The only exception are groups of numers separated by symbols
'.', ' ', ':', '/', like 'ab.09.7d'.
This patch is made by the following:
> find . -name trace-events | xargs python script.py
where script.py is the following python script:
=========================
#!/usr/bin/env python
import sys
import re
import fileinput
rhex = '%[-+ *.0-9]*(?:[hljztL]|ll|hh)?(?:x|X|"\s*PRI[xX][^"]*"?)'
rgroup = re.compile('((?:' + rhex + '[.:/ ])+' + rhex + ')')
rbad = re.compile('(?<!0x)' + rhex)
files = sys.argv[1:]
for fname in files:
for line in fileinput.input(fname, inplace=True):
arr = re.split(rgroup, line)
for i in range(0, len(arr), 2):
arr[i] = re.sub(rbad, '0x\g<0>', arr[i])
sys.stdout.write(''.join(arr))
=========================
Signed-off-by: Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com>
Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com>
Acked-by: Cornelia Huck <cohuck@redhat.com>
Message-id: 20170731160135.12101-5-vsementsov@virtuozzo.com
Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
2017-07-31 18:01:35 +02:00
|
|
|
escc_mem_writeb_ctrl(char channel, uint32_t reg, uint32_t val) "Write channel %c, reg[%d] = 0x%2.2x"
|
2016-06-16 10:39:54 +02:00
|
|
|
escc_mem_writeb_data(char channel, uint32_t val) "Write channel %c, ch %d"
|
trace-events: fix code style: print 0x before hex numbers
The only exception are groups of numers separated by symbols
'.', ' ', ':', '/', like 'ab.09.7d'.
This patch is made by the following:
> find . -name trace-events | xargs python script.py
where script.py is the following python script:
=========================
#!/usr/bin/env python
import sys
import re
import fileinput
rhex = '%[-+ *.0-9]*(?:[hljztL]|ll|hh)?(?:x|X|"\s*PRI[xX][^"]*"?)'
rgroup = re.compile('((?:' + rhex + '[.:/ ])+' + rhex + ')')
rbad = re.compile('(?<!0x)' + rhex)
files = sys.argv[1:]
for fname in files:
for line in fileinput.input(fname, inplace=True):
arr = re.split(rgroup, line)
for i in range(0, len(arr), 2):
arr[i] = re.sub(rbad, '0x\g<0>', arr[i])
sys.stdout.write(''.join(arr))
=========================
Signed-off-by: Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com>
Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com>
Acked-by: Cornelia Huck <cohuck@redhat.com>
Message-id: 20170731160135.12101-5-vsementsov@virtuozzo.com
Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
2017-07-31 18:01:35 +02:00
|
|
|
escc_mem_readb_ctrl(char channel, uint32_t reg, uint8_t val) "Read channel %c, reg[%d] = 0x%2.2x"
|
2016-06-16 10:39:54 +02:00
|
|
|
escc_mem_readb_data(char channel, uint32_t ret) "Read channel %c, ch %d"
|
|
|
|
escc_serial_receive_byte(char channel, int ch) "channel %c put ch %d"
|
|
|
|
escc_sunkbd_event_in(int ch, const char *name, int down) "QKeyCode 0x%2.2x [%s], down %d"
|
|
|
|
escc_sunkbd_event_out(int ch) "Translated keycode 0x%2.2x"
|
|
|
|
escc_kbd_command(int val) "Command %d"
|
trace-events: fix code style: print 0x before hex numbers
The only exception are groups of numers separated by symbols
'.', ' ', ':', '/', like 'ab.09.7d'.
This patch is made by the following:
> find . -name trace-events | xargs python script.py
where script.py is the following python script:
=========================
#!/usr/bin/env python
import sys
import re
import fileinput
rhex = '%[-+ *.0-9]*(?:[hljztL]|ll|hh)?(?:x|X|"\s*PRI[xX][^"]*"?)'
rgroup = re.compile('((?:' + rhex + '[.:/ ])+' + rhex + ')')
rbad = re.compile('(?<!0x)' + rhex)
files = sys.argv[1:]
for fname in files:
for line in fileinput.input(fname, inplace=True):
arr = re.split(rgroup, line)
for i in range(0, len(arr), 2):
arr[i] = re.sub(rbad, '0x\g<0>', arr[i])
sys.stdout.write(''.join(arr))
=========================
Signed-off-by: Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com>
Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com>
Acked-by: Cornelia Huck <cohuck@redhat.com>
Message-id: 20170731160135.12101-5-vsementsov@virtuozzo.com
Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
2017-07-31 18:01:35 +02:00
|
|
|
escc_sunmouse_event(int dx, int dy, int buttons_state) "dx=%d dy=%d buttons=0x%01x"
|
2016-10-12 19:54:36 +02:00
|
|
|
|
2019-03-14 19:09:26 +01:00
|
|
|
# pl011.c
|
2016-10-12 19:54:36 +02:00
|
|
|
pl011_irq_state(int level) "irq state %d"
|
|
|
|
pl011_read(uint32_t addr, uint32_t value) "addr 0x%08x value 0x%08x"
|
|
|
|
pl011_read_fifo(int read_count) "FIFO read, read_count now %d"
|
|
|
|
pl011_write(uint32_t addr, uint32_t value) "addr 0x%08x value 0x%08x"
|
trace-events: fix code style: print 0x before hex numbers
The only exception are groups of numers separated by symbols
'.', ' ', ':', '/', like 'ab.09.7d'.
This patch is made by the following:
> find . -name trace-events | xargs python script.py
where script.py is the following python script:
=========================
#!/usr/bin/env python
import sys
import re
import fileinput
rhex = '%[-+ *.0-9]*(?:[hljztL]|ll|hh)?(?:x|X|"\s*PRI[xX][^"]*"?)'
rgroup = re.compile('((?:' + rhex + '[.:/ ])+' + rhex + ')')
rbad = re.compile('(?<!0x)' + rhex)
files = sys.argv[1:]
for fname in files:
for line in fileinput.input(fname, inplace=True):
arr = re.split(rgroup, line)
for i in range(0, len(arr), 2):
arr[i] = re.sub(rbad, '0x\g<0>', arr[i])
sys.stdout.write(''.join(arr))
=========================
Signed-off-by: Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com>
Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com>
Acked-by: Cornelia Huck <cohuck@redhat.com>
Message-id: 20170731160135.12101-5-vsementsov@virtuozzo.com
Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
2017-07-31 18:01:35 +02:00
|
|
|
pl011_can_receive(uint32_t lcr, int read_count, int r) "LCR 0x%08x read_count %d returning %d"
|
2016-10-12 19:54:36 +02:00
|
|
|
pl011_put_fifo(uint32_t c, int read_count) "new char 0x%x read_count now %d"
|
|
|
|
pl011_put_fifo_full(void) "FIFO now full, RXFF set"
|
2020-10-10 15:57:58 +02:00
|
|
|
pl011_baudrate_change(unsigned int baudrate, uint64_t clock, uint32_t ibrd, uint32_t fbrd) "new baudrate %u (clk: %" PRIu64 "hz, ibrd: %" PRIu32 ", fbrd: %" PRIu32 ")"
|
2017-07-17 14:36:08 +02:00
|
|
|
|
2019-03-14 19:09:29 +01:00
|
|
|
# cmsdk-apb-uart.c
|
2017-07-17 14:36:08 +02:00
|
|
|
cmsdk_apb_uart_read(uint64_t offset, uint64_t data, unsigned size) "CMSDK APB UART read: offset 0x%" PRIx64 " data 0x%" PRIx64 " size %u"
|
|
|
|
cmsdk_apb_uart_write(uint64_t offset, uint64_t data, unsigned size) "CMSDK APB UART write: offset 0x%" PRIx64 " data 0x%" PRIx64 " size %u"
|
|
|
|
cmsdk_apb_uart_reset(void) "CMSDK APB UART: reset"
|
|
|
|
cmsdk_apb_uart_receive(uint8_t c) "CMSDK APB UART: got character 0x%x from backend"
|
|
|
|
cmsdk_apb_uart_tx_pending(void) "CMSDK APB UART: character send to backend pending"
|
|
|
|
cmsdk_apb_uart_tx(uint8_t c) "CMSDK APB UART: character 0x%x sent to backend"
|
|
|
|
cmsdk_apb_uart_set_params(int speed) "CMSDK APB UART: params set to %d 8N1"
|
2018-10-30 16:23:56 +01:00
|
|
|
|
2019-03-14 19:09:26 +01:00
|
|
|
# nrf51_uart.c
|
2018-10-30 16:23:56 +01:00
|
|
|
nrf51_uart_read(uint64_t addr, uint64_t r, unsigned int size) "addr 0x%" PRIx64 " value 0x%" PRIx64 " size %u"
|
|
|
|
nrf51_uart_write(uint64_t addr, uint64_t value, unsigned int size) "addr 0x%" PRIx64 " value 0x%" PRIx64 " size %u"
|
2020-01-23 16:22:41 +01:00
|
|
|
|
2021-04-01 20:14:56 +02:00
|
|
|
# shakti_uart.c
|
|
|
|
shakti_uart_read(uint64_t addr, uint16_t r, unsigned int size) "addr 0x%" PRIx64 " value 0x%" PRIx16 " size %u"
|
|
|
|
shakti_uart_write(uint64_t addr, uint64_t value, unsigned int size) "addr 0x%" PRIx64 " value 0x%" PRIx64 " size %u"
|
|
|
|
|
2020-01-23 16:22:41 +01:00
|
|
|
# exynos4210_uart.c
|
2020-01-23 16:22:42 +01:00
|
|
|
exynos_uart_dmabusy(uint32_t channel) "UART%d: DMA busy (Rx buffer empty)"
|
|
|
|
exynos_uart_dmaready(uint32_t channel) "UART%d: DMA ready"
|
2020-01-23 16:22:41 +01:00
|
|
|
exynos_uart_irq_raised(uint32_t channel, uint32_t reg) "UART%d: IRQ raised: 0x%08"PRIx32
|
|
|
|
exynos_uart_irq_lowered(uint32_t channel) "UART%d: IRQ lowered"
|
2020-01-23 16:22:41 +01:00
|
|
|
exynos_uart_update_params(uint32_t channel, int speed, uint8_t parity, int data, int stop, uint64_t wordtime) "UART%d: speed: %d, parity: %c, data bits: %d, stop bits: %d wordtime: %"PRId64"ns"
|
2020-01-23 16:22:41 +01:00
|
|
|
exynos_uart_write(uint32_t channel, uint32_t offset, const char *name, uint64_t val) "UART%d: <0x%04x> %s <- 0x%" PRIx64
|
|
|
|
exynos_uart_read(uint32_t channel, uint32_t offset, const char *name, uint64_t val) "UART%d: <0x%04x> %s -> 0x%" PRIx64
|
|
|
|
exynos_uart_rx_fifo_reset(uint32_t channel) "UART%d: Rx FIFO Reset"
|
|
|
|
exynos_uart_tx_fifo_reset(uint32_t channel) "UART%d: Tx FIFO Reset"
|
|
|
|
exynos_uart_tx(uint32_t channel, uint8_t ch) "UART%d: Tx 0x%02"PRIx32
|
|
|
|
exynos_uart_intclr(uint32_t channel, uint32_t reg) "UART%d: interrupts cleared: 0x%08"PRIx32
|
|
|
|
exynos_uart_ro_write(uint32_t channel, const char *name, uint32_t reg) "UART%d: Trying to write into RO register: %s [0x%04"PRIx32"]"
|
|
|
|
exynos_uart_rx(uint32_t channel, uint8_t ch) "UART%d: Rx 0x%02"PRIx32
|
|
|
|
exynos_uart_rx_error(uint32_t channel) "UART%d: Rx error"
|
|
|
|
exynos_uart_wo_read(uint32_t channel, const char *name, uint32_t reg) "UART%d: Trying to read from WO register: %s [0x%04"PRIx32"]"
|
|
|
|
exynos_uart_rxsize(uint32_t channel, uint32_t size) "UART%d: Rx FIFO size: %d"
|
|
|
|
exynos_uart_channel_error(uint32_t channel) "Wrong UART channel number: %d"
|
2020-01-23 16:22:41 +01:00
|
|
|
exynos_uart_rx_timeout(uint32_t channel, uint32_t stat, uint32_t intsp) "UART%d: Rx timeout stat=0x%x intsp=0x%x"
|
2020-04-06 15:52:49 +02:00
|
|
|
|
2020-08-06 16:13:34 +02:00
|
|
|
# cadence_uart.c
|
2020-04-06 15:52:49 +02:00
|
|
|
cadence_uart_baudrate(unsigned baudrate) "baudrate %u"
|
2021-10-29 23:02:09 +02:00
|
|
|
|
|
|
|
# sh_serial.c
|
|
|
|
sh_serial_read(unsigned size, uint64_t offs, uint64_t val) " size %d offs 0x%02" PRIx64 " -> 0x%02" PRIx64
|
|
|
|
sh_serial_write(unsigned size, uint64_t offs, uint64_t val) "size %d offs 0x%02" PRIx64 " <- 0x%02" PRIx64
|