ff413a1f7f
Drop DPRINTF and use trace functions instead. Two debug messages about unimplemented registers could be converted to qemu_log_mask() but in reality all registers are currently unimplemented (we just store and return values of writable regs but do nothing with them). As we already trace register access there's no need for additional debug messages so these are just removed and a comment is added as a reminder. Signed-off-by: BALATON Zoltan <balaton@eik.bme.hu> Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org> Message-Id: <785854022a37035f66d89e70cb6ca1bc0e0d0163.1609584216.git.balaton@eik.bme.hu> Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
22 lines
1.0 KiB
Plaintext
22 lines
1.0 KiB
Plaintext
# See docs/devel/tracing.txt for syntax documentation.
|
|
|
|
# isa-superio.c
|
|
superio_create_parallel(int id, uint16_t base, unsigned int irq) "id=%d, base 0x%03x, irq %u"
|
|
superio_create_serial(int id, uint16_t base, unsigned int irq) "id=%d, base 0x%03x, irq %u"
|
|
superio_create_floppy(int id, uint16_t base, unsigned int irq) "id=%d, base 0x%03x, irq %u"
|
|
superio_create_ide(int id, uint16_t base, unsigned int irq) "id=%d, base 0x%03x, irq %u"
|
|
|
|
# pc87312.c
|
|
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"
|
|
|
|
# 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"
|
|
|
|
# vt82c686.c
|
|
via_isa_write(uint32_t addr, uint32_t val, int len) "addr 0x%x val 0x%x len 0x%x"
|
|
via_pm_write(uint32_t addr, uint32_t val, int len) "addr 0x%x val 0x%x len 0x%x"
|
|
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"
|