qemu

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

trace-events (18160B)


      1 # See docs/devel/tracing.rst for syntax documentation.
      2 
      3 # allwinner-cpucfg.c
      4 allwinner_cpucfg_cpu_reset(uint8_t cpu_id, uint32_t reset_addr) "id %u, reset_addr 0x%" PRIx32
      5 allwinner_cpucfg_read(uint64_t offset, uint64_t data, unsigned size) "offset 0x%" PRIx64 " data 0x%" PRIx64 " size %" PRIu32
      6 allwinner_cpucfg_write(uint64_t offset, uint64_t data, unsigned size) "offset 0x%" PRIx64 " data 0x%" PRIx64 " size %" PRIu32
      7 
      8 # allwinner-h3-dramc.c
      9 allwinner_h3_dramc_rowmirror_disable(void) "Disable row mirror"
     10 allwinner_h3_dramc_rowmirror_enable(uint64_t addr) "Enable row mirror: addr 0x%" PRIx64
     11 allwinner_h3_dramcom_read(uint64_t offset, uint64_t data, unsigned size) "Read: offset 0x%" PRIx64 " data 0x%" PRIx64 " size %" PRIu32
     12 allwinner_h3_dramcom_write(uint64_t offset, uint64_t data, unsigned size) "Write: offset 0x%" PRIx64 " data 0x%" PRIx64 " size %" PRIu32
     13 allwinner_h3_dramctl_read(uint64_t offset, uint64_t data, unsigned size) "Read: offset 0x%" PRIx64 " data 0x%" PRIx64 " size %" PRIu32
     14 allwinner_h3_dramctl_write(uint64_t offset, uint64_t data, unsigned size) "Write: offset 0x%" PRIx64 " data 0x%" PRIx64 " size %" PRIu32
     15 allwinner_h3_dramphy_read(uint64_t offset, uint64_t data, unsigned size) "Read: offset 0x%" PRIx64 " data 0x%" PRIx64 " size %" PRIu32
     16 allwinner_h3_dramphy_write(uint64_t offset, uint64_t data, unsigned size) "write: offset 0x%" PRIx64 " data 0x%" PRIx64 " size %" PRIu32
     17 
     18 # allwinner-sid.c
     19 allwinner_sid_read(uint64_t offset, uint64_t data, unsigned size) "offset 0x%" PRIx64 " data 0x%" PRIx64 " size %" PRIu32
     20 allwinner_sid_write(uint64_t offset, uint64_t data, unsigned size) "offset 0x%" PRIx64 " data 0x%" PRIx64 " size %" PRIu32
     21 
     22 # avr_power.c
     23 avr_power_read(uint8_t value) "power_reduc read value:%u"
     24 avr_power_write(uint8_t value) "power_reduc write value:%u"
     25 
     26 # eccmemctl.c
     27 ecc_mem_writel_mer(uint32_t val) "Write memory enable 0x%08x"
     28 ecc_mem_writel_mdr(uint32_t val) "Write memory delay 0x%08x"
     29 ecc_mem_writel_mfsr(uint32_t val) "Write memory fault status 0x%08x"
     30 ecc_mem_writel_vcr(uint32_t val) "Write slot configuration 0x%08x"
     31 ecc_mem_writel_dr(uint32_t val) "Write diagnostic 0x%08x"
     32 ecc_mem_writel_ecr0(uint32_t val) "Write event count 1 0x%08x"
     33 ecc_mem_writel_ecr1(uint32_t val) "Write event count 2 0x%08x"
     34 ecc_mem_readl_mer(uint32_t ret) "Read memory enable 0x%08x"
     35 ecc_mem_readl_mdr(uint32_t ret) "Read memory delay 0x%08x"
     36 ecc_mem_readl_mfsr(uint32_t ret) "Read memory fault status 0x%08x"
     37 ecc_mem_readl_vcr(uint32_t ret) "Read slot configuration 0x%08x"
     38 ecc_mem_readl_mfar0(uint32_t ret) "Read memory fault address 0 0x%08x"
     39 ecc_mem_readl_mfar1(uint32_t ret) "Read memory fault address 1 0x%08x"
     40 ecc_mem_readl_dr(uint32_t ret) "Read diagnostic 0x%08x"
     41 ecc_mem_readl_ecr0(uint32_t ret) "Read event count 1 0x%08x"
     42 ecc_mem_readl_ecr1(uint32_t ret) "Read event count 2 0x%08x"
     43 ecc_diag_mem_writeb(uint64_t addr, uint32_t val) "Write diagnostic %"PRId64" = 0x%02x"
     44 ecc_diag_mem_readb(uint64_t addr, uint32_t ret) "Read diagnostic %"PRId64"= 0x%02x"
     45 
     46 # empty_slot.c
     47 empty_slot_write(uint64_t addr, unsigned width, uint64_t value, unsigned size, const char *name) "wr addr:0x%04"PRIx64" data:0x%0*"PRIx64" size %u [%s]"
     48 
     49 # slavio_misc.c
     50 slavio_misc_update_irq_raise(void) "Raise IRQ"
     51 slavio_misc_update_irq_lower(void) "Lower IRQ"
     52 slavio_set_power_fail(int power_failing, uint8_t config) "Power fail: %d, config: %d"
     53 slavio_cfg_mem_writeb(uint32_t val) "Write config 0x%02x"
     54 slavio_cfg_mem_readb(uint32_t ret) "Read config 0x%02x"
     55 slavio_diag_mem_writeb(uint32_t val) "Write diag 0x%02x"
     56 slavio_diag_mem_readb(uint32_t ret) "Read diag 0x%02x"
     57 slavio_mdm_mem_writeb(uint32_t val) "Write modem control 0x%02x"
     58 slavio_mdm_mem_readb(uint32_t ret) "Read modem control 0x%02x"
     59 slavio_aux1_mem_writeb(uint32_t val) "Write aux1 0x%02x"
     60 slavio_aux1_mem_readb(uint32_t ret) "Read aux1 0x%02x"
     61 slavio_aux2_mem_writeb(uint32_t val) "Write aux2 0x%02x"
     62 slavio_aux2_mem_readb(uint32_t ret) "Read aux2 0x%02x"
     63 apc_mem_writeb(uint32_t val) "Write power management 0x%02x"
     64 apc_mem_readb(uint32_t ret) "Read power management 0x%02x"
     65 slavio_sysctrl_mem_writel(uint32_t val) "Write system control 0x%08x"
     66 slavio_sysctrl_mem_readl(uint32_t ret) "Read system control 0x%08x"
     67 slavio_led_mem_writew(uint32_t val) "Write diagnostic LED 0x%04x"
     68 slavio_led_mem_readw(uint32_t ret) "Read diagnostic LED 0x%04x"
     69 
     70 # aspeed_scu.c
     71 aspeed_scu_write(uint64_t offset, unsigned size, uint32_t data) "To 0x%" PRIx64 " of size %u: 0x%" PRIx32
     72 aspeed_scu_read(uint64_t offset, unsigned size, uint32_t data) "To 0x%" PRIx64 " of size %u: 0x%" PRIx32
     73 
     74 # mps2-scc.c
     75 mps2_scc_read(uint64_t offset, uint64_t data, unsigned size) "MPS2 SCC read: offset 0x%" PRIx64 " data 0x%" PRIx64 " size %u"
     76 mps2_scc_write(uint64_t offset, uint64_t data, unsigned size) "MPS2 SCC write: offset 0x%" PRIx64 " data 0x%" PRIx64 " size %u"
     77 mps2_scc_reset(void) "MPS2 SCC: reset"
     78 mps2_scc_cfg_write(unsigned function, unsigned device, uint32_t value) "MPS2 SCC config write: function %d device %d data 0x%" PRIx32
     79 mps2_scc_cfg_read(unsigned function, unsigned device, uint32_t value) "MPS2 SCC config read: function %d device %d data 0x%" PRIx32
     80 
     81 # mps2-fpgaio.c
     82 mps2_fpgaio_read(uint64_t offset, uint64_t data, unsigned size) "MPS2 FPGAIO read: offset 0x%" PRIx64 " data 0x%" PRIx64 " size %u"
     83 mps2_fpgaio_write(uint64_t offset, uint64_t data, unsigned size) "MPS2 FPGAIO write: offset 0x%" PRIx64 " data 0x%" PRIx64 " size %u"
     84 mps2_fpgaio_reset(void) "MPS2 FPGAIO: reset"
     85 
     86 # msf2-sysreg.c
     87 msf2_sysreg_write(uint64_t offset, uint32_t val, uint32_t prev) "msf2-sysreg write: addr 0x%08" PRIx64 " data 0x%" PRIx32 " prev 0x%" PRIx32
     88 msf2_sysreg_read(uint64_t offset, uint32_t val) "msf2-sysreg read: addr 0x%08" PRIx64 " data 0x%08" PRIx32
     89 msf2_sysreg_write_pll_status(void) "Invalid write to read only PLL status register"
     90 
     91 # imx7_gpr.c
     92 imx7_gpr_read(uint64_t offset) "addr 0x%08" PRIx64
     93 imx7_gpr_write(uint64_t offset, uint64_t value) "addr 0x%08" PRIx64 "value 0x%08" PRIx64
     94 
     95 # mos6522.c
     96 mos6522_set_counter(int index, unsigned int val) "T%d.counter=%d"
     97 mos6522_get_next_irq_time(uint16_t latch, int64_t d, int64_t delta) "latch=%d counter=0x%"PRIx64 " delta_next=0x%"PRIx64
     98 mos6522_set_sr_int(void) "set sr_int"
     99 mos6522_write(uint64_t addr, const char *name, uint64_t val) "reg=0x%"PRIx64 " [%s] val=0x%"PRIx64
    100 mos6522_read(uint64_t addr, const char *name, unsigned val) "reg=0x%"PRIx64 " [%s] val=0x%x"
    101 
    102 # npcm7xx_clk.c
    103 npcm7xx_clk_read(uint64_t offset, uint32_t value) " offset: 0x%04" PRIx64 " value: 0x%08" PRIx32
    104 npcm7xx_clk_write(uint64_t offset, uint32_t value) "offset: 0x%04" PRIx64 " value: 0x%08" PRIx32
    105 
    106 # npcm7xx_gcr.c
    107 npcm7xx_gcr_read(uint64_t offset, uint32_t value) " offset: 0x%04" PRIx64 " value: 0x%08" PRIx32
    108 npcm7xx_gcr_write(uint64_t offset, uint32_t value) "offset: 0x%04" PRIx64 " value: 0x%08" PRIx32
    109 
    110 # npcm7xx_mft.c
    111 npcm7xx_mft_read(const char *name, uint64_t offset, uint16_t value) "%s: offset: 0x%04" PRIx64 " value: 0x%04" PRIx16
    112 npcm7xx_mft_write(const char *name, uint64_t offset, uint16_t value) "%s: offset: 0x%04" PRIx64 " value: 0x%04" PRIx16
    113 npcm7xx_mft_rpm(const char *clock, uint32_t clock_hz, int state, int32_t cnt, uint32_t rpm, uint32_t duty) " fan clk: %s clock_hz: %" PRIu32 ", state: %d, cnt: %" PRIi32 ", rpm: %" PRIu32 ", duty: %" PRIu32
    114 npcm7xx_mft_capture(const char *name, int irq_level) "%s: level: %d"
    115 npcm7xx_mft_update_clock(const char *name, uint16_t sel, uint64_t clock_period, uint64_t prescaled_clock_period) "%s: sel: 0x%02" PRIx16 ", period: %" PRIu64 ", prescaled: %" PRIu64
    116 npcm7xx_mft_set_duty(const char *name, int n, int value) "%s[%d]: %d"
    117 
    118 # npcm7xx_rng.c
    119 npcm7xx_rng_read(uint64_t offset, uint64_t value, unsigned size) "offset: 0x%04" PRIx64 " value: 0x%02" PRIx64 " size: %u"
    120 npcm7xx_rng_write(uint64_t offset, uint64_t value, unsigned size) "offset: 0x%04" PRIx64 " value: 0x%02" PRIx64 " size: %u"
    121 
    122 # npcm7xx_pwm.c
    123 npcm7xx_pwm_read(const char *id, uint64_t offset, uint32_t value) "%s offset: 0x%04" PRIx64 " value: 0x%08" PRIx32
    124 npcm7xx_pwm_write(const char *id, uint64_t offset, uint32_t value) "%s offset: 0x%04" PRIx64 " value: 0x%08" PRIx32
    125 npcm7xx_pwm_update_freq(const char *id, uint8_t index, uint32_t old_value, uint32_t new_value) "%s pwm[%u] Update Freq: old_freq: %u, new_freq: %u"
    126 npcm7xx_pwm_update_duty(const char *id, uint8_t index, uint32_t old_value, uint32_t new_value) "%s pwm[%u] Update Duty: old_duty: %u, new_duty: %u"
    127 
    128 # stm32f4xx_syscfg.c
    129 stm32f4xx_syscfg_set_irq(int gpio, int line, int level) "Interrupt: GPIO: %d, Line: %d; Level: %d"
    130 stm32f4xx_pulse_exti(int irq) "Pulse EXTI: %d"
    131 stm32f4xx_syscfg_read(uint64_t addr) "reg read: addr: 0x%" PRIx64 " "
    132 stm32f4xx_syscfg_write(uint64_t addr, uint64_t data) "reg write: addr: 0x%" PRIx64 " val: 0x%" PRIx64 ""
    133 
    134 # stm32f4xx_exti.c
    135 stm32f4xx_exti_set_irq(int irq, int leve) "Set EXTI: %d to %d"
    136 stm32f4xx_exti_read(uint64_t addr) "reg read: addr: 0x%" PRIx64 " "
    137 stm32f4xx_exti_write(uint64_t addr, uint64_t data) "reg write: addr: 0x%" PRIx64 " val: 0x%" PRIx64 ""
    138 
    139 # tz-mpc.c
    140 tz_mpc_reg_read(uint32_t offset, uint64_t data, unsigned size) "TZ MPC regs read: offset 0x%x data 0x%" PRIx64 " size %u"
    141 tz_mpc_reg_write(uint32_t offset, uint64_t data, unsigned size) "TZ MPC regs write: offset 0x%x data 0x%" PRIx64 " size %u"
    142 tz_mpc_mem_blocked_read(uint64_t addr, unsigned size, bool secure) "TZ MPC blocked read: offset 0x%" PRIx64 " size %u secure %d"
    143 tz_mpc_mem_blocked_write(uint64_t addr, uint64_t data, unsigned size, bool secure) "TZ MPC blocked write: offset 0x%" PRIx64 " data 0x%" PRIx64 " size %u secure %d"
    144 tz_mpc_translate(uint64_t addr, int flags, const char *idx, const char *res) "TZ MPC translate: addr 0x%" PRIx64 " flags 0x%x iommu_idx %s: %s"
    145 tz_mpc_iommu_notify(uint64_t addr) "TZ MPC iommu: notifying UNMAP/MAP for 0x%" PRIx64
    146 
    147 # tz-msc.c
    148 tz_msc_reset(void) "TZ MSC: reset"
    149 tz_msc_cfg_nonsec(int level) "TZ MSC: cfg_nonsec = %d"
    150 tz_msc_cfg_sec_resp(int level) "TZ MSC: cfg_sec_resp = %d"
    151 tz_msc_irq_clear(int level) "TZ MSC: int_clear = %d"
    152 tz_msc_update_irq(int level) "TZ MSC: setting irq line to %d"
    153 tz_msc_access_blocked(uint64_t offset) "TZ MSC: offset 0x%" PRIx64 " access blocked"
    154 
    155 # tz-ppc.c
    156 tz_ppc_reset(void) "TZ PPC: reset"
    157 tz_ppc_cfg_nonsec(int n, int level) "TZ PPC: cfg_nonsec[%d] = %d"
    158 tz_ppc_cfg_ap(int n, int level) "TZ PPC: cfg_ap[%d] = %d"
    159 tz_ppc_cfg_sec_resp(int level) "TZ PPC: cfg_sec_resp = %d"
    160 tz_ppc_irq_enable(int level) "TZ PPC: int_enable = %d"
    161 tz_ppc_irq_clear(int level) "TZ PPC: int_clear = %d"
    162 tz_ppc_update_irq(int level) "TZ PPC: setting irq line to %d"
    163 tz_ppc_read_blocked(int n, uint64_t offset, bool secure, bool user) "TZ PPC: port %d offset 0x%" PRIx64 " read (secure %d user %d) blocked"
    164 tz_ppc_write_blocked(int n, uint64_t offset, bool secure, bool user) "TZ PPC: port %d offset 0x%" PRIx64 " write (secure %d user %d) blocked"
    165 
    166 # iotkit-secctl.c
    167 iotkit_secctl_s_read(uint32_t offset, uint64_t data, unsigned size) "IoTKit SecCtl S regs read: offset 0x%x data 0x%" PRIx64 " size %u"
    168 iotkit_secctl_s_write(uint32_t offset, uint64_t data, unsigned size) "IoTKit SecCtl S regs write: offset 0x%x data 0x%" PRIx64 " size %u"
    169 iotkit_secctl_ns_read(uint32_t offset, uint64_t data, unsigned size) "IoTKit SecCtl NS regs read: offset 0x%x data 0x%" PRIx64 " size %u"
    170 iotkit_secctl_ns_write(uint32_t offset, uint64_t data, unsigned size) "IoTKit SecCtl NS regs write: offset 0x%x data 0x%" PRIx64 " size %u"
    171 
    172 # imx6ul_ccm.c
    173 ccm_entry(void) ""
    174 ccm_freq(uint32_t freq) "freq = %d"
    175 ccm_clock_freq(uint32_t clock, uint32_t freq) "(Clock = %d) = %d"
    176 ccm_read_reg(const char *reg_name, uint32_t value) "reg[%s] <= 0x%" PRIx32
    177 ccm_write_reg(const char *reg_name, uint32_t value) "reg[%s] => 0x%" PRIx32
    178 
    179 # iotkit-sysinfo.c
    180 iotkit_sysinfo_read(uint64_t offset, uint64_t data, unsigned size) "IoTKit SysInfo read: offset 0x%" PRIx64 " data 0x%" PRIx64 " size %u"
    181 iotkit_sysinfo_write(uint64_t offset, uint64_t data, unsigned size) "IoTKit SysInfo write: offset 0x%" PRIx64 " data 0x%" PRIx64 " size %u"
    182 
    183 # iotkit-sysctl.c
    184 iotkit_sysctl_read(uint64_t offset, uint64_t data, unsigned size) "IoTKit SysCtl read: offset 0x%" PRIx64 " data 0x%" PRIx64 " size %u"
    185 iotkit_sysctl_write(uint64_t offset, uint64_t data, unsigned size) "IoTKit SysCtl write: offset 0x%" PRIx64 " data 0x%" PRIx64 " size %u"
    186 iotkit_sysctl_reset(void) "IoTKit SysCtl: reset"
    187 
    188 # armsse-cpu-pwrctrl.c
    189 armsse_cpu_pwrctrl_read(uint64_t offset, uint64_t data, unsigned size) "SSE-300 CPU_PWRCTRL read: offset 0x%" PRIx64 " data 0x%" PRIx64 " size %u"
    190 armsse_cpu_pwrctrl_write(uint64_t offset, uint64_t data, unsigned size) "SSE-300 CPU_PWRCTRL write: offset 0x%" PRIx64 " data 0x%" PRIx64 " size %u"
    191 
    192 # armsse-cpuid.c
    193 armsse_cpuid_read(uint64_t offset, uint64_t data, unsigned size) "SSE-200 CPU_IDENTITY read: offset 0x%" PRIx64 " data 0x%" PRIx64 " size %u"
    194 armsse_cpuid_write(uint64_t offset, uint64_t data, unsigned size) "SSE-200 CPU_IDENTITY write: offset 0x%" PRIx64 " data 0x%" PRIx64 " size %u"
    195 
    196 # armsse-mhu.c
    197 armsse_mhu_read(uint64_t offset, uint64_t data, unsigned size) "SSE-200 MHU read: offset 0x%" PRIx64 " data 0x%" PRIx64 " size %u"
    198 armsse_mhu_write(uint64_t offset, uint64_t data, unsigned size) "SSE-200 MHU write: offset 0x%" PRIx64 " data 0x%" PRIx64 " size %u"
    199 
    200 # aspeed_xdma.c
    201 aspeed_xdma_write(uint64_t offset, uint64_t data) "XDMA write: offset 0x%" PRIx64 " data 0x%" PRIx64
    202 
    203 # aspeed_i3c.c
    204 aspeed_i3c_read(uint64_t offset, uint64_t data) "I3C read: offset 0x%" PRIx64 " data 0x%" PRIx64
    205 aspeed_i3c_write(uint64_t offset, uint64_t data) "I3C write: offset 0x%" PRIx64 " data 0x%" PRIx64
    206 aspeed_i3c_device_read(uint32_t deviceid, uint64_t offset, uint64_t data) "I3C Dev[%u] read: offset 0x%" PRIx64 " data 0x%" PRIx64
    207 aspeed_i3c_device_write(uint32_t deviceid, uint64_t offset, uint64_t data) "I3C Dev[%u] write: offset 0x%" PRIx64 " data 0x%" PRIx64
    208 
    209 # aspeed_sdmc.c
    210 aspeed_sdmc_write(uint64_t reg, uint64_t data) "reg @0x%" PRIx64 " data: 0x%" PRIx64
    211 aspeed_sdmc_read(uint64_t reg, uint64_t data) "reg @0x%" PRIx64 " data: 0x%" PRIx64
    212 
    213 # aspeed_peci.c
    214 aspeed_peci_read(uint64_t offset, uint64_t data) "offset 0x%" PRIx64 " data 0x%" PRIx64
    215 aspeed_peci_write(uint64_t offset, uint64_t data) "offset 0x%" PRIx64 " data 0x%" PRIx64
    216 aspeed_peci_raise_interrupt(uint32_t ctrl, uint32_t status) "ctrl 0x%" PRIx32 " status 0x%" PRIx32
    217 
    218 # bcm2835_property.c
    219 bcm2835_mbox_property(uint32_t tag, uint32_t bufsize, size_t resplen) "mbox property tag:0x%08x in_sz:%u out_sz:%zu"
    220 
    221 # bcm2835_mbox.c
    222 bcm2835_mbox_write(unsigned int size, uint64_t addr, uint64_t value) "mbox write sz:%u addr:0x%"PRIx64" data:0x%"PRIx64
    223 bcm2835_mbox_read(unsigned int size, uint64_t addr, uint64_t value) "mbox read sz:%u addr:0x%"PRIx64" data:0x%"PRIx64
    224 bcm2835_mbox_irq(unsigned level) "mbox irq:ARM level:%u"
    225 
    226 # mac_via.c
    227 via1_rtc_update_data_out(int count, int value) "count=%d value=0x%02x"
    228 via1_rtc_update_data_in(int count, int value) "count=%d value=0x%02x"
    229 via1_rtc_internal_status(int cmd, int alt, int value) "cmd=0x%02x alt=0x%02x value=0x%02x"
    230 via1_rtc_internal_cmd(int cmd) "cmd=0x%02x"
    231 via1_rtc_cmd_invalid(int value) "value=0x%02x"
    232 via1_rtc_internal_time(uint32_t time) "time=0x%08x"
    233 via1_rtc_internal_set_cmd(int cmd) "cmd=0x%02x"
    234 via1_rtc_internal_ignore_cmd(int cmd) "cmd=0x%02x"
    235 via1_rtc_internal_set_alt(int alt, int sector, int offset) "alt=0x%02x sector=%u offset=%u"
    236 via1_rtc_cmd_seconds_read(int reg, int value) "reg=%d value=0x%02x"
    237 via1_rtc_cmd_seconds_write(int reg, int value) "reg=%d value=0x%02x"
    238 via1_rtc_cmd_test_write(int value) "value=0x%02x"
    239 via1_rtc_cmd_wprotect_write(int value) "value=0x%02x"
    240 via1_rtc_cmd_pram_read(int addr, int value) "addr=%u value=0x%02x"
    241 via1_rtc_cmd_pram_write(int addr, int value) "addr=%u value=0x%02x"
    242 via1_rtc_cmd_pram_sect_read(int sector, int offset, int addr, int value) "sector=%u offset=%u addr=0x%x value=0x%02x"
    243 via1_rtc_cmd_pram_sect_write(int sector, int offset, int addr, int value) "sector=%u offset=%u addr=0x%x value=0x%02x"
    244 via1_adb_send(const char *state, uint8_t data, const char *vadbint) "state %s data=0x%02x vADBInt=%s"
    245 via1_adb_receive(const char *state, uint8_t data, const char *vadbint, int status, int index, int size) "state %s data=0x%02x vADBInt=%s status=0x%x index=%d size=%d"
    246 via1_adb_poll(uint8_t data, const char *vadbint, int status, int index, int size) "data=0x%02x vADBInt=%s status=0x%x index=%d size=%d"
    247 via1_auxmode(int mode) "setting auxmode to %d"
    248 
    249 # grlib_ahb_apb_pnp.c
    250 grlib_ahb_pnp_read(uint64_t addr, unsigned size, uint32_t value) "AHB PnP read addr:0x%03"PRIx64" size:%u data:0x%08x"
    251 grlib_apb_pnp_read(uint64_t addr, unsigned size, uint32_t value) "APB PnP read addr:0x%03"PRIx64" size:%u data:0x%08x"
    252 
    253 # led.c
    254 led_set_intensity(const char *color, const char *desc, uint8_t intensity_percent) "LED desc:'%s' color:%s intensity: %u%%"
    255 led_change_intensity(const char *color, const char *desc, uint8_t old_intensity_percent, uint8_t new_intensity_percent) "LED desc:'%s' color:%s intensity %u%% -> %u%%"
    256 
    257 # pca9552.c
    258 pca955x_gpio_status(const char *description, const char *buf) "%s GPIOs 0-15 [%s]"
    259 pca955x_gpio_change(const char *description, unsigned id, unsigned prev_state, unsigned current_state) "%s GPIO id:%u status: %u -> %u"
    260 
    261 # bcm2835_cprman.c
    262 bcm2835_cprman_read(uint64_t offset, uint64_t value) "offset:0x%" PRIx64 " value:0x%" PRIx64
    263 bcm2835_cprman_write(uint64_t offset, uint64_t value) "offset:0x%" PRIx64 " value:0x%" PRIx64
    264 bcm2835_cprman_write_invalid_magic(uint64_t offset, uint64_t value) "offset:0x%" PRIx64 " value:0x%" PRIx64
    265 
    266 # virt_ctrl.c
    267 virt_ctrl_read(void *dev, unsigned int addr, unsigned int size, uint64_t value) "ctrl: %p reg: 0x%02x size: %d value: 0x%"PRIx64
    268 virt_ctrl_write(void *dev, unsigned int addr, unsigned int size, uint64_t value) "ctrl: %p reg: 0x%02x size: %d value: 0x%"PRIx64
    269 virt_ctrl_reset(void *dev) "ctrl: %p"
    270 virt_ctrl_realize(void *dev) "ctrl: %p"
    271 virt_ctrl_instance_init(void *dev) "ctrl: %p"
    272 
    273 # lasi.c
    274 lasi_chip_mem_valid(uint64_t addr, uint32_t val) "access to addr 0x%"PRIx64" is %d"
    275 lasi_chip_read(uint64_t addr, uint32_t val) "addr 0x%"PRIx64" val 0x%08x"
    276 lasi_chip_write(uint64_t addr, uint32_t val) "addr 0x%"PRIx64" val 0x%08x"