1 /* SPDX-License-Identifier: GPL-2.0-only */
2 /****************************************************************************
3 * Driver for Solarflare network controllers and boards
4 * Copyright 2005-2006 Fen Systems Ltd.
5 * Copyright 2006-2012 Solarflare Communications Inc.
11 #include "net_driver.h"
17 struct ef4_loopback_self_tests {
18 int tx_sent[EF4_TXQ_TYPES];
19 int tx_done[EF4_TXQ_TYPES];
24 #define EF4_MAX_PHY_TESTS 20
26 /* Efx self test results
27 * For fields which are not counters, 1 indicates success and -1
28 * indicates failure; 0 indicates test could not be run.
30 struct ef4_self_tests {
35 int eventq_dma[EF4_MAX_CHANNELS];
36 int eventq_int[EF4_MAX_CHANNELS];
40 int phy_ext[EF4_MAX_PHY_TESTS];
41 struct ef4_loopback_self_tests loopback[LOOPBACK_TEST_MAX + 1];
44 void ef4_loopback_rx_packet(struct ef4_nic *efx, const char *buf_ptr,
46 int ef4_selftest(struct ef4_nic *efx, struct ef4_self_tests *tests,
48 void ef4_selftest_async_start(struct ef4_nic *efx);
49 void ef4_selftest_async_cancel(struct ef4_nic *efx);
50 void ef4_selftest_async_work(struct work_struct *data);
52 #endif /* EF4_SELFTEST_H */