1
2
3
4
5
6
7
8 #ifndef EF4_SELFTEST_H
9 #define EF4_SELFTEST_H
10
11 #include "net_driver.h"
12
13
14
15
16
17 struct ef4_loopback_self_tests {
18 int tx_sent[EF4_TXQ_TYPES];
19 int tx_done[EF4_TXQ_TYPES];
20 int rx_good;
21 int rx_bad;
22 };
23
24 #define EF4_MAX_PHY_TESTS 20
25
26
27
28
29
30 struct ef4_self_tests {
31
32 int phy_alive;
33 int nvram;
34 int interrupt;
35 int eventq_dma[EF4_MAX_CHANNELS];
36 int eventq_int[EF4_MAX_CHANNELS];
37
38 int memory;
39 int registers;
40 int phy_ext[EF4_MAX_PHY_TESTS];
41 struct ef4_loopback_self_tests loopback[LOOPBACK_TEST_MAX + 1];
42 };
43
44 void ef4_loopback_rx_packet(struct ef4_nic *efx, const char *buf_ptr,
45 int pkt_len);
46 int ef4_selftest(struct ef4_nic *efx, struct ef4_self_tests *tests,
47 unsigned flags);
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);
51
52 #endif