108bb9b34SPhilippe Mathieu-Daudé# See docs/devel/tracing.txt for syntax documentation. 208bb9b34SPhilippe Mathieu-Daudé 3500016e5SMarkus Armbruster# core.c 408bb9b34SPhilippe Mathieu-Daudé 508bb9b34SPhilippe Mathieu-Daudéi2c_event(const char *event, uint8_t address) "%s(addr:0x%02x)" 608bb9b34SPhilippe Mathieu-Daudéi2c_send(uint8_t address, uint8_t data) "send(addr:0x%02x) data:0x%02x" 708bb9b34SPhilippe Mathieu-Daudéi2c_recv(uint8_t address, uint8_t data) "recv(addr:0x%02x) data:0x%02x" 8*66cc84a1SCédric Le Goater 9*66cc84a1SCédric Le Goater# aspeed_i2c.c 10*66cc84a1SCédric Le Goater 11*66cc84a1SCédric Le Goateraspeed_i2c_bus_cmd(uint32_t cmd, const char *cmd_flags, uint32_t count, uint32_t intr_status) "handling cmd=0x%x %s count=%d intr=0x%x" 12*66cc84a1SCédric Le Goateraspeed_i2c_bus_raise_interrupt(uint32_t intr_status, const char *str1, const char *str2, const char *str3, const char *str4, const char *str5) "handled intr=0x%x %s%s%s%s%s" 13*66cc84a1SCédric Le Goateraspeed_i2c_bus_read(uint32_t busid, uint64_t offset, unsigned size, uint64_t value) "bus[%d]: To 0x%" PRIx64 " of size %u: 0x%" PRIx64 14*66cc84a1SCédric Le Goateraspeed_i2c_bus_write(uint32_t busid, uint64_t offset, unsigned size, uint64_t value) "bus[%d]: To 0x%" PRIx64 " of size %u: 0x%" PRIx64 15*66cc84a1SCédric Le Goateraspeed_i2c_bus_send(const char *mode, int i, int count, uint8_t byte) "%s send %d/%d 0x%02x" 16*66cc84a1SCédric Le Goateraspeed_i2c_bus_recv(const char *mode, int i, int count, uint8_t byte) "%s recv %d/%d 0x%02x" 17