blob: eed8d1f98dd0c81eb3a5e457cc88ae9ad5e5b45e [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"
25#include "falcon_hwdefs.h"
26#include "falcon_io.h"
27#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
111/* TX descriptor ring size - min 512 max 4k */
112#define FALCON_TXD_RING_ORDER TX_DESCQ_SIZE_1K
113#define FALCON_TXD_RING_SIZE 1024
114#define FALCON_TXD_RING_MASK (FALCON_TXD_RING_SIZE - 1)
115
116/* RX descriptor ring size - min 512 max 4k */
117#define FALCON_RXD_RING_ORDER RX_DESCQ_SIZE_1K
118#define FALCON_RXD_RING_SIZE 1024
119#define FALCON_RXD_RING_MASK (FALCON_RXD_RING_SIZE - 1)
120
121/* Event queue size - max 32k */
122#define FALCON_EVQ_ORDER EVQ_SIZE_4K
123#define FALCON_EVQ_SIZE 4096
124#define FALCON_EVQ_MASK (FALCON_EVQ_SIZE - 1)
125
Ben Hutchings2c3c3d02009-03-04 10:01:57 +0000126/* If FALCON_MAX_INT_ERRORS internal errors occur within
127 * FALCON_INT_ERROR_EXPIRE seconds, we consider the NIC broken and
128 * disable it.
129 */
130#define FALCON_INT_ERROR_EXPIRE 3600
131#define FALCON_MAX_INT_ERRORS 5
Ben Hutchings8ceee662008-04-27 12:55:59 +0100132
Ben Hutchings6bc5d3a2008-09-01 12:49:37 +0100133/* We poll for events every FLUSH_INTERVAL ms, and check FLUSH_POLL_COUNT times
134 */
135#define FALCON_FLUSH_INTERVAL 10
136#define FALCON_FLUSH_POLL_COUNT 100
Ben Hutchings8ceee662008-04-27 12:55:59 +0100137
138/**************************************************************************
139 *
140 * Falcon constants
141 *
142 **************************************************************************
143 */
144
Ben Hutchings9bbd7d92008-05-16 21:18:48 +0100145/* DMA address mask */
146#define FALCON_DMA_MASK DMA_BIT_MASK(46)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100147
148/* TX DMA length mask (13-bit) */
149#define FALCON_TX_DMA_MASK (4096 - 1)
150
151/* Size and alignment of special buffers (4KB) */
152#define FALCON_BUF_SIZE 4096
153
154/* Dummy SRAM size code */
155#define SRM_NB_BSZ_ONCHIP_ONLY (-1)
156
Ben Hutchings8ceee662008-04-27 12:55:59 +0100157#define FALCON_IS_DUAL_FUNC(efx) \
Ben Hutchings55668612008-05-16 21:16:10 +0100158 (falcon_rev(efx) < FALCON_REV_B0)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100159
160/**************************************************************************
161 *
162 * Falcon hardware access
163 *
164 **************************************************************************/
165
166/* Read the current event from the event queue */
167static inline efx_qword_t *falcon_event(struct efx_channel *channel,
168 unsigned int index)
169{
170 return (((efx_qword_t *) (channel->eventq.addr)) + index);
171}
172
173/* See if an event is present
174 *
175 * We check both the high and low dword of the event for all ones. We
176 * wrote all ones when we cleared the event, and no valid event can
177 * have all ones in either its high or low dwords. This approach is
178 * robust against reordering.
179 *
180 * Note that using a single 64-bit comparison is incorrect; even
181 * though the CPU read will be atomic, the DMA write may not be.
182 */
183static inline int falcon_event_present(efx_qword_t *event)
184{
185 return (!(EFX_DWORD_IS_ALL_ONES(event->dword[0]) |
186 EFX_DWORD_IS_ALL_ONES(event->dword[1])));
187}
188
189/**************************************************************************
190 *
191 * I2C bus - this is a bit-bashing interface using GPIO pins
192 * Note that it uses the output enables to tristate the outputs
193 * SDA is the data pin and SCL is the clock
194 *
195 **************************************************************************
196 */
Ben Hutchings37b5a602008-05-30 22:27:04 +0100197static void falcon_setsda(void *data, int state)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100198{
Ben Hutchings37b5a602008-05-30 22:27:04 +0100199 struct efx_nic *efx = (struct efx_nic *)data;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100200 efx_oword_t reg;
201
Ben Hutchings37b5a602008-05-30 22:27:04 +0100202 falcon_read(efx, &reg, GPIO_CTL_REG_KER);
203 EFX_SET_OWORD_FIELD(reg, GPIO3_OEN, !state);
204 falcon_write(efx, &reg, GPIO_CTL_REG_KER);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100205}
206
Ben Hutchings37b5a602008-05-30 22:27:04 +0100207static void falcon_setscl(void *data, int state)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100208{
Ben Hutchings37b5a602008-05-30 22:27:04 +0100209 struct efx_nic *efx = (struct efx_nic *)data;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100210 efx_oword_t reg;
211
Ben Hutchings37b5a602008-05-30 22:27:04 +0100212 falcon_read(efx, &reg, GPIO_CTL_REG_KER);
213 EFX_SET_OWORD_FIELD(reg, GPIO0_OEN, !state);
214 falcon_write(efx, &reg, GPIO_CTL_REG_KER);
215}
216
217static int falcon_getsda(void *data)
218{
219 struct efx_nic *efx = (struct efx_nic *)data;
220 efx_oword_t reg;
221
222 falcon_read(efx, &reg, GPIO_CTL_REG_KER);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100223 return EFX_OWORD_FIELD(reg, GPIO3_IN);
224}
225
Ben Hutchings37b5a602008-05-30 22:27:04 +0100226static int falcon_getscl(void *data)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100227{
Ben Hutchings37b5a602008-05-30 22:27:04 +0100228 struct efx_nic *efx = (struct efx_nic *)data;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100229 efx_oword_t reg;
230
Ben Hutchings37b5a602008-05-30 22:27:04 +0100231 falcon_read(efx, &reg, GPIO_CTL_REG_KER);
232 return EFX_OWORD_FIELD(reg, GPIO0_IN);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100233}
234
Ben Hutchings37b5a602008-05-30 22:27:04 +0100235static struct i2c_algo_bit_data falcon_i2c_bit_operations = {
236 .setsda = falcon_setsda,
237 .setscl = falcon_setscl,
Ben Hutchings8ceee662008-04-27 12:55:59 +0100238 .getsda = falcon_getsda,
239 .getscl = falcon_getscl,
Ben Hutchings62c78322008-05-30 22:27:46 +0100240 .udelay = 5,
Ben Hutchings9dadae62008-07-18 18:59:12 +0100241 /* Wait up to 50 ms for slave to let us pull SCL high */
242 .timeout = DIV_ROUND_UP(HZ, 20),
Ben Hutchings8ceee662008-04-27 12:55:59 +0100243};
244
245/**************************************************************************
246 *
247 * Falcon special buffer handling
248 * Special buffers are used for event queues and the TX and RX
249 * descriptor rings.
250 *
251 *************************************************************************/
252
253/*
254 * Initialise a Falcon special buffer
255 *
256 * This will define a buffer (previously allocated via
257 * falcon_alloc_special_buffer()) in Falcon's buffer table, allowing
258 * it to be used for event queues, descriptor rings etc.
259 */
Ben Hutchingsbc3c90a2008-09-01 12:48:46 +0100260static void
Ben Hutchings8ceee662008-04-27 12:55:59 +0100261falcon_init_special_buffer(struct efx_nic *efx,
262 struct efx_special_buffer *buffer)
263{
264 efx_qword_t buf_desc;
265 int index;
266 dma_addr_t dma_addr;
267 int i;
268
269 EFX_BUG_ON_PARANOID(!buffer->addr);
270
271 /* Write buffer descriptors to NIC */
272 for (i = 0; i < buffer->entries; i++) {
273 index = buffer->index + i;
274 dma_addr = buffer->dma_addr + (i * 4096);
275 EFX_LOG(efx, "mapping special buffer %d at %llx\n",
276 index, (unsigned long long)dma_addr);
277 EFX_POPULATE_QWORD_4(buf_desc,
278 IP_DAT_BUF_SIZE, IP_DAT_BUF_SIZE_4K,
279 BUF_ADR_REGION, 0,
280 BUF_ADR_FBUF, (dma_addr >> 12),
281 BUF_OWNER_ID_FBUF, 0);
282 falcon_write_sram(efx, &buf_desc, index);
283 }
Ben Hutchings8ceee662008-04-27 12:55:59 +0100284}
285
286/* Unmaps a buffer from Falcon and clears the buffer table entries */
287static void
288falcon_fini_special_buffer(struct efx_nic *efx,
289 struct efx_special_buffer *buffer)
290{
291 efx_oword_t buf_tbl_upd;
292 unsigned int start = buffer->index;
293 unsigned int end = (buffer->index + buffer->entries - 1);
294
295 if (!buffer->entries)
296 return;
297
298 EFX_LOG(efx, "unmapping special buffers %d-%d\n",
299 buffer->index, buffer->index + buffer->entries - 1);
300
301 EFX_POPULATE_OWORD_4(buf_tbl_upd,
302 BUF_UPD_CMD, 0,
303 BUF_CLR_CMD, 1,
304 BUF_CLR_END_ID, end,
305 BUF_CLR_START_ID, start);
306 falcon_write(efx, &buf_tbl_upd, BUF_TBL_UPD_REG_KER);
307}
308
309/*
310 * Allocate a new Falcon special buffer
311 *
312 * This allocates memory for a new buffer, clears it and allocates a
313 * new buffer ID range. It does not write into Falcon's buffer table.
314 *
315 * This call will allocate 4KB buffers, since Falcon can't use 8KB
316 * buffers for event queues and descriptor rings.
317 */
318static int falcon_alloc_special_buffer(struct efx_nic *efx,
319 struct efx_special_buffer *buffer,
320 unsigned int len)
321{
322 struct falcon_nic_data *nic_data = efx->nic_data;
323
324 len = ALIGN(len, FALCON_BUF_SIZE);
325
326 buffer->addr = pci_alloc_consistent(efx->pci_dev, len,
327 &buffer->dma_addr);
328 if (!buffer->addr)
329 return -ENOMEM;
330 buffer->len = len;
331 buffer->entries = len / FALCON_BUF_SIZE;
332 BUG_ON(buffer->dma_addr & (FALCON_BUF_SIZE - 1));
333
334 /* All zeros is a potentially valid event so memset to 0xff */
335 memset(buffer->addr, 0xff, len);
336
337 /* Select new buffer ID */
338 buffer->index = nic_data->next_buffer_table;
339 nic_data->next_buffer_table += buffer->entries;
340
341 EFX_LOG(efx, "allocating special buffers %d-%d at %llx+%x "
Jaswinder Singh Rajput9c8976a2009-02-11 23:49:52 +0530342 "(virt %p phys %llx)\n", buffer->index,
Ben Hutchings8ceee662008-04-27 12:55:59 +0100343 buffer->index + buffer->entries - 1,
Jaswinder Singh Rajput9c8976a2009-02-11 23:49:52 +0530344 (u64)buffer->dma_addr, len,
345 buffer->addr, (u64)virt_to_phys(buffer->addr));
Ben Hutchings8ceee662008-04-27 12:55:59 +0100346
347 return 0;
348}
349
350static void falcon_free_special_buffer(struct efx_nic *efx,
351 struct efx_special_buffer *buffer)
352{
353 if (!buffer->addr)
354 return;
355
356 EFX_LOG(efx, "deallocating special buffers %d-%d at %llx+%x "
Jaswinder Singh Rajput9c8976a2009-02-11 23:49:52 +0530357 "(virt %p phys %llx)\n", buffer->index,
Ben Hutchings8ceee662008-04-27 12:55:59 +0100358 buffer->index + buffer->entries - 1,
Jaswinder Singh Rajput9c8976a2009-02-11 23:49:52 +0530359 (u64)buffer->dma_addr, buffer->len,
360 buffer->addr, (u64)virt_to_phys(buffer->addr));
Ben Hutchings8ceee662008-04-27 12:55:59 +0100361
362 pci_free_consistent(efx->pci_dev, buffer->len, buffer->addr,
363 buffer->dma_addr);
364 buffer->addr = NULL;
365 buffer->entries = 0;
366}
367
368/**************************************************************************
369 *
370 * Falcon generic buffer handling
371 * These buffers are used for interrupt status and MAC stats
372 *
373 **************************************************************************/
374
375static int falcon_alloc_buffer(struct efx_nic *efx,
376 struct efx_buffer *buffer, unsigned int len)
377{
378 buffer->addr = pci_alloc_consistent(efx->pci_dev, len,
379 &buffer->dma_addr);
380 if (!buffer->addr)
381 return -ENOMEM;
382 buffer->len = len;
383 memset(buffer->addr, 0, len);
384 return 0;
385}
386
387static void falcon_free_buffer(struct efx_nic *efx, struct efx_buffer *buffer)
388{
389 if (buffer->addr) {
390 pci_free_consistent(efx->pci_dev, buffer->len,
391 buffer->addr, buffer->dma_addr);
392 buffer->addr = NULL;
393 }
394}
395
396/**************************************************************************
397 *
398 * Falcon TX path
399 *
400 **************************************************************************/
401
402/* Returns a pointer to the specified transmit descriptor in the TX
403 * descriptor queue belonging to the specified channel.
404 */
405static inline efx_qword_t *falcon_tx_desc(struct efx_tx_queue *tx_queue,
406 unsigned int index)
407{
408 return (((efx_qword_t *) (tx_queue->txd.addr)) + index);
409}
410
411/* This writes to the TX_DESC_WPTR; write pointer for TX descriptor ring */
412static inline void falcon_notify_tx_desc(struct efx_tx_queue *tx_queue)
413{
414 unsigned write_ptr;
415 efx_dword_t reg;
416
417 write_ptr = tx_queue->write_count & FALCON_TXD_RING_MASK;
418 EFX_POPULATE_DWORD_1(reg, TX_DESC_WPTR_DWORD, write_ptr);
419 falcon_writel_page(tx_queue->efx, &reg,
420 TX_DESC_UPD_REG_KER_DWORD, tx_queue->queue);
421}
422
423
424/* For each entry inserted into the software descriptor ring, create a
425 * descriptor in the hardware TX descriptor ring (in host memory), and
426 * write a doorbell.
427 */
428void falcon_push_buffers(struct efx_tx_queue *tx_queue)
429{
430
431 struct efx_tx_buffer *buffer;
432 efx_qword_t *txd;
433 unsigned write_ptr;
434
435 BUG_ON(tx_queue->write_count == tx_queue->insert_count);
436
437 do {
438 write_ptr = tx_queue->write_count & FALCON_TXD_RING_MASK;
439 buffer = &tx_queue->buffer[write_ptr];
440 txd = falcon_tx_desc(tx_queue, write_ptr);
441 ++tx_queue->write_count;
442
443 /* Create TX descriptor ring entry */
444 EFX_POPULATE_QWORD_5(*txd,
445 TX_KER_PORT, 0,
446 TX_KER_CONT, buffer->continuation,
447 TX_KER_BYTE_CNT, buffer->len,
448 TX_KER_BUF_REGION, 0,
449 TX_KER_BUF_ADR, buffer->dma_addr);
450 } while (tx_queue->write_count != tx_queue->insert_count);
451
452 wmb(); /* Ensure descriptors are written before they are fetched */
453 falcon_notify_tx_desc(tx_queue);
454}
455
456/* Allocate hardware resources for a TX queue */
457int falcon_probe_tx(struct efx_tx_queue *tx_queue)
458{
459 struct efx_nic *efx = tx_queue->efx;
460 return falcon_alloc_special_buffer(efx, &tx_queue->txd,
461 FALCON_TXD_RING_SIZE *
462 sizeof(efx_qword_t));
463}
464
Ben Hutchingsbc3c90a2008-09-01 12:48:46 +0100465void falcon_init_tx(struct efx_tx_queue *tx_queue)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100466{
467 efx_oword_t tx_desc_ptr;
468 struct efx_nic *efx = tx_queue->efx;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100469
Ben Hutchings6bc5d3a2008-09-01 12:49:37 +0100470 tx_queue->flushed = false;
471
Ben Hutchings8ceee662008-04-27 12:55:59 +0100472 /* Pin TX descriptor ring */
Ben Hutchingsbc3c90a2008-09-01 12:48:46 +0100473 falcon_init_special_buffer(efx, &tx_queue->txd);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100474
475 /* Push TX descriptor ring to card */
476 EFX_POPULATE_OWORD_10(tx_desc_ptr,
477 TX_DESCQ_EN, 1,
478 TX_ISCSI_DDIG_EN, 0,
479 TX_ISCSI_HDIG_EN, 0,
480 TX_DESCQ_BUF_BASE_ID, tx_queue->txd.index,
Ben Hutchingsd3074022008-09-01 12:48:03 +0100481 TX_DESCQ_EVQ_ID, tx_queue->channel->channel,
Ben Hutchings8ceee662008-04-27 12:55:59 +0100482 TX_DESCQ_OWNER_ID, 0,
483 TX_DESCQ_LABEL, tx_queue->queue,
484 TX_DESCQ_SIZE, FALCON_TXD_RING_ORDER,
485 TX_DESCQ_TYPE, 0,
486 TX_NON_IP_DROP_DIS_B0, 1);
487
Ben Hutchings55668612008-05-16 21:16:10 +0100488 if (falcon_rev(efx) >= FALCON_REV_B0) {
Ben Hutchings60ac1062008-09-01 12:44:59 +0100489 int csum = tx_queue->queue == EFX_TX_QUEUE_OFFLOAD_CSUM;
490 EFX_SET_OWORD_FIELD(tx_desc_ptr, TX_IP_CHKSM_DIS_B0, !csum);
491 EFX_SET_OWORD_FIELD(tx_desc_ptr, TX_TCP_CHKSM_DIS_B0, !csum);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100492 }
493
494 falcon_write_table(efx, &tx_desc_ptr, efx->type->txd_ptr_tbl_base,
495 tx_queue->queue);
496
Ben Hutchings55668612008-05-16 21:16:10 +0100497 if (falcon_rev(efx) < FALCON_REV_B0) {
Ben Hutchings8ceee662008-04-27 12:55:59 +0100498 efx_oword_t reg;
499
Ben Hutchings60ac1062008-09-01 12:44:59 +0100500 /* Only 128 bits in this register */
501 BUILD_BUG_ON(EFX_TX_QUEUE_COUNT >= 128);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100502
503 falcon_read(efx, &reg, TX_CHKSM_CFG_REG_KER_A1);
Ben Hutchings60ac1062008-09-01 12:44:59 +0100504 if (tx_queue->queue == EFX_TX_QUEUE_OFFLOAD_CSUM)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100505 clear_bit_le(tx_queue->queue, (void *)&reg);
506 else
507 set_bit_le(tx_queue->queue, (void *)&reg);
508 falcon_write(efx, &reg, TX_CHKSM_CFG_REG_KER_A1);
509 }
Ben Hutchings8ceee662008-04-27 12:55:59 +0100510}
511
Ben Hutchings6bc5d3a2008-09-01 12:49:37 +0100512static void falcon_flush_tx_queue(struct efx_tx_queue *tx_queue)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100513{
514 struct efx_nic *efx = tx_queue->efx;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100515 efx_oword_t tx_flush_descq;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100516
517 /* Post a flush command */
518 EFX_POPULATE_OWORD_2(tx_flush_descq,
519 TX_FLUSH_DESCQ_CMD, 1,
520 TX_FLUSH_DESCQ, tx_queue->queue);
521 falcon_write(efx, &tx_flush_descq, TX_FLUSH_DESCQ_REG_KER);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100522}
523
524void falcon_fini_tx(struct efx_tx_queue *tx_queue)
525{
526 struct efx_nic *efx = tx_queue->efx;
527 efx_oword_t tx_desc_ptr;
528
Ben Hutchings6bc5d3a2008-09-01 12:49:37 +0100529 /* The queue should have been flushed */
530 WARN_ON(!tx_queue->flushed);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100531
532 /* Remove TX descriptor ring from card */
533 EFX_ZERO_OWORD(tx_desc_ptr);
534 falcon_write_table(efx, &tx_desc_ptr, efx->type->txd_ptr_tbl_base,
535 tx_queue->queue);
536
537 /* Unpin TX descriptor ring */
538 falcon_fini_special_buffer(efx, &tx_queue->txd);
539}
540
541/* Free buffers backing TX queue */
542void falcon_remove_tx(struct efx_tx_queue *tx_queue)
543{
544 falcon_free_special_buffer(tx_queue->efx, &tx_queue->txd);
545}
546
547/**************************************************************************
548 *
549 * Falcon RX path
550 *
551 **************************************************************************/
552
553/* Returns a pointer to the specified descriptor in the RX descriptor queue */
554static inline efx_qword_t *falcon_rx_desc(struct efx_rx_queue *rx_queue,
555 unsigned int index)
556{
557 return (((efx_qword_t *) (rx_queue->rxd.addr)) + index);
558}
559
560/* This creates an entry in the RX descriptor queue */
561static inline void falcon_build_rx_desc(struct efx_rx_queue *rx_queue,
562 unsigned index)
563{
564 struct efx_rx_buffer *rx_buf;
565 efx_qword_t *rxd;
566
567 rxd = falcon_rx_desc(rx_queue, index);
568 rx_buf = efx_rx_buffer(rx_queue, index);
569 EFX_POPULATE_QWORD_3(*rxd,
570 RX_KER_BUF_SIZE,
571 rx_buf->len -
572 rx_queue->efx->type->rx_buffer_padding,
573 RX_KER_BUF_REGION, 0,
574 RX_KER_BUF_ADR, rx_buf->dma_addr);
575}
576
577/* This writes to the RX_DESC_WPTR register for the specified receive
578 * descriptor ring.
579 */
580void falcon_notify_rx_desc(struct efx_rx_queue *rx_queue)
581{
582 efx_dword_t reg;
583 unsigned write_ptr;
584
585 while (rx_queue->notified_count != rx_queue->added_count) {
586 falcon_build_rx_desc(rx_queue,
587 rx_queue->notified_count &
588 FALCON_RXD_RING_MASK);
589 ++rx_queue->notified_count;
590 }
591
592 wmb();
593 write_ptr = rx_queue->added_count & FALCON_RXD_RING_MASK;
594 EFX_POPULATE_DWORD_1(reg, RX_DESC_WPTR_DWORD, write_ptr);
595 falcon_writel_page(rx_queue->efx, &reg,
596 RX_DESC_UPD_REG_KER_DWORD, rx_queue->queue);
597}
598
599int falcon_probe_rx(struct efx_rx_queue *rx_queue)
600{
601 struct efx_nic *efx = rx_queue->efx;
602 return falcon_alloc_special_buffer(efx, &rx_queue->rxd,
603 FALCON_RXD_RING_SIZE *
604 sizeof(efx_qword_t));
605}
606
Ben Hutchingsbc3c90a2008-09-01 12:48:46 +0100607void falcon_init_rx(struct efx_rx_queue *rx_queue)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100608{
609 efx_oword_t rx_desc_ptr;
610 struct efx_nic *efx = rx_queue->efx;
Ben Hutchingsdc8cfa52008-09-01 12:46:50 +0100611 bool is_b0 = falcon_rev(efx) >= FALCON_REV_B0;
612 bool iscsi_digest_en = is_b0;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100613
614 EFX_LOG(efx, "RX queue %d ring in special buffers %d-%d\n",
615 rx_queue->queue, rx_queue->rxd.index,
616 rx_queue->rxd.index + rx_queue->rxd.entries - 1);
617
Ben Hutchings6bc5d3a2008-09-01 12:49:37 +0100618 rx_queue->flushed = false;
619
Ben Hutchings8ceee662008-04-27 12:55:59 +0100620 /* Pin RX descriptor ring */
Ben Hutchingsbc3c90a2008-09-01 12:48:46 +0100621 falcon_init_special_buffer(efx, &rx_queue->rxd);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100622
623 /* Push RX descriptor ring to card */
624 EFX_POPULATE_OWORD_10(rx_desc_ptr,
625 RX_ISCSI_DDIG_EN, iscsi_digest_en,
626 RX_ISCSI_HDIG_EN, iscsi_digest_en,
627 RX_DESCQ_BUF_BASE_ID, rx_queue->rxd.index,
Ben Hutchingsd3074022008-09-01 12:48:03 +0100628 RX_DESCQ_EVQ_ID, rx_queue->channel->channel,
Ben Hutchings8ceee662008-04-27 12:55:59 +0100629 RX_DESCQ_OWNER_ID, 0,
630 RX_DESCQ_LABEL, rx_queue->queue,
631 RX_DESCQ_SIZE, FALCON_RXD_RING_ORDER,
632 RX_DESCQ_TYPE, 0 /* kernel queue */ ,
633 /* For >=B0 this is scatter so disable */
634 RX_DESCQ_JUMBO, !is_b0,
635 RX_DESCQ_EN, 1);
636 falcon_write_table(efx, &rx_desc_ptr, efx->type->rxd_ptr_tbl_base,
637 rx_queue->queue);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100638}
639
Ben Hutchings6bc5d3a2008-09-01 12:49:37 +0100640static void falcon_flush_rx_queue(struct efx_rx_queue *rx_queue)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100641{
642 struct efx_nic *efx = rx_queue->efx;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100643 efx_oword_t rx_flush_descq;
644
645 /* Post a flush command */
646 EFX_POPULATE_OWORD_2(rx_flush_descq,
647 RX_FLUSH_DESCQ_CMD, 1,
648 RX_FLUSH_DESCQ, rx_queue->queue);
649 falcon_write(efx, &rx_flush_descq, RX_FLUSH_DESCQ_REG_KER);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100650}
651
652void falcon_fini_rx(struct efx_rx_queue *rx_queue)
653{
654 efx_oword_t rx_desc_ptr;
655 struct efx_nic *efx = rx_queue->efx;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100656
Ben Hutchings6bc5d3a2008-09-01 12:49:37 +0100657 /* The queue should already have been flushed */
658 WARN_ON(!rx_queue->flushed);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100659
660 /* Remove RX descriptor ring from card */
661 EFX_ZERO_OWORD(rx_desc_ptr);
662 falcon_write_table(efx, &rx_desc_ptr, efx->type->rxd_ptr_tbl_base,
663 rx_queue->queue);
664
665 /* Unpin RX descriptor ring */
666 falcon_fini_special_buffer(efx, &rx_queue->rxd);
667}
668
669/* Free buffers backing RX queue */
670void falcon_remove_rx(struct efx_rx_queue *rx_queue)
671{
672 falcon_free_special_buffer(rx_queue->efx, &rx_queue->rxd);
673}
674
675/**************************************************************************
676 *
677 * Falcon event queue processing
678 * Event queues are processed by per-channel tasklets.
679 *
680 **************************************************************************/
681
682/* Update a channel's event queue's read pointer (RPTR) register
683 *
684 * This writes the EVQ_RPTR_REG register for the specified channel's
685 * event queue.
686 *
687 * Note that EVQ_RPTR_REG contains the index of the "last read" event,
688 * whereas channel->eventq_read_ptr contains the index of the "next to
689 * read" event.
690 */
691void falcon_eventq_read_ack(struct efx_channel *channel)
692{
693 efx_dword_t reg;
694 struct efx_nic *efx = channel->efx;
695
696 EFX_POPULATE_DWORD_1(reg, EVQ_RPTR_DWORD, channel->eventq_read_ptr);
697 falcon_writel_table(efx, &reg, efx->type->evq_rptr_tbl_base,
Ben Hutchingsd3074022008-09-01 12:48:03 +0100698 channel->channel);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100699}
700
701/* Use HW to insert a SW defined event */
702void falcon_generate_event(struct efx_channel *channel, efx_qword_t *event)
703{
704 efx_oword_t drv_ev_reg;
705
706 EFX_POPULATE_OWORD_2(drv_ev_reg,
Ben Hutchingsd3074022008-09-01 12:48:03 +0100707 DRV_EV_QID, channel->channel,
Ben Hutchings8ceee662008-04-27 12:55:59 +0100708 DRV_EV_DATA,
709 EFX_QWORD_FIELD64(*event, WHOLE_EVENT));
710 falcon_write(channel->efx, &drv_ev_reg, DRV_EV_REG_KER);
711}
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
726 if (likely(EFX_QWORD_FIELD(*event, TX_EV_COMP))) {
727 /* Transmit completion */
728 tx_ev_desc_ptr = EFX_QWORD_FIELD(*event, TX_EV_DESC_PTR);
729 tx_ev_q_label = EFX_QWORD_FIELD(*event, TX_EV_Q_LABEL);
730 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) &
733 efx->type->txd_ring_mask;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100734 efx_xmit_done(tx_queue, tx_ev_desc_ptr);
735 } else if (EFX_QWORD_FIELD(*event, TX_EV_WQ_FF_FULL)) {
736 /* Rewrite the FIFO write pointer */
737 tx_ev_q_label = EFX_QWORD_FIELD(*event, TX_EV_Q_LABEL);
738 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);
745 } else if (EFX_QWORD_FIELD(*event, TX_EV_PKT_ERR) &&
746 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
769 rx_ev_hdr_type = EFX_QWORD_FIELD(*event, RX_EV_HDR_TYPE);
770 rx_ev_mcast_pkt = EFX_QWORD_FIELD(*event, RX_EV_MCAST_PKT);
771 rx_ev_tobe_disc = EFX_QWORD_FIELD(*event, RX_EV_TOBE_DISC);
772 rx_ev_pkt_type = EFX_QWORD_FIELD(*event, RX_EV_PKT_TYPE);
773 rx_ev_buf_owner_id_err = EFX_QWORD_FIELD(*event,
774 RX_EV_BUF_OWNER_ID_ERR);
775 rx_ev_ip_frag_err = EFX_QWORD_FIELD(*event, RX_EV_IF_FRAG_ERR);
776 rx_ev_ip_hdr_chksum_err = EFX_QWORD_FIELD(*event,
777 RX_EV_IP_HDR_CHKSUM_ERR);
778 rx_ev_tcp_udp_chksum_err = EFX_QWORD_FIELD(*event,
779 RX_EV_TCP_UDP_CHKSUM_ERR);
780 rx_ev_eth_crc_err = EFX_QWORD_FIELD(*event, RX_EV_ETH_CRC_ERR);
781 rx_ev_frm_trunc = EFX_QWORD_FIELD(*event, RX_EV_FRM_TRUNC);
Ben Hutchings55668612008-05-16 21:16:10 +0100782 rx_ev_drib_nib = ((falcon_rev(efx) >= FALCON_REV_B0) ?
Ben Hutchings8ceee662008-04-27 12:55:59 +0100783 0 : EFX_QWORD_FIELD(*event, RX_EV_DRIB_NIB));
784 rx_ev_pause_frm = EFX_QWORD_FIELD(*event, RX_EV_PAUSE_FRM_ERR);
785
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
840 expected = rx_queue->removed_count & FALCON_RXD_RING_MASK;
841 dropped = ((index + FALCON_RXD_RING_SIZE - expected) &
842 FALCON_RXD_RING_MASK);
843 EFX_INFO(efx, "dropped %d events (index=%d expected=%d)\n",
844 dropped, index, expected);
845
846 efx_schedule_reset(efx, EFX_WORKAROUND_5676(efx) ?
847 RESET_TYPE_RX_RECOVERY : RESET_TYPE_DISABLE);
848}
849
850/* Handle a packet received event
851 *
852 * Falcon silicon gives a "discard" flag if it's a unicast packet with the
853 * wrong destination address
854 * Also "is multicast" and "matches multicast filter" flags can be used to
855 * discard non-matching multicast packets.
856 */
Ben Hutchings42cbe2d2008-09-01 12:48:08 +0100857static void falcon_handle_rx_event(struct efx_channel *channel,
858 const efx_qword_t *event)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100859{
Ben Hutchings42cbe2d2008-09-01 12:48:08 +0100860 unsigned int rx_ev_desc_ptr, rx_ev_byte_cnt;
Ben Hutchingsdc8cfa52008-09-01 12:46:50 +0100861 unsigned int rx_ev_hdr_type, rx_ev_mcast_pkt;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100862 unsigned expected_ptr;
Ben Hutchingsdc8cfa52008-09-01 12:46:50 +0100863 bool rx_ev_pkt_ok, discard = false, checksummed;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100864 struct efx_rx_queue *rx_queue;
865 struct efx_nic *efx = channel->efx;
866
867 /* Basic packet information */
868 rx_ev_byte_cnt = EFX_QWORD_FIELD(*event, RX_EV_BYTE_CNT);
869 rx_ev_pkt_ok = EFX_QWORD_FIELD(*event, RX_EV_PKT_OK);
870 rx_ev_hdr_type = EFX_QWORD_FIELD(*event, RX_EV_HDR_TYPE);
871 WARN_ON(EFX_QWORD_FIELD(*event, RX_EV_JUMBO_CONT));
872 WARN_ON(EFX_QWORD_FIELD(*event, RX_EV_SOP) != 1);
Ben Hutchings42cbe2d2008-09-01 12:48:08 +0100873 WARN_ON(EFX_QWORD_FIELD(*event, RX_EV_Q_LABEL) != 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
877 rx_ev_desc_ptr = EFX_QWORD_FIELD(*event, RX_EV_DESC_PTR);
878 expected_ptr = rx_queue->removed_count & FALCON_RXD_RING_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 */
886 checksummed = RX_EV_HDR_TYPE_HAS_CHECKSUMS(rx_ev_hdr_type);
887 } else {
888 falcon_handle_rx_not_ok(rx_queue, event, &rx_ev_pkt_ok,
Ben Hutchings5b39fe32008-09-01 12:46:03 +0100889 &discard);
Ben Hutchingsdc8cfa52008-09-01 12:46:50 +0100890 checksummed = false;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100891 }
892
893 /* Detect multicast packets that didn't match the filter */
894 rx_ev_mcast_pkt = EFX_QWORD_FIELD(*event, RX_EV_MCAST_PKT);
895 if (rx_ev_mcast_pkt) {
896 unsigned int rx_ev_mcast_hash_match =
897 EFX_QWORD_FIELD(*event, RX_EV_MCAST_HASH_MATCH);
898
899 if (unlikely(!rx_ev_mcast_hash_match))
Ben Hutchingsdc8cfa52008-09-01 12:46:50 +0100900 discard = true;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100901 }
902
Ben Hutchings6fb70fd2009-03-20 13:30:37 +0000903 channel->irq_mod_score += 2;
904
Ben Hutchings8ceee662008-04-27 12:55:59 +0100905 /* Handle received packet */
906 efx_rx_packet(rx_queue, rx_ev_desc_ptr, rx_ev_byte_cnt,
907 checksummed, discard);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100908}
909
910/* Global events are basically PHY events */
911static void falcon_handle_global_event(struct efx_channel *channel,
912 efx_qword_t *event)
913{
914 struct efx_nic *efx = channel->efx;
Ben Hutchings766ca0f2008-12-12 21:59:24 -0800915 bool handled = false;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100916
Ben Hutchings8ceee662008-04-27 12:55:59 +0100917 if (EFX_QWORD_FIELD(*event, G_PHY0_INTR) ||
918 EFX_QWORD_FIELD(*event, G_PHY1_INTR) ||
Ben Hutchings766ca0f2008-12-12 21:59:24 -0800919 EFX_QWORD_FIELD(*event, XG_PHY_INTR) ||
920 EFX_QWORD_FIELD(*event, XFP_PHY_INTR)) {
921 efx->phy_op->clear_interrupt(efx);
922 queue_work(efx->workqueue, &efx->phy_work);
923 handled = true;
924 }
Ben Hutchings8ceee662008-04-27 12:55:59 +0100925
Ben Hutchings55668612008-05-16 21:16:10 +0100926 if ((falcon_rev(efx) >= FALCON_REV_B0) &&
Ben Hutchings766ca0f2008-12-12 21:59:24 -0800927 EFX_QWORD_FIELD(*event, XG_MNT_INTR_B0)) {
928 queue_work(efx->workqueue, &efx->mac_work);
Ben Hutchingsdc8cfa52008-09-01 12:46:50 +0100929 handled = true;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100930 }
931
932 if (EFX_QWORD_FIELD_VER(efx, *event, RX_RECOVERY)) {
933 EFX_ERR(efx, "channel %d seen global RX_RESET "
934 "event. Resetting.\n", channel->channel);
935
936 atomic_inc(&efx->rx_reset);
937 efx_schedule_reset(efx, EFX_WORKAROUND_6555(efx) ?
938 RESET_TYPE_RX_RECOVERY : RESET_TYPE_DISABLE);
Ben Hutchingsdc8cfa52008-09-01 12:46:50 +0100939 handled = true;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100940 }
941
942 if (!handled)
943 EFX_ERR(efx, "channel %d unknown global event "
944 EFX_QWORD_FMT "\n", channel->channel,
945 EFX_QWORD_VAL(*event));
946}
947
948static void falcon_handle_driver_event(struct efx_channel *channel,
949 efx_qword_t *event)
950{
951 struct efx_nic *efx = channel->efx;
952 unsigned int ev_sub_code;
953 unsigned int ev_sub_data;
954
955 ev_sub_code = EFX_QWORD_FIELD(*event, DRIVER_EV_SUB_CODE);
956 ev_sub_data = EFX_QWORD_FIELD(*event, DRIVER_EV_SUB_DATA);
957
958 switch (ev_sub_code) {
959 case TX_DESCQ_FLS_DONE_EV_DECODE:
960 EFX_TRACE(efx, "channel %d TXQ %d flushed\n",
961 channel->channel, ev_sub_data);
962 break;
963 case RX_DESCQ_FLS_DONE_EV_DECODE:
964 EFX_TRACE(efx, "channel %d RXQ %d flushed\n",
965 channel->channel, ev_sub_data);
966 break;
967 case EVQ_INIT_DONE_EV_DECODE:
968 EFX_LOG(efx, "channel %d EVQ %d initialised\n",
969 channel->channel, ev_sub_data);
970 break;
971 case SRM_UPD_DONE_EV_DECODE:
972 EFX_TRACE(efx, "channel %d SRAM update done\n",
973 channel->channel);
974 break;
975 case WAKE_UP_EV_DECODE:
976 EFX_TRACE(efx, "channel %d RXQ %d wakeup event\n",
977 channel->channel, ev_sub_data);
978 break;
979 case TIMER_EV_DECODE:
980 EFX_TRACE(efx, "channel %d RX queue %d timer expired\n",
981 channel->channel, ev_sub_data);
982 break;
983 case RX_RECOVERY_EV_DECODE:
984 EFX_ERR(efx, "channel %d seen DRIVER RX_RESET event. "
985 "Resetting.\n", channel->channel);
Ben Hutchings05e3ec02008-05-07 13:00:39 +0100986 atomic_inc(&efx->rx_reset);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100987 efx_schedule_reset(efx,
988 EFX_WORKAROUND_6555(efx) ?
989 RESET_TYPE_RX_RECOVERY :
990 RESET_TYPE_DISABLE);
991 break;
992 case RX_DSC_ERROR_EV_DECODE:
993 EFX_ERR(efx, "RX DMA Q %d reports descriptor fetch error."
994 " RX Q %d is disabled.\n", ev_sub_data, ev_sub_data);
995 efx_schedule_reset(efx, RESET_TYPE_RX_DESC_FETCH);
996 break;
997 case TX_DSC_ERROR_EV_DECODE:
998 EFX_ERR(efx, "TX DMA Q %d reports descriptor fetch error."
999 " TX Q %d is disabled.\n", ev_sub_data, ev_sub_data);
1000 efx_schedule_reset(efx, RESET_TYPE_TX_DESC_FETCH);
1001 break;
1002 default:
1003 EFX_TRACE(efx, "channel %d unknown driver event code %d "
1004 "data %04x\n", channel->channel, ev_sub_code,
1005 ev_sub_data);
1006 break;
1007 }
1008}
1009
Ben Hutchings42cbe2d2008-09-01 12:48:08 +01001010int falcon_process_eventq(struct efx_channel *channel, int rx_quota)
Ben Hutchings8ceee662008-04-27 12:55:59 +01001011{
1012 unsigned int read_ptr;
1013 efx_qword_t event, *p_event;
1014 int ev_code;
Ben Hutchings42cbe2d2008-09-01 12:48:08 +01001015 int rx_packets = 0;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001016
1017 read_ptr = channel->eventq_read_ptr;
1018
1019 do {
1020 p_event = falcon_event(channel, read_ptr);
1021 event = *p_event;
1022
1023 if (!falcon_event_present(&event))
1024 /* End of events */
1025 break;
1026
1027 EFX_TRACE(channel->efx, "channel %d event is "EFX_QWORD_FMT"\n",
1028 channel->channel, EFX_QWORD_VAL(event));
1029
1030 /* Clear this event by marking it all ones */
1031 EFX_SET_QWORD(*p_event);
1032
1033 ev_code = EFX_QWORD_FIELD(event, EV_CODE);
1034
1035 switch (ev_code) {
1036 case RX_IP_EV_DECODE:
Ben Hutchings42cbe2d2008-09-01 12:48:08 +01001037 falcon_handle_rx_event(channel, &event);
1038 ++rx_packets;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001039 break;
1040 case TX_IP_EV_DECODE:
1041 falcon_handle_tx_event(channel, &event);
1042 break;
1043 case DRV_GEN_EV_DECODE:
1044 channel->eventq_magic
1045 = EFX_QWORD_FIELD(event, EVQ_MAGIC);
1046 EFX_LOG(channel->efx, "channel %d received generated "
1047 "event "EFX_QWORD_FMT"\n", channel->channel,
1048 EFX_QWORD_VAL(event));
1049 break;
1050 case GLOBAL_EV_DECODE:
1051 falcon_handle_global_event(channel, &event);
1052 break;
1053 case DRIVER_EV_DECODE:
1054 falcon_handle_driver_event(channel, &event);
1055 break;
1056 default:
1057 EFX_ERR(channel->efx, "channel %d unknown event type %d"
1058 " (data " EFX_QWORD_FMT ")\n", channel->channel,
1059 ev_code, EFX_QWORD_VAL(event));
1060 }
1061
1062 /* Increment read pointer */
1063 read_ptr = (read_ptr + 1) & FALCON_EVQ_MASK;
1064
Ben Hutchings42cbe2d2008-09-01 12:48:08 +01001065 } while (rx_packets < rx_quota);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001066
1067 channel->eventq_read_ptr = read_ptr;
Ben Hutchings42cbe2d2008-09-01 12:48:08 +01001068 return rx_packets;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001069}
1070
1071void falcon_set_int_moderation(struct efx_channel *channel)
1072{
1073 efx_dword_t timer_cmd;
1074 struct efx_nic *efx = channel->efx;
1075
1076 /* Set timer register */
1077 if (channel->irq_moderation) {
1078 /* Round to resolution supported by hardware. The value we
1079 * program is based at 0. So actual interrupt moderation
1080 * achieved is ((x + 1) * res).
1081 */
Ben Hutchings6fb70fd2009-03-20 13:30:37 +00001082 channel->irq_moderation -= (channel->irq_moderation %
1083 FALCON_IRQ_MOD_RESOLUTION);
1084 if (channel->irq_moderation < FALCON_IRQ_MOD_RESOLUTION)
1085 channel->irq_moderation = FALCON_IRQ_MOD_RESOLUTION;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001086 EFX_POPULATE_DWORD_2(timer_cmd,
1087 TIMER_MODE, TIMER_MODE_INT_HLDOFF,
1088 TIMER_VAL,
Ben Hutchings6fb70fd2009-03-20 13:30:37 +00001089 channel->irq_moderation /
1090 FALCON_IRQ_MOD_RESOLUTION - 1);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001091 } else {
1092 EFX_POPULATE_DWORD_2(timer_cmd,
1093 TIMER_MODE, TIMER_MODE_DIS,
1094 TIMER_VAL, 0);
1095 }
1096 falcon_writel_page_locked(efx, &timer_cmd, TIMER_CMD_REG_KER,
Ben Hutchingsd3074022008-09-01 12:48:03 +01001097 channel->channel);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001098
1099}
1100
1101/* Allocate buffer table entries for event queue */
1102int falcon_probe_eventq(struct efx_channel *channel)
1103{
1104 struct efx_nic *efx = channel->efx;
1105 unsigned int evq_size;
1106
1107 evq_size = FALCON_EVQ_SIZE * sizeof(efx_qword_t);
1108 return falcon_alloc_special_buffer(efx, &channel->eventq, evq_size);
1109}
1110
Ben Hutchingsbc3c90a2008-09-01 12:48:46 +01001111void falcon_init_eventq(struct efx_channel *channel)
Ben Hutchings8ceee662008-04-27 12:55:59 +01001112{
1113 efx_oword_t evq_ptr;
1114 struct efx_nic *efx = channel->efx;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001115
1116 EFX_LOG(efx, "channel %d event queue in special buffers %d-%d\n",
1117 channel->channel, channel->eventq.index,
1118 channel->eventq.index + channel->eventq.entries - 1);
1119
1120 /* Pin event queue buffer */
Ben Hutchingsbc3c90a2008-09-01 12:48:46 +01001121 falcon_init_special_buffer(efx, &channel->eventq);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001122
1123 /* Fill event queue with all ones (i.e. empty events) */
1124 memset(channel->eventq.addr, 0xff, channel->eventq.len);
1125
1126 /* Push event queue to card */
1127 EFX_POPULATE_OWORD_3(evq_ptr,
1128 EVQ_EN, 1,
1129 EVQ_SIZE, FALCON_EVQ_ORDER,
1130 EVQ_BUF_BASE_ID, channel->eventq.index);
1131 falcon_write_table(efx, &evq_ptr, efx->type->evq_ptr_tbl_base,
Ben Hutchingsd3074022008-09-01 12:48:03 +01001132 channel->channel);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001133
1134 falcon_set_int_moderation(channel);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001135}
1136
1137void falcon_fini_eventq(struct efx_channel *channel)
1138{
1139 efx_oword_t eventq_ptr;
1140 struct efx_nic *efx = channel->efx;
1141
1142 /* Remove event queue from card */
1143 EFX_ZERO_OWORD(eventq_ptr);
1144 falcon_write_table(efx, &eventq_ptr, efx->type->evq_ptr_tbl_base,
Ben Hutchingsd3074022008-09-01 12:48:03 +01001145 channel->channel);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001146
1147 /* Unpin event queue */
1148 falcon_fini_special_buffer(efx, &channel->eventq);
1149}
1150
1151/* Free buffers backing event queue */
1152void falcon_remove_eventq(struct efx_channel *channel)
1153{
1154 falcon_free_special_buffer(channel->efx, &channel->eventq);
1155}
1156
1157
1158/* Generates a test event on the event queue. A subsequent call to
1159 * process_eventq() should pick up the event and place the value of
1160 * "magic" into channel->eventq_magic;
1161 */
1162void falcon_generate_test_event(struct efx_channel *channel, unsigned int magic)
1163{
1164 efx_qword_t test_event;
1165
1166 EFX_POPULATE_QWORD_2(test_event,
1167 EV_CODE, DRV_GEN_EV_DECODE,
1168 EVQ_MAGIC, magic);
1169 falcon_generate_event(channel, &test_event);
1170}
1171
Ben Hutchings177dfcd2008-12-12 21:50:08 -08001172void falcon_sim_phy_event(struct efx_nic *efx)
1173{
1174 efx_qword_t phy_event;
1175
1176 EFX_POPULATE_QWORD_1(phy_event, EV_CODE, GLOBAL_EV_DECODE);
1177 if (EFX_IS10G(efx))
Ben Hutchings239795a2009-04-14 19:48:34 -07001178 EFX_SET_QWORD_FIELD(phy_event, XG_PHY_INTR, 1);
Ben Hutchings177dfcd2008-12-12 21:50:08 -08001179 else
Ben Hutchings239795a2009-04-14 19:48:34 -07001180 EFX_SET_QWORD_FIELD(phy_event, G_PHY0_INTR, 1);
Ben Hutchings177dfcd2008-12-12 21:50:08 -08001181
1182 falcon_generate_event(&efx->channel[0], &phy_event);
1183}
1184
Ben Hutchings6bc5d3a2008-09-01 12:49:37 +01001185/**************************************************************************
1186 *
1187 * Flush handling
1188 *
1189 **************************************************************************/
1190
1191
1192static void falcon_poll_flush_events(struct efx_nic *efx)
1193{
1194 struct efx_channel *channel = &efx->channel[0];
1195 struct efx_tx_queue *tx_queue;
1196 struct efx_rx_queue *rx_queue;
Ben Hutchings4720bc62009-03-04 10:01:15 +00001197 unsigned int read_ptr = channel->eventq_read_ptr;
1198 unsigned int end_ptr = (read_ptr - 1) & FALCON_EVQ_MASK;
Ben Hutchings6bc5d3a2008-09-01 12:49:37 +01001199
Ben Hutchings4720bc62009-03-04 10:01:15 +00001200 do {
Ben Hutchings6bc5d3a2008-09-01 12:49:37 +01001201 efx_qword_t *event = falcon_event(channel, read_ptr);
1202 int ev_code, ev_sub_code, ev_queue;
1203 bool ev_failed;
Ben Hutchings4720bc62009-03-04 10:01:15 +00001204
Ben Hutchings6bc5d3a2008-09-01 12:49:37 +01001205 if (!falcon_event_present(event))
1206 break;
1207
1208 ev_code = EFX_QWORD_FIELD(*event, EV_CODE);
Ben Hutchings6bc5d3a2008-09-01 12:49:37 +01001209 ev_sub_code = EFX_QWORD_FIELD(*event, DRIVER_EV_SUB_CODE);
Ben Hutchings4720bc62009-03-04 10:01:15 +00001210 if (ev_code == DRIVER_EV_DECODE &&
1211 ev_sub_code == TX_DESCQ_FLS_DONE_EV_DECODE) {
Ben Hutchings6bc5d3a2008-09-01 12:49:37 +01001212 ev_queue = EFX_QWORD_FIELD(*event,
1213 DRIVER_EV_TX_DESCQ_ID);
1214 if (ev_queue < EFX_TX_QUEUE_COUNT) {
1215 tx_queue = efx->tx_queue + ev_queue;
1216 tx_queue->flushed = true;
1217 }
Ben Hutchings4720bc62009-03-04 10:01:15 +00001218 } else if (ev_code == DRIVER_EV_DECODE &&
1219 ev_sub_code == RX_DESCQ_FLS_DONE_EV_DECODE) {
Ben Hutchings6bc5d3a2008-09-01 12:49:37 +01001220 ev_queue = EFX_QWORD_FIELD(*event,
1221 DRIVER_EV_RX_DESCQ_ID);
1222 ev_failed = EFX_QWORD_FIELD(*event,
1223 DRIVER_EV_RX_FLUSH_FAIL);
1224 if (ev_queue < efx->n_rx_queues) {
1225 rx_queue = efx->rx_queue + ev_queue;
1226
1227 /* retry the rx flush */
1228 if (ev_failed)
1229 falcon_flush_rx_queue(rx_queue);
1230 else
1231 rx_queue->flushed = true;
1232 }
Ben Hutchings6bc5d3a2008-09-01 12:49:37 +01001233 }
1234
1235 read_ptr = (read_ptr + 1) & FALCON_EVQ_MASK;
Ben Hutchings4720bc62009-03-04 10:01:15 +00001236 } while (read_ptr != end_ptr);
Ben Hutchings6bc5d3a2008-09-01 12:49:37 +01001237}
1238
1239/* Handle tx and rx flushes at the same time, since they run in
1240 * parallel in the hardware and there's no reason for us to
1241 * serialise them */
1242int falcon_flush_queues(struct efx_nic *efx)
1243{
1244 struct efx_rx_queue *rx_queue;
1245 struct efx_tx_queue *tx_queue;
1246 int i;
1247 bool outstanding;
1248
1249 /* Issue flush requests */
1250 efx_for_each_tx_queue(tx_queue, efx) {
1251 tx_queue->flushed = false;
1252 falcon_flush_tx_queue(tx_queue);
1253 }
1254 efx_for_each_rx_queue(rx_queue, efx) {
1255 rx_queue->flushed = false;
1256 falcon_flush_rx_queue(rx_queue);
1257 }
1258
1259 /* Poll the evq looking for flush completions. Since we're not pushing
1260 * any more rx or tx descriptors at this point, we're in no danger of
1261 * overflowing the evq whilst we wait */
1262 for (i = 0; i < FALCON_FLUSH_POLL_COUNT; ++i) {
1263 msleep(FALCON_FLUSH_INTERVAL);
1264 falcon_poll_flush_events(efx);
1265
1266 /* Check if every queue has been succesfully flushed */
1267 outstanding = false;
1268 efx_for_each_tx_queue(tx_queue, efx)
1269 outstanding |= !tx_queue->flushed;
1270 efx_for_each_rx_queue(rx_queue, efx)
1271 outstanding |= !rx_queue->flushed;
1272 if (!outstanding)
1273 return 0;
1274 }
1275
1276 /* Mark the queues as all flushed. We're going to return failure
1277 * leading to a reset, or fake up success anyway. "flushed" now
1278 * indicates that we tried to flush. */
1279 efx_for_each_tx_queue(tx_queue, efx) {
1280 if (!tx_queue->flushed)
1281 EFX_ERR(efx, "tx queue %d flush command timed out\n",
1282 tx_queue->queue);
1283 tx_queue->flushed = true;
1284 }
1285 efx_for_each_rx_queue(rx_queue, efx) {
1286 if (!rx_queue->flushed)
1287 EFX_ERR(efx, "rx queue %d flush command timed out\n",
1288 rx_queue->queue);
1289 rx_queue->flushed = true;
1290 }
1291
1292 if (EFX_WORKAROUND_7803(efx))
1293 return 0;
1294
1295 return -ETIMEDOUT;
1296}
Ben Hutchings8ceee662008-04-27 12:55:59 +01001297
1298/**************************************************************************
1299 *
1300 * Falcon hardware interrupts
1301 * The hardware interrupt handler does very little work; all the event
1302 * queue processing is carried out by per-channel tasklets.
1303 *
1304 **************************************************************************/
1305
1306/* Enable/disable/generate Falcon interrupts */
1307static inline void falcon_interrupts(struct efx_nic *efx, int enabled,
1308 int force)
1309{
1310 efx_oword_t int_en_reg_ker;
1311
1312 EFX_POPULATE_OWORD_2(int_en_reg_ker,
1313 KER_INT_KER, force,
1314 DRV_INT_EN_KER, enabled);
1315 falcon_write(efx, &int_en_reg_ker, INT_EN_REG_KER);
1316}
1317
1318void falcon_enable_interrupts(struct efx_nic *efx)
1319{
1320 efx_oword_t int_adr_reg_ker;
1321 struct efx_channel *channel;
1322
1323 EFX_ZERO_OWORD(*((efx_oword_t *) efx->irq_status.addr));
1324 wmb(); /* Ensure interrupt vector is clear before interrupts enabled */
1325
1326 /* Program address */
1327 EFX_POPULATE_OWORD_2(int_adr_reg_ker,
1328 NORM_INT_VEC_DIS_KER, EFX_INT_MODE_USE_MSI(efx),
1329 INT_ADR_KER, efx->irq_status.dma_addr);
1330 falcon_write(efx, &int_adr_reg_ker, INT_ADR_REG_KER);
1331
1332 /* Enable interrupts */
1333 falcon_interrupts(efx, 1, 0);
1334
1335 /* Force processing of all the channels to get the EVQ RPTRs up to
1336 date */
Ben Hutchings64ee3122008-09-01 12:47:38 +01001337 efx_for_each_channel(channel, efx)
Ben Hutchings8ceee662008-04-27 12:55:59 +01001338 efx_schedule_channel(channel);
1339}
1340
1341void falcon_disable_interrupts(struct efx_nic *efx)
1342{
1343 /* Disable interrupts */
1344 falcon_interrupts(efx, 0, 0);
1345}
1346
1347/* Generate a Falcon test interrupt
1348 * Interrupt must already have been enabled, otherwise nasty things
1349 * may happen.
1350 */
1351void falcon_generate_interrupt(struct efx_nic *efx)
1352{
1353 falcon_interrupts(efx, 1, 1);
1354}
1355
1356/* Acknowledge a legacy interrupt from Falcon
1357 *
1358 * This acknowledges a legacy (not MSI) interrupt via INT_ACK_KER_REG.
1359 *
1360 * Due to SFC bug 3706 (silicon revision <=A1) reads can be duplicated in the
1361 * BIU. Interrupt acknowledge is read sensitive so must write instead
1362 * (then read to ensure the BIU collector is flushed)
1363 *
1364 * NB most hardware supports MSI interrupts
1365 */
1366static inline void falcon_irq_ack_a1(struct efx_nic *efx)
1367{
1368 efx_dword_t reg;
1369
1370 EFX_POPULATE_DWORD_1(reg, INT_ACK_DUMMY_DATA, 0xb7eb7e);
1371 falcon_writel(efx, &reg, INT_ACK_REG_KER_A1);
1372 falcon_readl(efx, &reg, WORK_AROUND_BROKEN_PCI_READS_REG_KER_A1);
1373}
1374
1375/* Process a fatal interrupt
1376 * Disable bus mastering ASAP and schedule a reset
1377 */
1378static irqreturn_t falcon_fatal_interrupt(struct efx_nic *efx)
1379{
1380 struct falcon_nic_data *nic_data = efx->nic_data;
Ben Hutchingsd3208b52008-05-16 21:20:00 +01001381 efx_oword_t *int_ker = efx->irq_status.addr;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001382 efx_oword_t fatal_intr;
1383 int error, mem_perr;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001384
1385 falcon_read(efx, &fatal_intr, FATAL_INTR_REG_KER);
1386 error = EFX_OWORD_FIELD(fatal_intr, INT_KER_ERROR);
1387
1388 EFX_ERR(efx, "SYSTEM ERROR " EFX_OWORD_FMT " status "
1389 EFX_OWORD_FMT ": %s\n", EFX_OWORD_VAL(*int_ker),
1390 EFX_OWORD_VAL(fatal_intr),
1391 error ? "disabling bus mastering" : "no recognised error");
1392 if (error == 0)
1393 goto out;
1394
1395 /* If this is a memory parity error dump which blocks are offending */
1396 mem_perr = EFX_OWORD_FIELD(fatal_intr, MEM_PERR_INT_KER);
1397 if (mem_perr) {
1398 efx_oword_t reg;
1399 falcon_read(efx, &reg, MEM_STAT_REG_KER);
1400 EFX_ERR(efx, "SYSTEM ERROR: memory parity error "
1401 EFX_OWORD_FMT "\n", EFX_OWORD_VAL(reg));
1402 }
1403
Ben Hutchings0a62f1a2008-09-01 12:50:14 +01001404 /* Disable both devices */
Ben Hutchingsef1bba22008-12-23 03:09:53 +00001405 pci_clear_master(efx->pci_dev);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001406 if (FALCON_IS_DUAL_FUNC(efx))
Ben Hutchingsef1bba22008-12-23 03:09:53 +00001407 pci_clear_master(nic_data->pci_dev2);
Ben Hutchings0a62f1a2008-09-01 12:50:14 +01001408 falcon_disable_interrupts(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001409
Ben Hutchings2c3c3d02009-03-04 10:01:57 +00001410 /* Count errors and reset or disable the NIC accordingly */
1411 if (nic_data->int_error_count == 0 ||
1412 time_after(jiffies, nic_data->int_error_expire)) {
1413 nic_data->int_error_count = 0;
1414 nic_data->int_error_expire =
1415 jiffies + FALCON_INT_ERROR_EXPIRE * HZ;
1416 }
1417 if (++nic_data->int_error_count < FALCON_MAX_INT_ERRORS) {
Ben Hutchings8ceee662008-04-27 12:55:59 +01001418 EFX_ERR(efx, "SYSTEM ERROR - reset scheduled\n");
1419 efx_schedule_reset(efx, RESET_TYPE_INT_ERROR);
1420 } else {
1421 EFX_ERR(efx, "SYSTEM ERROR - max number of errors seen."
1422 "NIC will be disabled\n");
1423 efx_schedule_reset(efx, RESET_TYPE_DISABLE);
1424 }
1425out:
1426 return IRQ_HANDLED;
1427}
1428
1429/* Handle a legacy interrupt from Falcon
1430 * Acknowledges the interrupt and schedule event queue processing.
1431 */
1432static irqreturn_t falcon_legacy_interrupt_b0(int irq, void *dev_id)
1433{
Ben Hutchingsd3208b52008-05-16 21:20:00 +01001434 struct efx_nic *efx = dev_id;
1435 efx_oword_t *int_ker = efx->irq_status.addr;
Ben Hutchingsa9de9a72009-03-20 13:26:41 +00001436 irqreturn_t result = IRQ_NONE;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001437 struct efx_channel *channel;
1438 efx_dword_t reg;
1439 u32 queues;
1440 int syserr;
1441
1442 /* Read the ISR which also ACKs the interrupts */
1443 falcon_readl(efx, &reg, INT_ISR0_B0);
1444 queues = EFX_EXTRACT_DWORD(reg, 0, 31);
1445
1446 /* Check to see if we have a serious error condition */
1447 syserr = EFX_OWORD_FIELD(*int_ker, FATAL_INT);
1448 if (unlikely(syserr))
1449 return falcon_fatal_interrupt(efx);
1450
Ben Hutchings8ceee662008-04-27 12:55:59 +01001451 /* Schedule processing of any interrupting queues */
Ben Hutchingsa9de9a72009-03-20 13:26:41 +00001452 efx_for_each_channel(channel, efx) {
1453 if ((queues & 1) ||
1454 falcon_event_present(
1455 falcon_event(channel, channel->eventq_read_ptr))) {
Ben Hutchings8ceee662008-04-27 12:55:59 +01001456 efx_schedule_channel(channel);
Ben Hutchingsa9de9a72009-03-20 13:26:41 +00001457 result = IRQ_HANDLED;
1458 }
Ben Hutchings8ceee662008-04-27 12:55:59 +01001459 queues >>= 1;
1460 }
1461
Ben Hutchingsa9de9a72009-03-20 13:26:41 +00001462 if (result == IRQ_HANDLED) {
1463 efx->last_irq_cpu = raw_smp_processor_id();
1464 EFX_TRACE(efx, "IRQ %d on CPU %d status " EFX_DWORD_FMT "\n",
1465 irq, raw_smp_processor_id(), EFX_DWORD_VAL(reg));
1466 }
1467
1468 return result;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001469}
1470
1471
1472static irqreturn_t falcon_legacy_interrupt_a1(int irq, void *dev_id)
1473{
Ben Hutchingsd3208b52008-05-16 21:20:00 +01001474 struct efx_nic *efx = dev_id;
1475 efx_oword_t *int_ker = efx->irq_status.addr;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001476 struct efx_channel *channel;
1477 int syserr;
1478 int queues;
1479
1480 /* Check to see if this is our interrupt. If it isn't, we
1481 * exit without having touched the hardware.
1482 */
1483 if (unlikely(EFX_OWORD_IS_ZERO(*int_ker))) {
1484 EFX_TRACE(efx, "IRQ %d on CPU %d not for me\n", irq,
1485 raw_smp_processor_id());
1486 return IRQ_NONE;
1487 }
1488 efx->last_irq_cpu = raw_smp_processor_id();
1489 EFX_TRACE(efx, "IRQ %d on CPU %d status " EFX_OWORD_FMT "\n",
1490 irq, raw_smp_processor_id(), EFX_OWORD_VAL(*int_ker));
1491
1492 /* Check to see if we have a serious error condition */
1493 syserr = EFX_OWORD_FIELD(*int_ker, FATAL_INT);
1494 if (unlikely(syserr))
1495 return falcon_fatal_interrupt(efx);
1496
1497 /* Determine interrupting queues, clear interrupt status
1498 * register and acknowledge the device interrupt.
1499 */
1500 BUILD_BUG_ON(INT_EVQS_WIDTH > EFX_MAX_CHANNELS);
1501 queues = EFX_OWORD_FIELD(*int_ker, INT_EVQS);
1502 EFX_ZERO_OWORD(*int_ker);
1503 wmb(); /* Ensure the vector is cleared before interrupt ack */
1504 falcon_irq_ack_a1(efx);
1505
1506 /* Schedule processing of any interrupting queues */
1507 channel = &efx->channel[0];
1508 while (queues) {
1509 if (queues & 0x01)
1510 efx_schedule_channel(channel);
1511 channel++;
1512 queues >>= 1;
1513 }
1514
1515 return IRQ_HANDLED;
1516}
1517
1518/* Handle an MSI interrupt from Falcon
1519 *
1520 * Handle an MSI hardware interrupt. This routine schedules event
1521 * queue processing. No interrupt acknowledgement cycle is necessary.
1522 * Also, we never need to check that the interrupt is for us, since
1523 * MSI interrupts cannot be shared.
1524 */
1525static irqreturn_t falcon_msi_interrupt(int irq, void *dev_id)
1526{
Ben Hutchingsd3208b52008-05-16 21:20:00 +01001527 struct efx_channel *channel = dev_id;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001528 struct efx_nic *efx = channel->efx;
Ben Hutchingsd3208b52008-05-16 21:20:00 +01001529 efx_oword_t *int_ker = efx->irq_status.addr;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001530 int syserr;
1531
1532 efx->last_irq_cpu = raw_smp_processor_id();
1533 EFX_TRACE(efx, "IRQ %d on CPU %d status " EFX_OWORD_FMT "\n",
1534 irq, raw_smp_processor_id(), EFX_OWORD_VAL(*int_ker));
1535
1536 /* Check to see if we have a serious error condition */
1537 syserr = EFX_OWORD_FIELD(*int_ker, FATAL_INT);
1538 if (unlikely(syserr))
1539 return falcon_fatal_interrupt(efx);
1540
1541 /* Schedule processing of the channel */
1542 efx_schedule_channel(channel);
1543
1544 return IRQ_HANDLED;
1545}
1546
1547
1548/* Setup RSS indirection table.
1549 * This maps from the hash value of the packet to RXQ
1550 */
1551static void falcon_setup_rss_indir_table(struct efx_nic *efx)
1552{
1553 int i = 0;
1554 unsigned long offset;
1555 efx_dword_t dword;
1556
Ben Hutchings55668612008-05-16 21:16:10 +01001557 if (falcon_rev(efx) < FALCON_REV_B0)
Ben Hutchings8ceee662008-04-27 12:55:59 +01001558 return;
1559
1560 for (offset = RX_RSS_INDIR_TBL_B0;
1561 offset < RX_RSS_INDIR_TBL_B0 + 0x800;
1562 offset += 0x10) {
1563 EFX_POPULATE_DWORD_1(dword, RX_RSS_INDIR_ENT_B0,
Ben Hutchings8831da72008-09-01 12:47:48 +01001564 i % efx->n_rx_queues);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001565 falcon_writel(efx, &dword, offset);
1566 i++;
1567 }
1568}
1569
1570/* Hook interrupt handler(s)
1571 * Try MSI and then legacy interrupts.
1572 */
1573int falcon_init_interrupt(struct efx_nic *efx)
1574{
1575 struct efx_channel *channel;
1576 int rc;
1577
1578 if (!EFX_INT_MODE_USE_MSI(efx)) {
1579 irq_handler_t handler;
Ben Hutchings55668612008-05-16 21:16:10 +01001580 if (falcon_rev(efx) >= FALCON_REV_B0)
Ben Hutchings8ceee662008-04-27 12:55:59 +01001581 handler = falcon_legacy_interrupt_b0;
1582 else
1583 handler = falcon_legacy_interrupt_a1;
1584
1585 rc = request_irq(efx->legacy_irq, handler, IRQF_SHARED,
1586 efx->name, efx);
1587 if (rc) {
1588 EFX_ERR(efx, "failed to hook legacy IRQ %d\n",
1589 efx->pci_dev->irq);
1590 goto fail1;
1591 }
1592 return 0;
1593 }
1594
1595 /* Hook MSI or MSI-X interrupt */
Ben Hutchings64ee3122008-09-01 12:47:38 +01001596 efx_for_each_channel(channel, efx) {
Ben Hutchings8ceee662008-04-27 12:55:59 +01001597 rc = request_irq(channel->irq, falcon_msi_interrupt,
1598 IRQF_PROBE_SHARED, /* Not shared */
Ben Hutchings56536e92008-12-12 21:37:02 -08001599 channel->name, channel);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001600 if (rc) {
1601 EFX_ERR(efx, "failed to hook IRQ %d\n", channel->irq);
1602 goto fail2;
1603 }
1604 }
1605
1606 return 0;
1607
1608 fail2:
Ben Hutchings64ee3122008-09-01 12:47:38 +01001609 efx_for_each_channel(channel, efx)
Ben Hutchings8ceee662008-04-27 12:55:59 +01001610 free_irq(channel->irq, channel);
1611 fail1:
1612 return rc;
1613}
1614
1615void falcon_fini_interrupt(struct efx_nic *efx)
1616{
1617 struct efx_channel *channel;
1618 efx_oword_t reg;
1619
1620 /* Disable MSI/MSI-X interrupts */
Ben Hutchings64ee3122008-09-01 12:47:38 +01001621 efx_for_each_channel(channel, efx) {
Ben Hutchings8ceee662008-04-27 12:55:59 +01001622 if (channel->irq)
1623 free_irq(channel->irq, channel);
Ben Hutchingsb3475642008-05-16 21:15:49 +01001624 }
Ben Hutchings8ceee662008-04-27 12:55:59 +01001625
1626 /* ACK legacy interrupt */
Ben Hutchings55668612008-05-16 21:16:10 +01001627 if (falcon_rev(efx) >= FALCON_REV_B0)
Ben Hutchings8ceee662008-04-27 12:55:59 +01001628 falcon_read(efx, &reg, INT_ISR0_B0);
1629 else
1630 falcon_irq_ack_a1(efx);
1631
1632 /* Disable legacy interrupt */
1633 if (efx->legacy_irq)
1634 free_irq(efx->legacy_irq, efx);
1635}
1636
1637/**************************************************************************
1638 *
1639 * EEPROM/flash
1640 *
1641 **************************************************************************
1642 */
1643
Ben Hutchings23d30f02008-12-12 21:56:11 -08001644#define FALCON_SPI_MAX_LEN sizeof(efx_oword_t)
Ben Hutchings8ceee662008-04-27 12:55:59 +01001645
Ben Hutchingsbe4ea892008-12-12 21:33:50 -08001646static int falcon_spi_poll(struct efx_nic *efx)
1647{
1648 efx_oword_t reg;
1649 falcon_read(efx, &reg, EE_SPI_HCMD_REG_KER);
1650 return EFX_OWORD_FIELD(reg, EE_SPI_HCMD_CMD_EN) ? -EBUSY : 0;
1651}
1652
Ben Hutchings8ceee662008-04-27 12:55:59 +01001653/* Wait for SPI command completion */
1654static int falcon_spi_wait(struct efx_nic *efx)
1655{
Ben Hutchingsbe4ea892008-12-12 21:33:50 -08001656 /* Most commands will finish quickly, so we start polling at
1657 * very short intervals. Sometimes the command may have to
1658 * wait for VPD or expansion ROM access outside of our
1659 * control, so we allow up to 100 ms. */
1660 unsigned long timeout = jiffies + 1 + DIV_ROUND_UP(HZ, 10);
1661 int i;
1662
1663 for (i = 0; i < 10; i++) {
1664 if (!falcon_spi_poll(efx))
1665 return 0;
1666 udelay(10);
1667 }
Ben Hutchings8ceee662008-04-27 12:55:59 +01001668
Ben Hutchings4a5b5042008-09-01 12:47:16 +01001669 for (;;) {
Ben Hutchingsbe4ea892008-12-12 21:33:50 -08001670 if (!falcon_spi_poll(efx))
Ben Hutchings8ceee662008-04-27 12:55:59 +01001671 return 0;
Ben Hutchings4a5b5042008-09-01 12:47:16 +01001672 if (time_after_eq(jiffies, timeout)) {
1673 EFX_ERR(efx, "timed out waiting for SPI\n");
1674 return -ETIMEDOUT;
1675 }
Ben Hutchingsbe4ea892008-12-12 21:33:50 -08001676 schedule_timeout_uninterruptible(1);
Ben Hutchings4a5b5042008-09-01 12:47:16 +01001677 }
Ben Hutchings8ceee662008-04-27 12:55:59 +01001678}
1679
Ben Hutchingsf4150722008-11-04 20:34:28 +00001680int falcon_spi_cmd(const struct efx_spi_device *spi,
1681 unsigned int command, int address,
Ben Hutchings23d30f02008-12-12 21:56:11 -08001682 const void *in, void *out, size_t len)
Ben Hutchings8ceee662008-04-27 12:55:59 +01001683{
Ben Hutchings4a5b5042008-09-01 12:47:16 +01001684 struct efx_nic *efx = spi->efx;
1685 bool addressed = (address >= 0);
1686 bool reading = (out != NULL);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001687 efx_oword_t reg;
1688 int rc;
1689
Ben Hutchings4a5b5042008-09-01 12:47:16 +01001690 /* Input validation */
1691 if (len > FALCON_SPI_MAX_LEN)
1692 return -EINVAL;
Ben Hutchingsf4150722008-11-04 20:34:28 +00001693 BUG_ON(!mutex_is_locked(&efx->spi_lock));
Ben Hutchings8ceee662008-04-27 12:55:59 +01001694
Ben Hutchingsbe4ea892008-12-12 21:33:50 -08001695 /* Check that previous command is not still running */
1696 rc = falcon_spi_poll(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001697 if (rc)
1698 return rc;
1699
Ben Hutchings4a5b5042008-09-01 12:47:16 +01001700 /* Program address register, if we have an address */
1701 if (addressed) {
1702 EFX_POPULATE_OWORD_1(reg, EE_SPI_HADR_ADR, address);
1703 falcon_write(efx, &reg, EE_SPI_HADR_REG_KER);
1704 }
Ben Hutchings8ceee662008-04-27 12:55:59 +01001705
Ben Hutchings4a5b5042008-09-01 12:47:16 +01001706 /* Program data register, if we have data */
1707 if (in != NULL) {
1708 memcpy(&reg, in, len);
1709 falcon_write(efx, &reg, EE_SPI_HDATA_REG_KER);
1710 }
1711
1712 /* Issue read/write command */
Ben Hutchings8ceee662008-04-27 12:55:59 +01001713 EFX_POPULATE_OWORD_7(reg,
1714 EE_SPI_HCMD_CMD_EN, 1,
Ben Hutchings4a5b5042008-09-01 12:47:16 +01001715 EE_SPI_HCMD_SF_SEL, spi->device_id,
Ben Hutchings8ceee662008-04-27 12:55:59 +01001716 EE_SPI_HCMD_DABCNT, len,
Ben Hutchings4a5b5042008-09-01 12:47:16 +01001717 EE_SPI_HCMD_READ, reading,
Ben Hutchings8ceee662008-04-27 12:55:59 +01001718 EE_SPI_HCMD_DUBCNT, 0,
Ben Hutchings4a5b5042008-09-01 12:47:16 +01001719 EE_SPI_HCMD_ADBCNT,
1720 (addressed ? spi->addr_len : 0),
Ben Hutchings8ceee662008-04-27 12:55:59 +01001721 EE_SPI_HCMD_ENC, command);
1722 falcon_write(efx, &reg, EE_SPI_HCMD_REG_KER);
1723
Ben Hutchings4a5b5042008-09-01 12:47:16 +01001724 /* Wait for read/write to complete */
Ben Hutchings8ceee662008-04-27 12:55:59 +01001725 rc = falcon_spi_wait(efx);
1726 if (rc)
1727 return rc;
1728
1729 /* Read data */
Ben Hutchings4a5b5042008-09-01 12:47:16 +01001730 if (out != NULL) {
1731 falcon_read(efx, &reg, EE_SPI_HDATA_REG_KER);
1732 memcpy(out, &reg, len);
1733 }
1734
Ben Hutchings8ceee662008-04-27 12:55:59 +01001735 return 0;
1736}
1737
Ben Hutchings23d30f02008-12-12 21:56:11 -08001738static size_t
1739falcon_spi_write_limit(const struct efx_spi_device *spi, size_t start)
Ben Hutchings4a5b5042008-09-01 12:47:16 +01001740{
1741 return min(FALCON_SPI_MAX_LEN,
1742 (spi->block_size - (start & (spi->block_size - 1))));
1743}
1744
1745static inline u8
1746efx_spi_munge_command(const struct efx_spi_device *spi,
1747 const u8 command, const unsigned int address)
1748{
1749 return command | (((address >> 8) & spi->munge_address) << 3);
1750}
1751
Ben Hutchingsbe4ea892008-12-12 21:33:50 -08001752/* Wait up to 10 ms for buffered write completion */
1753int falcon_spi_wait_write(const struct efx_spi_device *spi)
Ben Hutchings4a5b5042008-09-01 12:47:16 +01001754{
Ben Hutchingsbe4ea892008-12-12 21:33:50 -08001755 struct efx_nic *efx = spi->efx;
1756 unsigned long timeout = jiffies + 1 + DIV_ROUND_UP(HZ, 100);
Ben Hutchings4a5b5042008-09-01 12:47:16 +01001757 u8 status;
Ben Hutchingsbe4ea892008-12-12 21:33:50 -08001758 int rc;
Ben Hutchings4a5b5042008-09-01 12:47:16 +01001759
Ben Hutchingsbe4ea892008-12-12 21:33:50 -08001760 for (;;) {
Ben Hutchings4a5b5042008-09-01 12:47:16 +01001761 rc = falcon_spi_cmd(spi, SPI_RDSR, -1, NULL,
1762 &status, sizeof(status));
1763 if (rc)
1764 return rc;
1765 if (!(status & SPI_STATUS_NRDY))
1766 return 0;
Ben Hutchingsbe4ea892008-12-12 21:33:50 -08001767 if (time_after_eq(jiffies, timeout)) {
1768 EFX_ERR(efx, "SPI write timeout on device %d"
1769 " last status=0x%02x\n",
1770 spi->device_id, status);
1771 return -ETIMEDOUT;
1772 }
1773 schedule_timeout_uninterruptible(1);
Ben Hutchings4a5b5042008-09-01 12:47:16 +01001774 }
Ben Hutchings4a5b5042008-09-01 12:47:16 +01001775}
1776
1777int falcon_spi_read(const struct efx_spi_device *spi, loff_t start,
1778 size_t len, size_t *retlen, u8 *buffer)
1779{
Ben Hutchings23d30f02008-12-12 21:56:11 -08001780 size_t block_len, pos = 0;
1781 unsigned int command;
Ben Hutchings4a5b5042008-09-01 12:47:16 +01001782 int rc = 0;
1783
1784 while (pos < len) {
Ben Hutchings23d30f02008-12-12 21:56:11 -08001785 block_len = min(len - pos, FALCON_SPI_MAX_LEN);
Ben Hutchings4a5b5042008-09-01 12:47:16 +01001786
1787 command = efx_spi_munge_command(spi, SPI_READ, start + pos);
1788 rc = falcon_spi_cmd(spi, command, start + pos, NULL,
1789 buffer + pos, block_len);
1790 if (rc)
1791 break;
1792 pos += block_len;
1793
1794 /* Avoid locking up the system */
1795 cond_resched();
1796 if (signal_pending(current)) {
1797 rc = -EINTR;
1798 break;
1799 }
1800 }
1801
1802 if (retlen)
1803 *retlen = pos;
1804 return rc;
1805}
1806
1807int falcon_spi_write(const struct efx_spi_device *spi, loff_t start,
1808 size_t len, size_t *retlen, const u8 *buffer)
1809{
1810 u8 verify_buffer[FALCON_SPI_MAX_LEN];
Ben Hutchings23d30f02008-12-12 21:56:11 -08001811 size_t block_len, pos = 0;
1812 unsigned int command;
Ben Hutchings4a5b5042008-09-01 12:47:16 +01001813 int rc = 0;
1814
1815 while (pos < len) {
1816 rc = falcon_spi_cmd(spi, SPI_WREN, -1, NULL, NULL, 0);
1817 if (rc)
1818 break;
1819
Ben Hutchings23d30f02008-12-12 21:56:11 -08001820 block_len = min(len - pos,
Ben Hutchings4a5b5042008-09-01 12:47:16 +01001821 falcon_spi_write_limit(spi, start + pos));
1822 command = efx_spi_munge_command(spi, SPI_WRITE, start + pos);
1823 rc = falcon_spi_cmd(spi, command, start + pos,
1824 buffer + pos, NULL, block_len);
1825 if (rc)
1826 break;
1827
Ben Hutchingsbe4ea892008-12-12 21:33:50 -08001828 rc = falcon_spi_wait_write(spi);
Ben Hutchings4a5b5042008-09-01 12:47:16 +01001829 if (rc)
1830 break;
1831
1832 command = efx_spi_munge_command(spi, SPI_READ, start + pos);
1833 rc = falcon_spi_cmd(spi, command, start + pos,
1834 NULL, verify_buffer, block_len);
1835 if (memcmp(verify_buffer, buffer + pos, block_len)) {
1836 rc = -EIO;
1837 break;
1838 }
1839
1840 pos += block_len;
1841
1842 /* Avoid locking up the system */
1843 cond_resched();
1844 if (signal_pending(current)) {
1845 rc = -EINTR;
1846 break;
1847 }
1848 }
1849
1850 if (retlen)
1851 *retlen = pos;
1852 return rc;
1853}
1854
Ben Hutchings8ceee662008-04-27 12:55:59 +01001855/**************************************************************************
1856 *
1857 * MAC wrapper
1858 *
1859 **************************************************************************
1860 */
Ben Hutchings177dfcd2008-12-12 21:50:08 -08001861
1862static int falcon_reset_macs(struct efx_nic *efx)
Ben Hutchings8ceee662008-04-27 12:55:59 +01001863{
Ben Hutchings177dfcd2008-12-12 21:50:08 -08001864 efx_oword_t reg;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001865 int count;
1866
Ben Hutchings177dfcd2008-12-12 21:50:08 -08001867 if (falcon_rev(efx) < FALCON_REV_B0) {
1868 /* It's not safe to use GLB_CTL_REG to reset the
1869 * macs, so instead use the internal MAC resets
1870 */
1871 if (!EFX_IS10G(efx)) {
1872 EFX_POPULATE_OWORD_1(reg, GM_SW_RST, 1);
1873 falcon_write(efx, &reg, GM_CFG1_REG);
1874 udelay(1000);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001875
Ben Hutchings177dfcd2008-12-12 21:50:08 -08001876 EFX_POPULATE_OWORD_1(reg, GM_SW_RST, 0);
1877 falcon_write(efx, &reg, GM_CFG1_REG);
1878 udelay(1000);
1879 return 0;
1880 } else {
1881 EFX_POPULATE_OWORD_1(reg, XM_CORE_RST, 1);
1882 falcon_write(efx, &reg, XM_GLB_CFG_REG);
1883
1884 for (count = 0; count < 10000; count++) {
1885 falcon_read(efx, &reg, XM_GLB_CFG_REG);
1886 if (EFX_OWORD_FIELD(reg, XM_CORE_RST) == 0)
1887 return 0;
1888 udelay(10);
1889 }
1890
1891 EFX_ERR(efx, "timed out waiting for XMAC core reset\n");
1892 return -ETIMEDOUT;
1893 }
1894 }
Ben Hutchings8ceee662008-04-27 12:55:59 +01001895
1896 /* MAC stats will fail whilst the TX fifo is draining. Serialise
1897 * the drain sequence with the statistics fetch */
Ben Hutchings1974cc22009-01-29 18:00:07 +00001898 efx_stats_disable(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001899
Ben Hutchings177dfcd2008-12-12 21:50:08 -08001900 falcon_read(efx, &reg, MAC0_CTRL_REG_KER);
1901 EFX_SET_OWORD_FIELD(reg, TXFIFO_DRAIN_EN_B0, 1);
1902 falcon_write(efx, &reg, MAC0_CTRL_REG_KER);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001903
Ben Hutchings177dfcd2008-12-12 21:50:08 -08001904 falcon_read(efx, &reg, GLB_CTL_REG_KER);
1905 EFX_SET_OWORD_FIELD(reg, RST_XGTX, 1);
1906 EFX_SET_OWORD_FIELD(reg, RST_XGRX, 1);
1907 EFX_SET_OWORD_FIELD(reg, RST_EM, 1);
1908 falcon_write(efx, &reg, GLB_CTL_REG_KER);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001909
1910 count = 0;
1911 while (1) {
Ben Hutchings177dfcd2008-12-12 21:50:08 -08001912 falcon_read(efx, &reg, GLB_CTL_REG_KER);
1913 if (!EFX_OWORD_FIELD(reg, RST_XGTX) &&
1914 !EFX_OWORD_FIELD(reg, RST_XGRX) &&
1915 !EFX_OWORD_FIELD(reg, RST_EM)) {
Ben Hutchings8ceee662008-04-27 12:55:59 +01001916 EFX_LOG(efx, "Completed MAC reset after %d loops\n",
1917 count);
1918 break;
1919 }
1920 if (count > 20) {
1921 EFX_ERR(efx, "MAC reset failed\n");
1922 break;
1923 }
1924 count++;
1925 udelay(10);
1926 }
1927
Ben Hutchings1974cc22009-01-29 18:00:07 +00001928 efx_stats_enable(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001929
1930 /* If we've reset the EM block and the link is up, then
1931 * we'll have to kick the XAUI link so the PHY can recover */
Ben Hutchings177dfcd2008-12-12 21:50:08 -08001932 if (efx->link_up && EFX_IS10G(efx) && EFX_WORKAROUND_5147(efx))
Ben Hutchings8ceee662008-04-27 12:55:59 +01001933 falcon_reset_xaui(efx);
Ben Hutchings177dfcd2008-12-12 21:50:08 -08001934
1935 return 0;
1936}
1937
1938void falcon_drain_tx_fifo(struct efx_nic *efx)
1939{
1940 efx_oword_t reg;
1941
1942 if ((falcon_rev(efx) < FALCON_REV_B0) ||
1943 (efx->loopback_mode != LOOPBACK_NONE))
1944 return;
1945
1946 falcon_read(efx, &reg, MAC0_CTRL_REG_KER);
1947 /* There is no point in draining more than once */
1948 if (EFX_OWORD_FIELD(reg, TXFIFO_DRAIN_EN_B0))
1949 return;
1950
1951 falcon_reset_macs(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001952}
1953
1954void falcon_deconfigure_mac_wrapper(struct efx_nic *efx)
1955{
Ben Hutchings177dfcd2008-12-12 21:50:08 -08001956 efx_oword_t reg;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001957
Ben Hutchings55668612008-05-16 21:16:10 +01001958 if (falcon_rev(efx) < FALCON_REV_B0)
Ben Hutchings8ceee662008-04-27 12:55:59 +01001959 return;
1960
1961 /* Isolate the MAC -> RX */
Ben Hutchings177dfcd2008-12-12 21:50:08 -08001962 falcon_read(efx, &reg, RX_CFG_REG_KER);
1963 EFX_SET_OWORD_FIELD(reg, RX_INGR_EN_B0, 0);
1964 falcon_write(efx, &reg, RX_CFG_REG_KER);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001965
1966 if (!efx->link_up)
1967 falcon_drain_tx_fifo(efx);
1968}
1969
1970void falcon_reconfigure_mac_wrapper(struct efx_nic *efx)
1971{
1972 efx_oword_t reg;
1973 int link_speed;
Ben Hutchingsdc8cfa52008-09-01 12:46:50 +01001974 bool tx_fc;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001975
Ben Hutchingsf31a45d2008-12-12 21:43:33 -08001976 switch (efx->link_speed) {
1977 case 10000: link_speed = 3; break;
1978 case 1000: link_speed = 2; break;
1979 case 100: link_speed = 1; break;
1980 default: link_speed = 0; break;
1981 }
Ben Hutchings8ceee662008-04-27 12:55:59 +01001982 /* MAC_LINK_STATUS controls MAC backpressure but doesn't work
1983 * as advertised. Disable to ensure packets are not
1984 * indefinitely held and TX queue can be flushed at any point
1985 * while the link is down. */
1986 EFX_POPULATE_OWORD_5(reg,
1987 MAC_XOFF_VAL, 0xffff /* max pause time */,
1988 MAC_BCAD_ACPT, 1,
1989 MAC_UC_PROM, efx->promiscuous,
1990 MAC_LINK_STATUS, 1, /* always set */
1991 MAC_SPEED, link_speed);
1992 /* On B0, MAC backpressure can be disabled and packets get
1993 * discarded. */
Ben Hutchings55668612008-05-16 21:16:10 +01001994 if (falcon_rev(efx) >= FALCON_REV_B0) {
Ben Hutchings8ceee662008-04-27 12:55:59 +01001995 EFX_SET_OWORD_FIELD(reg, TXFIFO_DRAIN_EN_B0,
1996 !efx->link_up);
1997 }
1998
1999 falcon_write(efx, &reg, MAC0_CTRL_REG_KER);
2000
2001 /* Restore the multicast hash registers. */
2002 falcon_set_multicast_hash(efx);
2003
2004 /* Transmission of pause frames when RX crosses the threshold is
2005 * covered by RX_XOFF_MAC_EN and XM_TX_CFG_REG:XM_FCNTL.
2006 * Action on receipt of pause frames is controller by XM_DIS_FCNTL */
Ben Hutchings04cc8ca2008-12-12 21:50:46 -08002007 tx_fc = !!(efx->link_fc & EFX_FC_TX);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002008 falcon_read(efx, &reg, RX_CFG_REG_KER);
2009 EFX_SET_OWORD_FIELD_VER(efx, reg, RX_XOFF_MAC_EN, tx_fc);
2010
2011 /* Unisolate the MAC -> RX */
Ben Hutchings55668612008-05-16 21:16:10 +01002012 if (falcon_rev(efx) >= FALCON_REV_B0)
Ben Hutchings8ceee662008-04-27 12:55:59 +01002013 EFX_SET_OWORD_FIELD(reg, RX_INGR_EN_B0, 1);
2014 falcon_write(efx, &reg, RX_CFG_REG_KER);
2015}
2016
2017int falcon_dma_stats(struct efx_nic *efx, unsigned int done_offset)
2018{
2019 efx_oword_t reg;
2020 u32 *dma_done;
2021 int i;
2022
2023 if (disable_dma_stats)
2024 return 0;
2025
2026 /* Statistics fetch will fail if the MAC is in TX drain */
Ben Hutchings55668612008-05-16 21:16:10 +01002027 if (falcon_rev(efx) >= FALCON_REV_B0) {
Ben Hutchings8ceee662008-04-27 12:55:59 +01002028 efx_oword_t temp;
2029 falcon_read(efx, &temp, MAC0_CTRL_REG_KER);
2030 if (EFX_OWORD_FIELD(temp, TXFIFO_DRAIN_EN_B0))
2031 return 0;
2032 }
2033
2034 dma_done = (efx->stats_buffer.addr + done_offset);
2035 *dma_done = FALCON_STATS_NOT_DONE;
2036 wmb(); /* ensure done flag is clear */
2037
2038 /* Initiate DMA transfer of stats */
2039 EFX_POPULATE_OWORD_2(reg,
2040 MAC_STAT_DMA_CMD, 1,
2041 MAC_STAT_DMA_ADR,
2042 efx->stats_buffer.dma_addr);
2043 falcon_write(efx, &reg, MAC0_STAT_DMA_REG_KER);
2044
2045 /* Wait for transfer to complete */
2046 for (i = 0; i < 400; i++) {
Ben Hutchings1d0680f2008-09-01 12:50:08 +01002047 if (*(volatile u32 *)dma_done == FALCON_STATS_DONE) {
2048 rmb(); /* Ensure the stats are valid. */
Ben Hutchings8ceee662008-04-27 12:55:59 +01002049 return 0;
Ben Hutchings1d0680f2008-09-01 12:50:08 +01002050 }
Ben Hutchings8ceee662008-04-27 12:55:59 +01002051 udelay(10);
2052 }
2053
2054 EFX_ERR(efx, "timed out waiting for statistics\n");
2055 return -ETIMEDOUT;
2056}
2057
2058/**************************************************************************
2059 *
2060 * PHY access via GMII
2061 *
2062 **************************************************************************
2063 */
2064
Ben Hutchings8ceee662008-04-27 12:55:59 +01002065/* Wait for GMII access to complete */
2066static int falcon_gmii_wait(struct efx_nic *efx)
2067{
2068 efx_dword_t md_stat;
2069 int count;
2070
Ben Hutchings177dfcd2008-12-12 21:50:08 -08002071 /* wait upto 50ms - taken max from datasheet */
2072 for (count = 0; count < 5000; count++) {
Ben Hutchings8ceee662008-04-27 12:55:59 +01002073 falcon_readl(efx, &md_stat, MD_STAT_REG_KER);
2074 if (EFX_DWORD_FIELD(md_stat, MD_BSY) == 0) {
2075 if (EFX_DWORD_FIELD(md_stat, MD_LNFL) != 0 ||
2076 EFX_DWORD_FIELD(md_stat, MD_BSERR) != 0) {
2077 EFX_ERR(efx, "error from GMII access "
2078 EFX_DWORD_FMT"\n",
2079 EFX_DWORD_VAL(md_stat));
2080 return -EIO;
2081 }
2082 return 0;
2083 }
2084 udelay(10);
2085 }
2086 EFX_ERR(efx, "timed out waiting for GMII\n");
2087 return -ETIMEDOUT;
2088}
2089
Ben Hutchings68e7f452009-04-29 08:05:08 +00002090/* Write an MDIO register of a PHY connected to Falcon. */
2091static int falcon_mdio_write(struct net_device *net_dev,
2092 int prtad, int devad, u16 addr, u16 value)
Ben Hutchings8ceee662008-04-27 12:55:59 +01002093{
Ben Hutchings767e4682008-09-01 12:43:14 +01002094 struct efx_nic *efx = netdev_priv(net_dev);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002095 efx_oword_t reg;
Ben Hutchings68e7f452009-04-29 08:05:08 +00002096 int rc;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002097
Ben Hutchings68e7f452009-04-29 08:05:08 +00002098 EFX_REGDUMP(efx, "writing MDIO %d register %d.%d with 0x%04x\n",
2099 prtad, devad, addr, value);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002100
2101 spin_lock_bh(&efx->phy_lock);
2102
Ben Hutchings68e7f452009-04-29 08:05:08 +00002103 /* Check MDIO not currently being accessed */
2104 rc = falcon_gmii_wait(efx);
2105 if (rc)
Ben Hutchings8ceee662008-04-27 12:55:59 +01002106 goto out;
2107
2108 /* Write the address/ID register */
2109 EFX_POPULATE_OWORD_1(reg, MD_PHY_ADR, addr);
2110 falcon_write(efx, &reg, MD_PHY_ADR_REG_KER);
2111
Ben Hutchings68e7f452009-04-29 08:05:08 +00002112 EFX_POPULATE_OWORD_2(reg, MD_PRT_ADR, prtad, MD_DEV_ADR, devad);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002113 falcon_write(efx, &reg, MD_ID_REG_KER);
2114
2115 /* Write data */
2116 EFX_POPULATE_OWORD_1(reg, MD_TXD, value);
2117 falcon_write(efx, &reg, MD_TXD_REG_KER);
2118
2119 EFX_POPULATE_OWORD_2(reg,
2120 MD_WRC, 1,
2121 MD_GC, 0);
2122 falcon_write(efx, &reg, MD_CS_REG_KER);
2123
2124 /* Wait for data to be written */
Ben Hutchings68e7f452009-04-29 08:05:08 +00002125 rc = falcon_gmii_wait(efx);
2126 if (rc) {
Ben Hutchings8ceee662008-04-27 12:55:59 +01002127 /* Abort the write operation */
2128 EFX_POPULATE_OWORD_2(reg,
2129 MD_WRC, 0,
2130 MD_GC, 1);
2131 falcon_write(efx, &reg, MD_CS_REG_KER);
2132 udelay(10);
2133 }
2134
2135 out:
2136 spin_unlock_bh(&efx->phy_lock);
Ben Hutchings68e7f452009-04-29 08:05:08 +00002137 return rc;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002138}
2139
Ben Hutchings68e7f452009-04-29 08:05:08 +00002140/* Read an MDIO register of a PHY connected to Falcon. */
2141static int falcon_mdio_read(struct net_device *net_dev,
2142 int prtad, int devad, u16 addr)
Ben Hutchings8ceee662008-04-27 12:55:59 +01002143{
Ben Hutchings767e4682008-09-01 12:43:14 +01002144 struct efx_nic *efx = netdev_priv(net_dev);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002145 efx_oword_t reg;
Ben Hutchings68e7f452009-04-29 08:05:08 +00002146 int rc;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002147
2148 spin_lock_bh(&efx->phy_lock);
2149
Ben Hutchings68e7f452009-04-29 08:05:08 +00002150 /* Check MDIO not currently being accessed */
2151 rc = falcon_gmii_wait(efx);
2152 if (rc)
Ben Hutchings8ceee662008-04-27 12:55:59 +01002153 goto out;
2154
2155 EFX_POPULATE_OWORD_1(reg, MD_PHY_ADR, addr);
2156 falcon_write(efx, &reg, MD_PHY_ADR_REG_KER);
2157
Ben Hutchings68e7f452009-04-29 08:05:08 +00002158 EFX_POPULATE_OWORD_2(reg, MD_PRT_ADR, prtad, MD_DEV_ADR, devad);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002159 falcon_write(efx, &reg, MD_ID_REG_KER);
2160
2161 /* Request data to be read */
2162 EFX_POPULATE_OWORD_2(reg, MD_RDC, 1, MD_GC, 0);
2163 falcon_write(efx, &reg, MD_CS_REG_KER);
2164
2165 /* Wait for data to become available */
Ben Hutchings68e7f452009-04-29 08:05:08 +00002166 rc = falcon_gmii_wait(efx);
2167 if (rc == 0) {
Ben Hutchings8ceee662008-04-27 12:55:59 +01002168 falcon_read(efx, &reg, MD_RXD_REG_KER);
Ben Hutchings68e7f452009-04-29 08:05:08 +00002169 rc = EFX_OWORD_FIELD(reg, MD_RXD);
2170 EFX_REGDUMP(efx, "read from MDIO %d register %d.%d, got %04x\n",
2171 prtad, devad, addr, rc);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002172 } else {
2173 /* Abort the read operation */
2174 EFX_POPULATE_OWORD_2(reg,
2175 MD_RIC, 0,
2176 MD_GC, 1);
2177 falcon_write(efx, &reg, MD_CS_REG_KER);
2178
Ben Hutchings68e7f452009-04-29 08:05:08 +00002179 EFX_LOG(efx, "read from MDIO %d register %d.%d, got error %d\n",
2180 prtad, devad, addr, rc);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002181 }
2182
2183 out:
2184 spin_unlock_bh(&efx->phy_lock);
Ben Hutchings68e7f452009-04-29 08:05:08 +00002185 return rc;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002186}
2187
2188static int falcon_probe_phy(struct efx_nic *efx)
2189{
2190 switch (efx->phy_type) {
Ben Hutchingse6fa2eb2008-12-12 22:00:17 -08002191 case PHY_TYPE_SFX7101:
2192 efx->phy_op = &falcon_sfx7101_phy_ops;
2193 break;
2194 case PHY_TYPE_SFT9001A:
2195 case PHY_TYPE_SFT9001B:
2196 efx->phy_op = &falcon_sft9001_phy_ops;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002197 break;
Ben Hutchingsab377352008-12-12 22:06:54 -08002198 case PHY_TYPE_QT2022C2:
Ben Hutchingsd2d2c372009-02-27 13:07:33 +00002199 case PHY_TYPE_QT2025C:
Ben Hutchings8ceee662008-04-27 12:55:59 +01002200 efx->phy_op = &falcon_xfp_phy_ops;
2201 break;
2202 default:
2203 EFX_ERR(efx, "Unknown PHY type %d\n",
2204 efx->phy_type);
2205 return -1;
2206 }
Ben Hutchings3273c2e2008-05-07 13:36:19 +01002207
Ben Hutchings177dfcd2008-12-12 21:50:08 -08002208 if (efx->phy_op->macs & EFX_XMAC)
2209 efx->loopback_modes |= ((1 << LOOPBACK_XGMII) |
2210 (1 << LOOPBACK_XGXS) |
2211 (1 << LOOPBACK_XAUI));
2212 if (efx->phy_op->macs & EFX_GMAC)
2213 efx->loopback_modes |= (1 << LOOPBACK_GMAC);
2214 efx->loopback_modes |= efx->phy_op->loopbacks;
2215
Ben Hutchings8ceee662008-04-27 12:55:59 +01002216 return 0;
2217}
2218
Ben Hutchings177dfcd2008-12-12 21:50:08 -08002219int falcon_switch_mac(struct efx_nic *efx)
2220{
2221 struct efx_mac_operations *old_mac_op = efx->mac_op;
2222 efx_oword_t nic_stat;
2223 unsigned strap_val;
Ben Hutchings1974cc22009-01-29 18:00:07 +00002224 int rc = 0;
2225
2226 /* Don't try to fetch MAC stats while we're switching MACs */
2227 efx_stats_disable(efx);
Ben Hutchings177dfcd2008-12-12 21:50:08 -08002228
2229 /* Internal loopbacks override the phy speed setting */
2230 if (efx->loopback_mode == LOOPBACK_GMAC) {
2231 efx->link_speed = 1000;
2232 efx->link_fd = true;
2233 } else if (LOOPBACK_INTERNAL(efx)) {
2234 efx->link_speed = 10000;
2235 efx->link_fd = true;
2236 }
2237
Steve Hodgson0cc1283872009-01-29 17:49:59 +00002238 WARN_ON(!mutex_is_locked(&efx->mac_lock));
Ben Hutchings177dfcd2008-12-12 21:50:08 -08002239 efx->mac_op = (EFX_IS10G(efx) ?
2240 &falcon_xmac_operations : &falcon_gmac_operations);
Ben Hutchings177dfcd2008-12-12 21:50:08 -08002241
Steve Hodgson0cc1283872009-01-29 17:49:59 +00002242 /* Always push the NIC_STAT_REG setting even if the mac hasn't
2243 * changed, because this function is run post online reset */
Ben Hutchings177dfcd2008-12-12 21:50:08 -08002244 falcon_read(efx, &nic_stat, NIC_STAT_REG);
2245 strap_val = EFX_IS10G(efx) ? 5 : 3;
2246 if (falcon_rev(efx) >= FALCON_REV_B0) {
2247 EFX_SET_OWORD_FIELD(nic_stat, EE_STRAP_EN, 1);
2248 EFX_SET_OWORD_FIELD(nic_stat, EE_STRAP_OVR, strap_val);
2249 falcon_write(efx, &nic_stat, NIC_STAT_REG);
2250 } else {
2251 /* Falcon A1 does not support 1G/10G speed switching
2252 * and must not be used with a PHY that does. */
2253 BUG_ON(EFX_OWORD_FIELD(nic_stat, STRAP_PINS) != strap_val);
2254 }
2255
Steve Hodgson0cc1283872009-01-29 17:49:59 +00002256 if (old_mac_op == efx->mac_op)
Ben Hutchings1974cc22009-01-29 18:00:07 +00002257 goto out;
Ben Hutchings177dfcd2008-12-12 21:50:08 -08002258
2259 EFX_LOG(efx, "selected %cMAC\n", EFX_IS10G(efx) ? 'X' : 'G');
Steve Hodgson0cc1283872009-01-29 17:49:59 +00002260 /* Not all macs support a mac-level link state */
2261 efx->mac_up = true;
2262
Ben Hutchings1974cc22009-01-29 18:00:07 +00002263 rc = falcon_reset_macs(efx);
2264out:
2265 efx_stats_enable(efx);
2266 return rc;
Ben Hutchings177dfcd2008-12-12 21:50:08 -08002267}
2268
Ben Hutchings8ceee662008-04-27 12:55:59 +01002269/* This call is responsible for hooking in the MAC and PHY operations */
2270int falcon_probe_port(struct efx_nic *efx)
2271{
2272 int rc;
2273
2274 /* Hook in PHY operations table */
2275 rc = falcon_probe_phy(efx);
2276 if (rc)
2277 return rc;
2278
Ben Hutchings68e7f452009-04-29 08:05:08 +00002279 /* Set up MDIO structure for PHY */
2280 efx->mdio.mmds = efx->phy_op->mmds;
2281 efx->mdio.mode_support = MDIO_SUPPORTS_C45 | MDIO_EMULATE_C22;
2282 efx->mdio.mdio_read = falcon_mdio_read;
2283 efx->mdio.mdio_write = falcon_mdio_write;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002284
2285 /* Hardware flow ctrl. FalconA RX FIFO too small for pause generation */
Ben Hutchings55668612008-05-16 21:16:10 +01002286 if (falcon_rev(efx) >= FALCON_REV_B0)
Ben Hutchings04cc8ca2008-12-12 21:50:46 -08002287 efx->wanted_fc = EFX_FC_RX | EFX_FC_TX;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002288 else
Ben Hutchings04cc8ca2008-12-12 21:50:46 -08002289 efx->wanted_fc = EFX_FC_RX;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002290
2291 /* Allocate buffer for stats */
2292 rc = falcon_alloc_buffer(efx, &efx->stats_buffer,
2293 FALCON_MAC_STATS_SIZE);
2294 if (rc)
2295 return rc;
Jaswinder Singh Rajput9c8976a2009-02-11 23:49:52 +05302296 EFX_LOG(efx, "stats buffer at %llx (virt %p phys %llx)\n",
2297 (u64)efx->stats_buffer.dma_addr,
Ben Hutchings8ceee662008-04-27 12:55:59 +01002298 efx->stats_buffer.addr,
Jaswinder Singh Rajput9c8976a2009-02-11 23:49:52 +05302299 (u64)virt_to_phys(efx->stats_buffer.addr));
Ben Hutchings8ceee662008-04-27 12:55:59 +01002300
2301 return 0;
2302}
2303
2304void falcon_remove_port(struct efx_nic *efx)
2305{
2306 falcon_free_buffer(efx, &efx->stats_buffer);
2307}
2308
2309/**************************************************************************
2310 *
2311 * Multicast filtering
2312 *
2313 **************************************************************************
2314 */
2315
2316void falcon_set_multicast_hash(struct efx_nic *efx)
2317{
2318 union efx_multicast_hash *mc_hash = &efx->multicast_hash;
2319
2320 /* Broadcast packets go through the multicast hash filter.
2321 * ether_crc_le() of the broadcast address is 0xbe2612ff
2322 * so we always add bit 0xff to the mask.
2323 */
2324 set_bit_le(0xff, mc_hash->byte);
2325
2326 falcon_write(efx, &mc_hash->oword[0], MAC_MCAST_HASH_REG0_KER);
2327 falcon_write(efx, &mc_hash->oword[1], MAC_MCAST_HASH_REG1_KER);
2328}
2329
Ben Hutchings8c8661e2008-09-01 12:49:02 +01002330
2331/**************************************************************************
2332 *
2333 * Falcon test code
2334 *
2335 **************************************************************************/
2336
2337int falcon_read_nvram(struct efx_nic *efx, struct falcon_nvconfig *nvconfig_out)
2338{
2339 struct falcon_nvconfig *nvconfig;
2340 struct efx_spi_device *spi;
2341 void *region;
2342 int rc, magic_num, struct_ver;
2343 __le16 *word, *limit;
2344 u32 csum;
2345
Ben Hutchings2f7f5732008-12-12 21:34:25 -08002346 spi = efx->spi_flash ? efx->spi_flash : efx->spi_eeprom;
2347 if (!spi)
2348 return -EINVAL;
2349
Ben Hutchings0a95f562008-11-04 20:33:11 +00002350 region = kmalloc(FALCON_NVCONFIG_END, GFP_KERNEL);
Ben Hutchings8c8661e2008-09-01 12:49:02 +01002351 if (!region)
2352 return -ENOMEM;
2353 nvconfig = region + NVCONFIG_OFFSET;
2354
Ben Hutchingsf4150722008-11-04 20:34:28 +00002355 mutex_lock(&efx->spi_lock);
Ben Hutchings0a95f562008-11-04 20:33:11 +00002356 rc = falcon_spi_read(spi, 0, FALCON_NVCONFIG_END, NULL, region);
Ben Hutchingsf4150722008-11-04 20:34:28 +00002357 mutex_unlock(&efx->spi_lock);
Ben Hutchings8c8661e2008-09-01 12:49:02 +01002358 if (rc) {
2359 EFX_ERR(efx, "Failed to read %s\n",
2360 efx->spi_flash ? "flash" : "EEPROM");
2361 rc = -EIO;
2362 goto out;
2363 }
2364
2365 magic_num = le16_to_cpu(nvconfig->board_magic_num);
2366 struct_ver = le16_to_cpu(nvconfig->board_struct_ver);
2367
2368 rc = -EINVAL;
2369 if (magic_num != NVCONFIG_BOARD_MAGIC_NUM) {
2370 EFX_ERR(efx, "NVRAM bad magic 0x%x\n", magic_num);
2371 goto out;
2372 }
2373 if (struct_ver < 2) {
2374 EFX_ERR(efx, "NVRAM has ancient version 0x%x\n", struct_ver);
2375 goto out;
2376 } else if (struct_ver < 4) {
2377 word = &nvconfig->board_magic_num;
2378 limit = (__le16 *) (nvconfig + 1);
2379 } else {
2380 word = region;
Ben Hutchings0a95f562008-11-04 20:33:11 +00002381 limit = region + FALCON_NVCONFIG_END;
Ben Hutchings8c8661e2008-09-01 12:49:02 +01002382 }
2383 for (csum = 0; word < limit; ++word)
2384 csum += le16_to_cpu(*word);
2385
2386 if (~csum & 0xffff) {
2387 EFX_ERR(efx, "NVRAM has incorrect checksum\n");
2388 goto out;
2389 }
2390
2391 rc = 0;
2392 if (nvconfig_out)
2393 memcpy(nvconfig_out, nvconfig, sizeof(*nvconfig));
2394
2395 out:
2396 kfree(region);
2397 return rc;
2398}
2399
2400/* Registers tested in the falcon register test */
2401static struct {
2402 unsigned address;
2403 efx_oword_t mask;
2404} efx_test_registers[] = {
2405 { ADR_REGION_REG_KER,
2406 EFX_OWORD32(0x0001FFFF, 0x0001FFFF, 0x0001FFFF, 0x0001FFFF) },
2407 { RX_CFG_REG_KER,
2408 EFX_OWORD32(0xFFFFFFFE, 0x00017FFF, 0x00000000, 0x00000000) },
2409 { TX_CFG_REG_KER,
2410 EFX_OWORD32(0x7FFF0037, 0x00000000, 0x00000000, 0x00000000) },
2411 { TX_CFG2_REG_KER,
2412 EFX_OWORD32(0xFFFEFE80, 0x1FFFFFFF, 0x020000FE, 0x007FFFFF) },
2413 { MAC0_CTRL_REG_KER,
2414 EFX_OWORD32(0xFFFF0000, 0x00000000, 0x00000000, 0x00000000) },
2415 { SRM_TX_DC_CFG_REG_KER,
2416 EFX_OWORD32(0x001FFFFF, 0x00000000, 0x00000000, 0x00000000) },
2417 { RX_DC_CFG_REG_KER,
2418 EFX_OWORD32(0x0000000F, 0x00000000, 0x00000000, 0x00000000) },
2419 { RX_DC_PF_WM_REG_KER,
2420 EFX_OWORD32(0x000003FF, 0x00000000, 0x00000000, 0x00000000) },
2421 { DP_CTRL_REG,
2422 EFX_OWORD32(0x00000FFF, 0x00000000, 0x00000000, 0x00000000) },
Ben Hutchings177dfcd2008-12-12 21:50:08 -08002423 { GM_CFG2_REG,
2424 EFX_OWORD32(0x00007337, 0x00000000, 0x00000000, 0x00000000) },
2425 { GMF_CFG0_REG,
2426 EFX_OWORD32(0x00001F1F, 0x00000000, 0x00000000, 0x00000000) },
Ben Hutchings8c8661e2008-09-01 12:49:02 +01002427 { XM_GLB_CFG_REG,
2428 EFX_OWORD32(0x00000C68, 0x00000000, 0x00000000, 0x00000000) },
2429 { XM_TX_CFG_REG,
2430 EFX_OWORD32(0x00080164, 0x00000000, 0x00000000, 0x00000000) },
2431 { XM_RX_CFG_REG,
2432 EFX_OWORD32(0x07100A0C, 0x00000000, 0x00000000, 0x00000000) },
2433 { XM_RX_PARAM_REG,
2434 EFX_OWORD32(0x00001FF8, 0x00000000, 0x00000000, 0x00000000) },
2435 { XM_FC_REG,
2436 EFX_OWORD32(0xFFFF0001, 0x00000000, 0x00000000, 0x00000000) },
2437 { XM_ADR_LO_REG,
2438 EFX_OWORD32(0xFFFFFFFF, 0x00000000, 0x00000000, 0x00000000) },
2439 { XX_SD_CTL_REG,
2440 EFX_OWORD32(0x0003FF0F, 0x00000000, 0x00000000, 0x00000000) },
2441};
2442
2443static bool efx_masked_compare_oword(const efx_oword_t *a, const efx_oword_t *b,
2444 const efx_oword_t *mask)
2445{
2446 return ((a->u64[0] ^ b->u64[0]) & mask->u64[0]) ||
2447 ((a->u64[1] ^ b->u64[1]) & mask->u64[1]);
2448}
2449
2450int falcon_test_registers(struct efx_nic *efx)
2451{
2452 unsigned address = 0, i, j;
2453 efx_oword_t mask, imask, original, reg, buf;
2454
2455 /* Falcon should be in loopback to isolate the XMAC from the PHY */
2456 WARN_ON(!LOOPBACK_INTERNAL(efx));
2457
2458 for (i = 0; i < ARRAY_SIZE(efx_test_registers); ++i) {
2459 address = efx_test_registers[i].address;
2460 mask = imask = efx_test_registers[i].mask;
2461 EFX_INVERT_OWORD(imask);
2462
2463 falcon_read(efx, &original, address);
2464
2465 /* bit sweep on and off */
2466 for (j = 0; j < 128; j++) {
2467 if (!EFX_EXTRACT_OWORD32(mask, j, j))
2468 continue;
2469
2470 /* Test this testable bit can be set in isolation */
2471 EFX_AND_OWORD(reg, original, mask);
2472 EFX_SET_OWORD32(reg, j, j, 1);
2473
2474 falcon_write(efx, &reg, address);
2475 falcon_read(efx, &buf, address);
2476
2477 if (efx_masked_compare_oword(&reg, &buf, &mask))
2478 goto fail;
2479
2480 /* Test this testable bit can be cleared in isolation */
2481 EFX_OR_OWORD(reg, original, mask);
2482 EFX_SET_OWORD32(reg, j, j, 0);
2483
2484 falcon_write(efx, &reg, address);
2485 falcon_read(efx, &buf, address);
2486
2487 if (efx_masked_compare_oword(&reg, &buf, &mask))
2488 goto fail;
2489 }
2490
2491 falcon_write(efx, &original, address);
2492 }
2493
2494 return 0;
2495
2496fail:
2497 EFX_ERR(efx, "wrote "EFX_OWORD_FMT" read "EFX_OWORD_FMT
2498 " at address 0x%x mask "EFX_OWORD_FMT"\n", EFX_OWORD_VAL(reg),
2499 EFX_OWORD_VAL(buf), address, EFX_OWORD_VAL(mask));
2500 return -EIO;
2501}
2502
Ben Hutchings8ceee662008-04-27 12:55:59 +01002503/**************************************************************************
2504 *
2505 * Device reset
2506 *
2507 **************************************************************************
2508 */
2509
2510/* Resets NIC to known state. This routine must be called in process
2511 * context and is allowed to sleep. */
2512int falcon_reset_hw(struct efx_nic *efx, enum reset_type method)
2513{
2514 struct falcon_nic_data *nic_data = efx->nic_data;
2515 efx_oword_t glb_ctl_reg_ker;
2516 int rc;
2517
2518 EFX_LOG(efx, "performing hardware reset (%d)\n", method);
2519
2520 /* Initiate device reset */
2521 if (method == RESET_TYPE_WORLD) {
2522 rc = pci_save_state(efx->pci_dev);
2523 if (rc) {
2524 EFX_ERR(efx, "failed to backup PCI state of primary "
2525 "function prior to hardware reset\n");
2526 goto fail1;
2527 }
2528 if (FALCON_IS_DUAL_FUNC(efx)) {
2529 rc = pci_save_state(nic_data->pci_dev2);
2530 if (rc) {
2531 EFX_ERR(efx, "failed to backup PCI state of "
2532 "secondary function prior to "
2533 "hardware reset\n");
2534 goto fail2;
2535 }
2536 }
2537
2538 EFX_POPULATE_OWORD_2(glb_ctl_reg_ker,
2539 EXT_PHY_RST_DUR, 0x7,
2540 SWRST, 1);
2541 } else {
2542 int reset_phy = (method == RESET_TYPE_INVISIBLE ?
2543 EXCLUDE_FROM_RESET : 0);
2544
2545 EFX_POPULATE_OWORD_7(glb_ctl_reg_ker,
2546 EXT_PHY_RST_CTL, reset_phy,
2547 PCIE_CORE_RST_CTL, EXCLUDE_FROM_RESET,
2548 PCIE_NSTCK_RST_CTL, EXCLUDE_FROM_RESET,
2549 PCIE_SD_RST_CTL, EXCLUDE_FROM_RESET,
2550 EE_RST_CTL, EXCLUDE_FROM_RESET,
2551 EXT_PHY_RST_DUR, 0x7 /* 10ms */,
2552 SWRST, 1);
2553 }
2554 falcon_write(efx, &glb_ctl_reg_ker, GLB_CTL_REG_KER);
2555
2556 EFX_LOG(efx, "waiting for hardware reset\n");
2557 schedule_timeout_uninterruptible(HZ / 20);
2558
2559 /* Restore PCI configuration if needed */
2560 if (method == RESET_TYPE_WORLD) {
2561 if (FALCON_IS_DUAL_FUNC(efx)) {
2562 rc = pci_restore_state(nic_data->pci_dev2);
2563 if (rc) {
2564 EFX_ERR(efx, "failed to restore PCI config for "
2565 "the secondary function\n");
2566 goto fail3;
2567 }
2568 }
2569 rc = pci_restore_state(efx->pci_dev);
2570 if (rc) {
2571 EFX_ERR(efx, "failed to restore PCI config for the "
2572 "primary function\n");
2573 goto fail4;
2574 }
2575 EFX_LOG(efx, "successfully restored PCI config\n");
2576 }
2577
2578 /* Assert that reset complete */
2579 falcon_read(efx, &glb_ctl_reg_ker, GLB_CTL_REG_KER);
2580 if (EFX_OWORD_FIELD(glb_ctl_reg_ker, SWRST) != 0) {
2581 rc = -ETIMEDOUT;
2582 EFX_ERR(efx, "timed out waiting for hardware reset\n");
2583 goto fail5;
2584 }
2585 EFX_LOG(efx, "hardware reset complete\n");
2586
2587 return 0;
2588
2589 /* pci_save_state() and pci_restore_state() MUST be called in pairs */
2590fail2:
2591fail3:
2592 pci_restore_state(efx->pci_dev);
2593fail1:
2594fail4:
2595fail5:
2596 return rc;
2597}
2598
2599/* Zeroes out the SRAM contents. This routine must be called in
2600 * process context and is allowed to sleep.
2601 */
2602static int falcon_reset_sram(struct efx_nic *efx)
2603{
2604 efx_oword_t srm_cfg_reg_ker, gpio_cfg_reg_ker;
2605 int count;
2606
2607 /* Set the SRAM wake/sleep GPIO appropriately. */
2608 falcon_read(efx, &gpio_cfg_reg_ker, GPIO_CTL_REG_KER);
2609 EFX_SET_OWORD_FIELD(gpio_cfg_reg_ker, GPIO1_OEN, 1);
2610 EFX_SET_OWORD_FIELD(gpio_cfg_reg_ker, GPIO1_OUT, 1);
2611 falcon_write(efx, &gpio_cfg_reg_ker, GPIO_CTL_REG_KER);
2612
2613 /* Initiate SRAM reset */
2614 EFX_POPULATE_OWORD_2(srm_cfg_reg_ker,
2615 SRAM_OOB_BT_INIT_EN, 1,
2616 SRM_NUM_BANKS_AND_BANK_SIZE, 0);
2617 falcon_write(efx, &srm_cfg_reg_ker, SRM_CFG_REG_KER);
2618
2619 /* Wait for SRAM reset to complete */
2620 count = 0;
2621 do {
2622 EFX_LOG(efx, "waiting for SRAM reset (attempt %d)...\n", count);
2623
2624 /* SRAM reset is slow; expect around 16ms */
2625 schedule_timeout_uninterruptible(HZ / 50);
2626
2627 /* Check for reset complete */
2628 falcon_read(efx, &srm_cfg_reg_ker, SRM_CFG_REG_KER);
2629 if (!EFX_OWORD_FIELD(srm_cfg_reg_ker, SRAM_OOB_BT_INIT_EN)) {
2630 EFX_LOG(efx, "SRAM reset complete\n");
2631
2632 return 0;
2633 }
2634 } while (++count < 20); /* wait upto 0.4 sec */
2635
2636 EFX_ERR(efx, "timed out waiting for SRAM reset\n");
2637 return -ETIMEDOUT;
2638}
2639
Ben Hutchings4a5b5042008-09-01 12:47:16 +01002640static int falcon_spi_device_init(struct efx_nic *efx,
2641 struct efx_spi_device **spi_device_ret,
2642 unsigned int device_id, u32 device_type)
2643{
2644 struct efx_spi_device *spi_device;
2645
2646 if (device_type != 0) {
Ben Hutchings0c53d8c2008-12-12 22:08:50 -08002647 spi_device = kzalloc(sizeof(*spi_device), GFP_KERNEL);
Ben Hutchings4a5b5042008-09-01 12:47:16 +01002648 if (!spi_device)
2649 return -ENOMEM;
2650 spi_device->device_id = device_id;
2651 spi_device->size =
2652 1 << SPI_DEV_TYPE_FIELD(device_type, SPI_DEV_TYPE_SIZE);
2653 spi_device->addr_len =
2654 SPI_DEV_TYPE_FIELD(device_type, SPI_DEV_TYPE_ADDR_LEN);
2655 spi_device->munge_address = (spi_device->size == 1 << 9 &&
2656 spi_device->addr_len == 1);
Ben Hutchingsf4150722008-11-04 20:34:28 +00002657 spi_device->erase_command =
2658 SPI_DEV_TYPE_FIELD(device_type, SPI_DEV_TYPE_ERASE_CMD);
2659 spi_device->erase_size =
2660 1 << SPI_DEV_TYPE_FIELD(device_type,
2661 SPI_DEV_TYPE_ERASE_SIZE);
Ben Hutchings4a5b5042008-09-01 12:47:16 +01002662 spi_device->block_size =
2663 1 << SPI_DEV_TYPE_FIELD(device_type,
2664 SPI_DEV_TYPE_BLOCK_SIZE);
2665
2666 spi_device->efx = efx;
2667 } else {
2668 spi_device = NULL;
2669 }
2670
2671 kfree(*spi_device_ret);
2672 *spi_device_ret = spi_device;
2673 return 0;
2674}
2675
2676
2677static void falcon_remove_spi_devices(struct efx_nic *efx)
2678{
2679 kfree(efx->spi_eeprom);
2680 efx->spi_eeprom = NULL;
2681 kfree(efx->spi_flash);
2682 efx->spi_flash = NULL;
2683}
2684
Ben Hutchings8ceee662008-04-27 12:55:59 +01002685/* Extract non-volatile configuration */
2686static int falcon_probe_nvconfig(struct efx_nic *efx)
2687{
2688 struct falcon_nvconfig *nvconfig;
Ben Hutchings8c8661e2008-09-01 12:49:02 +01002689 int board_rev;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002690 int rc;
2691
Ben Hutchings8ceee662008-04-27 12:55:59 +01002692 nvconfig = kmalloc(sizeof(*nvconfig), GFP_KERNEL);
Ben Hutchings4a5b5042008-09-01 12:47:16 +01002693 if (!nvconfig)
2694 return -ENOMEM;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002695
Ben Hutchings8c8661e2008-09-01 12:49:02 +01002696 rc = falcon_read_nvram(efx, nvconfig);
2697 if (rc == -EINVAL) {
2698 EFX_ERR(efx, "NVRAM is invalid therefore using defaults\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01002699 efx->phy_type = PHY_TYPE_NONE;
Ben Hutchings68e7f452009-04-29 08:05:08 +00002700 efx->mdio.prtad = MDIO_PRTAD_NONE;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002701 board_rev = 0;
Ben Hutchings8c8661e2008-09-01 12:49:02 +01002702 rc = 0;
2703 } else if (rc) {
2704 goto fail1;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002705 } else {
2706 struct falcon_nvconfig_board_v2 *v2 = &nvconfig->board_v2;
Ben Hutchings4a5b5042008-09-01 12:47:16 +01002707 struct falcon_nvconfig_board_v3 *v3 = &nvconfig->board_v3;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002708
2709 efx->phy_type = v2->port0_phy_type;
Ben Hutchings68e7f452009-04-29 08:05:08 +00002710 efx->mdio.prtad = v2->port0_phy_addr;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002711 board_rev = le16_to_cpu(v2->board_revision);
Ben Hutchings4a5b5042008-09-01 12:47:16 +01002712
Ben Hutchings8c8661e2008-09-01 12:49:02 +01002713 if (le16_to_cpu(nvconfig->board_struct_ver) >= 3) {
Ben Hutchings4a5b5042008-09-01 12:47:16 +01002714 __le32 fl = v3->spi_device_type[EE_SPI_FLASH];
2715 __le32 ee = v3->spi_device_type[EE_SPI_EEPROM];
2716 rc = falcon_spi_device_init(efx, &efx->spi_flash,
2717 EE_SPI_FLASH,
2718 le32_to_cpu(fl));
2719 if (rc)
2720 goto fail2;
2721 rc = falcon_spi_device_init(efx, &efx->spi_eeprom,
2722 EE_SPI_EEPROM,
2723 le32_to_cpu(ee));
2724 if (rc)
2725 goto fail2;
2726 }
Ben Hutchings8ceee662008-04-27 12:55:59 +01002727 }
2728
Ben Hutchings8c8661e2008-09-01 12:49:02 +01002729 /* Read the MAC addresses */
2730 memcpy(efx->mac_address, nvconfig->mac_address[0], ETH_ALEN);
2731
Ben Hutchings68e7f452009-04-29 08:05:08 +00002732 EFX_LOG(efx, "PHY is %d phy_id %d\n", efx->phy_type, efx->mdio.prtad);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002733
Ben Hutchings3473a5b2009-10-23 08:29:16 +00002734 falcon_probe_board(efx, board_rev);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002735
Ben Hutchings4a5b5042008-09-01 12:47:16 +01002736 kfree(nvconfig);
2737 return 0;
2738
2739 fail2:
2740 falcon_remove_spi_devices(efx);
2741 fail1:
Ben Hutchings8ceee662008-04-27 12:55:59 +01002742 kfree(nvconfig);
2743 return rc;
2744}
2745
2746/* Probe the NIC variant (revision, ASIC vs FPGA, function count, port
2747 * count, port speed). Set workaround and feature flags accordingly.
2748 */
2749static int falcon_probe_nic_variant(struct efx_nic *efx)
2750{
2751 efx_oword_t altera_build;
Ben Hutchings177dfcd2008-12-12 21:50:08 -08002752 efx_oword_t nic_stat;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002753
2754 falcon_read(efx, &altera_build, ALTERA_BUILD_REG_KER);
2755 if (EFX_OWORD_FIELD(altera_build, VER_ALL)) {
2756 EFX_ERR(efx, "Falcon FPGA not supported\n");
2757 return -ENODEV;
2758 }
2759
Ben Hutchings177dfcd2008-12-12 21:50:08 -08002760 falcon_read(efx, &nic_stat, NIC_STAT_REG);
2761
Ben Hutchings55668612008-05-16 21:16:10 +01002762 switch (falcon_rev(efx)) {
Ben Hutchings8ceee662008-04-27 12:55:59 +01002763 case FALCON_REV_A0:
2764 case 0xff:
2765 EFX_ERR(efx, "Falcon rev A0 not supported\n");
2766 return -ENODEV;
2767
Ben Hutchings177dfcd2008-12-12 21:50:08 -08002768 case FALCON_REV_A1:
Ben Hutchings8ceee662008-04-27 12:55:59 +01002769 if (EFX_OWORD_FIELD(nic_stat, STRAP_PCIE) == 0) {
2770 EFX_ERR(efx, "Falcon rev A1 PCI-X not supported\n");
2771 return -ENODEV;
2772 }
Ben Hutchings8ceee662008-04-27 12:55:59 +01002773 break;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002774
2775 case FALCON_REV_B0:
2776 break;
2777
2778 default:
Ben Hutchings55668612008-05-16 21:16:10 +01002779 EFX_ERR(efx, "Unknown Falcon rev %d\n", falcon_rev(efx));
Ben Hutchings8ceee662008-04-27 12:55:59 +01002780 return -ENODEV;
2781 }
2782
Ben Hutchings177dfcd2008-12-12 21:50:08 -08002783 /* Initial assumed speed */
2784 efx->link_speed = EFX_OWORD_FIELD(nic_stat, STRAP_10G) ? 10000 : 1000;
2785
Ben Hutchings8ceee662008-04-27 12:55:59 +01002786 return 0;
2787}
2788
Ben Hutchings4a5b5042008-09-01 12:47:16 +01002789/* Probe all SPI devices on the NIC */
2790static void falcon_probe_spi_devices(struct efx_nic *efx)
2791{
2792 efx_oword_t nic_stat, gpio_ctl, ee_vpd_cfg;
Ben Hutchings2f7f5732008-12-12 21:34:25 -08002793 int boot_dev;
Ben Hutchings4a5b5042008-09-01 12:47:16 +01002794
2795 falcon_read(efx, &gpio_ctl, GPIO_CTL_REG_KER);
2796 falcon_read(efx, &nic_stat, NIC_STAT_REG);
2797 falcon_read(efx, &ee_vpd_cfg, EE_VPD_CFG_REG_KER);
2798
Ben Hutchings2f7f5732008-12-12 21:34:25 -08002799 if (EFX_OWORD_FIELD(gpio_ctl, BOOTED_USING_NVDEVICE)) {
2800 boot_dev = (EFX_OWORD_FIELD(nic_stat, SF_PRST) ?
2801 EE_SPI_FLASH : EE_SPI_EEPROM);
2802 EFX_LOG(efx, "Booted from %s\n",
2803 boot_dev == EE_SPI_FLASH ? "flash" : "EEPROM");
2804 } else {
2805 /* Disable VPD and set clock dividers to safe
2806 * values for initial programming. */
2807 boot_dev = -1;
2808 EFX_LOG(efx, "Booted from internal ASIC settings;"
2809 " setting SPI config\n");
2810 EFX_POPULATE_OWORD_3(ee_vpd_cfg, EE_VPD_EN, 0,
2811 /* 125 MHz / 7 ~= 20 MHz */
2812 EE_SF_CLOCK_DIV, 7,
2813 /* 125 MHz / 63 ~= 2 MHz */
2814 EE_EE_CLOCK_DIV, 63);
2815 falcon_write(efx, &ee_vpd_cfg, EE_VPD_CFG_REG_KER);
Ben Hutchings4a5b5042008-09-01 12:47:16 +01002816 }
2817
Ben Hutchings2f7f5732008-12-12 21:34:25 -08002818 if (boot_dev == EE_SPI_FLASH)
2819 falcon_spi_device_init(efx, &efx->spi_flash, EE_SPI_FLASH,
2820 default_flash_type);
2821 if (boot_dev == EE_SPI_EEPROM)
2822 falcon_spi_device_init(efx, &efx->spi_eeprom, EE_SPI_EEPROM,
2823 large_eeprom_type);
Ben Hutchings4a5b5042008-09-01 12:47:16 +01002824}
2825
Ben Hutchings8ceee662008-04-27 12:55:59 +01002826int falcon_probe_nic(struct efx_nic *efx)
2827{
2828 struct falcon_nic_data *nic_data;
2829 int rc;
2830
Ben Hutchings8ceee662008-04-27 12:55:59 +01002831 /* Allocate storage for hardware specific data */
2832 nic_data = kzalloc(sizeof(*nic_data), GFP_KERNEL);
Ben Hutchings88c59422008-09-03 15:07:50 +01002833 if (!nic_data)
2834 return -ENOMEM;
Ben Hutchings5daab962008-05-16 21:19:43 +01002835 efx->nic_data = nic_data;
Ben Hutchings8ceee662008-04-27 12:55:59 +01002836
2837 /* Determine number of ports etc. */
2838 rc = falcon_probe_nic_variant(efx);
2839 if (rc)
2840 goto fail1;
2841
2842 /* Probe secondary function if expected */
2843 if (FALCON_IS_DUAL_FUNC(efx)) {
2844 struct pci_dev *dev = pci_dev_get(efx->pci_dev);
2845
2846 while ((dev = pci_get_device(EFX_VENDID_SFC, FALCON_A_S_DEVID,
2847 dev))) {
2848 if (dev->bus == efx->pci_dev->bus &&
2849 dev->devfn == efx->pci_dev->devfn + 1) {
2850 nic_data->pci_dev2 = dev;
2851 break;
2852 }
2853 }
2854 if (!nic_data->pci_dev2) {
2855 EFX_ERR(efx, "failed to find secondary function\n");
2856 rc = -ENODEV;
2857 goto fail2;
2858 }
2859 }
2860
2861 /* Now we can reset the NIC */
2862 rc = falcon_reset_hw(efx, RESET_TYPE_ALL);
2863 if (rc) {
2864 EFX_ERR(efx, "failed to reset NIC\n");
2865 goto fail3;
2866 }
2867
2868 /* Allocate memory for INT_KER */
2869 rc = falcon_alloc_buffer(efx, &efx->irq_status, sizeof(efx_oword_t));
2870 if (rc)
2871 goto fail4;
2872 BUG_ON(efx->irq_status.dma_addr & 0x0f);
2873
Jaswinder Singh Rajput9c8976a2009-02-11 23:49:52 +05302874 EFX_LOG(efx, "INT_KER at %llx (virt %p phys %llx)\n",
2875 (u64)efx->irq_status.dma_addr,
2876 efx->irq_status.addr, (u64)virt_to_phys(efx->irq_status.addr));
Ben Hutchings8ceee662008-04-27 12:55:59 +01002877
Ben Hutchings4a5b5042008-09-01 12:47:16 +01002878 falcon_probe_spi_devices(efx);
2879
Ben Hutchings8ceee662008-04-27 12:55:59 +01002880 /* Read in the non-volatile configuration */
2881 rc = falcon_probe_nvconfig(efx);
2882 if (rc)
2883 goto fail5;
2884
Ben Hutchings37b5a602008-05-30 22:27:04 +01002885 /* Initialise I2C adapter */
Ben Hutchingsb4531932008-12-12 22:05:01 -08002886 efx->i2c_adap.owner = THIS_MODULE;
Ben Hutchings37b5a602008-05-30 22:27:04 +01002887 nic_data->i2c_data = falcon_i2c_bit_operations;
2888 nic_data->i2c_data.data = efx;
Ben Hutchingsb4531932008-12-12 22:05:01 -08002889 efx->i2c_adap.algo_data = &nic_data->i2c_data;
Ben Hutchings37b5a602008-05-30 22:27:04 +01002890 efx->i2c_adap.dev.parent = &efx->pci_dev->dev;
Ben Hutchings9dadae62008-07-18 18:59:12 +01002891 strlcpy(efx->i2c_adap.name, "SFC4000 GPIO", sizeof(efx->i2c_adap.name));
Ben Hutchings37b5a602008-05-30 22:27:04 +01002892 rc = i2c_bit_add_bus(&efx->i2c_adap);
2893 if (rc)
2894 goto fail5;
2895
Ben Hutchings8ceee662008-04-27 12:55:59 +01002896 return 0;
2897
2898 fail5:
Ben Hutchings4a5b5042008-09-01 12:47:16 +01002899 falcon_remove_spi_devices(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002900 falcon_free_buffer(efx, &efx->irq_status);
2901 fail4:
Ben Hutchings8ceee662008-04-27 12:55:59 +01002902 fail3:
2903 if (nic_data->pci_dev2) {
2904 pci_dev_put(nic_data->pci_dev2);
2905 nic_data->pci_dev2 = NULL;
2906 }
2907 fail2:
Ben Hutchings8ceee662008-04-27 12:55:59 +01002908 fail1:
2909 kfree(efx->nic_data);
2910 return rc;
2911}
2912
2913/* This call performs hardware-specific global initialisation, such as
2914 * defining the descriptor cache sizes and number of RSS channels.
2915 * It does not set up any buffers, descriptor rings or event queues.
2916 */
2917int falcon_init_nic(struct efx_nic *efx)
2918{
Ben Hutchings8ceee662008-04-27 12:55:59 +01002919 efx_oword_t temp;
2920 unsigned thresh;
2921 int rc;
2922
Ben Hutchings8ceee662008-04-27 12:55:59 +01002923 /* Use on-chip SRAM */
2924 falcon_read(efx, &temp, NIC_STAT_REG);
2925 EFX_SET_OWORD_FIELD(temp, ONCHIP_SRAM, 1);
2926 falcon_write(efx, &temp, NIC_STAT_REG);
2927
Ben Hutchings6f158d52008-12-12 22:00:49 -08002928 /* Set the source of the GMAC clock */
2929 if (falcon_rev(efx) == FALCON_REV_B0) {
2930 falcon_read(efx, &temp, GPIO_CTL_REG_KER);
2931 EFX_SET_OWORD_FIELD(temp, GPIO_USE_NIC_CLK, true);
2932 falcon_write(efx, &temp, GPIO_CTL_REG_KER);
2933 }
2934
Ben Hutchings8ceee662008-04-27 12:55:59 +01002935 rc = falcon_reset_sram(efx);
2936 if (rc)
2937 return rc;
2938
2939 /* Set positions of descriptor caches in SRAM. */
2940 EFX_POPULATE_OWORD_1(temp, SRM_TX_DC_BASE_ADR, TX_DC_BASE / 8);
2941 falcon_write(efx, &temp, SRM_TX_DC_CFG_REG_KER);
2942 EFX_POPULATE_OWORD_1(temp, SRM_RX_DC_BASE_ADR, RX_DC_BASE / 8);
2943 falcon_write(efx, &temp, SRM_RX_DC_CFG_REG_KER);
2944
2945 /* Set TX descriptor cache size. */
2946 BUILD_BUG_ON(TX_DC_ENTRIES != (16 << TX_DC_ENTRIES_ORDER));
2947 EFX_POPULATE_OWORD_1(temp, TX_DC_SIZE, TX_DC_ENTRIES_ORDER);
2948 falcon_write(efx, &temp, TX_DC_CFG_REG_KER);
2949
2950 /* Set RX descriptor cache size. Set low watermark to size-8, as
2951 * this allows most efficient prefetching.
2952 */
2953 BUILD_BUG_ON(RX_DC_ENTRIES != (16 << RX_DC_ENTRIES_ORDER));
2954 EFX_POPULATE_OWORD_1(temp, RX_DC_SIZE, RX_DC_ENTRIES_ORDER);
2955 falcon_write(efx, &temp, RX_DC_CFG_REG_KER);
2956 EFX_POPULATE_OWORD_1(temp, RX_DC_PF_LWM, RX_DC_ENTRIES - 8);
2957 falcon_write(efx, &temp, RX_DC_PF_WM_REG_KER);
2958
2959 /* Clear the parity enables on the TX data fifos as
2960 * they produce false parity errors because of timing issues
2961 */
2962 if (EFX_WORKAROUND_5129(efx)) {
2963 falcon_read(efx, &temp, SPARE_REG_KER);
2964 EFX_SET_OWORD_FIELD(temp, MEM_PERR_EN_TX_DATA, 0);
2965 falcon_write(efx, &temp, SPARE_REG_KER);
2966 }
2967
2968 /* Enable all the genuinely fatal interrupts. (They are still
2969 * masked by the overall interrupt mask, controlled by
2970 * falcon_interrupts()).
2971 *
2972 * Note: All other fatal interrupts are enabled
2973 */
2974 EFX_POPULATE_OWORD_3(temp,
2975 ILL_ADR_INT_KER_EN, 1,
2976 RBUF_OWN_INT_KER_EN, 1,
2977 TBUF_OWN_INT_KER_EN, 1);
2978 EFX_INVERT_OWORD(temp);
2979 falcon_write(efx, &temp, FATAL_INTR_REG_KER);
2980
Ben Hutchings8ceee662008-04-27 12:55:59 +01002981 if (EFX_WORKAROUND_7244(efx)) {
Ben Hutchings955f0a72008-09-01 12:47:52 +01002982 falcon_read(efx, &temp, RX_FILTER_CTL_REG);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002983 EFX_SET_OWORD_FIELD(temp, UDP_FULL_SRCH_LIMIT, 8);
2984 EFX_SET_OWORD_FIELD(temp, UDP_WILD_SRCH_LIMIT, 8);
2985 EFX_SET_OWORD_FIELD(temp, TCP_FULL_SRCH_LIMIT, 8);
2986 EFX_SET_OWORD_FIELD(temp, TCP_WILD_SRCH_LIMIT, 8);
Ben Hutchings955f0a72008-09-01 12:47:52 +01002987 falcon_write(efx, &temp, RX_FILTER_CTL_REG);
Ben Hutchings8ceee662008-04-27 12:55:59 +01002988 }
Ben Hutchings8ceee662008-04-27 12:55:59 +01002989
2990 falcon_setup_rss_indir_table(efx);
2991
2992 /* Setup RX. Wait for descriptor is broken and must
2993 * be disabled. RXDP recovery shouldn't be needed, but is.
2994 */
2995 falcon_read(efx, &temp, RX_SELF_RST_REG_KER);
2996 EFX_SET_OWORD_FIELD(temp, RX_NODESC_WAIT_DIS, 1);
2997 EFX_SET_OWORD_FIELD(temp, RX_RECOVERY_EN, 1);
2998 if (EFX_WORKAROUND_5583(efx))
2999 EFX_SET_OWORD_FIELD(temp, RX_ISCSI_DIS, 1);
3000 falcon_write(efx, &temp, RX_SELF_RST_REG_KER);
3001
3002 /* Disable the ugly timer-based TX DMA backoff and allow TX DMA to be
3003 * controlled by the RX FIFO fill level. Set arbitration to one pkt/Q.
3004 */
3005 falcon_read(efx, &temp, TX_CFG2_REG_KER);
3006 EFX_SET_OWORD_FIELD(temp, TX_RX_SPACER, 0xfe);
3007 EFX_SET_OWORD_FIELD(temp, TX_RX_SPACER_EN, 1);
3008 EFX_SET_OWORD_FIELD(temp, TX_ONE_PKT_PER_Q, 1);
3009 EFX_SET_OWORD_FIELD(temp, TX_CSR_PUSH_EN, 0);
3010 EFX_SET_OWORD_FIELD(temp, TX_DIS_NON_IP_EV, 1);
3011 /* Enable SW_EV to inherit in char driver - assume harmless here */
3012 EFX_SET_OWORD_FIELD(temp, TX_SW_EV_EN, 1);
3013 /* Prefetch threshold 2 => fetch when descriptor cache half empty */
3014 EFX_SET_OWORD_FIELD(temp, TX_PREF_THRESHOLD, 2);
3015 /* Squash TX of packets of 16 bytes or less */
Ben Hutchings55668612008-05-16 21:16:10 +01003016 if (falcon_rev(efx) >= FALCON_REV_B0 && EFX_WORKAROUND_9141(efx))
Ben Hutchings8ceee662008-04-27 12:55:59 +01003017 EFX_SET_OWORD_FIELD(temp, TX_FLUSH_MIN_LEN_EN_B0, 1);
3018 falcon_write(efx, &temp, TX_CFG2_REG_KER);
3019
3020 /* Do not enable TX_NO_EOP_DISC_EN, since it limits packets to 16
3021 * descriptors (which is bad).
3022 */
3023 falcon_read(efx, &temp, TX_CFG_REG_KER);
3024 EFX_SET_OWORD_FIELD(temp, TX_NO_EOP_DISC_EN, 0);
3025 falcon_write(efx, &temp, TX_CFG_REG_KER);
3026
3027 /* RX config */
3028 falcon_read(efx, &temp, RX_CFG_REG_KER);
3029 EFX_SET_OWORD_FIELD_VER(efx, temp, RX_DESC_PUSH_EN, 0);
3030 if (EFX_WORKAROUND_7575(efx))
3031 EFX_SET_OWORD_FIELD_VER(efx, temp, RX_USR_BUF_SIZE,
3032 (3 * 4096) / 32);
Ben Hutchings55668612008-05-16 21:16:10 +01003033 if (falcon_rev(efx) >= FALCON_REV_B0)
Ben Hutchings8ceee662008-04-27 12:55:59 +01003034 EFX_SET_OWORD_FIELD(temp, RX_INGR_EN_B0, 1);
3035
3036 /* RX FIFO flow control thresholds */
3037 thresh = ((rx_xon_thresh_bytes >= 0) ?
3038 rx_xon_thresh_bytes : efx->type->rx_xon_thresh);
3039 EFX_SET_OWORD_FIELD_VER(efx, temp, RX_XON_MAC_TH, thresh / 256);
3040 thresh = ((rx_xoff_thresh_bytes >= 0) ?
3041 rx_xoff_thresh_bytes : efx->type->rx_xoff_thresh);
3042 EFX_SET_OWORD_FIELD_VER(efx, temp, RX_XOFF_MAC_TH, thresh / 256);
3043 /* RX control FIFO thresholds [32 entries] */
Ben Hutchingsc84a6f12008-09-01 12:46:21 +01003044 EFX_SET_OWORD_FIELD_VER(efx, temp, RX_XON_TX_TH, 20);
3045 EFX_SET_OWORD_FIELD_VER(efx, temp, RX_XOFF_TX_TH, 25);
Ben Hutchings8ceee662008-04-27 12:55:59 +01003046 falcon_write(efx, &temp, RX_CFG_REG_KER);
3047
3048 /* Set destination of both TX and RX Flush events */
Ben Hutchings55668612008-05-16 21:16:10 +01003049 if (falcon_rev(efx) >= FALCON_REV_B0) {
Ben Hutchings8ceee662008-04-27 12:55:59 +01003050 EFX_POPULATE_OWORD_1(temp, FLS_EVQ_ID, 0);
3051 falcon_write(efx, &temp, DP_CTRL_REG);
3052 }
3053
3054 return 0;
3055}
3056
3057void falcon_remove_nic(struct efx_nic *efx)
3058{
3059 struct falcon_nic_data *nic_data = efx->nic_data;
Ben Hutchings37b5a602008-05-30 22:27:04 +01003060 int rc;
3061
Ben Hutchings8c870372009-03-04 09:53:02 +00003062 /* Remove I2C adapter and clear it in preparation for a retry */
Ben Hutchings37b5a602008-05-30 22:27:04 +01003063 rc = i2c_del_adapter(&efx->i2c_adap);
3064 BUG_ON(rc);
Ben Hutchings8c870372009-03-04 09:53:02 +00003065 memset(&efx->i2c_adap, 0, sizeof(efx->i2c_adap));
Ben Hutchings8ceee662008-04-27 12:55:59 +01003066
Ben Hutchings4a5b5042008-09-01 12:47:16 +01003067 falcon_remove_spi_devices(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01003068 falcon_free_buffer(efx, &efx->irq_status);
3069
Ben Hutchings91ad7572008-05-16 21:14:27 +01003070 falcon_reset_hw(efx, RESET_TYPE_ALL);
Ben Hutchings8ceee662008-04-27 12:55:59 +01003071
3072 /* Release the second function after the reset */
3073 if (nic_data->pci_dev2) {
3074 pci_dev_put(nic_data->pci_dev2);
3075 nic_data->pci_dev2 = NULL;
3076 }
3077
3078 /* Tear down the private nic state */
3079 kfree(efx->nic_data);
3080 efx->nic_data = NULL;
3081}
3082
3083void falcon_update_nic_stats(struct efx_nic *efx)
3084{
3085 efx_oword_t cnt;
3086
3087 falcon_read(efx, &cnt, RX_NODESC_DROP_REG_KER);
3088 efx->n_rx_nodesc_drop_cnt += EFX_OWORD_FIELD(cnt, RX_NODESC_DROP_CNT);
3089}
3090
3091/**************************************************************************
3092 *
3093 * Revision-dependent attributes used by efx.c
3094 *
3095 **************************************************************************
3096 */
3097
3098struct efx_nic_type falcon_a_nic_type = {
3099 .mem_bar = 2,
3100 .mem_map_size = 0x20000,
3101 .txd_ptr_tbl_base = TX_DESC_PTR_TBL_KER_A1,
3102 .rxd_ptr_tbl_base = RX_DESC_PTR_TBL_KER_A1,
3103 .buf_tbl_base = BUF_TBL_KER_A1,
3104 .evq_ptr_tbl_base = EVQ_PTR_TBL_KER_A1,
3105 .evq_rptr_tbl_base = EVQ_RPTR_REG_KER_A1,
3106 .txd_ring_mask = FALCON_TXD_RING_MASK,
3107 .rxd_ring_mask = FALCON_RXD_RING_MASK,
3108 .evq_size = FALCON_EVQ_SIZE,
3109 .max_dma_mask = FALCON_DMA_MASK,
3110 .tx_dma_mask = FALCON_TX_DMA_MASK,
3111 .bug5391_mask = 0xf,
3112 .rx_xoff_thresh = 2048,
3113 .rx_xon_thresh = 512,
3114 .rx_buffer_padding = 0x24,
3115 .max_interrupt_mode = EFX_INT_MODE_MSI,
3116 .phys_addr_channels = 4,
3117};
3118
3119struct efx_nic_type falcon_b_nic_type = {
3120 .mem_bar = 2,
3121 /* Map everything up to and including the RSS indirection
3122 * table. Don't map MSI-X table, MSI-X PBA since Linux
3123 * requires that they not be mapped. */
3124 .mem_map_size = RX_RSS_INDIR_TBL_B0 + 0x800,
3125 .txd_ptr_tbl_base = TX_DESC_PTR_TBL_KER_B0,
3126 .rxd_ptr_tbl_base = RX_DESC_PTR_TBL_KER_B0,
3127 .buf_tbl_base = BUF_TBL_KER_B0,
3128 .evq_ptr_tbl_base = EVQ_PTR_TBL_KER_B0,
3129 .evq_rptr_tbl_base = EVQ_RPTR_REG_KER_B0,
3130 .txd_ring_mask = FALCON_TXD_RING_MASK,
3131 .rxd_ring_mask = FALCON_RXD_RING_MASK,
3132 .evq_size = FALCON_EVQ_SIZE,
3133 .max_dma_mask = FALCON_DMA_MASK,
3134 .tx_dma_mask = FALCON_TX_DMA_MASK,
3135 .bug5391_mask = 0,
3136 .rx_xoff_thresh = 54272, /* ~80Kb - 3*max MTU */
3137 .rx_xon_thresh = 27648, /* ~3*max MTU */
3138 .rx_buffer_padding = 0,
3139 .max_interrupt_mode = EFX_INT_MODE_MSIX,
3140 .phys_addr_channels = 32, /* Hardware limit is 64, but the legacy
3141 * interrupt handler only supports 32
3142 * channels */
3143};
3144