mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-04 16:23:55 -06:00
hw/sd/pl181: Replace disabled fprintf()s by trace events
Convert disabled DPRINTF() to trace events and remove ifdef'ry. Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org> Reviewed-by: Alistair Francis <alistair.francis@wdc.com> Acked-by: Peter Maydell <peter.maydell@linaro.org> Message-Id: <20200705204630.4133-9-f4bug@amsat.org>
This commit is contained in:
parent
26c607b86b
commit
583d09f078
2 changed files with 19 additions and 17 deletions
|
@ -62,3 +62,13 @@ milkymist_memcard_memory_write(uint32_t addr, uint32_t value) "addr 0x%08x value
|
|||
# pxa2xx_mmci.c
|
||||
pxa2xx_mmci_read(uint8_t size, uint32_t addr, uint32_t value) "size %d addr 0x%02x value 0x%08x"
|
||||
pxa2xx_mmci_write(uint8_t size, uint32_t addr, uint32_t value) "size %d addr 0x%02x value 0x%08x"
|
||||
|
||||
# pl181.c
|
||||
pl181_command_send(uint8_t cmd, uint32_t arg) "sending CMD%02d arg 0x%08" PRIx32
|
||||
pl181_command_sent(void) "command sent"
|
||||
pl181_command_response_pending(void) "response received"
|
||||
pl181_command_timeout(void) "command timeouted"
|
||||
pl181_fifo_push(uint32_t data) "FIFO push 0x%08" PRIx32
|
||||
pl181_fifo_pop(uint32_t data) "FIFO pop 0x%08" PRIx32
|
||||
pl181_fifo_transfer_complete(void) "FIFO transfer complete"
|
||||
pl181_data_engine_idle(void) "data engine idle"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue