blob: 3cb7e613ab3023e2d2081724525f3f4455aa71c1 [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 Hutchings9bbd7d92008-05-16 21:18:48 +0100130/* DMA address mask */
131#define FALCON_DMA_MASK DMA_BIT_MASK(46)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100132
133/* TX DMA length mask (13-bit) */
134#define FALCON_TX_DMA_MASK (4096 - 1)
135
136/* Size and alignment of special buffers (4KB) */
137#define FALCON_BUF_SIZE 4096
138
139/* Dummy SRAM size code */
140#define SRM_NB_BSZ_ONCHIP_ONLY (-1)
141
Ben Hutchings8ceee662008-04-27 12:55:59 +0100142#define FALCON_IS_DUAL_FUNC(efx) \
Ben Hutchings55668612008-05-16 21:16:10 +0100143 (falcon_rev(efx) < FALCON_REV_B0)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100144
145/**************************************************************************
146 *
147 * Falcon hardware access
148 *
149 **************************************************************************/
150
Ben Hutchings12d00ca2009-10-23 08:30:46 +0000151static inline void falcon_write_buf_tbl(struct efx_nic *efx, efx_qword_t *value,
152 unsigned int index)
153{
154 efx_sram_writeq(efx, efx->membase + efx->type->buf_tbl_base,
155 value, index);
156}
157
Ben Hutchings8ceee662008-04-27 12:55:59 +0100158/* Read the current event from the event queue */
159static inline efx_qword_t *falcon_event(struct efx_channel *channel,
160 unsigned int index)
161{
162 return (((efx_qword_t *) (channel->eventq.addr)) + index);
163}
164
165/* See if an event is present
166 *
167 * We check both the high and low dword of the event for all ones. We
168 * wrote all ones when we cleared the event, and no valid event can
169 * have all ones in either its high or low dwords. This approach is
170 * robust against reordering.
171 *
172 * Note that using a single 64-bit comparison is incorrect; even
173 * though the CPU read will be atomic, the DMA write may not be.
174 */
175static inline int falcon_event_present(efx_qword_t *event)
176{
177 return (!(EFX_DWORD_IS_ALL_ONES(event->dword[0]) |
178 EFX_DWORD_IS_ALL_ONES(event->dword[1])));
179}
180
181/**************************************************************************
182 *
183 * I2C bus - this is a bit-bashing interface using GPIO pins
184 * Note that it uses the output enables to tristate the outputs
185 * SDA is the data pin and SCL is the clock
186 *
187 **************************************************************************
188 */
Ben Hutchings37b5a602008-05-30 22:27:04 +0100189static void falcon_setsda(void *data, int state)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100190{
Ben Hutchings37b5a602008-05-30 22:27:04 +0100191 struct efx_nic *efx = (struct efx_nic *)data;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100192 efx_oword_t reg;
193
Ben Hutchings12d00ca2009-10-23 08:30:46 +0000194 efx_reado(efx, &reg, FR_AB_GPIO_CTL);
Ben Hutchings3e6c4532009-10-23 08:30:36 +0000195 EFX_SET_OWORD_FIELD(reg, FRF_AB_GPIO3_OEN, !state);
Ben Hutchings12d00ca2009-10-23 08:30:46 +0000196 efx_writeo(efx, &reg, FR_AB_GPIO_CTL);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100197}
198
Ben Hutchings37b5a602008-05-30 22:27:04 +0100199static void falcon_setscl(void *data, int state)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100200{
Ben Hutchings37b5a602008-05-30 22:27:04 +0100201 struct efx_nic *efx = (struct efx_nic *)data;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100202 efx_oword_t reg;
203
Ben Hutchings12d00ca2009-10-23 08:30:46 +0000204 efx_reado(efx, &reg, FR_AB_GPIO_CTL);
Ben Hutchings3e6c4532009-10-23 08:30:36 +0000205 EFX_SET_OWORD_FIELD(reg, FRF_AB_GPIO0_OEN, !state);
Ben Hutchings12d00ca2009-10-23 08:30:46 +0000206 efx_writeo(efx, &reg, FR_AB_GPIO_CTL);
Ben Hutchings37b5a602008-05-30 22:27:04 +0100207}
208
209static int falcon_getsda(void *data)
210{
211 struct efx_nic *efx = (struct efx_nic *)data;
212 efx_oword_t reg;
213
Ben Hutchings12d00ca2009-10-23 08:30:46 +0000214 efx_reado(efx, &reg, FR_AB_GPIO_CTL);
Ben Hutchings3e6c4532009-10-23 08:30:36 +0000215 return EFX_OWORD_FIELD(reg, FRF_AB_GPIO3_IN);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100216}
217
Ben Hutchings37b5a602008-05-30 22:27:04 +0100218static int falcon_getscl(void *data)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100219{
Ben Hutchings37b5a602008-05-30 22:27:04 +0100220 struct efx_nic *efx = (struct efx_nic *)data;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100221 efx_oword_t reg;
222
Ben Hutchings12d00ca2009-10-23 08:30:46 +0000223 efx_reado(efx, &reg, FR_AB_GPIO_CTL);
Ben Hutchings3e6c4532009-10-23 08:30:36 +0000224 return EFX_OWORD_FIELD(reg, FRF_AB_GPIO0_IN);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100225}
226
Ben Hutchings37b5a602008-05-30 22:27:04 +0100227static struct i2c_algo_bit_data falcon_i2c_bit_operations = {
228 .setsda = falcon_setsda,
229 .setscl = falcon_setscl,
Ben Hutchings8ceee662008-04-27 12:55:59 +0100230 .getsda = falcon_getsda,
231 .getscl = falcon_getscl,
Ben Hutchings62c78322008-05-30 22:27:46 +0100232 .udelay = 5,
Ben Hutchings9dadae62008-07-18 18:59:12 +0100233 /* Wait up to 50 ms for slave to let us pull SCL high */
234 .timeout = DIV_ROUND_UP(HZ, 20),
Ben Hutchings8ceee662008-04-27 12:55:59 +0100235};
236
237/**************************************************************************
238 *
239 * Falcon special buffer handling
240 * Special buffers are used for event queues and the TX and RX
241 * descriptor rings.
242 *
243 *************************************************************************/
244
245/*
246 * Initialise a Falcon special buffer
247 *
248 * This will define a buffer (previously allocated via
249 * falcon_alloc_special_buffer()) in Falcon's buffer table, allowing
250 * it to be used for event queues, descriptor rings etc.
251 */
Ben Hutchingsbc3c90a2008-09-01 12:48:46 +0100252static void
Ben Hutchings8ceee662008-04-27 12:55:59 +0100253falcon_init_special_buffer(struct efx_nic *efx,
254 struct efx_special_buffer *buffer)
255{
256 efx_qword_t buf_desc;
257 int index;
258 dma_addr_t dma_addr;
259 int i;
260
261 EFX_BUG_ON_PARANOID(!buffer->addr);
262
263 /* Write buffer descriptors to NIC */
264 for (i = 0; i < buffer->entries; i++) {
265 index = buffer->index + i;
266 dma_addr = buffer->dma_addr + (i * 4096);
267 EFX_LOG(efx, "mapping special buffer %d at %llx\n",
268 index, (unsigned long long)dma_addr);
Ben Hutchings3e6c4532009-10-23 08:30:36 +0000269 EFX_POPULATE_QWORD_3(buf_desc,
270 FRF_AZ_BUF_ADR_REGION, 0,
271 FRF_AZ_BUF_ADR_FBUF, dma_addr >> 12,
272 FRF_AZ_BUF_OWNER_ID_FBUF, 0);
Ben Hutchings12d00ca2009-10-23 08:30:46 +0000273 falcon_write_buf_tbl(efx, &buf_desc, index);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100274 }
Ben Hutchings8ceee662008-04-27 12:55:59 +0100275}
276
277/* Unmaps a buffer from Falcon and clears the buffer table entries */
278static void
279falcon_fini_special_buffer(struct efx_nic *efx,
280 struct efx_special_buffer *buffer)
281{
282 efx_oword_t buf_tbl_upd;
283 unsigned int start = buffer->index;
284 unsigned int end = (buffer->index + buffer->entries - 1);
285
286 if (!buffer->entries)
287 return;
288
289 EFX_LOG(efx, "unmapping special buffers %d-%d\n",
290 buffer->index, buffer->index + buffer->entries - 1);
291
292 EFX_POPULATE_OWORD_4(buf_tbl_upd,
Ben Hutchings3e6c4532009-10-23 08:30:36 +0000293 FRF_AZ_BUF_UPD_CMD, 0,
294 FRF_AZ_BUF_CLR_CMD, 1,
295 FRF_AZ_BUF_CLR_END_ID, end,
296 FRF_AZ_BUF_CLR_START_ID, start);
Ben Hutchings12d00ca2009-10-23 08:30:46 +0000297 efx_writeo(efx, &buf_tbl_upd, FR_AZ_BUF_TBL_UPD);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100298}
299
300/*
301 * Allocate a new Falcon special buffer
302 *
303 * This allocates memory for a new buffer, clears it and allocates a
304 * new buffer ID range. It does not write into Falcon's buffer table.
305 *
306 * This call will allocate 4KB buffers, since Falcon can't use 8KB
307 * buffers for event queues and descriptor rings.
308 */
309static int falcon_alloc_special_buffer(struct efx_nic *efx,
310 struct efx_special_buffer *buffer,
311 unsigned int len)
312{
313 struct falcon_nic_data *nic_data = efx->nic_data;
314
315 len = ALIGN(len, FALCON_BUF_SIZE);
316
317 buffer->addr = pci_alloc_consistent(efx->pci_dev, len,
318 &buffer->dma_addr);
319 if (!buffer->addr)
320 return -ENOMEM;
321 buffer->len = len;
322 buffer->entries = len / FALCON_BUF_SIZE;
323 BUG_ON(buffer->dma_addr & (FALCON_BUF_SIZE - 1));
324
325 /* All zeros is a potentially valid event so memset to 0xff */
326 memset(buffer->addr, 0xff, len);
327
328 /* Select new buffer ID */
329 buffer->index = nic_data->next_buffer_table;
330 nic_data->next_buffer_table += buffer->entries;
331
332 EFX_LOG(efx, "allocating special buffers %d-%d at %llx+%x "
Jaswinder Singh Rajput9c8976a2009-02-11 23:49:52 +0530333 "(virt %p phys %llx)\n", buffer->index,
Ben Hutchings8ceee662008-04-27 12:55:59 +0100334 buffer->index + buffer->entries - 1,
Jaswinder Singh Rajput9c8976a2009-02-11 23:49:52 +0530335 (u64)buffer->dma_addr, len,
336 buffer->addr, (u64)virt_to_phys(buffer->addr));
Ben Hutchings8ceee662008-04-27 12:55:59 +0100337
338 return 0;
339}
340
341static void falcon_free_special_buffer(struct efx_nic *efx,
342 struct efx_special_buffer *buffer)
343{
344 if (!buffer->addr)
345 return;
346
347 EFX_LOG(efx, "deallocating special buffers %d-%d at %llx+%x "
Jaswinder Singh Rajput9c8976a2009-02-11 23:49:52 +0530348 "(virt %p phys %llx)\n", buffer->index,
Ben Hutchings8ceee662008-04-27 12:55:59 +0100349 buffer->index + buffer->entries - 1,
Jaswinder Singh Rajput9c8976a2009-02-11 23:49:52 +0530350 (u64)buffer->dma_addr, buffer->len,
351 buffer->addr, (u64)virt_to_phys(buffer->addr));
Ben Hutchings8ceee662008-04-27 12:55:59 +0100352
353 pci_free_consistent(efx->pci_dev, buffer->len, buffer->addr,
354 buffer->dma_addr);
355 buffer->addr = NULL;
356 buffer->entries = 0;
357}
358
359/**************************************************************************
360 *
361 * Falcon generic buffer handling
362 * These buffers are used for interrupt status and MAC stats
363 *
364 **************************************************************************/
365
366static int falcon_alloc_buffer(struct efx_nic *efx,
367 struct efx_buffer *buffer, unsigned int len)
368{
369 buffer->addr = pci_alloc_consistent(efx->pci_dev, len,
370 &buffer->dma_addr);
371 if (!buffer->addr)
372 return -ENOMEM;
373 buffer->len = len;
374 memset(buffer->addr, 0, len);
375 return 0;
376}
377
378static void falcon_free_buffer(struct efx_nic *efx, struct efx_buffer *buffer)
379{
380 if (buffer->addr) {
381 pci_free_consistent(efx->pci_dev, buffer->len,
382 buffer->addr, buffer->dma_addr);
383 buffer->addr = NULL;
384 }
385}
386
387/**************************************************************************
388 *
389 * Falcon TX path
390 *
391 **************************************************************************/
392
393/* Returns a pointer to the specified transmit descriptor in the TX
394 * descriptor queue belonging to the specified channel.
395 */
396static inline efx_qword_t *falcon_tx_desc(struct efx_tx_queue *tx_queue,
397 unsigned int index)
398{
399 return (((efx_qword_t *) (tx_queue->txd.addr)) + index);
400}
401
402/* This writes to the TX_DESC_WPTR; write pointer for TX descriptor ring */
403static inline void falcon_notify_tx_desc(struct efx_tx_queue *tx_queue)
404{
405 unsigned write_ptr;
406 efx_dword_t reg;
407
Ben Hutchings3ffeabd2009-10-23 08:30:58 +0000408 write_ptr = tx_queue->write_count & EFX_TXQ_MASK;
Ben Hutchings3e6c4532009-10-23 08:30:36 +0000409 EFX_POPULATE_DWORD_1(reg, FRF_AZ_TX_DESC_WPTR_DWORD, write_ptr);
Ben Hutchings12d00ca2009-10-23 08:30:46 +0000410 efx_writed_page(tx_queue->efx, &reg,
411 FR_AZ_TX_DESC_UPD_DWORD_P0, tx_queue->queue);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100412}
413
414
415/* For each entry inserted into the software descriptor ring, create a
416 * descriptor in the hardware TX descriptor ring (in host memory), and
417 * write a doorbell.
418 */
419void falcon_push_buffers(struct efx_tx_queue *tx_queue)
420{
421
422 struct efx_tx_buffer *buffer;
423 efx_qword_t *txd;
424 unsigned write_ptr;
425
426 BUG_ON(tx_queue->write_count == tx_queue->insert_count);
427
428 do {
Ben Hutchings3ffeabd2009-10-23 08:30:58 +0000429 write_ptr = tx_queue->write_count & EFX_TXQ_MASK;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100430 buffer = &tx_queue->buffer[write_ptr];
431 txd = falcon_tx_desc(tx_queue, write_ptr);
432 ++tx_queue->write_count;
433
434 /* Create TX descriptor ring entry */
Ben Hutchings3e6c4532009-10-23 08:30:36 +0000435 EFX_POPULATE_QWORD_4(*txd,
436 FSF_AZ_TX_KER_CONT, buffer->continuation,
437 FSF_AZ_TX_KER_BYTE_COUNT, buffer->len,
438 FSF_AZ_TX_KER_BUF_REGION, 0,
439 FSF_AZ_TX_KER_BUF_ADDR, buffer->dma_addr);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100440 } while (tx_queue->write_count != tx_queue->insert_count);
441
442 wmb(); /* Ensure descriptors are written before they are fetched */
443 falcon_notify_tx_desc(tx_queue);
444}
445
446/* Allocate hardware resources for a TX queue */
447int falcon_probe_tx(struct efx_tx_queue *tx_queue)
448{
449 struct efx_nic *efx = tx_queue->efx;
Ben Hutchings3ffeabd2009-10-23 08:30:58 +0000450 BUILD_BUG_ON(EFX_TXQ_SIZE < 512 || EFX_TXQ_SIZE > 4096 ||
451 EFX_TXQ_SIZE & EFX_TXQ_MASK);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100452 return falcon_alloc_special_buffer(efx, &tx_queue->txd,
Ben Hutchings3ffeabd2009-10-23 08:30:58 +0000453 EFX_TXQ_SIZE * sizeof(efx_qword_t));
Ben Hutchings8ceee662008-04-27 12:55:59 +0100454}
455
Ben Hutchingsbc3c90a2008-09-01 12:48:46 +0100456void falcon_init_tx(struct efx_tx_queue *tx_queue)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100457{
458 efx_oword_t tx_desc_ptr;
459 struct efx_nic *efx = tx_queue->efx;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100460
Ben Hutchings6bc5d3a2008-09-01 12:49:37 +0100461 tx_queue->flushed = false;
462
Ben Hutchings8ceee662008-04-27 12:55:59 +0100463 /* Pin TX descriptor ring */
Ben Hutchingsbc3c90a2008-09-01 12:48:46 +0100464 falcon_init_special_buffer(efx, &tx_queue->txd);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100465
466 /* Push TX descriptor ring to card */
467 EFX_POPULATE_OWORD_10(tx_desc_ptr,
Ben Hutchings3e6c4532009-10-23 08:30:36 +0000468 FRF_AZ_TX_DESCQ_EN, 1,
469 FRF_AZ_TX_ISCSI_DDIG_EN, 0,
470 FRF_AZ_TX_ISCSI_HDIG_EN, 0,
471 FRF_AZ_TX_DESCQ_BUF_BASE_ID, tx_queue->txd.index,
472 FRF_AZ_TX_DESCQ_EVQ_ID,
473 tx_queue->channel->channel,
474 FRF_AZ_TX_DESCQ_OWNER_ID, 0,
475 FRF_AZ_TX_DESCQ_LABEL, tx_queue->queue,
Ben Hutchings3ffeabd2009-10-23 08:30:58 +0000476 FRF_AZ_TX_DESCQ_SIZE,
477 __ffs(tx_queue->txd.entries),
Ben Hutchings3e6c4532009-10-23 08:30:36 +0000478 FRF_AZ_TX_DESCQ_TYPE, 0,
479 FRF_BZ_TX_NON_IP_DROP_DIS, 1);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100480
Ben Hutchings55668612008-05-16 21:16:10 +0100481 if (falcon_rev(efx) >= FALCON_REV_B0) {
Ben Hutchings60ac1062008-09-01 12:44:59 +0100482 int csum = tx_queue->queue == EFX_TX_QUEUE_OFFLOAD_CSUM;
Ben Hutchings3e6c4532009-10-23 08:30:36 +0000483 EFX_SET_OWORD_FIELD(tx_desc_ptr, FRF_BZ_TX_IP_CHKSM_DIS, !csum);
484 EFX_SET_OWORD_FIELD(tx_desc_ptr, FRF_BZ_TX_TCP_CHKSM_DIS,
485 !csum);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100486 }
487
Ben Hutchings12d00ca2009-10-23 08:30:46 +0000488 efx_writeo_table(efx, &tx_desc_ptr, efx->type->txd_ptr_tbl_base,
489 tx_queue->queue);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100490
Ben Hutchings55668612008-05-16 21:16:10 +0100491 if (falcon_rev(efx) < FALCON_REV_B0) {
Ben Hutchings8ceee662008-04-27 12:55:59 +0100492 efx_oword_t reg;
493
Ben Hutchings60ac1062008-09-01 12:44:59 +0100494 /* Only 128 bits in this register */
495 BUILD_BUG_ON(EFX_TX_QUEUE_COUNT >= 128);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100496
Ben Hutchings12d00ca2009-10-23 08:30:46 +0000497 efx_reado(efx, &reg, FR_AA_TX_CHKSM_CFG);
Ben Hutchings60ac1062008-09-01 12:44:59 +0100498 if (tx_queue->queue == EFX_TX_QUEUE_OFFLOAD_CSUM)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100499 clear_bit_le(tx_queue->queue, (void *)&reg);
500 else
501 set_bit_le(tx_queue->queue, (void *)&reg);
Ben Hutchings12d00ca2009-10-23 08:30:46 +0000502 efx_writeo(efx, &reg, FR_AA_TX_CHKSM_CFG);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100503 }
Ben Hutchings8ceee662008-04-27 12:55:59 +0100504}
505
Ben Hutchings6bc5d3a2008-09-01 12:49:37 +0100506static void falcon_flush_tx_queue(struct efx_tx_queue *tx_queue)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100507{
508 struct efx_nic *efx = tx_queue->efx;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100509 efx_oword_t tx_flush_descq;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100510
511 /* Post a flush command */
512 EFX_POPULATE_OWORD_2(tx_flush_descq,
Ben Hutchings3e6c4532009-10-23 08:30:36 +0000513 FRF_AZ_TX_FLUSH_DESCQ_CMD, 1,
514 FRF_AZ_TX_FLUSH_DESCQ, tx_queue->queue);
Ben Hutchings12d00ca2009-10-23 08:30:46 +0000515 efx_writeo(efx, &tx_flush_descq, FR_AZ_TX_FLUSH_DESCQ);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100516}
517
518void falcon_fini_tx(struct efx_tx_queue *tx_queue)
519{
520 struct efx_nic *efx = tx_queue->efx;
521 efx_oword_t tx_desc_ptr;
522
Ben Hutchings6bc5d3a2008-09-01 12:49:37 +0100523 /* The queue should have been flushed */
524 WARN_ON(!tx_queue->flushed);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100525
526 /* Remove TX descriptor ring from card */
527 EFX_ZERO_OWORD(tx_desc_ptr);
Ben Hutchings12d00ca2009-10-23 08:30:46 +0000528 efx_writeo_table(efx, &tx_desc_ptr, efx->type->txd_ptr_tbl_base,
529 tx_queue->queue);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100530
531 /* Unpin TX descriptor ring */
532 falcon_fini_special_buffer(efx, &tx_queue->txd);
533}
534
535/* Free buffers backing TX queue */
536void falcon_remove_tx(struct efx_tx_queue *tx_queue)
537{
538 falcon_free_special_buffer(tx_queue->efx, &tx_queue->txd);
539}
540
541/**************************************************************************
542 *
543 * Falcon RX path
544 *
545 **************************************************************************/
546
547/* Returns a pointer to the specified descriptor in the RX descriptor queue */
548static inline efx_qword_t *falcon_rx_desc(struct efx_rx_queue *rx_queue,
549 unsigned int index)
550{
551 return (((efx_qword_t *) (rx_queue->rxd.addr)) + index);
552}
553
554/* This creates an entry in the RX descriptor queue */
555static inline void falcon_build_rx_desc(struct efx_rx_queue *rx_queue,
556 unsigned index)
557{
558 struct efx_rx_buffer *rx_buf;
559 efx_qword_t *rxd;
560
561 rxd = falcon_rx_desc(rx_queue, index);
562 rx_buf = efx_rx_buffer(rx_queue, index);
563 EFX_POPULATE_QWORD_3(*rxd,
Ben Hutchings3e6c4532009-10-23 08:30:36 +0000564 FSF_AZ_RX_KER_BUF_SIZE,
Ben Hutchings8ceee662008-04-27 12:55:59 +0100565 rx_buf->len -
566 rx_queue->efx->type->rx_buffer_padding,
Ben Hutchings3e6c4532009-10-23 08:30:36 +0000567 FSF_AZ_RX_KER_BUF_REGION, 0,
568 FSF_AZ_RX_KER_BUF_ADDR, rx_buf->dma_addr);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100569}
570
571/* This writes to the RX_DESC_WPTR register for the specified receive
572 * descriptor ring.
573 */
574void falcon_notify_rx_desc(struct efx_rx_queue *rx_queue)
575{
576 efx_dword_t reg;
577 unsigned write_ptr;
578
579 while (rx_queue->notified_count != rx_queue->added_count) {
580 falcon_build_rx_desc(rx_queue,
581 rx_queue->notified_count &
Ben Hutchings3ffeabd2009-10-23 08:30:58 +0000582 EFX_RXQ_MASK);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100583 ++rx_queue->notified_count;
584 }
585
586 wmb();
Ben Hutchings3ffeabd2009-10-23 08:30:58 +0000587 write_ptr = rx_queue->added_count & EFX_RXQ_MASK;
Ben Hutchings3e6c4532009-10-23 08:30:36 +0000588 EFX_POPULATE_DWORD_1(reg, FRF_AZ_RX_DESC_WPTR_DWORD, write_ptr);
Ben Hutchings12d00ca2009-10-23 08:30:46 +0000589 efx_writed_page(rx_queue->efx, &reg,
590 FR_AZ_RX_DESC_UPD_DWORD_P0, rx_queue->queue);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100591}
592
593int falcon_probe_rx(struct efx_rx_queue *rx_queue)
594{
595 struct efx_nic *efx = rx_queue->efx;
Ben Hutchings3ffeabd2009-10-23 08:30:58 +0000596 BUILD_BUG_ON(EFX_RXQ_SIZE < 512 || EFX_RXQ_SIZE > 4096 ||
597 EFX_RXQ_SIZE & EFX_RXQ_MASK);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100598 return falcon_alloc_special_buffer(efx, &rx_queue->rxd,
Ben Hutchings3ffeabd2009-10-23 08:30:58 +0000599 EFX_RXQ_SIZE * sizeof(efx_qword_t));
Ben Hutchings8ceee662008-04-27 12:55:59 +0100600}
601
Ben Hutchingsbc3c90a2008-09-01 12:48:46 +0100602void falcon_init_rx(struct efx_rx_queue *rx_queue)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100603{
604 efx_oword_t rx_desc_ptr;
605 struct efx_nic *efx = rx_queue->efx;
Ben Hutchingsdc8cfa52008-09-01 12:46:50 +0100606 bool is_b0 = falcon_rev(efx) >= FALCON_REV_B0;
607 bool iscsi_digest_en = is_b0;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100608
609 EFX_LOG(efx, "RX queue %d ring in special buffers %d-%d\n",
610 rx_queue->queue, rx_queue->rxd.index,
611 rx_queue->rxd.index + rx_queue->rxd.entries - 1);
612
Ben Hutchings6bc5d3a2008-09-01 12:49:37 +0100613 rx_queue->flushed = false;
614
Ben Hutchings8ceee662008-04-27 12:55:59 +0100615 /* Pin RX descriptor ring */
Ben Hutchingsbc3c90a2008-09-01 12:48:46 +0100616 falcon_init_special_buffer(efx, &rx_queue->rxd);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100617
618 /* Push RX descriptor ring to card */
619 EFX_POPULATE_OWORD_10(rx_desc_ptr,
Ben Hutchings3e6c4532009-10-23 08:30:36 +0000620 FRF_AZ_RX_ISCSI_DDIG_EN, iscsi_digest_en,
621 FRF_AZ_RX_ISCSI_HDIG_EN, iscsi_digest_en,
622 FRF_AZ_RX_DESCQ_BUF_BASE_ID, rx_queue->rxd.index,
623 FRF_AZ_RX_DESCQ_EVQ_ID,
624 rx_queue->channel->channel,
625 FRF_AZ_RX_DESCQ_OWNER_ID, 0,
626 FRF_AZ_RX_DESCQ_LABEL, rx_queue->queue,
Ben Hutchings3ffeabd2009-10-23 08:30:58 +0000627 FRF_AZ_RX_DESCQ_SIZE,
628 __ffs(rx_queue->rxd.entries),
Ben Hutchings3e6c4532009-10-23 08:30:36 +0000629 FRF_AZ_RX_DESCQ_TYPE, 0 /* kernel queue */ ,
Ben Hutchings8ceee662008-04-27 12:55:59 +0100630 /* For >=B0 this is scatter so disable */
Ben Hutchings3e6c4532009-10-23 08:30:36 +0000631 FRF_AZ_RX_DESCQ_JUMBO, !is_b0,
632 FRF_AZ_RX_DESCQ_EN, 1);
Ben Hutchings12d00ca2009-10-23 08:30:46 +0000633 efx_writeo_table(efx, &rx_desc_ptr, efx->type->rxd_ptr_tbl_base,
634 rx_queue->queue);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100635}
636
Ben Hutchings6bc5d3a2008-09-01 12:49:37 +0100637static void falcon_flush_rx_queue(struct efx_rx_queue *rx_queue)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100638{
639 struct efx_nic *efx = rx_queue->efx;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100640 efx_oword_t rx_flush_descq;
641
642 /* Post a flush command */
643 EFX_POPULATE_OWORD_2(rx_flush_descq,
Ben Hutchings3e6c4532009-10-23 08:30:36 +0000644 FRF_AZ_RX_FLUSH_DESCQ_CMD, 1,
645 FRF_AZ_RX_FLUSH_DESCQ, rx_queue->queue);
Ben Hutchings12d00ca2009-10-23 08:30:46 +0000646 efx_writeo(efx, &rx_flush_descq, FR_AZ_RX_FLUSH_DESCQ);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100647}
648
649void falcon_fini_rx(struct efx_rx_queue *rx_queue)
650{
651 efx_oword_t rx_desc_ptr;
652 struct efx_nic *efx = rx_queue->efx;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100653
Ben Hutchings6bc5d3a2008-09-01 12:49:37 +0100654 /* The queue should already have been flushed */
655 WARN_ON(!rx_queue->flushed);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100656
657 /* Remove RX descriptor ring from card */
658 EFX_ZERO_OWORD(rx_desc_ptr);
Ben Hutchings12d00ca2009-10-23 08:30:46 +0000659 efx_writeo_table(efx, &rx_desc_ptr, efx->type->rxd_ptr_tbl_base,
660 rx_queue->queue);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100661
662 /* Unpin RX descriptor ring */
663 falcon_fini_special_buffer(efx, &rx_queue->rxd);
664}
665
666/* Free buffers backing RX queue */
667void falcon_remove_rx(struct efx_rx_queue *rx_queue)
668{
669 falcon_free_special_buffer(rx_queue->efx, &rx_queue->rxd);
670}
671
672/**************************************************************************
673 *
674 * Falcon event queue processing
675 * Event queues are processed by per-channel tasklets.
676 *
677 **************************************************************************/
678
679/* Update a channel's event queue's read pointer (RPTR) register
680 *
681 * This writes the EVQ_RPTR_REG register for the specified channel's
682 * event queue.
683 *
684 * Note that EVQ_RPTR_REG contains the index of the "last read" event,
685 * whereas channel->eventq_read_ptr contains the index of the "next to
686 * read" event.
687 */
688void falcon_eventq_read_ack(struct efx_channel *channel)
689{
690 efx_dword_t reg;
691 struct efx_nic *efx = channel->efx;
692
Ben Hutchings3e6c4532009-10-23 08:30:36 +0000693 EFX_POPULATE_DWORD_1(reg, FRF_AZ_EVQ_RPTR, channel->eventq_read_ptr);
Ben Hutchings12d00ca2009-10-23 08:30:46 +0000694 efx_writed_table(efx, &reg, efx->type->evq_rptr_tbl_base,
Ben Hutchingsd3074022008-09-01 12:48:03 +0100695 channel->channel);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100696}
697
698/* Use HW to insert a SW defined event */
699void falcon_generate_event(struct efx_channel *channel, efx_qword_t *event)
700{
701 efx_oword_t drv_ev_reg;
702
Ben Hutchings3e6c4532009-10-23 08:30:36 +0000703 BUILD_BUG_ON(FRF_AZ_DRV_EV_DATA_LBN != 0 ||
704 FRF_AZ_DRV_EV_DATA_WIDTH != 64);
705 drv_ev_reg.u32[0] = event->u32[0];
706 drv_ev_reg.u32[1] = event->u32[1];
707 drv_ev_reg.u32[2] = 0;
708 drv_ev_reg.u32[3] = 0;
709 EFX_SET_OWORD_FIELD(drv_ev_reg, FRF_AZ_DRV_EV_QID, channel->channel);
Ben Hutchings12d00ca2009-10-23 08:30:46 +0000710 efx_writeo(channel->efx, &drv_ev_reg, FR_AZ_DRV_EV);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100711}
712
713/* Handle a transmit completion event
714 *
715 * Falcon batches TX completion events; the message we receive is of
716 * the form "complete all TX events up to this index".
717 */
Ben Hutchings4d566062008-09-01 12:47:12 +0100718static void falcon_handle_tx_event(struct efx_channel *channel,
719 efx_qword_t *event)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100720{
721 unsigned int tx_ev_desc_ptr;
722 unsigned int tx_ev_q_label;
723 struct efx_tx_queue *tx_queue;
724 struct efx_nic *efx = channel->efx;
725
Ben Hutchings3e6c4532009-10-23 08:30:36 +0000726 if (likely(EFX_QWORD_FIELD(*event, FSF_AZ_TX_EV_COMP))) {
Ben Hutchings8ceee662008-04-27 12:55:59 +0100727 /* Transmit completion */
Ben Hutchings3e6c4532009-10-23 08:30:36 +0000728 tx_ev_desc_ptr = EFX_QWORD_FIELD(*event, FSF_AZ_TX_EV_DESC_PTR);
729 tx_ev_q_label = EFX_QWORD_FIELD(*event, FSF_AZ_TX_EV_Q_LABEL);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100730 tx_queue = &efx->tx_queue[tx_ev_q_label];
Ben Hutchings6fb70fd2009-03-20 13:30:37 +0000731 channel->irq_mod_score +=
732 (tx_ev_desc_ptr - tx_queue->read_count) &
Ben Hutchings3ffeabd2009-10-23 08:30:58 +0000733 EFX_TXQ_MASK;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100734 efx_xmit_done(tx_queue, tx_ev_desc_ptr);
Ben Hutchings3e6c4532009-10-23 08:30:36 +0000735 } else if (EFX_QWORD_FIELD(*event, FSF_AZ_TX_EV_WQ_FF_FULL)) {
Ben Hutchings8ceee662008-04-27 12:55:59 +0100736 /* Rewrite the FIFO write pointer */
Ben Hutchings3e6c4532009-10-23 08:30:36 +0000737 tx_ev_q_label = EFX_QWORD_FIELD(*event, FSF_AZ_TX_EV_Q_LABEL);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100738 tx_queue = &efx->tx_queue[tx_ev_q_label];
739
Ben Hutchings55668612008-05-16 21:16:10 +0100740 if (efx_dev_registered(efx))
Ben Hutchings8ceee662008-04-27 12:55:59 +0100741 netif_tx_lock(efx->net_dev);
742 falcon_notify_tx_desc(tx_queue);
Ben Hutchings55668612008-05-16 21:16:10 +0100743 if (efx_dev_registered(efx))
Ben Hutchings8ceee662008-04-27 12:55:59 +0100744 netif_tx_unlock(efx->net_dev);
Ben Hutchings3e6c4532009-10-23 08:30:36 +0000745 } else if (EFX_QWORD_FIELD(*event, FSF_AZ_TX_EV_PKT_ERR) &&
Ben Hutchings8ceee662008-04-27 12:55:59 +0100746 EFX_WORKAROUND_10727(efx)) {
747 efx_schedule_reset(efx, RESET_TYPE_TX_DESC_FETCH);
748 } else {
749 EFX_ERR(efx, "channel %d unexpected TX event "
750 EFX_QWORD_FMT"\n", channel->channel,
751 EFX_QWORD_VAL(*event));
752 }
753}
754
Ben Hutchings8ceee662008-04-27 12:55:59 +0100755/* Detect errors included in the rx_evt_pkt_ok bit. */
756static void falcon_handle_rx_not_ok(struct efx_rx_queue *rx_queue,
757 const efx_qword_t *event,
Ben Hutchingsdc8cfa52008-09-01 12:46:50 +0100758 bool *rx_ev_pkt_ok,
759 bool *discard)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100760{
761 struct efx_nic *efx = rx_queue->efx;
Ben Hutchingsdc8cfa52008-09-01 12:46:50 +0100762 bool rx_ev_buf_owner_id_err, rx_ev_ip_hdr_chksum_err;
763 bool rx_ev_tcp_udp_chksum_err, rx_ev_eth_crc_err;
764 bool rx_ev_frm_trunc, rx_ev_drib_nib, rx_ev_tobe_disc;
765 bool rx_ev_other_err, rx_ev_pause_frm;
766 bool rx_ev_ip_frag_err, rx_ev_hdr_type, rx_ev_mcast_pkt;
767 unsigned rx_ev_pkt_type;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100768
Ben Hutchings3e6c4532009-10-23 08:30:36 +0000769 rx_ev_hdr_type = EFX_QWORD_FIELD(*event, FSF_AZ_RX_EV_HDR_TYPE);
770 rx_ev_mcast_pkt = EFX_QWORD_FIELD(*event, FSF_AZ_RX_EV_MCAST_PKT);
771 rx_ev_tobe_disc = EFX_QWORD_FIELD(*event, FSF_AZ_RX_EV_TOBE_DISC);
772 rx_ev_pkt_type = EFX_QWORD_FIELD(*event, FSF_AZ_RX_EV_PKT_TYPE);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100773 rx_ev_buf_owner_id_err = EFX_QWORD_FIELD(*event,
Ben Hutchings3e6c4532009-10-23 08:30:36 +0000774 FSF_AZ_RX_EV_BUF_OWNER_ID_ERR);
775 rx_ev_ip_frag_err = EFX_QWORD_FIELD(*event, FSF_AZ_RX_EV_IP_FRAG_ERR);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100776 rx_ev_ip_hdr_chksum_err = EFX_QWORD_FIELD(*event,
Ben Hutchings3e6c4532009-10-23 08:30:36 +0000777 FSF_AZ_RX_EV_IP_HDR_CHKSUM_ERR);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100778 rx_ev_tcp_udp_chksum_err = EFX_QWORD_FIELD(*event,
Ben Hutchings3e6c4532009-10-23 08:30:36 +0000779 FSF_AZ_RX_EV_TCP_UDP_CHKSUM_ERR);
780 rx_ev_eth_crc_err = EFX_QWORD_FIELD(*event, FSF_AZ_RX_EV_ETH_CRC_ERR);
781 rx_ev_frm_trunc = EFX_QWORD_FIELD(*event, FSF_AZ_RX_EV_FRM_TRUNC);
Ben Hutchings55668612008-05-16 21:16:10 +0100782 rx_ev_drib_nib = ((falcon_rev(efx) >= FALCON_REV_B0) ?
Ben Hutchings3e6c4532009-10-23 08:30:36 +0000783 0 : EFX_QWORD_FIELD(*event, FSF_AA_RX_EV_DRIB_NIB));
784 rx_ev_pause_frm = EFX_QWORD_FIELD(*event, FSF_AZ_RX_EV_PAUSE_FRM_ERR);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100785
786 /* Every error apart from tobe_disc and pause_frm */
787 rx_ev_other_err = (rx_ev_drib_nib | rx_ev_tcp_udp_chksum_err |
788 rx_ev_buf_owner_id_err | rx_ev_eth_crc_err |
789 rx_ev_frm_trunc | rx_ev_ip_hdr_chksum_err);
790
Ben Hutchings50050872008-12-12 21:42:42 -0800791 /* Count errors that are not in MAC stats. Ignore expected
792 * checksum errors during self-test. */
Ben Hutchings8ceee662008-04-27 12:55:59 +0100793 if (rx_ev_frm_trunc)
794 ++rx_queue->channel->n_rx_frm_trunc;
795 else if (rx_ev_tobe_disc)
796 ++rx_queue->channel->n_rx_tobe_disc;
Ben Hutchings50050872008-12-12 21:42:42 -0800797 else if (!efx->loopback_selftest) {
798 if (rx_ev_ip_hdr_chksum_err)
799 ++rx_queue->channel->n_rx_ip_hdr_chksum_err;
800 else if (rx_ev_tcp_udp_chksum_err)
801 ++rx_queue->channel->n_rx_tcp_udp_chksum_err;
802 }
Ben Hutchings8ceee662008-04-27 12:55:59 +0100803 if (rx_ev_ip_frag_err)
804 ++rx_queue->channel->n_rx_ip_frag_err;
805
806 /* The frame must be discarded if any of these are true. */
807 *discard = (rx_ev_eth_crc_err | rx_ev_frm_trunc | rx_ev_drib_nib |
808 rx_ev_tobe_disc | rx_ev_pause_frm);
809
810 /* TOBE_DISC is expected on unicast mismatches; don't print out an
811 * error message. FRM_TRUNC indicates RXDP dropped the packet due
812 * to a FIFO overflow.
813 */
814#ifdef EFX_ENABLE_DEBUG
815 if (rx_ev_other_err) {
816 EFX_INFO_RL(efx, " RX queue %d unexpected RX event "
Ben Hutchings5b39fe32008-09-01 12:46:03 +0100817 EFX_QWORD_FMT "%s%s%s%s%s%s%s%s\n",
Ben Hutchings8ceee662008-04-27 12:55:59 +0100818 rx_queue->queue, EFX_QWORD_VAL(*event),
819 rx_ev_buf_owner_id_err ? " [OWNER_ID_ERR]" : "",
820 rx_ev_ip_hdr_chksum_err ?
821 " [IP_HDR_CHKSUM_ERR]" : "",
822 rx_ev_tcp_udp_chksum_err ?
823 " [TCP_UDP_CHKSUM_ERR]" : "",
824 rx_ev_eth_crc_err ? " [ETH_CRC_ERR]" : "",
825 rx_ev_frm_trunc ? " [FRM_TRUNC]" : "",
826 rx_ev_drib_nib ? " [DRIB_NIB]" : "",
827 rx_ev_tobe_disc ? " [TOBE_DISC]" : "",
Ben Hutchings5b39fe32008-09-01 12:46:03 +0100828 rx_ev_pause_frm ? " [PAUSE]" : "");
Ben Hutchings8ceee662008-04-27 12:55:59 +0100829 }
830#endif
Ben Hutchings8ceee662008-04-27 12:55:59 +0100831}
832
833/* Handle receive events that are not in-order. */
834static void falcon_handle_rx_bad_index(struct efx_rx_queue *rx_queue,
835 unsigned index)
836{
837 struct efx_nic *efx = rx_queue->efx;
838 unsigned expected, dropped;
839
Ben Hutchings3ffeabd2009-10-23 08:30:58 +0000840 expected = rx_queue->removed_count & EFX_RXQ_MASK;
841 dropped = (index - expected) & EFX_RXQ_MASK;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100842 EFX_INFO(efx, "dropped %d events (index=%d expected=%d)\n",
843 dropped, index, expected);
844
845 efx_schedule_reset(efx, EFX_WORKAROUND_5676(efx) ?
846 RESET_TYPE_RX_RECOVERY : RESET_TYPE_DISABLE);
847}
848
849/* Handle a packet received event
850 *
851 * Falcon silicon gives a "discard" flag if it's a unicast packet with the
852 * wrong destination address
853 * Also "is multicast" and "matches multicast filter" flags can be used to
854 * discard non-matching multicast packets.
855 */
Ben Hutchings42cbe2d2008-09-01 12:48:08 +0100856static void falcon_handle_rx_event(struct efx_channel *channel,
857 const efx_qword_t *event)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100858{
Ben Hutchings42cbe2d2008-09-01 12:48:08 +0100859 unsigned int rx_ev_desc_ptr, rx_ev_byte_cnt;
Ben Hutchingsdc8cfa52008-09-01 12:46:50 +0100860 unsigned int rx_ev_hdr_type, rx_ev_mcast_pkt;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100861 unsigned expected_ptr;
Ben Hutchingsdc8cfa52008-09-01 12:46:50 +0100862 bool rx_ev_pkt_ok, discard = false, checksummed;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100863 struct efx_rx_queue *rx_queue;
864 struct efx_nic *efx = channel->efx;
865
866 /* Basic packet information */
Ben Hutchings3e6c4532009-10-23 08:30:36 +0000867 rx_ev_byte_cnt = EFX_QWORD_FIELD(*event, FSF_AZ_RX_EV_BYTE_CNT);
868 rx_ev_pkt_ok = EFX_QWORD_FIELD(*event, FSF_AZ_RX_EV_PKT_OK);
869 rx_ev_hdr_type = EFX_QWORD_FIELD(*event, FSF_AZ_RX_EV_HDR_TYPE);
870 WARN_ON(EFX_QWORD_FIELD(*event, FSF_AZ_RX_EV_JUMBO_CONT));
871 WARN_ON(EFX_QWORD_FIELD(*event, FSF_AZ_RX_EV_SOP) != 1);
872 WARN_ON(EFX_QWORD_FIELD(*event, FSF_AZ_RX_EV_Q_LABEL) !=
873 channel->channel);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100874
Ben Hutchings42cbe2d2008-09-01 12:48:08 +0100875 rx_queue = &efx->rx_queue[channel->channel];
Ben Hutchings8ceee662008-04-27 12:55:59 +0100876
Ben Hutchings3e6c4532009-10-23 08:30:36 +0000877 rx_ev_desc_ptr = EFX_QWORD_FIELD(*event, FSF_AZ_RX_EV_DESC_PTR);
Ben Hutchings3ffeabd2009-10-23 08:30:58 +0000878 expected_ptr = rx_queue->removed_count & EFX_RXQ_MASK;
Ben Hutchings42cbe2d2008-09-01 12:48:08 +0100879 if (unlikely(rx_ev_desc_ptr != expected_ptr))
Ben Hutchings8ceee662008-04-27 12:55:59 +0100880 falcon_handle_rx_bad_index(rx_queue, rx_ev_desc_ptr);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100881
882 if (likely(rx_ev_pkt_ok)) {
883 /* If packet is marked as OK and packet type is TCP/IPv4 or
884 * UDP/IPv4, then we can rely on the hardware checksum.
885 */
Ben Hutchings3e6c4532009-10-23 08:30:36 +0000886 checksummed =
887 rx_ev_hdr_type == FSE_AB_RX_EV_HDR_TYPE_IPV4_TCP ||
888 rx_ev_hdr_type == FSE_AB_RX_EV_HDR_TYPE_IPV4_UDP;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100889 } else {
890 falcon_handle_rx_not_ok(rx_queue, event, &rx_ev_pkt_ok,
Ben Hutchings5b39fe32008-09-01 12:46:03 +0100891 &discard);
Ben Hutchingsdc8cfa52008-09-01 12:46:50 +0100892 checksummed = false;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100893 }
894
895 /* Detect multicast packets that didn't match the filter */
Ben Hutchings3e6c4532009-10-23 08:30:36 +0000896 rx_ev_mcast_pkt = EFX_QWORD_FIELD(*event, FSF_AZ_RX_EV_MCAST_PKT);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100897 if (rx_ev_mcast_pkt) {
898 unsigned int rx_ev_mcast_hash_match =
Ben Hutchings3e6c4532009-10-23 08:30:36 +0000899 EFX_QWORD_FIELD(*event, FSF_AZ_RX_EV_MCAST_HASH_MATCH);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100900
901 if (unlikely(!rx_ev_mcast_hash_match))
Ben Hutchingsdc8cfa52008-09-01 12:46:50 +0100902 discard = true;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100903 }
904
Ben Hutchings6fb70fd2009-03-20 13:30:37 +0000905 channel->irq_mod_score += 2;
906
Ben Hutchings8ceee662008-04-27 12:55:59 +0100907 /* Handle received packet */
908 efx_rx_packet(rx_queue, rx_ev_desc_ptr, rx_ev_byte_cnt,
909 checksummed, discard);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100910}
911
912/* Global events are basically PHY events */
913static void falcon_handle_global_event(struct efx_channel *channel,
914 efx_qword_t *event)
915{
916 struct efx_nic *efx = channel->efx;
Ben Hutchings766ca0f2008-12-12 21:59:24 -0800917 bool handled = false;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100918
Ben Hutchings3e6c4532009-10-23 08:30:36 +0000919 if (EFX_QWORD_FIELD(*event, FSF_AB_GLB_EV_G_PHY0_INTR) ||
920 EFX_QWORD_FIELD(*event, FSF_AB_GLB_EV_XG_PHY0_INTR) ||
921 EFX_QWORD_FIELD(*event, FSF_AB_GLB_EV_XFP_PHY0_INTR)) {
Ben Hutchings766ca0f2008-12-12 21:59:24 -0800922 efx->phy_op->clear_interrupt(efx);
923 queue_work(efx->workqueue, &efx->phy_work);
924 handled = true;
925 }
Ben Hutchings8ceee662008-04-27 12:55:59 +0100926
Ben Hutchings55668612008-05-16 21:16:10 +0100927 if ((falcon_rev(efx) >= FALCON_REV_B0) &&
Ben Hutchings3e6c4532009-10-23 08:30:36 +0000928 EFX_QWORD_FIELD(*event, FSF_BB_GLB_EV_XG_MGT_INTR)) {
Ben Hutchings766ca0f2008-12-12 21:59:24 -0800929 queue_work(efx->workqueue, &efx->mac_work);
Ben Hutchingsdc8cfa52008-09-01 12:46:50 +0100930 handled = true;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100931 }
932
Ben Hutchings56241ce2009-10-23 08:30:06 +0000933 if (falcon_rev(efx) <= FALCON_REV_A1 ?
Ben Hutchings3e6c4532009-10-23 08:30:36 +0000934 EFX_QWORD_FIELD(*event, FSF_AA_GLB_EV_RX_RECOVERY) :
935 EFX_QWORD_FIELD(*event, FSF_BB_GLB_EV_RX_RECOVERY)) {
Ben Hutchings8ceee662008-04-27 12:55:59 +0100936 EFX_ERR(efx, "channel %d seen global RX_RESET "
937 "event. Resetting.\n", channel->channel);
938
939 atomic_inc(&efx->rx_reset);
940 efx_schedule_reset(efx, EFX_WORKAROUND_6555(efx) ?
941 RESET_TYPE_RX_RECOVERY : RESET_TYPE_DISABLE);
Ben Hutchingsdc8cfa52008-09-01 12:46:50 +0100942 handled = true;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100943 }
944
945 if (!handled)
946 EFX_ERR(efx, "channel %d unknown global event "
947 EFX_QWORD_FMT "\n", channel->channel,
948 EFX_QWORD_VAL(*event));
949}
950
951static void falcon_handle_driver_event(struct efx_channel *channel,
952 efx_qword_t *event)
953{
954 struct efx_nic *efx = channel->efx;
955 unsigned int ev_sub_code;
956 unsigned int ev_sub_data;
957
Ben Hutchings3e6c4532009-10-23 08:30:36 +0000958 ev_sub_code = EFX_QWORD_FIELD(*event, FSF_AZ_DRIVER_EV_SUBCODE);
959 ev_sub_data = EFX_QWORD_FIELD(*event, FSF_AZ_DRIVER_EV_SUBDATA);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100960
961 switch (ev_sub_code) {
Ben Hutchings3e6c4532009-10-23 08:30:36 +0000962 case FSE_AZ_TX_DESCQ_FLS_DONE_EV:
Ben Hutchings8ceee662008-04-27 12:55:59 +0100963 EFX_TRACE(efx, "channel %d TXQ %d flushed\n",
964 channel->channel, ev_sub_data);
965 break;
Ben Hutchings3e6c4532009-10-23 08:30:36 +0000966 case FSE_AZ_RX_DESCQ_FLS_DONE_EV:
Ben Hutchings8ceee662008-04-27 12:55:59 +0100967 EFX_TRACE(efx, "channel %d RXQ %d flushed\n",
968 channel->channel, ev_sub_data);
969 break;
Ben Hutchings3e6c4532009-10-23 08:30:36 +0000970 case FSE_AZ_EVQ_INIT_DONE_EV:
Ben Hutchings8ceee662008-04-27 12:55:59 +0100971 EFX_LOG(efx, "channel %d EVQ %d initialised\n",
972 channel->channel, ev_sub_data);
973 break;
Ben Hutchings3e6c4532009-10-23 08:30:36 +0000974 case FSE_AZ_SRM_UPD_DONE_EV:
Ben Hutchings8ceee662008-04-27 12:55:59 +0100975 EFX_TRACE(efx, "channel %d SRAM update done\n",
976 channel->channel);
977 break;
Ben Hutchings3e6c4532009-10-23 08:30:36 +0000978 case FSE_AZ_WAKE_UP_EV:
Ben Hutchings8ceee662008-04-27 12:55:59 +0100979 EFX_TRACE(efx, "channel %d RXQ %d wakeup event\n",
980 channel->channel, ev_sub_data);
981 break;
Ben Hutchings3e6c4532009-10-23 08:30:36 +0000982 case FSE_AZ_TIMER_EV:
Ben Hutchings8ceee662008-04-27 12:55:59 +0100983 EFX_TRACE(efx, "channel %d RX queue %d timer expired\n",
984 channel->channel, ev_sub_data);
985 break;
Ben Hutchings3e6c4532009-10-23 08:30:36 +0000986 case FSE_AA_RX_RECOVER_EV:
Ben Hutchings8ceee662008-04-27 12:55:59 +0100987 EFX_ERR(efx, "channel %d seen DRIVER RX_RESET event. "
988 "Resetting.\n", channel->channel);
Ben Hutchings05e3ec02008-05-07 13:00:39 +0100989 atomic_inc(&efx->rx_reset);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100990 efx_schedule_reset(efx,
991 EFX_WORKAROUND_6555(efx) ?
992 RESET_TYPE_RX_RECOVERY :
993 RESET_TYPE_DISABLE);
994 break;
Ben Hutchings3e6c4532009-10-23 08:30:36 +0000995 case FSE_BZ_RX_DSC_ERROR_EV:
Ben Hutchings8ceee662008-04-27 12:55:59 +0100996 EFX_ERR(efx, "RX DMA Q %d reports descriptor fetch error."
997 " RX Q %d is disabled.\n", ev_sub_data, ev_sub_data);
998 efx_schedule_reset(efx, RESET_TYPE_RX_DESC_FETCH);
999 break;
Ben Hutchings3e6c4532009-10-23 08:30:36 +00001000 case FSE_BZ_TX_DSC_ERROR_EV:
Ben Hutchings8ceee662008-04-27 12:55:59 +01001001 EFX_ERR(efx, "TX DMA Q %d reports descriptor fetch error."
1002 " TX Q %d is disabled.\n", ev_sub_data, ev_sub_data);
1003 efx_schedule_reset(efx, RESET_TYPE_TX_DESC_FETCH);
1004 break;
1005 default:
1006 EFX_TRACE(efx, "channel %d unknown driver event code %d "
1007 "data %04x\n", channel->channel, ev_sub_code,
1008 ev_sub_data);
1009 break;
1010 }
1011}
1012
Ben Hutchings42cbe2d2008-09-01 12:48:08 +01001013int falcon_process_eventq(struct efx_channel *channel, int rx_quota)
Ben Hutchings8ceee662008-04-27 12:55:59 +01001014{
1015 unsigned int read_ptr;
1016 efx_qword_t event, *p_event;
1017 int ev_code;
Ben Hutchings42cbe2d2008-09-01 12:48:08 +01001018 int rx_packets = 0;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001019
1020 read_ptr = channel->eventq_read_ptr;
1021
1022 do {
1023 p_event = falcon_event(channel, read_ptr);
1024 event = *p_event;
1025
1026 if (!falcon_event_present(&event))
1027 /* End of events */
1028 break;
1029
1030 EFX_TRACE(channel->efx, "channel %d event is "EFX_QWORD_FMT"\n",
1031 channel->channel, EFX_QWORD_VAL(event));
1032
1033 /* Clear this event by marking it all ones */
1034 EFX_SET_QWORD(*p_event);
1035
Ben Hutchings3e6c4532009-10-23 08:30:36 +00001036 ev_code = EFX_QWORD_FIELD(event, FSF_AZ_EV_CODE);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001037
1038 switch (ev_code) {
Ben Hutchings3e6c4532009-10-23 08:30:36 +00001039 case FSE_AZ_EV_CODE_RX_EV:
Ben Hutchings42cbe2d2008-09-01 12:48:08 +01001040 falcon_handle_rx_event(channel, &event);
1041 ++rx_packets;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001042 break;
Ben Hutchings3e6c4532009-10-23 08:30:36 +00001043 case FSE_AZ_EV_CODE_TX_EV:
Ben Hutchings8ceee662008-04-27 12:55:59 +01001044 falcon_handle_tx_event(channel, &event);
1045 break;
Ben Hutchings3e6c4532009-10-23 08:30:36 +00001046 case FSE_AZ_EV_CODE_DRV_GEN_EV:
1047 channel->eventq_magic = EFX_QWORD_FIELD(
1048 event, FSF_AZ_DRV_GEN_EV_MAGIC);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001049 EFX_LOG(channel->efx, "channel %d received generated "
1050 "event "EFX_QWORD_FMT"\n", channel->channel,
1051 EFX_QWORD_VAL(event));
1052 break;
Ben Hutchings3e6c4532009-10-23 08:30:36 +00001053 case FSE_AZ_EV_CODE_GLOBAL_EV:
Ben Hutchings8ceee662008-04-27 12:55:59 +01001054 falcon_handle_global_event(channel, &event);
1055 break;
Ben Hutchings3e6c4532009-10-23 08:30:36 +00001056 case FSE_AZ_EV_CODE_DRIVER_EV:
Ben Hutchings8ceee662008-04-27 12:55:59 +01001057 falcon_handle_driver_event(channel, &event);
1058 break;
1059 default:
1060 EFX_ERR(channel->efx, "channel %d unknown event type %d"
1061 " (data " EFX_QWORD_FMT ")\n", channel->channel,
1062 ev_code, EFX_QWORD_VAL(event));
1063 }
1064
1065 /* Increment read pointer */
Ben Hutchings3ffeabd2009-10-23 08:30:58 +00001066 read_ptr = (read_ptr + 1) & EFX_EVQ_MASK;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001067
Ben Hutchings42cbe2d2008-09-01 12:48:08 +01001068 } while (rx_packets < rx_quota);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001069
1070 channel->eventq_read_ptr = read_ptr;
Ben Hutchings42cbe2d2008-09-01 12:48:08 +01001071 return rx_packets;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001072}
1073
1074void falcon_set_int_moderation(struct efx_channel *channel)
1075{
1076 efx_dword_t timer_cmd;
1077 struct efx_nic *efx = channel->efx;
1078
1079 /* Set timer register */
1080 if (channel->irq_moderation) {
1081 /* Round to resolution supported by hardware. The value we
1082 * program is based at 0. So actual interrupt moderation
1083 * achieved is ((x + 1) * res).
1084 */
Ben Hutchings6fb70fd2009-03-20 13:30:37 +00001085 channel->irq_moderation -= (channel->irq_moderation %
1086 FALCON_IRQ_MOD_RESOLUTION);
1087 if (channel->irq_moderation < FALCON_IRQ_MOD_RESOLUTION)
1088 channel->irq_moderation = FALCON_IRQ_MOD_RESOLUTION;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001089 EFX_POPULATE_DWORD_2(timer_cmd,
Ben Hutchings3e6c4532009-10-23 08:30:36 +00001090 FRF_AB_TC_TIMER_MODE,
1091 FFE_BB_TIMER_MODE_INT_HLDOFF,
1092 FRF_AB_TC_TIMER_VAL,
Ben Hutchings6fb70fd2009-03-20 13:30:37 +00001093 channel->irq_moderation /
1094 FALCON_IRQ_MOD_RESOLUTION - 1);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001095 } else {
1096 EFX_POPULATE_DWORD_2(timer_cmd,
Ben Hutchings3e6c4532009-10-23 08:30:36 +00001097 FRF_AB_TC_TIMER_MODE,
1098 FFE_BB_TIMER_MODE_DIS,
1099 FRF_AB_TC_TIMER_VAL, 0);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001100 }
Ben Hutchings3e6c4532009-10-23 08:30:36 +00001101 BUILD_BUG_ON(FR_AA_TIMER_COMMAND_KER != FR_BZ_TIMER_COMMAND_P0);
Ben Hutchings12d00ca2009-10-23 08:30:46 +00001102 efx_writed_page_locked(efx, &timer_cmd, FR_BZ_TIMER_COMMAND_P0,
1103 channel->channel);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001104
1105}
1106
1107/* Allocate buffer table entries for event queue */
1108int falcon_probe_eventq(struct efx_channel *channel)
1109{
1110 struct efx_nic *efx = channel->efx;
Ben Hutchings3ffeabd2009-10-23 08:30:58 +00001111 BUILD_BUG_ON(EFX_EVQ_SIZE < 512 || EFX_EVQ_SIZE > 32768 ||
1112 EFX_EVQ_SIZE & EFX_EVQ_MASK);
1113 return falcon_alloc_special_buffer(efx, &channel->eventq,
1114 EFX_EVQ_SIZE * sizeof(efx_qword_t));
Ben Hutchings8ceee662008-04-27 12:55:59 +01001115}
1116
Ben Hutchingsbc3c90a2008-09-01 12:48:46 +01001117void falcon_init_eventq(struct efx_channel *channel)
Ben Hutchings8ceee662008-04-27 12:55:59 +01001118{
1119 efx_oword_t evq_ptr;
1120 struct efx_nic *efx = channel->efx;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001121
1122 EFX_LOG(efx, "channel %d event queue in special buffers %d-%d\n",
1123 channel->channel, channel->eventq.index,
1124 channel->eventq.index + channel->eventq.entries - 1);
1125
1126 /* Pin event queue buffer */
Ben Hutchingsbc3c90a2008-09-01 12:48:46 +01001127 falcon_init_special_buffer(efx, &channel->eventq);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001128
1129 /* Fill event queue with all ones (i.e. empty events) */
1130 memset(channel->eventq.addr, 0xff, channel->eventq.len);
1131
1132 /* Push event queue to card */
1133 EFX_POPULATE_OWORD_3(evq_ptr,
Ben Hutchings3e6c4532009-10-23 08:30:36 +00001134 FRF_AZ_EVQ_EN, 1,
Ben Hutchings3ffeabd2009-10-23 08:30:58 +00001135 FRF_AZ_EVQ_SIZE, __ffs(channel->eventq.entries),
Ben Hutchings3e6c4532009-10-23 08:30:36 +00001136 FRF_AZ_EVQ_BUF_BASE_ID, channel->eventq.index);
Ben Hutchings12d00ca2009-10-23 08:30:46 +00001137 efx_writeo_table(efx, &evq_ptr, efx->type->evq_ptr_tbl_base,
1138 channel->channel);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001139
1140 falcon_set_int_moderation(channel);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001141}
1142
1143void falcon_fini_eventq(struct efx_channel *channel)
1144{
1145 efx_oword_t eventq_ptr;
1146 struct efx_nic *efx = channel->efx;
1147
1148 /* Remove event queue from card */
1149 EFX_ZERO_OWORD(eventq_ptr);
Ben Hutchings12d00ca2009-10-23 08:30:46 +00001150 efx_writeo_table(efx, &eventq_ptr, efx->type->evq_ptr_tbl_base,
1151 channel->channel);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001152
1153 /* Unpin event queue */
1154 falcon_fini_special_buffer(efx, &channel->eventq);
1155}
1156
1157/* Free buffers backing event queue */
1158void falcon_remove_eventq(struct efx_channel *channel)
1159{
1160 falcon_free_special_buffer(channel->efx, &channel->eventq);
1161}
1162
1163
1164/* Generates a test event on the event queue. A subsequent call to
1165 * process_eventq() should pick up the event and place the value of
1166 * "magic" into channel->eventq_magic;
1167 */
1168void falcon_generate_test_event(struct efx_channel *channel, unsigned int magic)
1169{
1170 efx_qword_t test_event;
1171
Ben Hutchings3e6c4532009-10-23 08:30:36 +00001172 EFX_POPULATE_QWORD_2(test_event, FSF_AZ_EV_CODE,
1173 FSE_AZ_EV_CODE_DRV_GEN_EV,
1174 FSF_AZ_DRV_GEN_EV_MAGIC, magic);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001175 falcon_generate_event(channel, &test_event);
1176}
1177
Ben Hutchings177dfcd2008-12-12 21:50:08 -08001178void falcon_sim_phy_event(struct efx_nic *efx)
1179{
1180 efx_qword_t phy_event;
1181
Ben Hutchings3e6c4532009-10-23 08:30:36 +00001182 EFX_POPULATE_QWORD_1(phy_event, FSF_AZ_EV_CODE,
1183 FSE_AZ_EV_CODE_GLOBAL_EV);
Ben Hutchings177dfcd2008-12-12 21:50:08 -08001184 if (EFX_IS10G(efx))
Ben Hutchings3e6c4532009-10-23 08:30:36 +00001185 EFX_SET_QWORD_FIELD(phy_event, FSF_AB_GLB_EV_XG_PHY0_INTR, 1);
Ben Hutchings177dfcd2008-12-12 21:50:08 -08001186 else
Ben Hutchings3e6c4532009-10-23 08:30:36 +00001187 EFX_SET_QWORD_FIELD(phy_event, FSF_AB_GLB_EV_G_PHY0_INTR, 1);
Ben Hutchings177dfcd2008-12-12 21:50:08 -08001188
1189 falcon_generate_event(&efx->channel[0], &phy_event);
1190}
1191
Ben Hutchings6bc5d3a2008-09-01 12:49:37 +01001192/**************************************************************************
1193 *
1194 * Flush handling
1195 *
1196 **************************************************************************/
1197
1198
1199static void falcon_poll_flush_events(struct efx_nic *efx)
1200{
1201 struct efx_channel *channel = &efx->channel[0];
1202 struct efx_tx_queue *tx_queue;
1203 struct efx_rx_queue *rx_queue;
Ben Hutchings4720bc62009-03-04 10:01:15 +00001204 unsigned int read_ptr = channel->eventq_read_ptr;
Ben Hutchings3ffeabd2009-10-23 08:30:58 +00001205 unsigned int end_ptr = (read_ptr - 1) & EFX_EVQ_MASK;
Ben Hutchings6bc5d3a2008-09-01 12:49:37 +01001206
Ben Hutchings4720bc62009-03-04 10:01:15 +00001207 do {
Ben Hutchings6bc5d3a2008-09-01 12:49:37 +01001208 efx_qword_t *event = falcon_event(channel, read_ptr);
1209 int ev_code, ev_sub_code, ev_queue;
1210 bool ev_failed;
Ben Hutchings4720bc62009-03-04 10:01:15 +00001211
Ben Hutchings6bc5d3a2008-09-01 12:49:37 +01001212 if (!falcon_event_present(event))
1213 break;
1214
Ben Hutchings3e6c4532009-10-23 08:30:36 +00001215 ev_code = EFX_QWORD_FIELD(*event, FSF_AZ_EV_CODE);
1216 ev_sub_code = EFX_QWORD_FIELD(*event,
1217 FSF_AZ_DRIVER_EV_SUBCODE);
1218 if (ev_code == FSE_AZ_EV_CODE_DRIVER_EV &&
1219 ev_sub_code == FSE_AZ_TX_DESCQ_FLS_DONE_EV) {
Ben Hutchings6bc5d3a2008-09-01 12:49:37 +01001220 ev_queue = EFX_QWORD_FIELD(*event,
Ben Hutchings3e6c4532009-10-23 08:30:36 +00001221 FSF_AZ_DRIVER_EV_SUBDATA);
Ben Hutchings6bc5d3a2008-09-01 12:49:37 +01001222 if (ev_queue < EFX_TX_QUEUE_COUNT) {
1223 tx_queue = efx->tx_queue + ev_queue;
1224 tx_queue->flushed = true;
1225 }
Ben Hutchings3e6c4532009-10-23 08:30:36 +00001226 } else if (ev_code == FSE_AZ_EV_CODE_DRIVER_EV &&
1227 ev_sub_code == FSE_AZ_RX_DESCQ_FLS_DONE_EV) {
1228 ev_queue = EFX_QWORD_FIELD(
1229 *event, FSF_AZ_DRIVER_EV_RX_DESCQ_ID);
1230 ev_failed = EFX_QWORD_FIELD(
1231 *event, FSF_AZ_DRIVER_EV_RX_FLUSH_FAIL);
Ben Hutchings6bc5d3a2008-09-01 12:49:37 +01001232 if (ev_queue < efx->n_rx_queues) {
1233 rx_queue = efx->rx_queue + ev_queue;
1234
1235 /* retry the rx flush */
1236 if (ev_failed)
1237 falcon_flush_rx_queue(rx_queue);
1238 else
1239 rx_queue->flushed = true;
1240 }
Ben Hutchings6bc5d3a2008-09-01 12:49:37 +01001241 }
1242
Ben Hutchings3ffeabd2009-10-23 08:30:58 +00001243 read_ptr = (read_ptr + 1) & EFX_EVQ_MASK;
Ben Hutchings4720bc62009-03-04 10:01:15 +00001244 } while (read_ptr != end_ptr);
Ben Hutchings6bc5d3a2008-09-01 12:49:37 +01001245}
1246
1247/* Handle tx and rx flushes at the same time, since they run in
1248 * parallel in the hardware and there's no reason for us to
1249 * serialise them */
1250int falcon_flush_queues(struct efx_nic *efx)
1251{
1252 struct efx_rx_queue *rx_queue;
1253 struct efx_tx_queue *tx_queue;
1254 int i;
1255 bool outstanding;
1256
1257 /* Issue flush requests */
1258 efx_for_each_tx_queue(tx_queue, efx) {
1259 tx_queue->flushed = false;
1260 falcon_flush_tx_queue(tx_queue);
1261 }
1262 efx_for_each_rx_queue(rx_queue, efx) {
1263 rx_queue->flushed = false;
1264 falcon_flush_rx_queue(rx_queue);
1265 }
1266
1267 /* Poll the evq looking for flush completions. Since we're not pushing
1268 * any more rx or tx descriptors at this point, we're in no danger of
1269 * overflowing the evq whilst we wait */
1270 for (i = 0; i < FALCON_FLUSH_POLL_COUNT; ++i) {
1271 msleep(FALCON_FLUSH_INTERVAL);
1272 falcon_poll_flush_events(efx);
1273
1274 /* Check if every queue has been succesfully flushed */
1275 outstanding = false;
1276 efx_for_each_tx_queue(tx_queue, efx)
1277 outstanding |= !tx_queue->flushed;
1278 efx_for_each_rx_queue(rx_queue, efx)
1279 outstanding |= !rx_queue->flushed;
1280 if (!outstanding)
1281 return 0;
1282 }
1283
1284 /* Mark the queues as all flushed. We're going to return failure
1285 * leading to a reset, or fake up success anyway. "flushed" now
1286 * indicates that we tried to flush. */
1287 efx_for_each_tx_queue(tx_queue, efx) {
1288 if (!tx_queue->flushed)
1289 EFX_ERR(efx, "tx queue %d flush command timed out\n",
1290 tx_queue->queue);
1291 tx_queue->flushed = true;
1292 }
1293 efx_for_each_rx_queue(rx_queue, efx) {
1294 if (!rx_queue->flushed)
1295 EFX_ERR(efx, "rx queue %d flush command timed out\n",
1296 rx_queue->queue);
1297 rx_queue->flushed = true;
1298 }
1299
1300 if (EFX_WORKAROUND_7803(efx))
1301 return 0;
1302
1303 return -ETIMEDOUT;
1304}
Ben Hutchings8ceee662008-04-27 12:55:59 +01001305
1306/**************************************************************************
1307 *
1308 * Falcon hardware interrupts
1309 * The hardware interrupt handler does very little work; all the event
1310 * queue processing is carried out by per-channel tasklets.
1311 *
1312 **************************************************************************/
1313
1314/* Enable/disable/generate Falcon interrupts */
1315static inline void falcon_interrupts(struct efx_nic *efx, int enabled,
1316 int force)
1317{
1318 efx_oword_t int_en_reg_ker;
1319
1320 EFX_POPULATE_OWORD_2(int_en_reg_ker,
Ben Hutchings3e6c4532009-10-23 08:30:36 +00001321 FRF_AZ_KER_INT_KER, force,
1322 FRF_AZ_DRV_INT_EN_KER, enabled);
Ben Hutchings12d00ca2009-10-23 08:30:46 +00001323 efx_writeo(efx, &int_en_reg_ker, FR_AZ_INT_EN_KER);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001324}
1325
1326void falcon_enable_interrupts(struct efx_nic *efx)
1327{
1328 efx_oword_t int_adr_reg_ker;
1329 struct efx_channel *channel;
1330
1331 EFX_ZERO_OWORD(*((efx_oword_t *) efx->irq_status.addr));
1332 wmb(); /* Ensure interrupt vector is clear before interrupts enabled */
1333
1334 /* Program address */
1335 EFX_POPULATE_OWORD_2(int_adr_reg_ker,
Ben Hutchings3e6c4532009-10-23 08:30:36 +00001336 FRF_AZ_NORM_INT_VEC_DIS_KER,
1337 EFX_INT_MODE_USE_MSI(efx),
1338 FRF_AZ_INT_ADR_KER, efx->irq_status.dma_addr);
Ben Hutchings12d00ca2009-10-23 08:30:46 +00001339 efx_writeo(efx, &int_adr_reg_ker, FR_AZ_INT_ADR_KER);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001340
1341 /* Enable interrupts */
1342 falcon_interrupts(efx, 1, 0);
1343
1344 /* Force processing of all the channels to get the EVQ RPTRs up to
1345 date */
Ben Hutchings64ee3122008-09-01 12:47:38 +01001346 efx_for_each_channel(channel, efx)
Ben Hutchings8ceee662008-04-27 12:55:59 +01001347 efx_schedule_channel(channel);
1348}
1349
1350void falcon_disable_interrupts(struct efx_nic *efx)
1351{
1352 /* Disable interrupts */
1353 falcon_interrupts(efx, 0, 0);
1354}
1355
1356/* Generate a Falcon test interrupt
1357 * Interrupt must already have been enabled, otherwise nasty things
1358 * may happen.
1359 */
1360void falcon_generate_interrupt(struct efx_nic *efx)
1361{
1362 falcon_interrupts(efx, 1, 1);
1363}
1364
1365/* Acknowledge a legacy interrupt from Falcon
1366 *
1367 * This acknowledges a legacy (not MSI) interrupt via INT_ACK_KER_REG.
1368 *
1369 * Due to SFC bug 3706 (silicon revision <=A1) reads can be duplicated in the
1370 * BIU. Interrupt acknowledge is read sensitive so must write instead
1371 * (then read to ensure the BIU collector is flushed)
1372 *
1373 * NB most hardware supports MSI interrupts
1374 */
1375static inline void falcon_irq_ack_a1(struct efx_nic *efx)
1376{
1377 efx_dword_t reg;
1378
Ben Hutchings3e6c4532009-10-23 08:30:36 +00001379 EFX_POPULATE_DWORD_1(reg, FRF_AA_INT_ACK_KER_FIELD, 0xb7eb7e);
Ben Hutchings12d00ca2009-10-23 08:30:46 +00001380 efx_writed(efx, &reg, FR_AA_INT_ACK_KER);
1381 efx_readd(efx, &reg, FR_AA_WORK_AROUND_BROKEN_PCI_READS);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001382}
1383
1384/* Process a fatal interrupt
1385 * Disable bus mastering ASAP and schedule a reset
1386 */
1387static irqreturn_t falcon_fatal_interrupt(struct efx_nic *efx)
1388{
1389 struct falcon_nic_data *nic_data = efx->nic_data;
Ben Hutchingsd3208b52008-05-16 21:20:00 +01001390 efx_oword_t *int_ker = efx->irq_status.addr;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001391 efx_oword_t fatal_intr;
1392 int error, mem_perr;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001393
Ben Hutchings12d00ca2009-10-23 08:30:46 +00001394 efx_reado(efx, &fatal_intr, FR_AZ_FATAL_INTR_KER);
Ben Hutchings3e6c4532009-10-23 08:30:36 +00001395 error = EFX_OWORD_FIELD(fatal_intr, FRF_AZ_FATAL_INTR);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001396
1397 EFX_ERR(efx, "SYSTEM ERROR " EFX_OWORD_FMT " status "
1398 EFX_OWORD_FMT ": %s\n", EFX_OWORD_VAL(*int_ker),
1399 EFX_OWORD_VAL(fatal_intr),
1400 error ? "disabling bus mastering" : "no recognised error");
1401 if (error == 0)
1402 goto out;
1403
1404 /* If this is a memory parity error dump which blocks are offending */
Ben Hutchings3e6c4532009-10-23 08:30:36 +00001405 mem_perr = EFX_OWORD_FIELD(fatal_intr, FRF_AZ_MEM_PERR_INT_KER);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001406 if (mem_perr) {
1407 efx_oword_t reg;
Ben Hutchings12d00ca2009-10-23 08:30:46 +00001408 efx_reado(efx, &reg, FR_AZ_MEM_STAT);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001409 EFX_ERR(efx, "SYSTEM ERROR: memory parity error "
1410 EFX_OWORD_FMT "\n", EFX_OWORD_VAL(reg));
1411 }
1412
Ben Hutchings0a62f1a2008-09-01 12:50:14 +01001413 /* Disable both devices */
Ben Hutchingsef1bba22008-12-23 03:09:53 +00001414 pci_clear_master(efx->pci_dev);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001415 if (FALCON_IS_DUAL_FUNC(efx))
Ben Hutchingsef1bba22008-12-23 03:09:53 +00001416 pci_clear_master(nic_data->pci_dev2);
Ben Hutchings0a62f1a2008-09-01 12:50:14 +01001417 falcon_disable_interrupts(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001418
Ben Hutchings2c3c3d02009-03-04 10:01:57 +00001419 /* Count errors and reset or disable the NIC accordingly */
1420 if (nic_data->int_error_count == 0 ||
1421 time_after(jiffies, nic_data->int_error_expire)) {
1422 nic_data->int_error_count = 0;
1423 nic_data->int_error_expire =
1424 jiffies + FALCON_INT_ERROR_EXPIRE * HZ;
1425 }
1426 if (++nic_data->int_error_count < FALCON_MAX_INT_ERRORS) {
Ben Hutchings8ceee662008-04-27 12:55:59 +01001427 EFX_ERR(efx, "SYSTEM ERROR - reset scheduled\n");
1428 efx_schedule_reset(efx, RESET_TYPE_INT_ERROR);
1429 } else {
1430 EFX_ERR(efx, "SYSTEM ERROR - max number of errors seen."
1431 "NIC will be disabled\n");
1432 efx_schedule_reset(efx, RESET_TYPE_DISABLE);
1433 }
1434out:
1435 return IRQ_HANDLED;
1436}
1437
1438/* Handle a legacy interrupt from Falcon
1439 * Acknowledges the interrupt and schedule event queue processing.
1440 */
1441static irqreturn_t falcon_legacy_interrupt_b0(int irq, void *dev_id)
1442{
Ben Hutchingsd3208b52008-05-16 21:20:00 +01001443 struct efx_nic *efx = dev_id;
1444 efx_oword_t *int_ker = efx->irq_status.addr;
Ben Hutchingsa9de9a72009-03-20 13:26:41 +00001445 irqreturn_t result = IRQ_NONE;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001446 struct efx_channel *channel;
1447 efx_dword_t reg;
1448 u32 queues;
1449 int syserr;
1450
1451 /* Read the ISR which also ACKs the interrupts */
Ben Hutchings12d00ca2009-10-23 08:30:46 +00001452 efx_readd(efx, &reg, FR_BZ_INT_ISR0);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001453 queues = EFX_EXTRACT_DWORD(reg, 0, 31);
1454
1455 /* Check to see if we have a serious error condition */
Ben Hutchings3e6c4532009-10-23 08:30:36 +00001456 syserr = EFX_OWORD_FIELD(*int_ker, FSF_AZ_NET_IVEC_FATAL_INT);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001457 if (unlikely(syserr))
1458 return falcon_fatal_interrupt(efx);
1459
Ben Hutchings8ceee662008-04-27 12:55:59 +01001460 /* Schedule processing of any interrupting queues */
Ben Hutchingsa9de9a72009-03-20 13:26:41 +00001461 efx_for_each_channel(channel, efx) {
1462 if ((queues & 1) ||
1463 falcon_event_present(
1464 falcon_event(channel, channel->eventq_read_ptr))) {
Ben Hutchings8ceee662008-04-27 12:55:59 +01001465 efx_schedule_channel(channel);
Ben Hutchingsa9de9a72009-03-20 13:26:41 +00001466 result = IRQ_HANDLED;
1467 }
Ben Hutchings8ceee662008-04-27 12:55:59 +01001468 queues >>= 1;
1469 }
1470
Ben Hutchingsa9de9a72009-03-20 13:26:41 +00001471 if (result == IRQ_HANDLED) {
1472 efx->last_irq_cpu = raw_smp_processor_id();
1473 EFX_TRACE(efx, "IRQ %d on CPU %d status " EFX_DWORD_FMT "\n",
1474 irq, raw_smp_processor_id(), EFX_DWORD_VAL(reg));
1475 }
1476
1477 return result;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001478}
1479
1480
1481static irqreturn_t falcon_legacy_interrupt_a1(int irq, void *dev_id)
1482{
Ben Hutchingsd3208b52008-05-16 21:20:00 +01001483 struct efx_nic *efx = dev_id;
1484 efx_oword_t *int_ker = efx->irq_status.addr;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001485 struct efx_channel *channel;
1486 int syserr;
1487 int queues;
1488
1489 /* Check to see if this is our interrupt. If it isn't, we
1490 * exit without having touched the hardware.
1491 */
1492 if (unlikely(EFX_OWORD_IS_ZERO(*int_ker))) {
1493 EFX_TRACE(efx, "IRQ %d on CPU %d not for me\n", irq,
1494 raw_smp_processor_id());
1495 return IRQ_NONE;
1496 }
1497 efx->last_irq_cpu = raw_smp_processor_id();
1498 EFX_TRACE(efx, "IRQ %d on CPU %d status " EFX_OWORD_FMT "\n",
1499 irq, raw_smp_processor_id(), EFX_OWORD_VAL(*int_ker));
1500
1501 /* Check to see if we have a serious error condition */
Ben Hutchings3e6c4532009-10-23 08:30:36 +00001502 syserr = EFX_OWORD_FIELD(*int_ker, FSF_AZ_NET_IVEC_FATAL_INT);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001503 if (unlikely(syserr))
1504 return falcon_fatal_interrupt(efx);
1505
1506 /* Determine interrupting queues, clear interrupt status
1507 * register and acknowledge the device interrupt.
1508 */
1509 BUILD_BUG_ON(INT_EVQS_WIDTH > EFX_MAX_CHANNELS);
1510 queues = EFX_OWORD_FIELD(*int_ker, INT_EVQS);
1511 EFX_ZERO_OWORD(*int_ker);
1512 wmb(); /* Ensure the vector is cleared before interrupt ack */
1513 falcon_irq_ack_a1(efx);
1514
1515 /* Schedule processing of any interrupting queues */
1516 channel = &efx->channel[0];
1517 while (queues) {
1518 if (queues & 0x01)
1519 efx_schedule_channel(channel);
1520 channel++;
1521 queues >>= 1;
1522 }
1523
1524 return IRQ_HANDLED;
1525}
1526
1527/* Handle an MSI interrupt from Falcon
1528 *
1529 * Handle an MSI hardware interrupt. This routine schedules event
1530 * queue processing. No interrupt acknowledgement cycle is necessary.
1531 * Also, we never need to check that the interrupt is for us, since
1532 * MSI interrupts cannot be shared.
1533 */
1534static irqreturn_t falcon_msi_interrupt(int irq, void *dev_id)
1535{
Ben Hutchingsd3208b52008-05-16 21:20:00 +01001536 struct efx_channel *channel = dev_id;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001537 struct efx_nic *efx = channel->efx;
Ben Hutchingsd3208b52008-05-16 21:20:00 +01001538 efx_oword_t *int_ker = efx->irq_status.addr;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001539 int syserr;
1540
1541 efx->last_irq_cpu = raw_smp_processor_id();
1542 EFX_TRACE(efx, "IRQ %d on CPU %d status " EFX_OWORD_FMT "\n",
1543 irq, raw_smp_processor_id(), EFX_OWORD_VAL(*int_ker));
1544
1545 /* Check to see if we have a serious error condition */
1546 syserr = EFX_OWORD_FIELD(*int_ker, FATAL_INT);
1547 if (unlikely(syserr))
1548 return falcon_fatal_interrupt(efx);
1549
1550 /* Schedule processing of the channel */
1551 efx_schedule_channel(channel);
1552
1553 return IRQ_HANDLED;
1554}
1555
1556
1557/* Setup RSS indirection table.
1558 * This maps from the hash value of the packet to RXQ
1559 */
1560static void falcon_setup_rss_indir_table(struct efx_nic *efx)
1561{
1562 int i = 0;
1563 unsigned long offset;
1564 efx_dword_t dword;
1565
Ben Hutchings55668612008-05-16 21:16:10 +01001566 if (falcon_rev(efx) < FALCON_REV_B0)
Ben Hutchings8ceee662008-04-27 12:55:59 +01001567 return;
1568
Ben Hutchings3e6c4532009-10-23 08:30:36 +00001569 for (offset = FR_BZ_RX_INDIRECTION_TBL;
1570 offset < FR_BZ_RX_INDIRECTION_TBL + 0x800;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001571 offset += 0x10) {
Ben Hutchings3e6c4532009-10-23 08:30:36 +00001572 EFX_POPULATE_DWORD_1(dword, FRF_BZ_IT_QUEUE,
Ben Hutchings8831da72008-09-01 12:47:48 +01001573 i % efx->n_rx_queues);
Ben Hutchings12d00ca2009-10-23 08:30:46 +00001574 efx_writed(efx, &dword, offset);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001575 i++;
1576 }
1577}
1578
1579/* Hook interrupt handler(s)
1580 * Try MSI and then legacy interrupts.
1581 */
1582int falcon_init_interrupt(struct efx_nic *efx)
1583{
1584 struct efx_channel *channel;
1585 int rc;
1586
1587 if (!EFX_INT_MODE_USE_MSI(efx)) {
1588 irq_handler_t handler;
Ben Hutchings55668612008-05-16 21:16:10 +01001589 if (falcon_rev(efx) >= FALCON_REV_B0)
Ben Hutchings8ceee662008-04-27 12:55:59 +01001590 handler = falcon_legacy_interrupt_b0;
1591 else
1592 handler = falcon_legacy_interrupt_a1;
1593
1594 rc = request_irq(efx->legacy_irq, handler, IRQF_SHARED,
1595 efx->name, efx);
1596 if (rc) {
1597 EFX_ERR(efx, "failed to hook legacy IRQ %d\n",
1598 efx->pci_dev->irq);
1599 goto fail1;
1600 }
1601 return 0;
1602 }
1603
1604 /* Hook MSI or MSI-X interrupt */
Ben Hutchings64ee3122008-09-01 12:47:38 +01001605 efx_for_each_channel(channel, efx) {
Ben Hutchings8ceee662008-04-27 12:55:59 +01001606 rc = request_irq(channel->irq, falcon_msi_interrupt,
1607 IRQF_PROBE_SHARED, /* Not shared */
Ben Hutchings56536e92008-12-12 21:37:02 -08001608 channel->name, channel);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001609 if (rc) {
1610 EFX_ERR(efx, "failed to hook IRQ %d\n", channel->irq);
1611 goto fail2;
1612 }
1613 }
1614
1615 return 0;
1616
1617 fail2:
Ben Hutchings64ee3122008-09-01 12:47:38 +01001618 efx_for_each_channel(channel, efx)
Ben Hutchings8ceee662008-04-27 12:55:59 +01001619 free_irq(channel->irq, channel);
1620 fail1:
1621 return rc;
1622}
1623
1624void falcon_fini_interrupt(struct efx_nic *efx)
1625{
1626 struct efx_channel *channel;
1627 efx_oword_t reg;
1628
1629 /* Disable MSI/MSI-X interrupts */
Ben Hutchings64ee3122008-09-01 12:47:38 +01001630 efx_for_each_channel(channel, efx) {
Ben Hutchings8ceee662008-04-27 12:55:59 +01001631 if (channel->irq)
1632 free_irq(channel->irq, channel);
Ben Hutchingsb3475642008-05-16 21:15:49 +01001633 }
Ben Hutchings8ceee662008-04-27 12:55:59 +01001634
1635 /* ACK legacy interrupt */
Ben Hutchings55668612008-05-16 21:16:10 +01001636 if (falcon_rev(efx) >= FALCON_REV_B0)
Ben Hutchings12d00ca2009-10-23 08:30:46 +00001637 efx_reado(efx, &reg, FR_BZ_INT_ISR0);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001638 else
1639 falcon_irq_ack_a1(efx);
1640
1641 /* Disable legacy interrupt */
1642 if (efx->legacy_irq)
1643 free_irq(efx->legacy_irq, efx);
1644}
1645
1646/**************************************************************************
1647 *
1648 * EEPROM/flash
1649 *
1650 **************************************************************************
1651 */
1652
Ben Hutchings23d30f02008-12-12 21:56:11 -08001653#define FALCON_SPI_MAX_LEN sizeof(efx_oword_t)
Ben Hutchings8ceee662008-04-27 12:55:59 +01001654
Ben Hutchingsbe4ea892008-12-12 21:33:50 -08001655static int falcon_spi_poll(struct efx_nic *efx)
1656{
1657 efx_oword_t reg;
Ben Hutchings12d00ca2009-10-23 08:30:46 +00001658 efx_reado(efx, &reg, FR_AB_EE_SPI_HCMD);
Ben Hutchings3e6c4532009-10-23 08:30:36 +00001659 return EFX_OWORD_FIELD(reg, FRF_AB_EE_SPI_HCMD_CMD_EN) ? -EBUSY : 0;
Ben Hutchingsbe4ea892008-12-12 21:33:50 -08001660}
1661
Ben Hutchings8ceee662008-04-27 12:55:59 +01001662/* Wait for SPI command completion */
1663static int falcon_spi_wait(struct efx_nic *efx)
1664{
Ben Hutchingsbe4ea892008-12-12 21:33:50 -08001665 /* Most commands will finish quickly, so we start polling at
1666 * very short intervals. Sometimes the command may have to
1667 * wait for VPD or expansion ROM access outside of our
1668 * control, so we allow up to 100 ms. */
1669 unsigned long timeout = jiffies + 1 + DIV_ROUND_UP(HZ, 10);
1670 int i;
1671
1672 for (i = 0; i < 10; i++) {
1673 if (!falcon_spi_poll(efx))
1674 return 0;
1675 udelay(10);
1676 }
Ben Hutchings8ceee662008-04-27 12:55:59 +01001677
Ben Hutchings4a5b5042008-09-01 12:47:16 +01001678 for (;;) {
Ben Hutchingsbe4ea892008-12-12 21:33:50 -08001679 if (!falcon_spi_poll(efx))
Ben Hutchings8ceee662008-04-27 12:55:59 +01001680 return 0;
Ben Hutchings4a5b5042008-09-01 12:47:16 +01001681 if (time_after_eq(jiffies, timeout)) {
1682 EFX_ERR(efx, "timed out waiting for SPI\n");
1683 return -ETIMEDOUT;
1684 }
Ben Hutchingsbe4ea892008-12-12 21:33:50 -08001685 schedule_timeout_uninterruptible(1);
Ben Hutchings4a5b5042008-09-01 12:47:16 +01001686 }
Ben Hutchings8ceee662008-04-27 12:55:59 +01001687}
1688
Ben Hutchingsf4150722008-11-04 20:34:28 +00001689int falcon_spi_cmd(const struct efx_spi_device *spi,
1690 unsigned int command, int address,
Ben Hutchings23d30f02008-12-12 21:56:11 -08001691 const void *in, void *out, size_t len)
Ben Hutchings8ceee662008-04-27 12:55:59 +01001692{
Ben Hutchings4a5b5042008-09-01 12:47:16 +01001693 struct efx_nic *efx = spi->efx;
1694 bool addressed = (address >= 0);
1695 bool reading = (out != NULL);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001696 efx_oword_t reg;
1697 int rc;
1698
Ben Hutchings4a5b5042008-09-01 12:47:16 +01001699 /* Input validation */
1700 if (len > FALCON_SPI_MAX_LEN)
1701 return -EINVAL;
Ben Hutchingsf4150722008-11-04 20:34:28 +00001702 BUG_ON(!mutex_is_locked(&efx->spi_lock));
Ben Hutchings8ceee662008-04-27 12:55:59 +01001703
Ben Hutchingsbe4ea892008-12-12 21:33:50 -08001704 /* Check that previous command is not still running */
1705 rc = falcon_spi_poll(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001706 if (rc)
1707 return rc;
1708
Ben Hutchings4a5b5042008-09-01 12:47:16 +01001709 /* Program address register, if we have an address */
1710 if (addressed) {
Ben Hutchings3e6c4532009-10-23 08:30:36 +00001711 EFX_POPULATE_OWORD_1(reg, FRF_AB_EE_SPI_HADR_ADR, address);
Ben Hutchings12d00ca2009-10-23 08:30:46 +00001712 efx_writeo(efx, &reg, FR_AB_EE_SPI_HADR);
Ben Hutchings4a5b5042008-09-01 12:47:16 +01001713 }
Ben Hutchings8ceee662008-04-27 12:55:59 +01001714
Ben Hutchings4a5b5042008-09-01 12:47:16 +01001715 /* Program data register, if we have data */
1716 if (in != NULL) {
1717 memcpy(&reg, in, len);
Ben Hutchings12d00ca2009-10-23 08:30:46 +00001718 efx_writeo(efx, &reg, FR_AB_EE_SPI_HDATA);
Ben Hutchings4a5b5042008-09-01 12:47:16 +01001719 }
1720
1721 /* Issue read/write command */
Ben Hutchings8ceee662008-04-27 12:55:59 +01001722 EFX_POPULATE_OWORD_7(reg,
Ben Hutchings3e6c4532009-10-23 08:30:36 +00001723 FRF_AB_EE_SPI_HCMD_CMD_EN, 1,
1724 FRF_AB_EE_SPI_HCMD_SF_SEL, spi->device_id,
1725 FRF_AB_EE_SPI_HCMD_DABCNT, len,
1726 FRF_AB_EE_SPI_HCMD_READ, reading,
1727 FRF_AB_EE_SPI_HCMD_DUBCNT, 0,
1728 FRF_AB_EE_SPI_HCMD_ADBCNT,
Ben Hutchings4a5b5042008-09-01 12:47:16 +01001729 (addressed ? spi->addr_len : 0),
Ben Hutchings3e6c4532009-10-23 08:30:36 +00001730 FRF_AB_EE_SPI_HCMD_ENC, command);
Ben Hutchings12d00ca2009-10-23 08:30:46 +00001731 efx_writeo(efx, &reg, FR_AB_EE_SPI_HCMD);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001732
Ben Hutchings4a5b5042008-09-01 12:47:16 +01001733 /* Wait for read/write to complete */
Ben Hutchings8ceee662008-04-27 12:55:59 +01001734 rc = falcon_spi_wait(efx);
1735 if (rc)
1736 return rc;
1737
1738 /* Read data */
Ben Hutchings4a5b5042008-09-01 12:47:16 +01001739 if (out != NULL) {
Ben Hutchings12d00ca2009-10-23 08:30:46 +00001740 efx_reado(efx, &reg, FR_AB_EE_SPI_HDATA);
Ben Hutchings4a5b5042008-09-01 12:47:16 +01001741 memcpy(out, &reg, len);
1742 }
1743
Ben Hutchings8ceee662008-04-27 12:55:59 +01001744 return 0;
1745}
1746
Ben Hutchings23d30f02008-12-12 21:56:11 -08001747static size_t
1748falcon_spi_write_limit(const struct efx_spi_device *spi, size_t start)
Ben Hutchings4a5b5042008-09-01 12:47:16 +01001749{
1750 return min(FALCON_SPI_MAX_LEN,
1751 (spi->block_size - (start & (spi->block_size - 1))));
1752}
1753
1754static inline u8
1755efx_spi_munge_command(const struct efx_spi_device *spi,
1756 const u8 command, const unsigned int address)
1757{
1758 return command | (((address >> 8) & spi->munge_address) << 3);
1759}
1760
Ben Hutchingsbe4ea892008-12-12 21:33:50 -08001761/* Wait up to 10 ms for buffered write completion */
1762int falcon_spi_wait_write(const struct efx_spi_device *spi)
Ben Hutchings4a5b5042008-09-01 12:47:16 +01001763{
Ben Hutchingsbe4ea892008-12-12 21:33:50 -08001764 struct efx_nic *efx = spi->efx;
1765 unsigned long timeout = jiffies + 1 + DIV_ROUND_UP(HZ, 100);
Ben Hutchings4a5b5042008-09-01 12:47:16 +01001766 u8 status;
Ben Hutchingsbe4ea892008-12-12 21:33:50 -08001767 int rc;
Ben Hutchings4a5b5042008-09-01 12:47:16 +01001768
Ben Hutchingsbe4ea892008-12-12 21:33:50 -08001769 for (;;) {
Ben Hutchings4a5b5042008-09-01 12:47:16 +01001770 rc = falcon_spi_cmd(spi, SPI_RDSR, -1, NULL,
1771 &status, sizeof(status));
1772 if (rc)
1773 return rc;
1774 if (!(status & SPI_STATUS_NRDY))
1775 return 0;
Ben Hutchingsbe4ea892008-12-12 21:33:50 -08001776 if (time_after_eq(jiffies, timeout)) {
1777 EFX_ERR(efx, "SPI write timeout on device %d"
1778 " last status=0x%02x\n",
1779 spi->device_id, status);
1780 return -ETIMEDOUT;
1781 }
1782 schedule_timeout_uninterruptible(1);
Ben Hutchings4a5b5042008-09-01 12:47:16 +01001783 }
Ben Hutchings4a5b5042008-09-01 12:47:16 +01001784}
1785
1786int falcon_spi_read(const struct efx_spi_device *spi, loff_t start,
1787 size_t len, size_t *retlen, u8 *buffer)
1788{
Ben Hutchings23d30f02008-12-12 21:56:11 -08001789 size_t block_len, pos = 0;
1790 unsigned int command;
Ben Hutchings4a5b5042008-09-01 12:47:16 +01001791 int rc = 0;
1792
1793 while (pos < len) {
Ben Hutchings23d30f02008-12-12 21:56:11 -08001794 block_len = min(len - pos, FALCON_SPI_MAX_LEN);
Ben Hutchings4a5b5042008-09-01 12:47:16 +01001795
1796 command = efx_spi_munge_command(spi, SPI_READ, start + pos);
1797 rc = falcon_spi_cmd(spi, command, start + pos, NULL,
1798 buffer + pos, block_len);
1799 if (rc)
1800 break;
1801 pos += block_len;
1802
1803 /* Avoid locking up the system */
1804 cond_resched();
1805 if (signal_pending(current)) {
1806 rc = -EINTR;
1807 break;
1808 }
1809 }
1810
1811 if (retlen)
1812 *retlen = pos;
1813 return rc;
1814}
1815
1816int falcon_spi_write(const struct efx_spi_device *spi, loff_t start,
1817 size_t len, size_t *retlen, const u8 *buffer)
1818{
1819 u8 verify_buffer[FALCON_SPI_MAX_LEN];
Ben Hutchings23d30f02008-12-12 21:56:11 -08001820 size_t block_len, pos = 0;
1821 unsigned int command;
Ben Hutchings4a5b5042008-09-01 12:47:16 +01001822 int rc = 0;
1823
1824 while (pos < len) {
1825 rc = falcon_spi_cmd(spi, SPI_WREN, -1, NULL, NULL, 0);
1826 if (rc)
1827 break;
1828
Ben Hutchings23d30f02008-12-12 21:56:11 -08001829 block_len = min(len - pos,
Ben Hutchings4a5b5042008-09-01 12:47:16 +01001830 falcon_spi_write_limit(spi, start + pos));
1831 command = efx_spi_munge_command(spi, SPI_WRITE, start + pos);
1832 rc = falcon_spi_cmd(spi, command, start + pos,
1833 buffer + pos, NULL, block_len);
1834 if (rc)
1835 break;
1836
Ben Hutchingsbe4ea892008-12-12 21:33:50 -08001837 rc = falcon_spi_wait_write(spi);
Ben Hutchings4a5b5042008-09-01 12:47:16 +01001838 if (rc)
1839 break;
1840
1841 command = efx_spi_munge_command(spi, SPI_READ, start + pos);
1842 rc = falcon_spi_cmd(spi, command, start + pos,
1843 NULL, verify_buffer, block_len);
1844 if (memcmp(verify_buffer, buffer + pos, block_len)) {
1845 rc = -EIO;
1846 break;
1847 }
1848
1849 pos += block_len;
1850
1851 /* Avoid locking up the system */
1852 cond_resched();
1853 if (signal_pending(current)) {
1854 rc = -EINTR;
1855 break;
1856 }
1857 }
1858
1859 if (retlen)
1860 *retlen = pos;
1861 return rc;
1862}
1863
Ben Hutchings8ceee662008-04-27 12:55:59 +01001864/**************************************************************************
1865 *
1866 * MAC wrapper
1867 *
1868 **************************************************************************
1869 */
Ben Hutchings177dfcd2008-12-12 21:50:08 -08001870
1871static int falcon_reset_macs(struct efx_nic *efx)
Ben Hutchings8ceee662008-04-27 12:55:59 +01001872{
Ben Hutchings177dfcd2008-12-12 21:50:08 -08001873 efx_oword_t reg;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001874 int count;
1875
Ben Hutchings177dfcd2008-12-12 21:50:08 -08001876 if (falcon_rev(efx) < FALCON_REV_B0) {
1877 /* It's not safe to use GLB_CTL_REG to reset the
1878 * macs, so instead use the internal MAC resets
1879 */
1880 if (!EFX_IS10G(efx)) {
Ben Hutchings3e6c4532009-10-23 08:30:36 +00001881 EFX_POPULATE_OWORD_1(reg, FRF_AB_GM_SW_RST, 1);
Ben Hutchings12d00ca2009-10-23 08:30:46 +00001882 efx_writeo(efx, &reg, FR_AB_GM_CFG1);
Ben Hutchings177dfcd2008-12-12 21:50:08 -08001883 udelay(1000);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001884
Ben Hutchings3e6c4532009-10-23 08:30:36 +00001885 EFX_POPULATE_OWORD_1(reg, FRF_AB_GM_SW_RST, 0);
Ben Hutchings12d00ca2009-10-23 08:30:46 +00001886 efx_writeo(efx, &reg, FR_AB_GM_CFG1);
Ben Hutchings177dfcd2008-12-12 21:50:08 -08001887 udelay(1000);
1888 return 0;
1889 } else {
Ben Hutchings3e6c4532009-10-23 08:30:36 +00001890 EFX_POPULATE_OWORD_1(reg, FRF_AB_XM_CORE_RST, 1);
Ben Hutchings12d00ca2009-10-23 08:30:46 +00001891 efx_writeo(efx, &reg, FR_AB_XM_GLB_CFG);
Ben Hutchings177dfcd2008-12-12 21:50:08 -08001892
1893 for (count = 0; count < 10000; count++) {
Ben Hutchings12d00ca2009-10-23 08:30:46 +00001894 efx_reado(efx, &reg, FR_AB_XM_GLB_CFG);
Ben Hutchings3e6c4532009-10-23 08:30:36 +00001895 if (EFX_OWORD_FIELD(reg, FRF_AB_XM_CORE_RST) ==
1896 0)
Ben Hutchings177dfcd2008-12-12 21:50:08 -08001897 return 0;
1898 udelay(10);
1899 }
1900
1901 EFX_ERR(efx, "timed out waiting for XMAC core reset\n");
1902 return -ETIMEDOUT;
1903 }
1904 }
Ben Hutchings8ceee662008-04-27 12:55:59 +01001905
1906 /* MAC stats will fail whilst the TX fifo is draining. Serialise
1907 * the drain sequence with the statistics fetch */
Ben Hutchings1974cc22009-01-29 18:00:07 +00001908 efx_stats_disable(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001909
Ben Hutchings12d00ca2009-10-23 08:30:46 +00001910 efx_reado(efx, &reg, FR_AB_MAC_CTRL);
Ben Hutchings3e6c4532009-10-23 08:30:36 +00001911 EFX_SET_OWORD_FIELD(reg, FRF_BB_TXFIFO_DRAIN_EN, 1);
Ben Hutchings12d00ca2009-10-23 08:30:46 +00001912 efx_writeo(efx, &reg, FR_AB_MAC_CTRL);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001913
Ben Hutchings12d00ca2009-10-23 08:30:46 +00001914 efx_reado(efx, &reg, FR_AB_GLB_CTL);
Ben Hutchings3e6c4532009-10-23 08:30:36 +00001915 EFX_SET_OWORD_FIELD(reg, FRF_AB_RST_XGTX, 1);
1916 EFX_SET_OWORD_FIELD(reg, FRF_AB_RST_XGRX, 1);
1917 EFX_SET_OWORD_FIELD(reg, FRF_AB_RST_EM, 1);
Ben Hutchings12d00ca2009-10-23 08:30:46 +00001918 efx_writeo(efx, &reg, FR_AB_GLB_CTL);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001919
1920 count = 0;
1921 while (1) {
Ben Hutchings12d00ca2009-10-23 08:30:46 +00001922 efx_reado(efx, &reg, FR_AB_GLB_CTL);
Ben Hutchings3e6c4532009-10-23 08:30:36 +00001923 if (!EFX_OWORD_FIELD(reg, FRF_AB_RST_XGTX) &&
1924 !EFX_OWORD_FIELD(reg, FRF_AB_RST_XGRX) &&
1925 !EFX_OWORD_FIELD(reg, FRF_AB_RST_EM)) {
Ben Hutchings8ceee662008-04-27 12:55:59 +01001926 EFX_LOG(efx, "Completed MAC reset after %d loops\n",
1927 count);
1928 break;
1929 }
1930 if (count > 20) {
1931 EFX_ERR(efx, "MAC reset failed\n");
1932 break;
1933 }
1934 count++;
1935 udelay(10);
1936 }
1937
Ben Hutchings1974cc22009-01-29 18:00:07 +00001938 efx_stats_enable(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001939
1940 /* If we've reset the EM block and the link is up, then
1941 * we'll have to kick the XAUI link so the PHY can recover */
Ben Hutchings177dfcd2008-12-12 21:50:08 -08001942 if (efx->link_up && EFX_IS10G(efx) && EFX_WORKAROUND_5147(efx))
Ben Hutchings8ceee662008-04-27 12:55:59 +01001943 falcon_reset_xaui(efx);
Ben Hutchings177dfcd2008-12-12 21:50:08 -08001944
1945 return 0;
1946}
1947
1948void falcon_drain_tx_fifo(struct efx_nic *efx)
1949{
1950 efx_oword_t reg;
1951
1952 if ((falcon_rev(efx) < FALCON_REV_B0) ||
1953 (efx->loopback_mode != LOOPBACK_NONE))
1954 return;
1955
Ben Hutchings12d00ca2009-10-23 08:30:46 +00001956 efx_reado(efx, &reg, FR_AB_MAC_CTRL);
Ben Hutchings177dfcd2008-12-12 21:50:08 -08001957 /* There is no point in draining more than once */
Ben Hutchings3e6c4532009-10-23 08:30:36 +00001958 if (EFX_OWORD_FIELD(reg, FRF_BB_TXFIFO_DRAIN_EN))
Ben Hutchings177dfcd2008-12-12 21:50:08 -08001959 return;
1960
1961 falcon_reset_macs(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001962}
1963
1964void falcon_deconfigure_mac_wrapper(struct efx_nic *efx)
1965{
Ben Hutchings177dfcd2008-12-12 21:50:08 -08001966 efx_oword_t reg;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001967
Ben Hutchings55668612008-05-16 21:16:10 +01001968 if (falcon_rev(efx) < FALCON_REV_B0)
Ben Hutchings8ceee662008-04-27 12:55:59 +01001969 return;
1970
1971 /* Isolate the MAC -> RX */
Ben Hutchings12d00ca2009-10-23 08:30:46 +00001972 efx_reado(efx, &reg, FR_AZ_RX_CFG);
Ben Hutchings3e6c4532009-10-23 08:30:36 +00001973 EFX_SET_OWORD_FIELD(reg, FRF_BZ_RX_INGR_EN, 0);
Ben Hutchings12d00ca2009-10-23 08:30:46 +00001974 efx_writeo(efx, &reg, FR_AZ_RX_CFG);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001975
1976 if (!efx->link_up)
1977 falcon_drain_tx_fifo(efx);
1978}
1979
1980void falcon_reconfigure_mac_wrapper(struct efx_nic *efx)
1981{
1982 efx_oword_t reg;
1983 int link_speed;
Ben Hutchingsdc8cfa52008-09-01 12:46:50 +01001984 bool tx_fc;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001985
Ben Hutchingsf31a45d2008-12-12 21:43:33 -08001986 switch (efx->link_speed) {
1987 case 10000: link_speed = 3; break;
1988 case 1000: link_speed = 2; break;
1989 case 100: link_speed = 1; break;
1990 default: link_speed = 0; break;
1991 }
Ben Hutchings8ceee662008-04-27 12:55:59 +01001992 /* MAC_LINK_STATUS controls MAC backpressure but doesn't work
1993 * as advertised. Disable to ensure packets are not
1994 * indefinitely held and TX queue can be flushed at any point
1995 * while the link is down. */
1996 EFX_POPULATE_OWORD_5(reg,
Ben Hutchings3e6c4532009-10-23 08:30:36 +00001997 FRF_AB_MAC_XOFF_VAL, 0xffff /* max pause time */,
1998 FRF_AB_MAC_BCAD_ACPT, 1,
1999 FRF_AB_MAC_UC_PROM, efx->promiscuous,
2000 FRF_AB_MAC_LINK_STATUS, 1, /* always set */
2001 FRF_AB_MAC_SPEED, link_speed);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002002 /* On B0, MAC backpressure can be disabled and packets get
2003 * discarded. */
Ben Hutchings55668612008-05-16 21:16:10 +01002004 if (falcon_rev(efx) >= FALCON_REV_B0) {
Ben Hutchings3e6c4532009-10-23 08:30:36 +00002005 EFX_SET_OWORD_FIELD(reg, FRF_BB_TXFIFO_DRAIN_EN,
Ben Hutchings8ceee662008-04-27 12:55:59 +01002006 !efx->link_up);
2007 }
2008
Ben Hutchings12d00ca2009-10-23 08:30:46 +00002009 efx_writeo(efx, &reg, FR_AB_MAC_CTRL);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002010
2011 /* Restore the multicast hash registers. */
2012 falcon_set_multicast_hash(efx);
2013
2014 /* Transmission of pause frames when RX crosses the threshold is
2015 * covered by RX_XOFF_MAC_EN and XM_TX_CFG_REG:XM_FCNTL.
2016 * Action on receipt of pause frames is controller by XM_DIS_FCNTL */
Ben Hutchings04cc8ca2008-12-12 21:50:46 -08002017 tx_fc = !!(efx->link_fc & EFX_FC_TX);
Ben Hutchings12d00ca2009-10-23 08:30:46 +00002018 efx_reado(efx, &reg, FR_AZ_RX_CFG);
Ben Hutchings3e6c4532009-10-23 08:30:36 +00002019 EFX_SET_OWORD_FIELD(reg, FRF_AZ_RX_XOFF_MAC_EN, tx_fc);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002020
2021 /* Unisolate the MAC -> RX */
Ben Hutchings55668612008-05-16 21:16:10 +01002022 if (falcon_rev(efx) >= FALCON_REV_B0)
Ben Hutchings3e6c4532009-10-23 08:30:36 +00002023 EFX_SET_OWORD_FIELD(reg, FRF_BZ_RX_INGR_EN, 1);
Ben Hutchings12d00ca2009-10-23 08:30:46 +00002024 efx_writeo(efx, &reg, FR_AZ_RX_CFG);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002025}
2026
2027int falcon_dma_stats(struct efx_nic *efx, unsigned int done_offset)
2028{
2029 efx_oword_t reg;
2030 u32 *dma_done;
2031 int i;
2032
2033 if (disable_dma_stats)
2034 return 0;
2035
2036 /* Statistics fetch will fail if the MAC is in TX drain */
Ben Hutchings55668612008-05-16 21:16:10 +01002037 if (falcon_rev(efx) >= FALCON_REV_B0) {
Ben Hutchings8ceee662008-04-27 12:55:59 +01002038 efx_oword_t temp;
Ben Hutchings12d00ca2009-10-23 08:30:46 +00002039 efx_reado(efx, &temp, FR_AB_MAC_CTRL);
Ben Hutchings3e6c4532009-10-23 08:30:36 +00002040 if (EFX_OWORD_FIELD(temp, FRF_BB_TXFIFO_DRAIN_EN))
Ben Hutchings8ceee662008-04-27 12:55:59 +01002041 return 0;
2042 }
2043
2044 dma_done = (efx->stats_buffer.addr + done_offset);
2045 *dma_done = FALCON_STATS_NOT_DONE;
2046 wmb(); /* ensure done flag is clear */
2047
2048 /* Initiate DMA transfer of stats */
2049 EFX_POPULATE_OWORD_2(reg,
Ben Hutchings3e6c4532009-10-23 08:30:36 +00002050 FRF_AB_MAC_STAT_DMA_CMD, 1,
2051 FRF_AB_MAC_STAT_DMA_ADR,
Ben Hutchings8ceee662008-04-27 12:55:59 +01002052 efx->stats_buffer.dma_addr);
Ben Hutchings12d00ca2009-10-23 08:30:46 +00002053 efx_writeo(efx, &reg, FR_AB_MAC_STAT_DMA);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002054
2055 /* Wait for transfer to complete */
2056 for (i = 0; i < 400; i++) {
Ben Hutchings1d0680f2008-09-01 12:50:08 +01002057 if (*(volatile u32 *)dma_done == FALCON_STATS_DONE) {
2058 rmb(); /* Ensure the stats are valid. */
Ben Hutchings8ceee662008-04-27 12:55:59 +01002059 return 0;
Ben Hutchings1d0680f2008-09-01 12:50:08 +01002060 }
Ben Hutchings8ceee662008-04-27 12:55:59 +01002061 udelay(10);
2062 }
2063
2064 EFX_ERR(efx, "timed out waiting for statistics\n");
2065 return -ETIMEDOUT;
2066}
2067
2068/**************************************************************************
2069 *
2070 * PHY access via GMII
2071 *
2072 **************************************************************************
2073 */
2074
Ben Hutchings8ceee662008-04-27 12:55:59 +01002075/* Wait for GMII access to complete */
2076static int falcon_gmii_wait(struct efx_nic *efx)
2077{
2078 efx_dword_t md_stat;
2079 int count;
2080
Ben Hutchings177dfcd2008-12-12 21:50:08 -08002081 /* wait upto 50ms - taken max from datasheet */
2082 for (count = 0; count < 5000; count++) {
Ben Hutchings12d00ca2009-10-23 08:30:46 +00002083 efx_readd(efx, &md_stat, FR_AB_MD_STAT);
Ben Hutchings3e6c4532009-10-23 08:30:36 +00002084 if (EFX_DWORD_FIELD(md_stat, FRF_AB_MD_BSY) == 0) {
2085 if (EFX_DWORD_FIELD(md_stat, FRF_AB_MD_LNFL) != 0 ||
2086 EFX_DWORD_FIELD(md_stat, FRF_AB_MD_BSERR) != 0) {
Ben Hutchings8ceee662008-04-27 12:55:59 +01002087 EFX_ERR(efx, "error from GMII access "
2088 EFX_DWORD_FMT"\n",
2089 EFX_DWORD_VAL(md_stat));
2090 return -EIO;
2091 }
2092 return 0;
2093 }
2094 udelay(10);
2095 }
2096 EFX_ERR(efx, "timed out waiting for GMII\n");
2097 return -ETIMEDOUT;
2098}
2099
Ben Hutchings68e7f452009-04-29 08:05:08 +00002100/* Write an MDIO register of a PHY connected to Falcon. */
2101static int falcon_mdio_write(struct net_device *net_dev,
2102 int prtad, int devad, u16 addr, u16 value)
Ben Hutchings8ceee662008-04-27 12:55:59 +01002103{
Ben Hutchings767e4682008-09-01 12:43:14 +01002104 struct efx_nic *efx = netdev_priv(net_dev);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002105 efx_oword_t reg;
Ben Hutchings68e7f452009-04-29 08:05:08 +00002106 int rc;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002107
Ben Hutchings68e7f452009-04-29 08:05:08 +00002108 EFX_REGDUMP(efx, "writing MDIO %d register %d.%d with 0x%04x\n",
2109 prtad, devad, addr, value);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002110
2111 spin_lock_bh(&efx->phy_lock);
2112
Ben Hutchings68e7f452009-04-29 08:05:08 +00002113 /* Check MDIO not currently being accessed */
2114 rc = falcon_gmii_wait(efx);
2115 if (rc)
Ben Hutchings8ceee662008-04-27 12:55:59 +01002116 goto out;
2117
2118 /* Write the address/ID register */
Ben Hutchings3e6c4532009-10-23 08:30:36 +00002119 EFX_POPULATE_OWORD_1(reg, FRF_AB_MD_PHY_ADR, addr);
Ben Hutchings12d00ca2009-10-23 08:30:46 +00002120 efx_writeo(efx, &reg, FR_AB_MD_PHY_ADR);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002121
Ben Hutchings3e6c4532009-10-23 08:30:36 +00002122 EFX_POPULATE_OWORD_2(reg, FRF_AB_MD_PRT_ADR, prtad,
2123 FRF_AB_MD_DEV_ADR, devad);
Ben Hutchings12d00ca2009-10-23 08:30:46 +00002124 efx_writeo(efx, &reg, FR_AB_MD_ID);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002125
2126 /* Write data */
Ben Hutchings3e6c4532009-10-23 08:30:36 +00002127 EFX_POPULATE_OWORD_1(reg, FRF_AB_MD_TXD, value);
Ben Hutchings12d00ca2009-10-23 08:30:46 +00002128 efx_writeo(efx, &reg, FR_AB_MD_TXD);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002129
2130 EFX_POPULATE_OWORD_2(reg,
Ben Hutchings3e6c4532009-10-23 08:30:36 +00002131 FRF_AB_MD_WRC, 1,
2132 FRF_AB_MD_GC, 0);
Ben Hutchings12d00ca2009-10-23 08:30:46 +00002133 efx_writeo(efx, &reg, FR_AB_MD_CS);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002134
2135 /* Wait for data to be written */
Ben Hutchings68e7f452009-04-29 08:05:08 +00002136 rc = falcon_gmii_wait(efx);
2137 if (rc) {
Ben Hutchings8ceee662008-04-27 12:55:59 +01002138 /* Abort the write operation */
2139 EFX_POPULATE_OWORD_2(reg,
Ben Hutchings3e6c4532009-10-23 08:30:36 +00002140 FRF_AB_MD_WRC, 0,
2141 FRF_AB_MD_GC, 1);
Ben Hutchings12d00ca2009-10-23 08:30:46 +00002142 efx_writeo(efx, &reg, FR_AB_MD_CS);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002143 udelay(10);
2144 }
2145
2146 out:
2147 spin_unlock_bh(&efx->phy_lock);
Ben Hutchings68e7f452009-04-29 08:05:08 +00002148 return rc;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002149}
2150
Ben Hutchings68e7f452009-04-29 08:05:08 +00002151/* Read an MDIO register of a PHY connected to Falcon. */
2152static int falcon_mdio_read(struct net_device *net_dev,
2153 int prtad, int devad, u16 addr)
Ben Hutchings8ceee662008-04-27 12:55:59 +01002154{
Ben Hutchings767e4682008-09-01 12:43:14 +01002155 struct efx_nic *efx = netdev_priv(net_dev);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002156 efx_oword_t reg;
Ben Hutchings68e7f452009-04-29 08:05:08 +00002157 int rc;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002158
2159 spin_lock_bh(&efx->phy_lock);
2160
Ben Hutchings68e7f452009-04-29 08:05:08 +00002161 /* Check MDIO not currently being accessed */
2162 rc = falcon_gmii_wait(efx);
2163 if (rc)
Ben Hutchings8ceee662008-04-27 12:55:59 +01002164 goto out;
2165
Ben Hutchings3e6c4532009-10-23 08:30:36 +00002166 EFX_POPULATE_OWORD_1(reg, FRF_AB_MD_PHY_ADR, addr);
Ben Hutchings12d00ca2009-10-23 08:30:46 +00002167 efx_writeo(efx, &reg, FR_AB_MD_PHY_ADR);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002168
Ben Hutchings3e6c4532009-10-23 08:30:36 +00002169 EFX_POPULATE_OWORD_2(reg, FRF_AB_MD_PRT_ADR, prtad,
2170 FRF_AB_MD_DEV_ADR, devad);
Ben Hutchings12d00ca2009-10-23 08:30:46 +00002171 efx_writeo(efx, &reg, FR_AB_MD_ID);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002172
2173 /* Request data to be read */
Ben Hutchings3e6c4532009-10-23 08:30:36 +00002174 EFX_POPULATE_OWORD_2(reg, FRF_AB_MD_RDC, 1, FRF_AB_MD_GC, 0);
Ben Hutchings12d00ca2009-10-23 08:30:46 +00002175 efx_writeo(efx, &reg, FR_AB_MD_CS);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002176
2177 /* Wait for data to become available */
Ben Hutchings68e7f452009-04-29 08:05:08 +00002178 rc = falcon_gmii_wait(efx);
2179 if (rc == 0) {
Ben Hutchings12d00ca2009-10-23 08:30:46 +00002180 efx_reado(efx, &reg, FR_AB_MD_RXD);
Ben Hutchings3e6c4532009-10-23 08:30:36 +00002181 rc = EFX_OWORD_FIELD(reg, FRF_AB_MD_RXD);
Ben Hutchings68e7f452009-04-29 08:05:08 +00002182 EFX_REGDUMP(efx, "read from MDIO %d register %d.%d, got %04x\n",
2183 prtad, devad, addr, rc);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002184 } else {
2185 /* Abort the read operation */
2186 EFX_POPULATE_OWORD_2(reg,
Ben Hutchings3e6c4532009-10-23 08:30:36 +00002187 FRF_AB_MD_RIC, 0,
2188 FRF_AB_MD_GC, 1);
Ben Hutchings12d00ca2009-10-23 08:30:46 +00002189 efx_writeo(efx, &reg, FR_AB_MD_CS);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002190
Ben Hutchings68e7f452009-04-29 08:05:08 +00002191 EFX_LOG(efx, "read from MDIO %d register %d.%d, got error %d\n",
2192 prtad, devad, addr, rc);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002193 }
2194
2195 out:
2196 spin_unlock_bh(&efx->phy_lock);
Ben Hutchings68e7f452009-04-29 08:05:08 +00002197 return rc;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002198}
2199
2200static int falcon_probe_phy(struct efx_nic *efx)
2201{
2202 switch (efx->phy_type) {
Ben Hutchingse6fa2eb2008-12-12 22:00:17 -08002203 case PHY_TYPE_SFX7101:
2204 efx->phy_op = &falcon_sfx7101_phy_ops;
2205 break;
2206 case PHY_TYPE_SFT9001A:
2207 case PHY_TYPE_SFT9001B:
2208 efx->phy_op = &falcon_sft9001_phy_ops;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002209 break;
Ben Hutchingsab377352008-12-12 22:06:54 -08002210 case PHY_TYPE_QT2022C2:
Ben Hutchingsd2d2c372009-02-27 13:07:33 +00002211 case PHY_TYPE_QT2025C:
Ben Hutchings8ceee662008-04-27 12:55:59 +01002212 efx->phy_op = &falcon_xfp_phy_ops;
2213 break;
2214 default:
2215 EFX_ERR(efx, "Unknown PHY type %d\n",
2216 efx->phy_type);
2217 return -1;
2218 }
Ben Hutchings3273c2e2008-05-07 13:36:19 +01002219
Ben Hutchings177dfcd2008-12-12 21:50:08 -08002220 if (efx->phy_op->macs & EFX_XMAC)
2221 efx->loopback_modes |= ((1 << LOOPBACK_XGMII) |
2222 (1 << LOOPBACK_XGXS) |
2223 (1 << LOOPBACK_XAUI));
2224 if (efx->phy_op->macs & EFX_GMAC)
2225 efx->loopback_modes |= (1 << LOOPBACK_GMAC);
2226 efx->loopback_modes |= efx->phy_op->loopbacks;
2227
Ben Hutchings8ceee662008-04-27 12:55:59 +01002228 return 0;
2229}
2230
Ben Hutchings177dfcd2008-12-12 21:50:08 -08002231int falcon_switch_mac(struct efx_nic *efx)
2232{
2233 struct efx_mac_operations *old_mac_op = efx->mac_op;
2234 efx_oword_t nic_stat;
2235 unsigned strap_val;
Ben Hutchings1974cc22009-01-29 18:00:07 +00002236 int rc = 0;
2237
2238 /* Don't try to fetch MAC stats while we're switching MACs */
2239 efx_stats_disable(efx);
Ben Hutchings177dfcd2008-12-12 21:50:08 -08002240
2241 /* Internal loopbacks override the phy speed setting */
2242 if (efx->loopback_mode == LOOPBACK_GMAC) {
2243 efx->link_speed = 1000;
2244 efx->link_fd = true;
2245 } else if (LOOPBACK_INTERNAL(efx)) {
2246 efx->link_speed = 10000;
2247 efx->link_fd = true;
2248 }
2249
Steve Hodgson0cc1283872009-01-29 17:49:59 +00002250 WARN_ON(!mutex_is_locked(&efx->mac_lock));
Ben Hutchings177dfcd2008-12-12 21:50:08 -08002251 efx->mac_op = (EFX_IS10G(efx) ?
2252 &falcon_xmac_operations : &falcon_gmac_operations);
Ben Hutchings177dfcd2008-12-12 21:50:08 -08002253
Steve Hodgson0cc1283872009-01-29 17:49:59 +00002254 /* Always push the NIC_STAT_REG setting even if the mac hasn't
2255 * changed, because this function is run post online reset */
Ben Hutchings12d00ca2009-10-23 08:30:46 +00002256 efx_reado(efx, &nic_stat, FR_AB_NIC_STAT);
Ben Hutchings177dfcd2008-12-12 21:50:08 -08002257 strap_val = EFX_IS10G(efx) ? 5 : 3;
2258 if (falcon_rev(efx) >= FALCON_REV_B0) {
Ben Hutchings3e6c4532009-10-23 08:30:36 +00002259 EFX_SET_OWORD_FIELD(nic_stat, FRF_BB_EE_STRAP_EN, 1);
2260 EFX_SET_OWORD_FIELD(nic_stat, FRF_BB_EE_STRAP, strap_val);
Ben Hutchings12d00ca2009-10-23 08:30:46 +00002261 efx_writeo(efx, &nic_stat, FR_AB_NIC_STAT);
Ben Hutchings177dfcd2008-12-12 21:50:08 -08002262 } else {
2263 /* Falcon A1 does not support 1G/10G speed switching
2264 * and must not be used with a PHY that does. */
Ben Hutchings3e6c4532009-10-23 08:30:36 +00002265 BUG_ON(EFX_OWORD_FIELD(nic_stat, FRF_AB_STRAP_PINS) !=
2266 strap_val);
Ben Hutchings177dfcd2008-12-12 21:50:08 -08002267 }
2268
Steve Hodgson0cc1283872009-01-29 17:49:59 +00002269 if (old_mac_op == efx->mac_op)
Ben Hutchings1974cc22009-01-29 18:00:07 +00002270 goto out;
Ben Hutchings177dfcd2008-12-12 21:50:08 -08002271
2272 EFX_LOG(efx, "selected %cMAC\n", EFX_IS10G(efx) ? 'X' : 'G');
Steve Hodgson0cc1283872009-01-29 17:49:59 +00002273 /* Not all macs support a mac-level link state */
2274 efx->mac_up = true;
2275
Ben Hutchings1974cc22009-01-29 18:00:07 +00002276 rc = falcon_reset_macs(efx);
2277out:
2278 efx_stats_enable(efx);
2279 return rc;
Ben Hutchings177dfcd2008-12-12 21:50:08 -08002280}
2281
Ben Hutchings8ceee662008-04-27 12:55:59 +01002282/* This call is responsible for hooking in the MAC and PHY operations */
2283int falcon_probe_port(struct efx_nic *efx)
2284{
2285 int rc;
2286
2287 /* Hook in PHY operations table */
2288 rc = falcon_probe_phy(efx);
2289 if (rc)
2290 return rc;
2291
Ben Hutchings68e7f452009-04-29 08:05:08 +00002292 /* Set up MDIO structure for PHY */
2293 efx->mdio.mmds = efx->phy_op->mmds;
2294 efx->mdio.mode_support = MDIO_SUPPORTS_C45 | MDIO_EMULATE_C22;
2295 efx->mdio.mdio_read = falcon_mdio_read;
2296 efx->mdio.mdio_write = falcon_mdio_write;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002297
2298 /* Hardware flow ctrl. FalconA RX FIFO too small for pause generation */
Ben Hutchings55668612008-05-16 21:16:10 +01002299 if (falcon_rev(efx) >= FALCON_REV_B0)
Ben Hutchings04cc8ca2008-12-12 21:50:46 -08002300 efx->wanted_fc = EFX_FC_RX | EFX_FC_TX;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002301 else
Ben Hutchings04cc8ca2008-12-12 21:50:46 -08002302 efx->wanted_fc = EFX_FC_RX;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002303
2304 /* Allocate buffer for stats */
2305 rc = falcon_alloc_buffer(efx, &efx->stats_buffer,
2306 FALCON_MAC_STATS_SIZE);
2307 if (rc)
2308 return rc;
Jaswinder Singh Rajput9c8976a2009-02-11 23:49:52 +05302309 EFX_LOG(efx, "stats buffer at %llx (virt %p phys %llx)\n",
2310 (u64)efx->stats_buffer.dma_addr,
Ben Hutchings8ceee662008-04-27 12:55:59 +01002311 efx->stats_buffer.addr,
Jaswinder Singh Rajput9c8976a2009-02-11 23:49:52 +05302312 (u64)virt_to_phys(efx->stats_buffer.addr));
Ben Hutchings8ceee662008-04-27 12:55:59 +01002313
2314 return 0;
2315}
2316
2317void falcon_remove_port(struct efx_nic *efx)
2318{
2319 falcon_free_buffer(efx, &efx->stats_buffer);
2320}
2321
2322/**************************************************************************
2323 *
2324 * Multicast filtering
2325 *
2326 **************************************************************************
2327 */
2328
2329void falcon_set_multicast_hash(struct efx_nic *efx)
2330{
2331 union efx_multicast_hash *mc_hash = &efx->multicast_hash;
2332
2333 /* Broadcast packets go through the multicast hash filter.
2334 * ether_crc_le() of the broadcast address is 0xbe2612ff
2335 * so we always add bit 0xff to the mask.
2336 */
2337 set_bit_le(0xff, mc_hash->byte);
2338
Ben Hutchings12d00ca2009-10-23 08:30:46 +00002339 efx_writeo(efx, &mc_hash->oword[0], FR_AB_MAC_MC_HASH_REG0);
2340 efx_writeo(efx, &mc_hash->oword[1], FR_AB_MAC_MC_HASH_REG1);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002341}
2342
Ben Hutchings8c8661e2008-09-01 12:49:02 +01002343
2344/**************************************************************************
2345 *
2346 * Falcon test code
2347 *
2348 **************************************************************************/
2349
2350int falcon_read_nvram(struct efx_nic *efx, struct falcon_nvconfig *nvconfig_out)
2351{
2352 struct falcon_nvconfig *nvconfig;
2353 struct efx_spi_device *spi;
2354 void *region;
2355 int rc, magic_num, struct_ver;
2356 __le16 *word, *limit;
2357 u32 csum;
2358
Ben Hutchings2f7f5732008-12-12 21:34:25 -08002359 spi = efx->spi_flash ? efx->spi_flash : efx->spi_eeprom;
2360 if (!spi)
2361 return -EINVAL;
2362
Ben Hutchings0a95f562008-11-04 20:33:11 +00002363 region = kmalloc(FALCON_NVCONFIG_END, GFP_KERNEL);
Ben Hutchings8c8661e2008-09-01 12:49:02 +01002364 if (!region)
2365 return -ENOMEM;
Ben Hutchings3e6c4532009-10-23 08:30:36 +00002366 nvconfig = region + FALCON_NVCONFIG_OFFSET;
Ben Hutchings8c8661e2008-09-01 12:49:02 +01002367
Ben Hutchingsf4150722008-11-04 20:34:28 +00002368 mutex_lock(&efx->spi_lock);
Ben Hutchings0a95f562008-11-04 20:33:11 +00002369 rc = falcon_spi_read(spi, 0, FALCON_NVCONFIG_END, NULL, region);
Ben Hutchingsf4150722008-11-04 20:34:28 +00002370 mutex_unlock(&efx->spi_lock);
Ben Hutchings8c8661e2008-09-01 12:49:02 +01002371 if (rc) {
2372 EFX_ERR(efx, "Failed to read %s\n",
2373 efx->spi_flash ? "flash" : "EEPROM");
2374 rc = -EIO;
2375 goto out;
2376 }
2377
2378 magic_num = le16_to_cpu(nvconfig->board_magic_num);
2379 struct_ver = le16_to_cpu(nvconfig->board_struct_ver);
2380
2381 rc = -EINVAL;
Ben Hutchings3e6c4532009-10-23 08:30:36 +00002382 if (magic_num != FALCON_NVCONFIG_BOARD_MAGIC_NUM) {
Ben Hutchings8c8661e2008-09-01 12:49:02 +01002383 EFX_ERR(efx, "NVRAM bad magic 0x%x\n", magic_num);
2384 goto out;
2385 }
2386 if (struct_ver < 2) {
2387 EFX_ERR(efx, "NVRAM has ancient version 0x%x\n", struct_ver);
2388 goto out;
2389 } else if (struct_ver < 4) {
2390 word = &nvconfig->board_magic_num;
2391 limit = (__le16 *) (nvconfig + 1);
2392 } else {
2393 word = region;
Ben Hutchings0a95f562008-11-04 20:33:11 +00002394 limit = region + FALCON_NVCONFIG_END;
Ben Hutchings8c8661e2008-09-01 12:49:02 +01002395 }
2396 for (csum = 0; word < limit; ++word)
2397 csum += le16_to_cpu(*word);
2398
2399 if (~csum & 0xffff) {
2400 EFX_ERR(efx, "NVRAM has incorrect checksum\n");
2401 goto out;
2402 }
2403
2404 rc = 0;
2405 if (nvconfig_out)
2406 memcpy(nvconfig_out, nvconfig, sizeof(*nvconfig));
2407
2408 out:
2409 kfree(region);
2410 return rc;
2411}
2412
2413/* Registers tested in the falcon register test */
2414static struct {
2415 unsigned address;
2416 efx_oword_t mask;
2417} efx_test_registers[] = {
Ben Hutchings3e6c4532009-10-23 08:30:36 +00002418 { FR_AZ_ADR_REGION,
Ben Hutchings8c8661e2008-09-01 12:49:02 +01002419 EFX_OWORD32(0x0001FFFF, 0x0001FFFF, 0x0001FFFF, 0x0001FFFF) },
Ben Hutchings3e6c4532009-10-23 08:30:36 +00002420 { FR_AZ_RX_CFG,
Ben Hutchings8c8661e2008-09-01 12:49:02 +01002421 EFX_OWORD32(0xFFFFFFFE, 0x00017FFF, 0x00000000, 0x00000000) },
Ben Hutchings3e6c4532009-10-23 08:30:36 +00002422 { FR_AZ_TX_CFG,
Ben Hutchings8c8661e2008-09-01 12:49:02 +01002423 EFX_OWORD32(0x7FFF0037, 0x00000000, 0x00000000, 0x00000000) },
Ben Hutchings3e6c4532009-10-23 08:30:36 +00002424 { FR_AZ_TX_RESERVED,
Ben Hutchings8c8661e2008-09-01 12:49:02 +01002425 EFX_OWORD32(0xFFFEFE80, 0x1FFFFFFF, 0x020000FE, 0x007FFFFF) },
Ben Hutchings3e6c4532009-10-23 08:30:36 +00002426 { FR_AB_MAC_CTRL,
Ben Hutchings8c8661e2008-09-01 12:49:02 +01002427 EFX_OWORD32(0xFFFF0000, 0x00000000, 0x00000000, 0x00000000) },
Ben Hutchings3e6c4532009-10-23 08:30:36 +00002428 { FR_AZ_SRM_TX_DC_CFG,
Ben Hutchings8c8661e2008-09-01 12:49:02 +01002429 EFX_OWORD32(0x001FFFFF, 0x00000000, 0x00000000, 0x00000000) },
Ben Hutchings3e6c4532009-10-23 08:30:36 +00002430 { FR_AZ_RX_DC_CFG,
Ben Hutchings8c8661e2008-09-01 12:49:02 +01002431 EFX_OWORD32(0x0000000F, 0x00000000, 0x00000000, 0x00000000) },
Ben Hutchings3e6c4532009-10-23 08:30:36 +00002432 { FR_AZ_RX_DC_PF_WM,
Ben Hutchings8c8661e2008-09-01 12:49:02 +01002433 EFX_OWORD32(0x000003FF, 0x00000000, 0x00000000, 0x00000000) },
Ben Hutchings3e6c4532009-10-23 08:30:36 +00002434 { FR_BZ_DP_CTRL,
Ben Hutchings8c8661e2008-09-01 12:49:02 +01002435 EFX_OWORD32(0x00000FFF, 0x00000000, 0x00000000, 0x00000000) },
Ben Hutchings3e6c4532009-10-23 08:30:36 +00002436 { FR_AB_GM_CFG2,
Ben Hutchings177dfcd2008-12-12 21:50:08 -08002437 EFX_OWORD32(0x00007337, 0x00000000, 0x00000000, 0x00000000) },
Ben Hutchings3e6c4532009-10-23 08:30:36 +00002438 { FR_AB_GMF_CFG0,
Ben Hutchings177dfcd2008-12-12 21:50:08 -08002439 EFX_OWORD32(0x00001F1F, 0x00000000, 0x00000000, 0x00000000) },
Ben Hutchings3e6c4532009-10-23 08:30:36 +00002440 { FR_AB_XM_GLB_CFG,
Ben Hutchings8c8661e2008-09-01 12:49:02 +01002441 EFX_OWORD32(0x00000C68, 0x00000000, 0x00000000, 0x00000000) },
Ben Hutchings3e6c4532009-10-23 08:30:36 +00002442 { FR_AB_XM_TX_CFG,
Ben Hutchings8c8661e2008-09-01 12:49:02 +01002443 EFX_OWORD32(0x00080164, 0x00000000, 0x00000000, 0x00000000) },
Ben Hutchings3e6c4532009-10-23 08:30:36 +00002444 { FR_AB_XM_RX_CFG,
Ben Hutchings8c8661e2008-09-01 12:49:02 +01002445 EFX_OWORD32(0x07100A0C, 0x00000000, 0x00000000, 0x00000000) },
Ben Hutchings3e6c4532009-10-23 08:30:36 +00002446 { FR_AB_XM_RX_PARAM,
Ben Hutchings8c8661e2008-09-01 12:49:02 +01002447 EFX_OWORD32(0x00001FF8, 0x00000000, 0x00000000, 0x00000000) },
Ben Hutchings3e6c4532009-10-23 08:30:36 +00002448 { FR_AB_XM_FC,
Ben Hutchings8c8661e2008-09-01 12:49:02 +01002449 EFX_OWORD32(0xFFFF0001, 0x00000000, 0x00000000, 0x00000000) },
Ben Hutchings3e6c4532009-10-23 08:30:36 +00002450 { FR_AB_XM_ADR_LO,
Ben Hutchings8c8661e2008-09-01 12:49:02 +01002451 EFX_OWORD32(0xFFFFFFFF, 0x00000000, 0x00000000, 0x00000000) },
Ben Hutchings3e6c4532009-10-23 08:30:36 +00002452 { FR_AB_XX_SD_CTL,
Ben Hutchings8c8661e2008-09-01 12:49:02 +01002453 EFX_OWORD32(0x0003FF0F, 0x00000000, 0x00000000, 0x00000000) },
2454};
2455
2456static bool efx_masked_compare_oword(const efx_oword_t *a, const efx_oword_t *b,
2457 const efx_oword_t *mask)
2458{
2459 return ((a->u64[0] ^ b->u64[0]) & mask->u64[0]) ||
2460 ((a->u64[1] ^ b->u64[1]) & mask->u64[1]);
2461}
2462
2463int falcon_test_registers(struct efx_nic *efx)
2464{
2465 unsigned address = 0, i, j;
2466 efx_oword_t mask, imask, original, reg, buf;
2467
2468 /* Falcon should be in loopback to isolate the XMAC from the PHY */
2469 WARN_ON(!LOOPBACK_INTERNAL(efx));
2470
2471 for (i = 0; i < ARRAY_SIZE(efx_test_registers); ++i) {
2472 address = efx_test_registers[i].address;
2473 mask = imask = efx_test_registers[i].mask;
2474 EFX_INVERT_OWORD(imask);
2475
Ben Hutchings12d00ca2009-10-23 08:30:46 +00002476 efx_reado(efx, &original, address);
Ben Hutchings8c8661e2008-09-01 12:49:02 +01002477
2478 /* bit sweep on and off */
2479 for (j = 0; j < 128; j++) {
2480 if (!EFX_EXTRACT_OWORD32(mask, j, j))
2481 continue;
2482
2483 /* Test this testable bit can be set in isolation */
2484 EFX_AND_OWORD(reg, original, mask);
2485 EFX_SET_OWORD32(reg, j, j, 1);
2486
Ben Hutchings12d00ca2009-10-23 08:30:46 +00002487 efx_writeo(efx, &reg, address);
2488 efx_reado(efx, &buf, address);
Ben Hutchings8c8661e2008-09-01 12:49:02 +01002489
2490 if (efx_masked_compare_oword(&reg, &buf, &mask))
2491 goto fail;
2492
2493 /* Test this testable bit can be cleared in isolation */
2494 EFX_OR_OWORD(reg, original, mask);
2495 EFX_SET_OWORD32(reg, j, j, 0);
2496
Ben Hutchings12d00ca2009-10-23 08:30:46 +00002497 efx_writeo(efx, &reg, address);
2498 efx_reado(efx, &buf, address);
Ben Hutchings8c8661e2008-09-01 12:49:02 +01002499
2500 if (efx_masked_compare_oword(&reg, &buf, &mask))
2501 goto fail;
2502 }
2503
Ben Hutchings12d00ca2009-10-23 08:30:46 +00002504 efx_writeo(efx, &original, address);
Ben Hutchings8c8661e2008-09-01 12:49:02 +01002505 }
2506
2507 return 0;
2508
2509fail:
2510 EFX_ERR(efx, "wrote "EFX_OWORD_FMT" read "EFX_OWORD_FMT
2511 " at address 0x%x mask "EFX_OWORD_FMT"\n", EFX_OWORD_VAL(reg),
2512 EFX_OWORD_VAL(buf), address, EFX_OWORD_VAL(mask));
2513 return -EIO;
2514}
2515
Ben Hutchings8ceee662008-04-27 12:55:59 +01002516/**************************************************************************
2517 *
2518 * Device reset
2519 *
2520 **************************************************************************
2521 */
2522
2523/* Resets NIC to known state. This routine must be called in process
2524 * context and is allowed to sleep. */
2525int falcon_reset_hw(struct efx_nic *efx, enum reset_type method)
2526{
2527 struct falcon_nic_data *nic_data = efx->nic_data;
2528 efx_oword_t glb_ctl_reg_ker;
2529 int rc;
2530
2531 EFX_LOG(efx, "performing hardware reset (%d)\n", method);
2532
2533 /* Initiate device reset */
2534 if (method == RESET_TYPE_WORLD) {
2535 rc = pci_save_state(efx->pci_dev);
2536 if (rc) {
2537 EFX_ERR(efx, "failed to backup PCI state of primary "
2538 "function prior to hardware reset\n");
2539 goto fail1;
2540 }
2541 if (FALCON_IS_DUAL_FUNC(efx)) {
2542 rc = pci_save_state(nic_data->pci_dev2);
2543 if (rc) {
2544 EFX_ERR(efx, "failed to backup PCI state of "
2545 "secondary function prior to "
2546 "hardware reset\n");
2547 goto fail2;
2548 }
2549 }
2550
2551 EFX_POPULATE_OWORD_2(glb_ctl_reg_ker,
Ben Hutchings3e6c4532009-10-23 08:30:36 +00002552 FRF_AB_EXT_PHY_RST_DUR,
2553 FFE_AB_EXT_PHY_RST_DUR_10240US,
2554 FRF_AB_SWRST, 1);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002555 } else {
Ben Hutchings8ceee662008-04-27 12:55:59 +01002556 EFX_POPULATE_OWORD_7(glb_ctl_reg_ker,
Ben Hutchings3e6c4532009-10-23 08:30:36 +00002557 /* exclude PHY from "invisible" reset */
2558 FRF_AB_EXT_PHY_RST_CTL,
2559 method == RESET_TYPE_INVISIBLE,
2560 /* exclude EEPROM/flash and PCIe */
2561 FRF_AB_PCIE_CORE_RST_CTL, 1,
2562 FRF_AB_PCIE_NSTKY_RST_CTL, 1,
2563 FRF_AB_PCIE_SD_RST_CTL, 1,
2564 FRF_AB_EE_RST_CTL, 1,
2565 FRF_AB_EXT_PHY_RST_DUR,
2566 FFE_AB_EXT_PHY_RST_DUR_10240US,
2567 FRF_AB_SWRST, 1);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002568 }
Ben Hutchings12d00ca2009-10-23 08:30:46 +00002569 efx_writeo(efx, &glb_ctl_reg_ker, FR_AB_GLB_CTL);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002570
2571 EFX_LOG(efx, "waiting for hardware reset\n");
2572 schedule_timeout_uninterruptible(HZ / 20);
2573
2574 /* Restore PCI configuration if needed */
2575 if (method == RESET_TYPE_WORLD) {
2576 if (FALCON_IS_DUAL_FUNC(efx)) {
2577 rc = pci_restore_state(nic_data->pci_dev2);
2578 if (rc) {
2579 EFX_ERR(efx, "failed to restore PCI config for "
2580 "the secondary function\n");
2581 goto fail3;
2582 }
2583 }
2584 rc = pci_restore_state(efx->pci_dev);
2585 if (rc) {
2586 EFX_ERR(efx, "failed to restore PCI config for the "
2587 "primary function\n");
2588 goto fail4;
2589 }
2590 EFX_LOG(efx, "successfully restored PCI config\n");
2591 }
2592
2593 /* Assert that reset complete */
Ben Hutchings12d00ca2009-10-23 08:30:46 +00002594 efx_reado(efx, &glb_ctl_reg_ker, FR_AB_GLB_CTL);
Ben Hutchings3e6c4532009-10-23 08:30:36 +00002595 if (EFX_OWORD_FIELD(glb_ctl_reg_ker, FRF_AB_SWRST) != 0) {
Ben Hutchings8ceee662008-04-27 12:55:59 +01002596 rc = -ETIMEDOUT;
2597 EFX_ERR(efx, "timed out waiting for hardware reset\n");
2598 goto fail5;
2599 }
2600 EFX_LOG(efx, "hardware reset complete\n");
2601
2602 return 0;
2603
2604 /* pci_save_state() and pci_restore_state() MUST be called in pairs */
2605fail2:
2606fail3:
2607 pci_restore_state(efx->pci_dev);
2608fail1:
2609fail4:
2610fail5:
2611 return rc;
2612}
2613
2614/* Zeroes out the SRAM contents. This routine must be called in
2615 * process context and is allowed to sleep.
2616 */
2617static int falcon_reset_sram(struct efx_nic *efx)
2618{
2619 efx_oword_t srm_cfg_reg_ker, gpio_cfg_reg_ker;
2620 int count;
2621
2622 /* Set the SRAM wake/sleep GPIO appropriately. */
Ben Hutchings12d00ca2009-10-23 08:30:46 +00002623 efx_reado(efx, &gpio_cfg_reg_ker, FR_AB_GPIO_CTL);
Ben Hutchings3e6c4532009-10-23 08:30:36 +00002624 EFX_SET_OWORD_FIELD(gpio_cfg_reg_ker, FRF_AB_GPIO1_OEN, 1);
2625 EFX_SET_OWORD_FIELD(gpio_cfg_reg_ker, FRF_AB_GPIO1_OUT, 1);
Ben Hutchings12d00ca2009-10-23 08:30:46 +00002626 efx_writeo(efx, &gpio_cfg_reg_ker, FR_AB_GPIO_CTL);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002627
2628 /* Initiate SRAM reset */
2629 EFX_POPULATE_OWORD_2(srm_cfg_reg_ker,
Ben Hutchings3e6c4532009-10-23 08:30:36 +00002630 FRF_AZ_SRM_INIT_EN, 1,
2631 FRF_AZ_SRM_NB_SZ, 0);
Ben Hutchings12d00ca2009-10-23 08:30:46 +00002632 efx_writeo(efx, &srm_cfg_reg_ker, FR_AZ_SRM_CFG);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002633
2634 /* Wait for SRAM reset to complete */
2635 count = 0;
2636 do {
2637 EFX_LOG(efx, "waiting for SRAM reset (attempt %d)...\n", count);
2638
2639 /* SRAM reset is slow; expect around 16ms */
2640 schedule_timeout_uninterruptible(HZ / 50);
2641
2642 /* Check for reset complete */
Ben Hutchings12d00ca2009-10-23 08:30:46 +00002643 efx_reado(efx, &srm_cfg_reg_ker, FR_AZ_SRM_CFG);
Ben Hutchings3e6c4532009-10-23 08:30:36 +00002644 if (!EFX_OWORD_FIELD(srm_cfg_reg_ker, FRF_AZ_SRM_INIT_EN)) {
Ben Hutchings8ceee662008-04-27 12:55:59 +01002645 EFX_LOG(efx, "SRAM reset complete\n");
2646
2647 return 0;
2648 }
2649 } while (++count < 20); /* wait upto 0.4 sec */
2650
2651 EFX_ERR(efx, "timed out waiting for SRAM reset\n");
2652 return -ETIMEDOUT;
2653}
2654
Ben Hutchings4a5b5042008-09-01 12:47:16 +01002655static int falcon_spi_device_init(struct efx_nic *efx,
2656 struct efx_spi_device **spi_device_ret,
2657 unsigned int device_id, u32 device_type)
2658{
2659 struct efx_spi_device *spi_device;
2660
2661 if (device_type != 0) {
Ben Hutchings0c53d8c2008-12-12 22:08:50 -08002662 spi_device = kzalloc(sizeof(*spi_device), GFP_KERNEL);
Ben Hutchings4a5b5042008-09-01 12:47:16 +01002663 if (!spi_device)
2664 return -ENOMEM;
2665 spi_device->device_id = device_id;
2666 spi_device->size =
2667 1 << SPI_DEV_TYPE_FIELD(device_type, SPI_DEV_TYPE_SIZE);
2668 spi_device->addr_len =
2669 SPI_DEV_TYPE_FIELD(device_type, SPI_DEV_TYPE_ADDR_LEN);
2670 spi_device->munge_address = (spi_device->size == 1 << 9 &&
2671 spi_device->addr_len == 1);
Ben Hutchingsf4150722008-11-04 20:34:28 +00002672 spi_device->erase_command =
2673 SPI_DEV_TYPE_FIELD(device_type, SPI_DEV_TYPE_ERASE_CMD);
2674 spi_device->erase_size =
2675 1 << SPI_DEV_TYPE_FIELD(device_type,
2676 SPI_DEV_TYPE_ERASE_SIZE);
Ben Hutchings4a5b5042008-09-01 12:47:16 +01002677 spi_device->block_size =
2678 1 << SPI_DEV_TYPE_FIELD(device_type,
2679 SPI_DEV_TYPE_BLOCK_SIZE);
2680
2681 spi_device->efx = efx;
2682 } else {
2683 spi_device = NULL;
2684 }
2685
2686 kfree(*spi_device_ret);
2687 *spi_device_ret = spi_device;
2688 return 0;
2689}
2690
2691
2692static void falcon_remove_spi_devices(struct efx_nic *efx)
2693{
2694 kfree(efx->spi_eeprom);
2695 efx->spi_eeprom = NULL;
2696 kfree(efx->spi_flash);
2697 efx->spi_flash = NULL;
2698}
2699
Ben Hutchings8ceee662008-04-27 12:55:59 +01002700/* Extract non-volatile configuration */
2701static int falcon_probe_nvconfig(struct efx_nic *efx)
2702{
2703 struct falcon_nvconfig *nvconfig;
Ben Hutchings8c8661e2008-09-01 12:49:02 +01002704 int board_rev;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002705 int rc;
2706
Ben Hutchings8ceee662008-04-27 12:55:59 +01002707 nvconfig = kmalloc(sizeof(*nvconfig), GFP_KERNEL);
Ben Hutchings4a5b5042008-09-01 12:47:16 +01002708 if (!nvconfig)
2709 return -ENOMEM;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002710
Ben Hutchings8c8661e2008-09-01 12:49:02 +01002711 rc = falcon_read_nvram(efx, nvconfig);
2712 if (rc == -EINVAL) {
2713 EFX_ERR(efx, "NVRAM is invalid therefore using defaults\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01002714 efx->phy_type = PHY_TYPE_NONE;
Ben Hutchings68e7f452009-04-29 08:05:08 +00002715 efx->mdio.prtad = MDIO_PRTAD_NONE;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002716 board_rev = 0;
Ben Hutchings8c8661e2008-09-01 12:49:02 +01002717 rc = 0;
2718 } else if (rc) {
2719 goto fail1;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002720 } else {
2721 struct falcon_nvconfig_board_v2 *v2 = &nvconfig->board_v2;
Ben Hutchings4a5b5042008-09-01 12:47:16 +01002722 struct falcon_nvconfig_board_v3 *v3 = &nvconfig->board_v3;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002723
2724 efx->phy_type = v2->port0_phy_type;
Ben Hutchings68e7f452009-04-29 08:05:08 +00002725 efx->mdio.prtad = v2->port0_phy_addr;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002726 board_rev = le16_to_cpu(v2->board_revision);
Ben Hutchings4a5b5042008-09-01 12:47:16 +01002727
Ben Hutchings8c8661e2008-09-01 12:49:02 +01002728 if (le16_to_cpu(nvconfig->board_struct_ver) >= 3) {
Ben Hutchings3e6c4532009-10-23 08:30:36 +00002729 rc = falcon_spi_device_init(
2730 efx, &efx->spi_flash, FFE_AB_SPI_DEVICE_FLASH,
2731 le32_to_cpu(v3->spi_device_type
2732 [FFE_AB_SPI_DEVICE_FLASH]));
Ben Hutchings4a5b5042008-09-01 12:47:16 +01002733 if (rc)
2734 goto fail2;
Ben Hutchings3e6c4532009-10-23 08:30:36 +00002735 rc = falcon_spi_device_init(
2736 efx, &efx->spi_eeprom, FFE_AB_SPI_DEVICE_EEPROM,
2737 le32_to_cpu(v3->spi_device_type
2738 [FFE_AB_SPI_DEVICE_EEPROM]));
Ben Hutchings4a5b5042008-09-01 12:47:16 +01002739 if (rc)
2740 goto fail2;
2741 }
Ben Hutchings8ceee662008-04-27 12:55:59 +01002742 }
2743
Ben Hutchings8c8661e2008-09-01 12:49:02 +01002744 /* Read the MAC addresses */
2745 memcpy(efx->mac_address, nvconfig->mac_address[0], ETH_ALEN);
2746
Ben Hutchings68e7f452009-04-29 08:05:08 +00002747 EFX_LOG(efx, "PHY is %d phy_id %d\n", efx->phy_type, efx->mdio.prtad);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002748
Ben Hutchings3473a5b2009-10-23 08:29:16 +00002749 falcon_probe_board(efx, board_rev);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002750
Ben Hutchings4a5b5042008-09-01 12:47:16 +01002751 kfree(nvconfig);
2752 return 0;
2753
2754 fail2:
2755 falcon_remove_spi_devices(efx);
2756 fail1:
Ben Hutchings8ceee662008-04-27 12:55:59 +01002757 kfree(nvconfig);
2758 return rc;
2759}
2760
2761/* Probe the NIC variant (revision, ASIC vs FPGA, function count, port
2762 * count, port speed). Set workaround and feature flags accordingly.
2763 */
2764static int falcon_probe_nic_variant(struct efx_nic *efx)
2765{
2766 efx_oword_t altera_build;
Ben Hutchings177dfcd2008-12-12 21:50:08 -08002767 efx_oword_t nic_stat;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002768
Ben Hutchings12d00ca2009-10-23 08:30:46 +00002769 efx_reado(efx, &altera_build, FR_AZ_ALTERA_BUILD);
Ben Hutchings3e6c4532009-10-23 08:30:36 +00002770 if (EFX_OWORD_FIELD(altera_build, FRF_AZ_ALTERA_BUILD_VER)) {
Ben Hutchings8ceee662008-04-27 12:55:59 +01002771 EFX_ERR(efx, "Falcon FPGA not supported\n");
2772 return -ENODEV;
2773 }
2774
Ben Hutchings12d00ca2009-10-23 08:30:46 +00002775 efx_reado(efx, &nic_stat, FR_AB_NIC_STAT);
Ben Hutchings177dfcd2008-12-12 21:50:08 -08002776
Ben Hutchings55668612008-05-16 21:16:10 +01002777 switch (falcon_rev(efx)) {
Ben Hutchings8ceee662008-04-27 12:55:59 +01002778 case FALCON_REV_A0:
2779 case 0xff:
2780 EFX_ERR(efx, "Falcon rev A0 not supported\n");
2781 return -ENODEV;
2782
Ben Hutchings177dfcd2008-12-12 21:50:08 -08002783 case FALCON_REV_A1:
Ben Hutchings3e6c4532009-10-23 08:30:36 +00002784 if (EFX_OWORD_FIELD(nic_stat, FRF_AA_STRAP_PCIE) == 0) {
Ben Hutchings8ceee662008-04-27 12:55:59 +01002785 EFX_ERR(efx, "Falcon rev A1 PCI-X not supported\n");
2786 return -ENODEV;
2787 }
Ben Hutchings8ceee662008-04-27 12:55:59 +01002788 break;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002789
2790 case FALCON_REV_B0:
2791 break;
2792
2793 default:
Ben Hutchings55668612008-05-16 21:16:10 +01002794 EFX_ERR(efx, "Unknown Falcon rev %d\n", falcon_rev(efx));
Ben Hutchings8ceee662008-04-27 12:55:59 +01002795 return -ENODEV;
2796 }
2797
Ben Hutchings177dfcd2008-12-12 21:50:08 -08002798 /* Initial assumed speed */
Ben Hutchings3e6c4532009-10-23 08:30:36 +00002799 efx->link_speed = EFX_OWORD_FIELD(nic_stat, FRF_AB_STRAP_10G) ? 10000 : 1000;
Ben Hutchings177dfcd2008-12-12 21:50:08 -08002800
Ben Hutchings8ceee662008-04-27 12:55:59 +01002801 return 0;
2802}
2803
Ben Hutchings4a5b5042008-09-01 12:47:16 +01002804/* Probe all SPI devices on the NIC */
2805static void falcon_probe_spi_devices(struct efx_nic *efx)
2806{
2807 efx_oword_t nic_stat, gpio_ctl, ee_vpd_cfg;
Ben Hutchings2f7f5732008-12-12 21:34:25 -08002808 int boot_dev;
Ben Hutchings4a5b5042008-09-01 12:47:16 +01002809
Ben Hutchings12d00ca2009-10-23 08:30:46 +00002810 efx_reado(efx, &gpio_ctl, FR_AB_GPIO_CTL);
2811 efx_reado(efx, &nic_stat, FR_AB_NIC_STAT);
2812 efx_reado(efx, &ee_vpd_cfg, FR_AB_EE_VPD_CFG0);
Ben Hutchings4a5b5042008-09-01 12:47:16 +01002813
Ben Hutchings3e6c4532009-10-23 08:30:36 +00002814 if (EFX_OWORD_FIELD(gpio_ctl, FRF_AB_GPIO3_PWRUP_VALUE)) {
2815 boot_dev = (EFX_OWORD_FIELD(nic_stat, FRF_AB_SF_PRST) ?
2816 FFE_AB_SPI_DEVICE_FLASH : FFE_AB_SPI_DEVICE_EEPROM);
Ben Hutchings2f7f5732008-12-12 21:34:25 -08002817 EFX_LOG(efx, "Booted from %s\n",
Ben Hutchings3e6c4532009-10-23 08:30:36 +00002818 boot_dev == FFE_AB_SPI_DEVICE_FLASH ? "flash" : "EEPROM");
Ben Hutchings2f7f5732008-12-12 21:34:25 -08002819 } else {
2820 /* Disable VPD and set clock dividers to safe
2821 * values for initial programming. */
2822 boot_dev = -1;
2823 EFX_LOG(efx, "Booted from internal ASIC settings;"
2824 " setting SPI config\n");
Ben Hutchings3e6c4532009-10-23 08:30:36 +00002825 EFX_POPULATE_OWORD_3(ee_vpd_cfg, FRF_AB_EE_VPD_EN, 0,
Ben Hutchings2f7f5732008-12-12 21:34:25 -08002826 /* 125 MHz / 7 ~= 20 MHz */
Ben Hutchings3e6c4532009-10-23 08:30:36 +00002827 FRF_AB_EE_SF_CLOCK_DIV, 7,
Ben Hutchings2f7f5732008-12-12 21:34:25 -08002828 /* 125 MHz / 63 ~= 2 MHz */
Ben Hutchings3e6c4532009-10-23 08:30:36 +00002829 FRF_AB_EE_EE_CLOCK_DIV, 63);
Ben Hutchings12d00ca2009-10-23 08:30:46 +00002830 efx_writeo(efx, &ee_vpd_cfg, FR_AB_EE_VPD_CFG0);
Ben Hutchings4a5b5042008-09-01 12:47:16 +01002831 }
2832
Ben Hutchings3e6c4532009-10-23 08:30:36 +00002833 if (boot_dev == FFE_AB_SPI_DEVICE_FLASH)
2834 falcon_spi_device_init(efx, &efx->spi_flash,
2835 FFE_AB_SPI_DEVICE_FLASH,
Ben Hutchings2f7f5732008-12-12 21:34:25 -08002836 default_flash_type);
Ben Hutchings3e6c4532009-10-23 08:30:36 +00002837 if (boot_dev == FFE_AB_SPI_DEVICE_EEPROM)
2838 falcon_spi_device_init(efx, &efx->spi_eeprom,
2839 FFE_AB_SPI_DEVICE_EEPROM,
Ben Hutchings2f7f5732008-12-12 21:34:25 -08002840 large_eeprom_type);
Ben Hutchings4a5b5042008-09-01 12:47:16 +01002841}
2842
Ben Hutchings8ceee662008-04-27 12:55:59 +01002843int falcon_probe_nic(struct efx_nic *efx)
2844{
2845 struct falcon_nic_data *nic_data;
2846 int rc;
2847
Ben Hutchings8ceee662008-04-27 12:55:59 +01002848 /* Allocate storage for hardware specific data */
2849 nic_data = kzalloc(sizeof(*nic_data), GFP_KERNEL);
Ben Hutchings88c59422008-09-03 15:07:50 +01002850 if (!nic_data)
2851 return -ENOMEM;
Ben Hutchings5daab962008-05-16 21:19:43 +01002852 efx->nic_data = nic_data;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002853
2854 /* Determine number of ports etc. */
2855 rc = falcon_probe_nic_variant(efx);
2856 if (rc)
2857 goto fail1;
2858
2859 /* Probe secondary function if expected */
2860 if (FALCON_IS_DUAL_FUNC(efx)) {
2861 struct pci_dev *dev = pci_dev_get(efx->pci_dev);
2862
2863 while ((dev = pci_get_device(EFX_VENDID_SFC, FALCON_A_S_DEVID,
2864 dev))) {
2865 if (dev->bus == efx->pci_dev->bus &&
2866 dev->devfn == efx->pci_dev->devfn + 1) {
2867 nic_data->pci_dev2 = dev;
2868 break;
2869 }
2870 }
2871 if (!nic_data->pci_dev2) {
2872 EFX_ERR(efx, "failed to find secondary function\n");
2873 rc = -ENODEV;
2874 goto fail2;
2875 }
2876 }
2877
2878 /* Now we can reset the NIC */
2879 rc = falcon_reset_hw(efx, RESET_TYPE_ALL);
2880 if (rc) {
2881 EFX_ERR(efx, "failed to reset NIC\n");
2882 goto fail3;
2883 }
2884
2885 /* Allocate memory for INT_KER */
2886 rc = falcon_alloc_buffer(efx, &efx->irq_status, sizeof(efx_oword_t));
2887 if (rc)
2888 goto fail4;
2889 BUG_ON(efx->irq_status.dma_addr & 0x0f);
2890
Jaswinder Singh Rajput9c8976a2009-02-11 23:49:52 +05302891 EFX_LOG(efx, "INT_KER at %llx (virt %p phys %llx)\n",
2892 (u64)efx->irq_status.dma_addr,
2893 efx->irq_status.addr, (u64)virt_to_phys(efx->irq_status.addr));
Ben Hutchings8ceee662008-04-27 12:55:59 +01002894
Ben Hutchings4a5b5042008-09-01 12:47:16 +01002895 falcon_probe_spi_devices(efx);
2896
Ben Hutchings8ceee662008-04-27 12:55:59 +01002897 /* Read in the non-volatile configuration */
2898 rc = falcon_probe_nvconfig(efx);
2899 if (rc)
2900 goto fail5;
2901
Ben Hutchings37b5a602008-05-30 22:27:04 +01002902 /* Initialise I2C adapter */
Ben Hutchingsb4531932008-12-12 22:05:01 -08002903 efx->i2c_adap.owner = THIS_MODULE;
Ben Hutchings37b5a602008-05-30 22:27:04 +01002904 nic_data->i2c_data = falcon_i2c_bit_operations;
2905 nic_data->i2c_data.data = efx;
Ben Hutchingsb4531932008-12-12 22:05:01 -08002906 efx->i2c_adap.algo_data = &nic_data->i2c_data;
Ben Hutchings37b5a602008-05-30 22:27:04 +01002907 efx->i2c_adap.dev.parent = &efx->pci_dev->dev;
Ben Hutchings9dadae62008-07-18 18:59:12 +01002908 strlcpy(efx->i2c_adap.name, "SFC4000 GPIO", sizeof(efx->i2c_adap.name));
Ben Hutchings37b5a602008-05-30 22:27:04 +01002909 rc = i2c_bit_add_bus(&efx->i2c_adap);
2910 if (rc)
2911 goto fail5;
2912
Ben Hutchings8ceee662008-04-27 12:55:59 +01002913 return 0;
2914
2915 fail5:
Ben Hutchings4a5b5042008-09-01 12:47:16 +01002916 falcon_remove_spi_devices(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002917 falcon_free_buffer(efx, &efx->irq_status);
2918 fail4:
Ben Hutchings8ceee662008-04-27 12:55:59 +01002919 fail3:
2920 if (nic_data->pci_dev2) {
2921 pci_dev_put(nic_data->pci_dev2);
2922 nic_data->pci_dev2 = NULL;
2923 }
2924 fail2:
Ben Hutchings8ceee662008-04-27 12:55:59 +01002925 fail1:
2926 kfree(efx->nic_data);
2927 return rc;
2928}
2929
Ben Hutchings56241ce2009-10-23 08:30:06 +00002930static void falcon_init_rx_cfg(struct efx_nic *efx)
2931{
2932 /* Prior to Siena the RX DMA engine will split each frame at
2933 * intervals of RX_USR_BUF_SIZE (32-byte units). We set it to
2934 * be so large that that never happens. */
2935 const unsigned huge_buf_size = (3 * 4096) >> 5;
2936 /* RX control FIFO thresholds (32 entries) */
2937 const unsigned ctrl_xon_thr = 20;
2938 const unsigned ctrl_xoff_thr = 25;
2939 /* RX data FIFO thresholds (256-byte units; size varies) */
Ben Hutchings625b4512009-10-23 08:30:17 +00002940 int data_xon_thr = rx_xon_thresh_bytes >> 8;
2941 int data_xoff_thr = rx_xoff_thresh_bytes >> 8;
Ben Hutchings56241ce2009-10-23 08:30:06 +00002942 efx_oword_t reg;
2943
Ben Hutchings12d00ca2009-10-23 08:30:46 +00002944 efx_reado(efx, &reg, FR_AZ_RX_CFG);
Ben Hutchings56241ce2009-10-23 08:30:06 +00002945 if (falcon_rev(efx) <= FALCON_REV_A1) {
Ben Hutchings625b4512009-10-23 08:30:17 +00002946 /* Data FIFO size is 5.5K */
2947 if (data_xon_thr < 0)
2948 data_xon_thr = 512 >> 8;
2949 if (data_xoff_thr < 0)
2950 data_xoff_thr = 2048 >> 8;
Ben Hutchings3e6c4532009-10-23 08:30:36 +00002951 EFX_SET_OWORD_FIELD(reg, FRF_AA_RX_DESC_PUSH_EN, 0);
2952 EFX_SET_OWORD_FIELD(reg, FRF_AA_RX_USR_BUF_SIZE,
2953 huge_buf_size);
2954 EFX_SET_OWORD_FIELD(reg, FRF_AA_RX_XON_MAC_TH, data_xon_thr);
2955 EFX_SET_OWORD_FIELD(reg, FRF_AA_RX_XOFF_MAC_TH, data_xoff_thr);
2956 EFX_SET_OWORD_FIELD(reg, FRF_AA_RX_XON_TX_TH, ctrl_xon_thr);
2957 EFX_SET_OWORD_FIELD(reg, FRF_AA_RX_XOFF_TX_TH, ctrl_xoff_thr);
Ben Hutchings56241ce2009-10-23 08:30:06 +00002958 } else {
Ben Hutchings625b4512009-10-23 08:30:17 +00002959 /* Data FIFO size is 80K; register fields moved */
2960 if (data_xon_thr < 0)
2961 data_xon_thr = 27648 >> 8; /* ~3*max MTU */
2962 if (data_xoff_thr < 0)
2963 data_xoff_thr = 54272 >> 8; /* ~80Kb - 3*max MTU */
Ben Hutchings3e6c4532009-10-23 08:30:36 +00002964 EFX_SET_OWORD_FIELD(reg, FRF_BZ_RX_DESC_PUSH_EN, 0);
2965 EFX_SET_OWORD_FIELD(reg, FRF_BZ_RX_USR_BUF_SIZE,
2966 huge_buf_size);
2967 EFX_SET_OWORD_FIELD(reg, FRF_BZ_RX_XON_MAC_TH, data_xon_thr);
2968 EFX_SET_OWORD_FIELD(reg, FRF_BZ_RX_XOFF_MAC_TH, data_xoff_thr);
2969 EFX_SET_OWORD_FIELD(reg, FRF_BZ_RX_XON_TX_TH, ctrl_xon_thr);
2970 EFX_SET_OWORD_FIELD(reg, FRF_BZ_RX_XOFF_TX_TH, ctrl_xoff_thr);
2971 EFX_SET_OWORD_FIELD(reg, FRF_BZ_RX_INGR_EN, 1);
Ben Hutchings56241ce2009-10-23 08:30:06 +00002972 }
Ben Hutchings12d00ca2009-10-23 08:30:46 +00002973 efx_writeo(efx, &reg, FR_AZ_RX_CFG);
Ben Hutchings56241ce2009-10-23 08:30:06 +00002974}
2975
Ben Hutchings8ceee662008-04-27 12:55:59 +01002976/* This call performs hardware-specific global initialisation, such as
2977 * defining the descriptor cache sizes and number of RSS channels.
2978 * It does not set up any buffers, descriptor rings or event queues.
2979 */
2980int falcon_init_nic(struct efx_nic *efx)
2981{
Ben Hutchings8ceee662008-04-27 12:55:59 +01002982 efx_oword_t temp;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002983 int rc;
2984
Ben Hutchings8ceee662008-04-27 12:55:59 +01002985 /* Use on-chip SRAM */
Ben Hutchings12d00ca2009-10-23 08:30:46 +00002986 efx_reado(efx, &temp, FR_AB_NIC_STAT);
Ben Hutchings3e6c4532009-10-23 08:30:36 +00002987 EFX_SET_OWORD_FIELD(temp, FRF_AB_ONCHIP_SRAM, 1);
Ben Hutchings12d00ca2009-10-23 08:30:46 +00002988 efx_writeo(efx, &temp, FR_AB_NIC_STAT);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002989
Ben Hutchings6f158d52008-12-12 22:00:49 -08002990 /* Set the source of the GMAC clock */
2991 if (falcon_rev(efx) == FALCON_REV_B0) {
Ben Hutchings12d00ca2009-10-23 08:30:46 +00002992 efx_reado(efx, &temp, FR_AB_GPIO_CTL);
Ben Hutchings3e6c4532009-10-23 08:30:36 +00002993 EFX_SET_OWORD_FIELD(temp, FRF_AB_USE_NIC_CLK, true);
Ben Hutchings12d00ca2009-10-23 08:30:46 +00002994 efx_writeo(efx, &temp, FR_AB_GPIO_CTL);
Ben Hutchings6f158d52008-12-12 22:00:49 -08002995 }
2996
Ben Hutchings8ceee662008-04-27 12:55:59 +01002997 rc = falcon_reset_sram(efx);
2998 if (rc)
2999 return rc;
3000
3001 /* Set positions of descriptor caches in SRAM. */
Ben Hutchings3e6c4532009-10-23 08:30:36 +00003002 EFX_POPULATE_OWORD_1(temp, FRF_AZ_SRM_TX_DC_BASE_ADR, TX_DC_BASE / 8);
Ben Hutchings12d00ca2009-10-23 08:30:46 +00003003 efx_writeo(efx, &temp, FR_AZ_SRM_TX_DC_CFG);
Ben Hutchings3e6c4532009-10-23 08:30:36 +00003004 EFX_POPULATE_OWORD_1(temp, FRF_AZ_SRM_RX_DC_BASE_ADR, RX_DC_BASE / 8);
Ben Hutchings12d00ca2009-10-23 08:30:46 +00003005 efx_writeo(efx, &temp, FR_AZ_SRM_RX_DC_CFG);
Ben Hutchings8ceee662008-04-27 12:55:59 +01003006
3007 /* Set TX descriptor cache size. */
3008 BUILD_BUG_ON(TX_DC_ENTRIES != (16 << TX_DC_ENTRIES_ORDER));
Ben Hutchings3e6c4532009-10-23 08:30:36 +00003009 EFX_POPULATE_OWORD_1(temp, FRF_AZ_TX_DC_SIZE, TX_DC_ENTRIES_ORDER);
Ben Hutchings12d00ca2009-10-23 08:30:46 +00003010 efx_writeo(efx, &temp, FR_AZ_TX_DC_CFG);
Ben Hutchings8ceee662008-04-27 12:55:59 +01003011
3012 /* Set RX descriptor cache size. Set low watermark to size-8, as
3013 * this allows most efficient prefetching.
3014 */
3015 BUILD_BUG_ON(RX_DC_ENTRIES != (16 << RX_DC_ENTRIES_ORDER));
Ben Hutchings3e6c4532009-10-23 08:30:36 +00003016 EFX_POPULATE_OWORD_1(temp, FRF_AZ_RX_DC_SIZE, RX_DC_ENTRIES_ORDER);
Ben Hutchings12d00ca2009-10-23 08:30:46 +00003017 efx_writeo(efx, &temp, FR_AZ_RX_DC_CFG);
Ben Hutchings3e6c4532009-10-23 08:30:36 +00003018 EFX_POPULATE_OWORD_1(temp, FRF_AZ_RX_DC_PF_LWM, RX_DC_ENTRIES - 8);
Ben Hutchings12d00ca2009-10-23 08:30:46 +00003019 efx_writeo(efx, &temp, FR_AZ_RX_DC_PF_WM);
Ben Hutchings8ceee662008-04-27 12:55:59 +01003020
3021 /* Clear the parity enables on the TX data fifos as
3022 * they produce false parity errors because of timing issues
3023 */
3024 if (EFX_WORKAROUND_5129(efx)) {
Ben Hutchings12d00ca2009-10-23 08:30:46 +00003025 efx_reado(efx, &temp, FR_AZ_CSR_SPARE);
Ben Hutchings3e6c4532009-10-23 08:30:36 +00003026 EFX_SET_OWORD_FIELD(temp, FRF_AB_MEM_PERR_EN_TX_DATA, 0);
Ben Hutchings12d00ca2009-10-23 08:30:46 +00003027 efx_writeo(efx, &temp, FR_AZ_CSR_SPARE);
Ben Hutchings8ceee662008-04-27 12:55:59 +01003028 }
3029
3030 /* Enable all the genuinely fatal interrupts. (They are still
3031 * masked by the overall interrupt mask, controlled by
3032 * falcon_interrupts()).
3033 *
3034 * Note: All other fatal interrupts are enabled
3035 */
3036 EFX_POPULATE_OWORD_3(temp,
Ben Hutchings3e6c4532009-10-23 08:30:36 +00003037 FRF_AZ_ILL_ADR_INT_KER_EN, 1,
3038 FRF_AZ_RBUF_OWN_INT_KER_EN, 1,
3039 FRF_AZ_TBUF_OWN_INT_KER_EN, 1);
Ben Hutchings8ceee662008-04-27 12:55:59 +01003040 EFX_INVERT_OWORD(temp);
Ben Hutchings12d00ca2009-10-23 08:30:46 +00003041 efx_writeo(efx, &temp, FR_AZ_FATAL_INTR_KER);
Ben Hutchings8ceee662008-04-27 12:55:59 +01003042
Ben Hutchings8ceee662008-04-27 12:55:59 +01003043 if (EFX_WORKAROUND_7244(efx)) {
Ben Hutchings12d00ca2009-10-23 08:30:46 +00003044 efx_reado(efx, &temp, FR_BZ_RX_FILTER_CTL);
Ben Hutchings3e6c4532009-10-23 08:30:36 +00003045 EFX_SET_OWORD_FIELD(temp, FRF_BZ_UDP_FULL_SRCH_LIMIT, 8);
3046 EFX_SET_OWORD_FIELD(temp, FRF_BZ_UDP_WILD_SRCH_LIMIT, 8);
3047 EFX_SET_OWORD_FIELD(temp, FRF_BZ_TCP_FULL_SRCH_LIMIT, 8);
3048 EFX_SET_OWORD_FIELD(temp, FRF_BZ_TCP_WILD_SRCH_LIMIT, 8);
Ben Hutchings12d00ca2009-10-23 08:30:46 +00003049 efx_writeo(efx, &temp, FR_BZ_RX_FILTER_CTL);
Ben Hutchings8ceee662008-04-27 12:55:59 +01003050 }
Ben Hutchings8ceee662008-04-27 12:55:59 +01003051
3052 falcon_setup_rss_indir_table(efx);
3053
Ben Hutchings3e6c4532009-10-23 08:30:36 +00003054 /* XXX This is documented only for Falcon A0/A1 */
Ben Hutchings8ceee662008-04-27 12:55:59 +01003055 /* Setup RX. Wait for descriptor is broken and must
3056 * be disabled. RXDP recovery shouldn't be needed, but is.
3057 */
Ben Hutchings12d00ca2009-10-23 08:30:46 +00003058 efx_reado(efx, &temp, FR_AA_RX_SELF_RST);
Ben Hutchings3e6c4532009-10-23 08:30:36 +00003059 EFX_SET_OWORD_FIELD(temp, FRF_AA_RX_NODESC_WAIT_DIS, 1);
3060 EFX_SET_OWORD_FIELD(temp, FRF_AA_RX_SELF_RST_EN, 1);
Ben Hutchings8ceee662008-04-27 12:55:59 +01003061 if (EFX_WORKAROUND_5583(efx))
Ben Hutchings3e6c4532009-10-23 08:30:36 +00003062 EFX_SET_OWORD_FIELD(temp, FRF_AA_RX_ISCSI_DIS, 1);
Ben Hutchings12d00ca2009-10-23 08:30:46 +00003063 efx_writeo(efx, &temp, FR_AA_RX_SELF_RST);
Ben Hutchings8ceee662008-04-27 12:55:59 +01003064
3065 /* Disable the ugly timer-based TX DMA backoff and allow TX DMA to be
3066 * controlled by the RX FIFO fill level. Set arbitration to one pkt/Q.
3067 */
Ben Hutchings12d00ca2009-10-23 08:30:46 +00003068 efx_reado(efx, &temp, FR_AZ_TX_RESERVED);
Ben Hutchings3e6c4532009-10-23 08:30:36 +00003069 EFX_SET_OWORD_FIELD(temp, FRF_AZ_TX_RX_SPACER, 0xfe);
3070 EFX_SET_OWORD_FIELD(temp, FRF_AZ_TX_RX_SPACER_EN, 1);
3071 EFX_SET_OWORD_FIELD(temp, FRF_AZ_TX_ONE_PKT_PER_Q, 1);
3072 EFX_SET_OWORD_FIELD(temp, FRF_AZ_TX_PUSH_EN, 0);
3073 EFX_SET_OWORD_FIELD(temp, FRF_AZ_TX_DIS_NON_IP_EV, 1);
Ben Hutchings8ceee662008-04-27 12:55:59 +01003074 /* Enable SW_EV to inherit in char driver - assume harmless here */
Ben Hutchings3e6c4532009-10-23 08:30:36 +00003075 EFX_SET_OWORD_FIELD(temp, FRF_AZ_TX_SOFT_EVT_EN, 1);
Ben Hutchings8ceee662008-04-27 12:55:59 +01003076 /* Prefetch threshold 2 => fetch when descriptor cache half empty */
Ben Hutchings3e6c4532009-10-23 08:30:36 +00003077 EFX_SET_OWORD_FIELD(temp, FRF_AZ_TX_PREF_THRESHOLD, 2);
Ben Hutchings8ceee662008-04-27 12:55:59 +01003078 /* Squash TX of packets of 16 bytes or less */
Ben Hutchings55668612008-05-16 21:16:10 +01003079 if (falcon_rev(efx) >= FALCON_REV_B0 && EFX_WORKAROUND_9141(efx))
Ben Hutchings3e6c4532009-10-23 08:30:36 +00003080 EFX_SET_OWORD_FIELD(temp, FRF_BZ_TX_FLUSH_MIN_LEN_EN, 1);
Ben Hutchings12d00ca2009-10-23 08:30:46 +00003081 efx_writeo(efx, &temp, FR_AZ_TX_RESERVED);
Ben Hutchings8ceee662008-04-27 12:55:59 +01003082
3083 /* Do not enable TX_NO_EOP_DISC_EN, since it limits packets to 16
3084 * descriptors (which is bad).
3085 */
Ben Hutchings12d00ca2009-10-23 08:30:46 +00003086 efx_reado(efx, &temp, FR_AZ_TX_CFG);
Ben Hutchings3e6c4532009-10-23 08:30:36 +00003087 EFX_SET_OWORD_FIELD(temp, FRF_AZ_TX_NO_EOP_DISC_EN, 0);
Ben Hutchings12d00ca2009-10-23 08:30:46 +00003088 efx_writeo(efx, &temp, FR_AZ_TX_CFG);
Ben Hutchings8ceee662008-04-27 12:55:59 +01003089
Ben Hutchings56241ce2009-10-23 08:30:06 +00003090 falcon_init_rx_cfg(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01003091
3092 /* Set destination of both TX and RX Flush events */
Ben Hutchings55668612008-05-16 21:16:10 +01003093 if (falcon_rev(efx) >= FALCON_REV_B0) {
Ben Hutchings3e6c4532009-10-23 08:30:36 +00003094 EFX_POPULATE_OWORD_1(temp, FRF_BZ_FLS_EVQ_ID, 0);
Ben Hutchings12d00ca2009-10-23 08:30:46 +00003095 efx_writeo(efx, &temp, FR_BZ_DP_CTRL);
Ben Hutchings8ceee662008-04-27 12:55:59 +01003096 }
3097
3098 return 0;
3099}
3100
3101void falcon_remove_nic(struct efx_nic *efx)
3102{
3103 struct falcon_nic_data *nic_data = efx->nic_data;
Ben Hutchings37b5a602008-05-30 22:27:04 +01003104 int rc;
3105
Ben Hutchings8c870372009-03-04 09:53:02 +00003106 /* Remove I2C adapter and clear it in preparation for a retry */
Ben Hutchings37b5a602008-05-30 22:27:04 +01003107 rc = i2c_del_adapter(&efx->i2c_adap);
3108 BUG_ON(rc);
Ben Hutchings8c870372009-03-04 09:53:02 +00003109 memset(&efx->i2c_adap, 0, sizeof(efx->i2c_adap));
Ben Hutchings8ceee662008-04-27 12:55:59 +01003110
Ben Hutchings4a5b5042008-09-01 12:47:16 +01003111 falcon_remove_spi_devices(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01003112 falcon_free_buffer(efx, &efx->irq_status);
3113
Ben Hutchings91ad7572008-05-16 21:14:27 +01003114 falcon_reset_hw(efx, RESET_TYPE_ALL);
Ben Hutchings8ceee662008-04-27 12:55:59 +01003115
3116 /* Release the second function after the reset */
3117 if (nic_data->pci_dev2) {
3118 pci_dev_put(nic_data->pci_dev2);
3119 nic_data->pci_dev2 = NULL;
3120 }
3121
3122 /* Tear down the private nic state */
3123 kfree(efx->nic_data);
3124 efx->nic_data = NULL;
3125}
3126
3127void falcon_update_nic_stats(struct efx_nic *efx)
3128{
3129 efx_oword_t cnt;
3130
Ben Hutchings12d00ca2009-10-23 08:30:46 +00003131 efx_reado(efx, &cnt, FR_AZ_RX_NODESC_DROP);
Ben Hutchings3e6c4532009-10-23 08:30:36 +00003132 efx->n_rx_nodesc_drop_cnt +=
3133 EFX_OWORD_FIELD(cnt, FRF_AB_RX_NODESC_DROP_CNT);
Ben Hutchings8ceee662008-04-27 12:55:59 +01003134}
3135
3136/**************************************************************************
3137 *
3138 * Revision-dependent attributes used by efx.c
3139 *
3140 **************************************************************************
3141 */
3142
3143struct efx_nic_type falcon_a_nic_type = {
3144 .mem_bar = 2,
3145 .mem_map_size = 0x20000,
Ben Hutchings3e6c4532009-10-23 08:30:36 +00003146 .txd_ptr_tbl_base = FR_AA_TX_DESC_PTR_TBL_KER,
3147 .rxd_ptr_tbl_base = FR_AA_RX_DESC_PTR_TBL_KER,
3148 .buf_tbl_base = FR_AA_BUF_FULL_TBL_KER,
3149 .evq_ptr_tbl_base = FR_AA_EVQ_PTR_TBL_KER,
3150 .evq_rptr_tbl_base = FR_AA_EVQ_RPTR_KER,
Ben Hutchings8ceee662008-04-27 12:55:59 +01003151 .max_dma_mask = FALCON_DMA_MASK,
3152 .tx_dma_mask = FALCON_TX_DMA_MASK,
3153 .bug5391_mask = 0xf,
Ben Hutchings8ceee662008-04-27 12:55:59 +01003154 .rx_buffer_padding = 0x24,
3155 .max_interrupt_mode = EFX_INT_MODE_MSI,
3156 .phys_addr_channels = 4,
3157};
3158
3159struct efx_nic_type falcon_b_nic_type = {
3160 .mem_bar = 2,
3161 /* Map everything up to and including the RSS indirection
3162 * table. Don't map MSI-X table, MSI-X PBA since Linux
3163 * requires that they not be mapped. */
Ben Hutchings3e6c4532009-10-23 08:30:36 +00003164 .mem_map_size = (FR_BZ_RX_INDIRECTION_TBL +
3165 FR_BZ_RX_INDIRECTION_TBL_STEP *
3166 FR_BZ_RX_INDIRECTION_TBL_ROWS),
3167 .txd_ptr_tbl_base = FR_BZ_TX_DESC_PTR_TBL,
3168 .rxd_ptr_tbl_base = FR_BZ_RX_DESC_PTR_TBL,
3169 .buf_tbl_base = FR_BZ_BUF_FULL_TBL,
3170 .evq_ptr_tbl_base = FR_BZ_EVQ_PTR_TBL,
3171 .evq_rptr_tbl_base = FR_BZ_EVQ_RPTR,
Ben Hutchings8ceee662008-04-27 12:55:59 +01003172 .max_dma_mask = FALCON_DMA_MASK,
3173 .tx_dma_mask = FALCON_TX_DMA_MASK,
3174 .bug5391_mask = 0,
Ben Hutchings8ceee662008-04-27 12:55:59 +01003175 .rx_buffer_padding = 0,
3176 .max_interrupt_mode = EFX_INT_MODE_MSIX,
3177 .phys_addr_channels = 32, /* Hardware limit is 64, but the legacy
3178 * interrupt handler only supports 32
3179 * channels */
3180};
3181