blob: 34b475e9b29d2856a8b397a8a1c2729beb427300 [file] [log] [blame]
Ben Hutchings8ceee662008-04-27 12:55:59 +01001/****************************************************************************
2 * Driver for Solarflare Solarstorm network controllers and boards
3 * Copyright 2005-2006 Fen Systems Ltd.
4 * Copyright 2006-2008 Solarflare Communications Inc.
5 *
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License version 2 as published
8 * by the Free Software Foundation, incorporated herein by reference.
9 */
10
11#include <linux/bitops.h>
12#include <linux/delay.h>
13#include <linux/pci.h>
14#include <linux/module.h>
15#include <linux/seq_file.h>
Ben Hutchings37b5a602008-05-30 22:27:04 +010016#include <linux/i2c.h>
17#include <linux/i2c-algo-bit.h>
Ben Hutchingsf31a45d2008-12-12 21:43:33 -080018#include <linux/mii.h>
Ben Hutchings8ceee662008-04-27 12:55:59 +010019#include "net_driver.h"
20#include "bitfield.h"
21#include "efx.h"
22#include "mac.h"
Ben Hutchings8ceee662008-04-27 12:55:59 +010023#include "spi.h"
24#include "falcon.h"
Ben Hutchings3e6c4532009-10-23 08:30:36 +000025#include "regs.h"
Ben Hutchings12d00ca2009-10-23 08:30:46 +000026#include "io.h"
Ben Hutchings8ceee662008-04-27 12:55:59 +010027#include "mdio_10g.h"
28#include "phy.h"
Ben Hutchings8ceee662008-04-27 12:55:59 +010029#include "workarounds.h"
30
31/* Falcon hardware control.
32 * Falcon is the internal codename for the SFC4000 controller that is
33 * present in SFE400X evaluation boards
34 */
35
36/**
37 * struct falcon_nic_data - Falcon NIC state
38 * @next_buffer_table: First available buffer table id
39 * @pci_dev2: The secondary PCI device if present
Ben Hutchings37b5a602008-05-30 22:27:04 +010040 * @i2c_data: Operations and state for I2C bit-bashing algorithm
Ben Hutchings2c3c3d02009-03-04 10:01:57 +000041 * @int_error_count: Number of internal errors seen recently
42 * @int_error_expire: Time at which error count will be expired
Ben Hutchings8ceee662008-04-27 12:55:59 +010043 */
44struct falcon_nic_data {
45 unsigned next_buffer_table;
46 struct pci_dev *pci_dev2;
Ben Hutchings37b5a602008-05-30 22:27:04 +010047 struct i2c_algo_bit_data i2c_data;
Ben Hutchings2c3c3d02009-03-04 10:01:57 +000048
49 unsigned int_error_count;
50 unsigned long int_error_expire;
Ben Hutchings8ceee662008-04-27 12:55:59 +010051};
52
53/**************************************************************************
54 *
55 * Configurable values
56 *
57 **************************************************************************
58 */
59
60static int disable_dma_stats;
61
62/* This is set to 16 for a good reason. In summary, if larger than
63 * 16, the descriptor cache holds more than a default socket
64 * buffer's worth of packets (for UDP we can only have at most one
65 * socket buffer's worth outstanding). This combined with the fact
66 * that we only get 1 TX event per descriptor cache means the NIC
67 * goes idle.
68 */
69#define TX_DC_ENTRIES 16
70#define TX_DC_ENTRIES_ORDER 0
71#define TX_DC_BASE 0x130000
72
73#define RX_DC_ENTRIES 64
74#define RX_DC_ENTRIES_ORDER 2
75#define RX_DC_BASE 0x100000
76
Ben Hutchings2f7f5732008-12-12 21:34:25 -080077static const unsigned int
78/* "Large" EEPROM device: Atmel AT25640 or similar
79 * 8 KB, 16-bit address, 32 B write block */
80large_eeprom_type = ((13 << SPI_DEV_TYPE_SIZE_LBN)
81 | (2 << SPI_DEV_TYPE_ADDR_LEN_LBN)
82 | (5 << SPI_DEV_TYPE_BLOCK_SIZE_LBN)),
83/* Default flash device: Atmel AT25F1024
84 * 128 KB, 24-bit address, 32 KB erase block, 256 B write block */
85default_flash_type = ((17 << SPI_DEV_TYPE_SIZE_LBN)
86 | (3 << SPI_DEV_TYPE_ADDR_LEN_LBN)
87 | (0x52 << SPI_DEV_TYPE_ERASE_CMD_LBN)
88 | (15 << SPI_DEV_TYPE_ERASE_SIZE_LBN)
89 | (8 << SPI_DEV_TYPE_BLOCK_SIZE_LBN));
90
Ben Hutchings8ceee662008-04-27 12:55:59 +010091/* RX FIFO XOFF watermark
92 *
93 * When the amount of the RX FIFO increases used increases past this
94 * watermark send XOFF. Only used if RX flow control is enabled (ethtool -A)
95 * This also has an effect on RX/TX arbitration
96 */
97static int rx_xoff_thresh_bytes = -1;
98module_param(rx_xoff_thresh_bytes, int, 0644);
99MODULE_PARM_DESC(rx_xoff_thresh_bytes, "RX fifo XOFF threshold");
100
101/* RX FIFO XON watermark
102 *
103 * When the amount of the RX FIFO used decreases below this
104 * watermark send XON. Only used if TX flow control is enabled (ethtool -A)
105 * This also has an effect on RX/TX arbitration
106 */
107static int rx_xon_thresh_bytes = -1;
108module_param(rx_xon_thresh_bytes, int, 0644);
109MODULE_PARM_DESC(rx_xon_thresh_bytes, "RX fifo XON threshold");
110
Ben Hutchings2c3c3d02009-03-04 10:01:57 +0000111/* If FALCON_MAX_INT_ERRORS internal errors occur within
112 * FALCON_INT_ERROR_EXPIRE seconds, we consider the NIC broken and
113 * disable it.
114 */
115#define FALCON_INT_ERROR_EXPIRE 3600
116#define FALCON_MAX_INT_ERRORS 5
Ben Hutchings8ceee662008-04-27 12:55:59 +0100117
Ben Hutchings6bc5d3a2008-09-01 12:49:37 +0100118/* We poll for events every FLUSH_INTERVAL ms, and check FLUSH_POLL_COUNT times
119 */
120#define FALCON_FLUSH_INTERVAL 10
121#define FALCON_FLUSH_POLL_COUNT 100
Ben Hutchings8ceee662008-04-27 12:55:59 +0100122
123/**************************************************************************
124 *
125 * Falcon constants
126 *
127 **************************************************************************
128 */
129
Ben Hutchings8ceee662008-04-27 12:55:59 +0100130/* Size and alignment of special buffers (4KB) */
131#define FALCON_BUF_SIZE 4096
132
133/* Dummy SRAM size code */
134#define SRM_NB_BSZ_ONCHIP_ONLY (-1)
135
Ben Hutchings8ceee662008-04-27 12:55:59 +0100136#define FALCON_IS_DUAL_FUNC(efx) \
Ben Hutchings55668612008-05-16 21:16:10 +0100137 (falcon_rev(efx) < FALCON_REV_B0)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100138
139/**************************************************************************
140 *
141 * Falcon hardware access
142 *
143 **************************************************************************/
144
Ben Hutchings12d00ca2009-10-23 08:30:46 +0000145static inline void falcon_write_buf_tbl(struct efx_nic *efx, efx_qword_t *value,
146 unsigned int index)
147{
148 efx_sram_writeq(efx, efx->membase + efx->type->buf_tbl_base,
149 value, index);
150}
151
Ben Hutchings8ceee662008-04-27 12:55:59 +0100152/* Read the current event from the event queue */
153static inline efx_qword_t *falcon_event(struct efx_channel *channel,
154 unsigned int index)
155{
156 return (((efx_qword_t *) (channel->eventq.addr)) + index);
157}
158
159/* See if an event is present
160 *
161 * We check both the high and low dword of the event for all ones. We
162 * wrote all ones when we cleared the event, and no valid event can
163 * have all ones in either its high or low dwords. This approach is
164 * robust against reordering.
165 *
166 * Note that using a single 64-bit comparison is incorrect; even
167 * though the CPU read will be atomic, the DMA write may not be.
168 */
169static inline int falcon_event_present(efx_qword_t *event)
170{
171 return (!(EFX_DWORD_IS_ALL_ONES(event->dword[0]) |
172 EFX_DWORD_IS_ALL_ONES(event->dword[1])));
173}
174
175/**************************************************************************
176 *
177 * I2C bus - this is a bit-bashing interface using GPIO pins
178 * Note that it uses the output enables to tristate the outputs
179 * SDA is the data pin and SCL is the clock
180 *
181 **************************************************************************
182 */
Ben Hutchings37b5a602008-05-30 22:27:04 +0100183static void falcon_setsda(void *data, int state)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100184{
Ben Hutchings37b5a602008-05-30 22:27:04 +0100185 struct efx_nic *efx = (struct efx_nic *)data;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100186 efx_oword_t reg;
187
Ben Hutchings12d00ca2009-10-23 08:30:46 +0000188 efx_reado(efx, &reg, FR_AB_GPIO_CTL);
Ben Hutchings3e6c4532009-10-23 08:30:36 +0000189 EFX_SET_OWORD_FIELD(reg, FRF_AB_GPIO3_OEN, !state);
Ben Hutchings12d00ca2009-10-23 08:30:46 +0000190 efx_writeo(efx, &reg, FR_AB_GPIO_CTL);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100191}
192
Ben Hutchings37b5a602008-05-30 22:27:04 +0100193static void falcon_setscl(void *data, int state)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100194{
Ben Hutchings37b5a602008-05-30 22:27:04 +0100195 struct efx_nic *efx = (struct efx_nic *)data;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100196 efx_oword_t reg;
197
Ben Hutchings12d00ca2009-10-23 08:30:46 +0000198 efx_reado(efx, &reg, FR_AB_GPIO_CTL);
Ben Hutchings3e6c4532009-10-23 08:30:36 +0000199 EFX_SET_OWORD_FIELD(reg, FRF_AB_GPIO0_OEN, !state);
Ben Hutchings12d00ca2009-10-23 08:30:46 +0000200 efx_writeo(efx, &reg, FR_AB_GPIO_CTL);
Ben Hutchings37b5a602008-05-30 22:27:04 +0100201}
202
203static int falcon_getsda(void *data)
204{
205 struct efx_nic *efx = (struct efx_nic *)data;
206 efx_oword_t reg;
207
Ben Hutchings12d00ca2009-10-23 08:30:46 +0000208 efx_reado(efx, &reg, FR_AB_GPIO_CTL);
Ben Hutchings3e6c4532009-10-23 08:30:36 +0000209 return EFX_OWORD_FIELD(reg, FRF_AB_GPIO3_IN);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100210}
211
Ben Hutchings37b5a602008-05-30 22:27:04 +0100212static int falcon_getscl(void *data)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100213{
Ben Hutchings37b5a602008-05-30 22:27:04 +0100214 struct efx_nic *efx = (struct efx_nic *)data;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100215 efx_oword_t reg;
216
Ben Hutchings12d00ca2009-10-23 08:30:46 +0000217 efx_reado(efx, &reg, FR_AB_GPIO_CTL);
Ben Hutchings3e6c4532009-10-23 08:30:36 +0000218 return EFX_OWORD_FIELD(reg, FRF_AB_GPIO0_IN);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100219}
220
Ben Hutchings37b5a602008-05-30 22:27:04 +0100221static struct i2c_algo_bit_data falcon_i2c_bit_operations = {
222 .setsda = falcon_setsda,
223 .setscl = falcon_setscl,
Ben Hutchings8ceee662008-04-27 12:55:59 +0100224 .getsda = falcon_getsda,
225 .getscl = falcon_getscl,
Ben Hutchings62c78322008-05-30 22:27:46 +0100226 .udelay = 5,
Ben Hutchings9dadae62008-07-18 18:59:12 +0100227 /* Wait up to 50 ms for slave to let us pull SCL high */
228 .timeout = DIV_ROUND_UP(HZ, 20),
Ben Hutchings8ceee662008-04-27 12:55:59 +0100229};
230
231/**************************************************************************
232 *
233 * Falcon special buffer handling
234 * Special buffers are used for event queues and the TX and RX
235 * descriptor rings.
236 *
237 *************************************************************************/
238
239/*
240 * Initialise a Falcon special buffer
241 *
242 * This will define a buffer (previously allocated via
243 * falcon_alloc_special_buffer()) in Falcon's buffer table, allowing
244 * it to be used for event queues, descriptor rings etc.
245 */
Ben Hutchingsbc3c90a2008-09-01 12:48:46 +0100246static void
Ben Hutchings8ceee662008-04-27 12:55:59 +0100247falcon_init_special_buffer(struct efx_nic *efx,
248 struct efx_special_buffer *buffer)
249{
250 efx_qword_t buf_desc;
251 int index;
252 dma_addr_t dma_addr;
253 int i;
254
255 EFX_BUG_ON_PARANOID(!buffer->addr);
256
257 /* Write buffer descriptors to NIC */
258 for (i = 0; i < buffer->entries; i++) {
259 index = buffer->index + i;
260 dma_addr = buffer->dma_addr + (i * 4096);
261 EFX_LOG(efx, "mapping special buffer %d at %llx\n",
262 index, (unsigned long long)dma_addr);
Ben Hutchings3e6c4532009-10-23 08:30:36 +0000263 EFX_POPULATE_QWORD_3(buf_desc,
264 FRF_AZ_BUF_ADR_REGION, 0,
265 FRF_AZ_BUF_ADR_FBUF, dma_addr >> 12,
266 FRF_AZ_BUF_OWNER_ID_FBUF, 0);
Ben Hutchings12d00ca2009-10-23 08:30:46 +0000267 falcon_write_buf_tbl(efx, &buf_desc, index);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100268 }
Ben Hutchings8ceee662008-04-27 12:55:59 +0100269}
270
271/* Unmaps a buffer from Falcon and clears the buffer table entries */
272static void
273falcon_fini_special_buffer(struct efx_nic *efx,
274 struct efx_special_buffer *buffer)
275{
276 efx_oword_t buf_tbl_upd;
277 unsigned int start = buffer->index;
278 unsigned int end = (buffer->index + buffer->entries - 1);
279
280 if (!buffer->entries)
281 return;
282
283 EFX_LOG(efx, "unmapping special buffers %d-%d\n",
284 buffer->index, buffer->index + buffer->entries - 1);
285
286 EFX_POPULATE_OWORD_4(buf_tbl_upd,
Ben Hutchings3e6c4532009-10-23 08:30:36 +0000287 FRF_AZ_BUF_UPD_CMD, 0,
288 FRF_AZ_BUF_CLR_CMD, 1,
289 FRF_AZ_BUF_CLR_END_ID, end,
290 FRF_AZ_BUF_CLR_START_ID, start);
Ben Hutchings12d00ca2009-10-23 08:30:46 +0000291 efx_writeo(efx, &buf_tbl_upd, FR_AZ_BUF_TBL_UPD);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100292}
293
294/*
295 * Allocate a new Falcon special buffer
296 *
297 * This allocates memory for a new buffer, clears it and allocates a
298 * new buffer ID range. It does not write into Falcon's buffer table.
299 *
300 * This call will allocate 4KB buffers, since Falcon can't use 8KB
301 * buffers for event queues and descriptor rings.
302 */
303static int falcon_alloc_special_buffer(struct efx_nic *efx,
304 struct efx_special_buffer *buffer,
305 unsigned int len)
306{
307 struct falcon_nic_data *nic_data = efx->nic_data;
308
309 len = ALIGN(len, FALCON_BUF_SIZE);
310
311 buffer->addr = pci_alloc_consistent(efx->pci_dev, len,
312 &buffer->dma_addr);
313 if (!buffer->addr)
314 return -ENOMEM;
315 buffer->len = len;
316 buffer->entries = len / FALCON_BUF_SIZE;
317 BUG_ON(buffer->dma_addr & (FALCON_BUF_SIZE - 1));
318
319 /* All zeros is a potentially valid event so memset to 0xff */
320 memset(buffer->addr, 0xff, len);
321
322 /* Select new buffer ID */
323 buffer->index = nic_data->next_buffer_table;
324 nic_data->next_buffer_table += buffer->entries;
325
326 EFX_LOG(efx, "allocating special buffers %d-%d at %llx+%x "
Jaswinder Singh Rajput9c8976a2009-02-11 23:49:52 +0530327 "(virt %p phys %llx)\n", buffer->index,
Ben Hutchings8ceee662008-04-27 12:55:59 +0100328 buffer->index + buffer->entries - 1,
Jaswinder Singh Rajput9c8976a2009-02-11 23:49:52 +0530329 (u64)buffer->dma_addr, len,
330 buffer->addr, (u64)virt_to_phys(buffer->addr));
Ben Hutchings8ceee662008-04-27 12:55:59 +0100331
332 return 0;
333}
334
335static void falcon_free_special_buffer(struct efx_nic *efx,
336 struct efx_special_buffer *buffer)
337{
338 if (!buffer->addr)
339 return;
340
341 EFX_LOG(efx, "deallocating special buffers %d-%d at %llx+%x "
Jaswinder Singh Rajput9c8976a2009-02-11 23:49:52 +0530342 "(virt %p phys %llx)\n", buffer->index,
Ben Hutchings8ceee662008-04-27 12:55:59 +0100343 buffer->index + buffer->entries - 1,
Jaswinder Singh Rajput9c8976a2009-02-11 23:49:52 +0530344 (u64)buffer->dma_addr, buffer->len,
345 buffer->addr, (u64)virt_to_phys(buffer->addr));
Ben Hutchings8ceee662008-04-27 12:55:59 +0100346
347 pci_free_consistent(efx->pci_dev, buffer->len, buffer->addr,
348 buffer->dma_addr);
349 buffer->addr = NULL;
350 buffer->entries = 0;
351}
352
353/**************************************************************************
354 *
355 * Falcon generic buffer handling
356 * These buffers are used for interrupt status and MAC stats
357 *
358 **************************************************************************/
359
360static int falcon_alloc_buffer(struct efx_nic *efx,
361 struct efx_buffer *buffer, unsigned int len)
362{
363 buffer->addr = pci_alloc_consistent(efx->pci_dev, len,
364 &buffer->dma_addr);
365 if (!buffer->addr)
366 return -ENOMEM;
367 buffer->len = len;
368 memset(buffer->addr, 0, len);
369 return 0;
370}
371
372static void falcon_free_buffer(struct efx_nic *efx, struct efx_buffer *buffer)
373{
374 if (buffer->addr) {
375 pci_free_consistent(efx->pci_dev, buffer->len,
376 buffer->addr, buffer->dma_addr);
377 buffer->addr = NULL;
378 }
379}
380
381/**************************************************************************
382 *
383 * Falcon TX path
384 *
385 **************************************************************************/
386
387/* Returns a pointer to the specified transmit descriptor in the TX
388 * descriptor queue belonging to the specified channel.
389 */
390static inline efx_qword_t *falcon_tx_desc(struct efx_tx_queue *tx_queue,
391 unsigned int index)
392{
393 return (((efx_qword_t *) (tx_queue->txd.addr)) + index);
394}
395
396/* This writes to the TX_DESC_WPTR; write pointer for TX descriptor ring */
397static inline void falcon_notify_tx_desc(struct efx_tx_queue *tx_queue)
398{
399 unsigned write_ptr;
400 efx_dword_t reg;
401
Ben Hutchings3ffeabd2009-10-23 08:30:58 +0000402 write_ptr = tx_queue->write_count & EFX_TXQ_MASK;
Ben Hutchings3e6c4532009-10-23 08:30:36 +0000403 EFX_POPULATE_DWORD_1(reg, FRF_AZ_TX_DESC_WPTR_DWORD, write_ptr);
Ben Hutchings12d00ca2009-10-23 08:30:46 +0000404 efx_writed_page(tx_queue->efx, &reg,
405 FR_AZ_TX_DESC_UPD_DWORD_P0, tx_queue->queue);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100406}
407
408
409/* For each entry inserted into the software descriptor ring, create a
410 * descriptor in the hardware TX descriptor ring (in host memory), and
411 * write a doorbell.
412 */
413void falcon_push_buffers(struct efx_tx_queue *tx_queue)
414{
415
416 struct efx_tx_buffer *buffer;
417 efx_qword_t *txd;
418 unsigned write_ptr;
419
420 BUG_ON(tx_queue->write_count == tx_queue->insert_count);
421
422 do {
Ben Hutchings3ffeabd2009-10-23 08:30:58 +0000423 write_ptr = tx_queue->write_count & EFX_TXQ_MASK;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100424 buffer = &tx_queue->buffer[write_ptr];
425 txd = falcon_tx_desc(tx_queue, write_ptr);
426 ++tx_queue->write_count;
427
428 /* Create TX descriptor ring entry */
Ben Hutchings3e6c4532009-10-23 08:30:36 +0000429 EFX_POPULATE_QWORD_4(*txd,
430 FSF_AZ_TX_KER_CONT, buffer->continuation,
431 FSF_AZ_TX_KER_BYTE_COUNT, buffer->len,
432 FSF_AZ_TX_KER_BUF_REGION, 0,
433 FSF_AZ_TX_KER_BUF_ADDR, buffer->dma_addr);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100434 } while (tx_queue->write_count != tx_queue->insert_count);
435
436 wmb(); /* Ensure descriptors are written before they are fetched */
437 falcon_notify_tx_desc(tx_queue);
438}
439
440/* Allocate hardware resources for a TX queue */
441int falcon_probe_tx(struct efx_tx_queue *tx_queue)
442{
443 struct efx_nic *efx = tx_queue->efx;
Ben Hutchings3ffeabd2009-10-23 08:30:58 +0000444 BUILD_BUG_ON(EFX_TXQ_SIZE < 512 || EFX_TXQ_SIZE > 4096 ||
445 EFX_TXQ_SIZE & EFX_TXQ_MASK);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100446 return falcon_alloc_special_buffer(efx, &tx_queue->txd,
Ben Hutchings3ffeabd2009-10-23 08:30:58 +0000447 EFX_TXQ_SIZE * sizeof(efx_qword_t));
Ben Hutchings8ceee662008-04-27 12:55:59 +0100448}
449
Ben Hutchingsbc3c90a2008-09-01 12:48:46 +0100450void falcon_init_tx(struct efx_tx_queue *tx_queue)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100451{
452 efx_oword_t tx_desc_ptr;
453 struct efx_nic *efx = tx_queue->efx;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100454
Ben Hutchings6bc5d3a2008-09-01 12:49:37 +0100455 tx_queue->flushed = false;
456
Ben Hutchings8ceee662008-04-27 12:55:59 +0100457 /* Pin TX descriptor ring */
Ben Hutchingsbc3c90a2008-09-01 12:48:46 +0100458 falcon_init_special_buffer(efx, &tx_queue->txd);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100459
460 /* Push TX descriptor ring to card */
461 EFX_POPULATE_OWORD_10(tx_desc_ptr,
Ben Hutchings3e6c4532009-10-23 08:30:36 +0000462 FRF_AZ_TX_DESCQ_EN, 1,
463 FRF_AZ_TX_ISCSI_DDIG_EN, 0,
464 FRF_AZ_TX_ISCSI_HDIG_EN, 0,
465 FRF_AZ_TX_DESCQ_BUF_BASE_ID, tx_queue->txd.index,
466 FRF_AZ_TX_DESCQ_EVQ_ID,
467 tx_queue->channel->channel,
468 FRF_AZ_TX_DESCQ_OWNER_ID, 0,
469 FRF_AZ_TX_DESCQ_LABEL, tx_queue->queue,
Ben Hutchings3ffeabd2009-10-23 08:30:58 +0000470 FRF_AZ_TX_DESCQ_SIZE,
471 __ffs(tx_queue->txd.entries),
Ben Hutchings3e6c4532009-10-23 08:30:36 +0000472 FRF_AZ_TX_DESCQ_TYPE, 0,
473 FRF_BZ_TX_NON_IP_DROP_DIS, 1);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100474
Ben Hutchings55668612008-05-16 21:16:10 +0100475 if (falcon_rev(efx) >= FALCON_REV_B0) {
Ben Hutchings60ac1062008-09-01 12:44:59 +0100476 int csum = tx_queue->queue == EFX_TX_QUEUE_OFFLOAD_CSUM;
Ben Hutchings3e6c4532009-10-23 08:30:36 +0000477 EFX_SET_OWORD_FIELD(tx_desc_ptr, FRF_BZ_TX_IP_CHKSM_DIS, !csum);
478 EFX_SET_OWORD_FIELD(tx_desc_ptr, FRF_BZ_TX_TCP_CHKSM_DIS,
479 !csum);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100480 }
481
Ben Hutchings12d00ca2009-10-23 08:30:46 +0000482 efx_writeo_table(efx, &tx_desc_ptr, efx->type->txd_ptr_tbl_base,
483 tx_queue->queue);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100484
Ben Hutchings55668612008-05-16 21:16:10 +0100485 if (falcon_rev(efx) < FALCON_REV_B0) {
Ben Hutchings8ceee662008-04-27 12:55:59 +0100486 efx_oword_t reg;
487
Ben Hutchings60ac1062008-09-01 12:44:59 +0100488 /* Only 128 bits in this register */
489 BUILD_BUG_ON(EFX_TX_QUEUE_COUNT >= 128);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100490
Ben Hutchings12d00ca2009-10-23 08:30:46 +0000491 efx_reado(efx, &reg, FR_AA_TX_CHKSM_CFG);
Ben Hutchings60ac1062008-09-01 12:44:59 +0100492 if (tx_queue->queue == EFX_TX_QUEUE_OFFLOAD_CSUM)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100493 clear_bit_le(tx_queue->queue, (void *)&reg);
494 else
495 set_bit_le(tx_queue->queue, (void *)&reg);
Ben Hutchings12d00ca2009-10-23 08:30:46 +0000496 efx_writeo(efx, &reg, FR_AA_TX_CHKSM_CFG);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100497 }
Ben Hutchings8ceee662008-04-27 12:55:59 +0100498}
499
Ben Hutchings6bc5d3a2008-09-01 12:49:37 +0100500static void falcon_flush_tx_queue(struct efx_tx_queue *tx_queue)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100501{
502 struct efx_nic *efx = tx_queue->efx;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100503 efx_oword_t tx_flush_descq;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100504
505 /* Post a flush command */
506 EFX_POPULATE_OWORD_2(tx_flush_descq,
Ben Hutchings3e6c4532009-10-23 08:30:36 +0000507 FRF_AZ_TX_FLUSH_DESCQ_CMD, 1,
508 FRF_AZ_TX_FLUSH_DESCQ, tx_queue->queue);
Ben Hutchings12d00ca2009-10-23 08:30:46 +0000509 efx_writeo(efx, &tx_flush_descq, FR_AZ_TX_FLUSH_DESCQ);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100510}
511
512void falcon_fini_tx(struct efx_tx_queue *tx_queue)
513{
514 struct efx_nic *efx = tx_queue->efx;
515 efx_oword_t tx_desc_ptr;
516
Ben Hutchings6bc5d3a2008-09-01 12:49:37 +0100517 /* The queue should have been flushed */
518 WARN_ON(!tx_queue->flushed);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100519
520 /* Remove TX descriptor ring from card */
521 EFX_ZERO_OWORD(tx_desc_ptr);
Ben Hutchings12d00ca2009-10-23 08:30:46 +0000522 efx_writeo_table(efx, &tx_desc_ptr, efx->type->txd_ptr_tbl_base,
523 tx_queue->queue);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100524
525 /* Unpin TX descriptor ring */
526 falcon_fini_special_buffer(efx, &tx_queue->txd);
527}
528
529/* Free buffers backing TX queue */
530void falcon_remove_tx(struct efx_tx_queue *tx_queue)
531{
532 falcon_free_special_buffer(tx_queue->efx, &tx_queue->txd);
533}
534
535/**************************************************************************
536 *
537 * Falcon RX path
538 *
539 **************************************************************************/
540
541/* Returns a pointer to the specified descriptor in the RX descriptor queue */
542static inline efx_qword_t *falcon_rx_desc(struct efx_rx_queue *rx_queue,
543 unsigned int index)
544{
545 return (((efx_qword_t *) (rx_queue->rxd.addr)) + index);
546}
547
548/* This creates an entry in the RX descriptor queue */
549static inline void falcon_build_rx_desc(struct efx_rx_queue *rx_queue,
550 unsigned index)
551{
552 struct efx_rx_buffer *rx_buf;
553 efx_qword_t *rxd;
554
555 rxd = falcon_rx_desc(rx_queue, index);
556 rx_buf = efx_rx_buffer(rx_queue, index);
557 EFX_POPULATE_QWORD_3(*rxd,
Ben Hutchings3e6c4532009-10-23 08:30:36 +0000558 FSF_AZ_RX_KER_BUF_SIZE,
Ben Hutchings8ceee662008-04-27 12:55:59 +0100559 rx_buf->len -
560 rx_queue->efx->type->rx_buffer_padding,
Ben Hutchings3e6c4532009-10-23 08:30:36 +0000561 FSF_AZ_RX_KER_BUF_REGION, 0,
562 FSF_AZ_RX_KER_BUF_ADDR, rx_buf->dma_addr);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100563}
564
565/* This writes to the RX_DESC_WPTR register for the specified receive
566 * descriptor ring.
567 */
568void falcon_notify_rx_desc(struct efx_rx_queue *rx_queue)
569{
570 efx_dword_t reg;
571 unsigned write_ptr;
572
573 while (rx_queue->notified_count != rx_queue->added_count) {
574 falcon_build_rx_desc(rx_queue,
575 rx_queue->notified_count &
Ben Hutchings3ffeabd2009-10-23 08:30:58 +0000576 EFX_RXQ_MASK);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100577 ++rx_queue->notified_count;
578 }
579
580 wmb();
Ben Hutchings3ffeabd2009-10-23 08:30:58 +0000581 write_ptr = rx_queue->added_count & EFX_RXQ_MASK;
Ben Hutchings3e6c4532009-10-23 08:30:36 +0000582 EFX_POPULATE_DWORD_1(reg, FRF_AZ_RX_DESC_WPTR_DWORD, write_ptr);
Ben Hutchings12d00ca2009-10-23 08:30:46 +0000583 efx_writed_page(rx_queue->efx, &reg,
584 FR_AZ_RX_DESC_UPD_DWORD_P0, rx_queue->queue);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100585}
586
587int falcon_probe_rx(struct efx_rx_queue *rx_queue)
588{
589 struct efx_nic *efx = rx_queue->efx;
Ben Hutchings3ffeabd2009-10-23 08:30:58 +0000590 BUILD_BUG_ON(EFX_RXQ_SIZE < 512 || EFX_RXQ_SIZE > 4096 ||
591 EFX_RXQ_SIZE & EFX_RXQ_MASK);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100592 return falcon_alloc_special_buffer(efx, &rx_queue->rxd,
Ben Hutchings3ffeabd2009-10-23 08:30:58 +0000593 EFX_RXQ_SIZE * sizeof(efx_qword_t));
Ben Hutchings8ceee662008-04-27 12:55:59 +0100594}
595
Ben Hutchingsbc3c90a2008-09-01 12:48:46 +0100596void falcon_init_rx(struct efx_rx_queue *rx_queue)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100597{
598 efx_oword_t rx_desc_ptr;
599 struct efx_nic *efx = rx_queue->efx;
Ben Hutchingsdc8cfa52008-09-01 12:46:50 +0100600 bool is_b0 = falcon_rev(efx) >= FALCON_REV_B0;
601 bool iscsi_digest_en = is_b0;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100602
603 EFX_LOG(efx, "RX queue %d ring in special buffers %d-%d\n",
604 rx_queue->queue, rx_queue->rxd.index,
605 rx_queue->rxd.index + rx_queue->rxd.entries - 1);
606
Ben Hutchings6bc5d3a2008-09-01 12:49:37 +0100607 rx_queue->flushed = false;
608
Ben Hutchings8ceee662008-04-27 12:55:59 +0100609 /* Pin RX descriptor ring */
Ben Hutchingsbc3c90a2008-09-01 12:48:46 +0100610 falcon_init_special_buffer(efx, &rx_queue->rxd);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100611
612 /* Push RX descriptor ring to card */
613 EFX_POPULATE_OWORD_10(rx_desc_ptr,
Ben Hutchings3e6c4532009-10-23 08:30:36 +0000614 FRF_AZ_RX_ISCSI_DDIG_EN, iscsi_digest_en,
615 FRF_AZ_RX_ISCSI_HDIG_EN, iscsi_digest_en,
616 FRF_AZ_RX_DESCQ_BUF_BASE_ID, rx_queue->rxd.index,
617 FRF_AZ_RX_DESCQ_EVQ_ID,
618 rx_queue->channel->channel,
619 FRF_AZ_RX_DESCQ_OWNER_ID, 0,
620 FRF_AZ_RX_DESCQ_LABEL, rx_queue->queue,
Ben Hutchings3ffeabd2009-10-23 08:30:58 +0000621 FRF_AZ_RX_DESCQ_SIZE,
622 __ffs(rx_queue->rxd.entries),
Ben Hutchings3e6c4532009-10-23 08:30:36 +0000623 FRF_AZ_RX_DESCQ_TYPE, 0 /* kernel queue */ ,
Ben Hutchings8ceee662008-04-27 12:55:59 +0100624 /* For >=B0 this is scatter so disable */
Ben Hutchings3e6c4532009-10-23 08:30:36 +0000625 FRF_AZ_RX_DESCQ_JUMBO, !is_b0,
626 FRF_AZ_RX_DESCQ_EN, 1);
Ben Hutchings12d00ca2009-10-23 08:30:46 +0000627 efx_writeo_table(efx, &rx_desc_ptr, efx->type->rxd_ptr_tbl_base,
628 rx_queue->queue);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100629}
630
Ben Hutchings6bc5d3a2008-09-01 12:49:37 +0100631static void falcon_flush_rx_queue(struct efx_rx_queue *rx_queue)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100632{
633 struct efx_nic *efx = rx_queue->efx;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100634 efx_oword_t rx_flush_descq;
635
636 /* Post a flush command */
637 EFX_POPULATE_OWORD_2(rx_flush_descq,
Ben Hutchings3e6c4532009-10-23 08:30:36 +0000638 FRF_AZ_RX_FLUSH_DESCQ_CMD, 1,
639 FRF_AZ_RX_FLUSH_DESCQ, rx_queue->queue);
Ben Hutchings12d00ca2009-10-23 08:30:46 +0000640 efx_writeo(efx, &rx_flush_descq, FR_AZ_RX_FLUSH_DESCQ);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100641}
642
643void falcon_fini_rx(struct efx_rx_queue *rx_queue)
644{
645 efx_oword_t rx_desc_ptr;
646 struct efx_nic *efx = rx_queue->efx;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100647
Ben Hutchings6bc5d3a2008-09-01 12:49:37 +0100648 /* The queue should already have been flushed */
649 WARN_ON(!rx_queue->flushed);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100650
651 /* Remove RX descriptor ring from card */
652 EFX_ZERO_OWORD(rx_desc_ptr);
Ben Hutchings12d00ca2009-10-23 08:30:46 +0000653 efx_writeo_table(efx, &rx_desc_ptr, efx->type->rxd_ptr_tbl_base,
654 rx_queue->queue);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100655
656 /* Unpin RX descriptor ring */
657 falcon_fini_special_buffer(efx, &rx_queue->rxd);
658}
659
660/* Free buffers backing RX queue */
661void falcon_remove_rx(struct efx_rx_queue *rx_queue)
662{
663 falcon_free_special_buffer(rx_queue->efx, &rx_queue->rxd);
664}
665
666/**************************************************************************
667 *
668 * Falcon event queue processing
669 * Event queues are processed by per-channel tasklets.
670 *
671 **************************************************************************/
672
673/* Update a channel's event queue's read pointer (RPTR) register
674 *
675 * This writes the EVQ_RPTR_REG register for the specified channel's
676 * event queue.
677 *
678 * Note that EVQ_RPTR_REG contains the index of the "last read" event,
679 * whereas channel->eventq_read_ptr contains the index of the "next to
680 * read" event.
681 */
682void falcon_eventq_read_ack(struct efx_channel *channel)
683{
684 efx_dword_t reg;
685 struct efx_nic *efx = channel->efx;
686
Ben Hutchings3e6c4532009-10-23 08:30:36 +0000687 EFX_POPULATE_DWORD_1(reg, FRF_AZ_EVQ_RPTR, channel->eventq_read_ptr);
Ben Hutchings12d00ca2009-10-23 08:30:46 +0000688 efx_writed_table(efx, &reg, efx->type->evq_rptr_tbl_base,
Ben Hutchingsd3074022008-09-01 12:48:03 +0100689 channel->channel);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100690}
691
692/* Use HW to insert a SW defined event */
693void falcon_generate_event(struct efx_channel *channel, efx_qword_t *event)
694{
695 efx_oword_t drv_ev_reg;
696
Ben Hutchings3e6c4532009-10-23 08:30:36 +0000697 BUILD_BUG_ON(FRF_AZ_DRV_EV_DATA_LBN != 0 ||
698 FRF_AZ_DRV_EV_DATA_WIDTH != 64);
699 drv_ev_reg.u32[0] = event->u32[0];
700 drv_ev_reg.u32[1] = event->u32[1];
701 drv_ev_reg.u32[2] = 0;
702 drv_ev_reg.u32[3] = 0;
703 EFX_SET_OWORD_FIELD(drv_ev_reg, FRF_AZ_DRV_EV_QID, channel->channel);
Ben Hutchings12d00ca2009-10-23 08:30:46 +0000704 efx_writeo(channel->efx, &drv_ev_reg, FR_AZ_DRV_EV);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100705}
706
707/* Handle a transmit completion event
708 *
709 * Falcon batches TX completion events; the message we receive is of
710 * the form "complete all TX events up to this index".
711 */
Ben Hutchings4d566062008-09-01 12:47:12 +0100712static void falcon_handle_tx_event(struct efx_channel *channel,
713 efx_qword_t *event)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100714{
715 unsigned int tx_ev_desc_ptr;
716 unsigned int tx_ev_q_label;
717 struct efx_tx_queue *tx_queue;
718 struct efx_nic *efx = channel->efx;
719
Ben Hutchings3e6c4532009-10-23 08:30:36 +0000720 if (likely(EFX_QWORD_FIELD(*event, FSF_AZ_TX_EV_COMP))) {
Ben Hutchings8ceee662008-04-27 12:55:59 +0100721 /* Transmit completion */
Ben Hutchings3e6c4532009-10-23 08:30:36 +0000722 tx_ev_desc_ptr = EFX_QWORD_FIELD(*event, FSF_AZ_TX_EV_DESC_PTR);
723 tx_ev_q_label = EFX_QWORD_FIELD(*event, FSF_AZ_TX_EV_Q_LABEL);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100724 tx_queue = &efx->tx_queue[tx_ev_q_label];
Ben Hutchings6fb70fd2009-03-20 13:30:37 +0000725 channel->irq_mod_score +=
726 (tx_ev_desc_ptr - tx_queue->read_count) &
Ben Hutchings3ffeabd2009-10-23 08:30:58 +0000727 EFX_TXQ_MASK;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100728 efx_xmit_done(tx_queue, tx_ev_desc_ptr);
Ben Hutchings3e6c4532009-10-23 08:30:36 +0000729 } else if (EFX_QWORD_FIELD(*event, FSF_AZ_TX_EV_WQ_FF_FULL)) {
Ben Hutchings8ceee662008-04-27 12:55:59 +0100730 /* Rewrite the FIFO write pointer */
Ben Hutchings3e6c4532009-10-23 08:30:36 +0000731 tx_ev_q_label = EFX_QWORD_FIELD(*event, FSF_AZ_TX_EV_Q_LABEL);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100732 tx_queue = &efx->tx_queue[tx_ev_q_label];
733
Ben Hutchings55668612008-05-16 21:16:10 +0100734 if (efx_dev_registered(efx))
Ben Hutchings8ceee662008-04-27 12:55:59 +0100735 netif_tx_lock(efx->net_dev);
736 falcon_notify_tx_desc(tx_queue);
Ben Hutchings55668612008-05-16 21:16:10 +0100737 if (efx_dev_registered(efx))
Ben Hutchings8ceee662008-04-27 12:55:59 +0100738 netif_tx_unlock(efx->net_dev);
Ben Hutchings3e6c4532009-10-23 08:30:36 +0000739 } else if (EFX_QWORD_FIELD(*event, FSF_AZ_TX_EV_PKT_ERR) &&
Ben Hutchings8ceee662008-04-27 12:55:59 +0100740 EFX_WORKAROUND_10727(efx)) {
741 efx_schedule_reset(efx, RESET_TYPE_TX_DESC_FETCH);
742 } else {
743 EFX_ERR(efx, "channel %d unexpected TX event "
744 EFX_QWORD_FMT"\n", channel->channel,
745 EFX_QWORD_VAL(*event));
746 }
747}
748
Ben Hutchings8ceee662008-04-27 12:55:59 +0100749/* Detect errors included in the rx_evt_pkt_ok bit. */
750static void falcon_handle_rx_not_ok(struct efx_rx_queue *rx_queue,
751 const efx_qword_t *event,
Ben Hutchingsdc8cfa52008-09-01 12:46:50 +0100752 bool *rx_ev_pkt_ok,
753 bool *discard)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100754{
755 struct efx_nic *efx = rx_queue->efx;
Ben Hutchingsdc8cfa52008-09-01 12:46:50 +0100756 bool rx_ev_buf_owner_id_err, rx_ev_ip_hdr_chksum_err;
757 bool rx_ev_tcp_udp_chksum_err, rx_ev_eth_crc_err;
758 bool rx_ev_frm_trunc, rx_ev_drib_nib, rx_ev_tobe_disc;
759 bool rx_ev_other_err, rx_ev_pause_frm;
760 bool rx_ev_ip_frag_err, rx_ev_hdr_type, rx_ev_mcast_pkt;
761 unsigned rx_ev_pkt_type;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100762
Ben Hutchings3e6c4532009-10-23 08:30:36 +0000763 rx_ev_hdr_type = EFX_QWORD_FIELD(*event, FSF_AZ_RX_EV_HDR_TYPE);
764 rx_ev_mcast_pkt = EFX_QWORD_FIELD(*event, FSF_AZ_RX_EV_MCAST_PKT);
765 rx_ev_tobe_disc = EFX_QWORD_FIELD(*event, FSF_AZ_RX_EV_TOBE_DISC);
766 rx_ev_pkt_type = EFX_QWORD_FIELD(*event, FSF_AZ_RX_EV_PKT_TYPE);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100767 rx_ev_buf_owner_id_err = EFX_QWORD_FIELD(*event,
Ben Hutchings3e6c4532009-10-23 08:30:36 +0000768 FSF_AZ_RX_EV_BUF_OWNER_ID_ERR);
769 rx_ev_ip_frag_err = EFX_QWORD_FIELD(*event, FSF_AZ_RX_EV_IP_FRAG_ERR);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100770 rx_ev_ip_hdr_chksum_err = EFX_QWORD_FIELD(*event,
Ben Hutchings3e6c4532009-10-23 08:30:36 +0000771 FSF_AZ_RX_EV_IP_HDR_CHKSUM_ERR);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100772 rx_ev_tcp_udp_chksum_err = EFX_QWORD_FIELD(*event,
Ben Hutchings3e6c4532009-10-23 08:30:36 +0000773 FSF_AZ_RX_EV_TCP_UDP_CHKSUM_ERR);
774 rx_ev_eth_crc_err = EFX_QWORD_FIELD(*event, FSF_AZ_RX_EV_ETH_CRC_ERR);
775 rx_ev_frm_trunc = EFX_QWORD_FIELD(*event, FSF_AZ_RX_EV_FRM_TRUNC);
Ben Hutchings55668612008-05-16 21:16:10 +0100776 rx_ev_drib_nib = ((falcon_rev(efx) >= FALCON_REV_B0) ?
Ben Hutchings3e6c4532009-10-23 08:30:36 +0000777 0 : EFX_QWORD_FIELD(*event, FSF_AA_RX_EV_DRIB_NIB));
778 rx_ev_pause_frm = EFX_QWORD_FIELD(*event, FSF_AZ_RX_EV_PAUSE_FRM_ERR);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100779
780 /* Every error apart from tobe_disc and pause_frm */
781 rx_ev_other_err = (rx_ev_drib_nib | rx_ev_tcp_udp_chksum_err |
782 rx_ev_buf_owner_id_err | rx_ev_eth_crc_err |
783 rx_ev_frm_trunc | rx_ev_ip_hdr_chksum_err);
784
Ben Hutchings50050872008-12-12 21:42:42 -0800785 /* Count errors that are not in MAC stats. Ignore expected
786 * checksum errors during self-test. */
Ben Hutchings8ceee662008-04-27 12:55:59 +0100787 if (rx_ev_frm_trunc)
788 ++rx_queue->channel->n_rx_frm_trunc;
789 else if (rx_ev_tobe_disc)
790 ++rx_queue->channel->n_rx_tobe_disc;
Ben Hutchings50050872008-12-12 21:42:42 -0800791 else if (!efx->loopback_selftest) {
792 if (rx_ev_ip_hdr_chksum_err)
793 ++rx_queue->channel->n_rx_ip_hdr_chksum_err;
794 else if (rx_ev_tcp_udp_chksum_err)
795 ++rx_queue->channel->n_rx_tcp_udp_chksum_err;
796 }
Ben Hutchings8ceee662008-04-27 12:55:59 +0100797 if (rx_ev_ip_frag_err)
798 ++rx_queue->channel->n_rx_ip_frag_err;
799
800 /* The frame must be discarded if any of these are true. */
801 *discard = (rx_ev_eth_crc_err | rx_ev_frm_trunc | rx_ev_drib_nib |
802 rx_ev_tobe_disc | rx_ev_pause_frm);
803
804 /* TOBE_DISC is expected on unicast mismatches; don't print out an
805 * error message. FRM_TRUNC indicates RXDP dropped the packet due
806 * to a FIFO overflow.
807 */
808#ifdef EFX_ENABLE_DEBUG
809 if (rx_ev_other_err) {
810 EFX_INFO_RL(efx, " RX queue %d unexpected RX event "
Ben Hutchings5b39fe32008-09-01 12:46:03 +0100811 EFX_QWORD_FMT "%s%s%s%s%s%s%s%s\n",
Ben Hutchings8ceee662008-04-27 12:55:59 +0100812 rx_queue->queue, EFX_QWORD_VAL(*event),
813 rx_ev_buf_owner_id_err ? " [OWNER_ID_ERR]" : "",
814 rx_ev_ip_hdr_chksum_err ?
815 " [IP_HDR_CHKSUM_ERR]" : "",
816 rx_ev_tcp_udp_chksum_err ?
817 " [TCP_UDP_CHKSUM_ERR]" : "",
818 rx_ev_eth_crc_err ? " [ETH_CRC_ERR]" : "",
819 rx_ev_frm_trunc ? " [FRM_TRUNC]" : "",
820 rx_ev_drib_nib ? " [DRIB_NIB]" : "",
821 rx_ev_tobe_disc ? " [TOBE_DISC]" : "",
Ben Hutchings5b39fe32008-09-01 12:46:03 +0100822 rx_ev_pause_frm ? " [PAUSE]" : "");
Ben Hutchings8ceee662008-04-27 12:55:59 +0100823 }
824#endif
Ben Hutchings8ceee662008-04-27 12:55:59 +0100825}
826
827/* Handle receive events that are not in-order. */
828static void falcon_handle_rx_bad_index(struct efx_rx_queue *rx_queue,
829 unsigned index)
830{
831 struct efx_nic *efx = rx_queue->efx;
832 unsigned expected, dropped;
833
Ben Hutchings3ffeabd2009-10-23 08:30:58 +0000834 expected = rx_queue->removed_count & EFX_RXQ_MASK;
835 dropped = (index - expected) & EFX_RXQ_MASK;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100836 EFX_INFO(efx, "dropped %d events (index=%d expected=%d)\n",
837 dropped, index, expected);
838
839 efx_schedule_reset(efx, EFX_WORKAROUND_5676(efx) ?
840 RESET_TYPE_RX_RECOVERY : RESET_TYPE_DISABLE);
841}
842
843/* Handle a packet received event
844 *
845 * Falcon silicon gives a "discard" flag if it's a unicast packet with the
846 * wrong destination address
847 * Also "is multicast" and "matches multicast filter" flags can be used to
848 * discard non-matching multicast packets.
849 */
Ben Hutchings42cbe2d2008-09-01 12:48:08 +0100850static void falcon_handle_rx_event(struct efx_channel *channel,
851 const efx_qword_t *event)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100852{
Ben Hutchings42cbe2d2008-09-01 12:48:08 +0100853 unsigned int rx_ev_desc_ptr, rx_ev_byte_cnt;
Ben Hutchingsdc8cfa52008-09-01 12:46:50 +0100854 unsigned int rx_ev_hdr_type, rx_ev_mcast_pkt;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100855 unsigned expected_ptr;
Ben Hutchingsdc8cfa52008-09-01 12:46:50 +0100856 bool rx_ev_pkt_ok, discard = false, checksummed;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100857 struct efx_rx_queue *rx_queue;
858 struct efx_nic *efx = channel->efx;
859
860 /* Basic packet information */
Ben Hutchings3e6c4532009-10-23 08:30:36 +0000861 rx_ev_byte_cnt = EFX_QWORD_FIELD(*event, FSF_AZ_RX_EV_BYTE_CNT);
862 rx_ev_pkt_ok = EFX_QWORD_FIELD(*event, FSF_AZ_RX_EV_PKT_OK);
863 rx_ev_hdr_type = EFX_QWORD_FIELD(*event, FSF_AZ_RX_EV_HDR_TYPE);
864 WARN_ON(EFX_QWORD_FIELD(*event, FSF_AZ_RX_EV_JUMBO_CONT));
865 WARN_ON(EFX_QWORD_FIELD(*event, FSF_AZ_RX_EV_SOP) != 1);
866 WARN_ON(EFX_QWORD_FIELD(*event, FSF_AZ_RX_EV_Q_LABEL) !=
867 channel->channel);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100868
Ben Hutchings42cbe2d2008-09-01 12:48:08 +0100869 rx_queue = &efx->rx_queue[channel->channel];
Ben Hutchings8ceee662008-04-27 12:55:59 +0100870
Ben Hutchings3e6c4532009-10-23 08:30:36 +0000871 rx_ev_desc_ptr = EFX_QWORD_FIELD(*event, FSF_AZ_RX_EV_DESC_PTR);
Ben Hutchings3ffeabd2009-10-23 08:30:58 +0000872 expected_ptr = rx_queue->removed_count & EFX_RXQ_MASK;
Ben Hutchings42cbe2d2008-09-01 12:48:08 +0100873 if (unlikely(rx_ev_desc_ptr != expected_ptr))
Ben Hutchings8ceee662008-04-27 12:55:59 +0100874 falcon_handle_rx_bad_index(rx_queue, rx_ev_desc_ptr);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100875
876 if (likely(rx_ev_pkt_ok)) {
877 /* If packet is marked as OK and packet type is TCP/IPv4 or
878 * UDP/IPv4, then we can rely on the hardware checksum.
879 */
Ben Hutchings3e6c4532009-10-23 08:30:36 +0000880 checksummed =
881 rx_ev_hdr_type == FSE_AB_RX_EV_HDR_TYPE_IPV4_TCP ||
882 rx_ev_hdr_type == FSE_AB_RX_EV_HDR_TYPE_IPV4_UDP;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100883 } else {
884 falcon_handle_rx_not_ok(rx_queue, event, &rx_ev_pkt_ok,
Ben Hutchings5b39fe32008-09-01 12:46:03 +0100885 &discard);
Ben Hutchingsdc8cfa52008-09-01 12:46:50 +0100886 checksummed = false;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100887 }
888
889 /* Detect multicast packets that didn't match the filter */
Ben Hutchings3e6c4532009-10-23 08:30:36 +0000890 rx_ev_mcast_pkt = EFX_QWORD_FIELD(*event, FSF_AZ_RX_EV_MCAST_PKT);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100891 if (rx_ev_mcast_pkt) {
892 unsigned int rx_ev_mcast_hash_match =
Ben Hutchings3e6c4532009-10-23 08:30:36 +0000893 EFX_QWORD_FIELD(*event, FSF_AZ_RX_EV_MCAST_HASH_MATCH);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100894
895 if (unlikely(!rx_ev_mcast_hash_match))
Ben Hutchingsdc8cfa52008-09-01 12:46:50 +0100896 discard = true;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100897 }
898
Ben Hutchings6fb70fd2009-03-20 13:30:37 +0000899 channel->irq_mod_score += 2;
900
Ben Hutchings8ceee662008-04-27 12:55:59 +0100901 /* Handle received packet */
902 efx_rx_packet(rx_queue, rx_ev_desc_ptr, rx_ev_byte_cnt,
903 checksummed, discard);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100904}
905
906/* Global events are basically PHY events */
907static void falcon_handle_global_event(struct efx_channel *channel,
908 efx_qword_t *event)
909{
910 struct efx_nic *efx = channel->efx;
Ben Hutchings766ca0f2008-12-12 21:59:24 -0800911 bool handled = false;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100912
Ben Hutchings3e6c4532009-10-23 08:30:36 +0000913 if (EFX_QWORD_FIELD(*event, FSF_AB_GLB_EV_G_PHY0_INTR) ||
914 EFX_QWORD_FIELD(*event, FSF_AB_GLB_EV_XG_PHY0_INTR) ||
915 EFX_QWORD_FIELD(*event, FSF_AB_GLB_EV_XFP_PHY0_INTR)) {
Ben Hutchings766ca0f2008-12-12 21:59:24 -0800916 efx->phy_op->clear_interrupt(efx);
917 queue_work(efx->workqueue, &efx->phy_work);
918 handled = true;
919 }
Ben Hutchings8ceee662008-04-27 12:55:59 +0100920
Ben Hutchings55668612008-05-16 21:16:10 +0100921 if ((falcon_rev(efx) >= FALCON_REV_B0) &&
Ben Hutchings3e6c4532009-10-23 08:30:36 +0000922 EFX_QWORD_FIELD(*event, FSF_BB_GLB_EV_XG_MGT_INTR)) {
Ben Hutchings766ca0f2008-12-12 21:59:24 -0800923 queue_work(efx->workqueue, &efx->mac_work);
Ben Hutchingsdc8cfa52008-09-01 12:46:50 +0100924 handled = true;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100925 }
926
Ben Hutchings56241ce2009-10-23 08:30:06 +0000927 if (falcon_rev(efx) <= FALCON_REV_A1 ?
Ben Hutchings3e6c4532009-10-23 08:30:36 +0000928 EFX_QWORD_FIELD(*event, FSF_AA_GLB_EV_RX_RECOVERY) :
929 EFX_QWORD_FIELD(*event, FSF_BB_GLB_EV_RX_RECOVERY)) {
Ben Hutchings8ceee662008-04-27 12:55:59 +0100930 EFX_ERR(efx, "channel %d seen global RX_RESET "
931 "event. Resetting.\n", channel->channel);
932
933 atomic_inc(&efx->rx_reset);
934 efx_schedule_reset(efx, EFX_WORKAROUND_6555(efx) ?
935 RESET_TYPE_RX_RECOVERY : RESET_TYPE_DISABLE);
Ben Hutchingsdc8cfa52008-09-01 12:46:50 +0100936 handled = true;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100937 }
938
939 if (!handled)
940 EFX_ERR(efx, "channel %d unknown global event "
941 EFX_QWORD_FMT "\n", channel->channel,
942 EFX_QWORD_VAL(*event));
943}
944
945static void falcon_handle_driver_event(struct efx_channel *channel,
946 efx_qword_t *event)
947{
948 struct efx_nic *efx = channel->efx;
949 unsigned int ev_sub_code;
950 unsigned int ev_sub_data;
951
Ben Hutchings3e6c4532009-10-23 08:30:36 +0000952 ev_sub_code = EFX_QWORD_FIELD(*event, FSF_AZ_DRIVER_EV_SUBCODE);
953 ev_sub_data = EFX_QWORD_FIELD(*event, FSF_AZ_DRIVER_EV_SUBDATA);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100954
955 switch (ev_sub_code) {
Ben Hutchings3e6c4532009-10-23 08:30:36 +0000956 case FSE_AZ_TX_DESCQ_FLS_DONE_EV:
Ben Hutchings8ceee662008-04-27 12:55:59 +0100957 EFX_TRACE(efx, "channel %d TXQ %d flushed\n",
958 channel->channel, ev_sub_data);
959 break;
Ben Hutchings3e6c4532009-10-23 08:30:36 +0000960 case FSE_AZ_RX_DESCQ_FLS_DONE_EV:
Ben Hutchings8ceee662008-04-27 12:55:59 +0100961 EFX_TRACE(efx, "channel %d RXQ %d flushed\n",
962 channel->channel, ev_sub_data);
963 break;
Ben Hutchings3e6c4532009-10-23 08:30:36 +0000964 case FSE_AZ_EVQ_INIT_DONE_EV:
Ben Hutchings8ceee662008-04-27 12:55:59 +0100965 EFX_LOG(efx, "channel %d EVQ %d initialised\n",
966 channel->channel, ev_sub_data);
967 break;
Ben Hutchings3e6c4532009-10-23 08:30:36 +0000968 case FSE_AZ_SRM_UPD_DONE_EV:
Ben Hutchings8ceee662008-04-27 12:55:59 +0100969 EFX_TRACE(efx, "channel %d SRAM update done\n",
970 channel->channel);
971 break;
Ben Hutchings3e6c4532009-10-23 08:30:36 +0000972 case FSE_AZ_WAKE_UP_EV:
Ben Hutchings8ceee662008-04-27 12:55:59 +0100973 EFX_TRACE(efx, "channel %d RXQ %d wakeup event\n",
974 channel->channel, ev_sub_data);
975 break;
Ben Hutchings3e6c4532009-10-23 08:30:36 +0000976 case FSE_AZ_TIMER_EV:
Ben Hutchings8ceee662008-04-27 12:55:59 +0100977 EFX_TRACE(efx, "channel %d RX queue %d timer expired\n",
978 channel->channel, ev_sub_data);
979 break;
Ben Hutchings3e6c4532009-10-23 08:30:36 +0000980 case FSE_AA_RX_RECOVER_EV:
Ben Hutchings8ceee662008-04-27 12:55:59 +0100981 EFX_ERR(efx, "channel %d seen DRIVER RX_RESET event. "
982 "Resetting.\n", channel->channel);
Ben Hutchings05e3ec02008-05-07 13:00:39 +0100983 atomic_inc(&efx->rx_reset);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100984 efx_schedule_reset(efx,
985 EFX_WORKAROUND_6555(efx) ?
986 RESET_TYPE_RX_RECOVERY :
987 RESET_TYPE_DISABLE);
988 break;
Ben Hutchings3e6c4532009-10-23 08:30:36 +0000989 case FSE_BZ_RX_DSC_ERROR_EV:
Ben Hutchings8ceee662008-04-27 12:55:59 +0100990 EFX_ERR(efx, "RX DMA Q %d reports descriptor fetch error."
991 " RX Q %d is disabled.\n", ev_sub_data, ev_sub_data);
992 efx_schedule_reset(efx, RESET_TYPE_RX_DESC_FETCH);
993 break;
Ben Hutchings3e6c4532009-10-23 08:30:36 +0000994 case FSE_BZ_TX_DSC_ERROR_EV:
Ben Hutchings8ceee662008-04-27 12:55:59 +0100995 EFX_ERR(efx, "TX DMA Q %d reports descriptor fetch error."
996 " TX Q %d is disabled.\n", ev_sub_data, ev_sub_data);
997 efx_schedule_reset(efx, RESET_TYPE_TX_DESC_FETCH);
998 break;
999 default:
1000 EFX_TRACE(efx, "channel %d unknown driver event code %d "
1001 "data %04x\n", channel->channel, ev_sub_code,
1002 ev_sub_data);
1003 break;
1004 }
1005}
1006
Ben Hutchings42cbe2d2008-09-01 12:48:08 +01001007int falcon_process_eventq(struct efx_channel *channel, int rx_quota)
Ben Hutchings8ceee662008-04-27 12:55:59 +01001008{
1009 unsigned int read_ptr;
1010 efx_qword_t event, *p_event;
1011 int ev_code;
Ben Hutchings42cbe2d2008-09-01 12:48:08 +01001012 int rx_packets = 0;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001013
1014 read_ptr = channel->eventq_read_ptr;
1015
1016 do {
1017 p_event = falcon_event(channel, read_ptr);
1018 event = *p_event;
1019
1020 if (!falcon_event_present(&event))
1021 /* End of events */
1022 break;
1023
1024 EFX_TRACE(channel->efx, "channel %d event is "EFX_QWORD_FMT"\n",
1025 channel->channel, EFX_QWORD_VAL(event));
1026
1027 /* Clear this event by marking it all ones */
1028 EFX_SET_QWORD(*p_event);
1029
Ben Hutchings3e6c4532009-10-23 08:30:36 +00001030 ev_code = EFX_QWORD_FIELD(event, FSF_AZ_EV_CODE);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001031
1032 switch (ev_code) {
Ben Hutchings3e6c4532009-10-23 08:30:36 +00001033 case FSE_AZ_EV_CODE_RX_EV:
Ben Hutchings42cbe2d2008-09-01 12:48:08 +01001034 falcon_handle_rx_event(channel, &event);
1035 ++rx_packets;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001036 break;
Ben Hutchings3e6c4532009-10-23 08:30:36 +00001037 case FSE_AZ_EV_CODE_TX_EV:
Ben Hutchings8ceee662008-04-27 12:55:59 +01001038 falcon_handle_tx_event(channel, &event);
1039 break;
Ben Hutchings3e6c4532009-10-23 08:30:36 +00001040 case FSE_AZ_EV_CODE_DRV_GEN_EV:
1041 channel->eventq_magic = EFX_QWORD_FIELD(
1042 event, FSF_AZ_DRV_GEN_EV_MAGIC);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001043 EFX_LOG(channel->efx, "channel %d received generated "
1044 "event "EFX_QWORD_FMT"\n", channel->channel,
1045 EFX_QWORD_VAL(event));
1046 break;
Ben Hutchings3e6c4532009-10-23 08:30:36 +00001047 case FSE_AZ_EV_CODE_GLOBAL_EV:
Ben Hutchings8ceee662008-04-27 12:55:59 +01001048 falcon_handle_global_event(channel, &event);
1049 break;
Ben Hutchings3e6c4532009-10-23 08:30:36 +00001050 case FSE_AZ_EV_CODE_DRIVER_EV:
Ben Hutchings8ceee662008-04-27 12:55:59 +01001051 falcon_handle_driver_event(channel, &event);
1052 break;
1053 default:
1054 EFX_ERR(channel->efx, "channel %d unknown event type %d"
1055 " (data " EFX_QWORD_FMT ")\n", channel->channel,
1056 ev_code, EFX_QWORD_VAL(event));
1057 }
1058
1059 /* Increment read pointer */
Ben Hutchings3ffeabd2009-10-23 08:30:58 +00001060 read_ptr = (read_ptr + 1) & EFX_EVQ_MASK;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001061
Ben Hutchings42cbe2d2008-09-01 12:48:08 +01001062 } while (rx_packets < rx_quota);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001063
1064 channel->eventq_read_ptr = read_ptr;
Ben Hutchings42cbe2d2008-09-01 12:48:08 +01001065 return rx_packets;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001066}
1067
1068void falcon_set_int_moderation(struct efx_channel *channel)
1069{
1070 efx_dword_t timer_cmd;
1071 struct efx_nic *efx = channel->efx;
1072
1073 /* Set timer register */
1074 if (channel->irq_moderation) {
1075 /* Round to resolution supported by hardware. The value we
1076 * program is based at 0. So actual interrupt moderation
1077 * achieved is ((x + 1) * res).
1078 */
Ben Hutchings6fb70fd2009-03-20 13:30:37 +00001079 channel->irq_moderation -= (channel->irq_moderation %
1080 FALCON_IRQ_MOD_RESOLUTION);
1081 if (channel->irq_moderation < FALCON_IRQ_MOD_RESOLUTION)
1082 channel->irq_moderation = FALCON_IRQ_MOD_RESOLUTION;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001083 EFX_POPULATE_DWORD_2(timer_cmd,
Ben Hutchings3e6c4532009-10-23 08:30:36 +00001084 FRF_AB_TC_TIMER_MODE,
1085 FFE_BB_TIMER_MODE_INT_HLDOFF,
1086 FRF_AB_TC_TIMER_VAL,
Ben Hutchings6fb70fd2009-03-20 13:30:37 +00001087 channel->irq_moderation /
1088 FALCON_IRQ_MOD_RESOLUTION - 1);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001089 } else {
1090 EFX_POPULATE_DWORD_2(timer_cmd,
Ben Hutchings3e6c4532009-10-23 08:30:36 +00001091 FRF_AB_TC_TIMER_MODE,
1092 FFE_BB_TIMER_MODE_DIS,
1093 FRF_AB_TC_TIMER_VAL, 0);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001094 }
Ben Hutchings3e6c4532009-10-23 08:30:36 +00001095 BUILD_BUG_ON(FR_AA_TIMER_COMMAND_KER != FR_BZ_TIMER_COMMAND_P0);
Ben Hutchings12d00ca2009-10-23 08:30:46 +00001096 efx_writed_page_locked(efx, &timer_cmd, FR_BZ_TIMER_COMMAND_P0,
1097 channel->channel);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001098
1099}
1100
1101/* Allocate buffer table entries for event queue */
1102int falcon_probe_eventq(struct efx_channel *channel)
1103{
1104 struct efx_nic *efx = channel->efx;
Ben Hutchings3ffeabd2009-10-23 08:30:58 +00001105 BUILD_BUG_ON(EFX_EVQ_SIZE < 512 || EFX_EVQ_SIZE > 32768 ||
1106 EFX_EVQ_SIZE & EFX_EVQ_MASK);
1107 return falcon_alloc_special_buffer(efx, &channel->eventq,
1108 EFX_EVQ_SIZE * sizeof(efx_qword_t));
Ben Hutchings8ceee662008-04-27 12:55:59 +01001109}
1110
Ben Hutchingsbc3c90a2008-09-01 12:48:46 +01001111void falcon_init_eventq(struct efx_channel *channel)
Ben Hutchings8ceee662008-04-27 12:55:59 +01001112{
1113 efx_oword_t evq_ptr;
1114 struct efx_nic *efx = channel->efx;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001115
1116 EFX_LOG(efx, "channel %d event queue in special buffers %d-%d\n",
1117 channel->channel, channel->eventq.index,
1118 channel->eventq.index + channel->eventq.entries - 1);
1119
1120 /* Pin event queue buffer */
Ben Hutchingsbc3c90a2008-09-01 12:48:46 +01001121 falcon_init_special_buffer(efx, &channel->eventq);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001122
1123 /* Fill event queue with all ones (i.e. empty events) */
1124 memset(channel->eventq.addr, 0xff, channel->eventq.len);
1125
1126 /* Push event queue to card */
1127 EFX_POPULATE_OWORD_3(evq_ptr,
Ben Hutchings3e6c4532009-10-23 08:30:36 +00001128 FRF_AZ_EVQ_EN, 1,
Ben Hutchings3ffeabd2009-10-23 08:30:58 +00001129 FRF_AZ_EVQ_SIZE, __ffs(channel->eventq.entries),
Ben Hutchings3e6c4532009-10-23 08:30:36 +00001130 FRF_AZ_EVQ_BUF_BASE_ID, channel->eventq.index);
Ben Hutchings12d00ca2009-10-23 08:30:46 +00001131 efx_writeo_table(efx, &evq_ptr, efx->type->evq_ptr_tbl_base,
1132 channel->channel);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001133
1134 falcon_set_int_moderation(channel);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001135}
1136
1137void falcon_fini_eventq(struct efx_channel *channel)
1138{
1139 efx_oword_t eventq_ptr;
1140 struct efx_nic *efx = channel->efx;
1141
1142 /* Remove event queue from card */
1143 EFX_ZERO_OWORD(eventq_ptr);
Ben Hutchings12d00ca2009-10-23 08:30:46 +00001144 efx_writeo_table(efx, &eventq_ptr, efx->type->evq_ptr_tbl_base,
1145 channel->channel);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001146
1147 /* Unpin event queue */
1148 falcon_fini_special_buffer(efx, &channel->eventq);
1149}
1150
1151/* Free buffers backing event queue */
1152void falcon_remove_eventq(struct efx_channel *channel)
1153{
1154 falcon_free_special_buffer(channel->efx, &channel->eventq);
1155}
1156
1157
1158/* Generates a test event on the event queue. A subsequent call to
1159 * process_eventq() should pick up the event and place the value of
1160 * "magic" into channel->eventq_magic;
1161 */
1162void falcon_generate_test_event(struct efx_channel *channel, unsigned int magic)
1163{
1164 efx_qword_t test_event;
1165
Ben Hutchings3e6c4532009-10-23 08:30:36 +00001166 EFX_POPULATE_QWORD_2(test_event, FSF_AZ_EV_CODE,
1167 FSE_AZ_EV_CODE_DRV_GEN_EV,
1168 FSF_AZ_DRV_GEN_EV_MAGIC, magic);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001169 falcon_generate_event(channel, &test_event);
1170}
1171
Ben Hutchings177dfcd2008-12-12 21:50:08 -08001172void falcon_sim_phy_event(struct efx_nic *efx)
1173{
1174 efx_qword_t phy_event;
1175
Ben Hutchings3e6c4532009-10-23 08:30:36 +00001176 EFX_POPULATE_QWORD_1(phy_event, FSF_AZ_EV_CODE,
1177 FSE_AZ_EV_CODE_GLOBAL_EV);
Ben Hutchings177dfcd2008-12-12 21:50:08 -08001178 if (EFX_IS10G(efx))
Ben Hutchings3e6c4532009-10-23 08:30:36 +00001179 EFX_SET_QWORD_FIELD(phy_event, FSF_AB_GLB_EV_XG_PHY0_INTR, 1);
Ben Hutchings177dfcd2008-12-12 21:50:08 -08001180 else
Ben Hutchings3e6c4532009-10-23 08:30:36 +00001181 EFX_SET_QWORD_FIELD(phy_event, FSF_AB_GLB_EV_G_PHY0_INTR, 1);
Ben Hutchings177dfcd2008-12-12 21:50:08 -08001182
1183 falcon_generate_event(&efx->channel[0], &phy_event);
1184}
1185
Ben Hutchings6bc5d3a2008-09-01 12:49:37 +01001186/**************************************************************************
1187 *
1188 * Flush handling
1189 *
1190 **************************************************************************/
1191
1192
1193static void falcon_poll_flush_events(struct efx_nic *efx)
1194{
1195 struct efx_channel *channel = &efx->channel[0];
1196 struct efx_tx_queue *tx_queue;
1197 struct efx_rx_queue *rx_queue;
Ben Hutchings4720bc62009-03-04 10:01:15 +00001198 unsigned int read_ptr = channel->eventq_read_ptr;
Ben Hutchings3ffeabd2009-10-23 08:30:58 +00001199 unsigned int end_ptr = (read_ptr - 1) & EFX_EVQ_MASK;
Ben Hutchings6bc5d3a2008-09-01 12:49:37 +01001200
Ben Hutchings4720bc62009-03-04 10:01:15 +00001201 do {
Ben Hutchings6bc5d3a2008-09-01 12:49:37 +01001202 efx_qword_t *event = falcon_event(channel, read_ptr);
1203 int ev_code, ev_sub_code, ev_queue;
1204 bool ev_failed;
Ben Hutchings4720bc62009-03-04 10:01:15 +00001205
Ben Hutchings6bc5d3a2008-09-01 12:49:37 +01001206 if (!falcon_event_present(event))
1207 break;
1208
Ben Hutchings3e6c4532009-10-23 08:30:36 +00001209 ev_code = EFX_QWORD_FIELD(*event, FSF_AZ_EV_CODE);
1210 ev_sub_code = EFX_QWORD_FIELD(*event,
1211 FSF_AZ_DRIVER_EV_SUBCODE);
1212 if (ev_code == FSE_AZ_EV_CODE_DRIVER_EV &&
1213 ev_sub_code == FSE_AZ_TX_DESCQ_FLS_DONE_EV) {
Ben Hutchings6bc5d3a2008-09-01 12:49:37 +01001214 ev_queue = EFX_QWORD_FIELD(*event,
Ben Hutchings3e6c4532009-10-23 08:30:36 +00001215 FSF_AZ_DRIVER_EV_SUBDATA);
Ben Hutchings6bc5d3a2008-09-01 12:49:37 +01001216 if (ev_queue < EFX_TX_QUEUE_COUNT) {
1217 tx_queue = efx->tx_queue + ev_queue;
1218 tx_queue->flushed = true;
1219 }
Ben Hutchings3e6c4532009-10-23 08:30:36 +00001220 } else if (ev_code == FSE_AZ_EV_CODE_DRIVER_EV &&
1221 ev_sub_code == FSE_AZ_RX_DESCQ_FLS_DONE_EV) {
1222 ev_queue = EFX_QWORD_FIELD(
1223 *event, FSF_AZ_DRIVER_EV_RX_DESCQ_ID);
1224 ev_failed = EFX_QWORD_FIELD(
1225 *event, FSF_AZ_DRIVER_EV_RX_FLUSH_FAIL);
Ben Hutchings6bc5d3a2008-09-01 12:49:37 +01001226 if (ev_queue < efx->n_rx_queues) {
1227 rx_queue = efx->rx_queue + ev_queue;
1228
1229 /* retry the rx flush */
1230 if (ev_failed)
1231 falcon_flush_rx_queue(rx_queue);
1232 else
1233 rx_queue->flushed = true;
1234 }
Ben Hutchings6bc5d3a2008-09-01 12:49:37 +01001235 }
1236
Ben Hutchings3ffeabd2009-10-23 08:30:58 +00001237 read_ptr = (read_ptr + 1) & EFX_EVQ_MASK;
Ben Hutchings4720bc62009-03-04 10:01:15 +00001238 } while (read_ptr != end_ptr);
Ben Hutchings6bc5d3a2008-09-01 12:49:37 +01001239}
1240
1241/* Handle tx and rx flushes at the same time, since they run in
1242 * parallel in the hardware and there's no reason for us to
1243 * serialise them */
1244int falcon_flush_queues(struct efx_nic *efx)
1245{
1246 struct efx_rx_queue *rx_queue;
1247 struct efx_tx_queue *tx_queue;
1248 int i;
1249 bool outstanding;
1250
1251 /* Issue flush requests */
1252 efx_for_each_tx_queue(tx_queue, efx) {
1253 tx_queue->flushed = false;
1254 falcon_flush_tx_queue(tx_queue);
1255 }
1256 efx_for_each_rx_queue(rx_queue, efx) {
1257 rx_queue->flushed = false;
1258 falcon_flush_rx_queue(rx_queue);
1259 }
1260
1261 /* Poll the evq looking for flush completions. Since we're not pushing
1262 * any more rx or tx descriptors at this point, we're in no danger of
1263 * overflowing the evq whilst we wait */
1264 for (i = 0; i < FALCON_FLUSH_POLL_COUNT; ++i) {
1265 msleep(FALCON_FLUSH_INTERVAL);
1266 falcon_poll_flush_events(efx);
1267
1268 /* Check if every queue has been succesfully flushed */
1269 outstanding = false;
1270 efx_for_each_tx_queue(tx_queue, efx)
1271 outstanding |= !tx_queue->flushed;
1272 efx_for_each_rx_queue(rx_queue, efx)
1273 outstanding |= !rx_queue->flushed;
1274 if (!outstanding)
1275 return 0;
1276 }
1277
1278 /* Mark the queues as all flushed. We're going to return failure
1279 * leading to a reset, or fake up success anyway. "flushed" now
1280 * indicates that we tried to flush. */
1281 efx_for_each_tx_queue(tx_queue, efx) {
1282 if (!tx_queue->flushed)
1283 EFX_ERR(efx, "tx queue %d flush command timed out\n",
1284 tx_queue->queue);
1285 tx_queue->flushed = true;
1286 }
1287 efx_for_each_rx_queue(rx_queue, efx) {
1288 if (!rx_queue->flushed)
1289 EFX_ERR(efx, "rx queue %d flush command timed out\n",
1290 rx_queue->queue);
1291 rx_queue->flushed = true;
1292 }
1293
1294 if (EFX_WORKAROUND_7803(efx))
1295 return 0;
1296
1297 return -ETIMEDOUT;
1298}
Ben Hutchings8ceee662008-04-27 12:55:59 +01001299
1300/**************************************************************************
1301 *
1302 * Falcon hardware interrupts
1303 * The hardware interrupt handler does very little work; all the event
1304 * queue processing is carried out by per-channel tasklets.
1305 *
1306 **************************************************************************/
1307
1308/* Enable/disable/generate Falcon interrupts */
1309static inline void falcon_interrupts(struct efx_nic *efx, int enabled,
1310 int force)
1311{
1312 efx_oword_t int_en_reg_ker;
1313
1314 EFX_POPULATE_OWORD_2(int_en_reg_ker,
Ben Hutchings3e6c4532009-10-23 08:30:36 +00001315 FRF_AZ_KER_INT_KER, force,
1316 FRF_AZ_DRV_INT_EN_KER, enabled);
Ben Hutchings12d00ca2009-10-23 08:30:46 +00001317 efx_writeo(efx, &int_en_reg_ker, FR_AZ_INT_EN_KER);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001318}
1319
1320void falcon_enable_interrupts(struct efx_nic *efx)
1321{
1322 efx_oword_t int_adr_reg_ker;
1323 struct efx_channel *channel;
1324
1325 EFX_ZERO_OWORD(*((efx_oword_t *) efx->irq_status.addr));
1326 wmb(); /* Ensure interrupt vector is clear before interrupts enabled */
1327
1328 /* Program address */
1329 EFX_POPULATE_OWORD_2(int_adr_reg_ker,
Ben Hutchings3e6c4532009-10-23 08:30:36 +00001330 FRF_AZ_NORM_INT_VEC_DIS_KER,
1331 EFX_INT_MODE_USE_MSI(efx),
1332 FRF_AZ_INT_ADR_KER, efx->irq_status.dma_addr);
Ben Hutchings12d00ca2009-10-23 08:30:46 +00001333 efx_writeo(efx, &int_adr_reg_ker, FR_AZ_INT_ADR_KER);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001334
1335 /* Enable interrupts */
1336 falcon_interrupts(efx, 1, 0);
1337
1338 /* Force processing of all the channels to get the EVQ RPTRs up to
1339 date */
Ben Hutchings64ee3122008-09-01 12:47:38 +01001340 efx_for_each_channel(channel, efx)
Ben Hutchings8ceee662008-04-27 12:55:59 +01001341 efx_schedule_channel(channel);
1342}
1343
1344void falcon_disable_interrupts(struct efx_nic *efx)
1345{
1346 /* Disable interrupts */
1347 falcon_interrupts(efx, 0, 0);
1348}
1349
1350/* Generate a Falcon test interrupt
1351 * Interrupt must already have been enabled, otherwise nasty things
1352 * may happen.
1353 */
1354void falcon_generate_interrupt(struct efx_nic *efx)
1355{
1356 falcon_interrupts(efx, 1, 1);
1357}
1358
1359/* Acknowledge a legacy interrupt from Falcon
1360 *
1361 * This acknowledges a legacy (not MSI) interrupt via INT_ACK_KER_REG.
1362 *
1363 * Due to SFC bug 3706 (silicon revision <=A1) reads can be duplicated in the
1364 * BIU. Interrupt acknowledge is read sensitive so must write instead
1365 * (then read to ensure the BIU collector is flushed)
1366 *
1367 * NB most hardware supports MSI interrupts
1368 */
1369static inline void falcon_irq_ack_a1(struct efx_nic *efx)
1370{
1371 efx_dword_t reg;
1372
Ben Hutchings3e6c4532009-10-23 08:30:36 +00001373 EFX_POPULATE_DWORD_1(reg, FRF_AA_INT_ACK_KER_FIELD, 0xb7eb7e);
Ben Hutchings12d00ca2009-10-23 08:30:46 +00001374 efx_writed(efx, &reg, FR_AA_INT_ACK_KER);
1375 efx_readd(efx, &reg, FR_AA_WORK_AROUND_BROKEN_PCI_READS);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001376}
1377
1378/* Process a fatal interrupt
1379 * Disable bus mastering ASAP and schedule a reset
1380 */
1381static irqreturn_t falcon_fatal_interrupt(struct efx_nic *efx)
1382{
1383 struct falcon_nic_data *nic_data = efx->nic_data;
Ben Hutchingsd3208b52008-05-16 21:20:00 +01001384 efx_oword_t *int_ker = efx->irq_status.addr;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001385 efx_oword_t fatal_intr;
1386 int error, mem_perr;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001387
Ben Hutchings12d00ca2009-10-23 08:30:46 +00001388 efx_reado(efx, &fatal_intr, FR_AZ_FATAL_INTR_KER);
Ben Hutchings3e6c4532009-10-23 08:30:36 +00001389 error = EFX_OWORD_FIELD(fatal_intr, FRF_AZ_FATAL_INTR);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001390
1391 EFX_ERR(efx, "SYSTEM ERROR " EFX_OWORD_FMT " status "
1392 EFX_OWORD_FMT ": %s\n", EFX_OWORD_VAL(*int_ker),
1393 EFX_OWORD_VAL(fatal_intr),
1394 error ? "disabling bus mastering" : "no recognised error");
1395 if (error == 0)
1396 goto out;
1397
1398 /* If this is a memory parity error dump which blocks are offending */
Ben Hutchings3e6c4532009-10-23 08:30:36 +00001399 mem_perr = EFX_OWORD_FIELD(fatal_intr, FRF_AZ_MEM_PERR_INT_KER);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001400 if (mem_perr) {
1401 efx_oword_t reg;
Ben Hutchings12d00ca2009-10-23 08:30:46 +00001402 efx_reado(efx, &reg, FR_AZ_MEM_STAT);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001403 EFX_ERR(efx, "SYSTEM ERROR: memory parity error "
1404 EFX_OWORD_FMT "\n", EFX_OWORD_VAL(reg));
1405 }
1406
Ben Hutchings0a62f1a2008-09-01 12:50:14 +01001407 /* Disable both devices */
Ben Hutchingsef1bba22008-12-23 03:09:53 +00001408 pci_clear_master(efx->pci_dev);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001409 if (FALCON_IS_DUAL_FUNC(efx))
Ben Hutchingsef1bba22008-12-23 03:09:53 +00001410 pci_clear_master(nic_data->pci_dev2);
Ben Hutchings0a62f1a2008-09-01 12:50:14 +01001411 falcon_disable_interrupts(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001412
Ben Hutchings2c3c3d02009-03-04 10:01:57 +00001413 /* Count errors and reset or disable the NIC accordingly */
1414 if (nic_data->int_error_count == 0 ||
1415 time_after(jiffies, nic_data->int_error_expire)) {
1416 nic_data->int_error_count = 0;
1417 nic_data->int_error_expire =
1418 jiffies + FALCON_INT_ERROR_EXPIRE * HZ;
1419 }
1420 if (++nic_data->int_error_count < FALCON_MAX_INT_ERRORS) {
Ben Hutchings8ceee662008-04-27 12:55:59 +01001421 EFX_ERR(efx, "SYSTEM ERROR - reset scheduled\n");
1422 efx_schedule_reset(efx, RESET_TYPE_INT_ERROR);
1423 } else {
1424 EFX_ERR(efx, "SYSTEM ERROR - max number of errors seen."
1425 "NIC will be disabled\n");
1426 efx_schedule_reset(efx, RESET_TYPE_DISABLE);
1427 }
1428out:
1429 return IRQ_HANDLED;
1430}
1431
1432/* Handle a legacy interrupt from Falcon
1433 * Acknowledges the interrupt and schedule event queue processing.
1434 */
1435static irqreturn_t falcon_legacy_interrupt_b0(int irq, void *dev_id)
1436{
Ben Hutchingsd3208b52008-05-16 21:20:00 +01001437 struct efx_nic *efx = dev_id;
1438 efx_oword_t *int_ker = efx->irq_status.addr;
Ben Hutchingsa9de9a72009-03-20 13:26:41 +00001439 irqreturn_t result = IRQ_NONE;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001440 struct efx_channel *channel;
1441 efx_dword_t reg;
1442 u32 queues;
1443 int syserr;
1444
1445 /* Read the ISR which also ACKs the interrupts */
Ben Hutchings12d00ca2009-10-23 08:30:46 +00001446 efx_readd(efx, &reg, FR_BZ_INT_ISR0);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001447 queues = EFX_EXTRACT_DWORD(reg, 0, 31);
1448
1449 /* Check to see if we have a serious error condition */
Ben Hutchings3e6c4532009-10-23 08:30:36 +00001450 syserr = EFX_OWORD_FIELD(*int_ker, FSF_AZ_NET_IVEC_FATAL_INT);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001451 if (unlikely(syserr))
1452 return falcon_fatal_interrupt(efx);
1453
Ben Hutchings8ceee662008-04-27 12:55:59 +01001454 /* Schedule processing of any interrupting queues */
Ben Hutchingsa9de9a72009-03-20 13:26:41 +00001455 efx_for_each_channel(channel, efx) {
1456 if ((queues & 1) ||
1457 falcon_event_present(
1458 falcon_event(channel, channel->eventq_read_ptr))) {
Ben Hutchings8ceee662008-04-27 12:55:59 +01001459 efx_schedule_channel(channel);
Ben Hutchingsa9de9a72009-03-20 13:26:41 +00001460 result = IRQ_HANDLED;
1461 }
Ben Hutchings8ceee662008-04-27 12:55:59 +01001462 queues >>= 1;
1463 }
1464
Ben Hutchingsa9de9a72009-03-20 13:26:41 +00001465 if (result == IRQ_HANDLED) {
1466 efx->last_irq_cpu = raw_smp_processor_id();
1467 EFX_TRACE(efx, "IRQ %d on CPU %d status " EFX_DWORD_FMT "\n",
1468 irq, raw_smp_processor_id(), EFX_DWORD_VAL(reg));
1469 }
1470
1471 return result;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001472}
1473
1474
1475static irqreturn_t falcon_legacy_interrupt_a1(int irq, void *dev_id)
1476{
Ben Hutchingsd3208b52008-05-16 21:20:00 +01001477 struct efx_nic *efx = dev_id;
1478 efx_oword_t *int_ker = efx->irq_status.addr;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001479 struct efx_channel *channel;
1480 int syserr;
1481 int queues;
1482
1483 /* Check to see if this is our interrupt. If it isn't, we
1484 * exit without having touched the hardware.
1485 */
1486 if (unlikely(EFX_OWORD_IS_ZERO(*int_ker))) {
1487 EFX_TRACE(efx, "IRQ %d on CPU %d not for me\n", irq,
1488 raw_smp_processor_id());
1489 return IRQ_NONE;
1490 }
1491 efx->last_irq_cpu = raw_smp_processor_id();
1492 EFX_TRACE(efx, "IRQ %d on CPU %d status " EFX_OWORD_FMT "\n",
1493 irq, raw_smp_processor_id(), EFX_OWORD_VAL(*int_ker));
1494
1495 /* Check to see if we have a serious error condition */
Ben Hutchings3e6c4532009-10-23 08:30:36 +00001496 syserr = EFX_OWORD_FIELD(*int_ker, FSF_AZ_NET_IVEC_FATAL_INT);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001497 if (unlikely(syserr))
1498 return falcon_fatal_interrupt(efx);
1499
1500 /* Determine interrupting queues, clear interrupt status
1501 * register and acknowledge the device interrupt.
1502 */
1503 BUILD_BUG_ON(INT_EVQS_WIDTH > EFX_MAX_CHANNELS);
1504 queues = EFX_OWORD_FIELD(*int_ker, INT_EVQS);
1505 EFX_ZERO_OWORD(*int_ker);
1506 wmb(); /* Ensure the vector is cleared before interrupt ack */
1507 falcon_irq_ack_a1(efx);
1508
1509 /* Schedule processing of any interrupting queues */
1510 channel = &efx->channel[0];
1511 while (queues) {
1512 if (queues & 0x01)
1513 efx_schedule_channel(channel);
1514 channel++;
1515 queues >>= 1;
1516 }
1517
1518 return IRQ_HANDLED;
1519}
1520
1521/* Handle an MSI interrupt from Falcon
1522 *
1523 * Handle an MSI hardware interrupt. This routine schedules event
1524 * queue processing. No interrupt acknowledgement cycle is necessary.
1525 * Also, we never need to check that the interrupt is for us, since
1526 * MSI interrupts cannot be shared.
1527 */
1528static irqreturn_t falcon_msi_interrupt(int irq, void *dev_id)
1529{
Ben Hutchingsd3208b52008-05-16 21:20:00 +01001530 struct efx_channel *channel = dev_id;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001531 struct efx_nic *efx = channel->efx;
Ben Hutchingsd3208b52008-05-16 21:20:00 +01001532 efx_oword_t *int_ker = efx->irq_status.addr;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001533 int syserr;
1534
1535 efx->last_irq_cpu = raw_smp_processor_id();
1536 EFX_TRACE(efx, "IRQ %d on CPU %d status " EFX_OWORD_FMT "\n",
1537 irq, raw_smp_processor_id(), EFX_OWORD_VAL(*int_ker));
1538
1539 /* Check to see if we have a serious error condition */
1540 syserr = EFX_OWORD_FIELD(*int_ker, FATAL_INT);
1541 if (unlikely(syserr))
1542 return falcon_fatal_interrupt(efx);
1543
1544 /* Schedule processing of the channel */
1545 efx_schedule_channel(channel);
1546
1547 return IRQ_HANDLED;
1548}
1549
1550
1551/* Setup RSS indirection table.
1552 * This maps from the hash value of the packet to RXQ
1553 */
1554static void falcon_setup_rss_indir_table(struct efx_nic *efx)
1555{
1556 int i = 0;
1557 unsigned long offset;
1558 efx_dword_t dword;
1559
Ben Hutchings55668612008-05-16 21:16:10 +01001560 if (falcon_rev(efx) < FALCON_REV_B0)
Ben Hutchings8ceee662008-04-27 12:55:59 +01001561 return;
1562
Ben Hutchings3e6c4532009-10-23 08:30:36 +00001563 for (offset = FR_BZ_RX_INDIRECTION_TBL;
1564 offset < FR_BZ_RX_INDIRECTION_TBL + 0x800;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001565 offset += 0x10) {
Ben Hutchings3e6c4532009-10-23 08:30:36 +00001566 EFX_POPULATE_DWORD_1(dword, FRF_BZ_IT_QUEUE,
Ben Hutchings8831da72008-09-01 12:47:48 +01001567 i % efx->n_rx_queues);
Ben Hutchings12d00ca2009-10-23 08:30:46 +00001568 efx_writed(efx, &dword, offset);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001569 i++;
1570 }
1571}
1572
1573/* Hook interrupt handler(s)
1574 * Try MSI and then legacy interrupts.
1575 */
1576int falcon_init_interrupt(struct efx_nic *efx)
1577{
1578 struct efx_channel *channel;
1579 int rc;
1580
1581 if (!EFX_INT_MODE_USE_MSI(efx)) {
1582 irq_handler_t handler;
Ben Hutchings55668612008-05-16 21:16:10 +01001583 if (falcon_rev(efx) >= FALCON_REV_B0)
Ben Hutchings8ceee662008-04-27 12:55:59 +01001584 handler = falcon_legacy_interrupt_b0;
1585 else
1586 handler = falcon_legacy_interrupt_a1;
1587
1588 rc = request_irq(efx->legacy_irq, handler, IRQF_SHARED,
1589 efx->name, efx);
1590 if (rc) {
1591 EFX_ERR(efx, "failed to hook legacy IRQ %d\n",
1592 efx->pci_dev->irq);
1593 goto fail1;
1594 }
1595 return 0;
1596 }
1597
1598 /* Hook MSI or MSI-X interrupt */
Ben Hutchings64ee3122008-09-01 12:47:38 +01001599 efx_for_each_channel(channel, efx) {
Ben Hutchings8ceee662008-04-27 12:55:59 +01001600 rc = request_irq(channel->irq, falcon_msi_interrupt,
1601 IRQF_PROBE_SHARED, /* Not shared */
Ben Hutchings56536e92008-12-12 21:37:02 -08001602 channel->name, channel);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001603 if (rc) {
1604 EFX_ERR(efx, "failed to hook IRQ %d\n", channel->irq);
1605 goto fail2;
1606 }
1607 }
1608
1609 return 0;
1610
1611 fail2:
Ben Hutchings64ee3122008-09-01 12:47:38 +01001612 efx_for_each_channel(channel, efx)
Ben Hutchings8ceee662008-04-27 12:55:59 +01001613 free_irq(channel->irq, channel);
1614 fail1:
1615 return rc;
1616}
1617
1618void falcon_fini_interrupt(struct efx_nic *efx)
1619{
1620 struct efx_channel *channel;
1621 efx_oword_t reg;
1622
1623 /* Disable MSI/MSI-X interrupts */
Ben Hutchings64ee3122008-09-01 12:47:38 +01001624 efx_for_each_channel(channel, efx) {
Ben Hutchings8ceee662008-04-27 12:55:59 +01001625 if (channel->irq)
1626 free_irq(channel->irq, channel);
Ben Hutchingsb3475642008-05-16 21:15:49 +01001627 }
Ben Hutchings8ceee662008-04-27 12:55:59 +01001628
1629 /* ACK legacy interrupt */
Ben Hutchings55668612008-05-16 21:16:10 +01001630 if (falcon_rev(efx) >= FALCON_REV_B0)
Ben Hutchings12d00ca2009-10-23 08:30:46 +00001631 efx_reado(efx, &reg, FR_BZ_INT_ISR0);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001632 else
1633 falcon_irq_ack_a1(efx);
1634
1635 /* Disable legacy interrupt */
1636 if (efx->legacy_irq)
1637 free_irq(efx->legacy_irq, efx);
1638}
1639
1640/**************************************************************************
1641 *
1642 * EEPROM/flash
1643 *
1644 **************************************************************************
1645 */
1646
Ben Hutchings23d30f02008-12-12 21:56:11 -08001647#define FALCON_SPI_MAX_LEN sizeof(efx_oword_t)
Ben Hutchings8ceee662008-04-27 12:55:59 +01001648
Ben Hutchingsbe4ea892008-12-12 21:33:50 -08001649static int falcon_spi_poll(struct efx_nic *efx)
1650{
1651 efx_oword_t reg;
Ben Hutchings12d00ca2009-10-23 08:30:46 +00001652 efx_reado(efx, &reg, FR_AB_EE_SPI_HCMD);
Ben Hutchings3e6c4532009-10-23 08:30:36 +00001653 return EFX_OWORD_FIELD(reg, FRF_AB_EE_SPI_HCMD_CMD_EN) ? -EBUSY : 0;
Ben Hutchingsbe4ea892008-12-12 21:33:50 -08001654}
1655
Ben Hutchings8ceee662008-04-27 12:55:59 +01001656/* Wait for SPI command completion */
1657static int falcon_spi_wait(struct efx_nic *efx)
1658{
Ben Hutchingsbe4ea892008-12-12 21:33:50 -08001659 /* Most commands will finish quickly, so we start polling at
1660 * very short intervals. Sometimes the command may have to
1661 * wait for VPD or expansion ROM access outside of our
1662 * control, so we allow up to 100 ms. */
1663 unsigned long timeout = jiffies + 1 + DIV_ROUND_UP(HZ, 10);
1664 int i;
1665
1666 for (i = 0; i < 10; i++) {
1667 if (!falcon_spi_poll(efx))
1668 return 0;
1669 udelay(10);
1670 }
Ben Hutchings8ceee662008-04-27 12:55:59 +01001671
Ben Hutchings4a5b5042008-09-01 12:47:16 +01001672 for (;;) {
Ben Hutchingsbe4ea892008-12-12 21:33:50 -08001673 if (!falcon_spi_poll(efx))
Ben Hutchings8ceee662008-04-27 12:55:59 +01001674 return 0;
Ben Hutchings4a5b5042008-09-01 12:47:16 +01001675 if (time_after_eq(jiffies, timeout)) {
1676 EFX_ERR(efx, "timed out waiting for SPI\n");
1677 return -ETIMEDOUT;
1678 }
Ben Hutchingsbe4ea892008-12-12 21:33:50 -08001679 schedule_timeout_uninterruptible(1);
Ben Hutchings4a5b5042008-09-01 12:47:16 +01001680 }
Ben Hutchings8ceee662008-04-27 12:55:59 +01001681}
1682
Ben Hutchingsf4150722008-11-04 20:34:28 +00001683int falcon_spi_cmd(const struct efx_spi_device *spi,
1684 unsigned int command, int address,
Ben Hutchings23d30f02008-12-12 21:56:11 -08001685 const void *in, void *out, size_t len)
Ben Hutchings8ceee662008-04-27 12:55:59 +01001686{
Ben Hutchings4a5b5042008-09-01 12:47:16 +01001687 struct efx_nic *efx = spi->efx;
1688 bool addressed = (address >= 0);
1689 bool reading = (out != NULL);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001690 efx_oword_t reg;
1691 int rc;
1692
Ben Hutchings4a5b5042008-09-01 12:47:16 +01001693 /* Input validation */
1694 if (len > FALCON_SPI_MAX_LEN)
1695 return -EINVAL;
Ben Hutchingsf4150722008-11-04 20:34:28 +00001696 BUG_ON(!mutex_is_locked(&efx->spi_lock));
Ben Hutchings8ceee662008-04-27 12:55:59 +01001697
Ben Hutchingsbe4ea892008-12-12 21:33:50 -08001698 /* Check that previous command is not still running */
1699 rc = falcon_spi_poll(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001700 if (rc)
1701 return rc;
1702
Ben Hutchings4a5b5042008-09-01 12:47:16 +01001703 /* Program address register, if we have an address */
1704 if (addressed) {
Ben Hutchings3e6c4532009-10-23 08:30:36 +00001705 EFX_POPULATE_OWORD_1(reg, FRF_AB_EE_SPI_HADR_ADR, address);
Ben Hutchings12d00ca2009-10-23 08:30:46 +00001706 efx_writeo(efx, &reg, FR_AB_EE_SPI_HADR);
Ben Hutchings4a5b5042008-09-01 12:47:16 +01001707 }
Ben Hutchings8ceee662008-04-27 12:55:59 +01001708
Ben Hutchings4a5b5042008-09-01 12:47:16 +01001709 /* Program data register, if we have data */
1710 if (in != NULL) {
1711 memcpy(&reg, in, len);
Ben Hutchings12d00ca2009-10-23 08:30:46 +00001712 efx_writeo(efx, &reg, FR_AB_EE_SPI_HDATA);
Ben Hutchings4a5b5042008-09-01 12:47:16 +01001713 }
1714
1715 /* Issue read/write command */
Ben Hutchings8ceee662008-04-27 12:55:59 +01001716 EFX_POPULATE_OWORD_7(reg,
Ben Hutchings3e6c4532009-10-23 08:30:36 +00001717 FRF_AB_EE_SPI_HCMD_CMD_EN, 1,
1718 FRF_AB_EE_SPI_HCMD_SF_SEL, spi->device_id,
1719 FRF_AB_EE_SPI_HCMD_DABCNT, len,
1720 FRF_AB_EE_SPI_HCMD_READ, reading,
1721 FRF_AB_EE_SPI_HCMD_DUBCNT, 0,
1722 FRF_AB_EE_SPI_HCMD_ADBCNT,
Ben Hutchings4a5b5042008-09-01 12:47:16 +01001723 (addressed ? spi->addr_len : 0),
Ben Hutchings3e6c4532009-10-23 08:30:36 +00001724 FRF_AB_EE_SPI_HCMD_ENC, command);
Ben Hutchings12d00ca2009-10-23 08:30:46 +00001725 efx_writeo(efx, &reg, FR_AB_EE_SPI_HCMD);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001726
Ben Hutchings4a5b5042008-09-01 12:47:16 +01001727 /* Wait for read/write to complete */
Ben Hutchings8ceee662008-04-27 12:55:59 +01001728 rc = falcon_spi_wait(efx);
1729 if (rc)
1730 return rc;
1731
1732 /* Read data */
Ben Hutchings4a5b5042008-09-01 12:47:16 +01001733 if (out != NULL) {
Ben Hutchings12d00ca2009-10-23 08:30:46 +00001734 efx_reado(efx, &reg, FR_AB_EE_SPI_HDATA);
Ben Hutchings4a5b5042008-09-01 12:47:16 +01001735 memcpy(out, &reg, len);
1736 }
1737
Ben Hutchings8ceee662008-04-27 12:55:59 +01001738 return 0;
1739}
1740
Ben Hutchings23d30f02008-12-12 21:56:11 -08001741static size_t
1742falcon_spi_write_limit(const struct efx_spi_device *spi, size_t start)
Ben Hutchings4a5b5042008-09-01 12:47:16 +01001743{
1744 return min(FALCON_SPI_MAX_LEN,
1745 (spi->block_size - (start & (spi->block_size - 1))));
1746}
1747
1748static inline u8
1749efx_spi_munge_command(const struct efx_spi_device *spi,
1750 const u8 command, const unsigned int address)
1751{
1752 return command | (((address >> 8) & spi->munge_address) << 3);
1753}
1754
Ben Hutchingsbe4ea892008-12-12 21:33:50 -08001755/* Wait up to 10 ms for buffered write completion */
1756int falcon_spi_wait_write(const struct efx_spi_device *spi)
Ben Hutchings4a5b5042008-09-01 12:47:16 +01001757{
Ben Hutchingsbe4ea892008-12-12 21:33:50 -08001758 struct efx_nic *efx = spi->efx;
1759 unsigned long timeout = jiffies + 1 + DIV_ROUND_UP(HZ, 100);
Ben Hutchings4a5b5042008-09-01 12:47:16 +01001760 u8 status;
Ben Hutchingsbe4ea892008-12-12 21:33:50 -08001761 int rc;
Ben Hutchings4a5b5042008-09-01 12:47:16 +01001762
Ben Hutchingsbe4ea892008-12-12 21:33:50 -08001763 for (;;) {
Ben Hutchings4a5b5042008-09-01 12:47:16 +01001764 rc = falcon_spi_cmd(spi, SPI_RDSR, -1, NULL,
1765 &status, sizeof(status));
1766 if (rc)
1767 return rc;
1768 if (!(status & SPI_STATUS_NRDY))
1769 return 0;
Ben Hutchingsbe4ea892008-12-12 21:33:50 -08001770 if (time_after_eq(jiffies, timeout)) {
1771 EFX_ERR(efx, "SPI write timeout on device %d"
1772 " last status=0x%02x\n",
1773 spi->device_id, status);
1774 return -ETIMEDOUT;
1775 }
1776 schedule_timeout_uninterruptible(1);
Ben Hutchings4a5b5042008-09-01 12:47:16 +01001777 }
Ben Hutchings4a5b5042008-09-01 12:47:16 +01001778}
1779
1780int falcon_spi_read(const struct efx_spi_device *spi, loff_t start,
1781 size_t len, size_t *retlen, u8 *buffer)
1782{
Ben Hutchings23d30f02008-12-12 21:56:11 -08001783 size_t block_len, pos = 0;
1784 unsigned int command;
Ben Hutchings4a5b5042008-09-01 12:47:16 +01001785 int rc = 0;
1786
1787 while (pos < len) {
Ben Hutchings23d30f02008-12-12 21:56:11 -08001788 block_len = min(len - pos, FALCON_SPI_MAX_LEN);
Ben Hutchings4a5b5042008-09-01 12:47:16 +01001789
1790 command = efx_spi_munge_command(spi, SPI_READ, start + pos);
1791 rc = falcon_spi_cmd(spi, command, start + pos, NULL,
1792 buffer + pos, block_len);
1793 if (rc)
1794 break;
1795 pos += block_len;
1796
1797 /* Avoid locking up the system */
1798 cond_resched();
1799 if (signal_pending(current)) {
1800 rc = -EINTR;
1801 break;
1802 }
1803 }
1804
1805 if (retlen)
1806 *retlen = pos;
1807 return rc;
1808}
1809
1810int falcon_spi_write(const struct efx_spi_device *spi, loff_t start,
1811 size_t len, size_t *retlen, const u8 *buffer)
1812{
1813 u8 verify_buffer[FALCON_SPI_MAX_LEN];
Ben Hutchings23d30f02008-12-12 21:56:11 -08001814 size_t block_len, pos = 0;
1815 unsigned int command;
Ben Hutchings4a5b5042008-09-01 12:47:16 +01001816 int rc = 0;
1817
1818 while (pos < len) {
1819 rc = falcon_spi_cmd(spi, SPI_WREN, -1, NULL, NULL, 0);
1820 if (rc)
1821 break;
1822
Ben Hutchings23d30f02008-12-12 21:56:11 -08001823 block_len = min(len - pos,
Ben Hutchings4a5b5042008-09-01 12:47:16 +01001824 falcon_spi_write_limit(spi, start + pos));
1825 command = efx_spi_munge_command(spi, SPI_WRITE, start + pos);
1826 rc = falcon_spi_cmd(spi, command, start + pos,
1827 buffer + pos, NULL, block_len);
1828 if (rc)
1829 break;
1830
Ben Hutchingsbe4ea892008-12-12 21:33:50 -08001831 rc = falcon_spi_wait_write(spi);
Ben Hutchings4a5b5042008-09-01 12:47:16 +01001832 if (rc)
1833 break;
1834
1835 command = efx_spi_munge_command(spi, SPI_READ, start + pos);
1836 rc = falcon_spi_cmd(spi, command, start + pos,
1837 NULL, verify_buffer, block_len);
1838 if (memcmp(verify_buffer, buffer + pos, block_len)) {
1839 rc = -EIO;
1840 break;
1841 }
1842
1843 pos += block_len;
1844
1845 /* Avoid locking up the system */
1846 cond_resched();
1847 if (signal_pending(current)) {
1848 rc = -EINTR;
1849 break;
1850 }
1851 }
1852
1853 if (retlen)
1854 *retlen = pos;
1855 return rc;
1856}
1857
Ben Hutchings8ceee662008-04-27 12:55:59 +01001858/**************************************************************************
1859 *
1860 * MAC wrapper
1861 *
1862 **************************************************************************
1863 */
Ben Hutchings177dfcd2008-12-12 21:50:08 -08001864
1865static int falcon_reset_macs(struct efx_nic *efx)
Ben Hutchings8ceee662008-04-27 12:55:59 +01001866{
Ben Hutchings177dfcd2008-12-12 21:50:08 -08001867 efx_oword_t reg;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001868 int count;
1869
Ben Hutchings177dfcd2008-12-12 21:50:08 -08001870 if (falcon_rev(efx) < FALCON_REV_B0) {
1871 /* It's not safe to use GLB_CTL_REG to reset the
1872 * macs, so instead use the internal MAC resets
1873 */
1874 if (!EFX_IS10G(efx)) {
Ben Hutchings3e6c4532009-10-23 08:30:36 +00001875 EFX_POPULATE_OWORD_1(reg, FRF_AB_GM_SW_RST, 1);
Ben Hutchings12d00ca2009-10-23 08:30:46 +00001876 efx_writeo(efx, &reg, FR_AB_GM_CFG1);
Ben Hutchings177dfcd2008-12-12 21:50:08 -08001877 udelay(1000);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001878
Ben Hutchings3e6c4532009-10-23 08:30:36 +00001879 EFX_POPULATE_OWORD_1(reg, FRF_AB_GM_SW_RST, 0);
Ben Hutchings12d00ca2009-10-23 08:30:46 +00001880 efx_writeo(efx, &reg, FR_AB_GM_CFG1);
Ben Hutchings177dfcd2008-12-12 21:50:08 -08001881 udelay(1000);
1882 return 0;
1883 } else {
Ben Hutchings3e6c4532009-10-23 08:30:36 +00001884 EFX_POPULATE_OWORD_1(reg, FRF_AB_XM_CORE_RST, 1);
Ben Hutchings12d00ca2009-10-23 08:30:46 +00001885 efx_writeo(efx, &reg, FR_AB_XM_GLB_CFG);
Ben Hutchings177dfcd2008-12-12 21:50:08 -08001886
1887 for (count = 0; count < 10000; count++) {
Ben Hutchings12d00ca2009-10-23 08:30:46 +00001888 efx_reado(efx, &reg, FR_AB_XM_GLB_CFG);
Ben Hutchings3e6c4532009-10-23 08:30:36 +00001889 if (EFX_OWORD_FIELD(reg, FRF_AB_XM_CORE_RST) ==
1890 0)
Ben Hutchings177dfcd2008-12-12 21:50:08 -08001891 return 0;
1892 udelay(10);
1893 }
1894
1895 EFX_ERR(efx, "timed out waiting for XMAC core reset\n");
1896 return -ETIMEDOUT;
1897 }
1898 }
Ben Hutchings8ceee662008-04-27 12:55:59 +01001899
1900 /* MAC stats will fail whilst the TX fifo is draining. Serialise
1901 * the drain sequence with the statistics fetch */
Ben Hutchings1974cc22009-01-29 18:00:07 +00001902 efx_stats_disable(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001903
Ben Hutchings12d00ca2009-10-23 08:30:46 +00001904 efx_reado(efx, &reg, FR_AB_MAC_CTRL);
Ben Hutchings3e6c4532009-10-23 08:30:36 +00001905 EFX_SET_OWORD_FIELD(reg, FRF_BB_TXFIFO_DRAIN_EN, 1);
Ben Hutchings12d00ca2009-10-23 08:30:46 +00001906 efx_writeo(efx, &reg, FR_AB_MAC_CTRL);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001907
Ben Hutchings12d00ca2009-10-23 08:30:46 +00001908 efx_reado(efx, &reg, FR_AB_GLB_CTL);
Ben Hutchings3e6c4532009-10-23 08:30:36 +00001909 EFX_SET_OWORD_FIELD(reg, FRF_AB_RST_XGTX, 1);
1910 EFX_SET_OWORD_FIELD(reg, FRF_AB_RST_XGRX, 1);
1911 EFX_SET_OWORD_FIELD(reg, FRF_AB_RST_EM, 1);
Ben Hutchings12d00ca2009-10-23 08:30:46 +00001912 efx_writeo(efx, &reg, FR_AB_GLB_CTL);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001913
1914 count = 0;
1915 while (1) {
Ben Hutchings12d00ca2009-10-23 08:30:46 +00001916 efx_reado(efx, &reg, FR_AB_GLB_CTL);
Ben Hutchings3e6c4532009-10-23 08:30:36 +00001917 if (!EFX_OWORD_FIELD(reg, FRF_AB_RST_XGTX) &&
1918 !EFX_OWORD_FIELD(reg, FRF_AB_RST_XGRX) &&
1919 !EFX_OWORD_FIELD(reg, FRF_AB_RST_EM)) {
Ben Hutchings8ceee662008-04-27 12:55:59 +01001920 EFX_LOG(efx, "Completed MAC reset after %d loops\n",
1921 count);
1922 break;
1923 }
1924 if (count > 20) {
1925 EFX_ERR(efx, "MAC reset failed\n");
1926 break;
1927 }
1928 count++;
1929 udelay(10);
1930 }
1931
Ben Hutchings1974cc22009-01-29 18:00:07 +00001932 efx_stats_enable(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001933
1934 /* If we've reset the EM block and the link is up, then
1935 * we'll have to kick the XAUI link so the PHY can recover */
Ben Hutchings177dfcd2008-12-12 21:50:08 -08001936 if (efx->link_up && EFX_IS10G(efx) && EFX_WORKAROUND_5147(efx))
Ben Hutchings8ceee662008-04-27 12:55:59 +01001937 falcon_reset_xaui(efx);
Ben Hutchings177dfcd2008-12-12 21:50:08 -08001938
1939 return 0;
1940}
1941
1942void falcon_drain_tx_fifo(struct efx_nic *efx)
1943{
1944 efx_oword_t reg;
1945
1946 if ((falcon_rev(efx) < FALCON_REV_B0) ||
1947 (efx->loopback_mode != LOOPBACK_NONE))
1948 return;
1949
Ben Hutchings12d00ca2009-10-23 08:30:46 +00001950 efx_reado(efx, &reg, FR_AB_MAC_CTRL);
Ben Hutchings177dfcd2008-12-12 21:50:08 -08001951 /* There is no point in draining more than once */
Ben Hutchings3e6c4532009-10-23 08:30:36 +00001952 if (EFX_OWORD_FIELD(reg, FRF_BB_TXFIFO_DRAIN_EN))
Ben Hutchings177dfcd2008-12-12 21:50:08 -08001953 return;
1954
1955 falcon_reset_macs(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001956}
1957
1958void falcon_deconfigure_mac_wrapper(struct efx_nic *efx)
1959{
Ben Hutchings177dfcd2008-12-12 21:50:08 -08001960 efx_oword_t reg;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001961
Ben Hutchings55668612008-05-16 21:16:10 +01001962 if (falcon_rev(efx) < FALCON_REV_B0)
Ben Hutchings8ceee662008-04-27 12:55:59 +01001963 return;
1964
1965 /* Isolate the MAC -> RX */
Ben Hutchings12d00ca2009-10-23 08:30:46 +00001966 efx_reado(efx, &reg, FR_AZ_RX_CFG);
Ben Hutchings3e6c4532009-10-23 08:30:36 +00001967 EFX_SET_OWORD_FIELD(reg, FRF_BZ_RX_INGR_EN, 0);
Ben Hutchings12d00ca2009-10-23 08:30:46 +00001968 efx_writeo(efx, &reg, FR_AZ_RX_CFG);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001969
1970 if (!efx->link_up)
1971 falcon_drain_tx_fifo(efx);
1972}
1973
1974void falcon_reconfigure_mac_wrapper(struct efx_nic *efx)
1975{
1976 efx_oword_t reg;
1977 int link_speed;
Ben Hutchingsdc8cfa52008-09-01 12:46:50 +01001978 bool tx_fc;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001979
Ben Hutchingsf31a45d2008-12-12 21:43:33 -08001980 switch (efx->link_speed) {
1981 case 10000: link_speed = 3; break;
1982 case 1000: link_speed = 2; break;
1983 case 100: link_speed = 1; break;
1984 default: link_speed = 0; break;
1985 }
Ben Hutchings8ceee662008-04-27 12:55:59 +01001986 /* MAC_LINK_STATUS controls MAC backpressure but doesn't work
1987 * as advertised. Disable to ensure packets are not
1988 * indefinitely held and TX queue can be flushed at any point
1989 * while the link is down. */
1990 EFX_POPULATE_OWORD_5(reg,
Ben Hutchings3e6c4532009-10-23 08:30:36 +00001991 FRF_AB_MAC_XOFF_VAL, 0xffff /* max pause time */,
1992 FRF_AB_MAC_BCAD_ACPT, 1,
1993 FRF_AB_MAC_UC_PROM, efx->promiscuous,
1994 FRF_AB_MAC_LINK_STATUS, 1, /* always set */
1995 FRF_AB_MAC_SPEED, link_speed);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001996 /* On B0, MAC backpressure can be disabled and packets get
1997 * discarded. */
Ben Hutchings55668612008-05-16 21:16:10 +01001998 if (falcon_rev(efx) >= FALCON_REV_B0) {
Ben Hutchings3e6c4532009-10-23 08:30:36 +00001999 EFX_SET_OWORD_FIELD(reg, FRF_BB_TXFIFO_DRAIN_EN,
Ben Hutchings8ceee662008-04-27 12:55:59 +01002000 !efx->link_up);
2001 }
2002
Ben Hutchings12d00ca2009-10-23 08:30:46 +00002003 efx_writeo(efx, &reg, FR_AB_MAC_CTRL);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002004
2005 /* Restore the multicast hash registers. */
2006 falcon_set_multicast_hash(efx);
2007
2008 /* Transmission of pause frames when RX crosses the threshold is
2009 * covered by RX_XOFF_MAC_EN and XM_TX_CFG_REG:XM_FCNTL.
2010 * Action on receipt of pause frames is controller by XM_DIS_FCNTL */
Ben Hutchings04cc8ca2008-12-12 21:50:46 -08002011 tx_fc = !!(efx->link_fc & EFX_FC_TX);
Ben Hutchings12d00ca2009-10-23 08:30:46 +00002012 efx_reado(efx, &reg, FR_AZ_RX_CFG);
Ben Hutchings3e6c4532009-10-23 08:30:36 +00002013 EFX_SET_OWORD_FIELD(reg, FRF_AZ_RX_XOFF_MAC_EN, tx_fc);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002014
2015 /* Unisolate the MAC -> RX */
Ben Hutchings55668612008-05-16 21:16:10 +01002016 if (falcon_rev(efx) >= FALCON_REV_B0)
Ben Hutchings3e6c4532009-10-23 08:30:36 +00002017 EFX_SET_OWORD_FIELD(reg, FRF_BZ_RX_INGR_EN, 1);
Ben Hutchings12d00ca2009-10-23 08:30:46 +00002018 efx_writeo(efx, &reg, FR_AZ_RX_CFG);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002019}
2020
2021int falcon_dma_stats(struct efx_nic *efx, unsigned int done_offset)
2022{
2023 efx_oword_t reg;
2024 u32 *dma_done;
2025 int i;
2026
2027 if (disable_dma_stats)
2028 return 0;
2029
2030 /* Statistics fetch will fail if the MAC is in TX drain */
Ben Hutchings55668612008-05-16 21:16:10 +01002031 if (falcon_rev(efx) >= FALCON_REV_B0) {
Ben Hutchings8ceee662008-04-27 12:55:59 +01002032 efx_oword_t temp;
Ben Hutchings12d00ca2009-10-23 08:30:46 +00002033 efx_reado(efx, &temp, FR_AB_MAC_CTRL);
Ben Hutchings3e6c4532009-10-23 08:30:36 +00002034 if (EFX_OWORD_FIELD(temp, FRF_BB_TXFIFO_DRAIN_EN))
Ben Hutchings8ceee662008-04-27 12:55:59 +01002035 return 0;
2036 }
2037
2038 dma_done = (efx->stats_buffer.addr + done_offset);
2039 *dma_done = FALCON_STATS_NOT_DONE;
2040 wmb(); /* ensure done flag is clear */
2041
2042 /* Initiate DMA transfer of stats */
2043 EFX_POPULATE_OWORD_2(reg,
Ben Hutchings3e6c4532009-10-23 08:30:36 +00002044 FRF_AB_MAC_STAT_DMA_CMD, 1,
2045 FRF_AB_MAC_STAT_DMA_ADR,
Ben Hutchings8ceee662008-04-27 12:55:59 +01002046 efx->stats_buffer.dma_addr);
Ben Hutchings12d00ca2009-10-23 08:30:46 +00002047 efx_writeo(efx, &reg, FR_AB_MAC_STAT_DMA);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002048
2049 /* Wait for transfer to complete */
2050 for (i = 0; i < 400; i++) {
Ben Hutchings1d0680f2008-09-01 12:50:08 +01002051 if (*(volatile u32 *)dma_done == FALCON_STATS_DONE) {
2052 rmb(); /* Ensure the stats are valid. */
Ben Hutchings8ceee662008-04-27 12:55:59 +01002053 return 0;
Ben Hutchings1d0680f2008-09-01 12:50:08 +01002054 }
Ben Hutchings8ceee662008-04-27 12:55:59 +01002055 udelay(10);
2056 }
2057
2058 EFX_ERR(efx, "timed out waiting for statistics\n");
2059 return -ETIMEDOUT;
2060}
2061
2062/**************************************************************************
2063 *
2064 * PHY access via GMII
2065 *
2066 **************************************************************************
2067 */
2068
Ben Hutchings8ceee662008-04-27 12:55:59 +01002069/* Wait for GMII access to complete */
2070static int falcon_gmii_wait(struct efx_nic *efx)
2071{
2072 efx_dword_t md_stat;
2073 int count;
2074
Ben Hutchings177dfcd2008-12-12 21:50:08 -08002075 /* wait upto 50ms - taken max from datasheet */
2076 for (count = 0; count < 5000; count++) {
Ben Hutchings12d00ca2009-10-23 08:30:46 +00002077 efx_readd(efx, &md_stat, FR_AB_MD_STAT);
Ben Hutchings3e6c4532009-10-23 08:30:36 +00002078 if (EFX_DWORD_FIELD(md_stat, FRF_AB_MD_BSY) == 0) {
2079 if (EFX_DWORD_FIELD(md_stat, FRF_AB_MD_LNFL) != 0 ||
2080 EFX_DWORD_FIELD(md_stat, FRF_AB_MD_BSERR) != 0) {
Ben Hutchings8ceee662008-04-27 12:55:59 +01002081 EFX_ERR(efx, "error from GMII access "
2082 EFX_DWORD_FMT"\n",
2083 EFX_DWORD_VAL(md_stat));
2084 return -EIO;
2085 }
2086 return 0;
2087 }
2088 udelay(10);
2089 }
2090 EFX_ERR(efx, "timed out waiting for GMII\n");
2091 return -ETIMEDOUT;
2092}
2093
Ben Hutchings68e7f452009-04-29 08:05:08 +00002094/* Write an MDIO register of a PHY connected to Falcon. */
2095static int falcon_mdio_write(struct net_device *net_dev,
2096 int prtad, int devad, u16 addr, u16 value)
Ben Hutchings8ceee662008-04-27 12:55:59 +01002097{
Ben Hutchings767e4682008-09-01 12:43:14 +01002098 struct efx_nic *efx = netdev_priv(net_dev);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002099 efx_oword_t reg;
Ben Hutchings68e7f452009-04-29 08:05:08 +00002100 int rc;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002101
Ben Hutchings68e7f452009-04-29 08:05:08 +00002102 EFX_REGDUMP(efx, "writing MDIO %d register %d.%d with 0x%04x\n",
2103 prtad, devad, addr, value);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002104
2105 spin_lock_bh(&efx->phy_lock);
2106
Ben Hutchings68e7f452009-04-29 08:05:08 +00002107 /* Check MDIO not currently being accessed */
2108 rc = falcon_gmii_wait(efx);
2109 if (rc)
Ben Hutchings8ceee662008-04-27 12:55:59 +01002110 goto out;
2111
2112 /* Write the address/ID register */
Ben Hutchings3e6c4532009-10-23 08:30:36 +00002113 EFX_POPULATE_OWORD_1(reg, FRF_AB_MD_PHY_ADR, addr);
Ben Hutchings12d00ca2009-10-23 08:30:46 +00002114 efx_writeo(efx, &reg, FR_AB_MD_PHY_ADR);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002115
Ben Hutchings3e6c4532009-10-23 08:30:36 +00002116 EFX_POPULATE_OWORD_2(reg, FRF_AB_MD_PRT_ADR, prtad,
2117 FRF_AB_MD_DEV_ADR, devad);
Ben Hutchings12d00ca2009-10-23 08:30:46 +00002118 efx_writeo(efx, &reg, FR_AB_MD_ID);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002119
2120 /* Write data */
Ben Hutchings3e6c4532009-10-23 08:30:36 +00002121 EFX_POPULATE_OWORD_1(reg, FRF_AB_MD_TXD, value);
Ben Hutchings12d00ca2009-10-23 08:30:46 +00002122 efx_writeo(efx, &reg, FR_AB_MD_TXD);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002123
2124 EFX_POPULATE_OWORD_2(reg,
Ben Hutchings3e6c4532009-10-23 08:30:36 +00002125 FRF_AB_MD_WRC, 1,
2126 FRF_AB_MD_GC, 0);
Ben Hutchings12d00ca2009-10-23 08:30:46 +00002127 efx_writeo(efx, &reg, FR_AB_MD_CS);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002128
2129 /* Wait for data to be written */
Ben Hutchings68e7f452009-04-29 08:05:08 +00002130 rc = falcon_gmii_wait(efx);
2131 if (rc) {
Ben Hutchings8ceee662008-04-27 12:55:59 +01002132 /* Abort the write operation */
2133 EFX_POPULATE_OWORD_2(reg,
Ben Hutchings3e6c4532009-10-23 08:30:36 +00002134 FRF_AB_MD_WRC, 0,
2135 FRF_AB_MD_GC, 1);
Ben Hutchings12d00ca2009-10-23 08:30:46 +00002136 efx_writeo(efx, &reg, FR_AB_MD_CS);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002137 udelay(10);
2138 }
2139
2140 out:
2141 spin_unlock_bh(&efx->phy_lock);
Ben Hutchings68e7f452009-04-29 08:05:08 +00002142 return rc;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002143}
2144
Ben Hutchings68e7f452009-04-29 08:05:08 +00002145/* Read an MDIO register of a PHY connected to Falcon. */
2146static int falcon_mdio_read(struct net_device *net_dev,
2147 int prtad, int devad, u16 addr)
Ben Hutchings8ceee662008-04-27 12:55:59 +01002148{
Ben Hutchings767e4682008-09-01 12:43:14 +01002149 struct efx_nic *efx = netdev_priv(net_dev);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002150 efx_oword_t reg;
Ben Hutchings68e7f452009-04-29 08:05:08 +00002151 int rc;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002152
2153 spin_lock_bh(&efx->phy_lock);
2154
Ben Hutchings68e7f452009-04-29 08:05:08 +00002155 /* Check MDIO not currently being accessed */
2156 rc = falcon_gmii_wait(efx);
2157 if (rc)
Ben Hutchings8ceee662008-04-27 12:55:59 +01002158 goto out;
2159
Ben Hutchings3e6c4532009-10-23 08:30:36 +00002160 EFX_POPULATE_OWORD_1(reg, FRF_AB_MD_PHY_ADR, addr);
Ben Hutchings12d00ca2009-10-23 08:30:46 +00002161 efx_writeo(efx, &reg, FR_AB_MD_PHY_ADR);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002162
Ben Hutchings3e6c4532009-10-23 08:30:36 +00002163 EFX_POPULATE_OWORD_2(reg, FRF_AB_MD_PRT_ADR, prtad,
2164 FRF_AB_MD_DEV_ADR, devad);
Ben Hutchings12d00ca2009-10-23 08:30:46 +00002165 efx_writeo(efx, &reg, FR_AB_MD_ID);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002166
2167 /* Request data to be read */
Ben Hutchings3e6c4532009-10-23 08:30:36 +00002168 EFX_POPULATE_OWORD_2(reg, FRF_AB_MD_RDC, 1, FRF_AB_MD_GC, 0);
Ben Hutchings12d00ca2009-10-23 08:30:46 +00002169 efx_writeo(efx, &reg, FR_AB_MD_CS);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002170
2171 /* Wait for data to become available */
Ben Hutchings68e7f452009-04-29 08:05:08 +00002172 rc = falcon_gmii_wait(efx);
2173 if (rc == 0) {
Ben Hutchings12d00ca2009-10-23 08:30:46 +00002174 efx_reado(efx, &reg, FR_AB_MD_RXD);
Ben Hutchings3e6c4532009-10-23 08:30:36 +00002175 rc = EFX_OWORD_FIELD(reg, FRF_AB_MD_RXD);
Ben Hutchings68e7f452009-04-29 08:05:08 +00002176 EFX_REGDUMP(efx, "read from MDIO %d register %d.%d, got %04x\n",
2177 prtad, devad, addr, rc);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002178 } else {
2179 /* Abort the read operation */
2180 EFX_POPULATE_OWORD_2(reg,
Ben Hutchings3e6c4532009-10-23 08:30:36 +00002181 FRF_AB_MD_RIC, 0,
2182 FRF_AB_MD_GC, 1);
Ben Hutchings12d00ca2009-10-23 08:30:46 +00002183 efx_writeo(efx, &reg, FR_AB_MD_CS);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002184
Ben Hutchings68e7f452009-04-29 08:05:08 +00002185 EFX_LOG(efx, "read from MDIO %d register %d.%d, got error %d\n",
2186 prtad, devad, addr, rc);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002187 }
2188
2189 out:
2190 spin_unlock_bh(&efx->phy_lock);
Ben Hutchings68e7f452009-04-29 08:05:08 +00002191 return rc;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002192}
2193
2194static int falcon_probe_phy(struct efx_nic *efx)
2195{
2196 switch (efx->phy_type) {
Ben Hutchingse6fa2eb2008-12-12 22:00:17 -08002197 case PHY_TYPE_SFX7101:
2198 efx->phy_op = &falcon_sfx7101_phy_ops;
2199 break;
2200 case PHY_TYPE_SFT9001A:
2201 case PHY_TYPE_SFT9001B:
2202 efx->phy_op = &falcon_sft9001_phy_ops;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002203 break;
Ben Hutchingsab377352008-12-12 22:06:54 -08002204 case PHY_TYPE_QT2022C2:
Ben Hutchingsd2d2c372009-02-27 13:07:33 +00002205 case PHY_TYPE_QT2025C:
Ben Hutchings8ceee662008-04-27 12:55:59 +01002206 efx->phy_op = &falcon_xfp_phy_ops;
2207 break;
2208 default:
2209 EFX_ERR(efx, "Unknown PHY type %d\n",
2210 efx->phy_type);
2211 return -1;
2212 }
Ben Hutchings3273c2e2008-05-07 13:36:19 +01002213
Ben Hutchings177dfcd2008-12-12 21:50:08 -08002214 if (efx->phy_op->macs & EFX_XMAC)
2215 efx->loopback_modes |= ((1 << LOOPBACK_XGMII) |
2216 (1 << LOOPBACK_XGXS) |
2217 (1 << LOOPBACK_XAUI));
2218 if (efx->phy_op->macs & EFX_GMAC)
2219 efx->loopback_modes |= (1 << LOOPBACK_GMAC);
2220 efx->loopback_modes |= efx->phy_op->loopbacks;
2221
Ben Hutchings8ceee662008-04-27 12:55:59 +01002222 return 0;
2223}
2224
Ben Hutchings177dfcd2008-12-12 21:50:08 -08002225int falcon_switch_mac(struct efx_nic *efx)
2226{
2227 struct efx_mac_operations *old_mac_op = efx->mac_op;
2228 efx_oword_t nic_stat;
2229 unsigned strap_val;
Ben Hutchings1974cc22009-01-29 18:00:07 +00002230 int rc = 0;
2231
2232 /* Don't try to fetch MAC stats while we're switching MACs */
2233 efx_stats_disable(efx);
Ben Hutchings177dfcd2008-12-12 21:50:08 -08002234
2235 /* Internal loopbacks override the phy speed setting */
2236 if (efx->loopback_mode == LOOPBACK_GMAC) {
2237 efx->link_speed = 1000;
2238 efx->link_fd = true;
2239 } else if (LOOPBACK_INTERNAL(efx)) {
2240 efx->link_speed = 10000;
2241 efx->link_fd = true;
2242 }
2243
Steve Hodgson0cc1283872009-01-29 17:49:59 +00002244 WARN_ON(!mutex_is_locked(&efx->mac_lock));
Ben Hutchings177dfcd2008-12-12 21:50:08 -08002245 efx->mac_op = (EFX_IS10G(efx) ?
2246 &falcon_xmac_operations : &falcon_gmac_operations);
Ben Hutchings177dfcd2008-12-12 21:50:08 -08002247
Steve Hodgson0cc1283872009-01-29 17:49:59 +00002248 /* Always push the NIC_STAT_REG setting even if the mac hasn't
2249 * changed, because this function is run post online reset */
Ben Hutchings12d00ca2009-10-23 08:30:46 +00002250 efx_reado(efx, &nic_stat, FR_AB_NIC_STAT);
Ben Hutchings177dfcd2008-12-12 21:50:08 -08002251 strap_val = EFX_IS10G(efx) ? 5 : 3;
2252 if (falcon_rev(efx) >= FALCON_REV_B0) {
Ben Hutchings3e6c4532009-10-23 08:30:36 +00002253 EFX_SET_OWORD_FIELD(nic_stat, FRF_BB_EE_STRAP_EN, 1);
2254 EFX_SET_OWORD_FIELD(nic_stat, FRF_BB_EE_STRAP, strap_val);
Ben Hutchings12d00ca2009-10-23 08:30:46 +00002255 efx_writeo(efx, &nic_stat, FR_AB_NIC_STAT);
Ben Hutchings177dfcd2008-12-12 21:50:08 -08002256 } else {
2257 /* Falcon A1 does not support 1G/10G speed switching
2258 * and must not be used with a PHY that does. */
Ben Hutchings3e6c4532009-10-23 08:30:36 +00002259 BUG_ON(EFX_OWORD_FIELD(nic_stat, FRF_AB_STRAP_PINS) !=
2260 strap_val);
Ben Hutchings177dfcd2008-12-12 21:50:08 -08002261 }
2262
Steve Hodgson0cc1283872009-01-29 17:49:59 +00002263 if (old_mac_op == efx->mac_op)
Ben Hutchings1974cc22009-01-29 18:00:07 +00002264 goto out;
Ben Hutchings177dfcd2008-12-12 21:50:08 -08002265
2266 EFX_LOG(efx, "selected %cMAC\n", EFX_IS10G(efx) ? 'X' : 'G');
Steve Hodgson0cc1283872009-01-29 17:49:59 +00002267 /* Not all macs support a mac-level link state */
2268 efx->mac_up = true;
2269
Ben Hutchings1974cc22009-01-29 18:00:07 +00002270 rc = falcon_reset_macs(efx);
2271out:
2272 efx_stats_enable(efx);
2273 return rc;
Ben Hutchings177dfcd2008-12-12 21:50:08 -08002274}
2275
Ben Hutchings8ceee662008-04-27 12:55:59 +01002276/* This call is responsible for hooking in the MAC and PHY operations */
2277int falcon_probe_port(struct efx_nic *efx)
2278{
2279 int rc;
2280
2281 /* Hook in PHY operations table */
2282 rc = falcon_probe_phy(efx);
2283 if (rc)
2284 return rc;
2285
Ben Hutchings68e7f452009-04-29 08:05:08 +00002286 /* Set up MDIO structure for PHY */
2287 efx->mdio.mmds = efx->phy_op->mmds;
2288 efx->mdio.mode_support = MDIO_SUPPORTS_C45 | MDIO_EMULATE_C22;
2289 efx->mdio.mdio_read = falcon_mdio_read;
2290 efx->mdio.mdio_write = falcon_mdio_write;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002291
2292 /* Hardware flow ctrl. FalconA RX FIFO too small for pause generation */
Ben Hutchings55668612008-05-16 21:16:10 +01002293 if (falcon_rev(efx) >= FALCON_REV_B0)
Ben Hutchings04cc8ca2008-12-12 21:50:46 -08002294 efx->wanted_fc = EFX_FC_RX | EFX_FC_TX;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002295 else
Ben Hutchings04cc8ca2008-12-12 21:50:46 -08002296 efx->wanted_fc = EFX_FC_RX;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002297
2298 /* Allocate buffer for stats */
2299 rc = falcon_alloc_buffer(efx, &efx->stats_buffer,
2300 FALCON_MAC_STATS_SIZE);
2301 if (rc)
2302 return rc;
Jaswinder Singh Rajput9c8976a2009-02-11 23:49:52 +05302303 EFX_LOG(efx, "stats buffer at %llx (virt %p phys %llx)\n",
2304 (u64)efx->stats_buffer.dma_addr,
Ben Hutchings8ceee662008-04-27 12:55:59 +01002305 efx->stats_buffer.addr,
Jaswinder Singh Rajput9c8976a2009-02-11 23:49:52 +05302306 (u64)virt_to_phys(efx->stats_buffer.addr));
Ben Hutchings8ceee662008-04-27 12:55:59 +01002307
2308 return 0;
2309}
2310
2311void falcon_remove_port(struct efx_nic *efx)
2312{
2313 falcon_free_buffer(efx, &efx->stats_buffer);
2314}
2315
2316/**************************************************************************
2317 *
2318 * Multicast filtering
2319 *
2320 **************************************************************************
2321 */
2322
2323void falcon_set_multicast_hash(struct efx_nic *efx)
2324{
2325 union efx_multicast_hash *mc_hash = &efx->multicast_hash;
2326
2327 /* Broadcast packets go through the multicast hash filter.
2328 * ether_crc_le() of the broadcast address is 0xbe2612ff
2329 * so we always add bit 0xff to the mask.
2330 */
2331 set_bit_le(0xff, mc_hash->byte);
2332
Ben Hutchings12d00ca2009-10-23 08:30:46 +00002333 efx_writeo(efx, &mc_hash->oword[0], FR_AB_MAC_MC_HASH_REG0);
2334 efx_writeo(efx, &mc_hash->oword[1], FR_AB_MAC_MC_HASH_REG1);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002335}
2336
Ben Hutchings8c8661e2008-09-01 12:49:02 +01002337
2338/**************************************************************************
2339 *
2340 * Falcon test code
2341 *
2342 **************************************************************************/
2343
2344int falcon_read_nvram(struct efx_nic *efx, struct falcon_nvconfig *nvconfig_out)
2345{
2346 struct falcon_nvconfig *nvconfig;
2347 struct efx_spi_device *spi;
2348 void *region;
2349 int rc, magic_num, struct_ver;
2350 __le16 *word, *limit;
2351 u32 csum;
2352
Ben Hutchings2f7f5732008-12-12 21:34:25 -08002353 spi = efx->spi_flash ? efx->spi_flash : efx->spi_eeprom;
2354 if (!spi)
2355 return -EINVAL;
2356
Ben Hutchings0a95f562008-11-04 20:33:11 +00002357 region = kmalloc(FALCON_NVCONFIG_END, GFP_KERNEL);
Ben Hutchings8c8661e2008-09-01 12:49:02 +01002358 if (!region)
2359 return -ENOMEM;
Ben Hutchings3e6c4532009-10-23 08:30:36 +00002360 nvconfig = region + FALCON_NVCONFIG_OFFSET;
Ben Hutchings8c8661e2008-09-01 12:49:02 +01002361
Ben Hutchingsf4150722008-11-04 20:34:28 +00002362 mutex_lock(&efx->spi_lock);
Ben Hutchings0a95f562008-11-04 20:33:11 +00002363 rc = falcon_spi_read(spi, 0, FALCON_NVCONFIG_END, NULL, region);
Ben Hutchingsf4150722008-11-04 20:34:28 +00002364 mutex_unlock(&efx->spi_lock);
Ben Hutchings8c8661e2008-09-01 12:49:02 +01002365 if (rc) {
2366 EFX_ERR(efx, "Failed to read %s\n",
2367 efx->spi_flash ? "flash" : "EEPROM");
2368 rc = -EIO;
2369 goto out;
2370 }
2371
2372 magic_num = le16_to_cpu(nvconfig->board_magic_num);
2373 struct_ver = le16_to_cpu(nvconfig->board_struct_ver);
2374
2375 rc = -EINVAL;
Ben Hutchings3e6c4532009-10-23 08:30:36 +00002376 if (magic_num != FALCON_NVCONFIG_BOARD_MAGIC_NUM) {
Ben Hutchings8c8661e2008-09-01 12:49:02 +01002377 EFX_ERR(efx, "NVRAM bad magic 0x%x\n", magic_num);
2378 goto out;
2379 }
2380 if (struct_ver < 2) {
2381 EFX_ERR(efx, "NVRAM has ancient version 0x%x\n", struct_ver);
2382 goto out;
2383 } else if (struct_ver < 4) {
2384 word = &nvconfig->board_magic_num;
2385 limit = (__le16 *) (nvconfig + 1);
2386 } else {
2387 word = region;
Ben Hutchings0a95f562008-11-04 20:33:11 +00002388 limit = region + FALCON_NVCONFIG_END;
Ben Hutchings8c8661e2008-09-01 12:49:02 +01002389 }
2390 for (csum = 0; word < limit; ++word)
2391 csum += le16_to_cpu(*word);
2392
2393 if (~csum & 0xffff) {
2394 EFX_ERR(efx, "NVRAM has incorrect checksum\n");
2395 goto out;
2396 }
2397
2398 rc = 0;
2399 if (nvconfig_out)
2400 memcpy(nvconfig_out, nvconfig, sizeof(*nvconfig));
2401
2402 out:
2403 kfree(region);
2404 return rc;
2405}
2406
2407/* Registers tested in the falcon register test */
2408static struct {
2409 unsigned address;
2410 efx_oword_t mask;
2411} efx_test_registers[] = {
Ben Hutchings3e6c4532009-10-23 08:30:36 +00002412 { FR_AZ_ADR_REGION,
Ben Hutchings8c8661e2008-09-01 12:49:02 +01002413 EFX_OWORD32(0x0001FFFF, 0x0001FFFF, 0x0001FFFF, 0x0001FFFF) },
Ben Hutchings3e6c4532009-10-23 08:30:36 +00002414 { FR_AZ_RX_CFG,
Ben Hutchings8c8661e2008-09-01 12:49:02 +01002415 EFX_OWORD32(0xFFFFFFFE, 0x00017FFF, 0x00000000, 0x00000000) },
Ben Hutchings3e6c4532009-10-23 08:30:36 +00002416 { FR_AZ_TX_CFG,
Ben Hutchings8c8661e2008-09-01 12:49:02 +01002417 EFX_OWORD32(0x7FFF0037, 0x00000000, 0x00000000, 0x00000000) },
Ben Hutchings3e6c4532009-10-23 08:30:36 +00002418 { FR_AZ_TX_RESERVED,
Ben Hutchings8c8661e2008-09-01 12:49:02 +01002419 EFX_OWORD32(0xFFFEFE80, 0x1FFFFFFF, 0x020000FE, 0x007FFFFF) },
Ben Hutchings3e6c4532009-10-23 08:30:36 +00002420 { FR_AB_MAC_CTRL,
Ben Hutchings8c8661e2008-09-01 12:49:02 +01002421 EFX_OWORD32(0xFFFF0000, 0x00000000, 0x00000000, 0x00000000) },
Ben Hutchings3e6c4532009-10-23 08:30:36 +00002422 { FR_AZ_SRM_TX_DC_CFG,
Ben Hutchings8c8661e2008-09-01 12:49:02 +01002423 EFX_OWORD32(0x001FFFFF, 0x00000000, 0x00000000, 0x00000000) },
Ben Hutchings3e6c4532009-10-23 08:30:36 +00002424 { FR_AZ_RX_DC_CFG,
Ben Hutchings8c8661e2008-09-01 12:49:02 +01002425 EFX_OWORD32(0x0000000F, 0x00000000, 0x00000000, 0x00000000) },
Ben Hutchings3e6c4532009-10-23 08:30:36 +00002426 { FR_AZ_RX_DC_PF_WM,
Ben Hutchings8c8661e2008-09-01 12:49:02 +01002427 EFX_OWORD32(0x000003FF, 0x00000000, 0x00000000, 0x00000000) },
Ben Hutchings3e6c4532009-10-23 08:30:36 +00002428 { FR_BZ_DP_CTRL,
Ben Hutchings8c8661e2008-09-01 12:49:02 +01002429 EFX_OWORD32(0x00000FFF, 0x00000000, 0x00000000, 0x00000000) },
Ben Hutchings3e6c4532009-10-23 08:30:36 +00002430 { FR_AB_GM_CFG2,
Ben Hutchings177dfcd2008-12-12 21:50:08 -08002431 EFX_OWORD32(0x00007337, 0x00000000, 0x00000000, 0x00000000) },
Ben Hutchings3e6c4532009-10-23 08:30:36 +00002432 { FR_AB_GMF_CFG0,
Ben Hutchings177dfcd2008-12-12 21:50:08 -08002433 EFX_OWORD32(0x00001F1F, 0x00000000, 0x00000000, 0x00000000) },
Ben Hutchings3e6c4532009-10-23 08:30:36 +00002434 { FR_AB_XM_GLB_CFG,
Ben Hutchings8c8661e2008-09-01 12:49:02 +01002435 EFX_OWORD32(0x00000C68, 0x00000000, 0x00000000, 0x00000000) },
Ben Hutchings3e6c4532009-10-23 08:30:36 +00002436 { FR_AB_XM_TX_CFG,
Ben Hutchings8c8661e2008-09-01 12:49:02 +01002437 EFX_OWORD32(0x00080164, 0x00000000, 0x00000000, 0x00000000) },
Ben Hutchings3e6c4532009-10-23 08:30:36 +00002438 { FR_AB_XM_RX_CFG,
Ben Hutchings8c8661e2008-09-01 12:49:02 +01002439 EFX_OWORD32(0x07100A0C, 0x00000000, 0x00000000, 0x00000000) },
Ben Hutchings3e6c4532009-10-23 08:30:36 +00002440 { FR_AB_XM_RX_PARAM,
Ben Hutchings8c8661e2008-09-01 12:49:02 +01002441 EFX_OWORD32(0x00001FF8, 0x00000000, 0x00000000, 0x00000000) },
Ben Hutchings3e6c4532009-10-23 08:30:36 +00002442 { FR_AB_XM_FC,
Ben Hutchings8c8661e2008-09-01 12:49:02 +01002443 EFX_OWORD32(0xFFFF0001, 0x00000000, 0x00000000, 0x00000000) },
Ben Hutchings3e6c4532009-10-23 08:30:36 +00002444 { FR_AB_XM_ADR_LO,
Ben Hutchings8c8661e2008-09-01 12:49:02 +01002445 EFX_OWORD32(0xFFFFFFFF, 0x00000000, 0x00000000, 0x00000000) },
Ben Hutchings3e6c4532009-10-23 08:30:36 +00002446 { FR_AB_XX_SD_CTL,
Ben Hutchings8c8661e2008-09-01 12:49:02 +01002447 EFX_OWORD32(0x0003FF0F, 0x00000000, 0x00000000, 0x00000000) },
2448};
2449
2450static bool efx_masked_compare_oword(const efx_oword_t *a, const efx_oword_t *b,
2451 const efx_oword_t *mask)
2452{
2453 return ((a->u64[0] ^ b->u64[0]) & mask->u64[0]) ||
2454 ((a->u64[1] ^ b->u64[1]) & mask->u64[1]);
2455}
2456
2457int falcon_test_registers(struct efx_nic *efx)
2458{
2459 unsigned address = 0, i, j;
2460 efx_oword_t mask, imask, original, reg, buf;
2461
2462 /* Falcon should be in loopback to isolate the XMAC from the PHY */
2463 WARN_ON(!LOOPBACK_INTERNAL(efx));
2464
2465 for (i = 0; i < ARRAY_SIZE(efx_test_registers); ++i) {
2466 address = efx_test_registers[i].address;
2467 mask = imask = efx_test_registers[i].mask;
2468 EFX_INVERT_OWORD(imask);
2469
Ben Hutchings12d00ca2009-10-23 08:30:46 +00002470 efx_reado(efx, &original, address);
Ben Hutchings8c8661e2008-09-01 12:49:02 +01002471
2472 /* bit sweep on and off */
2473 for (j = 0; j < 128; j++) {
2474 if (!EFX_EXTRACT_OWORD32(mask, j, j))
2475 continue;
2476
2477 /* Test this testable bit can be set in isolation */
2478 EFX_AND_OWORD(reg, original, mask);
2479 EFX_SET_OWORD32(reg, j, j, 1);
2480
Ben Hutchings12d00ca2009-10-23 08:30:46 +00002481 efx_writeo(efx, &reg, address);
2482 efx_reado(efx, &buf, address);
Ben Hutchings8c8661e2008-09-01 12:49:02 +01002483
2484 if (efx_masked_compare_oword(&reg, &buf, &mask))
2485 goto fail;
2486
2487 /* Test this testable bit can be cleared in isolation */
2488 EFX_OR_OWORD(reg, original, mask);
2489 EFX_SET_OWORD32(reg, j, j, 0);
2490
Ben Hutchings12d00ca2009-10-23 08:30:46 +00002491 efx_writeo(efx, &reg, address);
2492 efx_reado(efx, &buf, address);
Ben Hutchings8c8661e2008-09-01 12:49:02 +01002493
2494 if (efx_masked_compare_oword(&reg, &buf, &mask))
2495 goto fail;
2496 }
2497
Ben Hutchings12d00ca2009-10-23 08:30:46 +00002498 efx_writeo(efx, &original, address);
Ben Hutchings8c8661e2008-09-01 12:49:02 +01002499 }
2500
2501 return 0;
2502
2503fail:
2504 EFX_ERR(efx, "wrote "EFX_OWORD_FMT" read "EFX_OWORD_FMT
2505 " at address 0x%x mask "EFX_OWORD_FMT"\n", EFX_OWORD_VAL(reg),
2506 EFX_OWORD_VAL(buf), address, EFX_OWORD_VAL(mask));
2507 return -EIO;
2508}
2509
Ben Hutchings8ceee662008-04-27 12:55:59 +01002510/**************************************************************************
2511 *
2512 * Device reset
2513 *
2514 **************************************************************************
2515 */
2516
2517/* Resets NIC to known state. This routine must be called in process
2518 * context and is allowed to sleep. */
2519int falcon_reset_hw(struct efx_nic *efx, enum reset_type method)
2520{
2521 struct falcon_nic_data *nic_data = efx->nic_data;
2522 efx_oword_t glb_ctl_reg_ker;
2523 int rc;
2524
2525 EFX_LOG(efx, "performing hardware reset (%d)\n", method);
2526
2527 /* Initiate device reset */
2528 if (method == RESET_TYPE_WORLD) {
2529 rc = pci_save_state(efx->pci_dev);
2530 if (rc) {
2531 EFX_ERR(efx, "failed to backup PCI state of primary "
2532 "function prior to hardware reset\n");
2533 goto fail1;
2534 }
2535 if (FALCON_IS_DUAL_FUNC(efx)) {
2536 rc = pci_save_state(nic_data->pci_dev2);
2537 if (rc) {
2538 EFX_ERR(efx, "failed to backup PCI state of "
2539 "secondary function prior to "
2540 "hardware reset\n");
2541 goto fail2;
2542 }
2543 }
2544
2545 EFX_POPULATE_OWORD_2(glb_ctl_reg_ker,
Ben Hutchings3e6c4532009-10-23 08:30:36 +00002546 FRF_AB_EXT_PHY_RST_DUR,
2547 FFE_AB_EXT_PHY_RST_DUR_10240US,
2548 FRF_AB_SWRST, 1);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002549 } else {
Ben Hutchings8ceee662008-04-27 12:55:59 +01002550 EFX_POPULATE_OWORD_7(glb_ctl_reg_ker,
Ben Hutchings3e6c4532009-10-23 08:30:36 +00002551 /* exclude PHY from "invisible" reset */
2552 FRF_AB_EXT_PHY_RST_CTL,
2553 method == RESET_TYPE_INVISIBLE,
2554 /* exclude EEPROM/flash and PCIe */
2555 FRF_AB_PCIE_CORE_RST_CTL, 1,
2556 FRF_AB_PCIE_NSTKY_RST_CTL, 1,
2557 FRF_AB_PCIE_SD_RST_CTL, 1,
2558 FRF_AB_EE_RST_CTL, 1,
2559 FRF_AB_EXT_PHY_RST_DUR,
2560 FFE_AB_EXT_PHY_RST_DUR_10240US,
2561 FRF_AB_SWRST, 1);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002562 }
Ben Hutchings12d00ca2009-10-23 08:30:46 +00002563 efx_writeo(efx, &glb_ctl_reg_ker, FR_AB_GLB_CTL);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002564
2565 EFX_LOG(efx, "waiting for hardware reset\n");
2566 schedule_timeout_uninterruptible(HZ / 20);
2567
2568 /* Restore PCI configuration if needed */
2569 if (method == RESET_TYPE_WORLD) {
2570 if (FALCON_IS_DUAL_FUNC(efx)) {
2571 rc = pci_restore_state(nic_data->pci_dev2);
2572 if (rc) {
2573 EFX_ERR(efx, "failed to restore PCI config for "
2574 "the secondary function\n");
2575 goto fail3;
2576 }
2577 }
2578 rc = pci_restore_state(efx->pci_dev);
2579 if (rc) {
2580 EFX_ERR(efx, "failed to restore PCI config for the "
2581 "primary function\n");
2582 goto fail4;
2583 }
2584 EFX_LOG(efx, "successfully restored PCI config\n");
2585 }
2586
2587 /* Assert that reset complete */
Ben Hutchings12d00ca2009-10-23 08:30:46 +00002588 efx_reado(efx, &glb_ctl_reg_ker, FR_AB_GLB_CTL);
Ben Hutchings3e6c4532009-10-23 08:30:36 +00002589 if (EFX_OWORD_FIELD(glb_ctl_reg_ker, FRF_AB_SWRST) != 0) {
Ben Hutchings8ceee662008-04-27 12:55:59 +01002590 rc = -ETIMEDOUT;
2591 EFX_ERR(efx, "timed out waiting for hardware reset\n");
2592 goto fail5;
2593 }
2594 EFX_LOG(efx, "hardware reset complete\n");
2595
2596 return 0;
2597
2598 /* pci_save_state() and pci_restore_state() MUST be called in pairs */
2599fail2:
2600fail3:
2601 pci_restore_state(efx->pci_dev);
2602fail1:
2603fail4:
2604fail5:
2605 return rc;
2606}
2607
2608/* Zeroes out the SRAM contents. This routine must be called in
2609 * process context and is allowed to sleep.
2610 */
2611static int falcon_reset_sram(struct efx_nic *efx)
2612{
2613 efx_oword_t srm_cfg_reg_ker, gpio_cfg_reg_ker;
2614 int count;
2615
2616 /* Set the SRAM wake/sleep GPIO appropriately. */
Ben Hutchings12d00ca2009-10-23 08:30:46 +00002617 efx_reado(efx, &gpio_cfg_reg_ker, FR_AB_GPIO_CTL);
Ben Hutchings3e6c4532009-10-23 08:30:36 +00002618 EFX_SET_OWORD_FIELD(gpio_cfg_reg_ker, FRF_AB_GPIO1_OEN, 1);
2619 EFX_SET_OWORD_FIELD(gpio_cfg_reg_ker, FRF_AB_GPIO1_OUT, 1);
Ben Hutchings12d00ca2009-10-23 08:30:46 +00002620 efx_writeo(efx, &gpio_cfg_reg_ker, FR_AB_GPIO_CTL);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002621
2622 /* Initiate SRAM reset */
2623 EFX_POPULATE_OWORD_2(srm_cfg_reg_ker,
Ben Hutchings3e6c4532009-10-23 08:30:36 +00002624 FRF_AZ_SRM_INIT_EN, 1,
2625 FRF_AZ_SRM_NB_SZ, 0);
Ben Hutchings12d00ca2009-10-23 08:30:46 +00002626 efx_writeo(efx, &srm_cfg_reg_ker, FR_AZ_SRM_CFG);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002627
2628 /* Wait for SRAM reset to complete */
2629 count = 0;
2630 do {
2631 EFX_LOG(efx, "waiting for SRAM reset (attempt %d)...\n", count);
2632
2633 /* SRAM reset is slow; expect around 16ms */
2634 schedule_timeout_uninterruptible(HZ / 50);
2635
2636 /* Check for reset complete */
Ben Hutchings12d00ca2009-10-23 08:30:46 +00002637 efx_reado(efx, &srm_cfg_reg_ker, FR_AZ_SRM_CFG);
Ben Hutchings3e6c4532009-10-23 08:30:36 +00002638 if (!EFX_OWORD_FIELD(srm_cfg_reg_ker, FRF_AZ_SRM_INIT_EN)) {
Ben Hutchings8ceee662008-04-27 12:55:59 +01002639 EFX_LOG(efx, "SRAM reset complete\n");
2640
2641 return 0;
2642 }
2643 } while (++count < 20); /* wait upto 0.4 sec */
2644
2645 EFX_ERR(efx, "timed out waiting for SRAM reset\n");
2646 return -ETIMEDOUT;
2647}
2648
Ben Hutchings4a5b5042008-09-01 12:47:16 +01002649static int falcon_spi_device_init(struct efx_nic *efx,
2650 struct efx_spi_device **spi_device_ret,
2651 unsigned int device_id, u32 device_type)
2652{
2653 struct efx_spi_device *spi_device;
2654
2655 if (device_type != 0) {
Ben Hutchings0c53d8c2008-12-12 22:08:50 -08002656 spi_device = kzalloc(sizeof(*spi_device), GFP_KERNEL);
Ben Hutchings4a5b5042008-09-01 12:47:16 +01002657 if (!spi_device)
2658 return -ENOMEM;
2659 spi_device->device_id = device_id;
2660 spi_device->size =
2661 1 << SPI_DEV_TYPE_FIELD(device_type, SPI_DEV_TYPE_SIZE);
2662 spi_device->addr_len =
2663 SPI_DEV_TYPE_FIELD(device_type, SPI_DEV_TYPE_ADDR_LEN);
2664 spi_device->munge_address = (spi_device->size == 1 << 9 &&
2665 spi_device->addr_len == 1);
Ben Hutchingsf4150722008-11-04 20:34:28 +00002666 spi_device->erase_command =
2667 SPI_DEV_TYPE_FIELD(device_type, SPI_DEV_TYPE_ERASE_CMD);
2668 spi_device->erase_size =
2669 1 << SPI_DEV_TYPE_FIELD(device_type,
2670 SPI_DEV_TYPE_ERASE_SIZE);
Ben Hutchings4a5b5042008-09-01 12:47:16 +01002671 spi_device->block_size =
2672 1 << SPI_DEV_TYPE_FIELD(device_type,
2673 SPI_DEV_TYPE_BLOCK_SIZE);
2674
2675 spi_device->efx = efx;
2676 } else {
2677 spi_device = NULL;
2678 }
2679
2680 kfree(*spi_device_ret);
2681 *spi_device_ret = spi_device;
2682 return 0;
2683}
2684
2685
2686static void falcon_remove_spi_devices(struct efx_nic *efx)
2687{
2688 kfree(efx->spi_eeprom);
2689 efx->spi_eeprom = NULL;
2690 kfree(efx->spi_flash);
2691 efx->spi_flash = NULL;
2692}
2693
Ben Hutchings8ceee662008-04-27 12:55:59 +01002694/* Extract non-volatile configuration */
2695static int falcon_probe_nvconfig(struct efx_nic *efx)
2696{
2697 struct falcon_nvconfig *nvconfig;
Ben Hutchings8c8661e2008-09-01 12:49:02 +01002698 int board_rev;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002699 int rc;
2700
Ben Hutchings8ceee662008-04-27 12:55:59 +01002701 nvconfig = kmalloc(sizeof(*nvconfig), GFP_KERNEL);
Ben Hutchings4a5b5042008-09-01 12:47:16 +01002702 if (!nvconfig)
2703 return -ENOMEM;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002704
Ben Hutchings8c8661e2008-09-01 12:49:02 +01002705 rc = falcon_read_nvram(efx, nvconfig);
2706 if (rc == -EINVAL) {
2707 EFX_ERR(efx, "NVRAM is invalid therefore using defaults\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01002708 efx->phy_type = PHY_TYPE_NONE;
Ben Hutchings68e7f452009-04-29 08:05:08 +00002709 efx->mdio.prtad = MDIO_PRTAD_NONE;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002710 board_rev = 0;
Ben Hutchings8c8661e2008-09-01 12:49:02 +01002711 rc = 0;
2712 } else if (rc) {
2713 goto fail1;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002714 } else {
2715 struct falcon_nvconfig_board_v2 *v2 = &nvconfig->board_v2;
Ben Hutchings4a5b5042008-09-01 12:47:16 +01002716 struct falcon_nvconfig_board_v3 *v3 = &nvconfig->board_v3;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002717
2718 efx->phy_type = v2->port0_phy_type;
Ben Hutchings68e7f452009-04-29 08:05:08 +00002719 efx->mdio.prtad = v2->port0_phy_addr;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002720 board_rev = le16_to_cpu(v2->board_revision);
Ben Hutchings4a5b5042008-09-01 12:47:16 +01002721
Ben Hutchings8c8661e2008-09-01 12:49:02 +01002722 if (le16_to_cpu(nvconfig->board_struct_ver) >= 3) {
Ben Hutchings3e6c4532009-10-23 08:30:36 +00002723 rc = falcon_spi_device_init(
2724 efx, &efx->spi_flash, FFE_AB_SPI_DEVICE_FLASH,
2725 le32_to_cpu(v3->spi_device_type
2726 [FFE_AB_SPI_DEVICE_FLASH]));
Ben Hutchings4a5b5042008-09-01 12:47:16 +01002727 if (rc)
2728 goto fail2;
Ben Hutchings3e6c4532009-10-23 08:30:36 +00002729 rc = falcon_spi_device_init(
2730 efx, &efx->spi_eeprom, FFE_AB_SPI_DEVICE_EEPROM,
2731 le32_to_cpu(v3->spi_device_type
2732 [FFE_AB_SPI_DEVICE_EEPROM]));
Ben Hutchings4a5b5042008-09-01 12:47:16 +01002733 if (rc)
2734 goto fail2;
2735 }
Ben Hutchings8ceee662008-04-27 12:55:59 +01002736 }
2737
Ben Hutchings8c8661e2008-09-01 12:49:02 +01002738 /* Read the MAC addresses */
2739 memcpy(efx->mac_address, nvconfig->mac_address[0], ETH_ALEN);
2740
Ben Hutchings68e7f452009-04-29 08:05:08 +00002741 EFX_LOG(efx, "PHY is %d phy_id %d\n", efx->phy_type, efx->mdio.prtad);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002742
Ben Hutchings3473a5b2009-10-23 08:29:16 +00002743 falcon_probe_board(efx, board_rev);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002744
Ben Hutchings4a5b5042008-09-01 12:47:16 +01002745 kfree(nvconfig);
2746 return 0;
2747
2748 fail2:
2749 falcon_remove_spi_devices(efx);
2750 fail1:
Ben Hutchings8ceee662008-04-27 12:55:59 +01002751 kfree(nvconfig);
2752 return rc;
2753}
2754
2755/* Probe the NIC variant (revision, ASIC vs FPGA, function count, port
2756 * count, port speed). Set workaround and feature flags accordingly.
2757 */
2758static int falcon_probe_nic_variant(struct efx_nic *efx)
2759{
2760 efx_oword_t altera_build;
Ben Hutchings177dfcd2008-12-12 21:50:08 -08002761 efx_oword_t nic_stat;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002762
Ben Hutchings12d00ca2009-10-23 08:30:46 +00002763 efx_reado(efx, &altera_build, FR_AZ_ALTERA_BUILD);
Ben Hutchings3e6c4532009-10-23 08:30:36 +00002764 if (EFX_OWORD_FIELD(altera_build, FRF_AZ_ALTERA_BUILD_VER)) {
Ben Hutchings8ceee662008-04-27 12:55:59 +01002765 EFX_ERR(efx, "Falcon FPGA not supported\n");
2766 return -ENODEV;
2767 }
2768
Ben Hutchings12d00ca2009-10-23 08:30:46 +00002769 efx_reado(efx, &nic_stat, FR_AB_NIC_STAT);
Ben Hutchings177dfcd2008-12-12 21:50:08 -08002770
Ben Hutchings55668612008-05-16 21:16:10 +01002771 switch (falcon_rev(efx)) {
Ben Hutchings8ceee662008-04-27 12:55:59 +01002772 case FALCON_REV_A0:
2773 case 0xff:
2774 EFX_ERR(efx, "Falcon rev A0 not supported\n");
2775 return -ENODEV;
2776
Ben Hutchings177dfcd2008-12-12 21:50:08 -08002777 case FALCON_REV_A1:
Ben Hutchings3e6c4532009-10-23 08:30:36 +00002778 if (EFX_OWORD_FIELD(nic_stat, FRF_AA_STRAP_PCIE) == 0) {
Ben Hutchings8ceee662008-04-27 12:55:59 +01002779 EFX_ERR(efx, "Falcon rev A1 PCI-X not supported\n");
2780 return -ENODEV;
2781 }
Ben Hutchings8ceee662008-04-27 12:55:59 +01002782 break;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002783
2784 case FALCON_REV_B0:
2785 break;
2786
2787 default:
Ben Hutchings55668612008-05-16 21:16:10 +01002788 EFX_ERR(efx, "Unknown Falcon rev %d\n", falcon_rev(efx));
Ben Hutchings8ceee662008-04-27 12:55:59 +01002789 return -ENODEV;
2790 }
2791
Ben Hutchings177dfcd2008-12-12 21:50:08 -08002792 /* Initial assumed speed */
Ben Hutchings3e6c4532009-10-23 08:30:36 +00002793 efx->link_speed = EFX_OWORD_FIELD(nic_stat, FRF_AB_STRAP_10G) ? 10000 : 1000;
Ben Hutchings177dfcd2008-12-12 21:50:08 -08002794
Ben Hutchings8ceee662008-04-27 12:55:59 +01002795 return 0;
2796}
2797
Ben Hutchings4a5b5042008-09-01 12:47:16 +01002798/* Probe all SPI devices on the NIC */
2799static void falcon_probe_spi_devices(struct efx_nic *efx)
2800{
2801 efx_oword_t nic_stat, gpio_ctl, ee_vpd_cfg;
Ben Hutchings2f7f5732008-12-12 21:34:25 -08002802 int boot_dev;
Ben Hutchings4a5b5042008-09-01 12:47:16 +01002803
Ben Hutchings12d00ca2009-10-23 08:30:46 +00002804 efx_reado(efx, &gpio_ctl, FR_AB_GPIO_CTL);
2805 efx_reado(efx, &nic_stat, FR_AB_NIC_STAT);
2806 efx_reado(efx, &ee_vpd_cfg, FR_AB_EE_VPD_CFG0);
Ben Hutchings4a5b5042008-09-01 12:47:16 +01002807
Ben Hutchings3e6c4532009-10-23 08:30:36 +00002808 if (EFX_OWORD_FIELD(gpio_ctl, FRF_AB_GPIO3_PWRUP_VALUE)) {
2809 boot_dev = (EFX_OWORD_FIELD(nic_stat, FRF_AB_SF_PRST) ?
2810 FFE_AB_SPI_DEVICE_FLASH : FFE_AB_SPI_DEVICE_EEPROM);
Ben Hutchings2f7f5732008-12-12 21:34:25 -08002811 EFX_LOG(efx, "Booted from %s\n",
Ben Hutchings3e6c4532009-10-23 08:30:36 +00002812 boot_dev == FFE_AB_SPI_DEVICE_FLASH ? "flash" : "EEPROM");
Ben Hutchings2f7f5732008-12-12 21:34:25 -08002813 } else {
2814 /* Disable VPD and set clock dividers to safe
2815 * values for initial programming. */
2816 boot_dev = -1;
2817 EFX_LOG(efx, "Booted from internal ASIC settings;"
2818 " setting SPI config\n");
Ben Hutchings3e6c4532009-10-23 08:30:36 +00002819 EFX_POPULATE_OWORD_3(ee_vpd_cfg, FRF_AB_EE_VPD_EN, 0,
Ben Hutchings2f7f5732008-12-12 21:34:25 -08002820 /* 125 MHz / 7 ~= 20 MHz */
Ben Hutchings3e6c4532009-10-23 08:30:36 +00002821 FRF_AB_EE_SF_CLOCK_DIV, 7,
Ben Hutchings2f7f5732008-12-12 21:34:25 -08002822 /* 125 MHz / 63 ~= 2 MHz */
Ben Hutchings3e6c4532009-10-23 08:30:36 +00002823 FRF_AB_EE_EE_CLOCK_DIV, 63);
Ben Hutchings12d00ca2009-10-23 08:30:46 +00002824 efx_writeo(efx, &ee_vpd_cfg, FR_AB_EE_VPD_CFG0);
Ben Hutchings4a5b5042008-09-01 12:47:16 +01002825 }
2826
Ben Hutchings3e6c4532009-10-23 08:30:36 +00002827 if (boot_dev == FFE_AB_SPI_DEVICE_FLASH)
2828 falcon_spi_device_init(efx, &efx->spi_flash,
2829 FFE_AB_SPI_DEVICE_FLASH,
Ben Hutchings2f7f5732008-12-12 21:34:25 -08002830 default_flash_type);
Ben Hutchings3e6c4532009-10-23 08:30:36 +00002831 if (boot_dev == FFE_AB_SPI_DEVICE_EEPROM)
2832 falcon_spi_device_init(efx, &efx->spi_eeprom,
2833 FFE_AB_SPI_DEVICE_EEPROM,
Ben Hutchings2f7f5732008-12-12 21:34:25 -08002834 large_eeprom_type);
Ben Hutchings4a5b5042008-09-01 12:47:16 +01002835}
2836
Ben Hutchings8ceee662008-04-27 12:55:59 +01002837int falcon_probe_nic(struct efx_nic *efx)
2838{
2839 struct falcon_nic_data *nic_data;
2840 int rc;
2841
Ben Hutchings8ceee662008-04-27 12:55:59 +01002842 /* Allocate storage for hardware specific data */
2843 nic_data = kzalloc(sizeof(*nic_data), GFP_KERNEL);
Ben Hutchings88c59422008-09-03 15:07:50 +01002844 if (!nic_data)
2845 return -ENOMEM;
Ben Hutchings5daab962008-05-16 21:19:43 +01002846 efx->nic_data = nic_data;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002847
2848 /* Determine number of ports etc. */
2849 rc = falcon_probe_nic_variant(efx);
2850 if (rc)
2851 goto fail1;
2852
2853 /* Probe secondary function if expected */
2854 if (FALCON_IS_DUAL_FUNC(efx)) {
2855 struct pci_dev *dev = pci_dev_get(efx->pci_dev);
2856
2857 while ((dev = pci_get_device(EFX_VENDID_SFC, FALCON_A_S_DEVID,
2858 dev))) {
2859 if (dev->bus == efx->pci_dev->bus &&
2860 dev->devfn == efx->pci_dev->devfn + 1) {
2861 nic_data->pci_dev2 = dev;
2862 break;
2863 }
2864 }
2865 if (!nic_data->pci_dev2) {
2866 EFX_ERR(efx, "failed to find secondary function\n");
2867 rc = -ENODEV;
2868 goto fail2;
2869 }
2870 }
2871
2872 /* Now we can reset the NIC */
2873 rc = falcon_reset_hw(efx, RESET_TYPE_ALL);
2874 if (rc) {
2875 EFX_ERR(efx, "failed to reset NIC\n");
2876 goto fail3;
2877 }
2878
2879 /* Allocate memory for INT_KER */
2880 rc = falcon_alloc_buffer(efx, &efx->irq_status, sizeof(efx_oword_t));
2881 if (rc)
2882 goto fail4;
2883 BUG_ON(efx->irq_status.dma_addr & 0x0f);
2884
Jaswinder Singh Rajput9c8976a2009-02-11 23:49:52 +05302885 EFX_LOG(efx, "INT_KER at %llx (virt %p phys %llx)\n",
2886 (u64)efx->irq_status.dma_addr,
2887 efx->irq_status.addr, (u64)virt_to_phys(efx->irq_status.addr));
Ben Hutchings8ceee662008-04-27 12:55:59 +01002888
Ben Hutchings4a5b5042008-09-01 12:47:16 +01002889 falcon_probe_spi_devices(efx);
2890
Ben Hutchings8ceee662008-04-27 12:55:59 +01002891 /* Read in the non-volatile configuration */
2892 rc = falcon_probe_nvconfig(efx);
2893 if (rc)
2894 goto fail5;
2895
Ben Hutchings37b5a602008-05-30 22:27:04 +01002896 /* Initialise I2C adapter */
Ben Hutchingsb4531932008-12-12 22:05:01 -08002897 efx->i2c_adap.owner = THIS_MODULE;
Ben Hutchings37b5a602008-05-30 22:27:04 +01002898 nic_data->i2c_data = falcon_i2c_bit_operations;
2899 nic_data->i2c_data.data = efx;
Ben Hutchingsb4531932008-12-12 22:05:01 -08002900 efx->i2c_adap.algo_data = &nic_data->i2c_data;
Ben Hutchings37b5a602008-05-30 22:27:04 +01002901 efx->i2c_adap.dev.parent = &efx->pci_dev->dev;
Ben Hutchings9dadae62008-07-18 18:59:12 +01002902 strlcpy(efx->i2c_adap.name, "SFC4000 GPIO", sizeof(efx->i2c_adap.name));
Ben Hutchings37b5a602008-05-30 22:27:04 +01002903 rc = i2c_bit_add_bus(&efx->i2c_adap);
2904 if (rc)
2905 goto fail5;
2906
Ben Hutchings8ceee662008-04-27 12:55:59 +01002907 return 0;
2908
2909 fail5:
Ben Hutchings4a5b5042008-09-01 12:47:16 +01002910 falcon_remove_spi_devices(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002911 falcon_free_buffer(efx, &efx->irq_status);
2912 fail4:
Ben Hutchings8ceee662008-04-27 12:55:59 +01002913 fail3:
2914 if (nic_data->pci_dev2) {
2915 pci_dev_put(nic_data->pci_dev2);
2916 nic_data->pci_dev2 = NULL;
2917 }
2918 fail2:
Ben Hutchings8ceee662008-04-27 12:55:59 +01002919 fail1:
2920 kfree(efx->nic_data);
2921 return rc;
2922}
2923
Ben Hutchings56241ce2009-10-23 08:30:06 +00002924static void falcon_init_rx_cfg(struct efx_nic *efx)
2925{
2926 /* Prior to Siena the RX DMA engine will split each frame at
2927 * intervals of RX_USR_BUF_SIZE (32-byte units). We set it to
2928 * be so large that that never happens. */
2929 const unsigned huge_buf_size = (3 * 4096) >> 5;
2930 /* RX control FIFO thresholds (32 entries) */
2931 const unsigned ctrl_xon_thr = 20;
2932 const unsigned ctrl_xoff_thr = 25;
2933 /* RX data FIFO thresholds (256-byte units; size varies) */
Ben Hutchings625b4512009-10-23 08:30:17 +00002934 int data_xon_thr = rx_xon_thresh_bytes >> 8;
2935 int data_xoff_thr = rx_xoff_thresh_bytes >> 8;
Ben Hutchings56241ce2009-10-23 08:30:06 +00002936 efx_oword_t reg;
2937
Ben Hutchings12d00ca2009-10-23 08:30:46 +00002938 efx_reado(efx, &reg, FR_AZ_RX_CFG);
Ben Hutchings56241ce2009-10-23 08:30:06 +00002939 if (falcon_rev(efx) <= FALCON_REV_A1) {
Ben Hutchings625b4512009-10-23 08:30:17 +00002940 /* Data FIFO size is 5.5K */
2941 if (data_xon_thr < 0)
2942 data_xon_thr = 512 >> 8;
2943 if (data_xoff_thr < 0)
2944 data_xoff_thr = 2048 >> 8;
Ben Hutchings3e6c4532009-10-23 08:30:36 +00002945 EFX_SET_OWORD_FIELD(reg, FRF_AA_RX_DESC_PUSH_EN, 0);
2946 EFX_SET_OWORD_FIELD(reg, FRF_AA_RX_USR_BUF_SIZE,
2947 huge_buf_size);
2948 EFX_SET_OWORD_FIELD(reg, FRF_AA_RX_XON_MAC_TH, data_xon_thr);
2949 EFX_SET_OWORD_FIELD(reg, FRF_AA_RX_XOFF_MAC_TH, data_xoff_thr);
2950 EFX_SET_OWORD_FIELD(reg, FRF_AA_RX_XON_TX_TH, ctrl_xon_thr);
2951 EFX_SET_OWORD_FIELD(reg, FRF_AA_RX_XOFF_TX_TH, ctrl_xoff_thr);
Ben Hutchings56241ce2009-10-23 08:30:06 +00002952 } else {
Ben Hutchings625b4512009-10-23 08:30:17 +00002953 /* Data FIFO size is 80K; register fields moved */
2954 if (data_xon_thr < 0)
2955 data_xon_thr = 27648 >> 8; /* ~3*max MTU */
2956 if (data_xoff_thr < 0)
2957 data_xoff_thr = 54272 >> 8; /* ~80Kb - 3*max MTU */
Ben Hutchings3e6c4532009-10-23 08:30:36 +00002958 EFX_SET_OWORD_FIELD(reg, FRF_BZ_RX_DESC_PUSH_EN, 0);
2959 EFX_SET_OWORD_FIELD(reg, FRF_BZ_RX_USR_BUF_SIZE,
2960 huge_buf_size);
2961 EFX_SET_OWORD_FIELD(reg, FRF_BZ_RX_XON_MAC_TH, data_xon_thr);
2962 EFX_SET_OWORD_FIELD(reg, FRF_BZ_RX_XOFF_MAC_TH, data_xoff_thr);
2963 EFX_SET_OWORD_FIELD(reg, FRF_BZ_RX_XON_TX_TH, ctrl_xon_thr);
2964 EFX_SET_OWORD_FIELD(reg, FRF_BZ_RX_XOFF_TX_TH, ctrl_xoff_thr);
2965 EFX_SET_OWORD_FIELD(reg, FRF_BZ_RX_INGR_EN, 1);
Ben Hutchings56241ce2009-10-23 08:30:06 +00002966 }
Ben Hutchings12d00ca2009-10-23 08:30:46 +00002967 efx_writeo(efx, &reg, FR_AZ_RX_CFG);
Ben Hutchings56241ce2009-10-23 08:30:06 +00002968}
2969
Ben Hutchings8ceee662008-04-27 12:55:59 +01002970/* This call performs hardware-specific global initialisation, such as
2971 * defining the descriptor cache sizes and number of RSS channels.
2972 * It does not set up any buffers, descriptor rings or event queues.
2973 */
2974int falcon_init_nic(struct efx_nic *efx)
2975{
Ben Hutchings8ceee662008-04-27 12:55:59 +01002976 efx_oword_t temp;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002977 int rc;
2978
Ben Hutchings8ceee662008-04-27 12:55:59 +01002979 /* Use on-chip SRAM */
Ben Hutchings12d00ca2009-10-23 08:30:46 +00002980 efx_reado(efx, &temp, FR_AB_NIC_STAT);
Ben Hutchings3e6c4532009-10-23 08:30:36 +00002981 EFX_SET_OWORD_FIELD(temp, FRF_AB_ONCHIP_SRAM, 1);
Ben Hutchings12d00ca2009-10-23 08:30:46 +00002982 efx_writeo(efx, &temp, FR_AB_NIC_STAT);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002983
Ben Hutchings6f158d52008-12-12 22:00:49 -08002984 /* Set the source of the GMAC clock */
2985 if (falcon_rev(efx) == FALCON_REV_B0) {
Ben Hutchings12d00ca2009-10-23 08:30:46 +00002986 efx_reado(efx, &temp, FR_AB_GPIO_CTL);
Ben Hutchings3e6c4532009-10-23 08:30:36 +00002987 EFX_SET_OWORD_FIELD(temp, FRF_AB_USE_NIC_CLK, true);
Ben Hutchings12d00ca2009-10-23 08:30:46 +00002988 efx_writeo(efx, &temp, FR_AB_GPIO_CTL);
Ben Hutchings6f158d52008-12-12 22:00:49 -08002989 }
2990
Ben Hutchings8ceee662008-04-27 12:55:59 +01002991 rc = falcon_reset_sram(efx);
2992 if (rc)
2993 return rc;
2994
2995 /* Set positions of descriptor caches in SRAM. */
Ben Hutchings3e6c4532009-10-23 08:30:36 +00002996 EFX_POPULATE_OWORD_1(temp, FRF_AZ_SRM_TX_DC_BASE_ADR, TX_DC_BASE / 8);
Ben Hutchings12d00ca2009-10-23 08:30:46 +00002997 efx_writeo(efx, &temp, FR_AZ_SRM_TX_DC_CFG);
Ben Hutchings3e6c4532009-10-23 08:30:36 +00002998 EFX_POPULATE_OWORD_1(temp, FRF_AZ_SRM_RX_DC_BASE_ADR, RX_DC_BASE / 8);
Ben Hutchings12d00ca2009-10-23 08:30:46 +00002999 efx_writeo(efx, &temp, FR_AZ_SRM_RX_DC_CFG);
Ben Hutchings8ceee662008-04-27 12:55:59 +01003000
3001 /* Set TX descriptor cache size. */
3002 BUILD_BUG_ON(TX_DC_ENTRIES != (16 << TX_DC_ENTRIES_ORDER));
Ben Hutchings3e6c4532009-10-23 08:30:36 +00003003 EFX_POPULATE_OWORD_1(temp, FRF_AZ_TX_DC_SIZE, TX_DC_ENTRIES_ORDER);
Ben Hutchings12d00ca2009-10-23 08:30:46 +00003004 efx_writeo(efx, &temp, FR_AZ_TX_DC_CFG);
Ben Hutchings8ceee662008-04-27 12:55:59 +01003005
3006 /* Set RX descriptor cache size. Set low watermark to size-8, as
3007 * this allows most efficient prefetching.
3008 */
3009 BUILD_BUG_ON(RX_DC_ENTRIES != (16 << RX_DC_ENTRIES_ORDER));
Ben Hutchings3e6c4532009-10-23 08:30:36 +00003010 EFX_POPULATE_OWORD_1(temp, FRF_AZ_RX_DC_SIZE, RX_DC_ENTRIES_ORDER);
Ben Hutchings12d00ca2009-10-23 08:30:46 +00003011 efx_writeo(efx, &temp, FR_AZ_RX_DC_CFG);
Ben Hutchings3e6c4532009-10-23 08:30:36 +00003012 EFX_POPULATE_OWORD_1(temp, FRF_AZ_RX_DC_PF_LWM, RX_DC_ENTRIES - 8);
Ben Hutchings12d00ca2009-10-23 08:30:46 +00003013 efx_writeo(efx, &temp, FR_AZ_RX_DC_PF_WM);
Ben Hutchings8ceee662008-04-27 12:55:59 +01003014
3015 /* Clear the parity enables on the TX data fifos as
3016 * they produce false parity errors because of timing issues
3017 */
3018 if (EFX_WORKAROUND_5129(efx)) {
Ben Hutchings12d00ca2009-10-23 08:30:46 +00003019 efx_reado(efx, &temp, FR_AZ_CSR_SPARE);
Ben Hutchings3e6c4532009-10-23 08:30:36 +00003020 EFX_SET_OWORD_FIELD(temp, FRF_AB_MEM_PERR_EN_TX_DATA, 0);
Ben Hutchings12d00ca2009-10-23 08:30:46 +00003021 efx_writeo(efx, &temp, FR_AZ_CSR_SPARE);
Ben Hutchings8ceee662008-04-27 12:55:59 +01003022 }
3023
3024 /* Enable all the genuinely fatal interrupts. (They are still
3025 * masked by the overall interrupt mask, controlled by
3026 * falcon_interrupts()).
3027 *
3028 * Note: All other fatal interrupts are enabled
3029 */
3030 EFX_POPULATE_OWORD_3(temp,
Ben Hutchings3e6c4532009-10-23 08:30:36 +00003031 FRF_AZ_ILL_ADR_INT_KER_EN, 1,
3032 FRF_AZ_RBUF_OWN_INT_KER_EN, 1,
3033 FRF_AZ_TBUF_OWN_INT_KER_EN, 1);
Ben Hutchings8ceee662008-04-27 12:55:59 +01003034 EFX_INVERT_OWORD(temp);
Ben Hutchings12d00ca2009-10-23 08:30:46 +00003035 efx_writeo(efx, &temp, FR_AZ_FATAL_INTR_KER);
Ben Hutchings8ceee662008-04-27 12:55:59 +01003036
Ben Hutchings8ceee662008-04-27 12:55:59 +01003037 if (EFX_WORKAROUND_7244(efx)) {
Ben Hutchings12d00ca2009-10-23 08:30:46 +00003038 efx_reado(efx, &temp, FR_BZ_RX_FILTER_CTL);
Ben Hutchings3e6c4532009-10-23 08:30:36 +00003039 EFX_SET_OWORD_FIELD(temp, FRF_BZ_UDP_FULL_SRCH_LIMIT, 8);
3040 EFX_SET_OWORD_FIELD(temp, FRF_BZ_UDP_WILD_SRCH_LIMIT, 8);
3041 EFX_SET_OWORD_FIELD(temp, FRF_BZ_TCP_FULL_SRCH_LIMIT, 8);
3042 EFX_SET_OWORD_FIELD(temp, FRF_BZ_TCP_WILD_SRCH_LIMIT, 8);
Ben Hutchings12d00ca2009-10-23 08:30:46 +00003043 efx_writeo(efx, &temp, FR_BZ_RX_FILTER_CTL);
Ben Hutchings8ceee662008-04-27 12:55:59 +01003044 }
Ben Hutchings8ceee662008-04-27 12:55:59 +01003045
3046 falcon_setup_rss_indir_table(efx);
3047
Ben Hutchings3e6c4532009-10-23 08:30:36 +00003048 /* XXX This is documented only for Falcon A0/A1 */
Ben Hutchings8ceee662008-04-27 12:55:59 +01003049 /* Setup RX. Wait for descriptor is broken and must
3050 * be disabled. RXDP recovery shouldn't be needed, but is.
3051 */
Ben Hutchings12d00ca2009-10-23 08:30:46 +00003052 efx_reado(efx, &temp, FR_AA_RX_SELF_RST);
Ben Hutchings3e6c4532009-10-23 08:30:36 +00003053 EFX_SET_OWORD_FIELD(temp, FRF_AA_RX_NODESC_WAIT_DIS, 1);
3054 EFX_SET_OWORD_FIELD(temp, FRF_AA_RX_SELF_RST_EN, 1);
Ben Hutchings8ceee662008-04-27 12:55:59 +01003055 if (EFX_WORKAROUND_5583(efx))
Ben Hutchings3e6c4532009-10-23 08:30:36 +00003056 EFX_SET_OWORD_FIELD(temp, FRF_AA_RX_ISCSI_DIS, 1);
Ben Hutchings12d00ca2009-10-23 08:30:46 +00003057 efx_writeo(efx, &temp, FR_AA_RX_SELF_RST);
Ben Hutchings8ceee662008-04-27 12:55:59 +01003058
3059 /* Disable the ugly timer-based TX DMA backoff and allow TX DMA to be
3060 * controlled by the RX FIFO fill level. Set arbitration to one pkt/Q.
3061 */
Ben Hutchings12d00ca2009-10-23 08:30:46 +00003062 efx_reado(efx, &temp, FR_AZ_TX_RESERVED);
Ben Hutchings3e6c4532009-10-23 08:30:36 +00003063 EFX_SET_OWORD_FIELD(temp, FRF_AZ_TX_RX_SPACER, 0xfe);
3064 EFX_SET_OWORD_FIELD(temp, FRF_AZ_TX_RX_SPACER_EN, 1);
3065 EFX_SET_OWORD_FIELD(temp, FRF_AZ_TX_ONE_PKT_PER_Q, 1);
3066 EFX_SET_OWORD_FIELD(temp, FRF_AZ_TX_PUSH_EN, 0);
3067 EFX_SET_OWORD_FIELD(temp, FRF_AZ_TX_DIS_NON_IP_EV, 1);
Ben Hutchings8ceee662008-04-27 12:55:59 +01003068 /* Enable SW_EV to inherit in char driver - assume harmless here */
Ben Hutchings3e6c4532009-10-23 08:30:36 +00003069 EFX_SET_OWORD_FIELD(temp, FRF_AZ_TX_SOFT_EVT_EN, 1);
Ben Hutchings8ceee662008-04-27 12:55:59 +01003070 /* Prefetch threshold 2 => fetch when descriptor cache half empty */
Ben Hutchings3e6c4532009-10-23 08:30:36 +00003071 EFX_SET_OWORD_FIELD(temp, FRF_AZ_TX_PREF_THRESHOLD, 2);
Ben Hutchings8ceee662008-04-27 12:55:59 +01003072 /* Squash TX of packets of 16 bytes or less */
Ben Hutchings55668612008-05-16 21:16:10 +01003073 if (falcon_rev(efx) >= FALCON_REV_B0 && EFX_WORKAROUND_9141(efx))
Ben Hutchings3e6c4532009-10-23 08:30:36 +00003074 EFX_SET_OWORD_FIELD(temp, FRF_BZ_TX_FLUSH_MIN_LEN_EN, 1);
Ben Hutchings12d00ca2009-10-23 08:30:46 +00003075 efx_writeo(efx, &temp, FR_AZ_TX_RESERVED);
Ben Hutchings8ceee662008-04-27 12:55:59 +01003076
3077 /* Do not enable TX_NO_EOP_DISC_EN, since it limits packets to 16
3078 * descriptors (which is bad).
3079 */
Ben Hutchings12d00ca2009-10-23 08:30:46 +00003080 efx_reado(efx, &temp, FR_AZ_TX_CFG);
Ben Hutchings3e6c4532009-10-23 08:30:36 +00003081 EFX_SET_OWORD_FIELD(temp, FRF_AZ_TX_NO_EOP_DISC_EN, 0);
Ben Hutchings12d00ca2009-10-23 08:30:46 +00003082 efx_writeo(efx, &temp, FR_AZ_TX_CFG);
Ben Hutchings8ceee662008-04-27 12:55:59 +01003083
Ben Hutchings56241ce2009-10-23 08:30:06 +00003084 falcon_init_rx_cfg(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01003085
3086 /* Set destination of both TX and RX Flush events */
Ben Hutchings55668612008-05-16 21:16:10 +01003087 if (falcon_rev(efx) >= FALCON_REV_B0) {
Ben Hutchings3e6c4532009-10-23 08:30:36 +00003088 EFX_POPULATE_OWORD_1(temp, FRF_BZ_FLS_EVQ_ID, 0);
Ben Hutchings12d00ca2009-10-23 08:30:46 +00003089 efx_writeo(efx, &temp, FR_BZ_DP_CTRL);
Ben Hutchings8ceee662008-04-27 12:55:59 +01003090 }
3091
3092 return 0;
3093}
3094
3095void falcon_remove_nic(struct efx_nic *efx)
3096{
3097 struct falcon_nic_data *nic_data = efx->nic_data;
Ben Hutchings37b5a602008-05-30 22:27:04 +01003098 int rc;
3099
Ben Hutchings8c870372009-03-04 09:53:02 +00003100 /* Remove I2C adapter and clear it in preparation for a retry */
Ben Hutchings37b5a602008-05-30 22:27:04 +01003101 rc = i2c_del_adapter(&efx->i2c_adap);
3102 BUG_ON(rc);
Ben Hutchings8c870372009-03-04 09:53:02 +00003103 memset(&efx->i2c_adap, 0, sizeof(efx->i2c_adap));
Ben Hutchings8ceee662008-04-27 12:55:59 +01003104
Ben Hutchings4a5b5042008-09-01 12:47:16 +01003105 falcon_remove_spi_devices(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01003106 falcon_free_buffer(efx, &efx->irq_status);
3107
Ben Hutchings91ad7572008-05-16 21:14:27 +01003108 falcon_reset_hw(efx, RESET_TYPE_ALL);
Ben Hutchings8ceee662008-04-27 12:55:59 +01003109
3110 /* Release the second function after the reset */
3111 if (nic_data->pci_dev2) {
3112 pci_dev_put(nic_data->pci_dev2);
3113 nic_data->pci_dev2 = NULL;
3114 }
3115
3116 /* Tear down the private nic state */
3117 kfree(efx->nic_data);
3118 efx->nic_data = NULL;
3119}
3120
3121void falcon_update_nic_stats(struct efx_nic *efx)
3122{
3123 efx_oword_t cnt;
3124
Ben Hutchings12d00ca2009-10-23 08:30:46 +00003125 efx_reado(efx, &cnt, FR_AZ_RX_NODESC_DROP);
Ben Hutchings3e6c4532009-10-23 08:30:36 +00003126 efx->n_rx_nodesc_drop_cnt +=
3127 EFX_OWORD_FIELD(cnt, FRF_AB_RX_NODESC_DROP_CNT);
Ben Hutchings8ceee662008-04-27 12:55:59 +01003128}
3129
3130/**************************************************************************
3131 *
3132 * Revision-dependent attributes used by efx.c
3133 *
3134 **************************************************************************
3135 */
3136
3137struct efx_nic_type falcon_a_nic_type = {
3138 .mem_bar = 2,
3139 .mem_map_size = 0x20000,
Ben Hutchings3e6c4532009-10-23 08:30:36 +00003140 .txd_ptr_tbl_base = FR_AA_TX_DESC_PTR_TBL_KER,
3141 .rxd_ptr_tbl_base = FR_AA_RX_DESC_PTR_TBL_KER,
3142 .buf_tbl_base = FR_AA_BUF_FULL_TBL_KER,
3143 .evq_ptr_tbl_base = FR_AA_EVQ_PTR_TBL_KER,
3144 .evq_rptr_tbl_base = FR_AA_EVQ_RPTR_KER,
Ben Hutchings6d51d302009-10-23 08:31:07 +00003145 .max_dma_mask = DMA_BIT_MASK(FSF_AZ_TX_KER_BUF_ADDR_WIDTH),
Ben Hutchings8ceee662008-04-27 12:55:59 +01003146 .rx_buffer_padding = 0x24,
3147 .max_interrupt_mode = EFX_INT_MODE_MSI,
3148 .phys_addr_channels = 4,
3149};
3150
3151struct efx_nic_type falcon_b_nic_type = {
3152 .mem_bar = 2,
3153 /* Map everything up to and including the RSS indirection
3154 * table. Don't map MSI-X table, MSI-X PBA since Linux
3155 * requires that they not be mapped. */
Ben Hutchings3e6c4532009-10-23 08:30:36 +00003156 .mem_map_size = (FR_BZ_RX_INDIRECTION_TBL +
3157 FR_BZ_RX_INDIRECTION_TBL_STEP *
3158 FR_BZ_RX_INDIRECTION_TBL_ROWS),
3159 .txd_ptr_tbl_base = FR_BZ_TX_DESC_PTR_TBL,
3160 .rxd_ptr_tbl_base = FR_BZ_RX_DESC_PTR_TBL,
3161 .buf_tbl_base = FR_BZ_BUF_FULL_TBL,
3162 .evq_ptr_tbl_base = FR_BZ_EVQ_PTR_TBL,
3163 .evq_rptr_tbl_base = FR_BZ_EVQ_RPTR,
Ben Hutchings6d51d302009-10-23 08:31:07 +00003164 .max_dma_mask = DMA_BIT_MASK(FSF_AZ_TX_KER_BUF_ADDR_WIDTH),
Ben Hutchings8ceee662008-04-27 12:55:59 +01003165 .rx_buffer_padding = 0,
3166 .max_interrupt_mode = EFX_INT_MODE_MSIX,
3167 .phys_addr_channels = 32, /* Hardware limit is 64, but the legacy
3168 * interrupt handler only supports 32
3169 * channels */
3170};
3171