From: Nicholas Piggin <npiggin@gmail.com>
To: qemu-devel@nongnu.org
Cc: Nicholas Piggin <npiggin@gmail.com>,
"Michael S . Tsirkin" <mst@redhat.com>,
Marcel Apfelbaum <marcel.apfelbaum@gmail.com>,
Dmitry Fleytman <dmitry.fleytman@gmail.com>,
Akihiko Odaki <akihiko.odaki@daynix.com>,
Sriram Yagnaraman <sriram.yagnaraman@ericsson.com>,
Fabiano Rosas <farosas@suse.de>,
Laurent Vivier <lvivier@redhat.com>,
Paolo Bonzini <pbonzini@redhat.com>
Subject: [PATCH 5/5] qtest/e1000e|igb: Fix msix to re-trigger interrupts
Date: Wed, 18 Dec 2024 17:42:31 +1000 [thread overview]
Message-ID: <20241218074232.1784427-6-npiggin@gmail.com> (raw)
In-Reply-To: <20241218074232.1784427-1-npiggin@gmail.com>
The e1000e and igb tests don't clear the msix pending bit after waiting
for it, as it is masked so the irq doesn't get sent. Failing to clear
the pending interrupt means all subsequent waits for that interrupt
after the first do not actually wait for an interrupt genreated by the
device.
This affects the multiple_transfers tests, they never actually verify
more than one interrupt is generated. So for those tests, enable the
msix vectors for the queue interrupts so they are delivered and the
pending bit is cleared.
Add assertions to ensure the masked pending tests are not used to test
an interrupt multiple times.
Cc: Michael S. Tsirkin <mst@redhat.com>
Cc: Marcel Apfelbaum <marcel.apfelbaum@gmail.com>
Cc: Dmitry Fleytman <dmitry.fleytman@gmail.com>
Cc: Akihiko Odaki <akihiko.odaki@daynix.com>
Cc: Sriram Yagnaraman <sriram.yagnaraman@ericsson.com>
Signed-off-by: Nicholas Piggin <npiggin@gmail.com>
---
tests/qtest/libqos/e1000e.h | 8 +++
tests/qtest/e1000e-test.c | 2 +
tests/qtest/igb-test.c | 2 +
tests/qtest/libqos/e1000e.c | 113 +++++++++++++++++++++++++++++++++++-
4 files changed, 122 insertions(+), 3 deletions(-)
diff --git a/tests/qtest/libqos/e1000e.h b/tests/qtest/libqos/e1000e.h
index 30643c80949..6cc1a9732b1 100644
--- a/tests/qtest/libqos/e1000e.h
+++ b/tests/qtest/libqos/e1000e.h
@@ -25,6 +25,9 @@
#define E1000E_RX0_MSG_ID (0)
#define E1000E_TX0_MSG_ID (1)
+#define E1000E_RX0_MSIX_DATA (0x12345678)
+#define E1000E_TX0_MSIX_DATA (0xabcdef00)
+
#define E1000E_ADDRESS { 0x52, 0x54, 0x00, 0x12, 0x34, 0x56 }
typedef struct QE1000E QE1000E;
@@ -40,6 +43,10 @@ struct QE1000E_PCI {
QPCIDevice pci_dev;
QPCIBar mac_regs;
QE1000E e1000e;
+ uint64_t msix_rx0_addr;
+ uint64_t msix_tx0_addr;
+ bool msix_found_rx0_pending;
+ bool msix_found_tx0_pending;
};
static inline void e1000e_macreg_write(QE1000E *d, uint32_t reg, uint32_t val)
@@ -57,5 +64,6 @@ static inline uint32_t e1000e_macreg_read(QE1000E *d, uint32_t reg)
void e1000e_wait_isr(QE1000E *d, uint16_t msg_id);
void e1000e_tx_ring_push(QE1000E *d, void *descr);
void e1000e_rx_ring_push(QE1000E *d, void *descr);
+void e1000e_pci_msix_enable_rxtxq_vectors(QE1000E *d, QGuestAllocator *alloc);
#endif
diff --git a/tests/qtest/e1000e-test.c b/tests/qtest/e1000e-test.c
index a69759da70e..4921a141ffe 100644
--- a/tests/qtest/e1000e-test.c
+++ b/tests/qtest/e1000e-test.c
@@ -185,6 +185,8 @@ static void test_e1000e_multiple_transfers(void *obj, void *data,
return;
}
+ /* Triggering msix interrupts multiple times so must enable vectors */
+ e1000e_pci_msix_enable_rxtxq_vectors(d, alloc);
for (i = 0; i < iterations; i++) {
e1000e_send_verify(d, data, alloc);
e1000e_receive_verify(d, data, alloc);
diff --git a/tests/qtest/igb-test.c b/tests/qtest/igb-test.c
index 2f22c4fb208..06082cbe7ff 100644
--- a/tests/qtest/igb-test.c
+++ b/tests/qtest/igb-test.c
@@ -188,6 +188,8 @@ static void test_igb_multiple_transfers(void *obj, void *data,
return;
}
+ /* Triggering msix interrupts multiple times so must enable vectors */
+ e1000e_pci_msix_enable_rxtxq_vectors(d, alloc);
for (i = 0; i < iterations; i++) {
igb_send_verify(d, data, alloc);
igb_receive_verify(d, data, alloc);
diff --git a/tests/qtest/libqos/e1000e.c b/tests/qtest/libqos/e1000e.c
index 925654c7fd4..7b7e811bce7 100644
--- a/tests/qtest/libqos/e1000e.c
+++ b/tests/qtest/libqos/e1000e.c
@@ -19,6 +19,7 @@
#include "qemu/osdep.h"
#include "hw/net/e1000_regs.h"
#include "hw/pci/pci_ids.h"
+#include "hw/pci/pci_regs.h"
#include "../libqtest.h"
#include "pci-pc.h"
#include "qemu/sockets.h"
@@ -77,16 +78,77 @@ static void e1000e_foreach_callback(QPCIDevice *dev, int devfn, void *data)
g_free(dev);
}
+static bool e1000e_test_msix_irq(QE1000E *d, uint16_t msg_id,
+ uint64_t guest_msix_addr,
+ uint32_t msix_data)
+{
+ QE1000E_PCI *d_pci = container_of(d, QE1000E_PCI, e1000e);
+ QPCIDevice *pci_dev = &d_pci->pci_dev;
+
+ if (msg_id == E1000E_RX0_MSG_ID) {
+ g_assert(!d_pci->msix_found_rx0_pending);
+ } else if (msg_id == E1000E_TX0_MSG_ID) {
+ g_assert(!d_pci->msix_found_tx0_pending);
+ } else {
+ /* Must enable MSI-X vector to test multiple messages */
+ g_assert_not_reached();
+ }
+
+ if (pci_dev->msix_enabled) {
+ if (qpci_msix_masked(pci_dev, msg_id)) {
+ /* No ISR checking should be done if masked, but read anyway */
+ bool p = qpci_msix_pending(pci_dev, msg_id);
+ if (p) {
+ if (msg_id == E1000E_RX0_MSG_ID) {
+ d_pci->msix_found_rx0_pending = true;
+ } else if (msg_id == E1000E_TX0_MSG_ID) {
+ d_pci->msix_found_tx0_pending = true;
+ } else {
+ g_assert_not_reached();
+ }
+ }
+ return p;
+ } else {
+ uint32_t data = qtest_readl(pci_dev->bus->qts, guest_msix_addr);
+ if (data == msix_data) {
+ qtest_writel(pci_dev->bus->qts, guest_msix_addr, 0);
+ return true;
+ } else if (data == 0) {
+ return false;
+ } else {
+ g_assert_not_reached();
+ }
+ }
+ } else {
+ g_assert_not_reached();
+ }
+}
+
void e1000e_wait_isr(QE1000E *d, uint16_t msg_id)
{
QE1000E_PCI *d_pci = container_of(d, QE1000E_PCI, e1000e);
- guint64 end_time = g_get_monotonic_time() + 5 * G_TIME_SPAN_SECOND;
+ QPCIDevice *pci_dev = &d_pci->pci_dev;
+ uint64_t end_time = g_get_monotonic_time() + 5 * G_TIME_SPAN_SECOND;
+ uint64_t guest_msix_addr;
+ uint32_t msix_data;
+
+ assert(pci_dev->msix_enabled);
+
+ if (msg_id == E1000E_RX0_MSG_ID) {
+ guest_msix_addr = d_pci->msix_rx0_addr;
+ msix_data = E1000E_RX0_MSIX_DATA;
+ } else if (msg_id == E1000E_TX0_MSG_ID) {
+ guest_msix_addr = d_pci->msix_tx0_addr;
+ msix_data = E1000E_TX0_MSIX_DATA;
+ } else {
+ g_assert_not_reached();
+ }
do {
- if (qpci_msix_pending(&d_pci->pci_dev, msg_id)) {
+ if (e1000e_test_msix_irq(d, msg_id, guest_msix_addr, msix_data)) {
return;
}
- qtest_clock_step(d_pci->pci_dev.bus->qts, 10000);
+ qtest_clock_step(pci_dev->bus->qts, 10000);
} while (g_get_monotonic_time() < end_time);
g_error("Timeout expired");
@@ -99,6 +161,51 @@ static void e1000e_pci_destructor(QOSGraphObject *obj)
qpci_msix_disable(&epci->pci_dev);
}
+static void e1000e_pci_msix_enable_vector(QE1000E *d, uint16_t msg_id,
+ uint64_t guest_msix_addr,
+ uint32_t msix_data)
+{
+ QE1000E_PCI *d_pci = container_of(d, QE1000E_PCI, e1000e);
+ QPCIDevice *pci_dev = &d_pci->pci_dev;
+ uint32_t control;
+ uint64_t off;
+
+ g_assert_cmpint(msg_id , >=, 0);
+ g_assert_cmpint(msg_id , <, qpci_msix_table_size(pci_dev));
+
+ off = pci_dev->msix_table_off + (msg_id * 16);
+
+ qpci_io_writel(pci_dev, pci_dev->msix_table_bar,
+ off + PCI_MSIX_ENTRY_LOWER_ADDR, guest_msix_addr & ~0UL);
+ qpci_io_writel(pci_dev, pci_dev->msix_table_bar,
+ off + PCI_MSIX_ENTRY_UPPER_ADDR,
+ (guest_msix_addr >> 32) & ~0UL);
+ qpci_io_writel(pci_dev, pci_dev->msix_table_bar,
+ off + PCI_MSIX_ENTRY_DATA, msix_data);
+
+ control = qpci_io_readl(pci_dev, pci_dev->msix_table_bar,
+ off + PCI_MSIX_ENTRY_VECTOR_CTRL);
+ qpci_io_writel(pci_dev, pci_dev->msix_table_bar,
+ off + PCI_MSIX_ENTRY_VECTOR_CTRL,
+ control & ~PCI_MSIX_ENTRY_CTRL_MASKBIT);
+}
+
+void e1000e_pci_msix_enable_rxtxq_vectors(QE1000E *d, QGuestAllocator *alloc)
+{
+ QE1000E_PCI *d_pci = container_of(d, QE1000E_PCI, e1000e);
+ QPCIDevice *pci_dev = &d_pci->pci_dev;
+
+ g_assert(pci_dev->msix_enabled);
+
+ d_pci->msix_rx0_addr = guest_alloc(alloc, 4);
+ d_pci->msix_tx0_addr = guest_alloc(alloc, 4);
+
+ e1000e_pci_msix_enable_vector(d, E1000E_RX0_MSG_ID,
+ d_pci->msix_rx0_addr, E1000E_RX0_MSIX_DATA);
+ e1000e_pci_msix_enable_vector(d, E1000E_TX0_MSG_ID,
+ d_pci->msix_tx0_addr, E1000E_TX0_MSIX_DATA);
+}
+
static void e1000e_pci_start_hw(QOSGraphObject *obj)
{
QE1000E_PCI *d = (QE1000E_PCI *) obj;
--
2.45.2
next prev parent reply other threads:[~2024-12-18 7:43 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-12-18 7:42 [PATCH 0/5] qtest: pci and e1000e/igb msix fixes Nicholas Piggin
2024-12-18 7:42 ` [PATCH 1/5] qtest/pci: Enforce balanced iomap/unmap Nicholas Piggin
2024-12-19 9:03 ` Akihiko Odaki
2024-12-18 7:42 ` [PATCH 2/5] qtest/libqos/pci: Fix qpci_msix_enable sharing bar0 Nicholas Piggin
2024-12-18 7:42 ` [PATCH 3/5] qtest/libqos/pci: Do not write to PBA memory Nicholas Piggin
2024-12-18 7:42 ` [PATCH 4/5] qtest/e1000e|igb: Clear interrupt-cause bits after irq Nicholas Piggin
2024-12-19 9:00 ` Akihiko Odaki
2024-12-21 4:15 ` Nicholas Piggin
2024-12-18 7:42 ` Nicholas Piggin [this message]
2024-12-19 8:53 ` [PATCH 5/5] qtest/e1000e|igb: Fix msix to re-trigger interrupts Akihiko Odaki
2024-12-21 4:14 ` Nicholas Piggin
2024-12-21 4:26 ` Akihiko Odaki
2024-12-21 8:11 ` Nicholas Piggin
2024-12-21 9:26 ` Akihiko Odaki
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20241218074232.1784427-6-npiggin@gmail.com \
--to=npiggin@gmail.com \
--cc=akihiko.odaki@daynix.com \
--cc=dmitry.fleytman@gmail.com \
--cc=farosas@suse.de \
--cc=lvivier@redhat.com \
--cc=marcel.apfelbaum@gmail.com \
--cc=mst@redhat.com \
--cc=pbonzini@redhat.com \
--cc=qemu-devel@nongnu.org \
--cc=sriram.yagnaraman@ericsson.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.