2017-07-29 00:46:05 +02:00
|
|
|
# See docs/devel/tracing.txt for syntax documentation.
|
2017-01-25 17:14:12 +01:00
|
|
|
|
2019-03-14 19:09:26 +01:00
|
|
|
# ../../include/hw/xen/xen_common.h
|
2017-01-25 17:14:12 +01:00
|
|
|
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 18:01:33 +02: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 17:14:12 +01: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 10:39:15 +01:00
|
|
|
xen_domid_restrict(int err) "err: %u"
|
2019-01-08 15:48:47 +01:00
|
|
|
|
2019-03-14 19:09:26 +01:00
|
|
|
# xen-bus.c
|
2019-01-08 15:48:47 +01:00
|
|
|
xen_bus_realize(void) ""
|
|
|
|
xen_bus_unrealize(void) ""
|
2019-01-08 15:49:00 +01:00
|
|
|
xen_bus_enumerate(void) ""
|
2019-09-13 10:21:58 +02:00
|
|
|
xen_bus_cleanup(void) ""
|
2019-01-08 15:49:00 +01:00
|
|
|
xen_bus_type_enumerate(const char *type) "type: %s"
|
|
|
|
xen_bus_backend_create(const char *type, const char *path) "type: %s path: %s"
|
2019-09-13 10:21:58 +02:00
|
|
|
xen_bus_device_cleanup(const char *type, char *name) "type: %s name: %s"
|
2019-09-13 10:21:56 +02:00
|
|
|
xen_bus_add_watch(const char *node, const char *key) "node: %s key: %s"
|
|
|
|
xen_bus_remove_watch(const char *node, const char *key) "node: %s key: %s"
|
2019-01-08 15:48:49 +01: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"
|
2019-01-08 15:48:59 +01:00
|
|
|
xen_device_backend_online(const char *type, char *name, bool online) "type: %s name: %s -> %u"
|
|
|
|
xen_device_backend_changed(const char *type, char *name) "type: %s name: %s"
|
2019-01-08 15:48:49 +01:00
|
|
|
xen_device_frontend_state(const char *type, char *name, const char *state) "type: %s name: %s -> %s"
|
2019-01-08 15:48:50 +01:00
|
|
|
xen_device_frontend_changed(const char *type, char *name) "type: %s name: %s"
|
2019-01-08 15:48:59 +01:00
|
|
|
xen_device_unplug(const char *type, char *name) "type: %s name: %s"
|
2019-09-13 10:21:57 +02:00
|
|
|
xen_device_add_watch(const char *type, char *name, const char *node, const char *key) "type: %s name: %s node: %s key: %s"
|
|
|
|
xen_device_remove_watch(const char *type, char *name, const char *node, const char *key) "type: %s name: %s node: %s key: %s"
|
2019-01-08 15:48:49 +01:00
|
|
|
|
2019-03-14 19:09:26 +01:00
|
|
|
# xen-bus-helper.c
|
2019-01-08 15:48:49 +01:00
|
|
|
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"
|
2019-01-08 15:48:50 +01:00
|
|
|
xs_node_watch(char *path) "%s"
|
|
|
|
xs_node_unwatch(char *path) "%s"
|