Ben Hutchings | 3273c2e | 2008-05-07 13:36:19 +0100 | [diff] [blame] | 1 | /**************************************************************************** |
Ben Hutchings | f7a6d2c | 2013-08-29 23:32:48 +0100 | [diff] [blame] | 2 | * Driver for Solarflare network controllers and boards |
Ben Hutchings | 3273c2e | 2008-05-07 13:36:19 +0100 | [diff] [blame] | 3 | * Copyright 2005-2006 Fen Systems Ltd. |
Ben Hutchings | f7a6d2c | 2013-08-29 23:32:48 +0100 | [diff] [blame] | 4 | * Copyright 2006-2012 Solarflare Communications Inc. |
Ben Hutchings | 3273c2e | 2008-05-07 13:36:19 +0100 | [diff] [blame] | 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 | #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 Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 21 | #include <linux/slab.h> |
Ben Hutchings | 3273c2e | 2008-05-07 13:36:19 +0100 | [diff] [blame] | 22 | #include "net_driver.h" |
Ben Hutchings | 3273c2e | 2008-05-07 13:36:19 +0100 | [diff] [blame] | 23 | #include "efx.h" |
Ben Hutchings | 744093c | 2009-11-29 15:12:08 +0000 | [diff] [blame] | 24 | #include "nic.h" |
Ben Hutchings | 3273c2e | 2008-05-07 13:36:19 +0100 | [diff] [blame] | 25 | #include "selftest.h" |
Ben Hutchings | 3273c2e | 2008-05-07 13:36:19 +0100 | [diff] [blame] | 26 | #include "workarounds.h" |
Ben Hutchings | 3273c2e | 2008-05-07 13:36:19 +0100 | [diff] [blame] | 27 | |
Ben Hutchings | 93e5dfa | 2012-02-28 20:40:53 +0000 | [diff] [blame] | 28 | /* 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 Hutchings | 3273c2e | 2008-05-07 13:36:19 +0100 | [diff] [blame] | 38 | /* |
| 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 | */ |
| 44 | struct efx_loopback_payload { |
| 45 | struct ethhdr header; |
| 46 | struct iphdr ip; |
| 47 | struct udphdr udp; |
| 48 | __be16 iteration; |
David S. Miller | 1d20a160 | 2015-04-17 15:15:40 -0400 | [diff] [blame] | 49 | char msg[64]; |
Eric Dumazet | ba2d358 | 2010-06-02 18:10:09 +0000 | [diff] [blame] | 50 | } __packed; |
Ben Hutchings | 3273c2e | 2008-05-07 13:36:19 +0100 | [diff] [blame] | 51 | |
| 52 | /* Loopback test source MAC address */ |
Edward Cree | cd84ff4 | 2014-03-07 18:27:41 +0000 | [diff] [blame] | 53 | static const u8 payload_source[ETH_ALEN] __aligned(2) = { |
Ben Hutchings | 3273c2e | 2008-05-07 13:36:19 +0100 | [diff] [blame] | 54 | 0x00, 0x0f, 0x53, 0x1b, 0x1b, 0x1b, |
| 55 | }; |
| 56 | |
Julia Lawall | 94de803 | 2009-12-13 01:41:29 +0000 | [diff] [blame] | 57 | static const char payload_msg[] = |
Ben Hutchings | 3273c2e | 2008-05-07 13:36:19 +0100 | [diff] [blame] | 58 | "Hello world! This is an Efx loopback test in progress!"; |
| 59 | |
stephen hemminger | d215697 | 2010-10-18 05:27:31 +0000 | [diff] [blame] | 60 | /* Interrupt mode names */ |
| 61 | static const unsigned int efx_interrupt_mode_max = EFX_INT_MODE_MAX; |
Ben Hutchings | 18e83e4 | 2012-01-05 19:05:20 +0000 | [diff] [blame] | 62 | static const char *const efx_interrupt_mode_names[] = { |
stephen hemminger | d215697 | 2010-10-18 05:27:31 +0000 | [diff] [blame] | 63 | [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 Hutchings | 3273c2e | 2008-05-07 13:36:19 +0100 | [diff] [blame] | 70 | /** |
Ben Hutchings | 8c8661e | 2008-09-01 12:49:02 +0100 | [diff] [blame] | 71 | * efx_loopback_state - persistent state during a loopback selftest |
Ben Hutchings | 3273c2e | 2008-05-07 13:36:19 +0100 | [diff] [blame] | 72 | * @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 Hutchings | f30eb23 | 2009-11-25 16:12:24 +0000 | [diff] [blame] | 75 | * @offload_csum: Checksums are being offloaded |
Ben Hutchings | 3273c2e | 2008-05-07 13:36:19 +0100 | [diff] [blame] | 76 | * @rx_good: RX good packet count |
| 77 | * @rx_bad: RX bad packet count |
| 78 | * @payload: Payload used in tests |
| 79 | */ |
Ben Hutchings | 8c8661e | 2008-09-01 12:49:02 +0100 | [diff] [blame] | 80 | struct efx_loopback_state { |
Ben Hutchings | dc8cfa5 | 2008-09-01 12:46:50 +0100 | [diff] [blame] | 81 | bool flush; |
Ben Hutchings | 3273c2e | 2008-05-07 13:36:19 +0100 | [diff] [blame] | 82 | int packet_count; |
| 83 | struct sk_buff **skbs; |
Ben Hutchings | dc8cfa5 | 2008-09-01 12:46:50 +0100 | [diff] [blame] | 84 | bool offload_csum; |
Ben Hutchings | 3273c2e | 2008-05-07 13:36:19 +0100 | [diff] [blame] | 85 | atomic_t rx_good; |
| 86 | atomic_t rx_bad; |
| 87 | struct efx_loopback_payload payload; |
| 88 | }; |
| 89 | |
Ben Hutchings | 93e5dfa | 2012-02-28 20:40:53 +0000 | [diff] [blame] | 90 | /* How long to wait for all the packets to arrive (in ms) */ |
| 91 | #define LOOPBACK_TIMEOUT_MS 1000 |
| 92 | |
Ben Hutchings | 3273c2e | 2008-05-07 13:36:19 +0100 | [diff] [blame] | 93 | /************************************************************************** |
| 94 | * |
Ben Hutchings | 8c8661e | 2008-09-01 12:49:02 +0100 | [diff] [blame] | 95 | * MII, NVRAM and register tests |
Ben Hutchings | 3273c2e | 2008-05-07 13:36:19 +0100 | [diff] [blame] | 96 | * |
| 97 | **************************************************************************/ |
| 98 | |
Ben Hutchings | 4f16c07 | 2010-02-03 09:30:50 +0000 | [diff] [blame] | 99 | static int efx_test_phy_alive(struct efx_nic *efx, struct efx_self_tests *tests) |
Ben Hutchings | 8c8661e | 2008-09-01 12:49:02 +0100 | [diff] [blame] | 100 | { |
| 101 | int rc = 0; |
Ben Hutchings | 8c8661e | 2008-09-01 12:49:02 +0100 | [diff] [blame] | 102 | |
Ben Hutchings | 4f16c07 | 2010-02-03 09:30:50 +0000 | [diff] [blame] | 103 | if (efx->phy_op->test_alive) { |
| 104 | rc = efx->phy_op->test_alive(efx); |
| 105 | tests->phy_alive = rc ? -1 : 1; |
Ben Hutchings | 8c8661e | 2008-09-01 12:49:02 +0100 | [diff] [blame] | 106 | } |
| 107 | |
Ben Hutchings | 8c8661e | 2008-09-01 12:49:02 +0100 | [diff] [blame] | 108 | return rc; |
| 109 | } |
| 110 | |
| 111 | static int efx_test_nvram(struct efx_nic *efx, struct efx_self_tests *tests) |
| 112 | { |
Ben Hutchings | 0aa3fba | 2009-11-29 03:43:33 +0000 | [diff] [blame] | 113 | int rc = 0; |
Ben Hutchings | 8c8661e | 2008-09-01 12:49:02 +0100 | [diff] [blame] | 114 | |
Ben Hutchings | 0aa3fba | 2009-11-29 03:43:33 +0000 | [diff] [blame] | 115 | if (efx->type->test_nvram) { |
| 116 | rc = efx->type->test_nvram(efx); |
| 117 | tests->nvram = rc ? -1 : 1; |
| 118 | } |
| 119 | |
Ben Hutchings | 8c8661e | 2008-09-01 12:49:02 +0100 | [diff] [blame] | 120 | return rc; |
| 121 | } |
| 122 | |
Ben Hutchings | 3273c2e | 2008-05-07 13:36:19 +0100 | [diff] [blame] | 123 | /************************************************************************** |
| 124 | * |
| 125 | * Interrupt and event queue testing |
| 126 | * |
| 127 | **************************************************************************/ |
| 128 | |
| 129 | /* Test generation and receipt of interrupts */ |
| 130 | static int efx_test_interrupts(struct efx_nic *efx, |
| 131 | struct efx_self_tests *tests) |
| 132 | { |
Ben Hutchings | 93e5dfa | 2012-02-28 20:40:53 +0000 | [diff] [blame] | 133 | unsigned long timeout, wait; |
Ben Hutchings | 1646a6f3 | 2012-01-05 20:14:10 +0000 | [diff] [blame] | 134 | int cpu; |
| 135 | |
Ben Hutchings | 62776d0 | 2010-06-23 11:30:07 +0000 | [diff] [blame] | 136 | netif_dbg(efx, drv, efx->net_dev, "testing interrupts\n"); |
Ben Hutchings | 3273c2e | 2008-05-07 13:36:19 +0100 | [diff] [blame] | 137 | tests->interrupt = -1; |
| 138 | |
Ben Hutchings | eee6f6a | 2012-02-28 23:37:35 +0000 | [diff] [blame] | 139 | efx_nic_irq_test_start(efx); |
Ben Hutchings | 93e5dfa | 2012-02-28 20:40:53 +0000 | [diff] [blame] | 140 | timeout = jiffies + IRQ_TIMEOUT; |
| 141 | wait = 1; |
Ben Hutchings | 3273c2e | 2008-05-07 13:36:19 +0100 | [diff] [blame] | 142 | |
| 143 | /* Wait for arrival of test interrupt. */ |
Ben Hutchings | 62776d0 | 2010-06-23 11:30:07 +0000 | [diff] [blame] | 144 | netif_dbg(efx, drv, efx->net_dev, "waiting for test interrupt\n"); |
Ben Hutchings | 93e5dfa | 2012-02-28 20:40:53 +0000 | [diff] [blame] | 145 | do { |
| 146 | schedule_timeout_uninterruptible(wait); |
Ben Hutchings | eee6f6a | 2012-02-28 23:37:35 +0000 | [diff] [blame] | 147 | cpu = efx_nic_irq_test_irq_cpu(efx); |
Ben Hutchings | 93e5dfa | 2012-02-28 20:40:53 +0000 | [diff] [blame] | 148 | if (cpu >= 0) |
| 149 | goto success; |
| 150 | wait *= 2; |
| 151 | } while (time_before(jiffies, timeout)); |
Ben Hutchings | 3273c2e | 2008-05-07 13:36:19 +0100 | [diff] [blame] | 152 | |
Ben Hutchings | 62776d0 | 2010-06-23 11:30:07 +0000 | [diff] [blame] | 153 | netif_err(efx, drv, efx->net_dev, "timed out waiting for interrupt\n"); |
Ben Hutchings | 3273c2e | 2008-05-07 13:36:19 +0100 | [diff] [blame] | 154 | return -ETIMEDOUT; |
| 155 | |
| 156 | success: |
Ben Hutchings | 62776d0 | 2010-06-23 11:30:07 +0000 | [diff] [blame] | 157 | netif_dbg(efx, drv, efx->net_dev, "%s test interrupt seen on CPU%d\n", |
Ben Hutchings | 1646a6f3 | 2012-01-05 20:14:10 +0000 | [diff] [blame] | 158 | INT_MODE(efx), cpu); |
Ben Hutchings | 3273c2e | 2008-05-07 13:36:19 +0100 | [diff] [blame] | 159 | tests->interrupt = 1; |
| 160 | return 0; |
| 161 | } |
| 162 | |
Ben Hutchings | 3273c2e | 2008-05-07 13:36:19 +0100 | [diff] [blame] | 163 | /* Test generation and receipt of interrupting events */ |
Ben Hutchings | ed74f480 | 2012-02-28 20:40:54 +0000 | [diff] [blame] | 164 | static int efx_test_eventq_irq(struct efx_nic *efx, |
Ben Hutchings | 3273c2e | 2008-05-07 13:36:19 +0100 | [diff] [blame] | 165 | struct efx_self_tests *tests) |
| 166 | { |
Ben Hutchings | ed74f480 | 2012-02-28 20:40:54 +0000 | [diff] [blame] | 167 | struct efx_channel *channel; |
| 168 | unsigned int read_ptr[EFX_MAX_CHANNELS]; |
| 169 | unsigned long napi_ran = 0, dma_pend = 0, int_pend = 0; |
Ben Hutchings | 93e5dfa | 2012-02-28 20:40:53 +0000 | [diff] [blame] | 170 | unsigned long timeout, wait; |
Ben Hutchings | 3273c2e | 2008-05-07 13:36:19 +0100 | [diff] [blame] | 171 | |
Ben Hutchings | ed74f480 | 2012-02-28 20:40:54 +0000 | [diff] [blame] | 172 | BUILD_BUG_ON(EFX_MAX_CHANNELS > BITS_PER_LONG); |
Ben Hutchings | 3273c2e | 2008-05-07 13:36:19 +0100 | [diff] [blame] | 173 | |
Ben Hutchings | ed74f480 | 2012-02-28 20:40:54 +0000 | [diff] [blame] | 174 | efx_for_each_channel(channel, efx) { |
| 175 | read_ptr[channel->channel] = channel->eventq_read_ptr; |
| 176 | set_bit(channel->channel, &dma_pend); |
| 177 | set_bit(channel->channel, &int_pend); |
Ben Hutchings | eee6f6a | 2012-02-28 23:37:35 +0000 | [diff] [blame] | 178 | efx_nic_event_test_start(channel); |
Ben Hutchings | ed74f480 | 2012-02-28 20:40:54 +0000 | [diff] [blame] | 179 | } |
| 180 | |
Ben Hutchings | 93e5dfa | 2012-02-28 20:40:53 +0000 | [diff] [blame] | 181 | timeout = jiffies + IRQ_TIMEOUT; |
| 182 | wait = 1; |
Ben Hutchings | 3273c2e | 2008-05-07 13:36:19 +0100 | [diff] [blame] | 183 | |
Ben Hutchings | ed74f480 | 2012-02-28 20:40:54 +0000 | [diff] [blame] | 184 | /* Wait for arrival of interrupts. NAPI processing may or may |
Ben Hutchings | 0fb53fa | 2011-11-04 23:06:04 +0000 | [diff] [blame] | 185 | * not complete in time, but we can cope in any case. |
| 186 | */ |
Ben Hutchings | 93e5dfa | 2012-02-28 20:40:53 +0000 | [diff] [blame] | 187 | do { |
| 188 | schedule_timeout_uninterruptible(wait); |
| 189 | |
Ben Hutchings | ed74f480 | 2012-02-28 20:40:54 +0000 | [diff] [blame] | 190 | efx_for_each_channel(channel, efx) { |
Alexandre Rames | 3676326 | 2014-07-22 14:03:25 +0100 | [diff] [blame] | 191 | efx_stop_eventq(channel); |
Ben Hutchings | ed74f480 | 2012-02-28 20:40:54 +0000 | [diff] [blame] | 192 | if (channel->eventq_read_ptr != |
| 193 | read_ptr[channel->channel]) { |
| 194 | set_bit(channel->channel, &napi_ran); |
| 195 | clear_bit(channel->channel, &dma_pend); |
| 196 | clear_bit(channel->channel, &int_pend); |
| 197 | } else { |
| 198 | if (efx_nic_event_present(channel)) |
| 199 | clear_bit(channel->channel, &dma_pend); |
Ben Hutchings | eee6f6a | 2012-02-28 23:37:35 +0000 | [diff] [blame] | 200 | if (efx_nic_event_test_irq_cpu(channel) >= 0) |
Ben Hutchings | ed74f480 | 2012-02-28 20:40:54 +0000 | [diff] [blame] | 201 | clear_bit(channel->channel, &int_pend); |
| 202 | } |
Alexandre Rames | 3676326 | 2014-07-22 14:03:25 +0100 | [diff] [blame] | 203 | efx_start_eventq(channel); |
Ben Hutchings | 93e5dfa | 2012-02-28 20:40:53 +0000 | [diff] [blame] | 204 | } |
Ben Hutchings | 93e5dfa | 2012-02-28 20:40:53 +0000 | [diff] [blame] | 205 | |
| 206 | wait *= 2; |
Ben Hutchings | ed74f480 | 2012-02-28 20:40:54 +0000 | [diff] [blame] | 207 | } while ((dma_pend || int_pend) && time_before(jiffies, timeout)); |
Ben Hutchings | 3273c2e | 2008-05-07 13:36:19 +0100 | [diff] [blame] | 208 | |
Ben Hutchings | ed74f480 | 2012-02-28 20:40:54 +0000 | [diff] [blame] | 209 | efx_for_each_channel(channel, efx) { |
| 210 | bool dma_seen = !test_bit(channel->channel, &dma_pend); |
| 211 | bool int_seen = !test_bit(channel->channel, &int_pend); |
Ben Hutchings | 0fb53fa | 2011-11-04 23:06:04 +0000 | [diff] [blame] | 212 | |
Ben Hutchings | ed74f480 | 2012-02-28 20:40:54 +0000 | [diff] [blame] | 213 | tests->eventq_dma[channel->channel] = dma_seen ? 1 : -1; |
| 214 | tests->eventq_int[channel->channel] = int_seen ? 1 : -1; |
| 215 | |
| 216 | if (dma_seen && int_seen) { |
| 217 | netif_dbg(efx, drv, efx->net_dev, |
| 218 | "channel %d event queue passed (with%s NAPI)\n", |
| 219 | channel->channel, |
| 220 | test_bit(channel->channel, &napi_ran) ? |
| 221 | "" : "out"); |
| 222 | } else { |
| 223 | /* Report failure and whether either interrupt or DMA |
| 224 | * worked |
| 225 | */ |
Ben Hutchings | 0fb53fa | 2011-11-04 23:06:04 +0000 | [diff] [blame] | 226 | netif_err(efx, drv, efx->net_dev, |
Ben Hutchings | ed74f480 | 2012-02-28 20:40:54 +0000 | [diff] [blame] | 227 | "channel %d timed out waiting for event queue\n", |
Ben Hutchings | 0fb53fa | 2011-11-04 23:06:04 +0000 | [diff] [blame] | 228 | channel->channel); |
Ben Hutchings | ed74f480 | 2012-02-28 20:40:54 +0000 | [diff] [blame] | 229 | if (int_seen) |
| 230 | netif_err(efx, drv, efx->net_dev, |
| 231 | "channel %d saw interrupt " |
| 232 | "during event queue test\n", |
| 233 | channel->channel); |
| 234 | if (dma_seen) |
| 235 | netif_err(efx, drv, efx->net_dev, |
| 236 | "channel %d event was generated, but " |
| 237 | "failed to trigger an interrupt\n", |
| 238 | channel->channel); |
| 239 | } |
Ben Hutchings | 3273c2e | 2008-05-07 13:36:19 +0100 | [diff] [blame] | 240 | } |
Ben Hutchings | ed74f480 | 2012-02-28 20:40:54 +0000 | [diff] [blame] | 241 | |
| 242 | return (dma_pend || int_pend) ? -ETIMEDOUT : 0; |
Ben Hutchings | 3273c2e | 2008-05-07 13:36:19 +0100 | [diff] [blame] | 243 | } |
| 244 | |
Ben Hutchings | 1796721 | 2008-12-26 13:47:25 -0800 | [diff] [blame] | 245 | static int efx_test_phy(struct efx_nic *efx, struct efx_self_tests *tests, |
| 246 | unsigned flags) |
Ben Hutchings | 3273c2e | 2008-05-07 13:36:19 +0100 | [diff] [blame] | 247 | { |
Ben Hutchings | 8c8661e | 2008-09-01 12:49:02 +0100 | [diff] [blame] | 248 | int rc; |
Ben Hutchings | 3273c2e | 2008-05-07 13:36:19 +0100 | [diff] [blame] | 249 | |
Ben Hutchings | 1796721 | 2008-12-26 13:47:25 -0800 | [diff] [blame] | 250 | if (!efx->phy_op->run_tests) |
Ben Hutchings | 3273c2e | 2008-05-07 13:36:19 +0100 | [diff] [blame] | 251 | return 0; |
| 252 | |
Ben Hutchings | 8c8661e | 2008-09-01 12:49:02 +0100 | [diff] [blame] | 253 | mutex_lock(&efx->mac_lock); |
Ben Hutchings | 4f16c07 | 2010-02-03 09:30:50 +0000 | [diff] [blame] | 254 | rc = efx->phy_op->run_tests(efx, tests->phy_ext, flags); |
Ben Hutchings | 8c8661e | 2008-09-01 12:49:02 +0100 | [diff] [blame] | 255 | mutex_unlock(&efx->mac_lock); |
Ben Hutchings | 8c8661e | 2008-09-01 12:49:02 +0100 | [diff] [blame] | 256 | return rc; |
Ben Hutchings | 3273c2e | 2008-05-07 13:36:19 +0100 | [diff] [blame] | 257 | } |
| 258 | |
| 259 | /************************************************************************** |
| 260 | * |
| 261 | * Loopback testing |
| 262 | * NB Only one loopback test can be executing concurrently. |
| 263 | * |
| 264 | **************************************************************************/ |
| 265 | |
| 266 | /* Loopback test RX callback |
| 267 | * This is called for each received packet during loopback testing. |
| 268 | */ |
| 269 | void efx_loopback_rx_packet(struct efx_nic *efx, |
| 270 | const char *buf_ptr, int pkt_len) |
| 271 | { |
Ben Hutchings | 8c8661e | 2008-09-01 12:49:02 +0100 | [diff] [blame] | 272 | struct efx_loopback_state *state = efx->loopback_selftest; |
Ben Hutchings | 3273c2e | 2008-05-07 13:36:19 +0100 | [diff] [blame] | 273 | struct efx_loopback_payload *received; |
| 274 | struct efx_loopback_payload *payload; |
| 275 | |
| 276 | BUG_ON(!buf_ptr); |
| 277 | |
| 278 | /* If we are just flushing, then drop the packet */ |
| 279 | if ((state == NULL) || state->flush) |
| 280 | return; |
| 281 | |
| 282 | payload = &state->payload; |
Ben Hutchings | 8c8661e | 2008-09-01 12:49:02 +0100 | [diff] [blame] | 283 | |
Ben Hutchings | d3208b5 | 2008-05-16 21:20:00 +0100 | [diff] [blame] | 284 | received = (struct efx_loopback_payload *) buf_ptr; |
Ben Hutchings | 3273c2e | 2008-05-07 13:36:19 +0100 | [diff] [blame] | 285 | received->ip.saddr = payload->ip.saddr; |
Ben Hutchings | 60ac106 | 2008-09-01 12:44:59 +0100 | [diff] [blame] | 286 | if (state->offload_csum) |
| 287 | received->ip.check = payload->ip.check; |
| 288 | |
Ben Hutchings | 3273c2e | 2008-05-07 13:36:19 +0100 | [diff] [blame] | 289 | /* Check that header exists */ |
| 290 | if (pkt_len < sizeof(received->header)) { |
Ben Hutchings | 62776d0 | 2010-06-23 11:30:07 +0000 | [diff] [blame] | 291 | netif_err(efx, drv, efx->net_dev, |
| 292 | "saw runt RX packet (length %d) in %s loopback " |
| 293 | "test\n", pkt_len, LOOPBACK_MODE(efx)); |
Ben Hutchings | 3273c2e | 2008-05-07 13:36:19 +0100 | [diff] [blame] | 294 | goto err; |
| 295 | } |
| 296 | |
| 297 | /* Check that the ethernet header exists */ |
| 298 | if (memcmp(&received->header, &payload->header, ETH_HLEN) != 0) { |
Ben Hutchings | 62776d0 | 2010-06-23 11:30:07 +0000 | [diff] [blame] | 299 | netif_err(efx, drv, efx->net_dev, |
| 300 | "saw non-loopback RX packet in %s loopback test\n", |
| 301 | LOOPBACK_MODE(efx)); |
Ben Hutchings | 3273c2e | 2008-05-07 13:36:19 +0100 | [diff] [blame] | 302 | goto err; |
| 303 | } |
| 304 | |
| 305 | /* Check packet length */ |
| 306 | if (pkt_len != sizeof(*payload)) { |
Ben Hutchings | 62776d0 | 2010-06-23 11:30:07 +0000 | [diff] [blame] | 307 | netif_err(efx, drv, efx->net_dev, |
| 308 | "saw incorrect RX packet length %d (wanted %d) in " |
| 309 | "%s loopback test\n", pkt_len, (int)sizeof(*payload), |
| 310 | LOOPBACK_MODE(efx)); |
Ben Hutchings | 3273c2e | 2008-05-07 13:36:19 +0100 | [diff] [blame] | 311 | goto err; |
| 312 | } |
| 313 | |
| 314 | /* Check that IP header matches */ |
| 315 | if (memcmp(&received->ip, &payload->ip, sizeof(payload->ip)) != 0) { |
Ben Hutchings | 62776d0 | 2010-06-23 11:30:07 +0000 | [diff] [blame] | 316 | netif_err(efx, drv, efx->net_dev, |
| 317 | "saw corrupted IP header in %s loopback test\n", |
| 318 | LOOPBACK_MODE(efx)); |
Ben Hutchings | 3273c2e | 2008-05-07 13:36:19 +0100 | [diff] [blame] | 319 | goto err; |
| 320 | } |
| 321 | |
| 322 | /* Check that msg and padding matches */ |
| 323 | if (memcmp(&received->msg, &payload->msg, sizeof(received->msg)) != 0) { |
Ben Hutchings | 62776d0 | 2010-06-23 11:30:07 +0000 | [diff] [blame] | 324 | netif_err(efx, drv, efx->net_dev, |
| 325 | "saw corrupted RX packet in %s loopback test\n", |
| 326 | LOOPBACK_MODE(efx)); |
Ben Hutchings | 3273c2e | 2008-05-07 13:36:19 +0100 | [diff] [blame] | 327 | goto err; |
| 328 | } |
| 329 | |
| 330 | /* Check that iteration matches */ |
| 331 | if (received->iteration != payload->iteration) { |
Ben Hutchings | 62776d0 | 2010-06-23 11:30:07 +0000 | [diff] [blame] | 332 | netif_err(efx, drv, efx->net_dev, |
| 333 | "saw RX packet from iteration %d (wanted %d) in " |
| 334 | "%s loopback test\n", ntohs(received->iteration), |
| 335 | ntohs(payload->iteration), LOOPBACK_MODE(efx)); |
Ben Hutchings | 3273c2e | 2008-05-07 13:36:19 +0100 | [diff] [blame] | 336 | goto err; |
| 337 | } |
| 338 | |
| 339 | /* Increase correct RX count */ |
Ben Hutchings | 62776d0 | 2010-06-23 11:30:07 +0000 | [diff] [blame] | 340 | netif_vdbg(efx, drv, efx->net_dev, |
| 341 | "got loopback RX in %s loopback test\n", LOOPBACK_MODE(efx)); |
Ben Hutchings | 3273c2e | 2008-05-07 13:36:19 +0100 | [diff] [blame] | 342 | |
| 343 | atomic_inc(&state->rx_good); |
| 344 | return; |
| 345 | |
| 346 | err: |
Ben Hutchings | 5f3f9d6 | 2011-11-04 22:29:14 +0000 | [diff] [blame] | 347 | #ifdef DEBUG |
Ben Hutchings | 3273c2e | 2008-05-07 13:36:19 +0100 | [diff] [blame] | 348 | if (atomic_read(&state->rx_bad) == 0) { |
Ben Hutchings | 62776d0 | 2010-06-23 11:30:07 +0000 | [diff] [blame] | 349 | netif_err(efx, drv, efx->net_dev, "received packet:\n"); |
Ben Hutchings | 3273c2e | 2008-05-07 13:36:19 +0100 | [diff] [blame] | 350 | print_hex_dump(KERN_ERR, "", DUMP_PREFIX_OFFSET, 0x10, 1, |
| 351 | buf_ptr, pkt_len, 0); |
Ben Hutchings | 62776d0 | 2010-06-23 11:30:07 +0000 | [diff] [blame] | 352 | netif_err(efx, drv, efx->net_dev, "expected packet:\n"); |
Ben Hutchings | 3273c2e | 2008-05-07 13:36:19 +0100 | [diff] [blame] | 353 | print_hex_dump(KERN_ERR, "", DUMP_PREFIX_OFFSET, 0x10, 1, |
| 354 | &state->payload, sizeof(state->payload), 0); |
| 355 | } |
| 356 | #endif |
| 357 | atomic_inc(&state->rx_bad); |
| 358 | } |
| 359 | |
| 360 | /* Initialise an efx_selftest_state for a new iteration */ |
| 361 | static void efx_iterate_state(struct efx_nic *efx) |
| 362 | { |
Ben Hutchings | 8c8661e | 2008-09-01 12:49:02 +0100 | [diff] [blame] | 363 | struct efx_loopback_state *state = efx->loopback_selftest; |
Ben Hutchings | 3273c2e | 2008-05-07 13:36:19 +0100 | [diff] [blame] | 364 | struct net_device *net_dev = efx->net_dev; |
| 365 | struct efx_loopback_payload *payload = &state->payload; |
| 366 | |
| 367 | /* Initialise the layerII header */ |
Edward Cree | cd84ff4 | 2014-03-07 18:27:41 +0000 | [diff] [blame] | 368 | ether_addr_copy((u8 *)&payload->header.h_dest, net_dev->dev_addr); |
| 369 | ether_addr_copy((u8 *)&payload->header.h_source, payload_source); |
Ben Hutchings | 3273c2e | 2008-05-07 13:36:19 +0100 | [diff] [blame] | 370 | payload->header.h_proto = htons(ETH_P_IP); |
| 371 | |
| 372 | /* saddr set later and used as incrementing count */ |
| 373 | payload->ip.daddr = htonl(INADDR_LOOPBACK); |
| 374 | payload->ip.ihl = 5; |
Ben Hutchings | 3f978ef3 | 2012-09-06 02:11:06 +0100 | [diff] [blame] | 375 | payload->ip.check = (__force __sum16) htons(0xdead); |
Ben Hutchings | 3273c2e | 2008-05-07 13:36:19 +0100 | [diff] [blame] | 376 | payload->ip.tot_len = htons(sizeof(*payload) - sizeof(struct ethhdr)); |
| 377 | payload->ip.version = IPVERSION; |
| 378 | payload->ip.protocol = IPPROTO_UDP; |
| 379 | |
| 380 | /* Initialise udp header */ |
| 381 | payload->udp.source = 0; |
| 382 | payload->udp.len = htons(sizeof(*payload) - sizeof(struct ethhdr) - |
| 383 | sizeof(struct iphdr)); |
| 384 | payload->udp.check = 0; /* checksum ignored */ |
| 385 | |
| 386 | /* Fill out payload */ |
| 387 | payload->iteration = htons(ntohs(payload->iteration) + 1); |
| 388 | memcpy(&payload->msg, payload_msg, sizeof(payload_msg)); |
| 389 | |
| 390 | /* Fill out remaining state members */ |
| 391 | atomic_set(&state->rx_good, 0); |
| 392 | atomic_set(&state->rx_bad, 0); |
| 393 | smp_wmb(); |
| 394 | } |
| 395 | |
Ben Hutchings | b9aafb0 | 2008-09-01 12:46:33 +0100 | [diff] [blame] | 396 | static int efx_begin_loopback(struct efx_tx_queue *tx_queue) |
Ben Hutchings | 3273c2e | 2008-05-07 13:36:19 +0100 | [diff] [blame] | 397 | { |
| 398 | struct efx_nic *efx = tx_queue->efx; |
Ben Hutchings | 8c8661e | 2008-09-01 12:49:02 +0100 | [diff] [blame] | 399 | struct efx_loopback_state *state = efx->loopback_selftest; |
Ben Hutchings | 3273c2e | 2008-05-07 13:36:19 +0100 | [diff] [blame] | 400 | struct efx_loopback_payload *payload; |
| 401 | struct sk_buff *skb; |
Stephen Hemminger | 61357325 | 2009-08-31 19:50:58 +0000 | [diff] [blame] | 402 | int i; |
| 403 | netdev_tx_t rc; |
Ben Hutchings | 3273c2e | 2008-05-07 13:36:19 +0100 | [diff] [blame] | 404 | |
| 405 | /* Transmit N copies of buffer */ |
| 406 | for (i = 0; i < state->packet_count; i++) { |
Ben Hutchings | 8c8661e | 2008-09-01 12:49:02 +0100 | [diff] [blame] | 407 | /* Allocate an skb, holding an extra reference for |
Ben Hutchings | 3273c2e | 2008-05-07 13:36:19 +0100 | [diff] [blame] | 408 | * transmit completion counting */ |
| 409 | skb = alloc_skb(sizeof(state->payload), GFP_KERNEL); |
| 410 | if (!skb) |
| 411 | return -ENOMEM; |
| 412 | state->skbs[i] = skb; |
| 413 | skb_get(skb); |
| 414 | |
| 415 | /* Copy the payload in, incrementing the source address to |
| 416 | * exercise the rss vectors */ |
| 417 | payload = ((struct efx_loopback_payload *) |
| 418 | skb_put(skb, sizeof(state->payload))); |
| 419 | memcpy(payload, &state->payload, sizeof(state->payload)); |
| 420 | payload->ip.saddr = htonl(INADDR_LOOPBACK | (i << 2)); |
| 421 | |
| 422 | /* Ensure everything we've written is visible to the |
| 423 | * interrupt handler. */ |
| 424 | smp_wmb(); |
| 425 | |
Ben Hutchings | 73ba7b6 | 2012-01-09 19:47:08 +0000 | [diff] [blame] | 426 | netif_tx_lock_bh(efx->net_dev); |
Ben Hutchings | 497f5ba | 2009-11-23 16:07:05 +0000 | [diff] [blame] | 427 | rc = efx_enqueue_skb(tx_queue, skb); |
Ben Hutchings | 73ba7b6 | 2012-01-09 19:47:08 +0000 | [diff] [blame] | 428 | netif_tx_unlock_bh(efx->net_dev); |
Ben Hutchings | 3273c2e | 2008-05-07 13:36:19 +0100 | [diff] [blame] | 429 | |
| 430 | if (rc != NETDEV_TX_OK) { |
Ben Hutchings | 62776d0 | 2010-06-23 11:30:07 +0000 | [diff] [blame] | 431 | netif_err(efx, drv, efx->net_dev, |
| 432 | "TX queue %d could not transmit packet %d of " |
| 433 | "%d in %s loopback test\n", tx_queue->queue, |
| 434 | i + 1, state->packet_count, |
| 435 | LOOPBACK_MODE(efx)); |
Ben Hutchings | 3273c2e | 2008-05-07 13:36:19 +0100 | [diff] [blame] | 436 | |
| 437 | /* Defer cleaning up the other skbs for the caller */ |
| 438 | kfree_skb(skb); |
| 439 | return -EPIPE; |
| 440 | } |
| 441 | } |
| 442 | |
| 443 | return 0; |
| 444 | } |
| 445 | |
Ben Hutchings | b9aafb0 | 2008-09-01 12:46:33 +0100 | [diff] [blame] | 446 | static int efx_poll_loopback(struct efx_nic *efx) |
| 447 | { |
Ben Hutchings | 8c8661e | 2008-09-01 12:49:02 +0100 | [diff] [blame] | 448 | struct efx_loopback_state *state = efx->loopback_selftest; |
Ben Hutchings | b9aafb0 | 2008-09-01 12:46:33 +0100 | [diff] [blame] | 449 | |
Ben Hutchings | b9aafb0 | 2008-09-01 12:46:33 +0100 | [diff] [blame] | 450 | return atomic_read(&state->rx_good) == state->packet_count; |
| 451 | } |
| 452 | |
| 453 | static int efx_end_loopback(struct efx_tx_queue *tx_queue, |
| 454 | struct efx_loopback_self_tests *lb_tests) |
Ben Hutchings | 3273c2e | 2008-05-07 13:36:19 +0100 | [diff] [blame] | 455 | { |
| 456 | struct efx_nic *efx = tx_queue->efx; |
Ben Hutchings | 8c8661e | 2008-09-01 12:49:02 +0100 | [diff] [blame] | 457 | struct efx_loopback_state *state = efx->loopback_selftest; |
Ben Hutchings | 3273c2e | 2008-05-07 13:36:19 +0100 | [diff] [blame] | 458 | struct sk_buff *skb; |
| 459 | int tx_done = 0, rx_good, rx_bad; |
| 460 | int i, rc = 0; |
| 461 | |
Ben Hutchings | 73ba7b6 | 2012-01-09 19:47:08 +0000 | [diff] [blame] | 462 | netif_tx_lock_bh(efx->net_dev); |
Ben Hutchings | 3273c2e | 2008-05-07 13:36:19 +0100 | [diff] [blame] | 463 | |
| 464 | /* Count the number of tx completions, and decrement the refcnt. Any |
| 465 | * skbs not already completed will be free'd when the queue is flushed */ |
Ben Hutchings | 9c636ba | 2012-01-05 17:19:45 +0000 | [diff] [blame] | 466 | for (i = 0; i < state->packet_count; i++) { |
Ben Hutchings | 3273c2e | 2008-05-07 13:36:19 +0100 | [diff] [blame] | 467 | skb = state->skbs[i]; |
| 468 | if (skb && !skb_shared(skb)) |
| 469 | ++tx_done; |
Ben Hutchings | e3ed2bd | 2012-07-02 23:03:02 +0100 | [diff] [blame] | 470 | dev_kfree_skb(skb); |
Ben Hutchings | 3273c2e | 2008-05-07 13:36:19 +0100 | [diff] [blame] | 471 | } |
| 472 | |
Ben Hutchings | 73ba7b6 | 2012-01-09 19:47:08 +0000 | [diff] [blame] | 473 | netif_tx_unlock_bh(efx->net_dev); |
Ben Hutchings | 3273c2e | 2008-05-07 13:36:19 +0100 | [diff] [blame] | 474 | |
| 475 | /* Check TX completion and received packet counts */ |
| 476 | rx_good = atomic_read(&state->rx_good); |
| 477 | rx_bad = atomic_read(&state->rx_bad); |
| 478 | if (tx_done != state->packet_count) { |
| 479 | /* Don't free the skbs; they will be picked up on TX |
| 480 | * overflow or channel teardown. |
| 481 | */ |
Ben Hutchings | 62776d0 | 2010-06-23 11:30:07 +0000 | [diff] [blame] | 482 | netif_err(efx, drv, efx->net_dev, |
| 483 | "TX queue %d saw only %d out of an expected %d " |
| 484 | "TX completion events in %s loopback test\n", |
| 485 | tx_queue->queue, tx_done, state->packet_count, |
| 486 | LOOPBACK_MODE(efx)); |
Ben Hutchings | 3273c2e | 2008-05-07 13:36:19 +0100 | [diff] [blame] | 487 | rc = -ETIMEDOUT; |
| 488 | /* Allow to fall through so we see the RX errors as well */ |
| 489 | } |
| 490 | |
| 491 | /* We may always be up to a flush away from our desired packet total */ |
| 492 | if (rx_good != state->packet_count) { |
Ben Hutchings | 62776d0 | 2010-06-23 11:30:07 +0000 | [diff] [blame] | 493 | netif_dbg(efx, drv, efx->net_dev, |
| 494 | "TX queue %d saw only %d out of an expected %d " |
| 495 | "received packets in %s loopback test\n", |
| 496 | tx_queue->queue, rx_good, state->packet_count, |
| 497 | LOOPBACK_MODE(efx)); |
Ben Hutchings | 3273c2e | 2008-05-07 13:36:19 +0100 | [diff] [blame] | 498 | rc = -ETIMEDOUT; |
| 499 | /* Fall through */ |
| 500 | } |
| 501 | |
| 502 | /* Update loopback test structure */ |
| 503 | lb_tests->tx_sent[tx_queue->queue] += state->packet_count; |
| 504 | lb_tests->tx_done[tx_queue->queue] += tx_done; |
| 505 | lb_tests->rx_good += rx_good; |
| 506 | lb_tests->rx_bad += rx_bad; |
| 507 | |
| 508 | return rc; |
| 509 | } |
| 510 | |
| 511 | static int |
| 512 | efx_test_loopback(struct efx_tx_queue *tx_queue, |
| 513 | struct efx_loopback_self_tests *lb_tests) |
| 514 | { |
| 515 | struct efx_nic *efx = tx_queue->efx; |
Ben Hutchings | 8c8661e | 2008-09-01 12:49:02 +0100 | [diff] [blame] | 516 | struct efx_loopback_state *state = efx->loopback_selftest; |
Ben Hutchings | b9aafb0 | 2008-09-01 12:46:33 +0100 | [diff] [blame] | 517 | int i, begin_rc, end_rc; |
Ben Hutchings | 3273c2e | 2008-05-07 13:36:19 +0100 | [diff] [blame] | 518 | |
Ben Hutchings | 8c8661e | 2008-09-01 12:49:02 +0100 | [diff] [blame] | 519 | for (i = 0; i < 3; i++) { |
Ben Hutchings | 3273c2e | 2008-05-07 13:36:19 +0100 | [diff] [blame] | 520 | /* Determine how many packets to send */ |
Steve Hodgson | ecc910f | 2010-09-10 06:42:22 +0000 | [diff] [blame] | 521 | state->packet_count = efx->txq_entries / 3; |
Ben Hutchings | 3273c2e | 2008-05-07 13:36:19 +0100 | [diff] [blame] | 522 | state->packet_count = min(1 << (i << 2), state->packet_count); |
Thomas Meyer | c2e4e25 | 2011-12-02 12:36:13 +0000 | [diff] [blame] | 523 | state->skbs = kcalloc(state->packet_count, |
| 524 | sizeof(state->skbs[0]), GFP_KERNEL); |
Ben Hutchings | 9b7bfc4 | 2008-05-16 21:20:20 +0100 | [diff] [blame] | 525 | if (!state->skbs) |
| 526 | return -ENOMEM; |
Ben Hutchings | dc8cfa5 | 2008-09-01 12:46:50 +0100 | [diff] [blame] | 527 | state->flush = false; |
Ben Hutchings | 3273c2e | 2008-05-07 13:36:19 +0100 | [diff] [blame] | 528 | |
Ben Hutchings | 62776d0 | 2010-06-23 11:30:07 +0000 | [diff] [blame] | 529 | netif_dbg(efx, drv, efx->net_dev, |
| 530 | "TX queue %d testing %s loopback with %d packets\n", |
| 531 | tx_queue->queue, LOOPBACK_MODE(efx), |
| 532 | state->packet_count); |
Ben Hutchings | 3273c2e | 2008-05-07 13:36:19 +0100 | [diff] [blame] | 533 | |
| 534 | efx_iterate_state(efx); |
Ben Hutchings | b9aafb0 | 2008-09-01 12:46:33 +0100 | [diff] [blame] | 535 | begin_rc = efx_begin_loopback(tx_queue); |
| 536 | |
| 537 | /* This will normally complete very quickly, but be |
Ben Hutchings | 93e5dfa | 2012-02-28 20:40:53 +0000 | [diff] [blame] | 538 | * prepared to wait much longer. */ |
Ben Hutchings | b9aafb0 | 2008-09-01 12:46:33 +0100 | [diff] [blame] | 539 | msleep(1); |
| 540 | if (!efx_poll_loopback(efx)) { |
Ben Hutchings | 93e5dfa | 2012-02-28 20:40:53 +0000 | [diff] [blame] | 541 | msleep(LOOPBACK_TIMEOUT_MS); |
Ben Hutchings | b9aafb0 | 2008-09-01 12:46:33 +0100 | [diff] [blame] | 542 | efx_poll_loopback(efx); |
Ben Hutchings | 3273c2e | 2008-05-07 13:36:19 +0100 | [diff] [blame] | 543 | } |
| 544 | |
Ben Hutchings | b9aafb0 | 2008-09-01 12:46:33 +0100 | [diff] [blame] | 545 | end_rc = efx_end_loopback(tx_queue, lb_tests); |
Ben Hutchings | 3273c2e | 2008-05-07 13:36:19 +0100 | [diff] [blame] | 546 | kfree(state->skbs); |
| 547 | |
Ben Hutchings | b9aafb0 | 2008-09-01 12:46:33 +0100 | [diff] [blame] | 548 | if (begin_rc || end_rc) { |
Ben Hutchings | 3273c2e | 2008-05-07 13:36:19 +0100 | [diff] [blame] | 549 | /* Wait a while to ensure there are no packets |
| 550 | * floating around after a failure. */ |
| 551 | schedule_timeout_uninterruptible(HZ / 10); |
Ben Hutchings | b9aafb0 | 2008-09-01 12:46:33 +0100 | [diff] [blame] | 552 | return begin_rc ? begin_rc : end_rc; |
Ben Hutchings | 3273c2e | 2008-05-07 13:36:19 +0100 | [diff] [blame] | 553 | } |
| 554 | } |
| 555 | |
Ben Hutchings | 62776d0 | 2010-06-23 11:30:07 +0000 | [diff] [blame] | 556 | netif_dbg(efx, drv, efx->net_dev, |
| 557 | "TX queue %d passed %s loopback test with a burst length " |
| 558 | "of %d packets\n", tx_queue->queue, LOOPBACK_MODE(efx), |
| 559 | state->packet_count); |
Ben Hutchings | 3273c2e | 2008-05-07 13:36:19 +0100 | [diff] [blame] | 560 | |
Ben Hutchings | a0c2c19 | 2008-09-01 12:45:08 +0100 | [diff] [blame] | 561 | return 0; |
Ben Hutchings | 3273c2e | 2008-05-07 13:36:19 +0100 | [diff] [blame] | 562 | } |
| 563 | |
Steve Hodgson | 78c1f0a | 2009-11-29 03:43:00 +0000 | [diff] [blame] | 564 | /* Wait for link up. On Falcon, we would prefer to rely on efx_monitor, but |
| 565 | * any contention on the mac lock (via e.g. efx_mac_mcast_work) causes it |
| 566 | * to delay and retry. Therefore, it's safer to just poll directly. Wait |
| 567 | * for link up and any faults to dissipate. */ |
| 568 | static int efx_wait_for_link(struct efx_nic *efx) |
| 569 | { |
| 570 | struct efx_link_state *link_state = &efx->link_state; |
Steve Hodgson | 901d3fe | 2010-06-01 11:18:28 +0000 | [diff] [blame] | 571 | int count, link_up_count = 0; |
Steve Hodgson | 78c1f0a | 2009-11-29 03:43:00 +0000 | [diff] [blame] | 572 | bool link_up; |
| 573 | |
| 574 | for (count = 0; count < 40; count++) { |
| 575 | schedule_timeout_uninterruptible(HZ / 10); |
| 576 | |
| 577 | if (efx->type->monitor != NULL) { |
| 578 | mutex_lock(&efx->mac_lock); |
| 579 | efx->type->monitor(efx); |
| 580 | mutex_unlock(&efx->mac_lock); |
Steve Hodgson | 78c1f0a | 2009-11-29 03:43:00 +0000 | [diff] [blame] | 581 | } |
| 582 | |
| 583 | mutex_lock(&efx->mac_lock); |
| 584 | link_up = link_state->up; |
| 585 | if (link_up) |
Ben Hutchings | 710b208 | 2011-09-03 00:15:00 +0100 | [diff] [blame] | 586 | link_up = !efx->type->check_mac_fault(efx); |
Steve Hodgson | 78c1f0a | 2009-11-29 03:43:00 +0000 | [diff] [blame] | 587 | mutex_unlock(&efx->mac_lock); |
| 588 | |
Steve Hodgson | 901d3fe | 2010-06-01 11:18:28 +0000 | [diff] [blame] | 589 | if (link_up) { |
| 590 | if (++link_up_count == 2) |
| 591 | return 0; |
| 592 | } else { |
| 593 | link_up_count = 0; |
| 594 | } |
Steve Hodgson | 78c1f0a | 2009-11-29 03:43:00 +0000 | [diff] [blame] | 595 | } |
| 596 | |
| 597 | return -ETIMEDOUT; |
| 598 | } |
| 599 | |
Ben Hutchings | a5692e4 | 2008-12-26 13:46:38 -0800 | [diff] [blame] | 600 | static int efx_test_loopbacks(struct efx_nic *efx, struct efx_self_tests *tests, |
Ben Hutchings | 3273c2e | 2008-05-07 13:36:19 +0100 | [diff] [blame] | 601 | unsigned int loopback_modes) |
| 602 | { |
Ben Hutchings | 8c8661e | 2008-09-01 12:49:02 +0100 | [diff] [blame] | 603 | enum efx_loopback_mode mode; |
| 604 | struct efx_loopback_state *state; |
Ben Hutchings | 1ac0226 | 2012-09-13 02:22:52 +0100 | [diff] [blame] | 605 | struct efx_channel *channel = |
| 606 | efx_get_channel(efx, efx->tx_channel_offset); |
Ben Hutchings | 3273c2e | 2008-05-07 13:36:19 +0100 | [diff] [blame] | 607 | struct efx_tx_queue *tx_queue; |
Steve Hodgson | 78c1f0a | 2009-11-29 03:43:00 +0000 | [diff] [blame] | 608 | int rc = 0; |
Ben Hutchings | f8ea0b6 | 2008-09-01 12:46:28 +0100 | [diff] [blame] | 609 | |
Ben Hutchings | 8c8661e | 2008-09-01 12:49:02 +0100 | [diff] [blame] | 610 | /* Set the port loopback_selftest member. From this point on |
| 611 | * all received packets will be dropped. Mark the state as |
| 612 | * "flushing" so all inflight packets are dropped */ |
| 613 | state = kzalloc(sizeof(*state), GFP_KERNEL); |
| 614 | if (state == NULL) |
| 615 | return -ENOMEM; |
| 616 | BUG_ON(efx->loopback_selftest); |
| 617 | state->flush = true; |
| 618 | efx->loopback_selftest = state; |
Ben Hutchings | 3273c2e | 2008-05-07 13:36:19 +0100 | [diff] [blame] | 619 | |
| 620 | /* Test all supported loopback modes */ |
Ben Hutchings | 8c8661e | 2008-09-01 12:49:02 +0100 | [diff] [blame] | 621 | for (mode = LOOPBACK_NONE; mode <= LOOPBACK_TEST_MAX; mode++) { |
Ben Hutchings | 3273c2e | 2008-05-07 13:36:19 +0100 | [diff] [blame] | 622 | if (!(loopback_modes & (1 << mode))) |
| 623 | continue; |
| 624 | |
| 625 | /* Move the port into the specified loopback mode. */ |
Ben Hutchings | dc8cfa5 | 2008-09-01 12:46:50 +0100 | [diff] [blame] | 626 | state->flush = true; |
Steve Hodgson | 78c1f0a | 2009-11-29 03:43:00 +0000 | [diff] [blame] | 627 | mutex_lock(&efx->mac_lock); |
Ben Hutchings | 3273c2e | 2008-05-07 13:36:19 +0100 | [diff] [blame] | 628 | efx->loopback_mode = mode; |
Steve Hodgson | 78c1f0a | 2009-11-29 03:43:00 +0000 | [diff] [blame] | 629 | rc = __efx_reconfigure_port(efx); |
| 630 | mutex_unlock(&efx->mac_lock); |
| 631 | if (rc) { |
Ben Hutchings | 62776d0 | 2010-06-23 11:30:07 +0000 | [diff] [blame] | 632 | netif_err(efx, drv, efx->net_dev, |
| 633 | "unable to move into %s loopback\n", |
| 634 | LOOPBACK_MODE(efx)); |
Ben Hutchings | 3273c2e | 2008-05-07 13:36:19 +0100 | [diff] [blame] | 635 | goto out; |
| 636 | } |
| 637 | |
Steve Hodgson | 78c1f0a | 2009-11-29 03:43:00 +0000 | [diff] [blame] | 638 | rc = efx_wait_for_link(efx); |
| 639 | if (rc) { |
Ben Hutchings | 62776d0 | 2010-06-23 11:30:07 +0000 | [diff] [blame] | 640 | netif_err(efx, drv, efx->net_dev, |
| 641 | "loopback %s never came up\n", |
| 642 | LOOPBACK_MODE(efx)); |
Steve Hodgson | 78c1f0a | 2009-11-29 03:43:00 +0000 | [diff] [blame] | 643 | goto out; |
| 644 | } |
Ben Hutchings | 3273c2e | 2008-05-07 13:36:19 +0100 | [diff] [blame] | 645 | |
Ben Hutchings | 94b274b | 2011-01-10 21:18:20 +0000 | [diff] [blame] | 646 | /* Test all enabled types of TX queue */ |
Ben Hutchings | f7d12cd | 2010-09-10 06:41:47 +0000 | [diff] [blame] | 647 | efx_for_each_channel_tx_queue(tx_queue, channel) { |
Ben Hutchings | a4900ac | 2010-04-28 09:30:43 +0000 | [diff] [blame] | 648 | state->offload_csum = (tx_queue->queue & |
| 649 | EFX_TXQ_TYPE_OFFLOAD); |
Ben Hutchings | f8ea0b6 | 2008-09-01 12:46:28 +0100 | [diff] [blame] | 650 | rc = efx_test_loopback(tx_queue, |
| 651 | &tests->loopback[mode]); |
Ben Hutchings | 3273c2e | 2008-05-07 13:36:19 +0100 | [diff] [blame] | 652 | if (rc) |
| 653 | goto out; |
| 654 | } |
| 655 | } |
| 656 | |
| 657 | out: |
Ben Hutchings | 8c8661e | 2008-09-01 12:49:02 +0100 | [diff] [blame] | 658 | /* Remove the flush. The caller will remove the loopback setting */ |
Ben Hutchings | dc8cfa5 | 2008-09-01 12:46:50 +0100 | [diff] [blame] | 659 | state->flush = true; |
Ben Hutchings | 8c8661e | 2008-09-01 12:49:02 +0100 | [diff] [blame] | 660 | efx->loopback_selftest = NULL; |
| 661 | wmb(); |
| 662 | kfree(state); |
Ben Hutchings | 3273c2e | 2008-05-07 13:36:19 +0100 | [diff] [blame] | 663 | |
| 664 | return rc; |
| 665 | } |
| 666 | |
| 667 | /************************************************************************** |
| 668 | * |
Ben Hutchings | 2ef3068 | 2008-12-26 13:47:04 -0800 | [diff] [blame] | 669 | * Entry point |
Ben Hutchings | 3273c2e | 2008-05-07 13:36:19 +0100 | [diff] [blame] | 670 | * |
| 671 | *************************************************************************/ |
| 672 | |
Ben Hutchings | 2ef3068 | 2008-12-26 13:47:04 -0800 | [diff] [blame] | 673 | int efx_selftest(struct efx_nic *efx, struct efx_self_tests *tests, |
| 674 | unsigned flags) |
Ben Hutchings | 3273c2e | 2008-05-07 13:36:19 +0100 | [diff] [blame] | 675 | { |
Ben Hutchings | 8c8661e | 2008-09-01 12:49:02 +0100 | [diff] [blame] | 676 | enum efx_loopback_mode loopback_mode = efx->loopback_mode; |
| 677 | int phy_mode = efx->phy_mode; |
Ben Hutchings | d4f2cec | 2012-07-04 03:58:33 +0100 | [diff] [blame] | 678 | int rc_test = 0, rc_reset, rc; |
Ben Hutchings | 2ef3068 | 2008-12-26 13:47:04 -0800 | [diff] [blame] | 679 | |
Ben Hutchings | dd40781 | 2012-02-28 23:40:21 +0000 | [diff] [blame] | 680 | efx_selftest_async_cancel(efx); |
| 681 | |
Ben Hutchings | 2ef3068 | 2008-12-26 13:47:04 -0800 | [diff] [blame] | 682 | /* Online (i.e. non-disruptive) testing |
| 683 | * This checks interrupt generation, event delivery and PHY presence. */ |
| 684 | |
Ben Hutchings | 4f16c07 | 2010-02-03 09:30:50 +0000 | [diff] [blame] | 685 | rc = efx_test_phy_alive(efx, tests); |
Ben Hutchings | 2ef3068 | 2008-12-26 13:47:04 -0800 | [diff] [blame] | 686 | if (rc && !rc_test) |
| 687 | rc_test = rc; |
| 688 | |
| 689 | rc = efx_test_nvram(efx, tests); |
| 690 | if (rc && !rc_test) |
| 691 | rc_test = rc; |
| 692 | |
| 693 | rc = efx_test_interrupts(efx, tests); |
| 694 | if (rc && !rc_test) |
| 695 | rc_test = rc; |
| 696 | |
Ben Hutchings | ed74f480 | 2012-02-28 20:40:54 +0000 | [diff] [blame] | 697 | rc = efx_test_eventq_irq(efx, tests); |
| 698 | if (rc && !rc_test) |
| 699 | rc_test = rc; |
Ben Hutchings | 2ef3068 | 2008-12-26 13:47:04 -0800 | [diff] [blame] | 700 | |
| 701 | if (rc_test) |
| 702 | return rc_test; |
| 703 | |
| 704 | if (!(flags & ETH_TEST_FL_OFFLINE)) |
Ben Hutchings | 1796721 | 2008-12-26 13:47:25 -0800 | [diff] [blame] | 705 | return efx_test_phy(efx, tests, flags); |
Ben Hutchings | 2ef3068 | 2008-12-26 13:47:04 -0800 | [diff] [blame] | 706 | |
| 707 | /* Offline (i.e. disruptive) testing |
| 708 | * This checks MAC and PHY loopback on the specified port. */ |
Ben Hutchings | 3273c2e | 2008-05-07 13:36:19 +0100 | [diff] [blame] | 709 | |
Ben Hutchings | e4abce8 | 2011-05-16 18:51:24 +0100 | [diff] [blame] | 710 | /* Detach the device so the kernel doesn't transmit during the |
| 711 | * loopback test and the watchdog timeout doesn't fire. |
Ben Hutchings | 8c8661e | 2008-09-01 12:49:02 +0100 | [diff] [blame] | 712 | */ |
Daniel Pieczko | c2f3b8e | 2012-10-17 13:21:23 +0100 | [diff] [blame] | 713 | efx_device_detach_sync(efx); |
Ben Hutchings | e4abce8 | 2011-05-16 18:51:24 +0100 | [diff] [blame] | 714 | |
Ben Hutchings | d4f2cec | 2012-07-04 03:58:33 +0100 | [diff] [blame] | 715 | if (efx->type->test_chip) { |
| 716 | rc_reset = efx->type->test_chip(efx, tests); |
| 717 | if (rc_reset) { |
| 718 | netif_err(efx, hw, efx->net_dev, |
| 719 | "Unable to recover from chip test\n"); |
| 720 | efx_schedule_reset(efx, RESET_TYPE_DISABLE); |
| 721 | return rc_reset; |
| 722 | } |
| 723 | |
Jon Cooper | 74cd60a | 2013-09-16 14:18:51 +0100 | [diff] [blame] | 724 | if ((tests->memory < 0 || tests->registers < 0) && !rc_test) |
Ben Hutchings | d4f2cec | 2012-07-04 03:58:33 +0100 | [diff] [blame] | 725 | rc_test = -EIO; |
Ben Hutchings | 6f158d5 | 2008-12-12 22:00:49 -0800 | [diff] [blame] | 726 | } |
| 727 | |
Ben Hutchings | a5692e4 | 2008-12-26 13:46:38 -0800 | [diff] [blame] | 728 | /* Ensure that the phy is powered and out of loopback |
| 729 | * for the bist and loopback tests */ |
Ben Hutchings | d4f2cec | 2012-07-04 03:58:33 +0100 | [diff] [blame] | 730 | mutex_lock(&efx->mac_lock); |
Ben Hutchings | a5692e4 | 2008-12-26 13:46:38 -0800 | [diff] [blame] | 731 | efx->phy_mode &= ~PHY_MODE_LOW_POWER; |
Ben Hutchings | 8c8661e | 2008-09-01 12:49:02 +0100 | [diff] [blame] | 732 | efx->loopback_mode = LOOPBACK_NONE; |
Ben Hutchings | d4f2cec | 2012-07-04 03:58:33 +0100 | [diff] [blame] | 733 | __efx_reconfigure_port(efx); |
| 734 | mutex_unlock(&efx->mac_lock); |
Ben Hutchings | 8c8661e | 2008-09-01 12:49:02 +0100 | [diff] [blame] | 735 | |
Ben Hutchings | 1796721 | 2008-12-26 13:47:25 -0800 | [diff] [blame] | 736 | rc = efx_test_phy(efx, tests, flags); |
Ben Hutchings | 2ef3068 | 2008-12-26 13:47:04 -0800 | [diff] [blame] | 737 | if (rc && !rc_test) |
| 738 | rc_test = rc; |
Ben Hutchings | 8c8661e | 2008-09-01 12:49:02 +0100 | [diff] [blame] | 739 | |
Ben Hutchings | 2ef3068 | 2008-12-26 13:47:04 -0800 | [diff] [blame] | 740 | rc = efx_test_loopbacks(efx, tests, efx->loopback_modes); |
| 741 | if (rc && !rc_test) |
| 742 | rc_test = rc; |
Ben Hutchings | 8c8661e | 2008-09-01 12:49:02 +0100 | [diff] [blame] | 743 | |
| 744 | /* restore the PHY to the previous state */ |
Ben Hutchings | d3245b2 | 2009-11-29 03:42:41 +0000 | [diff] [blame] | 745 | mutex_lock(&efx->mac_lock); |
Ben Hutchings | 8c8661e | 2008-09-01 12:49:02 +0100 | [diff] [blame] | 746 | efx->phy_mode = phy_mode; |
Ben Hutchings | d3245b2 | 2009-11-29 03:42:41 +0000 | [diff] [blame] | 747 | efx->loopback_mode = loopback_mode; |
| 748 | __efx_reconfigure_port(efx); |
| 749 | mutex_unlock(&efx->mac_lock); |
Ben Hutchings | 8c8661e | 2008-09-01 12:49:02 +0100 | [diff] [blame] | 750 | |
Ben Hutchings | e4abce8 | 2011-05-16 18:51:24 +0100 | [diff] [blame] | 751 | netif_device_attach(efx->net_dev); |
Neil Turton | 9d1aea6 | 2011-04-04 13:46:23 +0100 | [diff] [blame] | 752 | |
Ben Hutchings | 2ef3068 | 2008-12-26 13:47:04 -0800 | [diff] [blame] | 753 | return rc_test; |
Ben Hutchings | 3273c2e | 2008-05-07 13:36:19 +0100 | [diff] [blame] | 754 | } |
| 755 | |
Ben Hutchings | dd40781 | 2012-02-28 23:40:21 +0000 | [diff] [blame] | 756 | void efx_selftest_async_start(struct efx_nic *efx) |
| 757 | { |
| 758 | struct efx_channel *channel; |
| 759 | |
| 760 | efx_for_each_channel(channel, efx) |
| 761 | efx_nic_event_test_start(channel); |
| 762 | schedule_delayed_work(&efx->selftest_work, IRQ_TIMEOUT); |
| 763 | } |
| 764 | |
| 765 | void efx_selftest_async_cancel(struct efx_nic *efx) |
| 766 | { |
| 767 | cancel_delayed_work_sync(&efx->selftest_work); |
| 768 | } |
| 769 | |
| 770 | void efx_selftest_async_work(struct work_struct *data) |
| 771 | { |
| 772 | struct efx_nic *efx = container_of(data, struct efx_nic, |
| 773 | selftest_work.work); |
| 774 | struct efx_channel *channel; |
| 775 | int cpu; |
| 776 | |
| 777 | efx_for_each_channel(channel, efx) { |
| 778 | cpu = efx_nic_event_test_irq_cpu(channel); |
| 779 | if (cpu < 0) |
| 780 | netif_err(efx, ifup, efx->net_dev, |
| 781 | "channel %d failed to trigger an interrupt\n", |
| 782 | channel->channel); |
| 783 | else |
| 784 | netif_dbg(efx, ifup, efx->net_dev, |
| 785 | "channel %d triggered interrupt on CPU %d\n", |
| 786 | channel->channel, cpu); |
| 787 | } |
| 788 | } |