blob: 6608dfe455b17beb87eb79bfbb6438b18b22a71b [file] [log] [blame]
Ben Hutchings86094f72013-08-21 19:51:04 +01001/****************************************************************************
Ben Hutchingsf7a6d2c2013-08-29 23:32:48 +01002 * Driver for Solarflare network controllers and boards
Ben Hutchings86094f72013-08-21 19:51:04 +01003 * Copyright 2005-2006 Fen Systems Ltd.
Ben Hutchingsf7a6d2c2013-08-29 23:32:48 +01004 * Copyright 2006-2013 Solarflare Communications Inc.
Ben Hutchings86094f72013-08-21 19:51:04 +01005 *
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License version 2 as published
8 * by the Free Software Foundation, incorporated herein by reference.
9 */
10
11#include <linux/bitops.h>
12#include <linux/delay.h>
13#include <linux/interrupt.h>
14#include <linux/pci.h>
15#include <linux/module.h>
16#include <linux/seq_file.h>
Ben Hutchings964e6132012-11-19 23:08:22 +000017#include <linux/crc32.h>
Ben Hutchings86094f72013-08-21 19:51:04 +010018#include "net_driver.h"
19#include "bitfield.h"
20#include "efx.h"
21#include "nic.h"
22#include "farch_regs.h"
Shradha Shah7fa8d542015-05-06 00:55:13 +010023#include "sriov.h"
24#include "siena_sriov.h"
Ben Hutchings86094f72013-08-21 19:51:04 +010025#include "io.h"
26#include "workarounds.h"
27
Edward Cree5a6681e2016-11-28 18:55:34 +000028/* Falcon-architecture (SFC9000-family) support */
Ben Hutchings86094f72013-08-21 19:51:04 +010029
30/**************************************************************************
31 *
32 * Configurable values
33 *
34 **************************************************************************
35 */
36
37/* This is set to 16 for a good reason. In summary, if larger than
38 * 16, the descriptor cache holds more than a default socket
39 * buffer's worth of packets (for UDP we can only have at most one
40 * socket buffer's worth outstanding). This combined with the fact
41 * that we only get 1 TX event per descriptor cache means the NIC
42 * goes idle.
43 */
44#define TX_DC_ENTRIES 16
45#define TX_DC_ENTRIES_ORDER 1
46
47#define RX_DC_ENTRIES 64
48#define RX_DC_ENTRIES_ORDER 3
49
50/* If EFX_MAX_INT_ERRORS internal errors occur within
51 * EFX_INT_ERROR_EXPIRE seconds, we consider the NIC broken and
52 * disable it.
53 */
54#define EFX_INT_ERROR_EXPIRE 3600
55#define EFX_MAX_INT_ERRORS 5
56
57/* Depth of RX flush request fifo */
58#define EFX_RX_FLUSH_COUNT 4
59
60/* Driver generated events */
61#define _EFX_CHANNEL_MAGIC_TEST 0x000101
62#define _EFX_CHANNEL_MAGIC_FILL 0x000102
63#define _EFX_CHANNEL_MAGIC_RX_DRAIN 0x000103
64#define _EFX_CHANNEL_MAGIC_TX_DRAIN 0x000104
65
66#define _EFX_CHANNEL_MAGIC(_code, _data) ((_code) << 8 | (_data))
67#define _EFX_CHANNEL_MAGIC_CODE(_magic) ((_magic) >> 8)
68
69#define EFX_CHANNEL_MAGIC_TEST(_channel) \
70 _EFX_CHANNEL_MAGIC(_EFX_CHANNEL_MAGIC_TEST, (_channel)->channel)
71#define EFX_CHANNEL_MAGIC_FILL(_rx_queue) \
72 _EFX_CHANNEL_MAGIC(_EFX_CHANNEL_MAGIC_FILL, \
73 efx_rx_queue_index(_rx_queue))
74#define EFX_CHANNEL_MAGIC_RX_DRAIN(_rx_queue) \
75 _EFX_CHANNEL_MAGIC(_EFX_CHANNEL_MAGIC_RX_DRAIN, \
76 efx_rx_queue_index(_rx_queue))
77#define EFX_CHANNEL_MAGIC_TX_DRAIN(_tx_queue) \
78 _EFX_CHANNEL_MAGIC(_EFX_CHANNEL_MAGIC_TX_DRAIN, \
79 (_tx_queue)->queue)
80
81static void efx_farch_magic_event(struct efx_channel *channel, u32 magic);
82
83/**************************************************************************
84 *
85 * Hardware access
86 *
87 **************************************************************************/
88
89static inline void efx_write_buf_tbl(struct efx_nic *efx, efx_qword_t *value,
90 unsigned int index)
91{
92 efx_sram_writeq(efx, efx->membase + efx->type->buf_tbl_base,
93 value, index);
94}
95
96static bool efx_masked_compare_oword(const efx_oword_t *a, const efx_oword_t *b,
97 const efx_oword_t *mask)
98{
99 return ((a->u64[0] ^ b->u64[0]) & mask->u64[0]) ||
100 ((a->u64[1] ^ b->u64[1]) & mask->u64[1]);
101}
102
103int efx_farch_test_registers(struct efx_nic *efx,
104 const struct efx_farch_register_test *regs,
105 size_t n_regs)
106{
Arnd Bergmann17471c72016-06-15 22:31:10 +0200107 unsigned address = 0;
108 int i, j;
Ben Hutchings86094f72013-08-21 19:51:04 +0100109 efx_oword_t mask, imask, original, reg, buf;
110
111 for (i = 0; i < n_regs; ++i) {
112 address = regs[i].address;
113 mask = imask = regs[i].mask;
114 EFX_INVERT_OWORD(imask);
115
116 efx_reado(efx, &original, address);
117
118 /* bit sweep on and off */
119 for (j = 0; j < 128; j++) {
120 if (!EFX_EXTRACT_OWORD32(mask, j, j))
121 continue;
122
123 /* Test this testable bit can be set in isolation */
124 EFX_AND_OWORD(reg, original, mask);
125 EFX_SET_OWORD32(reg, j, j, 1);
126
127 efx_writeo(efx, &reg, address);
128 efx_reado(efx, &buf, address);
129
130 if (efx_masked_compare_oword(&reg, &buf, &mask))
131 goto fail;
132
133 /* Test this testable bit can be cleared in isolation */
134 EFX_OR_OWORD(reg, original, mask);
135 EFX_SET_OWORD32(reg, j, j, 0);
136
137 efx_writeo(efx, &reg, address);
138 efx_reado(efx, &buf, address);
139
140 if (efx_masked_compare_oword(&reg, &buf, &mask))
141 goto fail;
142 }
143
144 efx_writeo(efx, &original, address);
145 }
146
147 return 0;
148
149fail:
150 netif_err(efx, hw, efx->net_dev,
151 "wrote "EFX_OWORD_FMT" read "EFX_OWORD_FMT
152 " at address 0x%x mask "EFX_OWORD_FMT"\n", EFX_OWORD_VAL(reg),
153 EFX_OWORD_VAL(buf), address, EFX_OWORD_VAL(mask));
154 return -EIO;
155}
156
157/**************************************************************************
158 *
159 * Special buffer handling
160 * Special buffers are used for event queues and the TX and RX
161 * descriptor rings.
162 *
163 *************************************************************************/
164
165/*
166 * Initialise a special buffer
167 *
168 * This will define a buffer (previously allocated via
169 * efx_alloc_special_buffer()) in the buffer table, allowing
170 * it to be used for event queues, descriptor rings etc.
171 */
172static void
173efx_init_special_buffer(struct efx_nic *efx, struct efx_special_buffer *buffer)
174{
175 efx_qword_t buf_desc;
176 unsigned int index;
177 dma_addr_t dma_addr;
178 int i;
179
Edward Creee01b16a2016-12-02 15:51:33 +0000180 EFX_WARN_ON_PARANOID(!buffer->buf.addr);
Ben Hutchings86094f72013-08-21 19:51:04 +0100181
182 /* Write buffer descriptors to NIC */
183 for (i = 0; i < buffer->entries; i++) {
184 index = buffer->index + i;
185 dma_addr = buffer->buf.dma_addr + (i * EFX_BUF_SIZE);
186 netif_dbg(efx, probe, efx->net_dev,
187 "mapping special buffer %d at %llx\n",
188 index, (unsigned long long)dma_addr);
189 EFX_POPULATE_QWORD_3(buf_desc,
190 FRF_AZ_BUF_ADR_REGION, 0,
191 FRF_AZ_BUF_ADR_FBUF, dma_addr >> 12,
192 FRF_AZ_BUF_OWNER_ID_FBUF, 0);
193 efx_write_buf_tbl(efx, &buf_desc, index);
194 }
195}
196
197/* Unmaps a buffer and clears the buffer table entries */
198static void
199efx_fini_special_buffer(struct efx_nic *efx, struct efx_special_buffer *buffer)
200{
201 efx_oword_t buf_tbl_upd;
202 unsigned int start = buffer->index;
203 unsigned int end = (buffer->index + buffer->entries - 1);
204
205 if (!buffer->entries)
206 return;
207
208 netif_dbg(efx, hw, efx->net_dev, "unmapping special buffers %d-%d\n",
209 buffer->index, buffer->index + buffer->entries - 1);
210
211 EFX_POPULATE_OWORD_4(buf_tbl_upd,
212 FRF_AZ_BUF_UPD_CMD, 0,
213 FRF_AZ_BUF_CLR_CMD, 1,
214 FRF_AZ_BUF_CLR_END_ID, end,
215 FRF_AZ_BUF_CLR_START_ID, start);
216 efx_writeo(efx, &buf_tbl_upd, FR_AZ_BUF_TBL_UPD);
217}
218
219/*
220 * Allocate a new special buffer
221 *
222 * This allocates memory for a new buffer, clears it and allocates a
223 * new buffer ID range. It does not write into the buffer table.
224 *
225 * This call will allocate 4KB buffers, since 8KB buffers can't be
226 * used for event queues and descriptor rings.
227 */
228static int efx_alloc_special_buffer(struct efx_nic *efx,
229 struct efx_special_buffer *buffer,
230 unsigned int len)
231{
Shradha Shah2dc313e2014-11-05 12:16:18 +0000232#ifdef CONFIG_SFC_SRIOV
233 struct siena_nic_data *nic_data = efx->nic_data;
234#endif
Ben Hutchings86094f72013-08-21 19:51:04 +0100235 len = ALIGN(len, EFX_BUF_SIZE);
236
237 if (efx_nic_alloc_buffer(efx, &buffer->buf, len, GFP_KERNEL))
238 return -ENOMEM;
239 buffer->entries = len / EFX_BUF_SIZE;
240 BUG_ON(buffer->buf.dma_addr & (EFX_BUF_SIZE - 1));
241
242 /* Select new buffer ID */
243 buffer->index = efx->next_buffer_table;
244 efx->next_buffer_table += buffer->entries;
245#ifdef CONFIG_SFC_SRIOV
Shradha Shah327c6852014-11-05 12:16:32 +0000246 BUG_ON(efx_siena_sriov_enabled(efx) &&
Shradha Shah2dc313e2014-11-05 12:16:18 +0000247 nic_data->vf_buftbl_base < efx->next_buffer_table);
Ben Hutchings86094f72013-08-21 19:51:04 +0100248#endif
249
250 netif_dbg(efx, probe, efx->net_dev,
251 "allocating special buffers %d-%d at %llx+%x "
252 "(virt %p phys %llx)\n", buffer->index,
253 buffer->index + buffer->entries - 1,
254 (u64)buffer->buf.dma_addr, len,
255 buffer->buf.addr, (u64)virt_to_phys(buffer->buf.addr));
256
257 return 0;
258}
259
260static void
261efx_free_special_buffer(struct efx_nic *efx, struct efx_special_buffer *buffer)
262{
263 if (!buffer->buf.addr)
264 return;
265
266 netif_dbg(efx, hw, efx->net_dev,
267 "deallocating special buffers %d-%d at %llx+%x "
268 "(virt %p phys %llx)\n", buffer->index,
269 buffer->index + buffer->entries - 1,
270 (u64)buffer->buf.dma_addr, buffer->buf.len,
271 buffer->buf.addr, (u64)virt_to_phys(buffer->buf.addr));
272
273 efx_nic_free_buffer(efx, &buffer->buf);
274 buffer->entries = 0;
275}
276
277/**************************************************************************
278 *
279 * TX path
280 *
281 **************************************************************************/
282
283/* This writes to the TX_DESC_WPTR; write pointer for TX descriptor ring */
284static inline void efx_farch_notify_tx_desc(struct efx_tx_queue *tx_queue)
285{
286 unsigned write_ptr;
287 efx_dword_t reg;
288
289 write_ptr = tx_queue->write_count & tx_queue->ptr_mask;
290 EFX_POPULATE_DWORD_1(reg, FRF_AZ_TX_DESC_WPTR_DWORD, write_ptr);
291 efx_writed_page(tx_queue->efx, &reg,
292 FR_AZ_TX_DESC_UPD_DWORD_P0, tx_queue->queue);
293}
294
295/* Write pointer and first descriptor for TX descriptor ring */
296static inline void efx_farch_push_tx_desc(struct efx_tx_queue *tx_queue,
297 const efx_qword_t *txd)
298{
299 unsigned write_ptr;
300 efx_oword_t reg;
301
302 BUILD_BUG_ON(FRF_AZ_TX_DESC_LBN != 0);
303 BUILD_BUG_ON(FR_AA_TX_DESC_UPD_KER != FR_BZ_TX_DESC_UPD_P0);
304
305 write_ptr = tx_queue->write_count & tx_queue->ptr_mask;
306 EFX_POPULATE_OWORD_2(reg, FRF_AZ_TX_DESC_PUSH_CMD, true,
307 FRF_AZ_TX_DESC_WPTR, write_ptr);
308 reg.qword[0] = *txd;
309 efx_writeo_page(tx_queue->efx, &reg,
310 FR_BZ_TX_DESC_UPD_P0, tx_queue->queue);
311}
312
313
314/* For each entry inserted into the software descriptor ring, create a
315 * descriptor in the hardware TX descriptor ring (in host memory), and
316 * write a doorbell.
317 */
318void efx_farch_tx_write(struct efx_tx_queue *tx_queue)
319{
Ben Hutchings86094f72013-08-21 19:51:04 +0100320 struct efx_tx_buffer *buffer;
321 efx_qword_t *txd;
322 unsigned write_ptr;
323 unsigned old_write_count = tx_queue->write_count;
324
Martin Habetsb2663a42015-11-02 12:51:31 +0000325 tx_queue->xmit_more_available = false;
326 if (unlikely(tx_queue->write_count == tx_queue->insert_count))
327 return;
Ben Hutchings86094f72013-08-21 19:51:04 +0100328
329 do {
330 write_ptr = tx_queue->write_count & tx_queue->ptr_mask;
331 buffer = &tx_queue->buffer[write_ptr];
332 txd = efx_tx_desc(tx_queue, write_ptr);
333 ++tx_queue->write_count;
334
Edward Creee01b16a2016-12-02 15:51:33 +0000335 EFX_WARN_ON_ONCE_PARANOID(buffer->flags & EFX_TX_BUF_OPTION);
Ben Hutchingsba8977b2013-01-08 23:43:19 +0000336
Ben Hutchings86094f72013-08-21 19:51:04 +0100337 /* Create TX descriptor ring entry */
338 BUILD_BUG_ON(EFX_TX_BUF_CONT != 1);
339 EFX_POPULATE_QWORD_4(*txd,
340 FSF_AZ_TX_KER_CONT,
341 buffer->flags & EFX_TX_BUF_CONT,
342 FSF_AZ_TX_KER_BYTE_COUNT, buffer->len,
343 FSF_AZ_TX_KER_BUF_REGION, 0,
344 FSF_AZ_TX_KER_BUF_ADDR, buffer->dma_addr);
345 } while (tx_queue->write_count != tx_queue->insert_count);
346
347 wmb(); /* Ensure descriptors are written before they are fetched */
348
349 if (efx_nic_may_push_tx_desc(tx_queue, old_write_count)) {
350 txd = efx_tx_desc(tx_queue,
351 old_write_count & tx_queue->ptr_mask);
352 efx_farch_push_tx_desc(tx_queue, txd);
353 ++tx_queue->pushes;
354 } else {
355 efx_farch_notify_tx_desc(tx_queue);
356 }
357}
358
Bert Kenwarde9117e52016-11-17 10:51:54 +0000359unsigned int efx_farch_tx_limit_len(struct efx_tx_queue *tx_queue,
360 dma_addr_t dma_addr, unsigned int len)
361{
362 /* Don't cross 4K boundaries with descriptors. */
363 unsigned int limit = (~dma_addr & (EFX_PAGE_SIZE - 1)) + 1;
364
365 len = min(limit, len);
366
Bert Kenwarde9117e52016-11-17 10:51:54 +0000367 return len;
368}
369
370
Ben Hutchings86094f72013-08-21 19:51:04 +0100371/* Allocate hardware resources for a TX queue */
372int efx_farch_tx_probe(struct efx_tx_queue *tx_queue)
373{
374 struct efx_nic *efx = tx_queue->efx;
375 unsigned entries;
376
377 entries = tx_queue->ptr_mask + 1;
378 return efx_alloc_special_buffer(efx, &tx_queue->txd,
379 entries * sizeof(efx_qword_t));
380}
381
382void efx_farch_tx_init(struct efx_tx_queue *tx_queue)
383{
Edward Cree5a6681e2016-11-28 18:55:34 +0000384 int csum = tx_queue->queue & EFX_TXQ_TYPE_OFFLOAD;
Ben Hutchings86094f72013-08-21 19:51:04 +0100385 struct efx_nic *efx = tx_queue->efx;
386 efx_oword_t reg;
387
388 /* Pin TX descriptor ring */
389 efx_init_special_buffer(efx, &tx_queue->txd);
390
391 /* Push TX descriptor ring to card */
392 EFX_POPULATE_OWORD_10(reg,
393 FRF_AZ_TX_DESCQ_EN, 1,
394 FRF_AZ_TX_ISCSI_DDIG_EN, 0,
395 FRF_AZ_TX_ISCSI_HDIG_EN, 0,
396 FRF_AZ_TX_DESCQ_BUF_BASE_ID, tx_queue->txd.index,
397 FRF_AZ_TX_DESCQ_EVQ_ID,
398 tx_queue->channel->channel,
399 FRF_AZ_TX_DESCQ_OWNER_ID, 0,
400 FRF_AZ_TX_DESCQ_LABEL, tx_queue->queue,
401 FRF_AZ_TX_DESCQ_SIZE,
402 __ffs(tx_queue->txd.entries),
403 FRF_AZ_TX_DESCQ_TYPE, 0,
404 FRF_BZ_TX_NON_IP_DROP_DIS, 1);
405
Edward Cree5a6681e2016-11-28 18:55:34 +0000406 EFX_SET_OWORD_FIELD(reg, FRF_BZ_TX_IP_CHKSM_DIS, !csum);
407 EFX_SET_OWORD_FIELD(reg, FRF_BZ_TX_TCP_CHKSM_DIS, !csum);
Ben Hutchings86094f72013-08-21 19:51:04 +0100408
409 efx_writeo_table(efx, &reg, efx->type->txd_ptr_tbl_base,
410 tx_queue->queue);
411
Edward Cree5a6681e2016-11-28 18:55:34 +0000412 EFX_POPULATE_OWORD_1(reg,
413 FRF_BZ_TX_PACE,
414 (tx_queue->queue & EFX_TXQ_TYPE_HIGHPRI) ?
415 FFE_BZ_TX_PACE_OFF :
416 FFE_BZ_TX_PACE_RESERVED);
417 efx_writeo_table(efx, &reg, FR_BZ_TX_PACE_TBL, tx_queue->queue);
Ben Hutchings86094f72013-08-21 19:51:04 +0100418}
419
420static void efx_farch_flush_tx_queue(struct efx_tx_queue *tx_queue)
421{
422 struct efx_nic *efx = tx_queue->efx;
423 efx_oword_t tx_flush_descq;
424
425 WARN_ON(atomic_read(&tx_queue->flush_outstanding));
426 atomic_set(&tx_queue->flush_outstanding, 1);
427
428 EFX_POPULATE_OWORD_2(tx_flush_descq,
429 FRF_AZ_TX_FLUSH_DESCQ_CMD, 1,
430 FRF_AZ_TX_FLUSH_DESCQ, tx_queue->queue);
431 efx_writeo(efx, &tx_flush_descq, FR_AZ_TX_FLUSH_DESCQ);
432}
433
434void efx_farch_tx_fini(struct efx_tx_queue *tx_queue)
435{
436 struct efx_nic *efx = tx_queue->efx;
437 efx_oword_t tx_desc_ptr;
438
439 /* Remove TX descriptor ring from card */
440 EFX_ZERO_OWORD(tx_desc_ptr);
441 efx_writeo_table(efx, &tx_desc_ptr, efx->type->txd_ptr_tbl_base,
442 tx_queue->queue);
443
444 /* Unpin TX descriptor ring */
445 efx_fini_special_buffer(efx, &tx_queue->txd);
446}
447
448/* Free buffers backing TX queue */
449void efx_farch_tx_remove(struct efx_tx_queue *tx_queue)
450{
451 efx_free_special_buffer(tx_queue->efx, &tx_queue->txd);
452}
453
454/**************************************************************************
455 *
456 * RX path
457 *
458 **************************************************************************/
459
460/* This creates an entry in the RX descriptor queue */
461static inline void
462efx_farch_build_rx_desc(struct efx_rx_queue *rx_queue, unsigned index)
463{
464 struct efx_rx_buffer *rx_buf;
465 efx_qword_t *rxd;
466
467 rxd = efx_rx_desc(rx_queue, index);
468 rx_buf = efx_rx_buffer(rx_queue, index);
469 EFX_POPULATE_QWORD_3(*rxd,
470 FSF_AZ_RX_KER_BUF_SIZE,
471 rx_buf->len -
472 rx_queue->efx->type->rx_buffer_padding,
473 FSF_AZ_RX_KER_BUF_REGION, 0,
474 FSF_AZ_RX_KER_BUF_ADDR, rx_buf->dma_addr);
475}
476
477/* This writes to the RX_DESC_WPTR register for the specified receive
478 * descriptor ring.
479 */
480void efx_farch_rx_write(struct efx_rx_queue *rx_queue)
481{
482 struct efx_nic *efx = rx_queue->efx;
483 efx_dword_t reg;
484 unsigned write_ptr;
485
486 while (rx_queue->notified_count != rx_queue->added_count) {
487 efx_farch_build_rx_desc(
488 rx_queue,
489 rx_queue->notified_count & rx_queue->ptr_mask);
490 ++rx_queue->notified_count;
491 }
492
493 wmb();
494 write_ptr = rx_queue->added_count & rx_queue->ptr_mask;
495 EFX_POPULATE_DWORD_1(reg, FRF_AZ_RX_DESC_WPTR_DWORD, write_ptr);
496 efx_writed_page(efx, &reg, FR_AZ_RX_DESC_UPD_DWORD_P0,
497 efx_rx_queue_index(rx_queue));
498}
499
500int efx_farch_rx_probe(struct efx_rx_queue *rx_queue)
501{
502 struct efx_nic *efx = rx_queue->efx;
503 unsigned entries;
504
505 entries = rx_queue->ptr_mask + 1;
506 return efx_alloc_special_buffer(efx, &rx_queue->rxd,
507 entries * sizeof(efx_qword_t));
508}
509
510void efx_farch_rx_init(struct efx_rx_queue *rx_queue)
511{
512 efx_oword_t rx_desc_ptr;
513 struct efx_nic *efx = rx_queue->efx;
Ben Hutchings86094f72013-08-21 19:51:04 +0100514 bool jumbo_en;
515
Edward Cree5a6681e2016-11-28 18:55:34 +0000516 /* For kernel-mode queues in Siena, the JUMBO flag enables scatter. */
517 jumbo_en = efx->rx_scatter;
Ben Hutchings86094f72013-08-21 19:51:04 +0100518
519 netif_dbg(efx, hw, efx->net_dev,
520 "RX queue %d ring in special buffers %d-%d\n",
521 efx_rx_queue_index(rx_queue), rx_queue->rxd.index,
522 rx_queue->rxd.index + rx_queue->rxd.entries - 1);
523
524 rx_queue->scatter_n = 0;
525
526 /* Pin RX descriptor ring */
527 efx_init_special_buffer(efx, &rx_queue->rxd);
528
529 /* Push RX descriptor ring to card */
530 EFX_POPULATE_OWORD_10(rx_desc_ptr,
Edward Cree5a6681e2016-11-28 18:55:34 +0000531 FRF_AZ_RX_ISCSI_DDIG_EN, true,
532 FRF_AZ_RX_ISCSI_HDIG_EN, true,
Ben Hutchings86094f72013-08-21 19:51:04 +0100533 FRF_AZ_RX_DESCQ_BUF_BASE_ID, rx_queue->rxd.index,
534 FRF_AZ_RX_DESCQ_EVQ_ID,
535 efx_rx_queue_channel(rx_queue)->channel,
536 FRF_AZ_RX_DESCQ_OWNER_ID, 0,
537 FRF_AZ_RX_DESCQ_LABEL,
538 efx_rx_queue_index(rx_queue),
539 FRF_AZ_RX_DESCQ_SIZE,
540 __ffs(rx_queue->rxd.entries),
541 FRF_AZ_RX_DESCQ_TYPE, 0 /* kernel queue */ ,
542 FRF_AZ_RX_DESCQ_JUMBO, jumbo_en,
543 FRF_AZ_RX_DESCQ_EN, 1);
544 efx_writeo_table(efx, &rx_desc_ptr, efx->type->rxd_ptr_tbl_base,
545 efx_rx_queue_index(rx_queue));
546}
547
548static void efx_farch_flush_rx_queue(struct efx_rx_queue *rx_queue)
549{
550 struct efx_nic *efx = rx_queue->efx;
551 efx_oword_t rx_flush_descq;
552
553 EFX_POPULATE_OWORD_2(rx_flush_descq,
554 FRF_AZ_RX_FLUSH_DESCQ_CMD, 1,
555 FRF_AZ_RX_FLUSH_DESCQ,
556 efx_rx_queue_index(rx_queue));
557 efx_writeo(efx, &rx_flush_descq, FR_AZ_RX_FLUSH_DESCQ);
558}
559
560void efx_farch_rx_fini(struct efx_rx_queue *rx_queue)
561{
562 efx_oword_t rx_desc_ptr;
563 struct efx_nic *efx = rx_queue->efx;
564
565 /* Remove RX descriptor ring from card */
566 EFX_ZERO_OWORD(rx_desc_ptr);
567 efx_writeo_table(efx, &rx_desc_ptr, efx->type->rxd_ptr_tbl_base,
568 efx_rx_queue_index(rx_queue));
569
570 /* Unpin RX descriptor ring */
571 efx_fini_special_buffer(efx, &rx_queue->rxd);
572}
573
574/* Free buffers backing RX queue */
575void efx_farch_rx_remove(struct efx_rx_queue *rx_queue)
576{
577 efx_free_special_buffer(rx_queue->efx, &rx_queue->rxd);
578}
579
580/**************************************************************************
581 *
582 * Flush handling
583 *
584 **************************************************************************/
585
586/* efx_farch_flush_queues() must be woken up when all flushes are completed,
587 * or more RX flushes can be kicked off.
588 */
589static bool efx_farch_flush_wake(struct efx_nic *efx)
590{
591 /* Ensure that all updates are visible to efx_farch_flush_queues() */
592 smp_mb();
593
Alexandre Rames3881d8a2013-06-10 11:03:21 +0100594 return (atomic_read(&efx->active_queues) == 0 ||
Ben Hutchings86094f72013-08-21 19:51:04 +0100595 (atomic_read(&efx->rxq_flush_outstanding) < EFX_RX_FLUSH_COUNT
596 && atomic_read(&efx->rxq_flush_pending) > 0));
597}
598
599static bool efx_check_tx_flush_complete(struct efx_nic *efx)
600{
601 bool i = true;
602 efx_oword_t txd_ptr_tbl;
603 struct efx_channel *channel;
604 struct efx_tx_queue *tx_queue;
605
606 efx_for_each_channel(channel, efx) {
607 efx_for_each_channel_tx_queue(tx_queue, channel) {
608 efx_reado_table(efx, &txd_ptr_tbl,
609 FR_BZ_TX_DESC_PTR_TBL, tx_queue->queue);
610 if (EFX_OWORD_FIELD(txd_ptr_tbl,
611 FRF_AZ_TX_DESCQ_FLUSH) ||
612 EFX_OWORD_FIELD(txd_ptr_tbl,
613 FRF_AZ_TX_DESCQ_EN)) {
614 netif_dbg(efx, hw, efx->net_dev,
615 "flush did not complete on TXQ %d\n",
616 tx_queue->queue);
617 i = false;
618 } else if (atomic_cmpxchg(&tx_queue->flush_outstanding,
619 1, 0)) {
620 /* The flush is complete, but we didn't
621 * receive a flush completion event
622 */
623 netif_dbg(efx, hw, efx->net_dev,
624 "flush complete on TXQ %d, so drain "
625 "the queue\n", tx_queue->queue);
Alexandre Rames3881d8a2013-06-10 11:03:21 +0100626 /* Don't need to increment active_queues as it
Ben Hutchings86094f72013-08-21 19:51:04 +0100627 * has already been incremented for the queues
628 * which did not drain
629 */
630 efx_farch_magic_event(channel,
631 EFX_CHANNEL_MAGIC_TX_DRAIN(
632 tx_queue));
633 }
634 }
635 }
636
637 return i;
638}
639
640/* Flush all the transmit queues, and continue flushing receive queues until
Joe Perchesdbedd442015-03-06 20:49:12 -0800641 * they're all flushed. Wait for the DRAIN events to be received so that there
Ben Hutchings86094f72013-08-21 19:51:04 +0100642 * are no more RX and TX events left on any channel. */
643static int efx_farch_do_flush(struct efx_nic *efx)
644{
645 unsigned timeout = msecs_to_jiffies(5000); /* 5s for all flushes and drains */
646 struct efx_channel *channel;
647 struct efx_rx_queue *rx_queue;
648 struct efx_tx_queue *tx_queue;
649 int rc = 0;
650
651 efx_for_each_channel(channel, efx) {
652 efx_for_each_channel_tx_queue(tx_queue, channel) {
Ben Hutchings86094f72013-08-21 19:51:04 +0100653 efx_farch_flush_tx_queue(tx_queue);
654 }
655 efx_for_each_channel_rx_queue(rx_queue, channel) {
Ben Hutchings86094f72013-08-21 19:51:04 +0100656 rx_queue->flush_pending = true;
657 atomic_inc(&efx->rxq_flush_pending);
658 }
659 }
660
Alexandre Rames3881d8a2013-06-10 11:03:21 +0100661 while (timeout && atomic_read(&efx->active_queues) > 0) {
Ben Hutchings86094f72013-08-21 19:51:04 +0100662 /* If SRIOV is enabled, then offload receive queue flushing to
663 * the firmware (though we will still have to poll for
664 * completion). If that fails, fall back to the old scheme.
665 */
Shradha Shah327c6852014-11-05 12:16:32 +0000666 if (efx_siena_sriov_enabled(efx)) {
Ben Hutchings86094f72013-08-21 19:51:04 +0100667 rc = efx_mcdi_flush_rxqs(efx);
668 if (!rc)
669 goto wait;
670 }
671
672 /* The hardware supports four concurrent rx flushes, each of
673 * which may need to be retried if there is an outstanding
674 * descriptor fetch
675 */
676 efx_for_each_channel(channel, efx) {
677 efx_for_each_channel_rx_queue(rx_queue, channel) {
678 if (atomic_read(&efx->rxq_flush_outstanding) >=
679 EFX_RX_FLUSH_COUNT)
680 break;
681
682 if (rx_queue->flush_pending) {
683 rx_queue->flush_pending = false;
684 atomic_dec(&efx->rxq_flush_pending);
685 atomic_inc(&efx->rxq_flush_outstanding);
686 efx_farch_flush_rx_queue(rx_queue);
687 }
688 }
689 }
690
691 wait:
692 timeout = wait_event_timeout(efx->flush_wq,
693 efx_farch_flush_wake(efx),
694 timeout);
695 }
696
Alexandre Rames3881d8a2013-06-10 11:03:21 +0100697 if (atomic_read(&efx->active_queues) &&
Ben Hutchings86094f72013-08-21 19:51:04 +0100698 !efx_check_tx_flush_complete(efx)) {
699 netif_err(efx, hw, efx->net_dev, "failed to flush %d queues "
Alexandre Rames3881d8a2013-06-10 11:03:21 +0100700 "(rx %d+%d)\n", atomic_read(&efx->active_queues),
Ben Hutchings86094f72013-08-21 19:51:04 +0100701 atomic_read(&efx->rxq_flush_outstanding),
702 atomic_read(&efx->rxq_flush_pending));
703 rc = -ETIMEDOUT;
704
Alexandre Rames3881d8a2013-06-10 11:03:21 +0100705 atomic_set(&efx->active_queues, 0);
Ben Hutchings86094f72013-08-21 19:51:04 +0100706 atomic_set(&efx->rxq_flush_pending, 0);
707 atomic_set(&efx->rxq_flush_outstanding, 0);
708 }
709
710 return rc;
711}
712
713int efx_farch_fini_dmaq(struct efx_nic *efx)
714{
715 struct efx_channel *channel;
716 struct efx_tx_queue *tx_queue;
717 struct efx_rx_queue *rx_queue;
718 int rc = 0;
719
720 /* Do not attempt to write to the NIC during EEH recovery */
721 if (efx->state != STATE_RECOVERY) {
722 /* Only perform flush if DMA is enabled */
723 if (efx->pci_dev->is_busmaster) {
724 efx->type->prepare_flush(efx);
725 rc = efx_farch_do_flush(efx);
726 efx->type->finish_flush(efx);
727 }
728
729 efx_for_each_channel(channel, efx) {
730 efx_for_each_channel_rx_queue(rx_queue, channel)
731 efx_farch_rx_fini(rx_queue);
732 efx_for_each_channel_tx_queue(tx_queue, channel)
733 efx_farch_tx_fini(tx_queue);
734 }
735 }
736
737 return rc;
738}
739
Edward Creee2835462014-04-16 19:27:48 +0100740/* Reset queue and flush accounting after FLR
741 *
742 * One possible cause of FLR recovery is that DMA may be failing (eg. if bus
743 * mastering was disabled), in which case we don't receive (RXQ) flush
744 * completion events. This means that efx->rxq_flush_outstanding remained at 4
745 * after the FLR; also, efx->active_queues was non-zero (as no flush completion
746 * events were received, and we didn't go through efx_check_tx_flush_complete())
747 * If we don't fix this up, on the next call to efx_realloc_channels() we won't
748 * flush any RX queues because efx->rxq_flush_outstanding is at the limit of 4
749 * for batched flush requests; and the efx->active_queues gets messed up because
750 * we keep incrementing for the newly initialised queues, but it never went to
751 * zero previously. Then we get a timeout every time we try to restart the
752 * queues, as it doesn't go back to zero when we should be flushing the queues.
753 */
754void efx_farch_finish_flr(struct efx_nic *efx)
755{
756 atomic_set(&efx->rxq_flush_pending, 0);
757 atomic_set(&efx->rxq_flush_outstanding, 0);
758 atomic_set(&efx->active_queues, 0);
759}
760
761
Ben Hutchings86094f72013-08-21 19:51:04 +0100762/**************************************************************************
763 *
764 * Event queue processing
765 * Event queues are processed by per-channel tasklets.
766 *
767 **************************************************************************/
768
769/* Update a channel's event queue's read pointer (RPTR) register
770 *
771 * This writes the EVQ_RPTR_REG register for the specified channel's
772 * event queue.
773 */
774void efx_farch_ev_read_ack(struct efx_channel *channel)
775{
776 efx_dword_t reg;
777 struct efx_nic *efx = channel->efx;
778
779 EFX_POPULATE_DWORD_1(reg, FRF_AZ_EVQ_RPTR,
780 channel->eventq_read_ptr & channel->eventq_mask);
781
782 /* For Falcon A1, EVQ_RPTR_KER is documented as having a step size
783 * of 4 bytes, but it is really 16 bytes just like later revisions.
784 */
785 efx_writed(efx, &reg,
786 efx->type->evq_rptr_tbl_base +
787 FR_BZ_EVQ_RPTR_STEP * channel->channel);
788}
789
790/* Use HW to insert a SW defined event */
791void efx_farch_generate_event(struct efx_nic *efx, unsigned int evq,
792 efx_qword_t *event)
793{
794 efx_oword_t drv_ev_reg;
795
796 BUILD_BUG_ON(FRF_AZ_DRV_EV_DATA_LBN != 0 ||
797 FRF_AZ_DRV_EV_DATA_WIDTH != 64);
798 drv_ev_reg.u32[0] = event->u32[0];
799 drv_ev_reg.u32[1] = event->u32[1];
800 drv_ev_reg.u32[2] = 0;
801 drv_ev_reg.u32[3] = 0;
802 EFX_SET_OWORD_FIELD(drv_ev_reg, FRF_AZ_DRV_EV_QID, evq);
803 efx_writeo(efx, &drv_ev_reg, FR_AZ_DRV_EV);
804}
805
806static void efx_farch_magic_event(struct efx_channel *channel, u32 magic)
807{
808 efx_qword_t event;
809
810 EFX_POPULATE_QWORD_2(event, FSF_AZ_EV_CODE,
811 FSE_AZ_EV_CODE_DRV_GEN_EV,
812 FSF_AZ_DRV_GEN_EV_MAGIC, magic);
813 efx_farch_generate_event(channel->efx, channel->channel, &event);
814}
815
816/* Handle a transmit completion event
817 *
818 * The NIC batches TX completion events; the message we receive is of
819 * the form "complete all TX events up to this index".
820 */
821static int
822efx_farch_handle_tx_event(struct efx_channel *channel, efx_qword_t *event)
823{
824 unsigned int tx_ev_desc_ptr;
825 unsigned int tx_ev_q_label;
826 struct efx_tx_queue *tx_queue;
827 struct efx_nic *efx = channel->efx;
828 int tx_packets = 0;
829
830 if (unlikely(ACCESS_ONCE(efx->reset_pending)))
831 return 0;
832
833 if (likely(EFX_QWORD_FIELD(*event, FSF_AZ_TX_EV_COMP))) {
834 /* Transmit completion */
835 tx_ev_desc_ptr = EFX_QWORD_FIELD(*event, FSF_AZ_TX_EV_DESC_PTR);
836 tx_ev_q_label = EFX_QWORD_FIELD(*event, FSF_AZ_TX_EV_Q_LABEL);
837 tx_queue = efx_channel_get_tx_queue(
838 channel, tx_ev_q_label % EFX_TXQ_TYPES);
839 tx_packets = ((tx_ev_desc_ptr - tx_queue->read_count) &
840 tx_queue->ptr_mask);
841 efx_xmit_done(tx_queue, tx_ev_desc_ptr);
842 } else if (EFX_QWORD_FIELD(*event, FSF_AZ_TX_EV_WQ_FF_FULL)) {
843 /* Rewrite the FIFO write pointer */
844 tx_ev_q_label = EFX_QWORD_FIELD(*event, FSF_AZ_TX_EV_Q_LABEL);
845 tx_queue = efx_channel_get_tx_queue(
846 channel, tx_ev_q_label % EFX_TXQ_TYPES);
847
848 netif_tx_lock(efx->net_dev);
849 efx_farch_notify_tx_desc(tx_queue);
850 netif_tx_unlock(efx->net_dev);
Ben Hutchingsab3b8252012-10-05 19:31:02 +0100851 } else if (EFX_QWORD_FIELD(*event, FSF_AZ_TX_EV_PKT_ERR)) {
Alexandre Rames3de82b92013-06-13 11:36:15 +0100852 efx_schedule_reset(efx, RESET_TYPE_DMA_ERROR);
Ben Hutchings86094f72013-08-21 19:51:04 +0100853 } else {
854 netif_err(efx, tx_err, efx->net_dev,
855 "channel %d unexpected TX event "
856 EFX_QWORD_FMT"\n", channel->channel,
857 EFX_QWORD_VAL(*event));
858 }
859
860 return tx_packets;
861}
862
863/* Detect errors included in the rx_evt_pkt_ok bit. */
864static u16 efx_farch_handle_rx_not_ok(struct efx_rx_queue *rx_queue,
865 const efx_qword_t *event)
866{
867 struct efx_channel *channel = efx_rx_queue_channel(rx_queue);
868 struct efx_nic *efx = rx_queue->efx;
869 bool rx_ev_buf_owner_id_err, rx_ev_ip_hdr_chksum_err;
870 bool rx_ev_tcp_udp_chksum_err, rx_ev_eth_crc_err;
Edward Cree5a6681e2016-11-28 18:55:34 +0000871 bool rx_ev_frm_trunc, rx_ev_tobe_disc;
Ben Hutchings86094f72013-08-21 19:51:04 +0100872 bool rx_ev_other_err, rx_ev_pause_frm;
873 bool rx_ev_hdr_type, rx_ev_mcast_pkt;
874 unsigned rx_ev_pkt_type;
875
876 rx_ev_hdr_type = EFX_QWORD_FIELD(*event, FSF_AZ_RX_EV_HDR_TYPE);
877 rx_ev_mcast_pkt = EFX_QWORD_FIELD(*event, FSF_AZ_RX_EV_MCAST_PKT);
878 rx_ev_tobe_disc = EFX_QWORD_FIELD(*event, FSF_AZ_RX_EV_TOBE_DISC);
879 rx_ev_pkt_type = EFX_QWORD_FIELD(*event, FSF_AZ_RX_EV_PKT_TYPE);
880 rx_ev_buf_owner_id_err = EFX_QWORD_FIELD(*event,
881 FSF_AZ_RX_EV_BUF_OWNER_ID_ERR);
882 rx_ev_ip_hdr_chksum_err = EFX_QWORD_FIELD(*event,
883 FSF_AZ_RX_EV_IP_HDR_CHKSUM_ERR);
884 rx_ev_tcp_udp_chksum_err = EFX_QWORD_FIELD(*event,
885 FSF_AZ_RX_EV_TCP_UDP_CHKSUM_ERR);
886 rx_ev_eth_crc_err = EFX_QWORD_FIELD(*event, FSF_AZ_RX_EV_ETH_CRC_ERR);
887 rx_ev_frm_trunc = EFX_QWORD_FIELD(*event, FSF_AZ_RX_EV_FRM_TRUNC);
Ben Hutchings86094f72013-08-21 19:51:04 +0100888 rx_ev_pause_frm = EFX_QWORD_FIELD(*event, FSF_AZ_RX_EV_PAUSE_FRM_ERR);
889
890 /* Every error apart from tobe_disc and pause_frm */
Edward Cree5a6681e2016-11-28 18:55:34 +0000891 rx_ev_other_err = (rx_ev_tcp_udp_chksum_err |
Ben Hutchings86094f72013-08-21 19:51:04 +0100892 rx_ev_buf_owner_id_err | rx_ev_eth_crc_err |
893 rx_ev_frm_trunc | rx_ev_ip_hdr_chksum_err);
894
895 /* Count errors that are not in MAC stats. Ignore expected
896 * checksum errors during self-test. */
897 if (rx_ev_frm_trunc)
898 ++channel->n_rx_frm_trunc;
899 else if (rx_ev_tobe_disc)
900 ++channel->n_rx_tobe_disc;
901 else if (!efx->loopback_selftest) {
902 if (rx_ev_ip_hdr_chksum_err)
903 ++channel->n_rx_ip_hdr_chksum_err;
904 else if (rx_ev_tcp_udp_chksum_err)
905 ++channel->n_rx_tcp_udp_chksum_err;
906 }
907
908 /* TOBE_DISC is expected on unicast mismatches; don't print out an
909 * error message. FRM_TRUNC indicates RXDP dropped the packet due
910 * to a FIFO overflow.
911 */
912#ifdef DEBUG
913 if (rx_ev_other_err && net_ratelimit()) {
914 netif_dbg(efx, rx_err, efx->net_dev,
915 " RX queue %d unexpected RX event "
Edward Creeedd96fa2016-12-01 17:00:54 +0000916 EFX_QWORD_FMT "%s%s%s%s%s%s%s\n",
Ben Hutchings86094f72013-08-21 19:51:04 +0100917 efx_rx_queue_index(rx_queue), EFX_QWORD_VAL(*event),
918 rx_ev_buf_owner_id_err ? " [OWNER_ID_ERR]" : "",
919 rx_ev_ip_hdr_chksum_err ?
920 " [IP_HDR_CHKSUM_ERR]" : "",
921 rx_ev_tcp_udp_chksum_err ?
922 " [TCP_UDP_CHKSUM_ERR]" : "",
923 rx_ev_eth_crc_err ? " [ETH_CRC_ERR]" : "",
924 rx_ev_frm_trunc ? " [FRM_TRUNC]" : "",
Ben Hutchings86094f72013-08-21 19:51:04 +0100925 rx_ev_tobe_disc ? " [TOBE_DISC]" : "",
926 rx_ev_pause_frm ? " [PAUSE]" : "");
927 }
928#endif
929
Edward Cree69787292017-10-31 14:29:47 +0000930 if (efx->net_dev->features & NETIF_F_RXALL)
931 /* don't discard frame for CRC error */
932 rx_ev_eth_crc_err = false;
933
Ben Hutchings86094f72013-08-21 19:51:04 +0100934 /* The frame must be discarded if any of these are true. */
Edward Cree5a6681e2016-11-28 18:55:34 +0000935 return (rx_ev_eth_crc_err | rx_ev_frm_trunc |
Ben Hutchings86094f72013-08-21 19:51:04 +0100936 rx_ev_tobe_disc | rx_ev_pause_frm) ?
937 EFX_RX_PKT_DISCARD : 0;
938}
939
940/* Handle receive events that are not in-order. Return true if this
941 * can be handled as a partial packet discard, false if it's more
942 * serious.
943 */
944static bool
945efx_farch_handle_rx_bad_index(struct efx_rx_queue *rx_queue, unsigned index)
946{
947 struct efx_channel *channel = efx_rx_queue_channel(rx_queue);
948 struct efx_nic *efx = rx_queue->efx;
949 unsigned expected, dropped;
950
951 if (rx_queue->scatter_n &&
952 index == ((rx_queue->removed_count + rx_queue->scatter_n - 1) &
953 rx_queue->ptr_mask)) {
954 ++channel->n_rx_nodesc_trunc;
955 return true;
956 }
957
958 expected = rx_queue->removed_count & rx_queue->ptr_mask;
959 dropped = (index - expected) & rx_queue->ptr_mask;
960 netif_info(efx, rx_err, efx->net_dev,
961 "dropped %d events (index=%d expected=%d)\n",
962 dropped, index, expected);
963
Edward Cree5a6681e2016-11-28 18:55:34 +0000964 efx_schedule_reset(efx, RESET_TYPE_DISABLE);
Ben Hutchings86094f72013-08-21 19:51:04 +0100965 return false;
966}
967
968/* Handle a packet received event
969 *
970 * The NIC gives a "discard" flag if it's a unicast packet with the
971 * wrong destination address
972 * Also "is multicast" and "matches multicast filter" flags can be used to
973 * discard non-matching multicast packets.
974 */
975static void
976efx_farch_handle_rx_event(struct efx_channel *channel, const efx_qword_t *event)
977{
978 unsigned int rx_ev_desc_ptr, rx_ev_byte_cnt;
979 unsigned int rx_ev_hdr_type, rx_ev_mcast_pkt;
980 unsigned expected_ptr;
981 bool rx_ev_pkt_ok, rx_ev_sop, rx_ev_cont;
982 u16 flags;
983 struct efx_rx_queue *rx_queue;
984 struct efx_nic *efx = channel->efx;
985
986 if (unlikely(ACCESS_ONCE(efx->reset_pending)))
987 return;
988
989 rx_ev_cont = EFX_QWORD_FIELD(*event, FSF_AZ_RX_EV_JUMBO_CONT);
990 rx_ev_sop = EFX_QWORD_FIELD(*event, FSF_AZ_RX_EV_SOP);
991 WARN_ON(EFX_QWORD_FIELD(*event, FSF_AZ_RX_EV_Q_LABEL) !=
992 channel->channel);
993
994 rx_queue = efx_channel_get_rx_queue(channel);
995
996 rx_ev_desc_ptr = EFX_QWORD_FIELD(*event, FSF_AZ_RX_EV_DESC_PTR);
997 expected_ptr = ((rx_queue->removed_count + rx_queue->scatter_n) &
998 rx_queue->ptr_mask);
999
1000 /* Check for partial drops and other errors */
1001 if (unlikely(rx_ev_desc_ptr != expected_ptr) ||
1002 unlikely(rx_ev_sop != (rx_queue->scatter_n == 0))) {
1003 if (rx_ev_desc_ptr != expected_ptr &&
1004 !efx_farch_handle_rx_bad_index(rx_queue, rx_ev_desc_ptr))
1005 return;
1006
1007 /* Discard all pending fragments */
1008 if (rx_queue->scatter_n) {
1009 efx_rx_packet(
1010 rx_queue,
1011 rx_queue->removed_count & rx_queue->ptr_mask,
1012 rx_queue->scatter_n, 0, EFX_RX_PKT_DISCARD);
1013 rx_queue->removed_count += rx_queue->scatter_n;
1014 rx_queue->scatter_n = 0;
1015 }
1016
1017 /* Return if there is no new fragment */
1018 if (rx_ev_desc_ptr != expected_ptr)
1019 return;
1020
1021 /* Discard new fragment if not SOP */
1022 if (!rx_ev_sop) {
1023 efx_rx_packet(
1024 rx_queue,
1025 rx_queue->removed_count & rx_queue->ptr_mask,
1026 1, 0, EFX_RX_PKT_DISCARD);
1027 ++rx_queue->removed_count;
1028 return;
1029 }
1030 }
1031
1032 ++rx_queue->scatter_n;
1033 if (rx_ev_cont)
1034 return;
1035
1036 rx_ev_byte_cnt = EFX_QWORD_FIELD(*event, FSF_AZ_RX_EV_BYTE_CNT);
1037 rx_ev_pkt_ok = EFX_QWORD_FIELD(*event, FSF_AZ_RX_EV_PKT_OK);
1038 rx_ev_hdr_type = EFX_QWORD_FIELD(*event, FSF_AZ_RX_EV_HDR_TYPE);
1039
1040 if (likely(rx_ev_pkt_ok)) {
1041 /* If packet is marked as OK then we can rely on the
1042 * hardware checksum and classification.
1043 */
1044 flags = 0;
1045 switch (rx_ev_hdr_type) {
1046 case FSE_CZ_RX_EV_HDR_TYPE_IPV4V6_TCP:
1047 flags |= EFX_RX_PKT_TCP;
1048 /* fall through */
1049 case FSE_CZ_RX_EV_HDR_TYPE_IPV4V6_UDP:
1050 flags |= EFX_RX_PKT_CSUMMED;
1051 /* fall through */
1052 case FSE_CZ_RX_EV_HDR_TYPE_IPV4V6_OTHER:
1053 case FSE_AZ_RX_EV_HDR_TYPE_OTHER:
1054 break;
1055 }
1056 } else {
1057 flags = efx_farch_handle_rx_not_ok(rx_queue, event);
1058 }
1059
1060 /* Detect multicast packets that didn't match the filter */
1061 rx_ev_mcast_pkt = EFX_QWORD_FIELD(*event, FSF_AZ_RX_EV_MCAST_PKT);
1062 if (rx_ev_mcast_pkt) {
1063 unsigned int rx_ev_mcast_hash_match =
1064 EFX_QWORD_FIELD(*event, FSF_AZ_RX_EV_MCAST_HASH_MATCH);
1065
1066 if (unlikely(!rx_ev_mcast_hash_match)) {
1067 ++channel->n_rx_mcast_mismatch;
1068 flags |= EFX_RX_PKT_DISCARD;
1069 }
1070 }
1071
1072 channel->irq_mod_score += 2;
1073
1074 /* Handle received packet */
1075 efx_rx_packet(rx_queue,
1076 rx_queue->removed_count & rx_queue->ptr_mask,
1077 rx_queue->scatter_n, rx_ev_byte_cnt, flags);
1078 rx_queue->removed_count += rx_queue->scatter_n;
1079 rx_queue->scatter_n = 0;
1080}
1081
1082/* If this flush done event corresponds to a &struct efx_tx_queue, then
1083 * send an %EFX_CHANNEL_MAGIC_TX_DRAIN event to drain the event queue
1084 * of all transmit completions.
1085 */
1086static void
1087efx_farch_handle_tx_flush_done(struct efx_nic *efx, efx_qword_t *event)
1088{
1089 struct efx_tx_queue *tx_queue;
1090 int qid;
1091
1092 qid = EFX_QWORD_FIELD(*event, FSF_AZ_DRIVER_EV_SUBDATA);
1093 if (qid < EFX_TXQ_TYPES * efx->n_tx_channels) {
1094 tx_queue = efx_get_tx_queue(efx, qid / EFX_TXQ_TYPES,
1095 qid % EFX_TXQ_TYPES);
1096 if (atomic_cmpxchg(&tx_queue->flush_outstanding, 1, 0)) {
1097 efx_farch_magic_event(tx_queue->channel,
1098 EFX_CHANNEL_MAGIC_TX_DRAIN(tx_queue));
1099 }
1100 }
1101}
1102
1103/* If this flush done event corresponds to a &struct efx_rx_queue: If the flush
Joe Perchesdbedd442015-03-06 20:49:12 -08001104 * was successful then send an %EFX_CHANNEL_MAGIC_RX_DRAIN, otherwise add
Ben Hutchings86094f72013-08-21 19:51:04 +01001105 * the RX queue back to the mask of RX queues in need of flushing.
1106 */
1107static void
1108efx_farch_handle_rx_flush_done(struct efx_nic *efx, efx_qword_t *event)
1109{
1110 struct efx_channel *channel;
1111 struct efx_rx_queue *rx_queue;
1112 int qid;
1113 bool failed;
1114
1115 qid = EFX_QWORD_FIELD(*event, FSF_AZ_DRIVER_EV_RX_DESCQ_ID);
1116 failed = EFX_QWORD_FIELD(*event, FSF_AZ_DRIVER_EV_RX_FLUSH_FAIL);
1117 if (qid >= efx->n_channels)
1118 return;
1119 channel = efx_get_channel(efx, qid);
1120 if (!efx_channel_has_rx_queue(channel))
1121 return;
1122 rx_queue = efx_channel_get_rx_queue(channel);
1123
1124 if (failed) {
1125 netif_info(efx, hw, efx->net_dev,
1126 "RXQ %d flush retry\n", qid);
1127 rx_queue->flush_pending = true;
1128 atomic_inc(&efx->rxq_flush_pending);
1129 } else {
1130 efx_farch_magic_event(efx_rx_queue_channel(rx_queue),
1131 EFX_CHANNEL_MAGIC_RX_DRAIN(rx_queue));
1132 }
1133 atomic_dec(&efx->rxq_flush_outstanding);
1134 if (efx_farch_flush_wake(efx))
1135 wake_up(&efx->flush_wq);
1136}
1137
1138static void
1139efx_farch_handle_drain_event(struct efx_channel *channel)
1140{
1141 struct efx_nic *efx = channel->efx;
1142
Alexandre Rames3881d8a2013-06-10 11:03:21 +01001143 WARN_ON(atomic_read(&efx->active_queues) == 0);
1144 atomic_dec(&efx->active_queues);
Ben Hutchings86094f72013-08-21 19:51:04 +01001145 if (efx_farch_flush_wake(efx))
1146 wake_up(&efx->flush_wq);
1147}
1148
1149static void efx_farch_handle_generated_event(struct efx_channel *channel,
1150 efx_qword_t *event)
1151{
1152 struct efx_nic *efx = channel->efx;
1153 struct efx_rx_queue *rx_queue =
1154 efx_channel_has_rx_queue(channel) ?
1155 efx_channel_get_rx_queue(channel) : NULL;
1156 unsigned magic, code;
1157
1158 magic = EFX_QWORD_FIELD(*event, FSF_AZ_DRV_GEN_EV_MAGIC);
1159 code = _EFX_CHANNEL_MAGIC_CODE(magic);
1160
1161 if (magic == EFX_CHANNEL_MAGIC_TEST(channel)) {
1162 channel->event_test_cpu = raw_smp_processor_id();
1163 } else if (rx_queue && magic == EFX_CHANNEL_MAGIC_FILL(rx_queue)) {
1164 /* The queue must be empty, so we won't receive any rx
1165 * events, so efx_process_channel() won't refill the
1166 * queue. Refill it here */
Jon Coopercce28792013-10-02 11:04:14 +01001167 efx_fast_push_rx_descriptors(rx_queue, true);
Ben Hutchings86094f72013-08-21 19:51:04 +01001168 } else if (rx_queue && magic == EFX_CHANNEL_MAGIC_RX_DRAIN(rx_queue)) {
1169 efx_farch_handle_drain_event(channel);
1170 } else if (code == _EFX_CHANNEL_MAGIC_TX_DRAIN) {
1171 efx_farch_handle_drain_event(channel);
1172 } else {
1173 netif_dbg(efx, hw, efx->net_dev, "channel %d received "
1174 "generated event "EFX_QWORD_FMT"\n",
1175 channel->channel, EFX_QWORD_VAL(*event));
1176 }
1177}
1178
1179static void
1180efx_farch_handle_driver_event(struct efx_channel *channel, efx_qword_t *event)
1181{
1182 struct efx_nic *efx = channel->efx;
1183 unsigned int ev_sub_code;
1184 unsigned int ev_sub_data;
1185
1186 ev_sub_code = EFX_QWORD_FIELD(*event, FSF_AZ_DRIVER_EV_SUBCODE);
1187 ev_sub_data = EFX_QWORD_FIELD(*event, FSF_AZ_DRIVER_EV_SUBDATA);
1188
1189 switch (ev_sub_code) {
1190 case FSE_AZ_TX_DESCQ_FLS_DONE_EV:
1191 netif_vdbg(efx, hw, efx->net_dev, "channel %d TXQ %d flushed\n",
1192 channel->channel, ev_sub_data);
1193 efx_farch_handle_tx_flush_done(efx, event);
Shradha Shah7fa8d542015-05-06 00:55:13 +01001194#ifdef CONFIG_SFC_SRIOV
Shradha Shah327c6852014-11-05 12:16:32 +00001195 efx_siena_sriov_tx_flush_done(efx, event);
Shradha Shah7fa8d542015-05-06 00:55:13 +01001196#endif
Ben Hutchings86094f72013-08-21 19:51:04 +01001197 break;
1198 case FSE_AZ_RX_DESCQ_FLS_DONE_EV:
1199 netif_vdbg(efx, hw, efx->net_dev, "channel %d RXQ %d flushed\n",
1200 channel->channel, ev_sub_data);
1201 efx_farch_handle_rx_flush_done(efx, event);
Shradha Shah7fa8d542015-05-06 00:55:13 +01001202#ifdef CONFIG_SFC_SRIOV
Shradha Shah327c6852014-11-05 12:16:32 +00001203 efx_siena_sriov_rx_flush_done(efx, event);
Shradha Shah7fa8d542015-05-06 00:55:13 +01001204#endif
Ben Hutchings86094f72013-08-21 19:51:04 +01001205 break;
1206 case FSE_AZ_EVQ_INIT_DONE_EV:
1207 netif_dbg(efx, hw, efx->net_dev,
1208 "channel %d EVQ %d initialised\n",
1209 channel->channel, ev_sub_data);
1210 break;
1211 case FSE_AZ_SRM_UPD_DONE_EV:
1212 netif_vdbg(efx, hw, efx->net_dev,
1213 "channel %d SRAM update done\n", channel->channel);
1214 break;
1215 case FSE_AZ_WAKE_UP_EV:
1216 netif_vdbg(efx, hw, efx->net_dev,
1217 "channel %d RXQ %d wakeup event\n",
1218 channel->channel, ev_sub_data);
1219 break;
1220 case FSE_AZ_TIMER_EV:
1221 netif_vdbg(efx, hw, efx->net_dev,
1222 "channel %d RX queue %d timer expired\n",
1223 channel->channel, ev_sub_data);
1224 break;
1225 case FSE_AA_RX_RECOVER_EV:
1226 netif_err(efx, rx_err, efx->net_dev,
1227 "channel %d seen DRIVER RX_RESET event. "
1228 "Resetting.\n", channel->channel);
1229 atomic_inc(&efx->rx_reset);
Edward Cree5a6681e2016-11-28 18:55:34 +00001230 efx_schedule_reset(efx, RESET_TYPE_DISABLE);
Ben Hutchings86094f72013-08-21 19:51:04 +01001231 break;
1232 case FSE_BZ_RX_DSC_ERROR_EV:
1233 if (ev_sub_data < EFX_VI_BASE) {
1234 netif_err(efx, rx_err, efx->net_dev,
1235 "RX DMA Q %d reports descriptor fetch error."
1236 " RX Q %d is disabled.\n", ev_sub_data,
1237 ev_sub_data);
Alexandre Rames3de82b92013-06-13 11:36:15 +01001238 efx_schedule_reset(efx, RESET_TYPE_DMA_ERROR);
Shradha Shah7fa8d542015-05-06 00:55:13 +01001239 }
1240#ifdef CONFIG_SFC_SRIOV
1241 else
Shradha Shah327c6852014-11-05 12:16:32 +00001242 efx_siena_sriov_desc_fetch_err(efx, ev_sub_data);
Shradha Shah7fa8d542015-05-06 00:55:13 +01001243#endif
Ben Hutchings86094f72013-08-21 19:51:04 +01001244 break;
1245 case FSE_BZ_TX_DSC_ERROR_EV:
1246 if (ev_sub_data < EFX_VI_BASE) {
1247 netif_err(efx, tx_err, efx->net_dev,
1248 "TX DMA Q %d reports descriptor fetch error."
1249 " TX Q %d is disabled.\n", ev_sub_data,
1250 ev_sub_data);
Alexandre Rames3de82b92013-06-13 11:36:15 +01001251 efx_schedule_reset(efx, RESET_TYPE_DMA_ERROR);
Shradha Shah7fa8d542015-05-06 00:55:13 +01001252 }
1253#ifdef CONFIG_SFC_SRIOV
1254 else
Shradha Shah327c6852014-11-05 12:16:32 +00001255 efx_siena_sriov_desc_fetch_err(efx, ev_sub_data);
Shradha Shah7fa8d542015-05-06 00:55:13 +01001256#endif
Ben Hutchings86094f72013-08-21 19:51:04 +01001257 break;
1258 default:
1259 netif_vdbg(efx, hw, efx->net_dev,
1260 "channel %d unknown driver event code %d "
1261 "data %04x\n", channel->channel, ev_sub_code,
1262 ev_sub_data);
1263 break;
1264 }
1265}
1266
1267int efx_farch_ev_process(struct efx_channel *channel, int budget)
1268{
1269 struct efx_nic *efx = channel->efx;
1270 unsigned int read_ptr;
1271 efx_qword_t event, *p_event;
1272 int ev_code;
1273 int tx_packets = 0;
1274 int spent = 0;
1275
Eric W. Biederman75363a42014-03-14 18:11:22 -07001276 if (budget <= 0)
1277 return spent;
1278
Ben Hutchings86094f72013-08-21 19:51:04 +01001279 read_ptr = channel->eventq_read_ptr;
1280
1281 for (;;) {
1282 p_event = efx_event(channel, read_ptr);
1283 event = *p_event;
1284
1285 if (!efx_event_present(&event))
1286 /* End of events */
1287 break;
1288
1289 netif_vdbg(channel->efx, intr, channel->efx->net_dev,
1290 "channel %d event is "EFX_QWORD_FMT"\n",
1291 channel->channel, EFX_QWORD_VAL(event));
1292
1293 /* Clear this event by marking it all ones */
1294 EFX_SET_QWORD(*p_event);
1295
1296 ++read_ptr;
1297
1298 ev_code = EFX_QWORD_FIELD(event, FSF_AZ_EV_CODE);
1299
1300 switch (ev_code) {
1301 case FSE_AZ_EV_CODE_RX_EV:
1302 efx_farch_handle_rx_event(channel, &event);
1303 if (++spent == budget)
1304 goto out;
1305 break;
1306 case FSE_AZ_EV_CODE_TX_EV:
1307 tx_packets += efx_farch_handle_tx_event(channel,
1308 &event);
1309 if (tx_packets > efx->txq_entries) {
1310 spent = budget;
1311 goto out;
1312 }
1313 break;
1314 case FSE_AZ_EV_CODE_DRV_GEN_EV:
1315 efx_farch_handle_generated_event(channel, &event);
1316 break;
1317 case FSE_AZ_EV_CODE_DRIVER_EV:
1318 efx_farch_handle_driver_event(channel, &event);
1319 break;
Shradha Shah7fa8d542015-05-06 00:55:13 +01001320#ifdef CONFIG_SFC_SRIOV
Ben Hutchings86094f72013-08-21 19:51:04 +01001321 case FSE_CZ_EV_CODE_USER_EV:
Shradha Shah327c6852014-11-05 12:16:32 +00001322 efx_siena_sriov_event(channel, &event);
Ben Hutchings86094f72013-08-21 19:51:04 +01001323 break;
Shradha Shah7fa8d542015-05-06 00:55:13 +01001324#endif
Ben Hutchings86094f72013-08-21 19:51:04 +01001325 case FSE_CZ_EV_CODE_MCDI_EV:
1326 efx_mcdi_process_event(channel, &event);
1327 break;
1328 case FSE_AZ_EV_CODE_GLOBAL_EV:
1329 if (efx->type->handle_global_event &&
1330 efx->type->handle_global_event(channel, &event))
1331 break;
1332 /* else fall through */
1333 default:
1334 netif_err(channel->efx, hw, channel->efx->net_dev,
1335 "channel %d unknown event type %d (data "
1336 EFX_QWORD_FMT ")\n", channel->channel,
1337 ev_code, EFX_QWORD_VAL(event));
1338 }
1339 }
1340
1341out:
1342 channel->eventq_read_ptr = read_ptr;
1343 return spent;
1344}
1345
1346/* Allocate buffer table entries for event queue */
1347int efx_farch_ev_probe(struct efx_channel *channel)
1348{
1349 struct efx_nic *efx = channel->efx;
1350 unsigned entries;
1351
1352 entries = channel->eventq_mask + 1;
1353 return efx_alloc_special_buffer(efx, &channel->eventq,
1354 entries * sizeof(efx_qword_t));
1355}
1356
Jon Cooper261e4d92013-04-15 18:51:54 +01001357int efx_farch_ev_init(struct efx_channel *channel)
Ben Hutchings86094f72013-08-21 19:51:04 +01001358{
1359 efx_oword_t reg;
1360 struct efx_nic *efx = channel->efx;
1361
1362 netif_dbg(efx, hw, efx->net_dev,
1363 "channel %d event queue in special buffers %d-%d\n",
1364 channel->channel, channel->eventq.index,
1365 channel->eventq.index + channel->eventq.entries - 1);
1366
Edward Cree5a6681e2016-11-28 18:55:34 +00001367 EFX_POPULATE_OWORD_3(reg,
1368 FRF_CZ_TIMER_Q_EN, 1,
1369 FRF_CZ_HOST_NOTIFY_MODE, 0,
1370 FRF_CZ_TIMER_MODE, FFE_CZ_TIMER_MODE_DIS);
1371 efx_writeo_table(efx, &reg, FR_BZ_TIMER_TBL, channel->channel);
Ben Hutchings86094f72013-08-21 19:51:04 +01001372
1373 /* Pin event queue buffer */
1374 efx_init_special_buffer(efx, &channel->eventq);
1375
1376 /* Fill event queue with all ones (i.e. empty events) */
1377 memset(channel->eventq.buf.addr, 0xff, channel->eventq.buf.len);
1378
1379 /* Push event queue to card */
1380 EFX_POPULATE_OWORD_3(reg,
1381 FRF_AZ_EVQ_EN, 1,
1382 FRF_AZ_EVQ_SIZE, __ffs(channel->eventq.entries),
1383 FRF_AZ_EVQ_BUF_BASE_ID, channel->eventq.index);
1384 efx_writeo_table(efx, &reg, efx->type->evq_ptr_tbl_base,
1385 channel->channel);
1386
Jon Cooper261e4d92013-04-15 18:51:54 +01001387 return 0;
Ben Hutchings86094f72013-08-21 19:51:04 +01001388}
1389
1390void efx_farch_ev_fini(struct efx_channel *channel)
1391{
1392 efx_oword_t reg;
1393 struct efx_nic *efx = channel->efx;
1394
1395 /* Remove event queue from card */
1396 EFX_ZERO_OWORD(reg);
1397 efx_writeo_table(efx, &reg, efx->type->evq_ptr_tbl_base,
1398 channel->channel);
Edward Cree5a6681e2016-11-28 18:55:34 +00001399 efx_writeo_table(efx, &reg, FR_BZ_TIMER_TBL, channel->channel);
Ben Hutchings86094f72013-08-21 19:51:04 +01001400
1401 /* Unpin event queue */
1402 efx_fini_special_buffer(efx, &channel->eventq);
1403}
1404
1405/* Free buffers backing event queue */
1406void efx_farch_ev_remove(struct efx_channel *channel)
1407{
1408 efx_free_special_buffer(channel->efx, &channel->eventq);
1409}
1410
1411
1412void efx_farch_ev_test_generate(struct efx_channel *channel)
1413{
1414 efx_farch_magic_event(channel, EFX_CHANNEL_MAGIC_TEST(channel));
1415}
1416
1417void efx_farch_rx_defer_refill(struct efx_rx_queue *rx_queue)
1418{
1419 efx_farch_magic_event(efx_rx_queue_channel(rx_queue),
1420 EFX_CHANNEL_MAGIC_FILL(rx_queue));
1421}
1422
1423/**************************************************************************
1424 *
1425 * Hardware interrupts
1426 * The hardware interrupt handler does very little work; all the event
1427 * queue processing is carried out by per-channel tasklets.
1428 *
1429 **************************************************************************/
1430
1431/* Enable/disable/generate interrupts */
1432static inline void efx_farch_interrupts(struct efx_nic *efx,
1433 bool enabled, bool force)
1434{
1435 efx_oword_t int_en_reg_ker;
1436
1437 EFX_POPULATE_OWORD_3(int_en_reg_ker,
1438 FRF_AZ_KER_INT_LEVE_SEL, efx->irq_level,
1439 FRF_AZ_KER_INT_KER, force,
1440 FRF_AZ_DRV_INT_EN_KER, enabled);
1441 efx_writeo(efx, &int_en_reg_ker, FR_AZ_INT_EN_KER);
1442}
1443
1444void efx_farch_irq_enable_master(struct efx_nic *efx)
1445{
1446 EFX_ZERO_OWORD(*((efx_oword_t *) efx->irq_status.addr));
1447 wmb(); /* Ensure interrupt vector is clear before interrupts enabled */
1448
1449 efx_farch_interrupts(efx, true, false);
1450}
1451
1452void efx_farch_irq_disable_master(struct efx_nic *efx)
1453{
1454 /* Disable interrupts */
1455 efx_farch_interrupts(efx, false, false);
1456}
1457
1458/* Generate a test interrupt
1459 * Interrupt must already have been enabled, otherwise nasty things
1460 * may happen.
1461 */
Jon Cooper942e2982016-08-26 15:13:30 +01001462int efx_farch_irq_test_generate(struct efx_nic *efx)
Ben Hutchings86094f72013-08-21 19:51:04 +01001463{
1464 efx_farch_interrupts(efx, true, true);
Jon Cooper942e2982016-08-26 15:13:30 +01001465 return 0;
Ben Hutchings86094f72013-08-21 19:51:04 +01001466}
1467
1468/* Process a fatal interrupt
1469 * Disable bus mastering ASAP and schedule a reset
1470 */
1471irqreturn_t efx_farch_fatal_interrupt(struct efx_nic *efx)
1472{
Ben Hutchings86094f72013-08-21 19:51:04 +01001473 efx_oword_t *int_ker = efx->irq_status.addr;
1474 efx_oword_t fatal_intr;
1475 int error, mem_perr;
1476
1477 efx_reado(efx, &fatal_intr, FR_AZ_FATAL_INTR_KER);
1478 error = EFX_OWORD_FIELD(fatal_intr, FRF_AZ_FATAL_INTR);
1479
1480 netif_err(efx, hw, efx->net_dev, "SYSTEM ERROR "EFX_OWORD_FMT" status "
1481 EFX_OWORD_FMT ": %s\n", EFX_OWORD_VAL(*int_ker),
1482 EFX_OWORD_VAL(fatal_intr),
1483 error ? "disabling bus mastering" : "no recognised error");
1484
1485 /* If this is a memory parity error dump which blocks are offending */
1486 mem_perr = (EFX_OWORD_FIELD(fatal_intr, FRF_AZ_MEM_PERR_INT_KER) ||
1487 EFX_OWORD_FIELD(fatal_intr, FRF_AZ_SRM_PERR_INT_KER));
1488 if (mem_perr) {
1489 efx_oword_t reg;
1490 efx_reado(efx, &reg, FR_AZ_MEM_STAT);
1491 netif_err(efx, hw, efx->net_dev,
1492 "SYSTEM ERROR: memory parity error "EFX_OWORD_FMT"\n",
1493 EFX_OWORD_VAL(reg));
1494 }
1495
1496 /* Disable both devices */
1497 pci_clear_master(efx->pci_dev);
Ben Hutchings86094f72013-08-21 19:51:04 +01001498 efx_farch_irq_disable_master(efx);
1499
1500 /* Count errors and reset or disable the NIC accordingly */
1501 if (efx->int_error_count == 0 ||
1502 time_after(jiffies, efx->int_error_expire)) {
1503 efx->int_error_count = 0;
1504 efx->int_error_expire =
1505 jiffies + EFX_INT_ERROR_EXPIRE * HZ;
1506 }
1507 if (++efx->int_error_count < EFX_MAX_INT_ERRORS) {
1508 netif_err(efx, hw, efx->net_dev,
1509 "SYSTEM ERROR - reset scheduled\n");
1510 efx_schedule_reset(efx, RESET_TYPE_INT_ERROR);
1511 } else {
1512 netif_err(efx, hw, efx->net_dev,
1513 "SYSTEM ERROR - max number of errors seen."
1514 "NIC will be disabled\n");
1515 efx_schedule_reset(efx, RESET_TYPE_DISABLE);
1516 }
1517
1518 return IRQ_HANDLED;
1519}
1520
1521/* Handle a legacy interrupt
1522 * Acknowledges the interrupt and schedule event queue processing.
1523 */
1524irqreturn_t efx_farch_legacy_interrupt(int irq, void *dev_id)
1525{
1526 struct efx_nic *efx = dev_id;
1527 bool soft_enabled = ACCESS_ONCE(efx->irq_soft_enabled);
1528 efx_oword_t *int_ker = efx->irq_status.addr;
1529 irqreturn_t result = IRQ_NONE;
1530 struct efx_channel *channel;
1531 efx_dword_t reg;
1532 u32 queues;
1533 int syserr;
1534
1535 /* Read the ISR which also ACKs the interrupts */
1536 efx_readd(efx, &reg, FR_BZ_INT_ISR0);
1537 queues = EFX_EXTRACT_DWORD(reg, 0, 31);
1538
1539 /* Legacy interrupts are disabled too late by the EEH kernel
1540 * code. Disable them earlier.
1541 * If an EEH error occurred, the read will have returned all ones.
1542 */
1543 if (EFX_DWORD_IS_ALL_ONES(reg) && efx_try_recovery(efx) &&
1544 !efx->eeh_disabled_legacy_irq) {
1545 disable_irq_nosync(efx->legacy_irq);
1546 efx->eeh_disabled_legacy_irq = true;
1547 }
1548
1549 /* Handle non-event-queue sources */
1550 if (queues & (1U << efx->irq_level) && soft_enabled) {
1551 syserr = EFX_OWORD_FIELD(*int_ker, FSF_AZ_NET_IVEC_FATAL_INT);
1552 if (unlikely(syserr))
1553 return efx_farch_fatal_interrupt(efx);
1554 efx->last_irq_cpu = raw_smp_processor_id();
1555 }
1556
1557 if (queues != 0) {
Ben Hutchingsab3b8252012-10-05 19:31:02 +01001558 efx->irq_zero_count = 0;
Ben Hutchings86094f72013-08-21 19:51:04 +01001559
1560 /* Schedule processing of any interrupting queues */
1561 if (likely(soft_enabled)) {
1562 efx_for_each_channel(channel, efx) {
1563 if (queues & 1)
1564 efx_schedule_channel_irq(channel);
1565 queues >>= 1;
1566 }
1567 }
1568 result = IRQ_HANDLED;
1569
Ben Hutchingsab3b8252012-10-05 19:31:02 +01001570 } else {
Ben Hutchings86094f72013-08-21 19:51:04 +01001571 efx_qword_t *event;
1572
Ben Hutchingsab3b8252012-10-05 19:31:02 +01001573 /* Legacy ISR read can return zero once (SF bug 15783) */
1574
Ben Hutchings86094f72013-08-21 19:51:04 +01001575 /* We can't return IRQ_HANDLED more than once on seeing ISR=0
1576 * because this might be a shared interrupt. */
1577 if (efx->irq_zero_count++ == 0)
1578 result = IRQ_HANDLED;
1579
1580 /* Ensure we schedule or rearm all event queues */
1581 if (likely(soft_enabled)) {
1582 efx_for_each_channel(channel, efx) {
1583 event = efx_event(channel,
1584 channel->eventq_read_ptr);
1585 if (efx_event_present(event))
1586 efx_schedule_channel_irq(channel);
1587 else
1588 efx_farch_ev_read_ack(channel);
1589 }
1590 }
1591 }
1592
1593 if (result == IRQ_HANDLED)
1594 netif_vdbg(efx, intr, efx->net_dev,
1595 "IRQ %d on CPU %d status " EFX_DWORD_FMT "\n",
1596 irq, raw_smp_processor_id(), EFX_DWORD_VAL(reg));
1597
1598 return result;
1599}
1600
1601/* Handle an MSI interrupt
1602 *
1603 * Handle an MSI hardware interrupt. This routine schedules event
1604 * queue processing. No interrupt acknowledgement cycle is necessary.
1605 * Also, we never need to check that the interrupt is for us, since
1606 * MSI interrupts cannot be shared.
1607 */
1608irqreturn_t efx_farch_msi_interrupt(int irq, void *dev_id)
1609{
1610 struct efx_msi_context *context = dev_id;
1611 struct efx_nic *efx = context->efx;
1612 efx_oword_t *int_ker = efx->irq_status.addr;
1613 int syserr;
1614
1615 netif_vdbg(efx, intr, efx->net_dev,
1616 "IRQ %d on CPU %d status " EFX_OWORD_FMT "\n",
1617 irq, raw_smp_processor_id(), EFX_OWORD_VAL(*int_ker));
1618
1619 if (!likely(ACCESS_ONCE(efx->irq_soft_enabled)))
1620 return IRQ_HANDLED;
1621
1622 /* Handle non-event-queue sources */
1623 if (context->index == efx->irq_level) {
1624 syserr = EFX_OWORD_FIELD(*int_ker, FSF_AZ_NET_IVEC_FATAL_INT);
1625 if (unlikely(syserr))
1626 return efx_farch_fatal_interrupt(efx);
1627 efx->last_irq_cpu = raw_smp_processor_id();
1628 }
1629
1630 /* Schedule processing of the channel */
1631 efx_schedule_channel_irq(efx->channel[context->index]);
1632
1633 return IRQ_HANDLED;
1634}
1635
Ben Hutchings86094f72013-08-21 19:51:04 +01001636/* Setup RSS indirection table.
1637 * This maps from the hash value of the packet to RXQ
1638 */
1639void efx_farch_rx_push_indir_table(struct efx_nic *efx)
1640{
1641 size_t i = 0;
1642 efx_dword_t dword;
1643
Ben Hutchings86094f72013-08-21 19:51:04 +01001644 BUILD_BUG_ON(ARRAY_SIZE(efx->rx_indir_table) !=
1645 FR_BZ_RX_INDIRECTION_TBL_ROWS);
1646
1647 for (i = 0; i < FR_BZ_RX_INDIRECTION_TBL_ROWS; i++) {
1648 EFX_POPULATE_DWORD_1(dword, FRF_BZ_IT_QUEUE,
1649 efx->rx_indir_table[i]);
1650 efx_writed(efx, &dword,
1651 FR_BZ_RX_INDIRECTION_TBL +
1652 FR_BZ_RX_INDIRECTION_TBL_STEP * i);
1653 }
1654}
1655
Edward Creea707d182017-01-17 12:02:12 +00001656void efx_farch_rx_pull_indir_table(struct efx_nic *efx)
1657{
1658 size_t i = 0;
1659 efx_dword_t dword;
1660
1661 BUILD_BUG_ON(ARRAY_SIZE(efx->rx_indir_table) !=
1662 FR_BZ_RX_INDIRECTION_TBL_ROWS);
1663
1664 for (i = 0; i < FR_BZ_RX_INDIRECTION_TBL_ROWS; i++) {
1665 efx_readd(efx, &dword,
1666 FR_BZ_RX_INDIRECTION_TBL +
1667 FR_BZ_RX_INDIRECTION_TBL_STEP * i);
1668 efx->rx_indir_table[i] = EFX_DWORD_FIELD(dword, FRF_BZ_IT_QUEUE);
1669 }
1670}
1671
Ben Hutchings86094f72013-08-21 19:51:04 +01001672/* Looks at available SRAM resources and works out how many queues we
1673 * can support, and where things like descriptor caches should live.
1674 *
1675 * SRAM is split up as follows:
1676 * 0 buftbl entries for channels
1677 * efx->vf_buftbl_base buftbl entries for SR-IOV
1678 * efx->rx_dc_base RX descriptor caches
1679 * efx->tx_dc_base TX descriptor caches
1680 */
1681void efx_farch_dimension_resources(struct efx_nic *efx, unsigned sram_lim_qw)
1682{
1683 unsigned vi_count, buftbl_min;
1684
Shradha Shah2dc313e2014-11-05 12:16:18 +00001685#ifdef CONFIG_SFC_SRIOV
1686 struct siena_nic_data *nic_data = efx->nic_data;
1687#endif
1688
Ben Hutchings86094f72013-08-21 19:51:04 +01001689 /* Account for the buffer table entries backing the datapath channels
1690 * and the descriptor caches for those channels.
1691 */
1692 buftbl_min = ((efx->n_rx_channels * EFX_MAX_DMAQ_SIZE +
1693 efx->n_tx_channels * EFX_TXQ_TYPES * EFX_MAX_DMAQ_SIZE +
1694 efx->n_channels * EFX_MAX_EVQ_SIZE)
1695 * sizeof(efx_qword_t) / EFX_BUF_SIZE);
1696 vi_count = max(efx->n_channels, efx->n_tx_channels * EFX_TXQ_TYPES);
1697
1698#ifdef CONFIG_SFC_SRIOV
Shradha Shah7fa8d542015-05-06 00:55:13 +01001699 if (efx->type->sriov_wanted) {
1700 if (efx->type->sriov_wanted(efx)) {
1701 unsigned vi_dc_entries, buftbl_free;
1702 unsigned entries_per_vf, vf_limit;
Ben Hutchings86094f72013-08-21 19:51:04 +01001703
Shradha Shah7fa8d542015-05-06 00:55:13 +01001704 nic_data->vf_buftbl_base = buftbl_min;
Ben Hutchings86094f72013-08-21 19:51:04 +01001705
Shradha Shah7fa8d542015-05-06 00:55:13 +01001706 vi_dc_entries = RX_DC_ENTRIES + TX_DC_ENTRIES;
1707 vi_count = max(vi_count, EFX_VI_BASE);
1708 buftbl_free = (sram_lim_qw - buftbl_min -
1709 vi_count * vi_dc_entries);
Ben Hutchings86094f72013-08-21 19:51:04 +01001710
Shradha Shah7fa8d542015-05-06 00:55:13 +01001711 entries_per_vf = ((vi_dc_entries +
1712 EFX_VF_BUFTBL_PER_VI) *
1713 efx_vf_size(efx));
1714 vf_limit = min(buftbl_free / entries_per_vf,
1715 (1024U - EFX_VI_BASE) >> efx->vi_scale);
Ben Hutchings86094f72013-08-21 19:51:04 +01001716
Shradha Shah7fa8d542015-05-06 00:55:13 +01001717 if (efx->vf_count > vf_limit) {
1718 netif_err(efx, probe, efx->net_dev,
1719 "Reducing VF count from from %d to %d\n",
1720 efx->vf_count, vf_limit);
1721 efx->vf_count = vf_limit;
1722 }
1723 vi_count += efx->vf_count * efx_vf_size(efx);
Ben Hutchings86094f72013-08-21 19:51:04 +01001724 }
Ben Hutchings86094f72013-08-21 19:51:04 +01001725 }
1726#endif
1727
1728 efx->tx_dc_base = sram_lim_qw - vi_count * TX_DC_ENTRIES;
1729 efx->rx_dc_base = efx->tx_dc_base - vi_count * RX_DC_ENTRIES;
1730}
1731
1732u32 efx_farch_fpga_ver(struct efx_nic *efx)
1733{
1734 efx_oword_t altera_build;
1735 efx_reado(efx, &altera_build, FR_AZ_ALTERA_BUILD);
1736 return EFX_OWORD_FIELD(altera_build, FRF_AZ_ALTERA_BUILD_VER);
1737}
1738
1739void efx_farch_init_common(struct efx_nic *efx)
1740{
1741 efx_oword_t temp;
1742
1743 /* Set positions of descriptor caches in SRAM. */
1744 EFX_POPULATE_OWORD_1(temp, FRF_AZ_SRM_TX_DC_BASE_ADR, efx->tx_dc_base);
1745 efx_writeo(efx, &temp, FR_AZ_SRM_TX_DC_CFG);
1746 EFX_POPULATE_OWORD_1(temp, FRF_AZ_SRM_RX_DC_BASE_ADR, efx->rx_dc_base);
1747 efx_writeo(efx, &temp, FR_AZ_SRM_RX_DC_CFG);
1748
1749 /* Set TX descriptor cache size. */
1750 BUILD_BUG_ON(TX_DC_ENTRIES != (8 << TX_DC_ENTRIES_ORDER));
1751 EFX_POPULATE_OWORD_1(temp, FRF_AZ_TX_DC_SIZE, TX_DC_ENTRIES_ORDER);
1752 efx_writeo(efx, &temp, FR_AZ_TX_DC_CFG);
1753
1754 /* Set RX descriptor cache size. Set low watermark to size-8, as
1755 * this allows most efficient prefetching.
1756 */
1757 BUILD_BUG_ON(RX_DC_ENTRIES != (8 << RX_DC_ENTRIES_ORDER));
1758 EFX_POPULATE_OWORD_1(temp, FRF_AZ_RX_DC_SIZE, RX_DC_ENTRIES_ORDER);
1759 efx_writeo(efx, &temp, FR_AZ_RX_DC_CFG);
1760 EFX_POPULATE_OWORD_1(temp, FRF_AZ_RX_DC_PF_LWM, RX_DC_ENTRIES - 8);
1761 efx_writeo(efx, &temp, FR_AZ_RX_DC_PF_WM);
1762
1763 /* Program INT_KER address */
1764 EFX_POPULATE_OWORD_2(temp,
1765 FRF_AZ_NORM_INT_VEC_DIS_KER,
1766 EFX_INT_MODE_USE_MSI(efx),
1767 FRF_AZ_INT_ADR_KER, efx->irq_status.dma_addr);
1768 efx_writeo(efx, &temp, FR_AZ_INT_ADR_KER);
1769
1770 if (EFX_WORKAROUND_17213(efx) && !EFX_INT_MODE_USE_MSI(efx))
1771 /* Use an interrupt level unused by event queues */
1772 efx->irq_level = 0x1f;
1773 else
1774 /* Use a valid MSI-X vector */
1775 efx->irq_level = 0;
1776
1777 /* Enable all the genuinely fatal interrupts. (They are still
1778 * masked by the overall interrupt mask, controlled by
1779 * falcon_interrupts()).
1780 *
1781 * Note: All other fatal interrupts are enabled
1782 */
1783 EFX_POPULATE_OWORD_3(temp,
1784 FRF_AZ_ILL_ADR_INT_KER_EN, 1,
1785 FRF_AZ_RBUF_OWN_INT_KER_EN, 1,
1786 FRF_AZ_TBUF_OWN_INT_KER_EN, 1);
Edward Cree5a6681e2016-11-28 18:55:34 +00001787 EFX_SET_OWORD_FIELD(temp, FRF_CZ_SRAM_PERR_INT_P_KER_EN, 1);
Ben Hutchings86094f72013-08-21 19:51:04 +01001788 EFX_INVERT_OWORD(temp);
1789 efx_writeo(efx, &temp, FR_AZ_FATAL_INTR_KER);
1790
Ben Hutchings86094f72013-08-21 19:51:04 +01001791 /* Disable the ugly timer-based TX DMA backoff and allow TX DMA to be
1792 * controlled by the RX FIFO fill level. Set arbitration to one pkt/Q.
1793 */
1794 efx_reado(efx, &temp, FR_AZ_TX_RESERVED);
1795 EFX_SET_OWORD_FIELD(temp, FRF_AZ_TX_RX_SPACER, 0xfe);
1796 EFX_SET_OWORD_FIELD(temp, FRF_AZ_TX_RX_SPACER_EN, 1);
1797 EFX_SET_OWORD_FIELD(temp, FRF_AZ_TX_ONE_PKT_PER_Q, 1);
1798 EFX_SET_OWORD_FIELD(temp, FRF_AZ_TX_PUSH_EN, 1);
1799 EFX_SET_OWORD_FIELD(temp, FRF_AZ_TX_DIS_NON_IP_EV, 1);
1800 /* Enable SW_EV to inherit in char driver - assume harmless here */
1801 EFX_SET_OWORD_FIELD(temp, FRF_AZ_TX_SOFT_EVT_EN, 1);
1802 /* Prefetch threshold 2 => fetch when descriptor cache half empty */
1803 EFX_SET_OWORD_FIELD(temp, FRF_AZ_TX_PREF_THRESHOLD, 2);
1804 /* Disable hardware watchdog which can misfire */
1805 EFX_SET_OWORD_FIELD(temp, FRF_AZ_TX_PREF_WD_TMR, 0x3fffff);
1806 /* Squash TX of packets of 16 bytes or less */
Edward Cree5a6681e2016-11-28 18:55:34 +00001807 EFX_SET_OWORD_FIELD(temp, FRF_BZ_TX_FLUSH_MIN_LEN_EN, 1);
Ben Hutchings86094f72013-08-21 19:51:04 +01001808 efx_writeo(efx, &temp, FR_AZ_TX_RESERVED);
1809
Edward Cree5a6681e2016-11-28 18:55:34 +00001810 EFX_POPULATE_OWORD_4(temp,
1811 /* Default values */
1812 FRF_BZ_TX_PACE_SB_NOT_AF, 0x15,
1813 FRF_BZ_TX_PACE_SB_AF, 0xb,
1814 FRF_BZ_TX_PACE_FB_BASE, 0,
1815 /* Allow large pace values in the fast bin. */
1816 FRF_BZ_TX_PACE_BIN_TH,
1817 FFE_BZ_TX_PACE_RESERVED);
1818 efx_writeo(efx, &temp, FR_BZ_TX_PACE);
Ben Hutchings86094f72013-08-21 19:51:04 +01001819}
Ben Hutchingsadd72472012-11-08 01:46:53 +00001820
1821/**************************************************************************
1822 *
1823 * Filter tables
1824 *
1825 **************************************************************************
1826 */
1827
1828/* "Fudge factors" - difference between programmed value and actual depth.
1829 * Due to pipelined implementation we need to program H/W with a value that
1830 * is larger than the hop limit we want.
1831 */
1832#define EFX_FARCH_FILTER_CTL_SRCH_FUDGE_WILD 3
1833#define EFX_FARCH_FILTER_CTL_SRCH_FUDGE_FULL 1
1834
1835/* Hard maximum search limit. Hardware will time-out beyond 200-something.
1836 * We also need to avoid infinite loops in efx_farch_filter_search() when the
1837 * table is full.
1838 */
1839#define EFX_FARCH_FILTER_CTL_SRCH_MAX 200
1840
1841/* Don't try very hard to find space for performance hints, as this is
1842 * counter-productive. */
1843#define EFX_FARCH_FILTER_CTL_SRCH_HINT_MAX 5
1844
1845enum efx_farch_filter_type {
1846 EFX_FARCH_FILTER_TCP_FULL = 0,
1847 EFX_FARCH_FILTER_TCP_WILD,
1848 EFX_FARCH_FILTER_UDP_FULL,
1849 EFX_FARCH_FILTER_UDP_WILD,
1850 EFX_FARCH_FILTER_MAC_FULL = 4,
1851 EFX_FARCH_FILTER_MAC_WILD,
1852 EFX_FARCH_FILTER_UC_DEF = 8,
1853 EFX_FARCH_FILTER_MC_DEF,
1854 EFX_FARCH_FILTER_TYPE_COUNT, /* number of specific types */
1855};
1856
1857enum efx_farch_filter_table_id {
1858 EFX_FARCH_FILTER_TABLE_RX_IP = 0,
1859 EFX_FARCH_FILTER_TABLE_RX_MAC,
1860 EFX_FARCH_FILTER_TABLE_RX_DEF,
1861 EFX_FARCH_FILTER_TABLE_TX_MAC,
1862 EFX_FARCH_FILTER_TABLE_COUNT,
1863};
1864
1865enum efx_farch_filter_index {
1866 EFX_FARCH_FILTER_INDEX_UC_DEF,
1867 EFX_FARCH_FILTER_INDEX_MC_DEF,
1868 EFX_FARCH_FILTER_SIZE_RX_DEF,
1869};
1870
1871struct efx_farch_filter_spec {
1872 u8 type:4;
1873 u8 priority:4;
1874 u8 flags;
1875 u16 dmaq_id;
1876 u32 data[3];
1877};
1878
1879struct efx_farch_filter_table {
1880 enum efx_farch_filter_table_id id;
1881 u32 offset; /* address of table relative to BAR */
1882 unsigned size; /* number of entries */
1883 unsigned step; /* step between entries */
1884 unsigned used; /* number currently used */
1885 unsigned long *used_bitmap;
1886 struct efx_farch_filter_spec *spec;
1887 unsigned search_limit[EFX_FARCH_FILTER_TYPE_COUNT];
1888};
1889
1890struct efx_farch_filter_state {
1891 struct efx_farch_filter_table table[EFX_FARCH_FILTER_TABLE_COUNT];
1892};
1893
1894static void
1895efx_farch_filter_table_clear_entry(struct efx_nic *efx,
1896 struct efx_farch_filter_table *table,
1897 unsigned int filter_idx);
1898
1899/* The filter hash function is LFSR polynomial x^16 + x^3 + 1 of a 32-bit
1900 * key derived from the n-tuple. The initial LFSR state is 0xffff. */
1901static u16 efx_farch_filter_hash(u32 key)
1902{
1903 u16 tmp;
1904
1905 /* First 16 rounds */
1906 tmp = 0x1fff ^ key >> 16;
1907 tmp = tmp ^ tmp >> 3 ^ tmp >> 6;
1908 tmp = tmp ^ tmp >> 9;
1909 /* Last 16 rounds */
1910 tmp = tmp ^ tmp << 13 ^ key;
1911 tmp = tmp ^ tmp >> 3 ^ tmp >> 6;
1912 return tmp ^ tmp >> 9;
1913}
1914
1915/* To allow for hash collisions, filter search continues at these
1916 * increments from the first possible entry selected by the hash. */
1917static u16 efx_farch_filter_increment(u32 key)
1918{
1919 return key * 2 - 1;
1920}
1921
1922static enum efx_farch_filter_table_id
1923efx_farch_filter_spec_table_id(const struct efx_farch_filter_spec *spec)
1924{
1925 BUILD_BUG_ON(EFX_FARCH_FILTER_TABLE_RX_IP !=
1926 (EFX_FARCH_FILTER_TCP_FULL >> 2));
1927 BUILD_BUG_ON(EFX_FARCH_FILTER_TABLE_RX_IP !=
1928 (EFX_FARCH_FILTER_TCP_WILD >> 2));
1929 BUILD_BUG_ON(EFX_FARCH_FILTER_TABLE_RX_IP !=
1930 (EFX_FARCH_FILTER_UDP_FULL >> 2));
1931 BUILD_BUG_ON(EFX_FARCH_FILTER_TABLE_RX_IP !=
1932 (EFX_FARCH_FILTER_UDP_WILD >> 2));
1933 BUILD_BUG_ON(EFX_FARCH_FILTER_TABLE_RX_MAC !=
1934 (EFX_FARCH_FILTER_MAC_FULL >> 2));
1935 BUILD_BUG_ON(EFX_FARCH_FILTER_TABLE_RX_MAC !=
1936 (EFX_FARCH_FILTER_MAC_WILD >> 2));
1937 BUILD_BUG_ON(EFX_FARCH_FILTER_TABLE_TX_MAC !=
1938 EFX_FARCH_FILTER_TABLE_RX_MAC + 2);
1939 return (spec->type >> 2) + ((spec->flags & EFX_FILTER_FLAG_TX) ? 2 : 0);
1940}
1941
1942static void efx_farch_filter_push_rx_config(struct efx_nic *efx)
1943{
1944 struct efx_farch_filter_state *state = efx->filter_state;
1945 struct efx_farch_filter_table *table;
1946 efx_oword_t filter_ctl;
1947
1948 efx_reado(efx, &filter_ctl, FR_BZ_RX_FILTER_CTL);
1949
1950 table = &state->table[EFX_FARCH_FILTER_TABLE_RX_IP];
1951 EFX_SET_OWORD_FIELD(filter_ctl, FRF_BZ_TCP_FULL_SRCH_LIMIT,
1952 table->search_limit[EFX_FARCH_FILTER_TCP_FULL] +
1953 EFX_FARCH_FILTER_CTL_SRCH_FUDGE_FULL);
1954 EFX_SET_OWORD_FIELD(filter_ctl, FRF_BZ_TCP_WILD_SRCH_LIMIT,
1955 table->search_limit[EFX_FARCH_FILTER_TCP_WILD] +
1956 EFX_FARCH_FILTER_CTL_SRCH_FUDGE_WILD);
1957 EFX_SET_OWORD_FIELD(filter_ctl, FRF_BZ_UDP_FULL_SRCH_LIMIT,
1958 table->search_limit[EFX_FARCH_FILTER_UDP_FULL] +
1959 EFX_FARCH_FILTER_CTL_SRCH_FUDGE_FULL);
1960 EFX_SET_OWORD_FIELD(filter_ctl, FRF_BZ_UDP_WILD_SRCH_LIMIT,
1961 table->search_limit[EFX_FARCH_FILTER_UDP_WILD] +
1962 EFX_FARCH_FILTER_CTL_SRCH_FUDGE_WILD);
1963
1964 table = &state->table[EFX_FARCH_FILTER_TABLE_RX_MAC];
1965 if (table->size) {
1966 EFX_SET_OWORD_FIELD(
1967 filter_ctl, FRF_CZ_ETHERNET_FULL_SEARCH_LIMIT,
1968 table->search_limit[EFX_FARCH_FILTER_MAC_FULL] +
1969 EFX_FARCH_FILTER_CTL_SRCH_FUDGE_FULL);
1970 EFX_SET_OWORD_FIELD(
1971 filter_ctl, FRF_CZ_ETHERNET_WILDCARD_SEARCH_LIMIT,
1972 table->search_limit[EFX_FARCH_FILTER_MAC_WILD] +
1973 EFX_FARCH_FILTER_CTL_SRCH_FUDGE_WILD);
1974 }
1975
1976 table = &state->table[EFX_FARCH_FILTER_TABLE_RX_DEF];
1977 if (table->size) {
1978 EFX_SET_OWORD_FIELD(
1979 filter_ctl, FRF_CZ_UNICAST_NOMATCH_Q_ID,
1980 table->spec[EFX_FARCH_FILTER_INDEX_UC_DEF].dmaq_id);
1981 EFX_SET_OWORD_FIELD(
1982 filter_ctl, FRF_CZ_UNICAST_NOMATCH_RSS_ENABLED,
1983 !!(table->spec[EFX_FARCH_FILTER_INDEX_UC_DEF].flags &
1984 EFX_FILTER_FLAG_RX_RSS));
1985 EFX_SET_OWORD_FIELD(
1986 filter_ctl, FRF_CZ_MULTICAST_NOMATCH_Q_ID,
1987 table->spec[EFX_FARCH_FILTER_INDEX_MC_DEF].dmaq_id);
1988 EFX_SET_OWORD_FIELD(
1989 filter_ctl, FRF_CZ_MULTICAST_NOMATCH_RSS_ENABLED,
1990 !!(table->spec[EFX_FARCH_FILTER_INDEX_MC_DEF].flags &
1991 EFX_FILTER_FLAG_RX_RSS));
1992
1993 /* There is a single bit to enable RX scatter for all
1994 * unmatched packets. Only set it if scatter is
1995 * enabled in both filter specs.
1996 */
1997 EFX_SET_OWORD_FIELD(
1998 filter_ctl, FRF_BZ_SCATTER_ENBL_NO_MATCH_Q,
1999 !!(table->spec[EFX_FARCH_FILTER_INDEX_UC_DEF].flags &
2000 table->spec[EFX_FARCH_FILTER_INDEX_MC_DEF].flags &
2001 EFX_FILTER_FLAG_RX_SCATTER));
Edward Cree5a6681e2016-11-28 18:55:34 +00002002 } else {
Ben Hutchingsadd72472012-11-08 01:46:53 +00002003 /* We don't expose 'default' filters because unmatched
2004 * packets always go to the queue number found in the
2005 * RSS table. But we still need to set the RX scatter
2006 * bit here.
2007 */
2008 EFX_SET_OWORD_FIELD(
2009 filter_ctl, FRF_BZ_SCATTER_ENBL_NO_MATCH_Q,
2010 efx->rx_scatter);
2011 }
2012
2013 efx_writeo(efx, &filter_ctl, FR_BZ_RX_FILTER_CTL);
2014}
2015
2016static void efx_farch_filter_push_tx_limits(struct efx_nic *efx)
2017{
2018 struct efx_farch_filter_state *state = efx->filter_state;
2019 struct efx_farch_filter_table *table;
2020 efx_oword_t tx_cfg;
2021
2022 efx_reado(efx, &tx_cfg, FR_AZ_TX_CFG);
2023
2024 table = &state->table[EFX_FARCH_FILTER_TABLE_TX_MAC];
2025 if (table->size) {
2026 EFX_SET_OWORD_FIELD(
2027 tx_cfg, FRF_CZ_TX_ETH_FILTER_FULL_SEARCH_RANGE,
2028 table->search_limit[EFX_FARCH_FILTER_MAC_FULL] +
2029 EFX_FARCH_FILTER_CTL_SRCH_FUDGE_FULL);
2030 EFX_SET_OWORD_FIELD(
2031 tx_cfg, FRF_CZ_TX_ETH_FILTER_WILD_SEARCH_RANGE,
2032 table->search_limit[EFX_FARCH_FILTER_MAC_WILD] +
2033 EFX_FARCH_FILTER_CTL_SRCH_FUDGE_WILD);
2034 }
2035
2036 efx_writeo(efx, &tx_cfg, FR_AZ_TX_CFG);
2037}
2038
2039static int
2040efx_farch_filter_from_gen_spec(struct efx_farch_filter_spec *spec,
2041 const struct efx_filter_spec *gen_spec)
2042{
2043 bool is_full = false;
2044
2045 if ((gen_spec->flags & EFX_FILTER_FLAG_RX_RSS) &&
2046 gen_spec->rss_context != EFX_FILTER_RSS_CONTEXT_DEFAULT)
2047 return -EINVAL;
2048
2049 spec->priority = gen_spec->priority;
2050 spec->flags = gen_spec->flags;
2051 spec->dmaq_id = gen_spec->dmaq_id;
2052
2053 switch (gen_spec->match_flags) {
2054 case (EFX_FILTER_MATCH_ETHER_TYPE | EFX_FILTER_MATCH_IP_PROTO |
2055 EFX_FILTER_MATCH_LOC_HOST | EFX_FILTER_MATCH_LOC_PORT |
2056 EFX_FILTER_MATCH_REM_HOST | EFX_FILTER_MATCH_REM_PORT):
2057 is_full = true;
2058 /* fall through */
2059 case (EFX_FILTER_MATCH_ETHER_TYPE | EFX_FILTER_MATCH_IP_PROTO |
2060 EFX_FILTER_MATCH_LOC_HOST | EFX_FILTER_MATCH_LOC_PORT): {
2061 __be32 rhost, host1, host2;
2062 __be16 rport, port1, port2;
2063
Edward Creee01b16a2016-12-02 15:51:33 +00002064 EFX_WARN_ON_PARANOID(!(gen_spec->flags & EFX_FILTER_FLAG_RX));
Ben Hutchingsadd72472012-11-08 01:46:53 +00002065
2066 if (gen_spec->ether_type != htons(ETH_P_IP))
2067 return -EPROTONOSUPPORT;
2068 if (gen_spec->loc_port == 0 ||
2069 (is_full && gen_spec->rem_port == 0))
2070 return -EADDRNOTAVAIL;
2071 switch (gen_spec->ip_proto) {
2072 case IPPROTO_TCP:
2073 spec->type = (is_full ? EFX_FARCH_FILTER_TCP_FULL :
2074 EFX_FARCH_FILTER_TCP_WILD);
2075 break;
2076 case IPPROTO_UDP:
2077 spec->type = (is_full ? EFX_FARCH_FILTER_UDP_FULL :
2078 EFX_FARCH_FILTER_UDP_WILD);
2079 break;
2080 default:
2081 return -EPROTONOSUPPORT;
2082 }
2083
2084 /* Filter is constructed in terms of source and destination,
2085 * with the odd wrinkle that the ports are swapped in a UDP
2086 * wildcard filter. We need to convert from local and remote
2087 * (= zero for wildcard) addresses.
2088 */
2089 rhost = is_full ? gen_spec->rem_host[0] : 0;
2090 rport = is_full ? gen_spec->rem_port : 0;
2091 host1 = rhost;
2092 host2 = gen_spec->loc_host[0];
2093 if (!is_full && gen_spec->ip_proto == IPPROTO_UDP) {
2094 port1 = gen_spec->loc_port;
2095 port2 = rport;
2096 } else {
2097 port1 = rport;
2098 port2 = gen_spec->loc_port;
2099 }
2100 spec->data[0] = ntohl(host1) << 16 | ntohs(port1);
2101 spec->data[1] = ntohs(port2) << 16 | ntohl(host1) >> 16;
2102 spec->data[2] = ntohl(host2);
2103
2104 break;
2105 }
2106
2107 case EFX_FILTER_MATCH_LOC_MAC | EFX_FILTER_MATCH_OUTER_VID:
2108 is_full = true;
2109 /* fall through */
2110 case EFX_FILTER_MATCH_LOC_MAC:
2111 spec->type = (is_full ? EFX_FARCH_FILTER_MAC_FULL :
2112 EFX_FARCH_FILTER_MAC_WILD);
2113 spec->data[0] = is_full ? ntohs(gen_spec->outer_vid) : 0;
2114 spec->data[1] = (gen_spec->loc_mac[2] << 24 |
2115 gen_spec->loc_mac[3] << 16 |
2116 gen_spec->loc_mac[4] << 8 |
2117 gen_spec->loc_mac[5]);
2118 spec->data[2] = (gen_spec->loc_mac[0] << 8 |
2119 gen_spec->loc_mac[1]);
2120 break;
2121
2122 case EFX_FILTER_MATCH_LOC_MAC_IG:
2123 spec->type = (is_multicast_ether_addr(gen_spec->loc_mac) ?
2124 EFX_FARCH_FILTER_MC_DEF :
2125 EFX_FARCH_FILTER_UC_DEF);
2126 memset(spec->data, 0, sizeof(spec->data)); /* ensure equality */
2127 break;
2128
2129 default:
2130 return -EPROTONOSUPPORT;
2131 }
2132
2133 return 0;
2134}
2135
2136static void
2137efx_farch_filter_to_gen_spec(struct efx_filter_spec *gen_spec,
2138 const struct efx_farch_filter_spec *spec)
2139{
2140 bool is_full = false;
2141
2142 /* *gen_spec should be completely initialised, to be consistent
2143 * with efx_filter_init_{rx,tx}() and in case we want to copy
2144 * it back to userland.
2145 */
2146 memset(gen_spec, 0, sizeof(*gen_spec));
2147
2148 gen_spec->priority = spec->priority;
2149 gen_spec->flags = spec->flags;
2150 gen_spec->dmaq_id = spec->dmaq_id;
2151
2152 switch (spec->type) {
2153 case EFX_FARCH_FILTER_TCP_FULL:
2154 case EFX_FARCH_FILTER_UDP_FULL:
2155 is_full = true;
2156 /* fall through */
2157 case EFX_FARCH_FILTER_TCP_WILD:
2158 case EFX_FARCH_FILTER_UDP_WILD: {
2159 __be32 host1, host2;
2160 __be16 port1, port2;
2161
2162 gen_spec->match_flags =
2163 EFX_FILTER_MATCH_ETHER_TYPE |
2164 EFX_FILTER_MATCH_IP_PROTO |
2165 EFX_FILTER_MATCH_LOC_HOST | EFX_FILTER_MATCH_LOC_PORT;
2166 if (is_full)
2167 gen_spec->match_flags |= (EFX_FILTER_MATCH_REM_HOST |
2168 EFX_FILTER_MATCH_REM_PORT);
2169 gen_spec->ether_type = htons(ETH_P_IP);
2170 gen_spec->ip_proto =
2171 (spec->type == EFX_FARCH_FILTER_TCP_FULL ||
2172 spec->type == EFX_FARCH_FILTER_TCP_WILD) ?
2173 IPPROTO_TCP : IPPROTO_UDP;
2174
2175 host1 = htonl(spec->data[0] >> 16 | spec->data[1] << 16);
2176 port1 = htons(spec->data[0]);
2177 host2 = htonl(spec->data[2]);
2178 port2 = htons(spec->data[1] >> 16);
2179 if (spec->flags & EFX_FILTER_FLAG_TX) {
2180 gen_spec->loc_host[0] = host1;
2181 gen_spec->rem_host[0] = host2;
2182 } else {
2183 gen_spec->loc_host[0] = host2;
2184 gen_spec->rem_host[0] = host1;
2185 }
2186 if (!!(gen_spec->flags & EFX_FILTER_FLAG_TX) ^
2187 (!is_full && gen_spec->ip_proto == IPPROTO_UDP)) {
2188 gen_spec->loc_port = port1;
2189 gen_spec->rem_port = port2;
2190 } else {
2191 gen_spec->loc_port = port2;
2192 gen_spec->rem_port = port1;
2193 }
2194
2195 break;
2196 }
2197
2198 case EFX_FARCH_FILTER_MAC_FULL:
2199 is_full = true;
2200 /* fall through */
2201 case EFX_FARCH_FILTER_MAC_WILD:
2202 gen_spec->match_flags = EFX_FILTER_MATCH_LOC_MAC;
2203 if (is_full)
2204 gen_spec->match_flags |= EFX_FILTER_MATCH_OUTER_VID;
2205 gen_spec->loc_mac[0] = spec->data[2] >> 8;
2206 gen_spec->loc_mac[1] = spec->data[2];
2207 gen_spec->loc_mac[2] = spec->data[1] >> 24;
2208 gen_spec->loc_mac[3] = spec->data[1] >> 16;
2209 gen_spec->loc_mac[4] = spec->data[1] >> 8;
2210 gen_spec->loc_mac[5] = spec->data[1];
2211 gen_spec->outer_vid = htons(spec->data[0]);
2212 break;
2213
2214 case EFX_FARCH_FILTER_UC_DEF:
2215 case EFX_FARCH_FILTER_MC_DEF:
2216 gen_spec->match_flags = EFX_FILTER_MATCH_LOC_MAC_IG;
2217 gen_spec->loc_mac[0] = spec->type == EFX_FARCH_FILTER_MC_DEF;
2218 break;
2219
2220 default:
2221 WARN_ON(1);
2222 break;
2223 }
2224}
2225
2226static void
Ben Hutchingsb59e6ef2013-11-21 19:02:22 +00002227efx_farch_filter_init_rx_auto(struct efx_nic *efx,
2228 struct efx_farch_filter_spec *spec)
Ben Hutchingsadd72472012-11-08 01:46:53 +00002229{
Ben Hutchingsadd72472012-11-08 01:46:53 +00002230 /* If there's only one channel then disable RSS for non VF
2231 * traffic, thereby allowing VFs to use RSS when the PF can't.
2232 */
Ben Hutchings7665d1a2013-11-21 19:02:18 +00002233 spec->priority = EFX_FILTER_PRI_AUTO;
2234 spec->flags = (EFX_FILTER_FLAG_RX |
Bert Kenwardf1c2ef42015-12-11 09:39:32 +00002235 (efx_rss_enabled(efx) ? EFX_FILTER_FLAG_RX_RSS : 0) |
Ben Hutchingsadd72472012-11-08 01:46:53 +00002236 (efx->rx_scatter ? EFX_FILTER_FLAG_RX_SCATTER : 0));
2237 spec->dmaq_id = 0;
Ben Hutchingsadd72472012-11-08 01:46:53 +00002238}
2239
2240/* Build a filter entry and return its n-tuple key. */
2241static u32 efx_farch_filter_build(efx_oword_t *filter,
2242 struct efx_farch_filter_spec *spec)
2243{
2244 u32 data3;
2245
2246 switch (efx_farch_filter_spec_table_id(spec)) {
2247 case EFX_FARCH_FILTER_TABLE_RX_IP: {
2248 bool is_udp = (spec->type == EFX_FARCH_FILTER_UDP_FULL ||
2249 spec->type == EFX_FARCH_FILTER_UDP_WILD);
2250 EFX_POPULATE_OWORD_7(
2251 *filter,
2252 FRF_BZ_RSS_EN,
2253 !!(spec->flags & EFX_FILTER_FLAG_RX_RSS),
2254 FRF_BZ_SCATTER_EN,
2255 !!(spec->flags & EFX_FILTER_FLAG_RX_SCATTER),
2256 FRF_BZ_TCP_UDP, is_udp,
2257 FRF_BZ_RXQ_ID, spec->dmaq_id,
2258 EFX_DWORD_2, spec->data[2],
2259 EFX_DWORD_1, spec->data[1],
2260 EFX_DWORD_0, spec->data[0]);
2261 data3 = is_udp;
2262 break;
2263 }
2264
2265 case EFX_FARCH_FILTER_TABLE_RX_MAC: {
2266 bool is_wild = spec->type == EFX_FARCH_FILTER_MAC_WILD;
2267 EFX_POPULATE_OWORD_7(
2268 *filter,
2269 FRF_CZ_RMFT_RSS_EN,
2270 !!(spec->flags & EFX_FILTER_FLAG_RX_RSS),
2271 FRF_CZ_RMFT_SCATTER_EN,
2272 !!(spec->flags & EFX_FILTER_FLAG_RX_SCATTER),
2273 FRF_CZ_RMFT_RXQ_ID, spec->dmaq_id,
2274 FRF_CZ_RMFT_WILDCARD_MATCH, is_wild,
2275 FRF_CZ_RMFT_DEST_MAC_HI, spec->data[2],
2276 FRF_CZ_RMFT_DEST_MAC_LO, spec->data[1],
2277 FRF_CZ_RMFT_VLAN_ID, spec->data[0]);
2278 data3 = is_wild;
2279 break;
2280 }
2281
2282 case EFX_FARCH_FILTER_TABLE_TX_MAC: {
2283 bool is_wild = spec->type == EFX_FARCH_FILTER_MAC_WILD;
2284 EFX_POPULATE_OWORD_5(*filter,
2285 FRF_CZ_TMFT_TXQ_ID, spec->dmaq_id,
2286 FRF_CZ_TMFT_WILDCARD_MATCH, is_wild,
2287 FRF_CZ_TMFT_SRC_MAC_HI, spec->data[2],
2288 FRF_CZ_TMFT_SRC_MAC_LO, spec->data[1],
2289 FRF_CZ_TMFT_VLAN_ID, spec->data[0]);
2290 data3 = is_wild | spec->dmaq_id << 1;
2291 break;
2292 }
2293
2294 default:
2295 BUG();
2296 }
2297
2298 return spec->data[0] ^ spec->data[1] ^ spec->data[2] ^ data3;
2299}
2300
2301static bool efx_farch_filter_equal(const struct efx_farch_filter_spec *left,
2302 const struct efx_farch_filter_spec *right)
2303{
2304 if (left->type != right->type ||
2305 memcmp(left->data, right->data, sizeof(left->data)))
2306 return false;
2307
2308 if (left->flags & EFX_FILTER_FLAG_TX &&
2309 left->dmaq_id != right->dmaq_id)
2310 return false;
2311
2312 return true;
2313}
2314
2315/*
2316 * Construct/deconstruct external filter IDs. At least the RX filter
2317 * IDs must be ordered by matching priority, for RX NFC semantics.
2318 *
2319 * Deconstruction needs to be robust against invalid IDs so that
2320 * efx_filter_remove_id_safe() and efx_filter_get_filter_safe() can
2321 * accept user-provided IDs.
2322 */
2323
2324#define EFX_FARCH_FILTER_MATCH_PRI_COUNT 5
2325
2326static const u8 efx_farch_filter_type_match_pri[EFX_FARCH_FILTER_TYPE_COUNT] = {
2327 [EFX_FARCH_FILTER_TCP_FULL] = 0,
2328 [EFX_FARCH_FILTER_UDP_FULL] = 0,
2329 [EFX_FARCH_FILTER_TCP_WILD] = 1,
2330 [EFX_FARCH_FILTER_UDP_WILD] = 1,
2331 [EFX_FARCH_FILTER_MAC_FULL] = 2,
2332 [EFX_FARCH_FILTER_MAC_WILD] = 3,
2333 [EFX_FARCH_FILTER_UC_DEF] = 4,
2334 [EFX_FARCH_FILTER_MC_DEF] = 4,
2335};
2336
2337static const enum efx_farch_filter_table_id efx_farch_filter_range_table[] = {
2338 EFX_FARCH_FILTER_TABLE_RX_IP, /* RX match pri 0 */
2339 EFX_FARCH_FILTER_TABLE_RX_IP,
2340 EFX_FARCH_FILTER_TABLE_RX_MAC,
2341 EFX_FARCH_FILTER_TABLE_RX_MAC,
2342 EFX_FARCH_FILTER_TABLE_RX_DEF, /* RX match pri 4 */
2343 EFX_FARCH_FILTER_TABLE_TX_MAC, /* TX match pri 0 */
2344 EFX_FARCH_FILTER_TABLE_TX_MAC, /* TX match pri 1 */
2345};
2346
2347#define EFX_FARCH_FILTER_INDEX_WIDTH 13
2348#define EFX_FARCH_FILTER_INDEX_MASK ((1 << EFX_FARCH_FILTER_INDEX_WIDTH) - 1)
2349
2350static inline u32
2351efx_farch_filter_make_id(const struct efx_farch_filter_spec *spec,
2352 unsigned int index)
2353{
2354 unsigned int range;
2355
2356 range = efx_farch_filter_type_match_pri[spec->type];
2357 if (!(spec->flags & EFX_FILTER_FLAG_RX))
2358 range += EFX_FARCH_FILTER_MATCH_PRI_COUNT;
2359
2360 return range << EFX_FARCH_FILTER_INDEX_WIDTH | index;
2361}
2362
2363static inline enum efx_farch_filter_table_id
2364efx_farch_filter_id_table_id(u32 id)
2365{
2366 unsigned int range = id >> EFX_FARCH_FILTER_INDEX_WIDTH;
2367
2368 if (range < ARRAY_SIZE(efx_farch_filter_range_table))
2369 return efx_farch_filter_range_table[range];
2370 else
2371 return EFX_FARCH_FILTER_TABLE_COUNT; /* invalid */
2372}
2373
2374static inline unsigned int efx_farch_filter_id_index(u32 id)
2375{
2376 return id & EFX_FARCH_FILTER_INDEX_MASK;
2377}
2378
2379u32 efx_farch_filter_get_rx_id_limit(struct efx_nic *efx)
2380{
2381 struct efx_farch_filter_state *state = efx->filter_state;
2382 unsigned int range = EFX_FARCH_FILTER_MATCH_PRI_COUNT - 1;
2383 enum efx_farch_filter_table_id table_id;
2384
2385 do {
2386 table_id = efx_farch_filter_range_table[range];
2387 if (state->table[table_id].size != 0)
2388 return range << EFX_FARCH_FILTER_INDEX_WIDTH |
2389 state->table[table_id].size;
2390 } while (range--);
2391
2392 return 0;
2393}
2394
2395s32 efx_farch_filter_insert(struct efx_nic *efx,
2396 struct efx_filter_spec *gen_spec,
2397 bool replace_equal)
2398{
2399 struct efx_farch_filter_state *state = efx->filter_state;
2400 struct efx_farch_filter_table *table;
2401 struct efx_farch_filter_spec spec;
2402 efx_oword_t filter;
2403 int rep_index, ins_index;
2404 unsigned int depth = 0;
2405 int rc;
2406
2407 rc = efx_farch_filter_from_gen_spec(&spec, gen_spec);
2408 if (rc)
2409 return rc;
2410
2411 table = &state->table[efx_farch_filter_spec_table_id(&spec)];
2412 if (table->size == 0)
2413 return -EINVAL;
2414
2415 netif_vdbg(efx, hw, efx->net_dev,
2416 "%s: type %d search_limit=%d", __func__, spec.type,
2417 table->search_limit[spec.type]);
2418
2419 if (table->id == EFX_FARCH_FILTER_TABLE_RX_DEF) {
2420 /* One filter spec per type */
2421 BUILD_BUG_ON(EFX_FARCH_FILTER_INDEX_UC_DEF != 0);
2422 BUILD_BUG_ON(EFX_FARCH_FILTER_INDEX_MC_DEF !=
2423 EFX_FARCH_FILTER_MC_DEF - EFX_FARCH_FILTER_UC_DEF);
2424 rep_index = spec.type - EFX_FARCH_FILTER_UC_DEF;
2425 ins_index = rep_index;
2426
2427 spin_lock_bh(&efx->filter_lock);
2428 } else {
2429 /* Search concurrently for
2430 * (1) a filter to be replaced (rep_index): any filter
2431 * with the same match values, up to the current
2432 * search depth for this type, and
2433 * (2) the insertion point (ins_index): (1) or any
2434 * free slot before it or up to the maximum search
2435 * depth for this priority
2436 * We fail if we cannot find (2).
2437 *
2438 * We can stop once either
2439 * (a) we find (1), in which case we have definitely
2440 * found (2) as well; or
2441 * (b) we have searched exhaustively for (1), and have
2442 * either found (2) or searched exhaustively for it
2443 */
2444 u32 key = efx_farch_filter_build(&filter, &spec);
2445 unsigned int hash = efx_farch_filter_hash(key);
2446 unsigned int incr = efx_farch_filter_increment(key);
2447 unsigned int max_rep_depth = table->search_limit[spec.type];
2448 unsigned int max_ins_depth =
2449 spec.priority <= EFX_FILTER_PRI_HINT ?
2450 EFX_FARCH_FILTER_CTL_SRCH_HINT_MAX :
2451 EFX_FARCH_FILTER_CTL_SRCH_MAX;
2452 unsigned int i = hash & (table->size - 1);
2453
2454 ins_index = -1;
2455 depth = 1;
2456
2457 spin_lock_bh(&efx->filter_lock);
2458
2459 for (;;) {
2460 if (!test_bit(i, table->used_bitmap)) {
2461 if (ins_index < 0)
2462 ins_index = i;
2463 } else if (efx_farch_filter_equal(&spec,
2464 &table->spec[i])) {
2465 /* Case (a) */
2466 if (ins_index < 0)
2467 ins_index = i;
2468 rep_index = i;
2469 break;
2470 }
2471
2472 if (depth >= max_rep_depth &&
2473 (ins_index >= 0 || depth >= max_ins_depth)) {
2474 /* Case (b) */
2475 if (ins_index < 0) {
2476 rc = -EBUSY;
2477 goto out;
2478 }
2479 rep_index = -1;
2480 break;
2481 }
2482
2483 i = (i + incr) & (table->size - 1);
2484 ++depth;
2485 }
2486 }
2487
2488 /* If we found a filter to be replaced, check whether we
2489 * should do so
2490 */
2491 if (rep_index >= 0) {
2492 struct efx_farch_filter_spec *saved_spec =
2493 &table->spec[rep_index];
2494
2495 if (spec.priority == saved_spec->priority && !replace_equal) {
2496 rc = -EEXIST;
2497 goto out;
2498 }
Ben Hutchings7665d1a2013-11-21 19:02:18 +00002499 if (spec.priority < saved_spec->priority) {
Ben Hutchingsadd72472012-11-08 01:46:53 +00002500 rc = -EPERM;
2501 goto out;
2502 }
Ben Hutchings7665d1a2013-11-21 19:02:18 +00002503 if (saved_spec->priority == EFX_FILTER_PRI_AUTO ||
2504 saved_spec->flags & EFX_FILTER_FLAG_RX_OVER_AUTO)
2505 spec.flags |= EFX_FILTER_FLAG_RX_OVER_AUTO;
Ben Hutchingsadd72472012-11-08 01:46:53 +00002506 }
2507
2508 /* Insert the filter */
2509 if (ins_index != rep_index) {
2510 __set_bit(ins_index, table->used_bitmap);
2511 ++table->used;
2512 }
2513 table->spec[ins_index] = spec;
2514
2515 if (table->id == EFX_FARCH_FILTER_TABLE_RX_DEF) {
2516 efx_farch_filter_push_rx_config(efx);
2517 } else {
2518 if (table->search_limit[spec.type] < depth) {
2519 table->search_limit[spec.type] = depth;
2520 if (spec.flags & EFX_FILTER_FLAG_TX)
2521 efx_farch_filter_push_tx_limits(efx);
2522 else
2523 efx_farch_filter_push_rx_config(efx);
2524 }
2525
2526 efx_writeo(efx, &filter,
2527 table->offset + table->step * ins_index);
2528
2529 /* If we were able to replace a filter by inserting
2530 * at a lower depth, clear the replaced filter
2531 */
2532 if (ins_index != rep_index && rep_index >= 0)
2533 efx_farch_filter_table_clear_entry(efx, table,
2534 rep_index);
2535 }
2536
2537 netif_vdbg(efx, hw, efx->net_dev,
2538 "%s: filter type %d index %d rxq %u set",
2539 __func__, spec.type, ins_index, spec.dmaq_id);
2540 rc = efx_farch_filter_make_id(&spec, ins_index);
2541
2542out:
2543 spin_unlock_bh(&efx->filter_lock);
2544 return rc;
2545}
2546
2547static void
2548efx_farch_filter_table_clear_entry(struct efx_nic *efx,
2549 struct efx_farch_filter_table *table,
2550 unsigned int filter_idx)
2551{
2552 static efx_oword_t filter;
2553
Ben Hutchings14990a52012-11-19 23:08:19 +00002554 EFX_WARN_ON_PARANOID(!test_bit(filter_idx, table->used_bitmap));
Ben Hutchings8803e152012-11-19 23:08:20 +00002555 BUG_ON(table->offset == 0); /* can't clear MAC default filters */
Ben Hutchings14990a52012-11-19 23:08:19 +00002556
2557 __clear_bit(filter_idx, table->used_bitmap);
2558 --table->used;
2559 memset(&table->spec[filter_idx], 0, sizeof(table->spec[0]));
2560
2561 efx_writeo(efx, &filter, table->offset + table->step * filter_idx);
2562
2563 /* If this filter required a greater search depth than
2564 * any other, the search limit for its type can now be
2565 * decreased. However, it is hard to determine that
2566 * unless the table has become completely empty - in
2567 * which case, all its search limits can be set to 0.
2568 */
2569 if (unlikely(table->used == 0)) {
2570 memset(table->search_limit, 0, sizeof(table->search_limit));
2571 if (table->id == EFX_FARCH_FILTER_TABLE_TX_MAC)
2572 efx_farch_filter_push_tx_limits(efx);
2573 else
2574 efx_farch_filter_push_rx_config(efx);
2575 }
2576}
2577
2578static int efx_farch_filter_remove(struct efx_nic *efx,
2579 struct efx_farch_filter_table *table,
2580 unsigned int filter_idx,
2581 enum efx_filter_priority priority)
2582{
2583 struct efx_farch_filter_spec *spec = &table->spec[filter_idx];
2584
2585 if (!test_bit(filter_idx, table->used_bitmap) ||
Ben Hutchingsf7284802013-11-21 19:11:47 +00002586 spec->priority != priority)
Ben Hutchings14990a52012-11-19 23:08:19 +00002587 return -ENOENT;
2588
Ben Hutchings7665d1a2013-11-21 19:02:18 +00002589 if (spec->flags & EFX_FILTER_FLAG_RX_OVER_AUTO) {
Ben Hutchingsb59e6ef2013-11-21 19:02:22 +00002590 efx_farch_filter_init_rx_auto(efx, spec);
Ben Hutchingsadd72472012-11-08 01:46:53 +00002591 efx_farch_filter_push_rx_config(efx);
Ben Hutchings14990a52012-11-19 23:08:19 +00002592 } else {
2593 efx_farch_filter_table_clear_entry(efx, table, filter_idx);
Ben Hutchingsadd72472012-11-08 01:46:53 +00002594 }
Ben Hutchings14990a52012-11-19 23:08:19 +00002595
2596 return 0;
Ben Hutchingsadd72472012-11-08 01:46:53 +00002597}
2598
2599int efx_farch_filter_remove_safe(struct efx_nic *efx,
2600 enum efx_filter_priority priority,
2601 u32 filter_id)
2602{
2603 struct efx_farch_filter_state *state = efx->filter_state;
2604 enum efx_farch_filter_table_id table_id;
2605 struct efx_farch_filter_table *table;
2606 unsigned int filter_idx;
2607 struct efx_farch_filter_spec *spec;
2608 int rc;
2609
2610 table_id = efx_farch_filter_id_table_id(filter_id);
2611 if ((unsigned int)table_id >= EFX_FARCH_FILTER_TABLE_COUNT)
2612 return -ENOENT;
2613 table = &state->table[table_id];
2614
2615 filter_idx = efx_farch_filter_id_index(filter_id);
2616 if (filter_idx >= table->size)
2617 return -ENOENT;
2618 spec = &table->spec[filter_idx];
2619
2620 spin_lock_bh(&efx->filter_lock);
Ben Hutchings14990a52012-11-19 23:08:19 +00002621 rc = efx_farch_filter_remove(efx, table, filter_idx, priority);
Ben Hutchingsadd72472012-11-08 01:46:53 +00002622 spin_unlock_bh(&efx->filter_lock);
2623
2624 return rc;
2625}
2626
2627int efx_farch_filter_get_safe(struct efx_nic *efx,
2628 enum efx_filter_priority priority,
2629 u32 filter_id, struct efx_filter_spec *spec_buf)
2630{
2631 struct efx_farch_filter_state *state = efx->filter_state;
2632 enum efx_farch_filter_table_id table_id;
2633 struct efx_farch_filter_table *table;
2634 struct efx_farch_filter_spec *spec;
2635 unsigned int filter_idx;
2636 int rc;
2637
2638 table_id = efx_farch_filter_id_table_id(filter_id);
2639 if ((unsigned int)table_id >= EFX_FARCH_FILTER_TABLE_COUNT)
2640 return -ENOENT;
2641 table = &state->table[table_id];
2642
2643 filter_idx = efx_farch_filter_id_index(filter_id);
2644 if (filter_idx >= table->size)
2645 return -ENOENT;
2646 spec = &table->spec[filter_idx];
2647
2648 spin_lock_bh(&efx->filter_lock);
2649
2650 if (test_bit(filter_idx, table->used_bitmap) &&
2651 spec->priority == priority) {
2652 efx_farch_filter_to_gen_spec(spec_buf, spec);
2653 rc = 0;
2654 } else {
2655 rc = -ENOENT;
2656 }
2657
2658 spin_unlock_bh(&efx->filter_lock);
2659
2660 return rc;
2661}
2662
2663static void
2664efx_farch_filter_table_clear(struct efx_nic *efx,
2665 enum efx_farch_filter_table_id table_id,
2666 enum efx_filter_priority priority)
2667{
2668 struct efx_farch_filter_state *state = efx->filter_state;
2669 struct efx_farch_filter_table *table = &state->table[table_id];
2670 unsigned int filter_idx;
2671
2672 spin_lock_bh(&efx->filter_lock);
Ben Hutchings7665d1a2013-11-21 19:02:18 +00002673 for (filter_idx = 0; filter_idx < table->size; ++filter_idx) {
2674 if (table->spec[filter_idx].priority != EFX_FILTER_PRI_AUTO)
2675 efx_farch_filter_remove(efx, table,
2676 filter_idx, priority);
2677 }
Ben Hutchingsadd72472012-11-08 01:46:53 +00002678 spin_unlock_bh(&efx->filter_lock);
2679}
2680
Ben Hutchingsfbd79122013-11-21 19:15:03 +00002681int efx_farch_filter_clear_rx(struct efx_nic *efx,
Ben Hutchingsadd72472012-11-08 01:46:53 +00002682 enum efx_filter_priority priority)
2683{
2684 efx_farch_filter_table_clear(efx, EFX_FARCH_FILTER_TABLE_RX_IP,
2685 priority);
2686 efx_farch_filter_table_clear(efx, EFX_FARCH_FILTER_TABLE_RX_MAC,
2687 priority);
Ben Hutchings8803e152012-11-19 23:08:20 +00002688 efx_farch_filter_table_clear(efx, EFX_FARCH_FILTER_TABLE_RX_DEF,
2689 priority);
Ben Hutchingsfbd79122013-11-21 19:15:03 +00002690 return 0;
Ben Hutchingsadd72472012-11-08 01:46:53 +00002691}
2692
2693u32 efx_farch_filter_count_rx_used(struct efx_nic *efx,
2694 enum efx_filter_priority priority)
2695{
2696 struct efx_farch_filter_state *state = efx->filter_state;
2697 enum efx_farch_filter_table_id table_id;
2698 struct efx_farch_filter_table *table;
2699 unsigned int filter_idx;
2700 u32 count = 0;
2701
2702 spin_lock_bh(&efx->filter_lock);
2703
2704 for (table_id = EFX_FARCH_FILTER_TABLE_RX_IP;
2705 table_id <= EFX_FARCH_FILTER_TABLE_RX_DEF;
2706 table_id++) {
2707 table = &state->table[table_id];
2708 for (filter_idx = 0; filter_idx < table->size; filter_idx++) {
2709 if (test_bit(filter_idx, table->used_bitmap) &&
2710 table->spec[filter_idx].priority == priority)
2711 ++count;
2712 }
2713 }
2714
2715 spin_unlock_bh(&efx->filter_lock);
2716
2717 return count;
2718}
2719
2720s32 efx_farch_filter_get_rx_ids(struct efx_nic *efx,
2721 enum efx_filter_priority priority,
2722 u32 *buf, u32 size)
2723{
2724 struct efx_farch_filter_state *state = efx->filter_state;
2725 enum efx_farch_filter_table_id table_id;
2726 struct efx_farch_filter_table *table;
2727 unsigned int filter_idx;
2728 s32 count = 0;
2729
2730 spin_lock_bh(&efx->filter_lock);
2731
2732 for (table_id = EFX_FARCH_FILTER_TABLE_RX_IP;
2733 table_id <= EFX_FARCH_FILTER_TABLE_RX_DEF;
2734 table_id++) {
2735 table = &state->table[table_id];
2736 for (filter_idx = 0; filter_idx < table->size; filter_idx++) {
2737 if (test_bit(filter_idx, table->used_bitmap) &&
2738 table->spec[filter_idx].priority == priority) {
2739 if (count == size) {
2740 count = -EMSGSIZE;
2741 goto out;
2742 }
2743 buf[count++] = efx_farch_filter_make_id(
2744 &table->spec[filter_idx], filter_idx);
2745 }
2746 }
2747 }
2748out:
2749 spin_unlock_bh(&efx->filter_lock);
2750
2751 return count;
2752}
2753
2754/* Restore filter stater after reset */
2755void efx_farch_filter_table_restore(struct efx_nic *efx)
2756{
2757 struct efx_farch_filter_state *state = efx->filter_state;
2758 enum efx_farch_filter_table_id table_id;
2759 struct efx_farch_filter_table *table;
2760 efx_oword_t filter;
2761 unsigned int filter_idx;
2762
2763 spin_lock_bh(&efx->filter_lock);
2764
2765 for (table_id = 0; table_id < EFX_FARCH_FILTER_TABLE_COUNT; table_id++) {
2766 table = &state->table[table_id];
2767
2768 /* Check whether this is a regular register table */
2769 if (table->step == 0)
2770 continue;
2771
2772 for (filter_idx = 0; filter_idx < table->size; filter_idx++) {
2773 if (!test_bit(filter_idx, table->used_bitmap))
2774 continue;
2775 efx_farch_filter_build(&filter, &table->spec[filter_idx]);
2776 efx_writeo(efx, &filter,
2777 table->offset + table->step * filter_idx);
2778 }
2779 }
2780
2781 efx_farch_filter_push_rx_config(efx);
2782 efx_farch_filter_push_tx_limits(efx);
2783
2784 spin_unlock_bh(&efx->filter_lock);
2785}
2786
2787void efx_farch_filter_table_remove(struct efx_nic *efx)
2788{
2789 struct efx_farch_filter_state *state = efx->filter_state;
2790 enum efx_farch_filter_table_id table_id;
2791
2792 for (table_id = 0; table_id < EFX_FARCH_FILTER_TABLE_COUNT; table_id++) {
2793 kfree(state->table[table_id].used_bitmap);
2794 vfree(state->table[table_id].spec);
2795 }
2796 kfree(state);
2797}
2798
2799int efx_farch_filter_table_probe(struct efx_nic *efx)
2800{
2801 struct efx_farch_filter_state *state;
2802 struct efx_farch_filter_table *table;
2803 unsigned table_id;
2804
2805 state = kzalloc(sizeof(struct efx_farch_filter_state), GFP_KERNEL);
2806 if (!state)
2807 return -ENOMEM;
2808 efx->filter_state = state;
2809
Edward Cree5a6681e2016-11-28 18:55:34 +00002810 table = &state->table[EFX_FARCH_FILTER_TABLE_RX_IP];
2811 table->id = EFX_FARCH_FILTER_TABLE_RX_IP;
2812 table->offset = FR_BZ_RX_FILTER_TBL0;
2813 table->size = FR_BZ_RX_FILTER_TBL0_ROWS;
2814 table->step = FR_BZ_RX_FILTER_TBL0_STEP;
Ben Hutchingsadd72472012-11-08 01:46:53 +00002815
Edward Cree5a6681e2016-11-28 18:55:34 +00002816 table = &state->table[EFX_FARCH_FILTER_TABLE_RX_MAC];
2817 table->id = EFX_FARCH_FILTER_TABLE_RX_MAC;
2818 table->offset = FR_CZ_RX_MAC_FILTER_TBL0;
2819 table->size = FR_CZ_RX_MAC_FILTER_TBL0_ROWS;
2820 table->step = FR_CZ_RX_MAC_FILTER_TBL0_STEP;
Ben Hutchingsadd72472012-11-08 01:46:53 +00002821
Edward Cree5a6681e2016-11-28 18:55:34 +00002822 table = &state->table[EFX_FARCH_FILTER_TABLE_RX_DEF];
2823 table->id = EFX_FARCH_FILTER_TABLE_RX_DEF;
2824 table->size = EFX_FARCH_FILTER_SIZE_RX_DEF;
Ben Hutchingsadd72472012-11-08 01:46:53 +00002825
Edward Cree5a6681e2016-11-28 18:55:34 +00002826 table = &state->table[EFX_FARCH_FILTER_TABLE_TX_MAC];
2827 table->id = EFX_FARCH_FILTER_TABLE_TX_MAC;
2828 table->offset = FR_CZ_TX_MAC_FILTER_TBL0;
2829 table->size = FR_CZ_TX_MAC_FILTER_TBL0_ROWS;
2830 table->step = FR_CZ_TX_MAC_FILTER_TBL0_STEP;
Ben Hutchingsadd72472012-11-08 01:46:53 +00002831
2832 for (table_id = 0; table_id < EFX_FARCH_FILTER_TABLE_COUNT; table_id++) {
2833 table = &state->table[table_id];
2834 if (table->size == 0)
2835 continue;
2836 table->used_bitmap = kcalloc(BITS_TO_LONGS(table->size),
2837 sizeof(unsigned long),
2838 GFP_KERNEL);
2839 if (!table->used_bitmap)
2840 goto fail;
2841 table->spec = vzalloc(table->size * sizeof(*table->spec));
2842 if (!table->spec)
2843 goto fail;
2844 }
2845
Ben Hutchings8803e152012-11-19 23:08:20 +00002846 table = &state->table[EFX_FARCH_FILTER_TABLE_RX_DEF];
2847 if (table->size) {
Ben Hutchingsadd72472012-11-08 01:46:53 +00002848 /* RX default filters must always exist */
Ben Hutchings8803e152012-11-19 23:08:20 +00002849 struct efx_farch_filter_spec *spec;
Ben Hutchingsadd72472012-11-08 01:46:53 +00002850 unsigned i;
Ben Hutchings8803e152012-11-19 23:08:20 +00002851
2852 for (i = 0; i < EFX_FARCH_FILTER_SIZE_RX_DEF; i++) {
2853 spec = &table->spec[i];
2854 spec->type = EFX_FARCH_FILTER_UC_DEF + i;
Ben Hutchingsb59e6ef2013-11-21 19:02:22 +00002855 efx_farch_filter_init_rx_auto(efx, spec);
Ben Hutchings8803e152012-11-19 23:08:20 +00002856 __set_bit(i, table->used_bitmap);
2857 }
Ben Hutchingsadd72472012-11-08 01:46:53 +00002858 }
2859
2860 efx_farch_filter_push_rx_config(efx);
2861
2862 return 0;
2863
2864fail:
2865 efx_farch_filter_table_remove(efx);
2866 return -ENOMEM;
2867}
2868
2869/* Update scatter enable flags for filters pointing to our own RX queues */
2870void efx_farch_filter_update_rx_scatter(struct efx_nic *efx)
2871{
2872 struct efx_farch_filter_state *state = efx->filter_state;
2873 enum efx_farch_filter_table_id table_id;
2874 struct efx_farch_filter_table *table;
2875 efx_oword_t filter;
2876 unsigned int filter_idx;
2877
2878 spin_lock_bh(&efx->filter_lock);
2879
2880 for (table_id = EFX_FARCH_FILTER_TABLE_RX_IP;
2881 table_id <= EFX_FARCH_FILTER_TABLE_RX_DEF;
2882 table_id++) {
2883 table = &state->table[table_id];
2884
2885 for (filter_idx = 0; filter_idx < table->size; filter_idx++) {
2886 if (!test_bit(filter_idx, table->used_bitmap) ||
2887 table->spec[filter_idx].dmaq_id >=
2888 efx->n_rx_channels)
2889 continue;
2890
2891 if (efx->rx_scatter)
2892 table->spec[filter_idx].flags |=
2893 EFX_FILTER_FLAG_RX_SCATTER;
2894 else
2895 table->spec[filter_idx].flags &=
2896 ~EFX_FILTER_FLAG_RX_SCATTER;
2897
2898 if (table_id == EFX_FARCH_FILTER_TABLE_RX_DEF)
2899 /* Pushed by efx_farch_filter_push_rx_config() */
2900 continue;
2901
2902 efx_farch_filter_build(&filter, &table->spec[filter_idx]);
2903 efx_writeo(efx, &filter,
2904 table->offset + table->step * filter_idx);
2905 }
2906 }
2907
2908 efx_farch_filter_push_rx_config(efx);
2909
2910 spin_unlock_bh(&efx->filter_lock);
2911}
2912
2913#ifdef CONFIG_RFS_ACCEL
2914
2915s32 efx_farch_filter_rfs_insert(struct efx_nic *efx,
2916 struct efx_filter_spec *gen_spec)
2917{
2918 return efx_farch_filter_insert(efx, gen_spec, true);
2919}
2920
2921bool efx_farch_filter_rfs_expire_one(struct efx_nic *efx, u32 flow_id,
2922 unsigned int index)
2923{
2924 struct efx_farch_filter_state *state = efx->filter_state;
2925 struct efx_farch_filter_table *table =
2926 &state->table[EFX_FARCH_FILTER_TABLE_RX_IP];
2927
2928 if (test_bit(index, table->used_bitmap) &&
2929 table->spec[index].priority == EFX_FILTER_PRI_HINT &&
2930 rps_may_expire_flow(efx->net_dev, table->spec[index].dmaq_id,
2931 flow_id, index)) {
2932 efx_farch_filter_table_clear_entry(efx, table, index);
2933 return true;
2934 }
2935
2936 return false;
2937}
2938
2939#endif /* CONFIG_RFS_ACCEL */
Ben Hutchings964e6132012-11-19 23:08:22 +00002940
2941void efx_farch_filter_sync_rx_mode(struct efx_nic *efx)
2942{
2943 struct net_device *net_dev = efx->net_dev;
2944 struct netdev_hw_addr *ha;
2945 union efx_multicast_hash *mc_hash = &efx->multicast_hash;
2946 u32 crc;
2947 int bit;
2948
Edward Creef650fb42014-09-16 17:05:21 +01002949 if (!efx_dev_registered(efx))
2950 return;
2951
Ben Hutchings964e6132012-11-19 23:08:22 +00002952 netif_addr_lock_bh(net_dev);
2953
2954 efx->unicast_filter = !(net_dev->flags & IFF_PROMISC);
2955
2956 /* Build multicast hash table */
2957 if (net_dev->flags & (IFF_PROMISC | IFF_ALLMULTI)) {
2958 memset(mc_hash, 0xff, sizeof(*mc_hash));
2959 } else {
2960 memset(mc_hash, 0x00, sizeof(*mc_hash));
2961 netdev_for_each_mc_addr(ha, net_dev) {
2962 crc = ether_crc_le(ETH_ALEN, ha->addr);
2963 bit = crc & (EFX_MCAST_HASH_ENTRIES - 1);
2964 __set_bit_le(bit, mc_hash);
2965 }
2966
2967 /* Broadcast packets go through the multicast hash filter.
2968 * ether_crc_le() of the broadcast address is 0xbe2612ff
2969 * so we always add bit 0xff to the mask.
2970 */
2971 __set_bit_le(0xff, mc_hash);
2972 }
2973
2974 netif_addr_unlock_bh(net_dev);
2975}