2017-07-29 01:46:05 +03:00
|
|
|
# See docs/devel/tracing.txt for syntax documentation.
|
2017-01-25 19:14:12 +03:00
|
|
|
|
|
|
|
# include/hw/xen/xen_common.h
|
|
|
|
xen_default_ioreq_server(void) ""
|
|
|
|
xen_ioreq_server_create(uint32_t id) "id: %u"
|
|
|
|
xen_ioreq_server_destroy(uint32_t id) "id: %u"
|
|
|
|
xen_ioreq_server_state(uint32_t id, bool enable) "id: %u: enable: %i"
|
2017-07-31 19:01:33 +03:00
|
|
|
xen_map_mmio_range(uint32_t id, uint64_t start_addr, uint64_t end_addr) "id: %u start: 0x%"PRIx64" end: 0x%"PRIx64
|
|
|
|
xen_unmap_mmio_range(uint32_t id, uint64_t start_addr, uint64_t end_addr) "id: %u start: 0x%"PRIx64" end: 0x%"PRIx64
|
|
|
|
xen_map_portio_range(uint32_t id, uint64_t start_addr, uint64_t end_addr) "id: %u start: 0x%"PRIx64" end: 0x%"PRIx64
|
|
|
|
xen_unmap_portio_range(uint32_t id, uint64_t start_addr, uint64_t end_addr) "id: %u start: 0x%"PRIx64" end: 0x%"PRIx64
|
2017-01-25 19:14:12 +03:00
|
|
|
xen_map_pcidev(uint32_t id, uint8_t bus, uint8_t dev, uint8_t func) "id: %u bdf: %02x.%02x.%02x"
|
|
|
|
xen_unmap_pcidev(uint32_t id, uint8_t bus, uint8_t dev, uint8_t func) "id: %u bdf: %02x.%02x.%02x"
|
2017-03-22 12:39:15 +03:00
|
|
|
xen_domid_restrict(int err) "err: %u"
|
2019-01-08 17:48:47 +03:00
|
|
|
|
|
|
|
# include/hw/xen/xen-bus.c
|
|
|
|
xen_bus_realize(void) ""
|
|
|
|
xen_bus_unrealize(void) ""
|
2019-01-08 17:48:49 +03:00
|
|
|
xen_device_realize(const char *type, char *name) "type: %s name: %s"
|
|
|
|
xen_device_unrealize(const char *type, char *name) "type: %s name: %s"
|
|
|
|
xen_device_backend_state(const char *type, char *name, const char *state) "type: %s name: %s -> %s"
|
|
|
|
xen_device_frontend_state(const char *type, char *name, const char *state) "type: %s name: %s -> %s"
|
|
|
|
|
|
|
|
# include/hw/xen/xen-bus-helper.c
|
|
|
|
xs_node_create(const char *node) "%s"
|
|
|
|
xs_node_destroy(const char *node) "%s"
|
|
|
|
xs_node_vprintf(char *path, char *value) "%s %s"
|
|
|
|
xs_node_vscanf(char *path, char *value) "%s %s"
|