2021-05-17 18:16:58 +03:00
|
|
|
# See docs/devel/tracing.rst for syntax documentation.
|
2018-08-20 13:24:33 +03:00
|
|
|
|
2023-04-20 12:21:13 +03:00
|
|
|
# allwinner-wdt.c
|
|
|
|
allwinner_wdt_read(uint64_t offset, uint64_t data, unsigned size) "Allwinner watchdog read: offset 0x%" PRIx64 " data 0x%" PRIx64 " size %u"
|
|
|
|
allwinner_wdt_write(uint64_t offset, uint64_t data, unsigned size) "Allwinner watchdog write: offset 0x%" PRIx64 " data 0x%" PRIx64 " size %u"
|
|
|
|
allwinner_wdt_reset_enter(void) "Allwinner watchdog: reset"
|
|
|
|
allwinner_wdt_update_timer(uint8_t count) "Allwinner watchdog: count %" PRIu8
|
|
|
|
allwinner_wdt_expired(bool enabled, bool reset_enabled) "Allwinner watchdog: enabled %u reset_enabled %u"
|
|
|
|
|
2019-03-14 21:09:29 +03:00
|
|
|
# cmsdk-apb-watchdog.c
|
2018-08-20 13:24:33 +03:00
|
|
|
cmsdk_apb_watchdog_read(uint64_t offset, uint64_t data, unsigned size) "CMSDK APB watchdog read: offset 0x%" PRIx64 " data 0x%" PRIx64 " size %u"
|
|
|
|
cmsdk_apb_watchdog_write(uint64_t offset, uint64_t data, unsigned size) "CMSDK APB watchdog write: offset 0x%" PRIx64 " data 0x%" PRIx64 " size %u"
|
|
|
|
cmsdk_apb_watchdog_reset(void) "CMSDK APB watchdog: reset"
|
2020-06-17 10:25:26 +03:00
|
|
|
cmsdk_apb_watchdog_lock(uint32_t lock) "CMSDK APB watchdog: lock %" PRIu32
|
2021-10-12 09:20:08 +03:00
|
|
|
|
|
|
|
# wdt-aspeed.c
|
|
|
|
aspeed_wdt_read(uint64_t addr, uint32_t size) "@0x%" PRIx64 " size=%d"
|
|
|
|
aspeed_wdt_write(uint64_t addr, uint32_t size, uint64_t data) "@0x%" PRIx64 " size=%d value=0x%"PRIx64
|
2022-06-22 08:10:08 +03:00
|
|
|
|
2023-10-28 15:24:10 +03:00
|
|
|
# wdt_imx2.c
|
|
|
|
imx2_wdt_read(uint32_t addr, uint16_t data) "[0x%" PRIx32 "] -> 0x%" PRIx16
|
|
|
|
imx2_wdt_write(uint32_t addr, uint16_t data) "[0x%" PRIx32 "] <- 0x%" PRIx16
|
2023-10-28 15:24:11 +03:00
|
|
|
imx2_wdt_interrupt(void) ""
|
|
|
|
imx2_wdt_expired(void) ""
|
2023-10-28 15:24:10 +03:00
|
|
|
|
2022-06-22 08:10:08 +03:00
|
|
|
# spapr_watchdog.c
|
|
|
|
spapr_watchdog_start(uint64_t flags, uint64_t num, uint64_t timeout) "Flags 0x%" PRIx64 " num=%" PRId64 " %" PRIu64 "ms"
|
|
|
|
spapr_watchdog_stop(uint64_t num, uint64_t ret) "num=%" PRIu64 " ret=%" PRId64
|
|
|
|
spapr_watchdog_query(uint64_t caps) "caps=0x%" PRIx64
|
|
|
|
spapr_watchdog_query_lpm(uint64_t caps) "caps=0x%" PRIx64
|
|
|
|
spapr_watchdog_expired(uint64_t num, unsigned action) "num=%" PRIu64 " action=%u"
|
2022-12-16 15:57:47 +03:00
|
|
|
|
|
|
|
# watchdog.c
|
|
|
|
watchdog_perform_action(unsigned int action) "action=%u"
|
|
|
|
watchdog_set_action(unsigned int action) "action=%u"
|