diff options
author | Gerd Hoffmann | 2012-05-11 12:49:31 +0200 |
---|---|---|
committer | Gerd Hoffmann | 2012-06-07 10:02:21 +0200 |
commit | 2d754a10e4c43e9d83013ac83f8df7d1c856f0a0 (patch) | |
tree | 9d5d5ac24bf50f49f291afe16f1b0e127e9d28d7 /trace-events | |
parent | xhci: Clean up reset function (diff) | |
download | qemu-2d754a10e4c43e9d83013ac83f8df7d1c856f0a0.tar.gz qemu-2d754a10e4c43e9d83013ac83f8df7d1c856f0a0.tar.xz qemu-2d754a10e4c43e9d83013ac83f8df7d1c856f0a0.zip |
xhci: trace: mmio reads+writes
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Diffstat (limited to 'trace-events')
-rw-r--r-- | trace-events | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/trace-events b/trace-events index dd057bc7ad..b70b1612ee 100644 --- a/trace-events +++ b/trace-events @@ -289,6 +289,18 @@ usb_uhci_td_nextqh(uint32_t qh, uint32_t td) "qh 0x%x, td 0x%x" usb_uhci_td_async(uint32_t qh, uint32_t td) "qh 0x%x, td 0x%x" usb_uhci_td_complete(uint32_t qh, uint32_t td) "qh 0x%x, td 0x%x" +# hw/usb/hcd-xhci.c +usb_xhci_reset(void) "=== RESET ===" +usb_xhci_cap_read(uint32_t off, uint32_t val) "off 0x%04x, ret 0x%08x" +usb_xhci_oper_read(uint32_t off, uint32_t val) "off 0x%04x, ret 0x%08x" +usb_xhci_port_read(uint32_t port, uint32_t off, uint32_t val) "port %d, off 0x%04x, ret 0x%08x" +usb_xhci_runtime_read(uint32_t off, uint32_t val) "off 0x%04x, ret 0x%08x" +usb_xhci_doorbell_read(uint32_t off, uint32_t val) "off 0x%04x, ret 0x%08x" +usb_xhci_oper_write(uint32_t off, uint32_t val) "off 0x%04x, val 0x%08x" +usb_xhci_port_write(uint32_t port, uint32_t off, uint32_t val) "port %d, off 0x%04x, val 0x%08x" +usb_xhci_runtime_write(uint32_t off, uint32_t val) "off 0x%04x, val 0x%08x" +usb_xhci_doorbell_write(uint32_t off, uint32_t val) "off 0x%04x, val 0x%08x" + # hw/usb/desc.c usb_desc_device(int addr, int len, int ret) "dev %d query device, len %d, ret %d" usb_desc_device_qualifier(int addr, int len, int ret) "dev %d query device qualifier, len %d, ret %d" |