qemu

FORK: QEMU emulator
git clone https://git.neptards.moe/neptards/qemu.git
Log | Files | Refs | Submodules | LICENSE

trace-events (2290B)


      1 # See docs/devel/tracing.rst for syntax documentation.
      2 
      3 # cuda.c
      4 cuda_delay_set_sr_int(void) ""
      5 cuda_data_send(uint8_t data) "send: 0x%02x"
      6 cuda_data_recv(uint8_t data) "recv: 0x%02x"
      7 cuda_receive_packet_cmd(const char *cmd) "handling command %s"
      8 cuda_packet_receive(int len) "length %d"
      9 cuda_packet_receive_data(int i, const uint8_t data) "[%d] 0x%02x"
     10 cuda_packet_send(int len) "length %d"
     11 cuda_packet_send_data(int i, const uint8_t data) "[%d] 0x%02x"
     12 
     13 # macio.c
     14 macio_timer_write(uint64_t addr, unsigned len, uint64_t val) "write addr 0x%"PRIx64 " len %d val 0x%"PRIx64
     15 macio_timer_read(uint64_t addr, unsigned len, uint32_t val) "read addr 0x%"PRIx64 " len %d val 0x%"PRIx32
     16 
     17 # gpio.c
     18 macio_set_gpio(int gpio, bool state) "setting GPIO %d to %d"
     19 macio_gpio_irq_assert(int gpio) "asserting GPIO %d"
     20 macio_gpio_irq_deassert(int gpio) "deasserting GPIO %d"
     21 macio_gpio_write(uint64_t addr, uint64_t val) "addr: 0x%"PRIx64" value: 0x%"PRIx64
     22 
     23 # pmu.c
     24 pmu_adb_poll(int olen) "ADB autopoll, olen=%d"
     25 pmu_one_sec_timer(void) "PMU one sec..."
     26 pmu_cmd_set_int_mask(int intmask) "Setting PMU int mask to 0x%02x"
     27 pmu_cmd_set_adb_autopoll(int mask) "ADB set autopoll, mask=0x%04x"
     28 pmu_cmd_adb_nobus(void) "ADB PACKET with no ADB bus!"
     29 pmu_cmd_adb_request(int inlen, int indata0, int indata1, int indata2, int indata3, int indata4) "ADB request: len=%d, cmd=0x%02x, pflags=0x%02x, adblen=%d: 0x%02x 0x%02x..."
     30 pmu_cmd_adb_reply(int len) "ADB reply is %d bytes"
     31 pmu_dispatch_cmd(const char *name) "handling command %s"
     32 pmu_dispatch_unknown_cmd(int cmd) "Unknown PMU command 0x%02x"
     33 pmu_debug_protocol_string(const char *str) "%s"
     34 pmu_debug_protocol_resp_size(int size) "sending %d resp bytes"
     35 pmu_debug_protocol_error(int portB) "protocol error! portB=0x%02x"
     36 pmu_debug_protocol_clear_treq(int state) "TREQ cleared, clearing TACK, state: %d"
     37 pmu_debug_protocol_cmd(int cmd, int cmdlen, int rsplen) "Got command byte 0x%02x, clen=%d, rlen=%d"
     38 pmu_debug_protocol_cmdlen(int len) "got cmd length byte: %d"
     39 pmu_debug_protocol_cmd_toobig(int len) "command too big (%d bytes)"
     40 pmu_debug_protocol_cmd_send_resp_size(int len) "sending length byte: %d"
     41 pmu_debug_protocol_cmd_send_resp(int pos, int len) "sending byte: %d/%d"
     42 pmu_debug_protocol_cmd_resp_complete(int ier) "Response send complete. IER=0x%02x"