aboutsummaryrefslogtreecommitdiff
path: root/hw
diff options
context:
space:
mode:
authorMark Cave-Ayland <mark.cave-ayland@ilande.co.uk>2019-06-30 18:21:50 +0100
committerMark Cave-Ayland <mark.cave-ayland@ilande.co.uk>2019-07-02 22:49:08 +0100
commit6bdc3707d993f9e90a5f592ecf261c4f647dbb46 (patch)
treec9a863db8ee6be48f803584406de8cd211db640d /hw
parentfcd23a67875d6f7f8256b90960ec05312cab2f5b (diff)
downloadqemu-6bdc3707d993f9e90a5f592ecf261c4f647dbb46.zip
qemu-6bdc3707d993f9e90a5f592ecf261c4f647dbb46.tar.gz
qemu-6bdc3707d993f9e90a5f592ecf261c4f647dbb46.tar.bz2
sunhme: add trace event for logging PCI IRQ
Signed-off-by: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk>
Diffstat (limited to 'hw')
-rw-r--r--hw/net/sunhme.c2
-rw-r--r--hw/net/trace-events1
2 files changed, 3 insertions, 0 deletions
diff --git a/hw/net/sunhme.c b/hw/net/sunhme.c
index 1ebaee3..6d660a8 100644
--- a/hw/net/sunhme.c
+++ b/hw/net/sunhme.c
@@ -209,6 +209,8 @@ static void sunhme_update_irq(SunHMEState *s)
}
level = (seb ? 1 : 0);
+ trace_sunhme_update_irq(mifmask, mif, sebmask, seb, level);
+
pci_set_irq(d, level);
}
diff --git a/hw/net/trace-events b/hw/net/trace-events
index 3cd9e12..d16273c 100644
--- a/hw/net/trace-events
+++ b/hw/net/trace-events
@@ -359,6 +359,7 @@ sunhme_rx_filter_reject(void) "rejecting incoming frame"
sunhme_rx_filter_accept(void) "accepting incoming frame"
sunhme_rx_desc(uint32_t addr, int offset, uint32_t status, int len, int cr, int nr) "addr 0x%"PRIx32"(+0x%x) status 0x%"PRIx32 " len %d (ring %d/%d)"
sunhme_rx_xsum_calc(uint16_t xsum) "calculated incoming xsum as 0x%x"
+sunhme_update_irq(uint32_t mifmask, uint32_t mif, uint32_t sebmask, uint32_t seb, int level) "mifmask: 0x%x mif: 0x%x sebmask: 0x%x seb: 0x%x level: %d"
# virtio-net.c
virtio_net_announce_notify(void) ""