2021-05-17 18:16:58 +03:00
|
|
|
# See docs/devel/tracing.rst for syntax documentation.
|
2016-06-16 11:40:09 +03:00
|
|
|
|
2019-03-14 21:09:26 +03:00
|
|
|
# isa-superio.c
|
2018-03-09 01:39:31 +03:00
|
|
|
superio_create_parallel(int id, uint16_t base, unsigned int irq) "id=%d, base 0x%03x, irq %u"
|
2018-03-09 01:39:32 +03:00
|
|
|
superio_create_serial(int id, uint16_t base, unsigned int irq) "id=%d, base 0x%03x, irq %u"
|
2018-03-09 01:39:33 +03:00
|
|
|
superio_create_floppy(int id, uint16_t base, unsigned int irq) "id=%d, base 0x%03x, irq %u"
|
2018-03-09 01:39:35 +03:00
|
|
|
superio_create_ide(int id, uint16_t base, unsigned int irq) "id=%d, base 0x%03x, irq %u"
|
2018-03-09 01:39:31 +03:00
|
|
|
|
2019-03-14 21:09:26 +03:00
|
|
|
# pc87312.c
|
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 19:01:35 +03:00
|
|
|
pc87312_io_read(uint32_t addr, uint32_t val) "read addr=0x%x val=0x%x"
|
|
|
|
pc87312_io_write(uint32_t addr, uint32_t val) "write addr=0x%x val=0x%x"
|
2020-05-24 19:48:06 +03:00
|
|
|
|
|
|
|
# apm.c
|
|
|
|
apm_io_read(uint8_t addr, uint8_t val) "read addr=0x%x val=0x%02x"
|
|
|
|
apm_io_write(uint8_t addr, uint8_t val) "write addr=0x%x val=0x%02x"
|
2021-01-02 13:43:35 +03:00
|
|
|
|
|
|
|
# vt82c686.c
|
|
|
|
via_isa_write(uint32_t addr, uint32_t val, int len) "addr 0x%x val 0x%x len 0x%x"
|
2022-01-23 23:40:42 +03:00
|
|
|
via_pm_read(uint32_t addr, uint32_t val, int len) "addr 0x%x val 0x%x len 0x%x"
|
2021-01-02 13:43:35 +03:00
|
|
|
via_pm_write(uint32_t addr, uint32_t val, int len) "addr 0x%x val 0x%x len 0x%x"
|
2021-01-09 23:16:36 +03:00
|
|
|
via_pm_io_read(uint32_t addr, uint32_t val, int len) "addr 0x%x val 0x%x len 0x%x"
|
|
|
|
via_pm_io_write(uint32_t addr, uint32_t val, int len) "addr 0x%x val 0x%x len 0x%x"
|
2021-01-02 13:43:35 +03:00
|
|
|
via_superio_read(uint8_t addr, uint8_t val) "addr 0x%x val 0x%x"
|
|
|
|
via_superio_write(uint8_t addr, uint32_t val) "addr 0x%x val 0x%x"
|
2022-12-16 15:57:46 +03:00
|
|
|
|
|
|
|
# lpc_ich9.c
|
|
|
|
ich9_cc_write(uint64_t addr, uint64_t val, unsigned len) "addr=0x%"PRIx64 " val=0x%"PRIx64 " len=%u"
|
|
|
|
ich9_cc_read(uint64_t addr, uint64_t val, unsigned len) "addr=0x%"PRIx64 " val=0x%"PRIx64 " len=%u"
|