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