blob: 3a59a73da8844d9d57a6f153ce74c4504d5adc05 [file] [log] [blame]
Ben Hutchings8e730c12009-11-29 15:14:45 +00001/****************************************************************************
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-2011 Solarflare Communications Inc.
Ben Hutchings8e730c12009-11-29 15:14:45 +00005 *
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/bitops.h>
12#include <linux/delay.h>
Alexey Dobriyana6b7a402011-06-06 10:43:46 +000013#include <linux/interrupt.h>
Ben Hutchings8e730c12009-11-29 15:14:45 +000014#include <linux/pci.h>
15#include <linux/module.h>
16#include <linux/seq_file.h>
17#include "net_driver.h"
18#include "bitfield.h"
19#include "efx.h"
20#include "nic.h"
21#include "regs.h"
22#include "io.h"
23#include "workarounds.h"
24
25/**************************************************************************
26 *
27 * Configurable values
28 *
29 **************************************************************************
30 */
31
32/* This is set to 16 for a good reason. In summary, if larger than
33 * 16, the descriptor cache holds more than a default socket
34 * buffer's worth of packets (for UDP we can only have at most one
35 * socket buffer's worth outstanding). This combined with the fact
36 * that we only get 1 TX event per descriptor cache means the NIC
37 * goes idle.
38 */
39#define TX_DC_ENTRIES 16
40#define TX_DC_ENTRIES_ORDER 1
41
42#define RX_DC_ENTRIES 64
43#define RX_DC_ENTRIES_ORDER 3
44
Ben Hutchings8e730c12009-11-29 15:14:45 +000045/* If EFX_MAX_INT_ERRORS internal errors occur within
46 * EFX_INT_ERROR_EXPIRE seconds, we consider the NIC broken and
47 * disable it.
48 */
49#define EFX_INT_ERROR_EXPIRE 3600
50#define EFX_MAX_INT_ERRORS 5
51
Ben Hutchings8e730c12009-11-29 15:14:45 +000052/* Depth of RX flush request fifo */
53#define EFX_RX_FLUSH_COUNT 4
54
Ben Hutchings4ef594e2012-02-07 23:39:18 +000055/* Driver generated events */
56#define _EFX_CHANNEL_MAGIC_TEST 0x000101
57#define _EFX_CHANNEL_MAGIC_FILL 0x000102
Ben Hutchings9f2cb712012-02-08 00:11:20 +000058#define _EFX_CHANNEL_MAGIC_RX_DRAIN 0x000103
59#define _EFX_CHANNEL_MAGIC_TX_DRAIN 0x000104
Steve Hodgsond730dc52010-06-01 11:19:09 +000060
Ben Hutchings4ef594e2012-02-07 23:39:18 +000061#define _EFX_CHANNEL_MAGIC(_code, _data) ((_code) << 8 | (_data))
62#define _EFX_CHANNEL_MAGIC_CODE(_magic) ((_magic) >> 8)
63
64#define EFX_CHANNEL_MAGIC_TEST(_channel) \
65 _EFX_CHANNEL_MAGIC(_EFX_CHANNEL_MAGIC_TEST, (_channel)->channel)
Ben Hutchings2ae75da2012-02-07 23:49:52 +000066#define EFX_CHANNEL_MAGIC_FILL(_rx_queue) \
67 _EFX_CHANNEL_MAGIC(_EFX_CHANNEL_MAGIC_FILL, \
68 efx_rx_queue_index(_rx_queue))
Ben Hutchings9f2cb712012-02-08 00:11:20 +000069#define EFX_CHANNEL_MAGIC_RX_DRAIN(_rx_queue) \
70 _EFX_CHANNEL_MAGIC(_EFX_CHANNEL_MAGIC_RX_DRAIN, \
71 efx_rx_queue_index(_rx_queue))
72#define EFX_CHANNEL_MAGIC_TX_DRAIN(_tx_queue) \
73 _EFX_CHANNEL_MAGIC(_EFX_CHANNEL_MAGIC_TX_DRAIN, \
74 (_tx_queue)->queue)
Steve Hodgson90d683a2010-06-01 11:19:39 +000075
Daniel Pieczkoe0992b72012-10-02 13:36:18 +010076static void efx_magic_event(struct efx_channel *channel, u32 magic);
77
Ben Hutchings8e730c12009-11-29 15:14:45 +000078/**************************************************************************
79 *
80 * Solarstorm hardware access
81 *
82 **************************************************************************/
83
84static inline void efx_write_buf_tbl(struct efx_nic *efx, efx_qword_t *value,
85 unsigned int index)
86{
87 efx_sram_writeq(efx, efx->membase + efx->type->buf_tbl_base,
88 value, index);
89}
90
91/* Read the current event from the event queue */
92static inline efx_qword_t *efx_event(struct efx_channel *channel,
93 unsigned int index)
94{
Ben Hutchingsd4fabcc2011-04-04 14:22:11 +010095 return ((efx_qword_t *) (channel->eventq.addr)) +
96 (index & channel->eventq_mask);
Ben Hutchings8e730c12009-11-29 15:14:45 +000097}
98
99/* See if an event is present
100 *
101 * We check both the high and low dword of the event for all ones. We
102 * wrote all ones when we cleared the event, and no valid event can
103 * have all ones in either its high or low dwords. This approach is
104 * robust against reordering.
105 *
106 * Note that using a single 64-bit comparison is incorrect; even
107 * though the CPU read will be atomic, the DMA write may not be.
108 */
109static inline int efx_event_present(efx_qword_t *event)
110{
Eric Dumazet807540b2010-09-23 05:40:09 +0000111 return !(EFX_DWORD_IS_ALL_ONES(event->dword[0]) |
112 EFX_DWORD_IS_ALL_ONES(event->dword[1]));
Ben Hutchings8e730c12009-11-29 15:14:45 +0000113}
114
115static bool efx_masked_compare_oword(const efx_oword_t *a, const efx_oword_t *b,
116 const efx_oword_t *mask)
117{
118 return ((a->u64[0] ^ b->u64[0]) & mask->u64[0]) ||
119 ((a->u64[1] ^ b->u64[1]) & mask->u64[1]);
120}
121
122int efx_nic_test_registers(struct efx_nic *efx,
123 const struct efx_nic_register_test *regs,
124 size_t n_regs)
125{
126 unsigned address = 0, i, j;
127 efx_oword_t mask, imask, original, reg, buf;
128
129 /* Falcon should be in loopback to isolate the XMAC from the PHY */
130 WARN_ON(!LOOPBACK_INTERNAL(efx));
131
132 for (i = 0; i < n_regs; ++i) {
133 address = regs[i].address;
134 mask = imask = regs[i].mask;
135 EFX_INVERT_OWORD(imask);
136
137 efx_reado(efx, &original, address);
138
139 /* bit sweep on and off */
140 for (j = 0; j < 128; j++) {
141 if (!EFX_EXTRACT_OWORD32(mask, j, j))
142 continue;
143
144 /* Test this testable bit can be set in isolation */
145 EFX_AND_OWORD(reg, original, mask);
146 EFX_SET_OWORD32(reg, j, j, 1);
147
148 efx_writeo(efx, &reg, address);
149 efx_reado(efx, &buf, address);
150
151 if (efx_masked_compare_oword(&reg, &buf, &mask))
152 goto fail;
153
154 /* Test this testable bit can be cleared in isolation */
155 EFX_OR_OWORD(reg, original, mask);
156 EFX_SET_OWORD32(reg, j, j, 0);
157
158 efx_writeo(efx, &reg, address);
159 efx_reado(efx, &buf, address);
160
161 if (efx_masked_compare_oword(&reg, &buf, &mask))
162 goto fail;
163 }
164
165 efx_writeo(efx, &original, address);
166 }
167
168 return 0;
169
170fail:
Ben Hutchings62776d02010-06-23 11:30:07 +0000171 netif_err(efx, hw, efx->net_dev,
172 "wrote "EFX_OWORD_FMT" read "EFX_OWORD_FMT
173 " at address 0x%x mask "EFX_OWORD_FMT"\n", EFX_OWORD_VAL(reg),
174 EFX_OWORD_VAL(buf), address, EFX_OWORD_VAL(mask));
Ben Hutchings8e730c12009-11-29 15:14:45 +0000175 return -EIO;
176}
177
178/**************************************************************************
179 *
180 * Special buffer handling
181 * Special buffers are used for event queues and the TX and RX
182 * descriptor rings.
183 *
184 *************************************************************************/
185
186/*
187 * Initialise a special buffer
188 *
189 * This will define a buffer (previously allocated via
190 * efx_alloc_special_buffer()) in the buffer table, allowing
191 * it to be used for event queues, descriptor rings etc.
192 */
193static void
194efx_init_special_buffer(struct efx_nic *efx, struct efx_special_buffer *buffer)
195{
196 efx_qword_t buf_desc;
Ben Hutchings5bbe2f42012-02-13 23:14:23 +0000197 unsigned int index;
Ben Hutchings8e730c12009-11-29 15:14:45 +0000198 dma_addr_t dma_addr;
199 int i;
200
201 EFX_BUG_ON_PARANOID(!buffer->addr);
202
203 /* Write buffer descriptors to NIC */
204 for (i = 0; i < buffer->entries; i++) {
205 index = buffer->index + i;
Ben Hutchings5b6262d2012-02-02 21:21:15 +0000206 dma_addr = buffer->dma_addr + (i * EFX_BUF_SIZE);
Ben Hutchings62776d02010-06-23 11:30:07 +0000207 netif_dbg(efx, probe, efx->net_dev,
208 "mapping special buffer %d at %llx\n",
209 index, (unsigned long long)dma_addr);
Ben Hutchings8e730c12009-11-29 15:14:45 +0000210 EFX_POPULATE_QWORD_3(buf_desc,
211 FRF_AZ_BUF_ADR_REGION, 0,
212 FRF_AZ_BUF_ADR_FBUF, dma_addr >> 12,
213 FRF_AZ_BUF_OWNER_ID_FBUF, 0);
214 efx_write_buf_tbl(efx, &buf_desc, index);
215 }
216}
217
218/* Unmaps a buffer and clears the buffer table entries */
219static void
220efx_fini_special_buffer(struct efx_nic *efx, struct efx_special_buffer *buffer)
221{
222 efx_oword_t buf_tbl_upd;
223 unsigned int start = buffer->index;
224 unsigned int end = (buffer->index + buffer->entries - 1);
225
226 if (!buffer->entries)
227 return;
228
Ben Hutchings62776d02010-06-23 11:30:07 +0000229 netif_dbg(efx, hw, efx->net_dev, "unmapping special buffers %d-%d\n",
230 buffer->index, buffer->index + buffer->entries - 1);
Ben Hutchings8e730c12009-11-29 15:14:45 +0000231
232 EFX_POPULATE_OWORD_4(buf_tbl_upd,
233 FRF_AZ_BUF_UPD_CMD, 0,
234 FRF_AZ_BUF_CLR_CMD, 1,
235 FRF_AZ_BUF_CLR_END_ID, end,
236 FRF_AZ_BUF_CLR_START_ID, start);
237 efx_writeo(efx, &buf_tbl_upd, FR_AZ_BUF_TBL_UPD);
238}
239
240/*
241 * Allocate a new special buffer
242 *
243 * This allocates memory for a new buffer, clears it and allocates a
244 * new buffer ID range. It does not write into the buffer table.
245 *
246 * This call will allocate 4KB buffers, since 8KB buffers can't be
247 * used for event queues and descriptor rings.
248 */
249static int efx_alloc_special_buffer(struct efx_nic *efx,
250 struct efx_special_buffer *buffer,
251 unsigned int len)
252{
253 len = ALIGN(len, EFX_BUF_SIZE);
254
Ben Hutchings58758aa2010-09-10 06:41:26 +0000255 buffer->addr = dma_alloc_coherent(&efx->pci_dev->dev, len,
256 &buffer->dma_addr, GFP_KERNEL);
Ben Hutchings8e730c12009-11-29 15:14:45 +0000257 if (!buffer->addr)
258 return -ENOMEM;
259 buffer->len = len;
260 buffer->entries = len / EFX_BUF_SIZE;
261 BUG_ON(buffer->dma_addr & (EFX_BUF_SIZE - 1));
262
263 /* All zeros is a potentially valid event so memset to 0xff */
264 memset(buffer->addr, 0xff, len);
265
266 /* Select new buffer ID */
267 buffer->index = efx->next_buffer_table;
268 efx->next_buffer_table += buffer->entries;
Ben Hutchingscd2d5b52012-02-14 00:48:07 +0000269#ifdef CONFIG_SFC_SRIOV
270 BUG_ON(efx_sriov_enabled(efx) &&
271 efx->vf_buftbl_base < efx->next_buffer_table);
272#endif
Ben Hutchings8e730c12009-11-29 15:14:45 +0000273
Ben Hutchings62776d02010-06-23 11:30:07 +0000274 netif_dbg(efx, probe, efx->net_dev,
275 "allocating special buffers %d-%d at %llx+%x "
276 "(virt %p phys %llx)\n", buffer->index,
277 buffer->index + buffer->entries - 1,
278 (u64)buffer->dma_addr, len,
279 buffer->addr, (u64)virt_to_phys(buffer->addr));
Ben Hutchings8e730c12009-11-29 15:14:45 +0000280
281 return 0;
282}
283
284static void
285efx_free_special_buffer(struct efx_nic *efx, struct efx_special_buffer *buffer)
286{
287 if (!buffer->addr)
288 return;
289
Ben Hutchings62776d02010-06-23 11:30:07 +0000290 netif_dbg(efx, hw, efx->net_dev,
291 "deallocating special buffers %d-%d at %llx+%x "
292 "(virt %p phys %llx)\n", buffer->index,
293 buffer->index + buffer->entries - 1,
294 (u64)buffer->dma_addr, buffer->len,
295 buffer->addr, (u64)virt_to_phys(buffer->addr));
Ben Hutchings8e730c12009-11-29 15:14:45 +0000296
Ben Hutchings58758aa2010-09-10 06:41:26 +0000297 dma_free_coherent(&efx->pci_dev->dev, buffer->len, buffer->addr,
298 buffer->dma_addr);
Ben Hutchings8e730c12009-11-29 15:14:45 +0000299 buffer->addr = NULL;
300 buffer->entries = 0;
301}
302
303/**************************************************************************
304 *
305 * Generic buffer handling
306 * These buffers are used for interrupt status and MAC stats
307 *
308 **************************************************************************/
309
310int efx_nic_alloc_buffer(struct efx_nic *efx, struct efx_buffer *buffer,
311 unsigned int len)
312{
313 buffer->addr = pci_alloc_consistent(efx->pci_dev, len,
314 &buffer->dma_addr);
315 if (!buffer->addr)
316 return -ENOMEM;
317 buffer->len = len;
318 memset(buffer->addr, 0, len);
319 return 0;
320}
321
322void efx_nic_free_buffer(struct efx_nic *efx, struct efx_buffer *buffer)
323{
324 if (buffer->addr) {
325 pci_free_consistent(efx->pci_dev, buffer->len,
326 buffer->addr, buffer->dma_addr);
327 buffer->addr = NULL;
328 }
329}
330
331/**************************************************************************
332 *
333 * TX path
334 *
335 **************************************************************************/
336
337/* Returns a pointer to the specified transmit descriptor in the TX
338 * descriptor queue belonging to the specified channel.
339 */
340static inline efx_qword_t *
341efx_tx_desc(struct efx_tx_queue *tx_queue, unsigned int index)
342{
Eric Dumazet807540b2010-09-23 05:40:09 +0000343 return ((efx_qword_t *) (tx_queue->txd.addr)) + index;
Ben Hutchings8e730c12009-11-29 15:14:45 +0000344}
345
346/* This writes to the TX_DESC_WPTR; write pointer for TX descriptor ring */
347static inline void efx_notify_tx_desc(struct efx_tx_queue *tx_queue)
348{
349 unsigned write_ptr;
350 efx_dword_t reg;
351
Steve Hodgsonecc910f2010-09-10 06:42:22 +0000352 write_ptr = tx_queue->write_count & tx_queue->ptr_mask;
Ben Hutchings8e730c12009-11-29 15:14:45 +0000353 EFX_POPULATE_DWORD_1(reg, FRF_AZ_TX_DESC_WPTR_DWORD, write_ptr);
354 efx_writed_page(tx_queue->efx, &reg,
355 FR_AZ_TX_DESC_UPD_DWORD_P0, tx_queue->queue);
356}
357
Ben Hutchingscd385572010-11-15 23:53:11 +0000358/* Write pointer and first descriptor for TX descriptor ring */
359static inline void efx_push_tx_desc(struct efx_tx_queue *tx_queue,
360 const efx_qword_t *txd)
361{
362 unsigned write_ptr;
363 efx_oword_t reg;
364
365 BUILD_BUG_ON(FRF_AZ_TX_DESC_LBN != 0);
366 BUILD_BUG_ON(FR_AA_TX_DESC_UPD_KER != FR_BZ_TX_DESC_UPD_P0);
367
368 write_ptr = tx_queue->write_count & tx_queue->ptr_mask;
369 EFX_POPULATE_OWORD_2(reg, FRF_AZ_TX_DESC_PUSH_CMD, true,
370 FRF_AZ_TX_DESC_WPTR, write_ptr);
371 reg.qword[0] = *txd;
372 efx_writeo_page(tx_queue->efx, &reg,
373 FR_BZ_TX_DESC_UPD_P0, tx_queue->queue);
374}
375
376static inline bool
377efx_may_push_tx_desc(struct efx_tx_queue *tx_queue, unsigned int write_count)
378{
379 unsigned empty_read_count = ACCESS_ONCE(tx_queue->empty_read_count);
380
381 if (empty_read_count == 0)
382 return false;
383
384 tx_queue->empty_read_count = 0;
385 return ((empty_read_count ^ write_count) & ~EFX_EMPTY_COUNT_VALID) == 0;
386}
Ben Hutchings8e730c12009-11-29 15:14:45 +0000387
388/* For each entry inserted into the software descriptor ring, create a
389 * descriptor in the hardware TX descriptor ring (in host memory), and
390 * write a doorbell.
391 */
392void efx_nic_push_buffers(struct efx_tx_queue *tx_queue)
393{
394
395 struct efx_tx_buffer *buffer;
396 efx_qword_t *txd;
397 unsigned write_ptr;
Ben Hutchingscd385572010-11-15 23:53:11 +0000398 unsigned old_write_count = tx_queue->write_count;
Ben Hutchings8e730c12009-11-29 15:14:45 +0000399
400 BUG_ON(tx_queue->write_count == tx_queue->insert_count);
401
402 do {
Steve Hodgsonecc910f2010-09-10 06:42:22 +0000403 write_ptr = tx_queue->write_count & tx_queue->ptr_mask;
Ben Hutchings8e730c12009-11-29 15:14:45 +0000404 buffer = &tx_queue->buffer[write_ptr];
405 txd = efx_tx_desc(tx_queue, write_ptr);
406 ++tx_queue->write_count;
407
408 /* Create TX descriptor ring entry */
409 EFX_POPULATE_QWORD_4(*txd,
410 FSF_AZ_TX_KER_CONT, buffer->continuation,
411 FSF_AZ_TX_KER_BYTE_COUNT, buffer->len,
412 FSF_AZ_TX_KER_BUF_REGION, 0,
413 FSF_AZ_TX_KER_BUF_ADDR, buffer->dma_addr);
414 } while (tx_queue->write_count != tx_queue->insert_count);
415
416 wmb(); /* Ensure descriptors are written before they are fetched */
Ben Hutchingscd385572010-11-15 23:53:11 +0000417
418 if (efx_may_push_tx_desc(tx_queue, old_write_count)) {
419 txd = efx_tx_desc(tx_queue,
420 old_write_count & tx_queue->ptr_mask);
421 efx_push_tx_desc(tx_queue, txd);
422 ++tx_queue->pushes;
423 } else {
424 efx_notify_tx_desc(tx_queue);
425 }
Ben Hutchings8e730c12009-11-29 15:14:45 +0000426}
427
428/* Allocate hardware resources for a TX queue */
429int efx_nic_probe_tx(struct efx_tx_queue *tx_queue)
430{
431 struct efx_nic *efx = tx_queue->efx;
Steve Hodgsonecc910f2010-09-10 06:42:22 +0000432 unsigned entries;
433
434 entries = tx_queue->ptr_mask + 1;
Ben Hutchings8e730c12009-11-29 15:14:45 +0000435 return efx_alloc_special_buffer(efx, &tx_queue->txd,
Steve Hodgsonecc910f2010-09-10 06:42:22 +0000436 entries * sizeof(efx_qword_t));
Ben Hutchings8e730c12009-11-29 15:14:45 +0000437}
438
439void efx_nic_init_tx(struct efx_tx_queue *tx_queue)
440{
Ben Hutchings8e730c12009-11-29 15:14:45 +0000441 struct efx_nic *efx = tx_queue->efx;
Ben Hutchings94b274b2011-01-10 21:18:20 +0000442 efx_oword_t reg;
Ben Hutchings8e730c12009-11-29 15:14:45 +0000443
Ben Hutchings8e730c12009-11-29 15:14:45 +0000444 /* Pin TX descriptor ring */
445 efx_init_special_buffer(efx, &tx_queue->txd);
446
447 /* Push TX descriptor ring to card */
Ben Hutchings94b274b2011-01-10 21:18:20 +0000448 EFX_POPULATE_OWORD_10(reg,
Ben Hutchings8e730c12009-11-29 15:14:45 +0000449 FRF_AZ_TX_DESCQ_EN, 1,
450 FRF_AZ_TX_ISCSI_DDIG_EN, 0,
451 FRF_AZ_TX_ISCSI_HDIG_EN, 0,
452 FRF_AZ_TX_DESCQ_BUF_BASE_ID, tx_queue->txd.index,
453 FRF_AZ_TX_DESCQ_EVQ_ID,
454 tx_queue->channel->channel,
455 FRF_AZ_TX_DESCQ_OWNER_ID, 0,
456 FRF_AZ_TX_DESCQ_LABEL, tx_queue->queue,
457 FRF_AZ_TX_DESCQ_SIZE,
458 __ffs(tx_queue->txd.entries),
459 FRF_AZ_TX_DESCQ_TYPE, 0,
460 FRF_BZ_TX_NON_IP_DROP_DIS, 1);
461
462 if (efx_nic_rev(efx) >= EFX_REV_FALCON_B0) {
Ben Hutchingsa4900ac2010-04-28 09:30:43 +0000463 int csum = tx_queue->queue & EFX_TXQ_TYPE_OFFLOAD;
Ben Hutchings94b274b2011-01-10 21:18:20 +0000464 EFX_SET_OWORD_FIELD(reg, FRF_BZ_TX_IP_CHKSM_DIS, !csum);
465 EFX_SET_OWORD_FIELD(reg, FRF_BZ_TX_TCP_CHKSM_DIS,
Ben Hutchings8e730c12009-11-29 15:14:45 +0000466 !csum);
467 }
468
Ben Hutchings94b274b2011-01-10 21:18:20 +0000469 efx_writeo_table(efx, &reg, efx->type->txd_ptr_tbl_base,
Ben Hutchings8e730c12009-11-29 15:14:45 +0000470 tx_queue->queue);
471
472 if (efx_nic_rev(efx) < EFX_REV_FALCON_B0) {
Ben Hutchings8e730c12009-11-29 15:14:45 +0000473 /* Only 128 bits in this register */
Ben Hutchingsa4900ac2010-04-28 09:30:43 +0000474 BUILD_BUG_ON(EFX_MAX_TX_QUEUES > 128);
Ben Hutchings8e730c12009-11-29 15:14:45 +0000475
476 efx_reado(efx, &reg, FR_AA_TX_CHKSM_CFG);
Ben Hutchingsa4900ac2010-04-28 09:30:43 +0000477 if (tx_queue->queue & EFX_TXQ_TYPE_OFFLOAD)
Ben Hutchings8e730c12009-11-29 15:14:45 +0000478 clear_bit_le(tx_queue->queue, (void *)&reg);
479 else
480 set_bit_le(tx_queue->queue, (void *)&reg);
481 efx_writeo(efx, &reg, FR_AA_TX_CHKSM_CFG);
482 }
Ben Hutchings94b274b2011-01-10 21:18:20 +0000483
484 if (efx_nic_rev(efx) >= EFX_REV_FALCON_B0) {
485 EFX_POPULATE_OWORD_1(reg,
486 FRF_BZ_TX_PACE,
487 (tx_queue->queue & EFX_TXQ_TYPE_HIGHPRI) ?
488 FFE_BZ_TX_PACE_OFF :
489 FFE_BZ_TX_PACE_RESERVED);
490 efx_writeo_table(efx, &reg, FR_BZ_TX_PACE_TBL,
491 tx_queue->queue);
492 }
Ben Hutchings8e730c12009-11-29 15:14:45 +0000493}
494
495static void efx_flush_tx_queue(struct efx_tx_queue *tx_queue)
496{
497 struct efx_nic *efx = tx_queue->efx;
498 efx_oword_t tx_flush_descq;
499
Daniel Pieczkoe0992b72012-10-02 13:36:18 +0100500 WARN_ON(atomic_read(&tx_queue->flush_outstanding));
501 atomic_set(&tx_queue->flush_outstanding, 1);
502
Ben Hutchings8e730c12009-11-29 15:14:45 +0000503 EFX_POPULATE_OWORD_2(tx_flush_descq,
504 FRF_AZ_TX_FLUSH_DESCQ_CMD, 1,
505 FRF_AZ_TX_FLUSH_DESCQ, tx_queue->queue);
506 efx_writeo(efx, &tx_flush_descq, FR_AZ_TX_FLUSH_DESCQ);
507}
508
509void efx_nic_fini_tx(struct efx_tx_queue *tx_queue)
510{
511 struct efx_nic *efx = tx_queue->efx;
512 efx_oword_t tx_desc_ptr;
513
Ben Hutchings8e730c12009-11-29 15:14:45 +0000514 /* Remove TX descriptor ring from card */
515 EFX_ZERO_OWORD(tx_desc_ptr);
516 efx_writeo_table(efx, &tx_desc_ptr, efx->type->txd_ptr_tbl_base,
517 tx_queue->queue);
518
519 /* Unpin TX descriptor ring */
520 efx_fini_special_buffer(efx, &tx_queue->txd);
521}
522
523/* Free buffers backing TX queue */
524void efx_nic_remove_tx(struct efx_tx_queue *tx_queue)
525{
526 efx_free_special_buffer(tx_queue->efx, &tx_queue->txd);
527}
528
529/**************************************************************************
530 *
531 * RX path
532 *
533 **************************************************************************/
534
535/* Returns a pointer to the specified descriptor in the RX descriptor queue */
536static inline efx_qword_t *
537efx_rx_desc(struct efx_rx_queue *rx_queue, unsigned int index)
538{
Eric Dumazet807540b2010-09-23 05:40:09 +0000539 return ((efx_qword_t *) (rx_queue->rxd.addr)) + index;
Ben Hutchings8e730c12009-11-29 15:14:45 +0000540}
541
542/* This creates an entry in the RX descriptor queue */
543static inline void
544efx_build_rx_desc(struct efx_rx_queue *rx_queue, unsigned index)
545{
546 struct efx_rx_buffer *rx_buf;
547 efx_qword_t *rxd;
548
549 rxd = efx_rx_desc(rx_queue, index);
550 rx_buf = efx_rx_buffer(rx_queue, index);
551 EFX_POPULATE_QWORD_3(*rxd,
552 FSF_AZ_RX_KER_BUF_SIZE,
553 rx_buf->len -
554 rx_queue->efx->type->rx_buffer_padding,
555 FSF_AZ_RX_KER_BUF_REGION, 0,
556 FSF_AZ_RX_KER_BUF_ADDR, rx_buf->dma_addr);
557}
558
559/* This writes to the RX_DESC_WPTR register for the specified receive
560 * descriptor ring.
561 */
562void efx_nic_notify_rx_desc(struct efx_rx_queue *rx_queue)
563{
Steve Hodgsonecc910f2010-09-10 06:42:22 +0000564 struct efx_nic *efx = rx_queue->efx;
Ben Hutchings8e730c12009-11-29 15:14:45 +0000565 efx_dword_t reg;
566 unsigned write_ptr;
567
568 while (rx_queue->notified_count != rx_queue->added_count) {
Steve Hodgsonecc910f2010-09-10 06:42:22 +0000569 efx_build_rx_desc(
570 rx_queue,
571 rx_queue->notified_count & rx_queue->ptr_mask);
Ben Hutchings8e730c12009-11-29 15:14:45 +0000572 ++rx_queue->notified_count;
573 }
574
575 wmb();
Steve Hodgsonecc910f2010-09-10 06:42:22 +0000576 write_ptr = rx_queue->added_count & rx_queue->ptr_mask;
Ben Hutchings8e730c12009-11-29 15:14:45 +0000577 EFX_POPULATE_DWORD_1(reg, FRF_AZ_RX_DESC_WPTR_DWORD, write_ptr);
Steve Hodgsonecc910f2010-09-10 06:42:22 +0000578 efx_writed_page(efx, &reg, FR_AZ_RX_DESC_UPD_DWORD_P0,
Ben Hutchingsba1e8a32010-09-10 06:41:36 +0000579 efx_rx_queue_index(rx_queue));
Ben Hutchings8e730c12009-11-29 15:14:45 +0000580}
581
582int efx_nic_probe_rx(struct efx_rx_queue *rx_queue)
583{
584 struct efx_nic *efx = rx_queue->efx;
Steve Hodgsonecc910f2010-09-10 06:42:22 +0000585 unsigned entries;
586
587 entries = rx_queue->ptr_mask + 1;
Ben Hutchings8e730c12009-11-29 15:14:45 +0000588 return efx_alloc_special_buffer(efx, &rx_queue->rxd,
Steve Hodgsonecc910f2010-09-10 06:42:22 +0000589 entries * sizeof(efx_qword_t));
Ben Hutchings8e730c12009-11-29 15:14:45 +0000590}
591
592void efx_nic_init_rx(struct efx_rx_queue *rx_queue)
593{
594 efx_oword_t rx_desc_ptr;
595 struct efx_nic *efx = rx_queue->efx;
596 bool is_b0 = efx_nic_rev(efx) >= EFX_REV_FALCON_B0;
597 bool iscsi_digest_en = is_b0;
598
Ben Hutchings62776d02010-06-23 11:30:07 +0000599 netif_dbg(efx, hw, efx->net_dev,
600 "RX queue %d ring in special buffers %d-%d\n",
Ben Hutchingsba1e8a32010-09-10 06:41:36 +0000601 efx_rx_queue_index(rx_queue), rx_queue->rxd.index,
Ben Hutchings62776d02010-06-23 11:30:07 +0000602 rx_queue->rxd.index + rx_queue->rxd.entries - 1);
Ben Hutchings8e730c12009-11-29 15:14:45 +0000603
Ben Hutchings8e730c12009-11-29 15:14:45 +0000604 /* Pin RX descriptor ring */
605 efx_init_special_buffer(efx, &rx_queue->rxd);
606
607 /* Push RX descriptor ring to card */
608 EFX_POPULATE_OWORD_10(rx_desc_ptr,
609 FRF_AZ_RX_ISCSI_DDIG_EN, iscsi_digest_en,
610 FRF_AZ_RX_ISCSI_HDIG_EN, iscsi_digest_en,
611 FRF_AZ_RX_DESCQ_BUF_BASE_ID, rx_queue->rxd.index,
612 FRF_AZ_RX_DESCQ_EVQ_ID,
Ben Hutchingsba1e8a32010-09-10 06:41:36 +0000613 efx_rx_queue_channel(rx_queue)->channel,
Ben Hutchings8e730c12009-11-29 15:14:45 +0000614 FRF_AZ_RX_DESCQ_OWNER_ID, 0,
Ben Hutchingsba1e8a32010-09-10 06:41:36 +0000615 FRF_AZ_RX_DESCQ_LABEL,
616 efx_rx_queue_index(rx_queue),
Ben Hutchings8e730c12009-11-29 15:14:45 +0000617 FRF_AZ_RX_DESCQ_SIZE,
618 __ffs(rx_queue->rxd.entries),
619 FRF_AZ_RX_DESCQ_TYPE, 0 /* kernel queue */ ,
620 /* For >=B0 this is scatter so disable */
621 FRF_AZ_RX_DESCQ_JUMBO, !is_b0,
622 FRF_AZ_RX_DESCQ_EN, 1);
623 efx_writeo_table(efx, &rx_desc_ptr, efx->type->rxd_ptr_tbl_base,
Ben Hutchingsba1e8a32010-09-10 06:41:36 +0000624 efx_rx_queue_index(rx_queue));
Ben Hutchings8e730c12009-11-29 15:14:45 +0000625}
626
627static void efx_flush_rx_queue(struct efx_rx_queue *rx_queue)
628{
629 struct efx_nic *efx = rx_queue->efx;
630 efx_oword_t rx_flush_descq;
631
Ben Hutchings8e730c12009-11-29 15:14:45 +0000632 EFX_POPULATE_OWORD_2(rx_flush_descq,
633 FRF_AZ_RX_FLUSH_DESCQ_CMD, 1,
Ben Hutchingsba1e8a32010-09-10 06:41:36 +0000634 FRF_AZ_RX_FLUSH_DESCQ,
635 efx_rx_queue_index(rx_queue));
Ben Hutchings8e730c12009-11-29 15:14:45 +0000636 efx_writeo(efx, &rx_flush_descq, FR_AZ_RX_FLUSH_DESCQ);
637}
638
639void efx_nic_fini_rx(struct efx_rx_queue *rx_queue)
640{
641 efx_oword_t rx_desc_ptr;
642 struct efx_nic *efx = rx_queue->efx;
643
Ben Hutchings8e730c12009-11-29 15:14:45 +0000644 /* Remove RX descriptor ring from card */
645 EFX_ZERO_OWORD(rx_desc_ptr);
646 efx_writeo_table(efx, &rx_desc_ptr, efx->type->rxd_ptr_tbl_base,
Ben Hutchingsba1e8a32010-09-10 06:41:36 +0000647 efx_rx_queue_index(rx_queue));
Ben Hutchings8e730c12009-11-29 15:14:45 +0000648
649 /* Unpin RX descriptor ring */
650 efx_fini_special_buffer(efx, &rx_queue->rxd);
651}
652
653/* Free buffers backing RX queue */
654void efx_nic_remove_rx(struct efx_rx_queue *rx_queue)
655{
656 efx_free_special_buffer(rx_queue->efx, &rx_queue->rxd);
657}
658
659/**************************************************************************
660 *
Ben Hutchings9f2cb712012-02-08 00:11:20 +0000661 * Flush handling
662 *
663 **************************************************************************/
664
665/* efx_nic_flush_queues() must be woken up when all flushes are completed,
666 * or more RX flushes can be kicked off.
667 */
668static bool efx_flush_wake(struct efx_nic *efx)
669{
670 /* Ensure that all updates are visible to efx_nic_flush_queues() */
671 smp_mb();
672
673 return (atomic_read(&efx->drain_pending) == 0 ||
674 (atomic_read(&efx->rxq_flush_outstanding) < EFX_RX_FLUSH_COUNT
675 && atomic_read(&efx->rxq_flush_pending) > 0));
676}
677
Daniel Pieczkoe0992b72012-10-02 13:36:18 +0100678static bool efx_check_tx_flush_complete(struct efx_nic *efx)
679{
680 bool i = true;
681 efx_oword_t txd_ptr_tbl;
682 struct efx_channel *channel;
683 struct efx_tx_queue *tx_queue;
684
685 efx_for_each_channel(channel, efx) {
686 efx_for_each_channel_tx_queue(tx_queue, channel) {
687 efx_reado_table(efx, &txd_ptr_tbl,
688 FR_BZ_TX_DESC_PTR_TBL, tx_queue->queue);
689 if (EFX_OWORD_FIELD(txd_ptr_tbl,
690 FRF_AZ_TX_DESCQ_FLUSH) ||
691 EFX_OWORD_FIELD(txd_ptr_tbl,
692 FRF_AZ_TX_DESCQ_EN)) {
693 netif_dbg(efx, hw, efx->net_dev,
694 "flush did not complete on TXQ %d\n",
695 tx_queue->queue);
696 i = false;
697 } else if (atomic_cmpxchg(&tx_queue->flush_outstanding,
698 1, 0)) {
699 /* The flush is complete, but we didn't
700 * receive a flush completion event
701 */
702 netif_dbg(efx, hw, efx->net_dev,
703 "flush complete on TXQ %d, so drain "
704 "the queue\n", tx_queue->queue);
705 /* Don't need to increment drain_pending as it
706 * has already been incremented for the queues
707 * which did not drain
708 */
709 efx_magic_event(channel,
710 EFX_CHANNEL_MAGIC_TX_DRAIN(
711 tx_queue));
712 }
713 }
714 }
715
716 return i;
717}
718
Ben Hutchings9f2cb712012-02-08 00:11:20 +0000719/* Flush all the transmit queues, and continue flushing receive queues until
720 * they're all flushed. Wait for the DRAIN events to be recieved so that there
721 * are no more RX and TX events left on any channel. */
722int efx_nic_flush_queues(struct efx_nic *efx)
723{
724 unsigned timeout = msecs_to_jiffies(5000); /* 5s for all flushes and drains */
725 struct efx_channel *channel;
726 struct efx_rx_queue *rx_queue;
727 struct efx_tx_queue *tx_queue;
728 int rc = 0;
729
730 efx->type->prepare_flush(efx);
731
732 efx_for_each_channel(channel, efx) {
733 efx_for_each_channel_tx_queue(tx_queue, channel) {
734 atomic_inc(&efx->drain_pending);
735 efx_flush_tx_queue(tx_queue);
736 }
737 efx_for_each_channel_rx_queue(rx_queue, channel) {
738 atomic_inc(&efx->drain_pending);
739 rx_queue->flush_pending = true;
740 atomic_inc(&efx->rxq_flush_pending);
741 }
742 }
743
744 while (timeout && atomic_read(&efx->drain_pending) > 0) {
Ben Hutchingscd2d5b52012-02-14 00:48:07 +0000745 /* If SRIOV is enabled, then offload receive queue flushing to
746 * the firmware (though we will still have to poll for
747 * completion). If that fails, fall back to the old scheme.
748 */
749 if (efx_sriov_enabled(efx)) {
750 rc = efx_mcdi_flush_rxqs(efx);
751 if (!rc)
752 goto wait;
753 }
754
Ben Hutchings9f2cb712012-02-08 00:11:20 +0000755 /* The hardware supports four concurrent rx flushes, each of
756 * which may need to be retried if there is an outstanding
757 * descriptor fetch
758 */
759 efx_for_each_channel(channel, efx) {
760 efx_for_each_channel_rx_queue(rx_queue, channel) {
761 if (atomic_read(&efx->rxq_flush_outstanding) >=
762 EFX_RX_FLUSH_COUNT)
763 break;
764
765 if (rx_queue->flush_pending) {
766 rx_queue->flush_pending = false;
767 atomic_dec(&efx->rxq_flush_pending);
768 atomic_inc(&efx->rxq_flush_outstanding);
769 efx_flush_rx_queue(rx_queue);
770 }
771 }
772 }
773
Ben Hutchingscd2d5b52012-02-14 00:48:07 +0000774 wait:
Ben Hutchings9f2cb712012-02-08 00:11:20 +0000775 timeout = wait_event_timeout(efx->flush_wq, efx_flush_wake(efx),
776 timeout);
777 }
778
Daniel Pieczkoe0992b72012-10-02 13:36:18 +0100779 if (atomic_read(&efx->drain_pending) &&
780 !efx_check_tx_flush_complete(efx)) {
Ben Hutchings9f2cb712012-02-08 00:11:20 +0000781 netif_err(efx, hw, efx->net_dev, "failed to flush %d queues "
782 "(rx %d+%d)\n", atomic_read(&efx->drain_pending),
783 atomic_read(&efx->rxq_flush_outstanding),
784 atomic_read(&efx->rxq_flush_pending));
785 rc = -ETIMEDOUT;
786
787 atomic_set(&efx->drain_pending, 0);
788 atomic_set(&efx->rxq_flush_pending, 0);
789 atomic_set(&efx->rxq_flush_outstanding, 0);
790 }
791
Ben Hutchings60990702012-09-06 16:52:31 +0100792 efx->type->finish_flush(efx);
Steve Hodgsona606f432011-05-23 12:18:45 +0100793
Ben Hutchings9f2cb712012-02-08 00:11:20 +0000794 return rc;
795}
796
797/**************************************************************************
798 *
Ben Hutchings8e730c12009-11-29 15:14:45 +0000799 * Event queue processing
800 * Event queues are processed by per-channel tasklets.
801 *
802 **************************************************************************/
803
804/* Update a channel's event queue's read pointer (RPTR) register
805 *
806 * This writes the EVQ_RPTR_REG register for the specified channel's
807 * event queue.
Ben Hutchings8e730c12009-11-29 15:14:45 +0000808 */
809void efx_nic_eventq_read_ack(struct efx_channel *channel)
810{
811 efx_dword_t reg;
812 struct efx_nic *efx = channel->efx;
813
Ben Hutchingsd4fabcc2011-04-04 14:22:11 +0100814 EFX_POPULATE_DWORD_1(reg, FRF_AZ_EVQ_RPTR,
815 channel->eventq_read_ptr & channel->eventq_mask);
Ben Hutchings8e730c12009-11-29 15:14:45 +0000816 efx_writed_table(efx, &reg, efx->type->evq_rptr_tbl_base,
817 channel->channel);
818}
819
820/* Use HW to insert a SW defined event */
Ben Hutchings90893002012-02-10 22:23:41 +0000821void efx_generate_event(struct efx_nic *efx, unsigned int evq,
822 efx_qword_t *event)
Ben Hutchings8e730c12009-11-29 15:14:45 +0000823{
824 efx_oword_t drv_ev_reg;
825
826 BUILD_BUG_ON(FRF_AZ_DRV_EV_DATA_LBN != 0 ||
827 FRF_AZ_DRV_EV_DATA_WIDTH != 64);
828 drv_ev_reg.u32[0] = event->u32[0];
829 drv_ev_reg.u32[1] = event->u32[1];
830 drv_ev_reg.u32[2] = 0;
831 drv_ev_reg.u32[3] = 0;
Ben Hutchings90893002012-02-10 22:23:41 +0000832 EFX_SET_OWORD_FIELD(drv_ev_reg, FRF_AZ_DRV_EV_QID, evq);
833 efx_writeo(efx, &drv_ev_reg, FR_AZ_DRV_EV);
Ben Hutchings8e730c12009-11-29 15:14:45 +0000834}
835
Ben Hutchings4ef594e2012-02-07 23:39:18 +0000836static void efx_magic_event(struct efx_channel *channel, u32 magic)
837{
838 efx_qword_t event;
839
840 EFX_POPULATE_QWORD_2(event, FSF_AZ_EV_CODE,
841 FSE_AZ_EV_CODE_DRV_GEN_EV,
842 FSF_AZ_DRV_GEN_EV_MAGIC, magic);
Ben Hutchings90893002012-02-10 22:23:41 +0000843 efx_generate_event(channel->efx, channel->channel, &event);
Ben Hutchings4ef594e2012-02-07 23:39:18 +0000844}
845
Ben Hutchings8e730c12009-11-29 15:14:45 +0000846/* Handle a transmit completion event
847 *
848 * The NIC batches TX completion events; the message we receive is of
849 * the form "complete all TX events up to this index".
850 */
Ben Hutchingsfa236e12010-04-28 09:29:42 +0000851static int
Ben Hutchings8e730c12009-11-29 15:14:45 +0000852efx_handle_tx_event(struct efx_channel *channel, efx_qword_t *event)
853{
854 unsigned int tx_ev_desc_ptr;
855 unsigned int tx_ev_q_label;
856 struct efx_tx_queue *tx_queue;
857 struct efx_nic *efx = channel->efx;
Ben Hutchingsfa236e12010-04-28 09:29:42 +0000858 int tx_packets = 0;
Ben Hutchings8e730c12009-11-29 15:14:45 +0000859
Ben Hutchings9f2cb712012-02-08 00:11:20 +0000860 if (unlikely(ACCESS_ONCE(efx->reset_pending)))
861 return 0;
862
Ben Hutchings8e730c12009-11-29 15:14:45 +0000863 if (likely(EFX_QWORD_FIELD(*event, FSF_AZ_TX_EV_COMP))) {
864 /* Transmit completion */
865 tx_ev_desc_ptr = EFX_QWORD_FIELD(*event, FSF_AZ_TX_EV_DESC_PTR);
866 tx_ev_q_label = EFX_QWORD_FIELD(*event, FSF_AZ_TX_EV_Q_LABEL);
Ben Hutchingsf7d12cd2010-09-10 06:41:47 +0000867 tx_queue = efx_channel_get_tx_queue(
868 channel, tx_ev_q_label % EFX_TXQ_TYPES);
Ben Hutchingsfa236e12010-04-28 09:29:42 +0000869 tx_packets = ((tx_ev_desc_ptr - tx_queue->read_count) &
Steve Hodgsonecc910f2010-09-10 06:42:22 +0000870 tx_queue->ptr_mask);
Ben Hutchings8e730c12009-11-29 15:14:45 +0000871 efx_xmit_done(tx_queue, tx_ev_desc_ptr);
872 } else if (EFX_QWORD_FIELD(*event, FSF_AZ_TX_EV_WQ_FF_FULL)) {
873 /* Rewrite the FIFO write pointer */
874 tx_ev_q_label = EFX_QWORD_FIELD(*event, FSF_AZ_TX_EV_Q_LABEL);
Ben Hutchingsf7d12cd2010-09-10 06:41:47 +0000875 tx_queue = efx_channel_get_tx_queue(
876 channel, tx_ev_q_label % EFX_TXQ_TYPES);
Ben Hutchings8e730c12009-11-29 15:14:45 +0000877
Ben Hutchings73ba7b62012-01-09 19:47:08 +0000878 netif_tx_lock(efx->net_dev);
Ben Hutchings8e730c12009-11-29 15:14:45 +0000879 efx_notify_tx_desc(tx_queue);
Ben Hutchings73ba7b62012-01-09 19:47:08 +0000880 netif_tx_unlock(efx->net_dev);
Ben Hutchings8e730c12009-11-29 15:14:45 +0000881 } else if (EFX_QWORD_FIELD(*event, FSF_AZ_TX_EV_PKT_ERR) &&
882 EFX_WORKAROUND_10727(efx)) {
883 efx_schedule_reset(efx, RESET_TYPE_TX_DESC_FETCH);
884 } else {
Ben Hutchings62776d02010-06-23 11:30:07 +0000885 netif_err(efx, tx_err, efx->net_dev,
886 "channel %d unexpected TX event "
887 EFX_QWORD_FMT"\n", channel->channel,
888 EFX_QWORD_VAL(*event));
Ben Hutchings8e730c12009-11-29 15:14:45 +0000889 }
Ben Hutchingsfa236e12010-04-28 09:29:42 +0000890
891 return tx_packets;
Ben Hutchings8e730c12009-11-29 15:14:45 +0000892}
893
894/* Detect errors included in the rx_evt_pkt_ok bit. */
Ben Hutchingsdb339562011-08-26 18:05:11 +0100895static u16 efx_handle_rx_not_ok(struct efx_rx_queue *rx_queue,
896 const efx_qword_t *event)
Ben Hutchings8e730c12009-11-29 15:14:45 +0000897{
Ben Hutchingsba1e8a32010-09-10 06:41:36 +0000898 struct efx_channel *channel = efx_rx_queue_channel(rx_queue);
Ben Hutchings8e730c12009-11-29 15:14:45 +0000899 struct efx_nic *efx = rx_queue->efx;
900 bool rx_ev_buf_owner_id_err, rx_ev_ip_hdr_chksum_err;
901 bool rx_ev_tcp_udp_chksum_err, rx_ev_eth_crc_err;
902 bool rx_ev_frm_trunc, rx_ev_drib_nib, rx_ev_tobe_disc;
903 bool rx_ev_other_err, rx_ev_pause_frm;
904 bool rx_ev_hdr_type, rx_ev_mcast_pkt;
905 unsigned rx_ev_pkt_type;
906
907 rx_ev_hdr_type = EFX_QWORD_FIELD(*event, FSF_AZ_RX_EV_HDR_TYPE);
908 rx_ev_mcast_pkt = EFX_QWORD_FIELD(*event, FSF_AZ_RX_EV_MCAST_PKT);
909 rx_ev_tobe_disc = EFX_QWORD_FIELD(*event, FSF_AZ_RX_EV_TOBE_DISC);
910 rx_ev_pkt_type = EFX_QWORD_FIELD(*event, FSF_AZ_RX_EV_PKT_TYPE);
911 rx_ev_buf_owner_id_err = EFX_QWORD_FIELD(*event,
912 FSF_AZ_RX_EV_BUF_OWNER_ID_ERR);
913 rx_ev_ip_hdr_chksum_err = EFX_QWORD_FIELD(*event,
914 FSF_AZ_RX_EV_IP_HDR_CHKSUM_ERR);
915 rx_ev_tcp_udp_chksum_err = EFX_QWORD_FIELD(*event,
916 FSF_AZ_RX_EV_TCP_UDP_CHKSUM_ERR);
917 rx_ev_eth_crc_err = EFX_QWORD_FIELD(*event, FSF_AZ_RX_EV_ETH_CRC_ERR);
918 rx_ev_frm_trunc = EFX_QWORD_FIELD(*event, FSF_AZ_RX_EV_FRM_TRUNC);
919 rx_ev_drib_nib = ((efx_nic_rev(efx) >= EFX_REV_FALCON_B0) ?
920 0 : EFX_QWORD_FIELD(*event, FSF_AA_RX_EV_DRIB_NIB));
921 rx_ev_pause_frm = EFX_QWORD_FIELD(*event, FSF_AZ_RX_EV_PAUSE_FRM_ERR);
922
923 /* Every error apart from tobe_disc and pause_frm */
924 rx_ev_other_err = (rx_ev_drib_nib | rx_ev_tcp_udp_chksum_err |
925 rx_ev_buf_owner_id_err | rx_ev_eth_crc_err |
926 rx_ev_frm_trunc | rx_ev_ip_hdr_chksum_err);
927
928 /* Count errors that are not in MAC stats. Ignore expected
929 * checksum errors during self-test. */
930 if (rx_ev_frm_trunc)
Ben Hutchingsba1e8a32010-09-10 06:41:36 +0000931 ++channel->n_rx_frm_trunc;
Ben Hutchings8e730c12009-11-29 15:14:45 +0000932 else if (rx_ev_tobe_disc)
Ben Hutchingsba1e8a32010-09-10 06:41:36 +0000933 ++channel->n_rx_tobe_disc;
Ben Hutchings8e730c12009-11-29 15:14:45 +0000934 else if (!efx->loopback_selftest) {
935 if (rx_ev_ip_hdr_chksum_err)
Ben Hutchingsba1e8a32010-09-10 06:41:36 +0000936 ++channel->n_rx_ip_hdr_chksum_err;
Ben Hutchings8e730c12009-11-29 15:14:45 +0000937 else if (rx_ev_tcp_udp_chksum_err)
Ben Hutchingsba1e8a32010-09-10 06:41:36 +0000938 ++channel->n_rx_tcp_udp_chksum_err;
Ben Hutchings8e730c12009-11-29 15:14:45 +0000939 }
940
Ben Hutchings8e730c12009-11-29 15:14:45 +0000941 /* TOBE_DISC is expected on unicast mismatches; don't print out an
942 * error message. FRM_TRUNC indicates RXDP dropped the packet due
943 * to a FIFO overflow.
944 */
Ben Hutchings5f3f9d62011-11-04 22:29:14 +0000945#ifdef DEBUG
Ben Hutchings62776d02010-06-23 11:30:07 +0000946 if (rx_ev_other_err && net_ratelimit()) {
947 netif_dbg(efx, rx_err, efx->net_dev,
948 " RX queue %d unexpected RX event "
949 EFX_QWORD_FMT "%s%s%s%s%s%s%s%s\n",
Ben Hutchingsba1e8a32010-09-10 06:41:36 +0000950 efx_rx_queue_index(rx_queue), EFX_QWORD_VAL(*event),
Ben Hutchings62776d02010-06-23 11:30:07 +0000951 rx_ev_buf_owner_id_err ? " [OWNER_ID_ERR]" : "",
952 rx_ev_ip_hdr_chksum_err ?
953 " [IP_HDR_CHKSUM_ERR]" : "",
954 rx_ev_tcp_udp_chksum_err ?
955 " [TCP_UDP_CHKSUM_ERR]" : "",
956 rx_ev_eth_crc_err ? " [ETH_CRC_ERR]" : "",
957 rx_ev_frm_trunc ? " [FRM_TRUNC]" : "",
958 rx_ev_drib_nib ? " [DRIB_NIB]" : "",
959 rx_ev_tobe_disc ? " [TOBE_DISC]" : "",
960 rx_ev_pause_frm ? " [PAUSE]" : "");
Ben Hutchings8e730c12009-11-29 15:14:45 +0000961 }
962#endif
Ben Hutchingsdb339562011-08-26 18:05:11 +0100963
964 /* The frame must be discarded if any of these are true. */
965 return (rx_ev_eth_crc_err | rx_ev_frm_trunc | rx_ev_drib_nib |
966 rx_ev_tobe_disc | rx_ev_pause_frm) ?
967 EFX_RX_PKT_DISCARD : 0;
Ben Hutchings8e730c12009-11-29 15:14:45 +0000968}
969
970/* Handle receive events that are not in-order. */
971static void
972efx_handle_rx_bad_index(struct efx_rx_queue *rx_queue, unsigned index)
973{
974 struct efx_nic *efx = rx_queue->efx;
975 unsigned expected, dropped;
976
Steve Hodgsonecc910f2010-09-10 06:42:22 +0000977 expected = rx_queue->removed_count & rx_queue->ptr_mask;
978 dropped = (index - expected) & rx_queue->ptr_mask;
Ben Hutchings62776d02010-06-23 11:30:07 +0000979 netif_info(efx, rx_err, efx->net_dev,
980 "dropped %d events (index=%d expected=%d)\n",
981 dropped, index, expected);
Ben Hutchings8e730c12009-11-29 15:14:45 +0000982
983 efx_schedule_reset(efx, EFX_WORKAROUND_5676(efx) ?
984 RESET_TYPE_RX_RECOVERY : RESET_TYPE_DISABLE);
985}
986
987/* Handle a packet received event
988 *
989 * The NIC gives a "discard" flag if it's a unicast packet with the
990 * wrong destination address
991 * Also "is multicast" and "matches multicast filter" flags can be used to
992 * discard non-matching multicast packets.
993 */
994static void
995efx_handle_rx_event(struct efx_channel *channel, const efx_qword_t *event)
996{
997 unsigned int rx_ev_desc_ptr, rx_ev_byte_cnt;
998 unsigned int rx_ev_hdr_type, rx_ev_mcast_pkt;
999 unsigned expected_ptr;
Ben Hutchingsdb339562011-08-26 18:05:11 +01001000 bool rx_ev_pkt_ok;
1001 u16 flags;
Ben Hutchings8e730c12009-11-29 15:14:45 +00001002 struct efx_rx_queue *rx_queue;
Ben Hutchings9f2cb712012-02-08 00:11:20 +00001003 struct efx_nic *efx = channel->efx;
1004
1005 if (unlikely(ACCESS_ONCE(efx->reset_pending)))
1006 return;
Ben Hutchings8e730c12009-11-29 15:14:45 +00001007
1008 /* Basic packet information */
1009 rx_ev_byte_cnt = EFX_QWORD_FIELD(*event, FSF_AZ_RX_EV_BYTE_CNT);
1010 rx_ev_pkt_ok = EFX_QWORD_FIELD(*event, FSF_AZ_RX_EV_PKT_OK);
1011 rx_ev_hdr_type = EFX_QWORD_FIELD(*event, FSF_AZ_RX_EV_HDR_TYPE);
1012 WARN_ON(EFX_QWORD_FIELD(*event, FSF_AZ_RX_EV_JUMBO_CONT));
1013 WARN_ON(EFX_QWORD_FIELD(*event, FSF_AZ_RX_EV_SOP) != 1);
1014 WARN_ON(EFX_QWORD_FIELD(*event, FSF_AZ_RX_EV_Q_LABEL) !=
1015 channel->channel);
1016
Ben Hutchingsf7d12cd2010-09-10 06:41:47 +00001017 rx_queue = efx_channel_get_rx_queue(channel);
Ben Hutchings8e730c12009-11-29 15:14:45 +00001018
1019 rx_ev_desc_ptr = EFX_QWORD_FIELD(*event, FSF_AZ_RX_EV_DESC_PTR);
Steve Hodgsonecc910f2010-09-10 06:42:22 +00001020 expected_ptr = rx_queue->removed_count & rx_queue->ptr_mask;
Ben Hutchings8e730c12009-11-29 15:14:45 +00001021 if (unlikely(rx_ev_desc_ptr != expected_ptr))
1022 efx_handle_rx_bad_index(rx_queue, rx_ev_desc_ptr);
1023
1024 if (likely(rx_ev_pkt_ok)) {
1025 /* If packet is marked as OK and packet type is TCP/IP or
1026 * UDP/IP, then we can rely on the hardware checksum.
1027 */
Ben Hutchingsdb339562011-08-26 18:05:11 +01001028 flags = (rx_ev_hdr_type == FSE_CZ_RX_EV_HDR_TYPE_IPV4V6_TCP ||
1029 rx_ev_hdr_type == FSE_CZ_RX_EV_HDR_TYPE_IPV4V6_UDP) ?
1030 EFX_RX_PKT_CSUMMED : 0;
Ben Hutchings8e730c12009-11-29 15:14:45 +00001031 } else {
Ben Hutchingsdb339562011-08-26 18:05:11 +01001032 flags = efx_handle_rx_not_ok(rx_queue, event);
Ben Hutchings8e730c12009-11-29 15:14:45 +00001033 }
1034
1035 /* Detect multicast packets that didn't match the filter */
1036 rx_ev_mcast_pkt = EFX_QWORD_FIELD(*event, FSF_AZ_RX_EV_MCAST_PKT);
1037 if (rx_ev_mcast_pkt) {
1038 unsigned int rx_ev_mcast_hash_match =
1039 EFX_QWORD_FIELD(*event, FSF_AZ_RX_EV_MCAST_HASH_MATCH);
1040
1041 if (unlikely(!rx_ev_mcast_hash_match)) {
1042 ++channel->n_rx_mcast_mismatch;
Ben Hutchingsdb339562011-08-26 18:05:11 +01001043 flags |= EFX_RX_PKT_DISCARD;
Ben Hutchings8e730c12009-11-29 15:14:45 +00001044 }
1045 }
1046
1047 channel->irq_mod_score += 2;
1048
1049 /* Handle received packet */
Ben Hutchingsdb339562011-08-26 18:05:11 +01001050 efx_rx_packet(rx_queue, rx_ev_desc_ptr, rx_ev_byte_cnt, flags);
Ben Hutchings8e730c12009-11-29 15:14:45 +00001051}
1052
Ben Hutchings9f2cb712012-02-08 00:11:20 +00001053/* If this flush done event corresponds to a &struct efx_tx_queue, then
1054 * send an %EFX_CHANNEL_MAGIC_TX_DRAIN event to drain the event queue
1055 * of all transmit completions.
1056 */
1057static void
1058efx_handle_tx_flush_done(struct efx_nic *efx, efx_qword_t *event)
1059{
1060 struct efx_tx_queue *tx_queue;
1061 int qid;
1062
1063 qid = EFX_QWORD_FIELD(*event, FSF_AZ_DRIVER_EV_SUBDATA);
1064 if (qid < EFX_TXQ_TYPES * efx->n_tx_channels) {
1065 tx_queue = efx_get_tx_queue(efx, qid / EFX_TXQ_TYPES,
1066 qid % EFX_TXQ_TYPES);
Daniel Pieczkoe0992b72012-10-02 13:36:18 +01001067 if (atomic_cmpxchg(&tx_queue->flush_outstanding, 1, 0)) {
1068 efx_magic_event(tx_queue->channel,
1069 EFX_CHANNEL_MAGIC_TX_DRAIN(tx_queue));
1070 }
Ben Hutchings9f2cb712012-02-08 00:11:20 +00001071 }
1072}
1073
1074/* If this flush done event corresponds to a &struct efx_rx_queue: If the flush
1075 * was succesful then send an %EFX_CHANNEL_MAGIC_RX_DRAIN, otherwise add
1076 * the RX queue back to the mask of RX queues in need of flushing.
1077 */
1078static void
1079efx_handle_rx_flush_done(struct efx_nic *efx, efx_qword_t *event)
1080{
1081 struct efx_channel *channel;
1082 struct efx_rx_queue *rx_queue;
1083 int qid;
1084 bool failed;
1085
1086 qid = EFX_QWORD_FIELD(*event, FSF_AZ_DRIVER_EV_RX_DESCQ_ID);
1087 failed = EFX_QWORD_FIELD(*event, FSF_AZ_DRIVER_EV_RX_FLUSH_FAIL);
1088 if (qid >= efx->n_channels)
1089 return;
1090 channel = efx_get_channel(efx, qid);
1091 if (!efx_channel_has_rx_queue(channel))
1092 return;
1093 rx_queue = efx_channel_get_rx_queue(channel);
1094
1095 if (failed) {
1096 netif_info(efx, hw, efx->net_dev,
1097 "RXQ %d flush retry\n", qid);
1098 rx_queue->flush_pending = true;
1099 atomic_inc(&efx->rxq_flush_pending);
1100 } else {
1101 efx_magic_event(efx_rx_queue_channel(rx_queue),
1102 EFX_CHANNEL_MAGIC_RX_DRAIN(rx_queue));
1103 }
1104 atomic_dec(&efx->rxq_flush_outstanding);
1105 if (efx_flush_wake(efx))
1106 wake_up(&efx->flush_wq);
1107}
1108
1109static void
1110efx_handle_drain_event(struct efx_channel *channel)
1111{
1112 struct efx_nic *efx = channel->efx;
1113
1114 WARN_ON(atomic_read(&efx->drain_pending) == 0);
1115 atomic_dec(&efx->drain_pending);
1116 if (efx_flush_wake(efx))
1117 wake_up(&efx->flush_wq);
1118}
1119
Steve Hodgson90d683a2010-06-01 11:19:39 +00001120static void
1121efx_handle_generated_event(struct efx_channel *channel, efx_qword_t *event)
1122{
1123 struct efx_nic *efx = channel->efx;
Ben Hutchings2ae75da2012-02-07 23:49:52 +00001124 struct efx_rx_queue *rx_queue =
1125 efx_channel_has_rx_queue(channel) ?
1126 efx_channel_get_rx_queue(channel) : NULL;
Ben Hutchings9f2cb712012-02-08 00:11:20 +00001127 unsigned magic, code;
Steve Hodgson90d683a2010-06-01 11:19:39 +00001128
Ben Hutchings4ef594e2012-02-07 23:39:18 +00001129 magic = EFX_QWORD_FIELD(*event, FSF_AZ_DRV_GEN_EV_MAGIC);
Ben Hutchings9f2cb712012-02-08 00:11:20 +00001130 code = _EFX_CHANNEL_MAGIC_CODE(magic);
Ben Hutchings4ef594e2012-02-07 23:39:18 +00001131
Ben Hutchings9f2cb712012-02-08 00:11:20 +00001132 if (magic == EFX_CHANNEL_MAGIC_TEST(channel)) {
Ben Hutchingsdd407812012-02-28 23:40:21 +00001133 channel->event_test_cpu = raw_smp_processor_id();
Ben Hutchings9f2cb712012-02-08 00:11:20 +00001134 } else if (rx_queue && magic == EFX_CHANNEL_MAGIC_FILL(rx_queue)) {
Steve Hodgson90d683a2010-06-01 11:19:39 +00001135 /* The queue must be empty, so we won't receive any rx
1136 * events, so efx_process_channel() won't refill the
1137 * queue. Refill it here */
Ben Hutchings2ae75da2012-02-07 23:49:52 +00001138 efx_fast_push_rx_descriptors(rx_queue);
Ben Hutchings9f2cb712012-02-08 00:11:20 +00001139 } else if (rx_queue && magic == EFX_CHANNEL_MAGIC_RX_DRAIN(rx_queue)) {
1140 rx_queue->enabled = false;
1141 efx_handle_drain_event(channel);
1142 } else if (code == _EFX_CHANNEL_MAGIC_TX_DRAIN) {
1143 efx_handle_drain_event(channel);
1144 } else {
Ben Hutchings62776d02010-06-23 11:30:07 +00001145 netif_dbg(efx, hw, efx->net_dev, "channel %d received "
1146 "generated event "EFX_QWORD_FMT"\n",
1147 channel->channel, EFX_QWORD_VAL(*event));
Ben Hutchings9f2cb712012-02-08 00:11:20 +00001148 }
Steve Hodgson90d683a2010-06-01 11:19:39 +00001149}
1150
Ben Hutchings8e730c12009-11-29 15:14:45 +00001151static void
1152efx_handle_driver_event(struct efx_channel *channel, efx_qword_t *event)
1153{
1154 struct efx_nic *efx = channel->efx;
1155 unsigned int ev_sub_code;
1156 unsigned int ev_sub_data;
1157
1158 ev_sub_code = EFX_QWORD_FIELD(*event, FSF_AZ_DRIVER_EV_SUBCODE);
1159 ev_sub_data = EFX_QWORD_FIELD(*event, FSF_AZ_DRIVER_EV_SUBDATA);
1160
1161 switch (ev_sub_code) {
1162 case FSE_AZ_TX_DESCQ_FLS_DONE_EV:
Ben Hutchings62776d02010-06-23 11:30:07 +00001163 netif_vdbg(efx, hw, efx->net_dev, "channel %d TXQ %d flushed\n",
1164 channel->channel, ev_sub_data);
Ben Hutchings9f2cb712012-02-08 00:11:20 +00001165 efx_handle_tx_flush_done(efx, event);
Ben Hutchingscd2d5b52012-02-14 00:48:07 +00001166 efx_sriov_tx_flush_done(efx, event);
Ben Hutchings8e730c12009-11-29 15:14:45 +00001167 break;
1168 case FSE_AZ_RX_DESCQ_FLS_DONE_EV:
Ben Hutchings62776d02010-06-23 11:30:07 +00001169 netif_vdbg(efx, hw, efx->net_dev, "channel %d RXQ %d flushed\n",
1170 channel->channel, ev_sub_data);
Ben Hutchings9f2cb712012-02-08 00:11:20 +00001171 efx_handle_rx_flush_done(efx, event);
Ben Hutchingscd2d5b52012-02-14 00:48:07 +00001172 efx_sriov_rx_flush_done(efx, event);
Ben Hutchings8e730c12009-11-29 15:14:45 +00001173 break;
1174 case FSE_AZ_EVQ_INIT_DONE_EV:
Ben Hutchings62776d02010-06-23 11:30:07 +00001175 netif_dbg(efx, hw, efx->net_dev,
1176 "channel %d EVQ %d initialised\n",
1177 channel->channel, ev_sub_data);
Ben Hutchings8e730c12009-11-29 15:14:45 +00001178 break;
1179 case FSE_AZ_SRM_UPD_DONE_EV:
Ben Hutchings62776d02010-06-23 11:30:07 +00001180 netif_vdbg(efx, hw, efx->net_dev,
1181 "channel %d SRAM update done\n", channel->channel);
Ben Hutchings8e730c12009-11-29 15:14:45 +00001182 break;
1183 case FSE_AZ_WAKE_UP_EV:
Ben Hutchings62776d02010-06-23 11:30:07 +00001184 netif_vdbg(efx, hw, efx->net_dev,
1185 "channel %d RXQ %d wakeup event\n",
1186 channel->channel, ev_sub_data);
Ben Hutchings8e730c12009-11-29 15:14:45 +00001187 break;
1188 case FSE_AZ_TIMER_EV:
Ben Hutchings62776d02010-06-23 11:30:07 +00001189 netif_vdbg(efx, hw, efx->net_dev,
1190 "channel %d RX queue %d timer expired\n",
1191 channel->channel, ev_sub_data);
Ben Hutchings8e730c12009-11-29 15:14:45 +00001192 break;
1193 case FSE_AA_RX_RECOVER_EV:
Ben Hutchings62776d02010-06-23 11:30:07 +00001194 netif_err(efx, rx_err, efx->net_dev,
1195 "channel %d seen DRIVER RX_RESET event. "
Ben Hutchings8e730c12009-11-29 15:14:45 +00001196 "Resetting.\n", channel->channel);
1197 atomic_inc(&efx->rx_reset);
1198 efx_schedule_reset(efx,
1199 EFX_WORKAROUND_6555(efx) ?
1200 RESET_TYPE_RX_RECOVERY :
1201 RESET_TYPE_DISABLE);
1202 break;
1203 case FSE_BZ_RX_DSC_ERROR_EV:
Ben Hutchingscd2d5b52012-02-14 00:48:07 +00001204 if (ev_sub_data < EFX_VI_BASE) {
1205 netif_err(efx, rx_err, efx->net_dev,
1206 "RX DMA Q %d reports descriptor fetch error."
1207 " RX Q %d is disabled.\n", ev_sub_data,
1208 ev_sub_data);
1209 efx_schedule_reset(efx, RESET_TYPE_RX_DESC_FETCH);
1210 } else
1211 efx_sriov_desc_fetch_err(efx, ev_sub_data);
Ben Hutchings8e730c12009-11-29 15:14:45 +00001212 break;
1213 case FSE_BZ_TX_DSC_ERROR_EV:
Ben Hutchingscd2d5b52012-02-14 00:48:07 +00001214 if (ev_sub_data < EFX_VI_BASE) {
1215 netif_err(efx, tx_err, efx->net_dev,
1216 "TX DMA Q %d reports descriptor fetch error."
1217 " TX Q %d is disabled.\n", ev_sub_data,
1218 ev_sub_data);
1219 efx_schedule_reset(efx, RESET_TYPE_TX_DESC_FETCH);
1220 } else
1221 efx_sriov_desc_fetch_err(efx, ev_sub_data);
Ben Hutchings8e730c12009-11-29 15:14:45 +00001222 break;
1223 default:
Ben Hutchings62776d02010-06-23 11:30:07 +00001224 netif_vdbg(efx, hw, efx->net_dev,
1225 "channel %d unknown driver event code %d "
1226 "data %04x\n", channel->channel, ev_sub_code,
1227 ev_sub_data);
Ben Hutchings8e730c12009-11-29 15:14:45 +00001228 break;
1229 }
1230}
1231
Ben Hutchingsfa236e12010-04-28 09:29:42 +00001232int efx_nic_process_eventq(struct efx_channel *channel, int budget)
Ben Hutchings8e730c12009-11-29 15:14:45 +00001233{
Steve Hodgsonecc910f2010-09-10 06:42:22 +00001234 struct efx_nic *efx = channel->efx;
Ben Hutchings8e730c12009-11-29 15:14:45 +00001235 unsigned int read_ptr;
1236 efx_qword_t event, *p_event;
1237 int ev_code;
Ben Hutchingsfa236e12010-04-28 09:29:42 +00001238 int tx_packets = 0;
1239 int spent = 0;
Ben Hutchings8e730c12009-11-29 15:14:45 +00001240
1241 read_ptr = channel->eventq_read_ptr;
1242
Ben Hutchingsfa236e12010-04-28 09:29:42 +00001243 for (;;) {
Ben Hutchings8e730c12009-11-29 15:14:45 +00001244 p_event = efx_event(channel, read_ptr);
1245 event = *p_event;
1246
1247 if (!efx_event_present(&event))
1248 /* End of events */
1249 break;
1250
Ben Hutchings62776d02010-06-23 11:30:07 +00001251 netif_vdbg(channel->efx, intr, channel->efx->net_dev,
1252 "channel %d event is "EFX_QWORD_FMT"\n",
1253 channel->channel, EFX_QWORD_VAL(event));
Ben Hutchings8e730c12009-11-29 15:14:45 +00001254
1255 /* Clear this event by marking it all ones */
1256 EFX_SET_QWORD(*p_event);
1257
Ben Hutchingsd4fabcc2011-04-04 14:22:11 +01001258 ++read_ptr;
Ben Hutchingsfa236e12010-04-28 09:29:42 +00001259
Ben Hutchings8e730c12009-11-29 15:14:45 +00001260 ev_code = EFX_QWORD_FIELD(event, FSF_AZ_EV_CODE);
1261
1262 switch (ev_code) {
1263 case FSE_AZ_EV_CODE_RX_EV:
1264 efx_handle_rx_event(channel, &event);
Ben Hutchingsfa236e12010-04-28 09:29:42 +00001265 if (++spent == budget)
1266 goto out;
Ben Hutchings8e730c12009-11-29 15:14:45 +00001267 break;
1268 case FSE_AZ_EV_CODE_TX_EV:
Ben Hutchingsfa236e12010-04-28 09:29:42 +00001269 tx_packets += efx_handle_tx_event(channel, &event);
Steve Hodgsonecc910f2010-09-10 06:42:22 +00001270 if (tx_packets > efx->txq_entries) {
Ben Hutchingsfa236e12010-04-28 09:29:42 +00001271 spent = budget;
1272 goto out;
1273 }
Ben Hutchings8e730c12009-11-29 15:14:45 +00001274 break;
1275 case FSE_AZ_EV_CODE_DRV_GEN_EV:
Steve Hodgson90d683a2010-06-01 11:19:39 +00001276 efx_handle_generated_event(channel, &event);
Ben Hutchings8e730c12009-11-29 15:14:45 +00001277 break;
Ben Hutchings8e730c12009-11-29 15:14:45 +00001278 case FSE_AZ_EV_CODE_DRIVER_EV:
1279 efx_handle_driver_event(channel, &event);
1280 break;
Ben Hutchingscd2d5b52012-02-14 00:48:07 +00001281 case FSE_CZ_EV_CODE_USER_EV:
1282 efx_sriov_event(channel, &event);
1283 break;
Ben Hutchings8880f4e2009-11-29 15:15:41 +00001284 case FSE_CZ_EV_CODE_MCDI_EV:
1285 efx_mcdi_process_event(channel, &event);
1286 break;
Ben Hutchings40641ed2010-12-02 13:47:45 +00001287 case FSE_AZ_EV_CODE_GLOBAL_EV:
1288 if (efx->type->handle_global_event &&
1289 efx->type->handle_global_event(channel, &event))
1290 break;
1291 /* else fall through */
Ben Hutchings8e730c12009-11-29 15:14:45 +00001292 default:
Ben Hutchings62776d02010-06-23 11:30:07 +00001293 netif_err(channel->efx, hw, channel->efx->net_dev,
1294 "channel %d unknown event type %d (data "
1295 EFX_QWORD_FMT ")\n", channel->channel,
1296 ev_code, EFX_QWORD_VAL(event));
Ben Hutchings8e730c12009-11-29 15:14:45 +00001297 }
Ben Hutchingsfa236e12010-04-28 09:29:42 +00001298 }
Ben Hutchings8e730c12009-11-29 15:14:45 +00001299
Ben Hutchingsfa236e12010-04-28 09:29:42 +00001300out:
Ben Hutchings8e730c12009-11-29 15:14:45 +00001301 channel->eventq_read_ptr = read_ptr;
Ben Hutchingsfa236e12010-04-28 09:29:42 +00001302 return spent;
Ben Hutchings8e730c12009-11-29 15:14:45 +00001303}
1304
Ben Hutchingsd4fabcc2011-04-04 14:22:11 +01001305/* Check whether an event is present in the eventq at the current
1306 * read pointer. Only useful for self-test.
1307 */
1308bool efx_nic_event_present(struct efx_channel *channel)
1309{
1310 return efx_event_present(efx_event(channel, channel->eventq_read_ptr));
1311}
Ben Hutchings8e730c12009-11-29 15:14:45 +00001312
1313/* Allocate buffer table entries for event queue */
1314int efx_nic_probe_eventq(struct efx_channel *channel)
1315{
1316 struct efx_nic *efx = channel->efx;
Steve Hodgsonecc910f2010-09-10 06:42:22 +00001317 unsigned entries;
1318
1319 entries = channel->eventq_mask + 1;
Ben Hutchings8e730c12009-11-29 15:14:45 +00001320 return efx_alloc_special_buffer(efx, &channel->eventq,
Steve Hodgsonecc910f2010-09-10 06:42:22 +00001321 entries * sizeof(efx_qword_t));
Ben Hutchings8e730c12009-11-29 15:14:45 +00001322}
1323
1324void efx_nic_init_eventq(struct efx_channel *channel)
1325{
Ben Hutchings8880f4e2009-11-29 15:15:41 +00001326 efx_oword_t reg;
Ben Hutchings8e730c12009-11-29 15:14:45 +00001327 struct efx_nic *efx = channel->efx;
1328
Ben Hutchings62776d02010-06-23 11:30:07 +00001329 netif_dbg(efx, hw, efx->net_dev,
1330 "channel %d event queue in special buffers %d-%d\n",
1331 channel->channel, channel->eventq.index,
1332 channel->eventq.index + channel->eventq.entries - 1);
Ben Hutchings8e730c12009-11-29 15:14:45 +00001333
Ben Hutchings8880f4e2009-11-29 15:15:41 +00001334 if (efx_nic_rev(efx) >= EFX_REV_SIENA_A0) {
1335 EFX_POPULATE_OWORD_3(reg,
1336 FRF_CZ_TIMER_Q_EN, 1,
1337 FRF_CZ_HOST_NOTIFY_MODE, 0,
1338 FRF_CZ_TIMER_MODE, FFE_CZ_TIMER_MODE_DIS);
1339 efx_writeo_table(efx, &reg, FR_BZ_TIMER_TBL, channel->channel);
1340 }
1341
Ben Hutchings8e730c12009-11-29 15:14:45 +00001342 /* Pin event queue buffer */
1343 efx_init_special_buffer(efx, &channel->eventq);
1344
1345 /* Fill event queue with all ones (i.e. empty events) */
1346 memset(channel->eventq.addr, 0xff, channel->eventq.len);
1347
1348 /* Push event queue to card */
Ben Hutchings8880f4e2009-11-29 15:15:41 +00001349 EFX_POPULATE_OWORD_3(reg,
Ben Hutchings8e730c12009-11-29 15:14:45 +00001350 FRF_AZ_EVQ_EN, 1,
1351 FRF_AZ_EVQ_SIZE, __ffs(channel->eventq.entries),
1352 FRF_AZ_EVQ_BUF_BASE_ID, channel->eventq.index);
Ben Hutchings8880f4e2009-11-29 15:15:41 +00001353 efx_writeo_table(efx, &reg, efx->type->evq_ptr_tbl_base,
Ben Hutchings8e730c12009-11-29 15:14:45 +00001354 channel->channel);
1355
1356 efx->type->push_irq_moderation(channel);
1357}
1358
1359void efx_nic_fini_eventq(struct efx_channel *channel)
1360{
Ben Hutchings8880f4e2009-11-29 15:15:41 +00001361 efx_oword_t reg;
Ben Hutchings8e730c12009-11-29 15:14:45 +00001362 struct efx_nic *efx = channel->efx;
1363
1364 /* Remove event queue from card */
Ben Hutchings8880f4e2009-11-29 15:15:41 +00001365 EFX_ZERO_OWORD(reg);
1366 efx_writeo_table(efx, &reg, efx->type->evq_ptr_tbl_base,
Ben Hutchings8e730c12009-11-29 15:14:45 +00001367 channel->channel);
Ben Hutchings8880f4e2009-11-29 15:15:41 +00001368 if (efx_nic_rev(efx) >= EFX_REV_SIENA_A0)
1369 efx_writeo_table(efx, &reg, FR_BZ_TIMER_TBL, channel->channel);
Ben Hutchings8e730c12009-11-29 15:14:45 +00001370
1371 /* Unpin event queue */
1372 efx_fini_special_buffer(efx, &channel->eventq);
1373}
1374
1375/* Free buffers backing event queue */
1376void efx_nic_remove_eventq(struct efx_channel *channel)
1377{
1378 efx_free_special_buffer(channel->efx, &channel->eventq);
1379}
1380
1381
Ben Hutchingseee6f6a2012-02-28 23:37:35 +00001382void efx_nic_event_test_start(struct efx_channel *channel)
Ben Hutchings8e730c12009-11-29 15:14:45 +00001383{
Ben Hutchingsdd407812012-02-28 23:40:21 +00001384 channel->event_test_cpu = -1;
Ben Hutchingseee6f6a2012-02-28 23:37:35 +00001385 smp_wmb();
Ben Hutchings4ef594e2012-02-07 23:39:18 +00001386 efx_magic_event(channel, EFX_CHANNEL_MAGIC_TEST(channel));
Steve Hodgson90d683a2010-06-01 11:19:39 +00001387}
1388
Ben Hutchings2ae75da2012-02-07 23:49:52 +00001389void efx_nic_generate_fill_event(struct efx_rx_queue *rx_queue)
Steve Hodgson90d683a2010-06-01 11:19:39 +00001390{
Ben Hutchings2ae75da2012-02-07 23:49:52 +00001391 efx_magic_event(efx_rx_queue_channel(rx_queue),
1392 EFX_CHANNEL_MAGIC_FILL(rx_queue));
Ben Hutchings8e730c12009-11-29 15:14:45 +00001393}
1394
1395/**************************************************************************
1396 *
Ben Hutchings8e730c12009-11-29 15:14:45 +00001397 * Hardware interrupts
1398 * The hardware interrupt handler does very little work; all the event
1399 * queue processing is carried out by per-channel tasklets.
1400 *
1401 **************************************************************************/
1402
1403/* Enable/disable/generate interrupts */
1404static inline void efx_nic_interrupts(struct efx_nic *efx,
1405 bool enabled, bool force)
1406{
1407 efx_oword_t int_en_reg_ker;
Ben Hutchings8880f4e2009-11-29 15:15:41 +00001408
1409 EFX_POPULATE_OWORD_3(int_en_reg_ker,
Ben Hutchings1646a6f2012-01-05 20:14:10 +00001410 FRF_AZ_KER_INT_LEVE_SEL, efx->irq_level,
Ben Hutchings8e730c12009-11-29 15:14:45 +00001411 FRF_AZ_KER_INT_KER, force,
1412 FRF_AZ_DRV_INT_EN_KER, enabled);
1413 efx_writeo(efx, &int_en_reg_ker, FR_AZ_INT_EN_KER);
1414}
1415
1416void efx_nic_enable_interrupts(struct efx_nic *efx)
1417{
Ben Hutchings8e730c12009-11-29 15:14:45 +00001418 EFX_ZERO_OWORD(*((efx_oword_t *) efx->irq_status.addr));
1419 wmb(); /* Ensure interrupt vector is clear before interrupts enabled */
1420
Ben Hutchings8e730c12009-11-29 15:14:45 +00001421 efx_nic_interrupts(efx, true, false);
Ben Hutchings8e730c12009-11-29 15:14:45 +00001422}
1423
1424void efx_nic_disable_interrupts(struct efx_nic *efx)
1425{
1426 /* Disable interrupts */
1427 efx_nic_interrupts(efx, false, false);
1428}
1429
1430/* Generate a test interrupt
1431 * Interrupt must already have been enabled, otherwise nasty things
1432 * may happen.
1433 */
Ben Hutchingseee6f6a2012-02-28 23:37:35 +00001434void efx_nic_irq_test_start(struct efx_nic *efx)
Ben Hutchings8e730c12009-11-29 15:14:45 +00001435{
Ben Hutchingseee6f6a2012-02-28 23:37:35 +00001436 efx->last_irq_cpu = -1;
1437 smp_wmb();
Ben Hutchings8e730c12009-11-29 15:14:45 +00001438 efx_nic_interrupts(efx, true, true);
1439}
1440
1441/* Process a fatal interrupt
1442 * Disable bus mastering ASAP and schedule a reset
1443 */
1444irqreturn_t efx_nic_fatal_interrupt(struct efx_nic *efx)
1445{
1446 struct falcon_nic_data *nic_data = efx->nic_data;
1447 efx_oword_t *int_ker = efx->irq_status.addr;
1448 efx_oword_t fatal_intr;
1449 int error, mem_perr;
1450
1451 efx_reado(efx, &fatal_intr, FR_AZ_FATAL_INTR_KER);
1452 error = EFX_OWORD_FIELD(fatal_intr, FRF_AZ_FATAL_INTR);
1453
Ben Hutchings62776d02010-06-23 11:30:07 +00001454 netif_err(efx, hw, efx->net_dev, "SYSTEM ERROR "EFX_OWORD_FMT" status "
1455 EFX_OWORD_FMT ": %s\n", EFX_OWORD_VAL(*int_ker),
1456 EFX_OWORD_VAL(fatal_intr),
1457 error ? "disabling bus mastering" : "no recognised error");
Ben Hutchings8e730c12009-11-29 15:14:45 +00001458
1459 /* If this is a memory parity error dump which blocks are offending */
Steve Hodgson97e1eaa2010-04-28 09:28:52 +00001460 mem_perr = (EFX_OWORD_FIELD(fatal_intr, FRF_AZ_MEM_PERR_INT_KER) ||
1461 EFX_OWORD_FIELD(fatal_intr, FRF_AZ_SRM_PERR_INT_KER));
Ben Hutchings8e730c12009-11-29 15:14:45 +00001462 if (mem_perr) {
1463 efx_oword_t reg;
1464 efx_reado(efx, &reg, FR_AZ_MEM_STAT);
Ben Hutchings62776d02010-06-23 11:30:07 +00001465 netif_err(efx, hw, efx->net_dev,
1466 "SYSTEM ERROR: memory parity error "EFX_OWORD_FMT"\n",
1467 EFX_OWORD_VAL(reg));
Ben Hutchings8e730c12009-11-29 15:14:45 +00001468 }
1469
1470 /* Disable both devices */
1471 pci_clear_master(efx->pci_dev);
1472 if (efx_nic_is_dual_func(efx))
1473 pci_clear_master(nic_data->pci_dev2);
1474 efx_nic_disable_interrupts(efx);
1475
1476 /* Count errors and reset or disable the NIC accordingly */
1477 if (efx->int_error_count == 0 ||
1478 time_after(jiffies, efx->int_error_expire)) {
1479 efx->int_error_count = 0;
1480 efx->int_error_expire =
1481 jiffies + EFX_INT_ERROR_EXPIRE * HZ;
1482 }
1483 if (++efx->int_error_count < EFX_MAX_INT_ERRORS) {
Ben Hutchings62776d02010-06-23 11:30:07 +00001484 netif_err(efx, hw, efx->net_dev,
1485 "SYSTEM ERROR - reset scheduled\n");
Ben Hutchings8e730c12009-11-29 15:14:45 +00001486 efx_schedule_reset(efx, RESET_TYPE_INT_ERROR);
1487 } else {
Ben Hutchings62776d02010-06-23 11:30:07 +00001488 netif_err(efx, hw, efx->net_dev,
1489 "SYSTEM ERROR - max number of errors seen."
1490 "NIC will be disabled\n");
Ben Hutchings8e730c12009-11-29 15:14:45 +00001491 efx_schedule_reset(efx, RESET_TYPE_DISABLE);
1492 }
Steve Hodgson63695452010-04-28 09:27:36 +00001493
Ben Hutchings8e730c12009-11-29 15:14:45 +00001494 return IRQ_HANDLED;
1495}
1496
1497/* Handle a legacy interrupt
1498 * Acknowledges the interrupt and schedule event queue processing.
1499 */
1500static irqreturn_t efx_legacy_interrupt(int irq, void *dev_id)
1501{
1502 struct efx_nic *efx = dev_id;
1503 efx_oword_t *int_ker = efx->irq_status.addr;
1504 irqreturn_t result = IRQ_NONE;
1505 struct efx_channel *channel;
1506 efx_dword_t reg;
1507 u32 queues;
1508 int syserr;
1509
Ben Hutchings94dec6a2010-12-07 19:24:45 +00001510 /* Could this be ours? If interrupts are disabled then the
1511 * channel state may not be valid.
1512 */
1513 if (!efx->legacy_irq_enabled)
1514 return result;
1515
Ben Hutchings8e730c12009-11-29 15:14:45 +00001516 /* Read the ISR which also ACKs the interrupts */
1517 efx_readd(efx, &reg, FR_BZ_INT_ISR0);
1518 queues = EFX_EXTRACT_DWORD(reg, 0, 31);
1519
Ben Hutchings1646a6f2012-01-05 20:14:10 +00001520 /* Handle non-event-queue sources */
1521 if (queues & (1U << efx->irq_level)) {
Steve Hodgson63695452010-04-28 09:27:36 +00001522 syserr = EFX_OWORD_FIELD(*int_ker, FSF_AZ_NET_IVEC_FATAL_INT);
1523 if (unlikely(syserr))
1524 return efx_nic_fatal_interrupt(efx);
Ben Hutchings1646a6f2012-01-05 20:14:10 +00001525 efx->last_irq_cpu = raw_smp_processor_id();
Steve Hodgson63695452010-04-28 09:27:36 +00001526 }
Ben Hutchings8e730c12009-11-29 15:14:45 +00001527
Ben Hutchings8880f4e2009-11-29 15:15:41 +00001528 if (queues != 0) {
1529 if (EFX_WORKAROUND_15783(efx))
1530 efx->irq_zero_count = 0;
1531
1532 /* Schedule processing of any interrupting queues */
1533 efx_for_each_channel(channel, efx) {
1534 if (queues & 1)
Ben Hutchings1646a6f2012-01-05 20:14:10 +00001535 efx_schedule_channel_irq(channel);
Ben Hutchings8880f4e2009-11-29 15:15:41 +00001536 queues >>= 1;
Ben Hutchings8e730c12009-11-29 15:14:45 +00001537 }
Ben Hutchings8880f4e2009-11-29 15:15:41 +00001538 result = IRQ_HANDLED;
1539
Steve Hodgson41b7e4c2010-04-28 09:28:27 +00001540 } else if (EFX_WORKAROUND_15783(efx)) {
Ben Hutchings8880f4e2009-11-29 15:15:41 +00001541 efx_qword_t *event;
1542
Steve Hodgson41b7e4c2010-04-28 09:28:27 +00001543 /* We can't return IRQ_HANDLED more than once on seeing ISR=0
1544 * because this might be a shared interrupt. */
1545 if (efx->irq_zero_count++ == 0)
1546 result = IRQ_HANDLED;
1547
1548 /* Ensure we schedule or rearm all event queues */
Ben Hutchings8880f4e2009-11-29 15:15:41 +00001549 efx_for_each_channel(channel, efx) {
1550 event = efx_event(channel, channel->eventq_read_ptr);
1551 if (efx_event_present(event))
Ben Hutchings1646a6f2012-01-05 20:14:10 +00001552 efx_schedule_channel_irq(channel);
Steve Hodgson41b7e4c2010-04-28 09:28:27 +00001553 else
1554 efx_nic_eventq_read_ack(channel);
Ben Hutchings8880f4e2009-11-29 15:15:41 +00001555 }
Ben Hutchings8e730c12009-11-29 15:14:45 +00001556 }
1557
Ben Hutchings1646a6f2012-01-05 20:14:10 +00001558 if (result == IRQ_HANDLED)
Ben Hutchings62776d02010-06-23 11:30:07 +00001559 netif_vdbg(efx, intr, efx->net_dev,
1560 "IRQ %d on CPU %d status " EFX_DWORD_FMT "\n",
1561 irq, raw_smp_processor_id(), EFX_DWORD_VAL(reg));
Ben Hutchings8e730c12009-11-29 15:14:45 +00001562
1563 return result;
1564}
1565
1566/* Handle an MSI interrupt
1567 *
1568 * Handle an MSI hardware interrupt. This routine schedules event
1569 * queue processing. No interrupt acknowledgement cycle is necessary.
1570 * Also, we never need to check that the interrupt is for us, since
1571 * MSI interrupts cannot be shared.
1572 */
1573static irqreturn_t efx_msi_interrupt(int irq, void *dev_id)
1574{
Ben Hutchings46426102010-09-10 06:42:33 +00001575 struct efx_channel *channel = *(struct efx_channel **)dev_id;
Ben Hutchings8e730c12009-11-29 15:14:45 +00001576 struct efx_nic *efx = channel->efx;
1577 efx_oword_t *int_ker = efx->irq_status.addr;
1578 int syserr;
1579
Ben Hutchings62776d02010-06-23 11:30:07 +00001580 netif_vdbg(efx, intr, efx->net_dev,
1581 "IRQ %d on CPU %d status " EFX_OWORD_FMT "\n",
1582 irq, raw_smp_processor_id(), EFX_OWORD_VAL(*int_ker));
Ben Hutchings8e730c12009-11-29 15:14:45 +00001583
Ben Hutchings1646a6f2012-01-05 20:14:10 +00001584 /* Handle non-event-queue sources */
1585 if (channel->channel == efx->irq_level) {
Steve Hodgson63695452010-04-28 09:27:36 +00001586 syserr = EFX_OWORD_FIELD(*int_ker, FSF_AZ_NET_IVEC_FATAL_INT);
1587 if (unlikely(syserr))
1588 return efx_nic_fatal_interrupt(efx);
Ben Hutchings1646a6f2012-01-05 20:14:10 +00001589 efx->last_irq_cpu = raw_smp_processor_id();
Steve Hodgson63695452010-04-28 09:27:36 +00001590 }
Ben Hutchings8e730c12009-11-29 15:14:45 +00001591
1592 /* Schedule processing of the channel */
Ben Hutchings1646a6f2012-01-05 20:14:10 +00001593 efx_schedule_channel_irq(channel);
Ben Hutchings8e730c12009-11-29 15:14:45 +00001594
1595 return IRQ_HANDLED;
1596}
1597
1598
1599/* Setup RSS indirection table.
1600 * This maps from the hash value of the packet to RXQ
1601 */
Ben Hutchings765c9f42010-06-30 05:06:28 +00001602void efx_nic_push_rx_indir_table(struct efx_nic *efx)
Ben Hutchings8e730c12009-11-29 15:14:45 +00001603{
Ben Hutchings765c9f42010-06-30 05:06:28 +00001604 size_t i = 0;
Ben Hutchings8e730c12009-11-29 15:14:45 +00001605 efx_dword_t dword;
1606
1607 if (efx_nic_rev(efx) < EFX_REV_FALCON_B0)
1608 return;
1609
Ben Hutchings765c9f42010-06-30 05:06:28 +00001610 BUILD_BUG_ON(ARRAY_SIZE(efx->rx_indir_table) !=
1611 FR_BZ_RX_INDIRECTION_TBL_ROWS);
1612
1613 for (i = 0; i < FR_BZ_RX_INDIRECTION_TBL_ROWS; i++) {
Ben Hutchings8e730c12009-11-29 15:14:45 +00001614 EFX_POPULATE_DWORD_1(dword, FRF_BZ_IT_QUEUE,
Ben Hutchings765c9f42010-06-30 05:06:28 +00001615 efx->rx_indir_table[i]);
1616 efx_writed_table(efx, &dword, FR_BZ_RX_INDIRECTION_TBL, i);
Ben Hutchings8e730c12009-11-29 15:14:45 +00001617 }
1618}
1619
1620/* Hook interrupt handler(s)
1621 * Try MSI and then legacy interrupts.
1622 */
1623int efx_nic_init_interrupt(struct efx_nic *efx)
1624{
1625 struct efx_channel *channel;
1626 int rc;
1627
1628 if (!EFX_INT_MODE_USE_MSI(efx)) {
1629 irq_handler_t handler;
1630 if (efx_nic_rev(efx) >= EFX_REV_FALCON_B0)
1631 handler = efx_legacy_interrupt;
1632 else
1633 handler = falcon_legacy_interrupt_a1;
1634
1635 rc = request_irq(efx->legacy_irq, handler, IRQF_SHARED,
1636 efx->name, efx);
1637 if (rc) {
Ben Hutchings62776d02010-06-23 11:30:07 +00001638 netif_err(efx, drv, efx->net_dev,
1639 "failed to hook legacy IRQ %d\n",
1640 efx->pci_dev->irq);
Ben Hutchings8e730c12009-11-29 15:14:45 +00001641 goto fail1;
1642 }
1643 return 0;
1644 }
1645
1646 /* Hook MSI or MSI-X interrupt */
1647 efx_for_each_channel(channel, efx) {
1648 rc = request_irq(channel->irq, efx_msi_interrupt,
1649 IRQF_PROBE_SHARED, /* Not shared */
Ben Hutchings46426102010-09-10 06:42:33 +00001650 efx->channel_name[channel->channel],
1651 &efx->channel[channel->channel]);
Ben Hutchings8e730c12009-11-29 15:14:45 +00001652 if (rc) {
Ben Hutchings62776d02010-06-23 11:30:07 +00001653 netif_err(efx, drv, efx->net_dev,
1654 "failed to hook IRQ %d\n", channel->irq);
Ben Hutchings8e730c12009-11-29 15:14:45 +00001655 goto fail2;
1656 }
1657 }
1658
1659 return 0;
1660
1661 fail2:
1662 efx_for_each_channel(channel, efx)
Ben Hutchings46426102010-09-10 06:42:33 +00001663 free_irq(channel->irq, &efx->channel[channel->channel]);
Ben Hutchings8e730c12009-11-29 15:14:45 +00001664 fail1:
1665 return rc;
1666}
1667
1668void efx_nic_fini_interrupt(struct efx_nic *efx)
1669{
1670 struct efx_channel *channel;
1671 efx_oword_t reg;
1672
1673 /* Disable MSI/MSI-X interrupts */
1674 efx_for_each_channel(channel, efx) {
1675 if (channel->irq)
Ben Hutchings46426102010-09-10 06:42:33 +00001676 free_irq(channel->irq, &efx->channel[channel->channel]);
Ben Hutchings8e730c12009-11-29 15:14:45 +00001677 }
1678
1679 /* ACK legacy interrupt */
1680 if (efx_nic_rev(efx) >= EFX_REV_FALCON_B0)
1681 efx_reado(efx, &reg, FR_BZ_INT_ISR0);
1682 else
1683 falcon_irq_ack_a1(efx);
1684
1685 /* Disable legacy interrupt */
1686 if (efx->legacy_irq)
1687 free_irq(efx->legacy_irq, efx);
1688}
1689
Ben Hutchingscd2d5b52012-02-14 00:48:07 +00001690/* Looks at available SRAM resources and works out how many queues we
1691 * can support, and where things like descriptor caches should live.
1692 *
1693 * SRAM is split up as follows:
1694 * 0 buftbl entries for channels
1695 * efx->vf_buftbl_base buftbl entries for SR-IOV
1696 * efx->rx_dc_base RX descriptor caches
1697 * efx->tx_dc_base TX descriptor caches
1698 */
Ben Hutchings28e47c42012-02-15 01:58:49 +00001699void efx_nic_dimension_resources(struct efx_nic *efx, unsigned sram_lim_qw)
1700{
1701 unsigned vi_count, buftbl_min;
1702
1703 /* Account for the buffer table entries backing the datapath channels
1704 * and the descriptor caches for those channels.
1705 */
1706 buftbl_min = ((efx->n_rx_channels * EFX_MAX_DMAQ_SIZE +
1707 efx->n_tx_channels * EFX_TXQ_TYPES * EFX_MAX_DMAQ_SIZE +
1708 efx->n_channels * EFX_MAX_EVQ_SIZE)
1709 * sizeof(efx_qword_t) / EFX_BUF_SIZE);
1710 vi_count = max(efx->n_channels, efx->n_tx_channels * EFX_TXQ_TYPES);
1711
Ben Hutchingscd2d5b52012-02-14 00:48:07 +00001712#ifdef CONFIG_SFC_SRIOV
1713 if (efx_sriov_wanted(efx)) {
1714 unsigned vi_dc_entries, buftbl_free, entries_per_vf, vf_limit;
1715
1716 efx->vf_buftbl_base = buftbl_min;
1717
1718 vi_dc_entries = RX_DC_ENTRIES + TX_DC_ENTRIES;
1719 vi_count = max(vi_count, EFX_VI_BASE);
1720 buftbl_free = (sram_lim_qw - buftbl_min -
1721 vi_count * vi_dc_entries);
1722
1723 entries_per_vf = ((vi_dc_entries + EFX_VF_BUFTBL_PER_VI) *
1724 efx_vf_size(efx));
1725 vf_limit = min(buftbl_free / entries_per_vf,
1726 (1024U - EFX_VI_BASE) >> efx->vi_scale);
1727
1728 if (efx->vf_count > vf_limit) {
1729 netif_err(efx, probe, efx->net_dev,
1730 "Reducing VF count from from %d to %d\n",
1731 efx->vf_count, vf_limit);
1732 efx->vf_count = vf_limit;
1733 }
1734 vi_count += efx->vf_count * efx_vf_size(efx);
1735 }
1736#endif
1737
Ben Hutchings28e47c42012-02-15 01:58:49 +00001738 efx->tx_dc_base = sram_lim_qw - vi_count * TX_DC_ENTRIES;
1739 efx->rx_dc_base = efx->tx_dc_base - vi_count * RX_DC_ENTRIES;
1740}
1741
Ben Hutchings8e730c12009-11-29 15:14:45 +00001742u32 efx_nic_fpga_ver(struct efx_nic *efx)
1743{
1744 efx_oword_t altera_build;
1745 efx_reado(efx, &altera_build, FR_AZ_ALTERA_BUILD);
1746 return EFX_OWORD_FIELD(altera_build, FRF_AZ_ALTERA_BUILD_VER);
1747}
1748
1749void efx_nic_init_common(struct efx_nic *efx)
1750{
1751 efx_oword_t temp;
1752
1753 /* Set positions of descriptor caches in SRAM. */
Ben Hutchings28e47c42012-02-15 01:58:49 +00001754 EFX_POPULATE_OWORD_1(temp, FRF_AZ_SRM_TX_DC_BASE_ADR, efx->tx_dc_base);
Ben Hutchings8e730c12009-11-29 15:14:45 +00001755 efx_writeo(efx, &temp, FR_AZ_SRM_TX_DC_CFG);
Ben Hutchings28e47c42012-02-15 01:58:49 +00001756 EFX_POPULATE_OWORD_1(temp, FRF_AZ_SRM_RX_DC_BASE_ADR, efx->rx_dc_base);
Ben Hutchings8e730c12009-11-29 15:14:45 +00001757 efx_writeo(efx, &temp, FR_AZ_SRM_RX_DC_CFG);
1758
1759 /* Set TX descriptor cache size. */
1760 BUILD_BUG_ON(TX_DC_ENTRIES != (8 << TX_DC_ENTRIES_ORDER));
1761 EFX_POPULATE_OWORD_1(temp, FRF_AZ_TX_DC_SIZE, TX_DC_ENTRIES_ORDER);
1762 efx_writeo(efx, &temp, FR_AZ_TX_DC_CFG);
1763
1764 /* Set RX descriptor cache size. Set low watermark to size-8, as
1765 * this allows most efficient prefetching.
1766 */
1767 BUILD_BUG_ON(RX_DC_ENTRIES != (8 << RX_DC_ENTRIES_ORDER));
1768 EFX_POPULATE_OWORD_1(temp, FRF_AZ_RX_DC_SIZE, RX_DC_ENTRIES_ORDER);
1769 efx_writeo(efx, &temp, FR_AZ_RX_DC_CFG);
1770 EFX_POPULATE_OWORD_1(temp, FRF_AZ_RX_DC_PF_LWM, RX_DC_ENTRIES - 8);
1771 efx_writeo(efx, &temp, FR_AZ_RX_DC_PF_WM);
1772
1773 /* Program INT_KER address */
1774 EFX_POPULATE_OWORD_2(temp,
1775 FRF_AZ_NORM_INT_VEC_DIS_KER,
1776 EFX_INT_MODE_USE_MSI(efx),
1777 FRF_AZ_INT_ADR_KER, efx->irq_status.dma_addr);
1778 efx_writeo(efx, &temp, FR_AZ_INT_ADR_KER);
1779
Steve Hodgson63695452010-04-28 09:27:36 +00001780 if (EFX_WORKAROUND_17213(efx) && !EFX_INT_MODE_USE_MSI(efx))
1781 /* Use an interrupt level unused by event queues */
Ben Hutchings1646a6f2012-01-05 20:14:10 +00001782 efx->irq_level = 0x1f;
Steve Hodgson63695452010-04-28 09:27:36 +00001783 else
1784 /* Use a valid MSI-X vector */
Ben Hutchings1646a6f2012-01-05 20:14:10 +00001785 efx->irq_level = 0;
Steve Hodgson63695452010-04-28 09:27:36 +00001786
Ben Hutchings8e730c12009-11-29 15:14:45 +00001787 /* Enable all the genuinely fatal interrupts. (They are still
1788 * masked by the overall interrupt mask, controlled by
1789 * falcon_interrupts()).
1790 *
1791 * Note: All other fatal interrupts are enabled
1792 */
1793 EFX_POPULATE_OWORD_3(temp,
1794 FRF_AZ_ILL_ADR_INT_KER_EN, 1,
1795 FRF_AZ_RBUF_OWN_INT_KER_EN, 1,
1796 FRF_AZ_TBUF_OWN_INT_KER_EN, 1);
Steve Hodgsonb17424b2010-04-28 09:25:22 +00001797 if (efx_nic_rev(efx) >= EFX_REV_SIENA_A0)
1798 EFX_SET_OWORD_FIELD(temp, FRF_CZ_SRAM_PERR_INT_P_KER_EN, 1);
Ben Hutchings8e730c12009-11-29 15:14:45 +00001799 EFX_INVERT_OWORD(temp);
1800 efx_writeo(efx, &temp, FR_AZ_FATAL_INTR_KER);
1801
Ben Hutchings765c9f42010-06-30 05:06:28 +00001802 efx_nic_push_rx_indir_table(efx);
Ben Hutchings8e730c12009-11-29 15:14:45 +00001803
1804 /* Disable the ugly timer-based TX DMA backoff and allow TX DMA to be
1805 * controlled by the RX FIFO fill level. Set arbitration to one pkt/Q.
1806 */
1807 efx_reado(efx, &temp, FR_AZ_TX_RESERVED);
1808 EFX_SET_OWORD_FIELD(temp, FRF_AZ_TX_RX_SPACER, 0xfe);
1809 EFX_SET_OWORD_FIELD(temp, FRF_AZ_TX_RX_SPACER_EN, 1);
1810 EFX_SET_OWORD_FIELD(temp, FRF_AZ_TX_ONE_PKT_PER_Q, 1);
Ben Hutchingscd385572010-11-15 23:53:11 +00001811 EFX_SET_OWORD_FIELD(temp, FRF_AZ_TX_PUSH_EN, 1);
Ben Hutchings8e730c12009-11-29 15:14:45 +00001812 EFX_SET_OWORD_FIELD(temp, FRF_AZ_TX_DIS_NON_IP_EV, 1);
1813 /* Enable SW_EV to inherit in char driver - assume harmless here */
1814 EFX_SET_OWORD_FIELD(temp, FRF_AZ_TX_SOFT_EVT_EN, 1);
1815 /* Prefetch threshold 2 => fetch when descriptor cache half empty */
1816 EFX_SET_OWORD_FIELD(temp, FRF_AZ_TX_PREF_THRESHOLD, 2);
Ben Hutchings286d47b2009-12-23 13:49:13 +00001817 /* Disable hardware watchdog which can misfire */
1818 EFX_SET_OWORD_FIELD(temp, FRF_AZ_TX_PREF_WD_TMR, 0x3fffff);
Ben Hutchings8e730c12009-11-29 15:14:45 +00001819 /* Squash TX of packets of 16 bytes or less */
1820 if (efx_nic_rev(efx) >= EFX_REV_FALCON_B0)
1821 EFX_SET_OWORD_FIELD(temp, FRF_BZ_TX_FLUSH_MIN_LEN_EN, 1);
1822 efx_writeo(efx, &temp, FR_AZ_TX_RESERVED);
Ben Hutchings94b274b2011-01-10 21:18:20 +00001823
1824 if (efx_nic_rev(efx) >= EFX_REV_FALCON_B0) {
1825 EFX_POPULATE_OWORD_4(temp,
1826 /* Default values */
1827 FRF_BZ_TX_PACE_SB_NOT_AF, 0x15,
1828 FRF_BZ_TX_PACE_SB_AF, 0xb,
1829 FRF_BZ_TX_PACE_FB_BASE, 0,
1830 /* Allow large pace values in the
1831 * fast bin. */
1832 FRF_BZ_TX_PACE_BIN_TH,
1833 FFE_BZ_TX_PACE_RESERVED);
1834 efx_writeo(efx, &temp, FR_BZ_TX_PACE);
1835 }
Ben Hutchings8e730c12009-11-29 15:14:45 +00001836}
Ben Hutchings5b98c1b2010-06-21 03:06:53 +00001837
1838/* Register dump */
1839
1840#define REGISTER_REVISION_A 1
1841#define REGISTER_REVISION_B 2
1842#define REGISTER_REVISION_C 3
1843#define REGISTER_REVISION_Z 3 /* latest revision */
1844
1845struct efx_nic_reg {
1846 u32 offset:24;
1847 u32 min_revision:2, max_revision:2;
1848};
1849
1850#define REGISTER(name, min_rev, max_rev) { \
1851 FR_ ## min_rev ## max_rev ## _ ## name, \
1852 REGISTER_REVISION_ ## min_rev, REGISTER_REVISION_ ## max_rev \
1853}
1854#define REGISTER_AA(name) REGISTER(name, A, A)
1855#define REGISTER_AB(name) REGISTER(name, A, B)
1856#define REGISTER_AZ(name) REGISTER(name, A, Z)
1857#define REGISTER_BB(name) REGISTER(name, B, B)
1858#define REGISTER_BZ(name) REGISTER(name, B, Z)
1859#define REGISTER_CZ(name) REGISTER(name, C, Z)
1860
1861static const struct efx_nic_reg efx_nic_regs[] = {
1862 REGISTER_AZ(ADR_REGION),
1863 REGISTER_AZ(INT_EN_KER),
1864 REGISTER_BZ(INT_EN_CHAR),
1865 REGISTER_AZ(INT_ADR_KER),
1866 REGISTER_BZ(INT_ADR_CHAR),
1867 /* INT_ACK_KER is WO */
1868 /* INT_ISR0 is RC */
1869 REGISTER_AZ(HW_INIT),
1870 REGISTER_CZ(USR_EV_CFG),
1871 REGISTER_AB(EE_SPI_HCMD),
1872 REGISTER_AB(EE_SPI_HADR),
1873 REGISTER_AB(EE_SPI_HDATA),
1874 REGISTER_AB(EE_BASE_PAGE),
1875 REGISTER_AB(EE_VPD_CFG0),
1876 /* EE_VPD_SW_CNTL and EE_VPD_SW_DATA are not used */
1877 /* PMBX_DBG_IADDR and PBMX_DBG_IDATA are indirect */
1878 /* PCIE_CORE_INDIRECT is indirect */
1879 REGISTER_AB(NIC_STAT),
1880 REGISTER_AB(GPIO_CTL),
1881 REGISTER_AB(GLB_CTL),
1882 /* FATAL_INTR_KER and FATAL_INTR_CHAR are partly RC */
1883 REGISTER_BZ(DP_CTRL),
1884 REGISTER_AZ(MEM_STAT),
1885 REGISTER_AZ(CS_DEBUG),
1886 REGISTER_AZ(ALTERA_BUILD),
1887 REGISTER_AZ(CSR_SPARE),
1888 REGISTER_AB(PCIE_SD_CTL0123),
1889 REGISTER_AB(PCIE_SD_CTL45),
1890 REGISTER_AB(PCIE_PCS_CTL_STAT),
1891 /* DEBUG_DATA_OUT is not used */
1892 /* DRV_EV is WO */
1893 REGISTER_AZ(EVQ_CTL),
1894 REGISTER_AZ(EVQ_CNT1),
1895 REGISTER_AZ(EVQ_CNT2),
1896 REGISTER_AZ(BUF_TBL_CFG),
1897 REGISTER_AZ(SRM_RX_DC_CFG),
1898 REGISTER_AZ(SRM_TX_DC_CFG),
1899 REGISTER_AZ(SRM_CFG),
1900 /* BUF_TBL_UPD is WO */
1901 REGISTER_AZ(SRM_UPD_EVQ),
1902 REGISTER_AZ(SRAM_PARITY),
1903 REGISTER_AZ(RX_CFG),
1904 REGISTER_BZ(RX_FILTER_CTL),
1905 /* RX_FLUSH_DESCQ is WO */
1906 REGISTER_AZ(RX_DC_CFG),
1907 REGISTER_AZ(RX_DC_PF_WM),
1908 REGISTER_BZ(RX_RSS_TKEY),
1909 /* RX_NODESC_DROP is RC */
1910 REGISTER_AA(RX_SELF_RST),
1911 /* RX_DEBUG, RX_PUSH_DROP are not used */
1912 REGISTER_CZ(RX_RSS_IPV6_REG1),
1913 REGISTER_CZ(RX_RSS_IPV6_REG2),
1914 REGISTER_CZ(RX_RSS_IPV6_REG3),
1915 /* TX_FLUSH_DESCQ is WO */
1916 REGISTER_AZ(TX_DC_CFG),
1917 REGISTER_AA(TX_CHKSM_CFG),
1918 REGISTER_AZ(TX_CFG),
1919 /* TX_PUSH_DROP is not used */
1920 REGISTER_AZ(TX_RESERVED),
1921 REGISTER_BZ(TX_PACE),
1922 /* TX_PACE_DROP_QID is RC */
1923 REGISTER_BB(TX_VLAN),
1924 REGISTER_BZ(TX_IPFIL_PORTEN),
1925 REGISTER_AB(MD_TXD),
1926 REGISTER_AB(MD_RXD),
1927 REGISTER_AB(MD_CS),
1928 REGISTER_AB(MD_PHY_ADR),
1929 REGISTER_AB(MD_ID),
1930 /* MD_STAT is RC */
1931 REGISTER_AB(MAC_STAT_DMA),
1932 REGISTER_AB(MAC_CTRL),
1933 REGISTER_BB(GEN_MODE),
1934 REGISTER_AB(MAC_MC_HASH_REG0),
1935 REGISTER_AB(MAC_MC_HASH_REG1),
1936 REGISTER_AB(GM_CFG1),
1937 REGISTER_AB(GM_CFG2),
1938 /* GM_IPG and GM_HD are not used */
1939 REGISTER_AB(GM_MAX_FLEN),
1940 /* GM_TEST is not used */
1941 REGISTER_AB(GM_ADR1),
1942 REGISTER_AB(GM_ADR2),
1943 REGISTER_AB(GMF_CFG0),
1944 REGISTER_AB(GMF_CFG1),
1945 REGISTER_AB(GMF_CFG2),
1946 REGISTER_AB(GMF_CFG3),
1947 REGISTER_AB(GMF_CFG4),
1948 REGISTER_AB(GMF_CFG5),
1949 REGISTER_BB(TX_SRC_MAC_CTL),
1950 REGISTER_AB(XM_ADR_LO),
1951 REGISTER_AB(XM_ADR_HI),
1952 REGISTER_AB(XM_GLB_CFG),
1953 REGISTER_AB(XM_TX_CFG),
1954 REGISTER_AB(XM_RX_CFG),
1955 REGISTER_AB(XM_MGT_INT_MASK),
1956 REGISTER_AB(XM_FC),
1957 REGISTER_AB(XM_PAUSE_TIME),
1958 REGISTER_AB(XM_TX_PARAM),
1959 REGISTER_AB(XM_RX_PARAM),
1960 /* XM_MGT_INT_MSK (note no 'A') is RC */
1961 REGISTER_AB(XX_PWR_RST),
1962 REGISTER_AB(XX_SD_CTL),
1963 REGISTER_AB(XX_TXDRV_CTL),
1964 /* XX_PRBS_CTL, XX_PRBS_CHK and XX_PRBS_ERR are not used */
1965 /* XX_CORE_STAT is partly RC */
1966};
1967
1968struct efx_nic_reg_table {
1969 u32 offset:24;
1970 u32 min_revision:2, max_revision:2;
1971 u32 step:6, rows:21;
1972};
1973
1974#define REGISTER_TABLE_DIMENSIONS(_, offset, min_rev, max_rev, step, rows) { \
1975 offset, \
1976 REGISTER_REVISION_ ## min_rev, REGISTER_REVISION_ ## max_rev, \
1977 step, rows \
1978}
Ben Hutchings9c636ba2012-01-05 17:19:45 +00001979#define REGISTER_TABLE(name, min_rev, max_rev) \
Ben Hutchings5b98c1b2010-06-21 03:06:53 +00001980 REGISTER_TABLE_DIMENSIONS( \
1981 name, FR_ ## min_rev ## max_rev ## _ ## name, \
1982 min_rev, max_rev, \
1983 FR_ ## min_rev ## max_rev ## _ ## name ## _STEP, \
1984 FR_ ## min_rev ## max_rev ## _ ## name ## _ROWS)
1985#define REGISTER_TABLE_AA(name) REGISTER_TABLE(name, A, A)
1986#define REGISTER_TABLE_AZ(name) REGISTER_TABLE(name, A, Z)
1987#define REGISTER_TABLE_BB(name) REGISTER_TABLE(name, B, B)
1988#define REGISTER_TABLE_BZ(name) REGISTER_TABLE(name, B, Z)
1989#define REGISTER_TABLE_BB_CZ(name) \
1990 REGISTER_TABLE_DIMENSIONS(name, FR_BZ_ ## name, B, B, \
1991 FR_BZ_ ## name ## _STEP, \
1992 FR_BB_ ## name ## _ROWS), \
1993 REGISTER_TABLE_DIMENSIONS(name, FR_BZ_ ## name, C, Z, \
1994 FR_BZ_ ## name ## _STEP, \
1995 FR_CZ_ ## name ## _ROWS)
1996#define REGISTER_TABLE_CZ(name) REGISTER_TABLE(name, C, Z)
1997
1998static const struct efx_nic_reg_table efx_nic_reg_tables[] = {
1999 /* DRIVER is not used */
2000 /* EVQ_RPTR, TIMER_COMMAND, USR_EV and {RX,TX}_DESC_UPD are WO */
2001 REGISTER_TABLE_BB(TX_IPFIL_TBL),
2002 REGISTER_TABLE_BB(TX_SRC_MAC_TBL),
2003 REGISTER_TABLE_AA(RX_DESC_PTR_TBL_KER),
2004 REGISTER_TABLE_BB_CZ(RX_DESC_PTR_TBL),
2005 REGISTER_TABLE_AA(TX_DESC_PTR_TBL_KER),
2006 REGISTER_TABLE_BB_CZ(TX_DESC_PTR_TBL),
2007 REGISTER_TABLE_AA(EVQ_PTR_TBL_KER),
2008 REGISTER_TABLE_BB_CZ(EVQ_PTR_TBL),
Ben Hutchings75abc512010-09-20 08:43:53 +00002009 /* We can't reasonably read all of the buffer table (up to 8MB!).
Ben Hutchings5b98c1b2010-06-21 03:06:53 +00002010 * However this driver will only use a few entries. Reading
2011 * 1K entries allows for some expansion of queue count and
2012 * size before we need to change the version. */
2013 REGISTER_TABLE_DIMENSIONS(BUF_FULL_TBL_KER, FR_AA_BUF_FULL_TBL_KER,
2014 A, A, 8, 1024),
2015 REGISTER_TABLE_DIMENSIONS(BUF_FULL_TBL, FR_BZ_BUF_FULL_TBL,
2016 B, Z, 8, 1024),
Ben Hutchings5b98c1b2010-06-21 03:06:53 +00002017 REGISTER_TABLE_CZ(RX_MAC_FILTER_TBL0),
2018 REGISTER_TABLE_BB_CZ(TIMER_TBL),
2019 REGISTER_TABLE_BB_CZ(TX_PACE_TBL),
2020 REGISTER_TABLE_BZ(RX_INDIRECTION_TBL),
2021 /* TX_FILTER_TBL0 is huge and not used by this driver */
2022 REGISTER_TABLE_CZ(TX_MAC_FILTER_TBL0),
2023 REGISTER_TABLE_CZ(MC_TREG_SMEM),
2024 /* MSIX_PBA_TABLE is not mapped */
2025 /* SRM_DBG is not mapped (and is redundant with BUF_FLL_TBL) */
Ben Hutchings75abc512010-09-20 08:43:53 +00002026 REGISTER_TABLE_BZ(RX_FILTER_TBL0),
Ben Hutchings5b98c1b2010-06-21 03:06:53 +00002027};
2028
2029size_t efx_nic_get_regs_len(struct efx_nic *efx)
2030{
2031 const struct efx_nic_reg *reg;
2032 const struct efx_nic_reg_table *table;
2033 size_t len = 0;
2034
2035 for (reg = efx_nic_regs;
2036 reg < efx_nic_regs + ARRAY_SIZE(efx_nic_regs);
2037 reg++)
2038 if (efx->type->revision >= reg->min_revision &&
2039 efx->type->revision <= reg->max_revision)
2040 len += sizeof(efx_oword_t);
2041
2042 for (table = efx_nic_reg_tables;
2043 table < efx_nic_reg_tables + ARRAY_SIZE(efx_nic_reg_tables);
2044 table++)
2045 if (efx->type->revision >= table->min_revision &&
2046 efx->type->revision <= table->max_revision)
2047 len += table->rows * min_t(size_t, table->step, 16);
2048
2049 return len;
2050}
2051
2052void efx_nic_get_regs(struct efx_nic *efx, void *buf)
2053{
2054 const struct efx_nic_reg *reg;
2055 const struct efx_nic_reg_table *table;
2056
2057 for (reg = efx_nic_regs;
2058 reg < efx_nic_regs + ARRAY_SIZE(efx_nic_regs);
2059 reg++) {
2060 if (efx->type->revision >= reg->min_revision &&
2061 efx->type->revision <= reg->max_revision) {
2062 efx_reado(efx, (efx_oword_t *)buf, reg->offset);
2063 buf += sizeof(efx_oword_t);
2064 }
2065 }
2066
2067 for (table = efx_nic_reg_tables;
2068 table < efx_nic_reg_tables + ARRAY_SIZE(efx_nic_reg_tables);
2069 table++) {
2070 size_t size, i;
2071
2072 if (!(efx->type->revision >= table->min_revision &&
2073 efx->type->revision <= table->max_revision))
2074 continue;
2075
2076 size = min_t(size_t, table->step, 16);
2077
2078 for (i = 0; i < table->rows; i++) {
2079 switch (table->step) {
2080 case 4: /* 32-bit register or SRAM */
2081 efx_readd_table(efx, buf, table->offset, i);
2082 break;
2083 case 8: /* 64-bit SRAM */
2084 efx_sram_readq(efx,
2085 efx->membase + table->offset,
2086 buf, i);
2087 break;
2088 case 16: /* 128-bit register */
2089 efx_reado_table(efx, buf, table->offset, i);
2090 break;
2091 case 32: /* 128-bit register, interleaved */
2092 efx_reado_table(efx, buf, table->offset, 2 * i);
2093 break;
2094 default:
2095 WARN_ON(1);
2096 return;
2097 }
2098 buf += size;
2099 }
2100 }
2101}