[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v3 09/13] tests/qtest/libqos/e1000e: Export macreg functions
From: |
Akihiko Odaki |
Subject: |
[PATCH v3 09/13] tests/qtest/libqos/e1000e: Export macreg functions |
Date: |
Tue, 24 Jan 2023 13:46:46 +0900 |
They will be useful for igb testing.
Signed-off-by: Akihiko Odaki <akihiko.odaki@daynix.com>
---
tests/qtest/libqos/e1000e.c | 12 ------------
tests/qtest/libqos/e1000e.h | 12 ++++++++++++
2 files changed, 12 insertions(+), 12 deletions(-)
diff --git a/tests/qtest/libqos/e1000e.c b/tests/qtest/libqos/e1000e.c
index 28fb3052aa..925654c7fd 100644
--- a/tests/qtest/libqos/e1000e.c
+++ b/tests/qtest/libqos/e1000e.c
@@ -36,18 +36,6 @@
#define E1000E_RING_LEN (0x1000)
-static void e1000e_macreg_write(QE1000E *d, uint32_t reg, uint32_t val)
-{
- QE1000E_PCI *d_pci = container_of(d, QE1000E_PCI, e1000e);
- qpci_io_writel(&d_pci->pci_dev, d_pci->mac_regs, reg, val);
-}
-
-static uint32_t e1000e_macreg_read(QE1000E *d, uint32_t reg)
-{
- QE1000E_PCI *d_pci = container_of(d, QE1000E_PCI, e1000e);
- return qpci_io_readl(&d_pci->pci_dev, d_pci->mac_regs, reg);
-}
-
void e1000e_tx_ring_push(QE1000E *d, void *descr)
{
QE1000E_PCI *d_pci = container_of(d, QE1000E_PCI, e1000e);
diff --git a/tests/qtest/libqos/e1000e.h b/tests/qtest/libqos/e1000e.h
index 5e2b201aa7..30643c8094 100644
--- a/tests/qtest/libqos/e1000e.h
+++ b/tests/qtest/libqos/e1000e.h
@@ -42,6 +42,18 @@ struct QE1000E_PCI {
QE1000E e1000e;
};
+static inline void e1000e_macreg_write(QE1000E *d, uint32_t reg, uint32_t val)
+{
+ QE1000E_PCI *d_pci = container_of(d, QE1000E_PCI, e1000e);
+ qpci_io_writel(&d_pci->pci_dev, d_pci->mac_regs, reg, val);
+}
+
+static inline uint32_t e1000e_macreg_read(QE1000E *d, uint32_t reg)
+{
+ QE1000E_PCI *d_pci = container_of(d, QE1000E_PCI, e1000e);
+ return qpci_io_readl(&d_pci->pci_dev, d_pci->mac_regs, 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);
--
2.39.0
- [PATCH v3 00/13] Introduce igb, Akihiko Odaki, 2023/01/23
- [PATCH v3 01/13] hw/net/net_tx_pkt: Introduce net_tx_pkt_get_eth_hdr, Akihiko Odaki, 2023/01/23
- [PATCH v3 02/13] pcie: Introduce pcie_sriov_num_vfs, Akihiko Odaki, 2023/01/23
- [PATCH v3 04/13] igb: Copy e1000e code, Akihiko Odaki, 2023/01/23
- [PATCH v3 03/13] e1000: Split header files, Akihiko Odaki, 2023/01/23
- [PATCH v3 05/13] igb: Rename identifiers, Akihiko Odaki, 2023/01/23
- [PATCH v3 06/13] igb: Build igb, Akihiko Odaki, 2023/01/23
- [PATCH v3 08/13] tests/qtest/e1000e-test: Fabricate ethernet header, Akihiko Odaki, 2023/01/23
- [PATCH v3 07/13] igb: Transform to 82576 implementation, Akihiko Odaki, 2023/01/23
- [PATCH v3 09/13] tests/qtest/libqos/e1000e: Export macreg functions,
Akihiko Odaki <=
- [PATCH v3 10/13] tests/qtest/libqos/igb: Copy e1000e code, Akihiko Odaki, 2023/01/23
- [PATCH v3 11/13] tests/qtest/libqos/igb: Transform to igb tests, Akihiko Odaki, 2023/01/23
- [PATCH v3 12/13] tests/avocado: Add igb test, Akihiko Odaki, 2023/01/23
- [PATCH v3 13/13] docs/system/devices/igb: Add igb documentation, Akihiko Odaki, 2023/01/23