]>
Commit | Line | Data |
---|---|---|
87e0331c | 1 | # See docs/devel/tracing.txt for syntax documentation. |
1416f9ea | 2 | |
500016e5 | 3 | # ../../include/hw/xen/xen_common.h |
1416f9ea DB |
4 | xen_default_ioreq_server(void) "" |
5 | xen_ioreq_server_create(uint32_t id) "id: %u" | |
6 | xen_ioreq_server_destroy(uint32_t id) "id: %u" | |
7 | xen_ioreq_server_state(uint32_t id, bool enable) "id: %u: enable: %i" | |
db73ee4b VSO |
8 | xen_map_mmio_range(uint32_t id, uint64_t start_addr, uint64_t end_addr) "id: %u start: 0x%"PRIx64" end: 0x%"PRIx64 |
9 | xen_unmap_mmio_range(uint32_t id, uint64_t start_addr, uint64_t end_addr) "id: %u start: 0x%"PRIx64" end: 0x%"PRIx64 | |
10 | xen_map_portio_range(uint32_t id, uint64_t start_addr, uint64_t end_addr) "id: %u start: 0x%"PRIx64" end: 0x%"PRIx64 | |
11 | xen_unmap_portio_range(uint32_t id, uint64_t start_addr, uint64_t end_addr) "id: %u start: 0x%"PRIx64" end: 0x%"PRIx64 | |
1416f9ea DB |
12 | xen_map_pcidev(uint32_t id, uint8_t bus, uint8_t dev, uint8_t func) "id: %u bdf: %02x.%02x.%02x" |
13 | xen_unmap_pcidev(uint32_t id, uint8_t bus, uint8_t dev, uint8_t func) "id: %u bdf: %02x.%02x.%02x" | |
1c599472 | 14 | xen_domid_restrict(int err) "err: %u" |
108f7bba | 15 | |
500016e5 | 16 | # xen-bus.c |
108f7bba PD |
17 | xen_bus_realize(void) "" |
18 | xen_bus_unrealize(void) "" | |
a783f8ad PD |
19 | xen_bus_enumerate(void) "" |
20 | xen_bus_type_enumerate(const char *type) "type: %s" | |
21 | xen_bus_backend_create(const char *type, const char *path) "type: %s path: %s" | |
82a29e30 PD |
22 | xen_bus_add_watch(const char *node, const char *key, char *token) "node: %s key: %s token: %s" |
23 | xen_bus_remove_watch(const char *node, const char *key, char *token) "node: %s key: %s token: %s" | |
24 | xen_bus_watch(const char *token) "token: %s" | |
094a2239 PD |
25 | xen_device_realize(const char *type, char *name) "type: %s name: %s" |
26 | xen_device_unrealize(const char *type, char *name) "type: %s name: %s" | |
27 | xen_device_backend_state(const char *type, char *name, const char *state) "type: %s name: %s -> %s" | |
b6af8926 PD |
28 | xen_device_backend_online(const char *type, char *name, bool online) "type: %s name: %s -> %u" |
29 | xen_device_backend_changed(const char *type, char *name) "type: %s name: %s" | |
094a2239 | 30 | xen_device_frontend_state(const char *type, char *name, const char *state) "type: %s name: %s -> %s" |
82a29e30 | 31 | xen_device_frontend_changed(const char *type, char *name) "type: %s name: %s" |
b6af8926 | 32 | xen_device_unplug(const char *type, char *name) "type: %s name: %s" |
094a2239 | 33 | |
500016e5 | 34 | # xen-bus-helper.c |
094a2239 PD |
35 | xs_node_create(const char *node) "%s" |
36 | xs_node_destroy(const char *node) "%s" | |
37 | xs_node_vprintf(char *path, char *value) "%s %s" | |
38 | xs_node_vscanf(char *path, char *value) "%s %s" | |
82a29e30 PD |
39 | xs_node_watch(char *path) "%s" |
40 | xs_node_unwatch(char *path) "%s" |