blob: fc15df15d76645c08b318988eadced248c5483cf [file] [log] [blame]
Ben Hutchings3273c2e2008-05-07 13:36:19 +01001/****************************************************************************
2 * Driver for Solarflare Solarstorm network controllers and boards
3 * Copyright 2005-2006 Fen Systems Ltd.
4 * Copyright 2006-2008 Solarflare Communications Inc.
5 *
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License version 2 as published
8 * by the Free Software Foundation, incorporated herein by reference.
9 */
10
11#ifndef EFX_SELFTEST_H
12#define EFX_SELFTEST_H
13
14#include "net_driver.h"
15
16/*
17 * Self tests
18 */
19
20struct efx_loopback_self_tests {
Ben Hutchings60ac1062008-09-01 12:44:59 +010021 int tx_sent[EFX_TX_QUEUE_COUNT];
22 int tx_done[EFX_TX_QUEUE_COUNT];
Ben Hutchings3273c2e2008-05-07 13:36:19 +010023 int rx_good;
24 int rx_bad;
25};
26
27/* Efx self test results
28 * For fields which are not counters, 1 indicates success and -1
29 * indicates failure.
30 */
31struct efx_self_tests {
Ben Hutchings8c8661e2008-09-01 12:49:02 +010032 /* online tests */
33 int mii;
34 int nvram;
Ben Hutchings3273c2e2008-05-07 13:36:19 +010035 int interrupt;
36 int eventq_dma[EFX_MAX_CHANNELS];
37 int eventq_int[EFX_MAX_CHANNELS];
38 int eventq_poll[EFX_MAX_CHANNELS];
Ben Hutchings8c8661e2008-09-01 12:49:02 +010039 /* offline tests */
40 int registers;
41 int phy;
Ben Hutchings3273c2e2008-05-07 13:36:19 +010042 int loopback_speed;
43 int loopback_full_duplex;
Ben Hutchings8c8661e2008-09-01 12:49:02 +010044 struct efx_loopback_self_tests loopback[LOOPBACK_TEST_MAX + 1];
Ben Hutchings3273c2e2008-05-07 13:36:19 +010045};
46
47extern void efx_loopback_rx_packet(struct efx_nic *efx,
48 const char *buf_ptr, int pkt_len);
49extern int efx_online_test(struct efx_nic *efx,
50 struct efx_self_tests *tests);
51extern int efx_offline_test(struct efx_nic *efx,
52 struct efx_self_tests *tests,
53 unsigned int loopback_modes);
54
55#endif /* EFX_SELFTEST_H */