blob: dab286a337a6bdf21a02387e093ed81516fb427a [file] [log] [blame]
Ben Hutchings3273c2e2008-05-07 13:36:19 +01001/****************************************************************************
Ben Hutchingsf7a6d2c2013-08-29 23:32:48 +01002 * Driver for Solarflare network controllers and boards
Ben Hutchings3273c2e2008-05-07 13:36:19 +01003 * Copyright 2005-2006 Fen Systems Ltd.
Ben Hutchingsf7a6d2c2013-08-29 23:32:48 +01004 * Copyright 2006-2012 Solarflare Communications Inc.
Ben Hutchings3273c2e2008-05-07 13:36:19 +01005 *
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#include <linux/netdevice.h>
12#include <linux/module.h>
13#include <linux/delay.h>
14#include <linux/kernel_stat.h>
15#include <linux/pci.h>
16#include <linux/ethtool.h>
17#include <linux/ip.h>
18#include <linux/in.h>
19#include <linux/udp.h>
20#include <linux/rtnetlink.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090021#include <linux/slab.h>
Ben Hutchings3273c2e2008-05-07 13:36:19 +010022#include "net_driver.h"
Ben Hutchings3273c2e2008-05-07 13:36:19 +010023#include "efx.h"
Ben Hutchings744093c2009-11-29 15:12:08 +000024#include "nic.h"
Ben Hutchings3273c2e2008-05-07 13:36:19 +010025#include "selftest.h"
Ben Hutchings3273c2e2008-05-07 13:36:19 +010026#include "workarounds.h"
Ben Hutchings3273c2e2008-05-07 13:36:19 +010027
Ben Hutchings93e5dfa2012-02-28 20:40:53 +000028/* IRQ latency can be enormous because:
29 * - All IRQs may be disabled on a CPU for a *long* time by e.g. a
30 * slow serial console or an old IDE driver doing error recovery
31 * - The PREEMPT_RT patches mostly deal with this, but also allow a
32 * tasklet or normal task to be given higher priority than our IRQ
33 * threads
34 * Try to avoid blaming the hardware for this.
35 */
36#define IRQ_TIMEOUT HZ
37
Ben Hutchings3273c2e2008-05-07 13:36:19 +010038/*
39 * Loopback test packet structure
40 *
41 * The self-test should stress every RSS vector, and unfortunately
42 * Falcon only performs RSS on TCP/UDP packets.
43 */
44struct efx_loopback_payload {
45 struct ethhdr header;
46 struct iphdr ip;
47 struct udphdr udp;
48 __be16 iteration;
David S. Miller1d20a1602015-04-17 15:15:40 -040049 char msg[64];
Eric Dumazetba2d3582010-06-02 18:10:09 +000050} __packed;
Ben Hutchings3273c2e2008-05-07 13:36:19 +010051
52/* Loopback test source MAC address */
Edward Creecd84ff42014-03-07 18:27:41 +000053static const u8 payload_source[ETH_ALEN] __aligned(2) = {
Ben Hutchings3273c2e2008-05-07 13:36:19 +010054 0x00, 0x0f, 0x53, 0x1b, 0x1b, 0x1b,
55};
56
Julia Lawall94de8032009-12-13 01:41:29 +000057static const char payload_msg[] =
Ben Hutchings3273c2e2008-05-07 13:36:19 +010058 "Hello world! This is an Efx loopback test in progress!";
59
stephen hemmingerd2156972010-10-18 05:27:31 +000060/* Interrupt mode names */
61static const unsigned int efx_interrupt_mode_max = EFX_INT_MODE_MAX;
Ben Hutchings18e83e42012-01-05 19:05:20 +000062static const char *const efx_interrupt_mode_names[] = {
stephen hemmingerd2156972010-10-18 05:27:31 +000063 [EFX_INT_MODE_MSIX] = "MSI-X",
64 [EFX_INT_MODE_MSI] = "MSI",
65 [EFX_INT_MODE_LEGACY] = "legacy",
66};
67#define INT_MODE(efx) \
68 STRING_TABLE_LOOKUP(efx->interrupt_mode, efx_interrupt_mode)
69
Ben Hutchings3273c2e2008-05-07 13:36:19 +010070/**
Ben Hutchings8c8661e2008-09-01 12:49:02 +010071 * efx_loopback_state - persistent state during a loopback selftest
Ben Hutchings3273c2e2008-05-07 13:36:19 +010072 * @flush: Drop all packets in efx_loopback_rx_packet
73 * @packet_count: Number of packets being used in this test
74 * @skbs: An array of skbs transmitted
Ben Hutchingsf30eb232009-11-25 16:12:24 +000075 * @offload_csum: Checksums are being offloaded
Ben Hutchings3273c2e2008-05-07 13:36:19 +010076 * @rx_good: RX good packet count
77 * @rx_bad: RX bad packet count
78 * @payload: Payload used in tests
79 */
Ben Hutchings8c8661e2008-09-01 12:49:02 +010080struct efx_loopback_state {
Ben Hutchingsdc8cfa52008-09-01 12:46:50 +010081 bool flush;
Ben Hutchings3273c2e2008-05-07 13:36:19 +010082 int packet_count;
83 struct sk_buff **skbs;
Ben Hutchingsdc8cfa52008-09-01 12:46:50 +010084 bool offload_csum;
Ben Hutchings3273c2e2008-05-07 13:36:19 +010085 atomic_t rx_good;
86 atomic_t rx_bad;
87 struct efx_loopback_payload payload;
88};
89
Ben Hutchings93e5dfa2012-02-28 20:40:53 +000090/* How long to wait for all the packets to arrive (in ms) */
91#define LOOPBACK_TIMEOUT_MS 1000
92
Ben Hutchings3273c2e2008-05-07 13:36:19 +010093/**************************************************************************
94 *
Ben Hutchings8c8661e2008-09-01 12:49:02 +010095 * MII, NVRAM and register tests
Ben Hutchings3273c2e2008-05-07 13:36:19 +010096 *
97 **************************************************************************/
98
Ben Hutchings4f16c072010-02-03 09:30:50 +000099static int efx_test_phy_alive(struct efx_nic *efx, struct efx_self_tests *tests)
Ben Hutchings8c8661e2008-09-01 12:49:02 +0100100{
101 int rc = 0;
Ben Hutchings8c8661e2008-09-01 12:49:02 +0100102
Ben Hutchings4f16c072010-02-03 09:30:50 +0000103 if (efx->phy_op->test_alive) {
104 rc = efx->phy_op->test_alive(efx);
105 tests->phy_alive = rc ? -1 : 1;
Ben Hutchings8c8661e2008-09-01 12:49:02 +0100106 }
107
Ben Hutchings8c8661e2008-09-01 12:49:02 +0100108 return rc;
109}
110
111static int efx_test_nvram(struct efx_nic *efx, struct efx_self_tests *tests)
112{
Ben Hutchings0aa3fba2009-11-29 03:43:33 +0000113 int rc = 0;
Ben Hutchings8c8661e2008-09-01 12:49:02 +0100114
Ben Hutchings0aa3fba2009-11-29 03:43:33 +0000115 if (efx->type->test_nvram) {
116 rc = efx->type->test_nvram(efx);
Daniel Pieczko27324822015-07-31 11:14:54 +0100117 if (rc == -EPERM)
118 rc = 0;
119 else
120 tests->nvram = rc ? -1 : 1;
Ben Hutchings0aa3fba2009-11-29 03:43:33 +0000121 }
122
Ben Hutchings8c8661e2008-09-01 12:49:02 +0100123 return rc;
124}
125
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100126/**************************************************************************
127 *
128 * Interrupt and event queue testing
129 *
130 **************************************************************************/
131
132/* Test generation and receipt of interrupts */
133static int efx_test_interrupts(struct efx_nic *efx,
134 struct efx_self_tests *tests)
135{
Ben Hutchings93e5dfa2012-02-28 20:40:53 +0000136 unsigned long timeout, wait;
Ben Hutchings1646a6f32012-01-05 20:14:10 +0000137 int cpu;
Jon Cooper942e2982016-08-26 15:13:30 +0100138 int rc;
Ben Hutchings1646a6f32012-01-05 20:14:10 +0000139
Ben Hutchings62776d02010-06-23 11:30:07 +0000140 netif_dbg(efx, drv, efx->net_dev, "testing interrupts\n");
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100141 tests->interrupt = -1;
142
Jon Cooper942e2982016-08-26 15:13:30 +0100143 rc = efx_nic_irq_test_start(efx);
144 if (rc == -ENOTSUPP) {
145 netif_dbg(efx, drv, efx->net_dev,
146 "direct interrupt testing not supported\n");
147 tests->interrupt = 0;
148 return 0;
149 }
150
Ben Hutchings93e5dfa2012-02-28 20:40:53 +0000151 timeout = jiffies + IRQ_TIMEOUT;
152 wait = 1;
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100153
154 /* Wait for arrival of test interrupt. */
Ben Hutchings62776d02010-06-23 11:30:07 +0000155 netif_dbg(efx, drv, efx->net_dev, "waiting for test interrupt\n");
Ben Hutchings93e5dfa2012-02-28 20:40:53 +0000156 do {
157 schedule_timeout_uninterruptible(wait);
Ben Hutchingseee6f6a2012-02-28 23:37:35 +0000158 cpu = efx_nic_irq_test_irq_cpu(efx);
Ben Hutchings93e5dfa2012-02-28 20:40:53 +0000159 if (cpu >= 0)
160 goto success;
161 wait *= 2;
162 } while (time_before(jiffies, timeout));
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100163
Ben Hutchings62776d02010-06-23 11:30:07 +0000164 netif_err(efx, drv, efx->net_dev, "timed out waiting for interrupt\n");
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100165 return -ETIMEDOUT;
166
167 success:
Ben Hutchings62776d02010-06-23 11:30:07 +0000168 netif_dbg(efx, drv, efx->net_dev, "%s test interrupt seen on CPU%d\n",
Ben Hutchings1646a6f32012-01-05 20:14:10 +0000169 INT_MODE(efx), cpu);
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100170 tests->interrupt = 1;
171 return 0;
172}
173
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100174/* Test generation and receipt of interrupting events */
Ben Hutchingsed74f482012-02-28 20:40:54 +0000175static int efx_test_eventq_irq(struct efx_nic *efx,
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100176 struct efx_self_tests *tests)
177{
Ben Hutchingsed74f482012-02-28 20:40:54 +0000178 struct efx_channel *channel;
179 unsigned int read_ptr[EFX_MAX_CHANNELS];
180 unsigned long napi_ran = 0, dma_pend = 0, int_pend = 0;
Ben Hutchings93e5dfa2012-02-28 20:40:53 +0000181 unsigned long timeout, wait;
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100182
Ben Hutchingsed74f482012-02-28 20:40:54 +0000183 BUILD_BUG_ON(EFX_MAX_CHANNELS > BITS_PER_LONG);
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100184
Ben Hutchingsed74f482012-02-28 20:40:54 +0000185 efx_for_each_channel(channel, efx) {
186 read_ptr[channel->channel] = channel->eventq_read_ptr;
187 set_bit(channel->channel, &dma_pend);
188 set_bit(channel->channel, &int_pend);
Ben Hutchingseee6f6a2012-02-28 23:37:35 +0000189 efx_nic_event_test_start(channel);
Ben Hutchingsed74f482012-02-28 20:40:54 +0000190 }
191
Ben Hutchings93e5dfa2012-02-28 20:40:53 +0000192 timeout = jiffies + IRQ_TIMEOUT;
193 wait = 1;
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100194
Ben Hutchingsed74f482012-02-28 20:40:54 +0000195 /* Wait for arrival of interrupts. NAPI processing may or may
Ben Hutchings0fb53fa2011-11-04 23:06:04 +0000196 * not complete in time, but we can cope in any case.
197 */
Ben Hutchings93e5dfa2012-02-28 20:40:53 +0000198 do {
199 schedule_timeout_uninterruptible(wait);
200
Ben Hutchingsed74f482012-02-28 20:40:54 +0000201 efx_for_each_channel(channel, efx) {
Alexandre Rames36763262014-07-22 14:03:25 +0100202 efx_stop_eventq(channel);
Ben Hutchingsed74f482012-02-28 20:40:54 +0000203 if (channel->eventq_read_ptr !=
204 read_ptr[channel->channel]) {
205 set_bit(channel->channel, &napi_ran);
206 clear_bit(channel->channel, &dma_pend);
207 clear_bit(channel->channel, &int_pend);
208 } else {
209 if (efx_nic_event_present(channel))
210 clear_bit(channel->channel, &dma_pend);
Ben Hutchingseee6f6a2012-02-28 23:37:35 +0000211 if (efx_nic_event_test_irq_cpu(channel) >= 0)
Ben Hutchingsed74f482012-02-28 20:40:54 +0000212 clear_bit(channel->channel, &int_pend);
213 }
Alexandre Rames36763262014-07-22 14:03:25 +0100214 efx_start_eventq(channel);
Ben Hutchings93e5dfa2012-02-28 20:40:53 +0000215 }
Ben Hutchings93e5dfa2012-02-28 20:40:53 +0000216
217 wait *= 2;
Ben Hutchingsed74f482012-02-28 20:40:54 +0000218 } while ((dma_pend || int_pend) && time_before(jiffies, timeout));
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100219
Ben Hutchingsed74f482012-02-28 20:40:54 +0000220 efx_for_each_channel(channel, efx) {
221 bool dma_seen = !test_bit(channel->channel, &dma_pend);
222 bool int_seen = !test_bit(channel->channel, &int_pend);
Ben Hutchings0fb53fa2011-11-04 23:06:04 +0000223
Ben Hutchingsed74f482012-02-28 20:40:54 +0000224 tests->eventq_dma[channel->channel] = dma_seen ? 1 : -1;
225 tests->eventq_int[channel->channel] = int_seen ? 1 : -1;
226
227 if (dma_seen && int_seen) {
228 netif_dbg(efx, drv, efx->net_dev,
229 "channel %d event queue passed (with%s NAPI)\n",
230 channel->channel,
231 test_bit(channel->channel, &napi_ran) ?
232 "" : "out");
233 } else {
234 /* Report failure and whether either interrupt or DMA
235 * worked
236 */
Ben Hutchings0fb53fa2011-11-04 23:06:04 +0000237 netif_err(efx, drv, efx->net_dev,
Ben Hutchingsed74f482012-02-28 20:40:54 +0000238 "channel %d timed out waiting for event queue\n",
Ben Hutchings0fb53fa2011-11-04 23:06:04 +0000239 channel->channel);
Ben Hutchingsed74f482012-02-28 20:40:54 +0000240 if (int_seen)
241 netif_err(efx, drv, efx->net_dev,
242 "channel %d saw interrupt "
243 "during event queue test\n",
244 channel->channel);
245 if (dma_seen)
246 netif_err(efx, drv, efx->net_dev,
247 "channel %d event was generated, but "
248 "failed to trigger an interrupt\n",
249 channel->channel);
250 }
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100251 }
Ben Hutchingsed74f482012-02-28 20:40:54 +0000252
253 return (dma_pend || int_pend) ? -ETIMEDOUT : 0;
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100254}
255
Ben Hutchings17967212008-12-26 13:47:25 -0800256static int efx_test_phy(struct efx_nic *efx, struct efx_self_tests *tests,
257 unsigned flags)
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100258{
Ben Hutchings8c8661e2008-09-01 12:49:02 +0100259 int rc;
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100260
Ben Hutchings17967212008-12-26 13:47:25 -0800261 if (!efx->phy_op->run_tests)
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100262 return 0;
263
Ben Hutchings8c8661e2008-09-01 12:49:02 +0100264 mutex_lock(&efx->mac_lock);
Ben Hutchings4f16c072010-02-03 09:30:50 +0000265 rc = efx->phy_op->run_tests(efx, tests->phy_ext, flags);
Ben Hutchings8c8661e2008-09-01 12:49:02 +0100266 mutex_unlock(&efx->mac_lock);
Daniel Pieczko27324822015-07-31 11:14:54 +0100267 if (rc == -EPERM)
268 rc = 0;
269 else
270 netif_info(efx, drv, efx->net_dev,
271 "%s phy selftest\n", rc ? "Failed" : "Passed");
272
Ben Hutchings8c8661e2008-09-01 12:49:02 +0100273 return rc;
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100274}
275
276/**************************************************************************
277 *
278 * Loopback testing
279 * NB Only one loopback test can be executing concurrently.
280 *
281 **************************************************************************/
282
283/* Loopback test RX callback
284 * This is called for each received packet during loopback testing.
285 */
286void efx_loopback_rx_packet(struct efx_nic *efx,
287 const char *buf_ptr, int pkt_len)
288{
Ben Hutchings8c8661e2008-09-01 12:49:02 +0100289 struct efx_loopback_state *state = efx->loopback_selftest;
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100290 struct efx_loopback_payload *received;
291 struct efx_loopback_payload *payload;
292
293 BUG_ON(!buf_ptr);
294
295 /* If we are just flushing, then drop the packet */
296 if ((state == NULL) || state->flush)
297 return;
298
299 payload = &state->payload;
Ben Hutchings8c8661e2008-09-01 12:49:02 +0100300
Ben Hutchingsd3208b52008-05-16 21:20:00 +0100301 received = (struct efx_loopback_payload *) buf_ptr;
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100302 received->ip.saddr = payload->ip.saddr;
Ben Hutchings60ac1062008-09-01 12:44:59 +0100303 if (state->offload_csum)
304 received->ip.check = payload->ip.check;
305
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100306 /* Check that header exists */
307 if (pkt_len < sizeof(received->header)) {
Ben Hutchings62776d02010-06-23 11:30:07 +0000308 netif_err(efx, drv, efx->net_dev,
309 "saw runt RX packet (length %d) in %s loopback "
310 "test\n", pkt_len, LOOPBACK_MODE(efx));
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100311 goto err;
312 }
313
314 /* Check that the ethernet header exists */
315 if (memcmp(&received->header, &payload->header, ETH_HLEN) != 0) {
Ben Hutchings62776d02010-06-23 11:30:07 +0000316 netif_err(efx, drv, efx->net_dev,
317 "saw non-loopback RX packet in %s loopback test\n",
318 LOOPBACK_MODE(efx));
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100319 goto err;
320 }
321
322 /* Check packet length */
323 if (pkt_len != sizeof(*payload)) {
Ben Hutchings62776d02010-06-23 11:30:07 +0000324 netif_err(efx, drv, efx->net_dev,
325 "saw incorrect RX packet length %d (wanted %d) in "
326 "%s loopback test\n", pkt_len, (int)sizeof(*payload),
327 LOOPBACK_MODE(efx));
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100328 goto err;
329 }
330
331 /* Check that IP header matches */
332 if (memcmp(&received->ip, &payload->ip, sizeof(payload->ip)) != 0) {
Ben Hutchings62776d02010-06-23 11:30:07 +0000333 netif_err(efx, drv, efx->net_dev,
334 "saw corrupted IP header in %s loopback test\n",
335 LOOPBACK_MODE(efx));
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100336 goto err;
337 }
338
339 /* Check that msg and padding matches */
340 if (memcmp(&received->msg, &payload->msg, sizeof(received->msg)) != 0) {
Ben Hutchings62776d02010-06-23 11:30:07 +0000341 netif_err(efx, drv, efx->net_dev,
342 "saw corrupted RX packet in %s loopback test\n",
343 LOOPBACK_MODE(efx));
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100344 goto err;
345 }
346
347 /* Check that iteration matches */
348 if (received->iteration != payload->iteration) {
Ben Hutchings62776d02010-06-23 11:30:07 +0000349 netif_err(efx, drv, efx->net_dev,
350 "saw RX packet from iteration %d (wanted %d) in "
351 "%s loopback test\n", ntohs(received->iteration),
352 ntohs(payload->iteration), LOOPBACK_MODE(efx));
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100353 goto err;
354 }
355
356 /* Increase correct RX count */
Ben Hutchings62776d02010-06-23 11:30:07 +0000357 netif_vdbg(efx, drv, efx->net_dev,
358 "got loopback RX in %s loopback test\n", LOOPBACK_MODE(efx));
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100359
360 atomic_inc(&state->rx_good);
361 return;
362
363 err:
Ben Hutchings5f3f9d62011-11-04 22:29:14 +0000364#ifdef DEBUG
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100365 if (atomic_read(&state->rx_bad) == 0) {
Ben Hutchings62776d02010-06-23 11:30:07 +0000366 netif_err(efx, drv, efx->net_dev, "received packet:\n");
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100367 print_hex_dump(KERN_ERR, "", DUMP_PREFIX_OFFSET, 0x10, 1,
368 buf_ptr, pkt_len, 0);
Ben Hutchings62776d02010-06-23 11:30:07 +0000369 netif_err(efx, drv, efx->net_dev, "expected packet:\n");
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100370 print_hex_dump(KERN_ERR, "", DUMP_PREFIX_OFFSET, 0x10, 1,
371 &state->payload, sizeof(state->payload), 0);
372 }
373#endif
374 atomic_inc(&state->rx_bad);
375}
376
377/* Initialise an efx_selftest_state for a new iteration */
378static void efx_iterate_state(struct efx_nic *efx)
379{
Ben Hutchings8c8661e2008-09-01 12:49:02 +0100380 struct efx_loopback_state *state = efx->loopback_selftest;
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100381 struct net_device *net_dev = efx->net_dev;
382 struct efx_loopback_payload *payload = &state->payload;
383
384 /* Initialise the layerII header */
Edward Creecd84ff42014-03-07 18:27:41 +0000385 ether_addr_copy((u8 *)&payload->header.h_dest, net_dev->dev_addr);
386 ether_addr_copy((u8 *)&payload->header.h_source, payload_source);
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100387 payload->header.h_proto = htons(ETH_P_IP);
388
389 /* saddr set later and used as incrementing count */
390 payload->ip.daddr = htonl(INADDR_LOOPBACK);
391 payload->ip.ihl = 5;
Ben Hutchings3f978ef32012-09-06 02:11:06 +0100392 payload->ip.check = (__force __sum16) htons(0xdead);
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100393 payload->ip.tot_len = htons(sizeof(*payload) - sizeof(struct ethhdr));
394 payload->ip.version = IPVERSION;
395 payload->ip.protocol = IPPROTO_UDP;
396
397 /* Initialise udp header */
398 payload->udp.source = 0;
399 payload->udp.len = htons(sizeof(*payload) - sizeof(struct ethhdr) -
400 sizeof(struct iphdr));
401 payload->udp.check = 0; /* checksum ignored */
402
403 /* Fill out payload */
404 payload->iteration = htons(ntohs(payload->iteration) + 1);
405 memcpy(&payload->msg, payload_msg, sizeof(payload_msg));
406
407 /* Fill out remaining state members */
408 atomic_set(&state->rx_good, 0);
409 atomic_set(&state->rx_bad, 0);
410 smp_wmb();
411}
412
Ben Hutchingsb9aafb02008-09-01 12:46:33 +0100413static int efx_begin_loopback(struct efx_tx_queue *tx_queue)
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100414{
415 struct efx_nic *efx = tx_queue->efx;
Ben Hutchings8c8661e2008-09-01 12:49:02 +0100416 struct efx_loopback_state *state = efx->loopback_selftest;
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100417 struct efx_loopback_payload *payload;
418 struct sk_buff *skb;
Stephen Hemminger613573252009-08-31 19:50:58 +0000419 int i;
420 netdev_tx_t rc;
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100421
422 /* Transmit N copies of buffer */
423 for (i = 0; i < state->packet_count; i++) {
Ben Hutchings8c8661e2008-09-01 12:49:02 +0100424 /* Allocate an skb, holding an extra reference for
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100425 * transmit completion counting */
426 skb = alloc_skb(sizeof(state->payload), GFP_KERNEL);
427 if (!skb)
428 return -ENOMEM;
429 state->skbs[i] = skb;
430 skb_get(skb);
431
432 /* Copy the payload in, incrementing the source address to
433 * exercise the rss vectors */
434 payload = ((struct efx_loopback_payload *)
435 skb_put(skb, sizeof(state->payload)));
436 memcpy(payload, &state->payload, sizeof(state->payload));
437 payload->ip.saddr = htonl(INADDR_LOOPBACK | (i << 2));
438
439 /* Ensure everything we've written is visible to the
440 * interrupt handler. */
441 smp_wmb();
442
Ben Hutchings73ba7b62012-01-09 19:47:08 +0000443 netif_tx_lock_bh(efx->net_dev);
Ben Hutchings497f5ba2009-11-23 16:07:05 +0000444 rc = efx_enqueue_skb(tx_queue, skb);
Ben Hutchings73ba7b62012-01-09 19:47:08 +0000445 netif_tx_unlock_bh(efx->net_dev);
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100446
447 if (rc != NETDEV_TX_OK) {
Ben Hutchings62776d02010-06-23 11:30:07 +0000448 netif_err(efx, drv, efx->net_dev,
449 "TX queue %d could not transmit packet %d of "
450 "%d in %s loopback test\n", tx_queue->queue,
451 i + 1, state->packet_count,
452 LOOPBACK_MODE(efx));
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100453
454 /* Defer cleaning up the other skbs for the caller */
455 kfree_skb(skb);
456 return -EPIPE;
457 }
458 }
459
460 return 0;
461}
462
Ben Hutchingsb9aafb02008-09-01 12:46:33 +0100463static int efx_poll_loopback(struct efx_nic *efx)
464{
Ben Hutchings8c8661e2008-09-01 12:49:02 +0100465 struct efx_loopback_state *state = efx->loopback_selftest;
Ben Hutchingsb9aafb02008-09-01 12:46:33 +0100466
Ben Hutchingsb9aafb02008-09-01 12:46:33 +0100467 return atomic_read(&state->rx_good) == state->packet_count;
468}
469
470static int efx_end_loopback(struct efx_tx_queue *tx_queue,
471 struct efx_loopback_self_tests *lb_tests)
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100472{
473 struct efx_nic *efx = tx_queue->efx;
Ben Hutchings8c8661e2008-09-01 12:49:02 +0100474 struct efx_loopback_state *state = efx->loopback_selftest;
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100475 struct sk_buff *skb;
476 int tx_done = 0, rx_good, rx_bad;
477 int i, rc = 0;
478
Ben Hutchings73ba7b62012-01-09 19:47:08 +0000479 netif_tx_lock_bh(efx->net_dev);
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100480
481 /* Count the number of tx completions, and decrement the refcnt. Any
482 * skbs not already completed will be free'd when the queue is flushed */
Ben Hutchings9c636ba2012-01-05 17:19:45 +0000483 for (i = 0; i < state->packet_count; i++) {
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100484 skb = state->skbs[i];
485 if (skb && !skb_shared(skb))
486 ++tx_done;
Ben Hutchingse3ed2bd2012-07-02 23:03:02 +0100487 dev_kfree_skb(skb);
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100488 }
489
Ben Hutchings73ba7b62012-01-09 19:47:08 +0000490 netif_tx_unlock_bh(efx->net_dev);
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100491
492 /* Check TX completion and received packet counts */
493 rx_good = atomic_read(&state->rx_good);
494 rx_bad = atomic_read(&state->rx_bad);
495 if (tx_done != state->packet_count) {
496 /* Don't free the skbs; they will be picked up on TX
497 * overflow or channel teardown.
498 */
Ben Hutchings62776d02010-06-23 11:30:07 +0000499 netif_err(efx, drv, efx->net_dev,
500 "TX queue %d saw only %d out of an expected %d "
501 "TX completion events in %s loopback test\n",
502 tx_queue->queue, tx_done, state->packet_count,
503 LOOPBACK_MODE(efx));
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100504 rc = -ETIMEDOUT;
505 /* Allow to fall through so we see the RX errors as well */
506 }
507
508 /* We may always be up to a flush away from our desired packet total */
509 if (rx_good != state->packet_count) {
Ben Hutchings62776d02010-06-23 11:30:07 +0000510 netif_dbg(efx, drv, efx->net_dev,
511 "TX queue %d saw only %d out of an expected %d "
512 "received packets in %s loopback test\n",
513 tx_queue->queue, rx_good, state->packet_count,
514 LOOPBACK_MODE(efx));
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100515 rc = -ETIMEDOUT;
516 /* Fall through */
517 }
518
519 /* Update loopback test structure */
520 lb_tests->tx_sent[tx_queue->queue] += state->packet_count;
521 lb_tests->tx_done[tx_queue->queue] += tx_done;
522 lb_tests->rx_good += rx_good;
523 lb_tests->rx_bad += rx_bad;
524
525 return rc;
526}
527
528static int
529efx_test_loopback(struct efx_tx_queue *tx_queue,
530 struct efx_loopback_self_tests *lb_tests)
531{
532 struct efx_nic *efx = tx_queue->efx;
Ben Hutchings8c8661e2008-09-01 12:49:02 +0100533 struct efx_loopback_state *state = efx->loopback_selftest;
Ben Hutchingsb9aafb02008-09-01 12:46:33 +0100534 int i, begin_rc, end_rc;
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100535
Ben Hutchings8c8661e2008-09-01 12:49:02 +0100536 for (i = 0; i < 3; i++) {
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100537 /* Determine how many packets to send */
Steve Hodgsonecc910f2010-09-10 06:42:22 +0000538 state->packet_count = efx->txq_entries / 3;
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100539 state->packet_count = min(1 << (i << 2), state->packet_count);
Thomas Meyerc2e4e252011-12-02 12:36:13 +0000540 state->skbs = kcalloc(state->packet_count,
541 sizeof(state->skbs[0]), GFP_KERNEL);
Ben Hutchings9b7bfc42008-05-16 21:20:20 +0100542 if (!state->skbs)
543 return -ENOMEM;
Ben Hutchingsdc8cfa52008-09-01 12:46:50 +0100544 state->flush = false;
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100545
Ben Hutchings62776d02010-06-23 11:30:07 +0000546 netif_dbg(efx, drv, efx->net_dev,
547 "TX queue %d testing %s loopback with %d packets\n",
548 tx_queue->queue, LOOPBACK_MODE(efx),
549 state->packet_count);
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100550
551 efx_iterate_state(efx);
Ben Hutchingsb9aafb02008-09-01 12:46:33 +0100552 begin_rc = efx_begin_loopback(tx_queue);
553
554 /* This will normally complete very quickly, but be
Ben Hutchings93e5dfa2012-02-28 20:40:53 +0000555 * prepared to wait much longer. */
Ben Hutchingsb9aafb02008-09-01 12:46:33 +0100556 msleep(1);
557 if (!efx_poll_loopback(efx)) {
Ben Hutchings93e5dfa2012-02-28 20:40:53 +0000558 msleep(LOOPBACK_TIMEOUT_MS);
Ben Hutchingsb9aafb02008-09-01 12:46:33 +0100559 efx_poll_loopback(efx);
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100560 }
561
Ben Hutchingsb9aafb02008-09-01 12:46:33 +0100562 end_rc = efx_end_loopback(tx_queue, lb_tests);
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100563 kfree(state->skbs);
564
Ben Hutchingsb9aafb02008-09-01 12:46:33 +0100565 if (begin_rc || end_rc) {
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100566 /* Wait a while to ensure there are no packets
567 * floating around after a failure. */
568 schedule_timeout_uninterruptible(HZ / 10);
Ben Hutchingsb9aafb02008-09-01 12:46:33 +0100569 return begin_rc ? begin_rc : end_rc;
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100570 }
571 }
572
Ben Hutchings62776d02010-06-23 11:30:07 +0000573 netif_dbg(efx, drv, efx->net_dev,
574 "TX queue %d passed %s loopback test with a burst length "
575 "of %d packets\n", tx_queue->queue, LOOPBACK_MODE(efx),
576 state->packet_count);
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100577
Ben Hutchingsa0c2c192008-09-01 12:45:08 +0100578 return 0;
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100579}
580
Steve Hodgson78c1f0a2009-11-29 03:43:00 +0000581/* Wait for link up. On Falcon, we would prefer to rely on efx_monitor, but
582 * any contention on the mac lock (via e.g. efx_mac_mcast_work) causes it
583 * to delay and retry. Therefore, it's safer to just poll directly. Wait
584 * for link up and any faults to dissipate. */
585static int efx_wait_for_link(struct efx_nic *efx)
586{
587 struct efx_link_state *link_state = &efx->link_state;
Steve Hodgson901d3fe2010-06-01 11:18:28 +0000588 int count, link_up_count = 0;
Steve Hodgson78c1f0a2009-11-29 03:43:00 +0000589 bool link_up;
590
591 for (count = 0; count < 40; count++) {
592 schedule_timeout_uninterruptible(HZ / 10);
593
594 if (efx->type->monitor != NULL) {
595 mutex_lock(&efx->mac_lock);
596 efx->type->monitor(efx);
597 mutex_unlock(&efx->mac_lock);
Steve Hodgson78c1f0a2009-11-29 03:43:00 +0000598 }
599
600 mutex_lock(&efx->mac_lock);
601 link_up = link_state->up;
602 if (link_up)
Ben Hutchings710b2082011-09-03 00:15:00 +0100603 link_up = !efx->type->check_mac_fault(efx);
Steve Hodgson78c1f0a2009-11-29 03:43:00 +0000604 mutex_unlock(&efx->mac_lock);
605
Steve Hodgson901d3fe2010-06-01 11:18:28 +0000606 if (link_up) {
607 if (++link_up_count == 2)
608 return 0;
609 } else {
610 link_up_count = 0;
611 }
Steve Hodgson78c1f0a2009-11-29 03:43:00 +0000612 }
613
614 return -ETIMEDOUT;
615}
616
Ben Hutchingsa5692e42008-12-26 13:46:38 -0800617static int efx_test_loopbacks(struct efx_nic *efx, struct efx_self_tests *tests,
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100618 unsigned int loopback_modes)
619{
Ben Hutchings8c8661e2008-09-01 12:49:02 +0100620 enum efx_loopback_mode mode;
621 struct efx_loopback_state *state;
Ben Hutchings1ac02262012-09-13 02:22:52 +0100622 struct efx_channel *channel =
623 efx_get_channel(efx, efx->tx_channel_offset);
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100624 struct efx_tx_queue *tx_queue;
Steve Hodgson78c1f0a2009-11-29 03:43:00 +0000625 int rc = 0;
Ben Hutchingsf8ea0b672008-09-01 12:46:28 +0100626
Ben Hutchings8c8661e2008-09-01 12:49:02 +0100627 /* Set the port loopback_selftest member. From this point on
628 * all received packets will be dropped. Mark the state as
629 * "flushing" so all inflight packets are dropped */
630 state = kzalloc(sizeof(*state), GFP_KERNEL);
631 if (state == NULL)
632 return -ENOMEM;
633 BUG_ON(efx->loopback_selftest);
634 state->flush = true;
635 efx->loopback_selftest = state;
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100636
637 /* Test all supported loopback modes */
Ben Hutchings8c8661e2008-09-01 12:49:02 +0100638 for (mode = LOOPBACK_NONE; mode <= LOOPBACK_TEST_MAX; mode++) {
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100639 if (!(loopback_modes & (1 << mode)))
640 continue;
641
642 /* Move the port into the specified loopback mode. */
Ben Hutchingsdc8cfa52008-09-01 12:46:50 +0100643 state->flush = true;
Steve Hodgson78c1f0a2009-11-29 03:43:00 +0000644 mutex_lock(&efx->mac_lock);
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100645 efx->loopback_mode = mode;
Steve Hodgson78c1f0a2009-11-29 03:43:00 +0000646 rc = __efx_reconfigure_port(efx);
647 mutex_unlock(&efx->mac_lock);
648 if (rc) {
Ben Hutchings62776d02010-06-23 11:30:07 +0000649 netif_err(efx, drv, efx->net_dev,
650 "unable to move into %s loopback\n",
651 LOOPBACK_MODE(efx));
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100652 goto out;
653 }
654
Steve Hodgson78c1f0a2009-11-29 03:43:00 +0000655 rc = efx_wait_for_link(efx);
656 if (rc) {
Ben Hutchings62776d02010-06-23 11:30:07 +0000657 netif_err(efx, drv, efx->net_dev,
658 "loopback %s never came up\n",
659 LOOPBACK_MODE(efx));
Steve Hodgson78c1f0a2009-11-29 03:43:00 +0000660 goto out;
661 }
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100662
Ben Hutchings94b274b2011-01-10 21:18:20 +0000663 /* Test all enabled types of TX queue */
Ben Hutchingsf7d12cd2010-09-10 06:41:47 +0000664 efx_for_each_channel_tx_queue(tx_queue, channel) {
Ben Hutchingsa4900ac2010-04-28 09:30:43 +0000665 state->offload_csum = (tx_queue->queue &
666 EFX_TXQ_TYPE_OFFLOAD);
Ben Hutchingsf8ea0b672008-09-01 12:46:28 +0100667 rc = efx_test_loopback(tx_queue,
668 &tests->loopback[mode]);
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100669 if (rc)
670 goto out;
671 }
672 }
673
674 out:
Ben Hutchings8c8661e2008-09-01 12:49:02 +0100675 /* Remove the flush. The caller will remove the loopback setting */
Ben Hutchingsdc8cfa52008-09-01 12:46:50 +0100676 state->flush = true;
Ben Hutchings8c8661e2008-09-01 12:49:02 +0100677 efx->loopback_selftest = NULL;
678 wmb();
679 kfree(state);
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100680
Daniel Pieczko27324822015-07-31 11:14:54 +0100681 if (rc == -EPERM)
682 rc = 0;
683
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100684 return rc;
685}
686
687/**************************************************************************
688 *
Ben Hutchings2ef30682008-12-26 13:47:04 -0800689 * Entry point
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100690 *
691 *************************************************************************/
692
Ben Hutchings2ef30682008-12-26 13:47:04 -0800693int efx_selftest(struct efx_nic *efx, struct efx_self_tests *tests,
694 unsigned flags)
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100695{
Ben Hutchings8c8661e2008-09-01 12:49:02 +0100696 enum efx_loopback_mode loopback_mode = efx->loopback_mode;
697 int phy_mode = efx->phy_mode;
Ben Hutchingsd4f2cec2012-07-04 03:58:33 +0100698 int rc_test = 0, rc_reset, rc;
Ben Hutchings2ef30682008-12-26 13:47:04 -0800699
Ben Hutchingsdd407812012-02-28 23:40:21 +0000700 efx_selftest_async_cancel(efx);
701
Ben Hutchings2ef30682008-12-26 13:47:04 -0800702 /* Online (i.e. non-disruptive) testing
703 * This checks interrupt generation, event delivery and PHY presence. */
704
Ben Hutchings4f16c072010-02-03 09:30:50 +0000705 rc = efx_test_phy_alive(efx, tests);
Ben Hutchings2ef30682008-12-26 13:47:04 -0800706 if (rc && !rc_test)
707 rc_test = rc;
708
709 rc = efx_test_nvram(efx, tests);
710 if (rc && !rc_test)
711 rc_test = rc;
712
713 rc = efx_test_interrupts(efx, tests);
714 if (rc && !rc_test)
715 rc_test = rc;
716
Ben Hutchingsed74f482012-02-28 20:40:54 +0000717 rc = efx_test_eventq_irq(efx, tests);
718 if (rc && !rc_test)
719 rc_test = rc;
Ben Hutchings2ef30682008-12-26 13:47:04 -0800720
721 if (rc_test)
722 return rc_test;
723
724 if (!(flags & ETH_TEST_FL_OFFLINE))
Ben Hutchings17967212008-12-26 13:47:25 -0800725 return efx_test_phy(efx, tests, flags);
Ben Hutchings2ef30682008-12-26 13:47:04 -0800726
727 /* Offline (i.e. disruptive) testing
728 * This checks MAC and PHY loopback on the specified port. */
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100729
Ben Hutchingse4abce82011-05-16 18:51:24 +0100730 /* Detach the device so the kernel doesn't transmit during the
731 * loopback test and the watchdog timeout doesn't fire.
Ben Hutchings8c8661e2008-09-01 12:49:02 +0100732 */
Daniel Pieczkoc2f3b8e2012-10-17 13:21:23 +0100733 efx_device_detach_sync(efx);
Ben Hutchingse4abce82011-05-16 18:51:24 +0100734
Ben Hutchingsd4f2cec2012-07-04 03:58:33 +0100735 if (efx->type->test_chip) {
736 rc_reset = efx->type->test_chip(efx, tests);
737 if (rc_reset) {
738 netif_err(efx, hw, efx->net_dev,
739 "Unable to recover from chip test\n");
740 efx_schedule_reset(efx, RESET_TYPE_DISABLE);
741 return rc_reset;
742 }
743
Jon Cooper74cd60a2013-09-16 14:18:51 +0100744 if ((tests->memory < 0 || tests->registers < 0) && !rc_test)
Ben Hutchingsd4f2cec2012-07-04 03:58:33 +0100745 rc_test = -EIO;
Ben Hutchings6f158d52008-12-12 22:00:49 -0800746 }
747
Ben Hutchingsa5692e42008-12-26 13:46:38 -0800748 /* Ensure that the phy is powered and out of loopback
749 * for the bist and loopback tests */
Ben Hutchingsd4f2cec2012-07-04 03:58:33 +0100750 mutex_lock(&efx->mac_lock);
Ben Hutchingsa5692e42008-12-26 13:46:38 -0800751 efx->phy_mode &= ~PHY_MODE_LOW_POWER;
Ben Hutchings8c8661e2008-09-01 12:49:02 +0100752 efx->loopback_mode = LOOPBACK_NONE;
Ben Hutchingsd4f2cec2012-07-04 03:58:33 +0100753 __efx_reconfigure_port(efx);
754 mutex_unlock(&efx->mac_lock);
Ben Hutchings8c8661e2008-09-01 12:49:02 +0100755
Ben Hutchings17967212008-12-26 13:47:25 -0800756 rc = efx_test_phy(efx, tests, flags);
Ben Hutchings2ef30682008-12-26 13:47:04 -0800757 if (rc && !rc_test)
758 rc_test = rc;
Ben Hutchings8c8661e2008-09-01 12:49:02 +0100759
Ben Hutchings2ef30682008-12-26 13:47:04 -0800760 rc = efx_test_loopbacks(efx, tests, efx->loopback_modes);
761 if (rc && !rc_test)
762 rc_test = rc;
Ben Hutchings8c8661e2008-09-01 12:49:02 +0100763
764 /* restore the PHY to the previous state */
Ben Hutchingsd3245b22009-11-29 03:42:41 +0000765 mutex_lock(&efx->mac_lock);
Ben Hutchings8c8661e2008-09-01 12:49:02 +0100766 efx->phy_mode = phy_mode;
Ben Hutchingsd3245b22009-11-29 03:42:41 +0000767 efx->loopback_mode = loopback_mode;
768 __efx_reconfigure_port(efx);
769 mutex_unlock(&efx->mac_lock);
Ben Hutchings8c8661e2008-09-01 12:49:02 +0100770
Peter Dunning9c568fd2017-02-17 15:50:43 +0000771 efx_device_attach_if_not_resetting(efx);
Neil Turton9d1aea62011-04-04 13:46:23 +0100772
Ben Hutchings2ef30682008-12-26 13:47:04 -0800773 return rc_test;
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100774}
775
Ben Hutchingsdd407812012-02-28 23:40:21 +0000776void efx_selftest_async_start(struct efx_nic *efx)
777{
778 struct efx_channel *channel;
779
780 efx_for_each_channel(channel, efx)
781 efx_nic_event_test_start(channel);
782 schedule_delayed_work(&efx->selftest_work, IRQ_TIMEOUT);
783}
784
785void efx_selftest_async_cancel(struct efx_nic *efx)
786{
787 cancel_delayed_work_sync(&efx->selftest_work);
788}
789
790void efx_selftest_async_work(struct work_struct *data)
791{
792 struct efx_nic *efx = container_of(data, struct efx_nic,
793 selftest_work.work);
794 struct efx_channel *channel;
795 int cpu;
796
797 efx_for_each_channel(channel, efx) {
798 cpu = efx_nic_event_test_irq_cpu(channel);
799 if (cpu < 0)
800 netif_err(efx, ifup, efx->net_dev,
801 "channel %d failed to trigger an interrupt\n",
802 channel->channel);
803 else
804 netif_dbg(efx, ifup, efx->net_dev,
805 "channel %d triggered interrupt on CPU %d\n",
806 channel->channel, cpu);
807 }
808}