187e0331cSPhilippe Mathieu-Daudé# See docs/devel/tracing.txt for syntax documentation. 21374aeccSDaniel P. Berrange 3*238cd935SPhilippe Mathieu-Daudé# hw/sd/core.c 4*238cd935SPhilippe Mathieu-Daudésdbus_command(const char *bus_name, uint8_t cmd, uint32_t arg, uint8_t crc) "@%s CMD%02d arg 0x%08x crc 0x%02x" 5*238cd935SPhilippe Mathieu-Daudésdbus_read(const char *bus_name, uint8_t value) "@%s value 0x%02x" 6*238cd935SPhilippe Mathieu-Daudésdbus_write(const char *bus_name, uint8_t value) "@%s value 0x%02x" 7*238cd935SPhilippe Mathieu-Daudé 88be487d8SPhilippe Mathieu-Daudé# hw/sd/sdhci.c 98be487d8SPhilippe Mathieu-Daudésdhci_set_inserted(const char *level) "card state changed: %s" 108be487d8SPhilippe Mathieu-Daudésdhci_send_command(uint8_t cmd, uint32_t arg) "CMD%02u ARG[0x%08x]" 118be487d8SPhilippe Mathieu-Daudésdhci_error(const char *msg) "%s" 128be487d8SPhilippe Mathieu-Daudésdhci_response4(uint32_t r0) "RSPREG[31..0]=0x%08x" 138be487d8SPhilippe Mathieu-Daudésdhci_response16(uint32_t r3, uint32_t r2, uint32_t r1, uint32_t r0) "RSPREG[127..96]=0x%08x, RSPREG[95..64]=0x%08x, RSPREG[63..32]=0x%08x, RSPREG[31..0]=0x%08x" 148be487d8SPhilippe Mathieu-Daudésdhci_end_transfer(uint8_t cmd, uint32_t arg) "Automatically issue CMD%02u 0x%08x" 158be487d8SPhilippe Mathieu-Daudésdhci_adma(const char *desc, uint32_t sysad) "%s: admasysaddr=0x%" PRIx32 168be487d8SPhilippe Mathieu-Daudésdhci_adma_loop(uint64_t addr, uint16_t length, uint8_t attr) "addr=0x%08" PRIx64 ", len=%d, attr=0x%x" 178be487d8SPhilippe Mathieu-Daudésdhci_adma_transfer_completed(void) "" 188be487d8SPhilippe Mathieu-Daudésdhci_access(const char *access, unsigned int size, uint64_t offset, const char *dir, uint64_t val, uint64_t val2) "%s%u: addr[0x%04" PRIx64 "] %s 0x%08" PRIx64 " (%" PRIu64 ")" 198be487d8SPhilippe Mathieu-Daudésdhci_read_dataport(uint16_t data_count) "all %u bytes of data have been read from input buffer" 208be487d8SPhilippe Mathieu-Daudésdhci_write_dataport(uint16_t data_count) "write buffer filled with %u bytes of data" 216ff37c3dSPhilippe Mathieu-Daudésdhci_capareg(const char *desc, uint16_t val) "%s: %u" 228be487d8SPhilippe Mathieu-Daudé 231374aeccSDaniel P. Berrange# hw/sd/milkymist-memcard.c 248908eb1aSVladimir Sementsov-Ogievskiymilkymist_memcard_memory_read(uint32_t addr, uint32_t value) "addr 0x%08x value 0x%08x" 258908eb1aSVladimir Sementsov-Ogievskiymilkymist_memcard_memory_write(uint32_t addr, uint32_t value) "addr 0x%08x value 0x%08x" 26487b406aSPhilippe Mathieu-Daudé 27487b406aSPhilippe Mathieu-Daudé# hw/sd/pxa2xx_mmci.c 28487b406aSPhilippe Mathieu-Daudépxa2xx_mmci_read(uint8_t size, uint32_t addr, uint32_t value) "size %d addr 0x%02x value 0x%08x" 29487b406aSPhilippe Mathieu-Daudépxa2xx_mmci_write(uint8_t size, uint32_t addr, uint32_t value) "size %d addr 0x%02x value 0x%08x" 30