blob: de4c0069f5b2ef658f9badf314672685bc21cf13 [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.
Ben Hutchings0a6f40c2011-02-25 00:01:34 +00004 * Copyright 2006-2010 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;
49 const 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 */
53static const unsigned char payload_source[ETH_ALEN] = {
54 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);
117 tests->nvram = rc ? -1 : 1;
118 }
119
Ben Hutchings8c8661e2008-09-01 12:49:02 +0100120 return rc;
121}
122
123static int efx_test_chip(struct efx_nic *efx, struct efx_self_tests *tests)
124{
Ben Hutchings9bfc4bb2009-11-29 03:43:23 +0000125 int rc = 0;
Ben Hutchings8c8661e2008-09-01 12:49:02 +0100126
Ben Hutchings9bfc4bb2009-11-29 03:43:23 +0000127 /* Test register access */
128 if (efx->type->test_registers) {
129 rc = efx->type->test_registers(efx);
130 tests->registers = rc ? -1 : 1;
131 }
Ben Hutchings8c8661e2008-09-01 12:49:02 +0100132
Ben Hutchings8c8661e2008-09-01 12:49:02 +0100133 return rc;
134}
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100135
136/**************************************************************************
137 *
138 * Interrupt and event queue testing
139 *
140 **************************************************************************/
141
142/* Test generation and receipt of interrupts */
143static int efx_test_interrupts(struct efx_nic *efx,
144 struct efx_self_tests *tests)
145{
Ben Hutchings93e5dfa2012-02-28 20:40:53 +0000146 unsigned long timeout, wait;
Ben Hutchings1646a6f32012-01-05 20:14:10 +0000147 int cpu;
148
Ben Hutchings62776d02010-06-23 11:30:07 +0000149 netif_dbg(efx, drv, efx->net_dev, "testing interrupts\n");
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100150 tests->interrupt = -1;
151
Ben Hutchingseee6f6a2012-02-28 23:37:35 +0000152 efx_nic_irq_test_start(efx);
Ben Hutchings93e5dfa2012-02-28 20:40:53 +0000153 timeout = jiffies + IRQ_TIMEOUT;
154 wait = 1;
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100155
156 /* Wait for arrival of test interrupt. */
Ben Hutchings62776d02010-06-23 11:30:07 +0000157 netif_dbg(efx, drv, efx->net_dev, "waiting for test interrupt\n");
Ben Hutchings93e5dfa2012-02-28 20:40:53 +0000158 do {
159 schedule_timeout_uninterruptible(wait);
Ben Hutchingseee6f6a2012-02-28 23:37:35 +0000160 cpu = efx_nic_irq_test_irq_cpu(efx);
Ben Hutchings93e5dfa2012-02-28 20:40:53 +0000161 if (cpu >= 0)
162 goto success;
163 wait *= 2;
164 } while (time_before(jiffies, timeout));
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100165
Ben Hutchings62776d02010-06-23 11:30:07 +0000166 netif_err(efx, drv, efx->net_dev, "timed out waiting for interrupt\n");
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100167 return -ETIMEDOUT;
168
169 success:
Ben Hutchings62776d02010-06-23 11:30:07 +0000170 netif_dbg(efx, drv, efx->net_dev, "%s test interrupt seen on CPU%d\n",
Ben Hutchings1646a6f32012-01-05 20:14:10 +0000171 INT_MODE(efx), cpu);
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100172 tests->interrupt = 1;
173 return 0;
174}
175
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100176/* Test generation and receipt of interrupting events */
Ben Hutchingsed74f482012-02-28 20:40:54 +0000177static int efx_test_eventq_irq(struct efx_nic *efx,
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100178 struct efx_self_tests *tests)
179{
Ben Hutchingsed74f482012-02-28 20:40:54 +0000180 struct efx_channel *channel;
181 unsigned int read_ptr[EFX_MAX_CHANNELS];
182 unsigned long napi_ran = 0, dma_pend = 0, int_pend = 0;
Ben Hutchings93e5dfa2012-02-28 20:40:53 +0000183 unsigned long timeout, wait;
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100184
Ben Hutchingsed74f482012-02-28 20:40:54 +0000185 BUILD_BUG_ON(EFX_MAX_CHANNELS > BITS_PER_LONG);
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100186
Ben Hutchingsed74f482012-02-28 20:40:54 +0000187 efx_for_each_channel(channel, efx) {
188 read_ptr[channel->channel] = channel->eventq_read_ptr;
189 set_bit(channel->channel, &dma_pend);
190 set_bit(channel->channel, &int_pend);
Ben Hutchingseee6f6a2012-02-28 23:37:35 +0000191 efx_nic_event_test_start(channel);
Ben Hutchingsed74f482012-02-28 20:40:54 +0000192 }
193
Ben Hutchings93e5dfa2012-02-28 20:40:53 +0000194 timeout = jiffies + IRQ_TIMEOUT;
195 wait = 1;
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100196
Ben Hutchingsed74f482012-02-28 20:40:54 +0000197 /* Wait for arrival of interrupts. NAPI processing may or may
Ben Hutchings0fb53fa2011-11-04 23:06:04 +0000198 * not complete in time, but we can cope in any case.
199 */
Ben Hutchings93e5dfa2012-02-28 20:40:53 +0000200 do {
201 schedule_timeout_uninterruptible(wait);
202
Ben Hutchingsed74f482012-02-28 20:40:54 +0000203 efx_for_each_channel(channel, efx) {
204 napi_disable(&channel->napi_str);
205 if (channel->eventq_read_ptr !=
206 read_ptr[channel->channel]) {
207 set_bit(channel->channel, &napi_ran);
208 clear_bit(channel->channel, &dma_pend);
209 clear_bit(channel->channel, &int_pend);
210 } else {
211 if (efx_nic_event_present(channel))
212 clear_bit(channel->channel, &dma_pend);
Ben Hutchingseee6f6a2012-02-28 23:37:35 +0000213 if (efx_nic_event_test_irq_cpu(channel) >= 0)
Ben Hutchingsed74f482012-02-28 20:40:54 +0000214 clear_bit(channel->channel, &int_pend);
215 }
216 napi_enable(&channel->napi_str);
217 efx_nic_eventq_read_ack(channel);
Ben Hutchings93e5dfa2012-02-28 20:40:53 +0000218 }
Ben Hutchings93e5dfa2012-02-28 20:40:53 +0000219
220 wait *= 2;
Ben Hutchingsed74f482012-02-28 20:40:54 +0000221 } while ((dma_pend || int_pend) && time_before(jiffies, timeout));
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100222
Ben Hutchingsed74f482012-02-28 20:40:54 +0000223 efx_for_each_channel(channel, efx) {
224 bool dma_seen = !test_bit(channel->channel, &dma_pend);
225 bool int_seen = !test_bit(channel->channel, &int_pend);
Ben Hutchings0fb53fa2011-11-04 23:06:04 +0000226
Ben Hutchingsed74f482012-02-28 20:40:54 +0000227 tests->eventq_dma[channel->channel] = dma_seen ? 1 : -1;
228 tests->eventq_int[channel->channel] = int_seen ? 1 : -1;
229
230 if (dma_seen && int_seen) {
231 netif_dbg(efx, drv, efx->net_dev,
232 "channel %d event queue passed (with%s NAPI)\n",
233 channel->channel,
234 test_bit(channel->channel, &napi_ran) ?
235 "" : "out");
236 } else {
237 /* Report failure and whether either interrupt or DMA
238 * worked
239 */
Ben Hutchings0fb53fa2011-11-04 23:06:04 +0000240 netif_err(efx, drv, efx->net_dev,
Ben Hutchingsed74f482012-02-28 20:40:54 +0000241 "channel %d timed out waiting for event queue\n",
Ben Hutchings0fb53fa2011-11-04 23:06:04 +0000242 channel->channel);
Ben Hutchingsed74f482012-02-28 20:40:54 +0000243 if (int_seen)
244 netif_err(efx, drv, efx->net_dev,
245 "channel %d saw interrupt "
246 "during event queue test\n",
247 channel->channel);
248 if (dma_seen)
249 netif_err(efx, drv, efx->net_dev,
250 "channel %d event was generated, but "
251 "failed to trigger an interrupt\n",
252 channel->channel);
253 }
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100254 }
Ben Hutchingsed74f482012-02-28 20:40:54 +0000255
256 return (dma_pend || int_pend) ? -ETIMEDOUT : 0;
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100257}
258
Ben Hutchings17967212008-12-26 13:47:25 -0800259static int efx_test_phy(struct efx_nic *efx, struct efx_self_tests *tests,
260 unsigned flags)
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100261{
Ben Hutchings8c8661e2008-09-01 12:49:02 +0100262 int rc;
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100263
Ben Hutchings17967212008-12-26 13:47:25 -0800264 if (!efx->phy_op->run_tests)
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100265 return 0;
266
Ben Hutchings8c8661e2008-09-01 12:49:02 +0100267 mutex_lock(&efx->mac_lock);
Ben Hutchings4f16c072010-02-03 09:30:50 +0000268 rc = efx->phy_op->run_tests(efx, tests->phy_ext, flags);
Ben Hutchings8c8661e2008-09-01 12:49:02 +0100269 mutex_unlock(&efx->mac_lock);
Ben Hutchings8c8661e2008-09-01 12:49:02 +0100270 return rc;
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100271}
272
273/**************************************************************************
274 *
275 * Loopback testing
276 * NB Only one loopback test can be executing concurrently.
277 *
278 **************************************************************************/
279
280/* Loopback test RX callback
281 * This is called for each received packet during loopback testing.
282 */
283void efx_loopback_rx_packet(struct efx_nic *efx,
284 const char *buf_ptr, int pkt_len)
285{
Ben Hutchings8c8661e2008-09-01 12:49:02 +0100286 struct efx_loopback_state *state = efx->loopback_selftest;
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100287 struct efx_loopback_payload *received;
288 struct efx_loopback_payload *payload;
289
290 BUG_ON(!buf_ptr);
291
292 /* If we are just flushing, then drop the packet */
293 if ((state == NULL) || state->flush)
294 return;
295
296 payload = &state->payload;
Ben Hutchings8c8661e2008-09-01 12:49:02 +0100297
Ben Hutchingsd3208b52008-05-16 21:20:00 +0100298 received = (struct efx_loopback_payload *) buf_ptr;
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100299 received->ip.saddr = payload->ip.saddr;
Ben Hutchings60ac1062008-09-01 12:44:59 +0100300 if (state->offload_csum)
301 received->ip.check = payload->ip.check;
302
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100303 /* Check that header exists */
304 if (pkt_len < sizeof(received->header)) {
Ben Hutchings62776d02010-06-23 11:30:07 +0000305 netif_err(efx, drv, efx->net_dev,
306 "saw runt RX packet (length %d) in %s loopback "
307 "test\n", pkt_len, LOOPBACK_MODE(efx));
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100308 goto err;
309 }
310
311 /* Check that the ethernet header exists */
312 if (memcmp(&received->header, &payload->header, ETH_HLEN) != 0) {
Ben Hutchings62776d02010-06-23 11:30:07 +0000313 netif_err(efx, drv, efx->net_dev,
314 "saw non-loopback RX packet in %s loopback test\n",
315 LOOPBACK_MODE(efx));
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100316 goto err;
317 }
318
319 /* Check packet length */
320 if (pkt_len != sizeof(*payload)) {
Ben Hutchings62776d02010-06-23 11:30:07 +0000321 netif_err(efx, drv, efx->net_dev,
322 "saw incorrect RX packet length %d (wanted %d) in "
323 "%s loopback test\n", pkt_len, (int)sizeof(*payload),
324 LOOPBACK_MODE(efx));
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100325 goto err;
326 }
327
328 /* Check that IP header matches */
329 if (memcmp(&received->ip, &payload->ip, sizeof(payload->ip)) != 0) {
Ben Hutchings62776d02010-06-23 11:30:07 +0000330 netif_err(efx, drv, efx->net_dev,
331 "saw corrupted IP header in %s loopback test\n",
332 LOOPBACK_MODE(efx));
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100333 goto err;
334 }
335
336 /* Check that msg and padding matches */
337 if (memcmp(&received->msg, &payload->msg, sizeof(received->msg)) != 0) {
Ben Hutchings62776d02010-06-23 11:30:07 +0000338 netif_err(efx, drv, efx->net_dev,
339 "saw corrupted RX packet in %s loopback test\n",
340 LOOPBACK_MODE(efx));
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100341 goto err;
342 }
343
344 /* Check that iteration matches */
345 if (received->iteration != payload->iteration) {
Ben Hutchings62776d02010-06-23 11:30:07 +0000346 netif_err(efx, drv, efx->net_dev,
347 "saw RX packet from iteration %d (wanted %d) in "
348 "%s loopback test\n", ntohs(received->iteration),
349 ntohs(payload->iteration), LOOPBACK_MODE(efx));
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100350 goto err;
351 }
352
353 /* Increase correct RX count */
Ben Hutchings62776d02010-06-23 11:30:07 +0000354 netif_vdbg(efx, drv, efx->net_dev,
355 "got loopback RX in %s loopback test\n", LOOPBACK_MODE(efx));
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100356
357 atomic_inc(&state->rx_good);
358 return;
359
360 err:
Ben Hutchings5f3f9d62011-11-04 22:29:14 +0000361#ifdef DEBUG
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100362 if (atomic_read(&state->rx_bad) == 0) {
Ben Hutchings62776d02010-06-23 11:30:07 +0000363 netif_err(efx, drv, efx->net_dev, "received packet:\n");
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100364 print_hex_dump(KERN_ERR, "", DUMP_PREFIX_OFFSET, 0x10, 1,
365 buf_ptr, pkt_len, 0);
Ben Hutchings62776d02010-06-23 11:30:07 +0000366 netif_err(efx, drv, efx->net_dev, "expected packet:\n");
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100367 print_hex_dump(KERN_ERR, "", DUMP_PREFIX_OFFSET, 0x10, 1,
368 &state->payload, sizeof(state->payload), 0);
369 }
370#endif
371 atomic_inc(&state->rx_bad);
372}
373
374/* Initialise an efx_selftest_state for a new iteration */
375static void efx_iterate_state(struct efx_nic *efx)
376{
Ben Hutchings8c8661e2008-09-01 12:49:02 +0100377 struct efx_loopback_state *state = efx->loopback_selftest;
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100378 struct net_device *net_dev = efx->net_dev;
379 struct efx_loopback_payload *payload = &state->payload;
380
381 /* Initialise the layerII header */
382 memcpy(&payload->header.h_dest, net_dev->dev_addr, ETH_ALEN);
383 memcpy(&payload->header.h_source, &payload_source, ETH_ALEN);
384 payload->header.h_proto = htons(ETH_P_IP);
385
386 /* saddr set later and used as incrementing count */
387 payload->ip.daddr = htonl(INADDR_LOOPBACK);
388 payload->ip.ihl = 5;
389 payload->ip.check = htons(0xdead);
390 payload->ip.tot_len = htons(sizeof(*payload) - sizeof(struct ethhdr));
391 payload->ip.version = IPVERSION;
392 payload->ip.protocol = IPPROTO_UDP;
393
394 /* Initialise udp header */
395 payload->udp.source = 0;
396 payload->udp.len = htons(sizeof(*payload) - sizeof(struct ethhdr) -
397 sizeof(struct iphdr));
398 payload->udp.check = 0; /* checksum ignored */
399
400 /* Fill out payload */
401 payload->iteration = htons(ntohs(payload->iteration) + 1);
402 memcpy(&payload->msg, payload_msg, sizeof(payload_msg));
403
404 /* Fill out remaining state members */
405 atomic_set(&state->rx_good, 0);
406 atomic_set(&state->rx_bad, 0);
407 smp_wmb();
408}
409
Ben Hutchingsb9aafb02008-09-01 12:46:33 +0100410static int efx_begin_loopback(struct efx_tx_queue *tx_queue)
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100411{
412 struct efx_nic *efx = tx_queue->efx;
Ben Hutchings8c8661e2008-09-01 12:49:02 +0100413 struct efx_loopback_state *state = efx->loopback_selftest;
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100414 struct efx_loopback_payload *payload;
415 struct sk_buff *skb;
Stephen Hemminger613573252009-08-31 19:50:58 +0000416 int i;
417 netdev_tx_t rc;
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100418
419 /* Transmit N copies of buffer */
420 for (i = 0; i < state->packet_count; i++) {
Ben Hutchings8c8661e2008-09-01 12:49:02 +0100421 /* Allocate an skb, holding an extra reference for
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100422 * transmit completion counting */
423 skb = alloc_skb(sizeof(state->payload), GFP_KERNEL);
424 if (!skb)
425 return -ENOMEM;
426 state->skbs[i] = skb;
427 skb_get(skb);
428
429 /* Copy the payload in, incrementing the source address to
430 * exercise the rss vectors */
431 payload = ((struct efx_loopback_payload *)
432 skb_put(skb, sizeof(state->payload)));
433 memcpy(payload, &state->payload, sizeof(state->payload));
434 payload->ip.saddr = htonl(INADDR_LOOPBACK | (i << 2));
435
436 /* Ensure everything we've written is visible to the
437 * interrupt handler. */
438 smp_wmb();
439
Ben Hutchings73ba7b62012-01-09 19:47:08 +0000440 netif_tx_lock_bh(efx->net_dev);
Ben Hutchings497f5ba2009-11-23 16:07:05 +0000441 rc = efx_enqueue_skb(tx_queue, skb);
Ben Hutchings73ba7b62012-01-09 19:47:08 +0000442 netif_tx_unlock_bh(efx->net_dev);
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100443
444 if (rc != NETDEV_TX_OK) {
Ben Hutchings62776d02010-06-23 11:30:07 +0000445 netif_err(efx, drv, efx->net_dev,
446 "TX queue %d could not transmit packet %d of "
447 "%d in %s loopback test\n", tx_queue->queue,
448 i + 1, state->packet_count,
449 LOOPBACK_MODE(efx));
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100450
451 /* Defer cleaning up the other skbs for the caller */
452 kfree_skb(skb);
453 return -EPIPE;
454 }
455 }
456
457 return 0;
458}
459
Ben Hutchingsb9aafb02008-09-01 12:46:33 +0100460static int efx_poll_loopback(struct efx_nic *efx)
461{
Ben Hutchings8c8661e2008-09-01 12:49:02 +0100462 struct efx_loopback_state *state = efx->loopback_selftest;
Ben Hutchingsb9aafb02008-09-01 12:46:33 +0100463 struct efx_channel *channel;
464
465 /* NAPI polling is not enabled, so process channels
466 * synchronously */
Ben Hutchings64ee3122008-09-01 12:47:38 +0100467 efx_for_each_channel(channel, efx) {
Ben Hutchingsb9aafb02008-09-01 12:46:33 +0100468 if (channel->work_pending)
469 efx_process_channel_now(channel);
470 }
471 return atomic_read(&state->rx_good) == state->packet_count;
472}
473
474static int efx_end_loopback(struct efx_tx_queue *tx_queue,
475 struct efx_loopback_self_tests *lb_tests)
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100476{
477 struct efx_nic *efx = tx_queue->efx;
Ben Hutchings8c8661e2008-09-01 12:49:02 +0100478 struct efx_loopback_state *state = efx->loopback_selftest;
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100479 struct sk_buff *skb;
480 int tx_done = 0, rx_good, rx_bad;
481 int i, rc = 0;
482
Ben Hutchings73ba7b62012-01-09 19:47:08 +0000483 netif_tx_lock_bh(efx->net_dev);
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100484
485 /* Count the number of tx completions, and decrement the refcnt. Any
486 * skbs not already completed will be free'd when the queue is flushed */
Ben Hutchings9c636ba2012-01-05 17:19:45 +0000487 for (i = 0; i < state->packet_count; i++) {
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100488 skb = state->skbs[i];
489 if (skb && !skb_shared(skb))
490 ++tx_done;
491 dev_kfree_skb_any(skb);
492 }
493
Ben Hutchings73ba7b62012-01-09 19:47:08 +0000494 netif_tx_unlock_bh(efx->net_dev);
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100495
496 /* Check TX completion and received packet counts */
497 rx_good = atomic_read(&state->rx_good);
498 rx_bad = atomic_read(&state->rx_bad);
499 if (tx_done != state->packet_count) {
500 /* Don't free the skbs; they will be picked up on TX
501 * overflow or channel teardown.
502 */
Ben Hutchings62776d02010-06-23 11:30:07 +0000503 netif_err(efx, drv, efx->net_dev,
504 "TX queue %d saw only %d out of an expected %d "
505 "TX completion events in %s loopback test\n",
506 tx_queue->queue, tx_done, state->packet_count,
507 LOOPBACK_MODE(efx));
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100508 rc = -ETIMEDOUT;
509 /* Allow to fall through so we see the RX errors as well */
510 }
511
512 /* We may always be up to a flush away from our desired packet total */
513 if (rx_good != state->packet_count) {
Ben Hutchings62776d02010-06-23 11:30:07 +0000514 netif_dbg(efx, drv, efx->net_dev,
515 "TX queue %d saw only %d out of an expected %d "
516 "received packets in %s loopback test\n",
517 tx_queue->queue, rx_good, state->packet_count,
518 LOOPBACK_MODE(efx));
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100519 rc = -ETIMEDOUT;
520 /* Fall through */
521 }
522
523 /* Update loopback test structure */
524 lb_tests->tx_sent[tx_queue->queue] += state->packet_count;
525 lb_tests->tx_done[tx_queue->queue] += tx_done;
526 lb_tests->rx_good += rx_good;
527 lb_tests->rx_bad += rx_bad;
528
529 return rc;
530}
531
532static int
533efx_test_loopback(struct efx_tx_queue *tx_queue,
534 struct efx_loopback_self_tests *lb_tests)
535{
536 struct efx_nic *efx = tx_queue->efx;
Ben Hutchings8c8661e2008-09-01 12:49:02 +0100537 struct efx_loopback_state *state = efx->loopback_selftest;
Ben Hutchingsb9aafb02008-09-01 12:46:33 +0100538 int i, begin_rc, end_rc;
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100539
Ben Hutchings8c8661e2008-09-01 12:49:02 +0100540 for (i = 0; i < 3; i++) {
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100541 /* Determine how many packets to send */
Steve Hodgsonecc910f2010-09-10 06:42:22 +0000542 state->packet_count = efx->txq_entries / 3;
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100543 state->packet_count = min(1 << (i << 2), state->packet_count);
Thomas Meyerc2e4e252011-12-02 12:36:13 +0000544 state->skbs = kcalloc(state->packet_count,
545 sizeof(state->skbs[0]), GFP_KERNEL);
Ben Hutchings9b7bfc42008-05-16 21:20:20 +0100546 if (!state->skbs)
547 return -ENOMEM;
Ben Hutchingsdc8cfa52008-09-01 12:46:50 +0100548 state->flush = false;
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100549
Ben Hutchings62776d02010-06-23 11:30:07 +0000550 netif_dbg(efx, drv, efx->net_dev,
551 "TX queue %d testing %s loopback with %d packets\n",
552 tx_queue->queue, LOOPBACK_MODE(efx),
553 state->packet_count);
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100554
555 efx_iterate_state(efx);
Ben Hutchingsb9aafb02008-09-01 12:46:33 +0100556 begin_rc = efx_begin_loopback(tx_queue);
557
558 /* This will normally complete very quickly, but be
Ben Hutchings93e5dfa2012-02-28 20:40:53 +0000559 * prepared to wait much longer. */
Ben Hutchingsb9aafb02008-09-01 12:46:33 +0100560 msleep(1);
561 if (!efx_poll_loopback(efx)) {
Ben Hutchings93e5dfa2012-02-28 20:40:53 +0000562 msleep(LOOPBACK_TIMEOUT_MS);
Ben Hutchingsb9aafb02008-09-01 12:46:33 +0100563 efx_poll_loopback(efx);
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100564 }
565
Ben Hutchingsb9aafb02008-09-01 12:46:33 +0100566 end_rc = efx_end_loopback(tx_queue, lb_tests);
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100567 kfree(state->skbs);
568
Ben Hutchingsb9aafb02008-09-01 12:46:33 +0100569 if (begin_rc || end_rc) {
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100570 /* Wait a while to ensure there are no packets
571 * floating around after a failure. */
572 schedule_timeout_uninterruptible(HZ / 10);
Ben Hutchingsb9aafb02008-09-01 12:46:33 +0100573 return begin_rc ? begin_rc : end_rc;
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100574 }
575 }
576
Ben Hutchings62776d02010-06-23 11:30:07 +0000577 netif_dbg(efx, drv, efx->net_dev,
578 "TX queue %d passed %s loopback test with a burst length "
579 "of %d packets\n", tx_queue->queue, LOOPBACK_MODE(efx),
580 state->packet_count);
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100581
Ben Hutchingsa0c2c192008-09-01 12:45:08 +0100582 return 0;
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100583}
584
Steve Hodgson78c1f0a2009-11-29 03:43:00 +0000585/* Wait for link up. On Falcon, we would prefer to rely on efx_monitor, but
586 * any contention on the mac lock (via e.g. efx_mac_mcast_work) causes it
587 * to delay and retry. Therefore, it's safer to just poll directly. Wait
588 * for link up and any faults to dissipate. */
589static int efx_wait_for_link(struct efx_nic *efx)
590{
591 struct efx_link_state *link_state = &efx->link_state;
Steve Hodgson901d3fe2010-06-01 11:18:28 +0000592 int count, link_up_count = 0;
Steve Hodgson78c1f0a2009-11-29 03:43:00 +0000593 bool link_up;
594
595 for (count = 0; count < 40; count++) {
596 schedule_timeout_uninterruptible(HZ / 10);
597
598 if (efx->type->monitor != NULL) {
599 mutex_lock(&efx->mac_lock);
600 efx->type->monitor(efx);
601 mutex_unlock(&efx->mac_lock);
602 } else {
Ben Hutchingsf7d12cd2010-09-10 06:41:47 +0000603 struct efx_channel *channel = efx_get_channel(efx, 0);
Steve Hodgson78c1f0a2009-11-29 03:43:00 +0000604 if (channel->work_pending)
605 efx_process_channel_now(channel);
606 }
607
608 mutex_lock(&efx->mac_lock);
609 link_up = link_state->up;
610 if (link_up)
Ben Hutchings710b2082011-09-03 00:15:00 +0100611 link_up = !efx->type->check_mac_fault(efx);
Steve Hodgson78c1f0a2009-11-29 03:43:00 +0000612 mutex_unlock(&efx->mac_lock);
613
Steve Hodgson901d3fe2010-06-01 11:18:28 +0000614 if (link_up) {
615 if (++link_up_count == 2)
616 return 0;
617 } else {
618 link_up_count = 0;
619 }
Steve Hodgson78c1f0a2009-11-29 03:43:00 +0000620 }
621
622 return -ETIMEDOUT;
623}
624
Ben Hutchingsa5692e42008-12-26 13:46:38 -0800625static int efx_test_loopbacks(struct efx_nic *efx, struct efx_self_tests *tests,
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100626 unsigned int loopback_modes)
627{
Ben Hutchings8c8661e2008-09-01 12:49:02 +0100628 enum efx_loopback_mode mode;
629 struct efx_loopback_state *state;
Ben Hutchingsf7d12cd2010-09-10 06:41:47 +0000630 struct efx_channel *channel = efx_get_channel(efx, 0);
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100631 struct efx_tx_queue *tx_queue;
Steve Hodgson78c1f0a2009-11-29 03:43:00 +0000632 int rc = 0;
Ben Hutchingsf8ea0b672008-09-01 12:46:28 +0100633
Ben Hutchings8c8661e2008-09-01 12:49:02 +0100634 /* Set the port loopback_selftest member. From this point on
635 * all received packets will be dropped. Mark the state as
636 * "flushing" so all inflight packets are dropped */
637 state = kzalloc(sizeof(*state), GFP_KERNEL);
638 if (state == NULL)
639 return -ENOMEM;
640 BUG_ON(efx->loopback_selftest);
641 state->flush = true;
642 efx->loopback_selftest = state;
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100643
644 /* Test all supported loopback modes */
Ben Hutchings8c8661e2008-09-01 12:49:02 +0100645 for (mode = LOOPBACK_NONE; mode <= LOOPBACK_TEST_MAX; mode++) {
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100646 if (!(loopback_modes & (1 << mode)))
647 continue;
648
649 /* Move the port into the specified loopback mode. */
Ben Hutchingsdc8cfa52008-09-01 12:46:50 +0100650 state->flush = true;
Steve Hodgson78c1f0a2009-11-29 03:43:00 +0000651 mutex_lock(&efx->mac_lock);
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100652 efx->loopback_mode = mode;
Steve Hodgson78c1f0a2009-11-29 03:43:00 +0000653 rc = __efx_reconfigure_port(efx);
654 mutex_unlock(&efx->mac_lock);
655 if (rc) {
Ben Hutchings62776d02010-06-23 11:30:07 +0000656 netif_err(efx, drv, efx->net_dev,
657 "unable to move into %s loopback\n",
658 LOOPBACK_MODE(efx));
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100659 goto out;
660 }
661
Steve Hodgson78c1f0a2009-11-29 03:43:00 +0000662 rc = efx_wait_for_link(efx);
663 if (rc) {
Ben Hutchings62776d02010-06-23 11:30:07 +0000664 netif_err(efx, drv, efx->net_dev,
665 "loopback %s never came up\n",
666 LOOPBACK_MODE(efx));
Steve Hodgson78c1f0a2009-11-29 03:43:00 +0000667 goto out;
668 }
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100669
Ben Hutchings94b274b2011-01-10 21:18:20 +0000670 /* Test all enabled types of TX queue */
Ben Hutchingsf7d12cd2010-09-10 06:41:47 +0000671 efx_for_each_channel_tx_queue(tx_queue, channel) {
Ben Hutchingsa4900ac2010-04-28 09:30:43 +0000672 state->offload_csum = (tx_queue->queue &
673 EFX_TXQ_TYPE_OFFLOAD);
Ben Hutchingsf8ea0b672008-09-01 12:46:28 +0100674 rc = efx_test_loopback(tx_queue,
675 &tests->loopback[mode]);
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100676 if (rc)
677 goto out;
678 }
679 }
680
681 out:
Ben Hutchings8c8661e2008-09-01 12:49:02 +0100682 /* Remove the flush. The caller will remove the loopback setting */
Ben Hutchingsdc8cfa52008-09-01 12:46:50 +0100683 state->flush = true;
Ben Hutchings8c8661e2008-09-01 12:49:02 +0100684 efx->loopback_selftest = NULL;
685 wmb();
686 kfree(state);
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100687
688 return rc;
689}
690
691/**************************************************************************
692 *
Ben Hutchings2ef30682008-12-26 13:47:04 -0800693 * Entry point
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100694 *
695 *************************************************************************/
696
Ben Hutchings2ef30682008-12-26 13:47:04 -0800697int efx_selftest(struct efx_nic *efx, struct efx_self_tests *tests,
698 unsigned flags)
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100699{
Ben Hutchings8c8661e2008-09-01 12:49:02 +0100700 enum efx_loopback_mode loopback_mode = efx->loopback_mode;
701 int phy_mode = efx->phy_mode;
Steve Hodgson4b988282009-01-29 17:50:51 +0000702 enum reset_type reset_method = RESET_TYPE_INVISIBLE;
Ben Hutchings2ef30682008-12-26 13:47:04 -0800703 int rc_test = 0, rc_reset = 0, rc;
704
Ben Hutchingsdd407812012-02-28 23:40:21 +0000705 efx_selftest_async_cancel(efx);
706
Ben Hutchings2ef30682008-12-26 13:47:04 -0800707 /* Online (i.e. non-disruptive) testing
708 * This checks interrupt generation, event delivery and PHY presence. */
709
Ben Hutchings4f16c072010-02-03 09:30:50 +0000710 rc = efx_test_phy_alive(efx, tests);
Ben Hutchings2ef30682008-12-26 13:47:04 -0800711 if (rc && !rc_test)
712 rc_test = rc;
713
714 rc = efx_test_nvram(efx, tests);
715 if (rc && !rc_test)
716 rc_test = rc;
717
718 rc = efx_test_interrupts(efx, tests);
719 if (rc && !rc_test)
720 rc_test = rc;
721
Ben Hutchingsed74f482012-02-28 20:40:54 +0000722 rc = efx_test_eventq_irq(efx, tests);
723 if (rc && !rc_test)
724 rc_test = rc;
Ben Hutchings2ef30682008-12-26 13:47:04 -0800725
726 if (rc_test)
727 return rc_test;
728
729 if (!(flags & ETH_TEST_FL_OFFLINE))
Ben Hutchings17967212008-12-26 13:47:25 -0800730 return efx_test_phy(efx, tests, flags);
Ben Hutchings2ef30682008-12-26 13:47:04 -0800731
732 /* Offline (i.e. disruptive) testing
733 * This checks MAC and PHY loopback on the specified port. */
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100734
Ben Hutchingse4abce82011-05-16 18:51:24 +0100735 /* Detach the device so the kernel doesn't transmit during the
736 * loopback test and the watchdog timeout doesn't fire.
Ben Hutchings8c8661e2008-09-01 12:49:02 +0100737 */
Ben Hutchingse4abce82011-05-16 18:51:24 +0100738 netif_device_detach(efx->net_dev);
739
Ben Hutchings8c8661e2008-09-01 12:49:02 +0100740 mutex_lock(&efx->mac_lock);
Ben Hutchings6f158d52008-12-12 22:00:49 -0800741 if (efx->loopback_modes) {
742 /* We need the 312 clock from the PHY to test the XMAC
743 * registers, so move into XGMII loopback if available */
744 if (efx->loopback_modes & (1 << LOOPBACK_XGMII))
745 efx->loopback_mode = LOOPBACK_XGMII;
746 else
747 efx->loopback_mode = __ffs(efx->loopback_modes);
748 }
749
Ben Hutchings8c8661e2008-09-01 12:49:02 +0100750 __efx_reconfigure_port(efx);
751 mutex_unlock(&efx->mac_lock);
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100752
Ben Hutchings8c8661e2008-09-01 12:49:02 +0100753 /* free up all consumers of SRAM (including all the queues) */
Ben Hutchingsd3245b22009-11-29 03:42:41 +0000754 efx_reset_down(efx, reset_method);
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100755
Ben Hutchings8c8661e2008-09-01 12:49:02 +0100756 rc = efx_test_chip(efx, tests);
Ben Hutchings2ef30682008-12-26 13:47:04 -0800757 if (rc && !rc_test)
758 rc_test = rc;
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100759
Ben Hutchings8c8661e2008-09-01 12:49:02 +0100760 /* reset the chip to recover from the register test */
Ben Hutchingsef2b90e2009-11-29 03:42:31 +0000761 rc_reset = efx->type->reset(efx, reset_method);
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100762
Ben Hutchingsa5692e42008-12-26 13:46:38 -0800763 /* Ensure that the phy is powered and out of loopback
764 * for the bist and loopback tests */
765 efx->phy_mode &= ~PHY_MODE_LOW_POWER;
Ben Hutchings8c8661e2008-09-01 12:49:02 +0100766 efx->loopback_mode = LOOPBACK_NONE;
767
Ben Hutchingsd3245b22009-11-29 03:42:41 +0000768 rc = efx_reset_up(efx, reset_method, rc_reset == 0);
Ben Hutchings2ef30682008-12-26 13:47:04 -0800769 if (rc && !rc_reset)
770 rc_reset = rc;
771
772 if (rc_reset) {
Ben Hutchings62776d02010-06-23 11:30:07 +0000773 netif_err(efx, drv, efx->net_dev,
774 "Unable to recover from chip test\n");
Ben Hutchings8c8661e2008-09-01 12:49:02 +0100775 efx_schedule_reset(efx, RESET_TYPE_DISABLE);
Ben Hutchings2ef30682008-12-26 13:47:04 -0800776 return rc_reset;
Ben Hutchings8c8661e2008-09-01 12:49:02 +0100777 }
778
Ben Hutchings17967212008-12-26 13:47:25 -0800779 rc = efx_test_phy(efx, tests, flags);
Ben Hutchings2ef30682008-12-26 13:47:04 -0800780 if (rc && !rc_test)
781 rc_test = rc;
Ben Hutchings8c8661e2008-09-01 12:49:02 +0100782
Ben Hutchings2ef30682008-12-26 13:47:04 -0800783 rc = efx_test_loopbacks(efx, tests, efx->loopback_modes);
784 if (rc && !rc_test)
785 rc_test = rc;
Ben Hutchings8c8661e2008-09-01 12:49:02 +0100786
787 /* restore the PHY to the previous state */
Ben Hutchingsd3245b22009-11-29 03:42:41 +0000788 mutex_lock(&efx->mac_lock);
Ben Hutchings8c8661e2008-09-01 12:49:02 +0100789 efx->phy_mode = phy_mode;
Ben Hutchingsd3245b22009-11-29 03:42:41 +0000790 efx->loopback_mode = loopback_mode;
791 __efx_reconfigure_port(efx);
792 mutex_unlock(&efx->mac_lock);
Ben Hutchings8c8661e2008-09-01 12:49:02 +0100793
Ben Hutchingse4abce82011-05-16 18:51:24 +0100794 netif_device_attach(efx->net_dev);
Neil Turton9d1aea62011-04-04 13:46:23 +0100795
Ben Hutchings2ef30682008-12-26 13:47:04 -0800796 return rc_test;
Ben Hutchings3273c2e2008-05-07 13:36:19 +0100797}
798
Ben Hutchingsdd407812012-02-28 23:40:21 +0000799void efx_selftest_async_start(struct efx_nic *efx)
800{
801 struct efx_channel *channel;
802
803 efx_for_each_channel(channel, efx)
804 efx_nic_event_test_start(channel);
805 schedule_delayed_work(&efx->selftest_work, IRQ_TIMEOUT);
806}
807
808void efx_selftest_async_cancel(struct efx_nic *efx)
809{
810 cancel_delayed_work_sync(&efx->selftest_work);
811}
812
813void efx_selftest_async_work(struct work_struct *data)
814{
815 struct efx_nic *efx = container_of(data, struct efx_nic,
816 selftest_work.work);
817 struct efx_channel *channel;
818 int cpu;
819
820 efx_for_each_channel(channel, efx) {
821 cpu = efx_nic_event_test_irq_cpu(channel);
822 if (cpu < 0)
823 netif_err(efx, ifup, efx->net_dev,
824 "channel %d failed to trigger an interrupt\n",
825 channel->channel);
826 else
827 netif_dbg(efx, ifup, efx->net_dev,
828 "channel %d triggered interrupt on CPU %d\n",
829 channel->channel, cpu);
830 }
831}