[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PATCH v3 10/10] usb: add usb host adapters exit trace
From: |
arei.gonglei |
Subject: |
[Qemu-devel] [PATCH v3 10/10] usb: add usb host adapters exit trace |
Date: |
Wed, 4 Jun 2014 16:31:55 +0800 |
From: Gonglei <address@hidden>
Signed-off-by: Gonglei <address@hidden>
---
hw/usb/hcd-ehci.c | 2 ++
hw/usb/hcd-uhci.c | 2 ++
hw/usb/hcd-xhci.c | 2 ++
trace-events | 3 +++
4 files changed, 9 insertions(+)
diff --git a/hw/usb/hcd-ehci.c b/hw/usb/hcd-ehci.c
index 172ca04..8211aea 100644
--- a/hw/usb/hcd-ehci.c
+++ b/hw/usb/hcd-ehci.c
@@ -2473,6 +2473,8 @@ void usb_ehci_realize(EHCIState *s, DeviceState *dev,
Error **errp)
void usb_ehci_unrealize(EHCIState *s, DeviceState *dev, Error **errp)
{
+ trace_usb_ehci_unrealize();
+
if (s->frame_timer) {
timer_del(s->frame_timer);
timer_free(s->frame_timer);
diff --git a/hw/usb/hcd-uhci.c b/hw/usb/hcd-uhci.c
index 0ecb56d..665e380 100644
--- a/hw/usb/hcd-uhci.c
+++ b/hw/usb/hcd-uhci.c
@@ -1260,6 +1260,8 @@ static void usb_uhci_exit(PCIDevice *dev)
{
UHCIState *s = DO_UPCAST(UHCIState, dev, dev);
+ trace_usb_uhci_exit();
+
if (s->frame_timer) {
timer_del(s->frame_timer);
timer_free(s->frame_timer);
diff --git a/hw/usb/hcd-xhci.c b/hw/usb/hcd-xhci.c
index bc7cd04..86d9389 100644
--- a/hw/usb/hcd-xhci.c
+++ b/hw/usb/hcd-xhci.c
@@ -3649,6 +3649,8 @@ static void usb_xhci_exit(PCIDevice *dev)
int i;
XHCIState *xhci = XHCI(dev);
+ trace_usb_xhci_exit();
+
for (i = 0; i < xhci->numslots; i++) {
xhci_disable_slot(xhci, i + 1);
}
diff --git a/trace-events b/trace-events
index ffe6e62..1e03707 100644
--- a/trace-events
+++ b/trace-events
@@ -292,6 +292,7 @@ usb_port_release(int bus, const char *port) "bus %d, port
%s"
# hw/usb/hcd-ehci.c
usb_ehci_reset(void) "=== RESET ==="
+usb_ehci_unrealize(void) "=== UNREALIZE ==="
usb_ehci_opreg_read(uint32_t addr, const char *str, uint32_t val) "rd mmio
%04x [%s] = %x"
usb_ehci_opreg_write(uint32_t addr, const char *str, uint32_t val) "wr mmio
%04x [%s] = %x"
usb_ehci_opreg_change(uint32_t addr, const char *str, uint32_t new, uint32_t
old) "ch mmio %04x [%s] = %x (old: %x)"
@@ -324,6 +325,7 @@ usb_ehci_dma_error(void) ""
# hw/usb/hcd-uhci.c
usb_uhci_reset(void) "=== RESET ==="
+usb_uhci_exit(void) "=== EXIT ==="
usb_uhci_schedule_start(void) ""
usb_uhci_schedule_stop(void) ""
usb_uhci_frame_start(uint32_t num) "nr %d"
@@ -353,6 +355,7 @@ 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_exit(void) "=== EXIT ==="
usb_xhci_run(void) ""
usb_xhci_stop(void) ""
usb_xhci_cap_read(uint32_t off, uint32_t val) "off 0x%04x, ret 0x%08x"
--
1.7.12.4
- [Qemu-devel] [PATCH v3 00/10] usb: usb host adapter hotplug, arei.gonglei, 2014/06/04
- [Qemu-devel] [PATCH v3 09/10] usb: tag usb host controller as hotpluggable, arei.gonglei, 2014/06/04
- [Qemu-devel] [PATCH v3 03/10] usb-ohci: add exit function, arei.gonglei, 2014/06/04
- [Qemu-devel] [PATCH v3 01/10] usb: add usb_bus_release function, arei.gonglei, 2014/06/04
- [Qemu-devel] [PATCH v3 06/10] usb-ehci: add ehci unrealize funciton, arei.gonglei, 2014/06/04
- [Qemu-devel] [PATCH v3 08/10] usb-xhci: add exit function, arei.gonglei, 2014/06/04
- [Qemu-devel] [PATCH v3 02/10] usb-ohci: Fix memory leak for ohci timer, arei.gonglei, 2014/06/04
- [Qemu-devel] [PATCH v3 05/10] usb-ehci: add vmstate properity for EHCIState, arei.gonglei, 2014/06/04
- [Qemu-devel] [PATCH v3 04/10] usb-uhci: clean up uhci resource when pci-uhci exit, arei.gonglei, 2014/06/04
- [Qemu-devel] [PATCH v3 10/10] usb: add usb host adapters exit trace,
arei.gonglei <=
- [Qemu-devel] [PATCH v3 07/10] usb-ehci: add ehci-pci device exit function, arei.gonglei, 2014/06/04
- Re: [Qemu-devel] [PATCH v3 00/10] usb: usb host adapter hotplug, Gonglei (Arei), 2014/06/11