blob: 4f9d33f3cca1899a9fa745af4cb49c734383031f [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.
Ben Hutchings906bb262009-11-29 15:16:19 +00004 * Copyright 2006-2009 Solarflare Communications Inc.
Ben Hutchings8ceee662008-04-27 12:55:59 +01005 *
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License version 2 as published
8 * by the Free Software Foundation, incorporated herein by reference.
9 */
10
11#include <linux/bitops.h>
12#include <linux/delay.h>
13#include <linux/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>
Ben Hutchingsf31a45d2008-12-12 21:43:33 -080017#include <linux/mii.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090018#include <linux/slab.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"
Ben Hutchings744093c2009-11-29 15:12:08 +000024#include "nic.h"
Ben Hutchings3e6c4532009-10-23 08:30:36 +000025#include "regs.h"
Ben Hutchings12d00ca2009-10-23 08:30:46 +000026#include "io.h"
Ben Hutchings8ceee662008-04-27 12:55:59 +010027#include "mdio_10g.h"
28#include "phy.h"
Ben Hutchings8ceee662008-04-27 12:55:59 +010029#include "workarounds.h"
30
Ben Hutchings89863522009-11-25 16:09:04 +000031/* Hardware control for SFC4000 (aka Falcon). */
Ben Hutchings8ceee662008-04-27 12:55:59 +010032
Ben Hutchings2f7f5732008-12-12 21:34:25 -080033static const unsigned int
34/* "Large" EEPROM device: Atmel AT25640 or similar
35 * 8 KB, 16-bit address, 32 B write block */
36large_eeprom_type = ((13 << SPI_DEV_TYPE_SIZE_LBN)
37 | (2 << SPI_DEV_TYPE_ADDR_LEN_LBN)
38 | (5 << SPI_DEV_TYPE_BLOCK_SIZE_LBN)),
39/* Default flash device: Atmel AT25F1024
40 * 128 KB, 24-bit address, 32 KB erase block, 256 B write block */
41default_flash_type = ((17 << SPI_DEV_TYPE_SIZE_LBN)
42 | (3 << SPI_DEV_TYPE_ADDR_LEN_LBN)
43 | (0x52 << SPI_DEV_TYPE_ERASE_CMD_LBN)
44 | (15 << SPI_DEV_TYPE_ERASE_SIZE_LBN)
45 | (8 << SPI_DEV_TYPE_BLOCK_SIZE_LBN));
46
Ben Hutchings8ceee662008-04-27 12:55:59 +010047/**************************************************************************
48 *
49 * I2C bus - this is a bit-bashing interface using GPIO pins
50 * Note that it uses the output enables to tristate the outputs
51 * SDA is the data pin and SCL is the clock
52 *
53 **************************************************************************
54 */
Ben Hutchings37b5a602008-05-30 22:27:04 +010055static void falcon_setsda(void *data, int state)
Ben Hutchings8ceee662008-04-27 12:55:59 +010056{
Ben Hutchings37b5a602008-05-30 22:27:04 +010057 struct efx_nic *efx = (struct efx_nic *)data;
Ben Hutchings8ceee662008-04-27 12:55:59 +010058 efx_oword_t reg;
59
Ben Hutchings12d00ca2009-10-23 08:30:46 +000060 efx_reado(efx, &reg, FR_AB_GPIO_CTL);
Ben Hutchings3e6c4532009-10-23 08:30:36 +000061 EFX_SET_OWORD_FIELD(reg, FRF_AB_GPIO3_OEN, !state);
Ben Hutchings12d00ca2009-10-23 08:30:46 +000062 efx_writeo(efx, &reg, FR_AB_GPIO_CTL);
Ben Hutchings8ceee662008-04-27 12:55:59 +010063}
64
Ben Hutchings37b5a602008-05-30 22:27:04 +010065static void falcon_setscl(void *data, int state)
Ben Hutchings8ceee662008-04-27 12:55:59 +010066{
Ben Hutchings37b5a602008-05-30 22:27:04 +010067 struct efx_nic *efx = (struct efx_nic *)data;
Ben Hutchings8ceee662008-04-27 12:55:59 +010068 efx_oword_t reg;
69
Ben Hutchings12d00ca2009-10-23 08:30:46 +000070 efx_reado(efx, &reg, FR_AB_GPIO_CTL);
Ben Hutchings3e6c4532009-10-23 08:30:36 +000071 EFX_SET_OWORD_FIELD(reg, FRF_AB_GPIO0_OEN, !state);
Ben Hutchings12d00ca2009-10-23 08:30:46 +000072 efx_writeo(efx, &reg, FR_AB_GPIO_CTL);
Ben Hutchings37b5a602008-05-30 22:27:04 +010073}
74
75static int falcon_getsda(void *data)
76{
77 struct efx_nic *efx = (struct efx_nic *)data;
78 efx_oword_t reg;
79
Ben Hutchings12d00ca2009-10-23 08:30:46 +000080 efx_reado(efx, &reg, FR_AB_GPIO_CTL);
Ben Hutchings3e6c4532009-10-23 08:30:36 +000081 return EFX_OWORD_FIELD(reg, FRF_AB_GPIO3_IN);
Ben Hutchings8ceee662008-04-27 12:55:59 +010082}
83
Ben Hutchings37b5a602008-05-30 22:27:04 +010084static int falcon_getscl(void *data)
Ben Hutchings8ceee662008-04-27 12:55:59 +010085{
Ben Hutchings37b5a602008-05-30 22:27:04 +010086 struct efx_nic *efx = (struct efx_nic *)data;
Ben Hutchings8ceee662008-04-27 12:55:59 +010087 efx_oword_t reg;
88
Ben Hutchings12d00ca2009-10-23 08:30:46 +000089 efx_reado(efx, &reg, FR_AB_GPIO_CTL);
Ben Hutchings3e6c4532009-10-23 08:30:36 +000090 return EFX_OWORD_FIELD(reg, FRF_AB_GPIO0_IN);
Ben Hutchings8ceee662008-04-27 12:55:59 +010091}
92
Ben Hutchings37b5a602008-05-30 22:27:04 +010093static struct i2c_algo_bit_data falcon_i2c_bit_operations = {
94 .setsda = falcon_setsda,
95 .setscl = falcon_setscl,
Ben Hutchings8ceee662008-04-27 12:55:59 +010096 .getsda = falcon_getsda,
97 .getscl = falcon_getscl,
Ben Hutchings62c78322008-05-30 22:27:46 +010098 .udelay = 5,
Ben Hutchings9dadae62008-07-18 18:59:12 +010099 /* Wait up to 50 ms for slave to let us pull SCL high */
100 .timeout = DIV_ROUND_UP(HZ, 20),
Ben Hutchings8ceee662008-04-27 12:55:59 +0100101};
102
Ben Hutchingsef2b90e2009-11-29 03:42:31 +0000103static void falcon_push_irq_moderation(struct efx_channel *channel)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100104{
105 efx_dword_t timer_cmd;
106 struct efx_nic *efx = channel->efx;
107
108 /* Set timer register */
109 if (channel->irq_moderation) {
Ben Hutchings8ceee662008-04-27 12:55:59 +0100110 EFX_POPULATE_DWORD_2(timer_cmd,
Ben Hutchings3e6c4532009-10-23 08:30:36 +0000111 FRF_AB_TC_TIMER_MODE,
112 FFE_BB_TIMER_MODE_INT_HLDOFF,
113 FRF_AB_TC_TIMER_VAL,
Ben Hutchings0d86ebd2009-10-23 08:32:13 +0000114 channel->irq_moderation - 1);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100115 } else {
116 EFX_POPULATE_DWORD_2(timer_cmd,
Ben Hutchings3e6c4532009-10-23 08:30:36 +0000117 FRF_AB_TC_TIMER_MODE,
118 FFE_BB_TIMER_MODE_DIS,
119 FRF_AB_TC_TIMER_VAL, 0);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100120 }
Ben Hutchings3e6c4532009-10-23 08:30:36 +0000121 BUILD_BUG_ON(FR_AA_TIMER_COMMAND_KER != FR_BZ_TIMER_COMMAND_P0);
Ben Hutchings12d00ca2009-10-23 08:30:46 +0000122 efx_writed_page_locked(efx, &timer_cmd, FR_BZ_TIMER_COMMAND_P0,
123 channel->channel);
Ben Hutchings127e6e12009-11-25 16:09:55 +0000124}
125
Ben Hutchingsd3245b22009-11-29 03:42:41 +0000126static void falcon_deconfigure_mac_wrapper(struct efx_nic *efx);
127
Ben Hutchings127e6e12009-11-25 16:09:55 +0000128static void falcon_prepare_flush(struct efx_nic *efx)
129{
130 falcon_deconfigure_mac_wrapper(efx);
131
132 /* Wait for the tx and rx fifo's to get to the next packet boundary
133 * (~1ms without back-pressure), then to drain the remainder of the
134 * fifo's at data path speeds (negligible), with a healthy margin. */
135 msleep(10);
Ben Hutchings6bc5d3a2008-09-01 12:49:37 +0100136}
137
Ben Hutchings8ceee662008-04-27 12:55:59 +0100138/* Acknowledge a legacy interrupt from Falcon
139 *
140 * This acknowledges a legacy (not MSI) interrupt via INT_ACK_KER_REG.
141 *
142 * Due to SFC bug 3706 (silicon revision <=A1) reads can be duplicated in the
143 * BIU. Interrupt acknowledge is read sensitive so must write instead
144 * (then read to ensure the BIU collector is flushed)
145 *
146 * NB most hardware supports MSI interrupts
147 */
Ben Hutchings152b6a62009-11-29 03:43:56 +0000148inline void falcon_irq_ack_a1(struct efx_nic *efx)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100149{
150 efx_dword_t reg;
151
Ben Hutchings3e6c4532009-10-23 08:30:36 +0000152 EFX_POPULATE_DWORD_1(reg, FRF_AA_INT_ACK_KER_FIELD, 0xb7eb7e);
Ben Hutchings12d00ca2009-10-23 08:30:46 +0000153 efx_writed(efx, &reg, FR_AA_INT_ACK_KER);
154 efx_readd(efx, &reg, FR_AA_WORK_AROUND_BROKEN_PCI_READS);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100155}
156
Ben Hutchings8ceee662008-04-27 12:55:59 +0100157
Ben Hutchings152b6a62009-11-29 03:43:56 +0000158irqreturn_t falcon_legacy_interrupt_a1(int irq, void *dev_id)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100159{
Ben Hutchingsd3208b52008-05-16 21:20:00 +0100160 struct efx_nic *efx = dev_id;
161 efx_oword_t *int_ker = efx->irq_status.addr;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100162 struct efx_channel *channel;
163 int syserr;
164 int queues;
165
166 /* Check to see if this is our interrupt. If it isn't, we
167 * exit without having touched the hardware.
168 */
169 if (unlikely(EFX_OWORD_IS_ZERO(*int_ker))) {
Ben Hutchings62776d02010-06-23 11:30:07 +0000170 netif_vdbg(efx, intr, efx->net_dev,
171 "IRQ %d on CPU %d not for me\n", irq,
172 raw_smp_processor_id());
Ben Hutchings8ceee662008-04-27 12:55:59 +0100173 return IRQ_NONE;
174 }
175 efx->last_irq_cpu = raw_smp_processor_id();
Ben Hutchings62776d02010-06-23 11:30:07 +0000176 netif_vdbg(efx, intr, efx->net_dev,
177 "IRQ %d on CPU %d status " EFX_OWORD_FMT "\n",
178 irq, raw_smp_processor_id(), EFX_OWORD_VAL(*int_ker));
Ben Hutchings8ceee662008-04-27 12:55:59 +0100179
Ben Hutchings8ceee662008-04-27 12:55:59 +0100180 /* Determine interrupting queues, clear interrupt status
181 * register and acknowledge the device interrupt.
182 */
Ben Hutchings674979d2009-11-29 03:42:10 +0000183 BUILD_BUG_ON(FSF_AZ_NET_IVEC_INT_Q_WIDTH > EFX_MAX_CHANNELS);
184 queues = EFX_OWORD_FIELD(*int_ker, FSF_AZ_NET_IVEC_INT_Q);
Steve Hodgson63695452010-04-28 09:27:36 +0000185
186 /* Check to see if we have a serious error condition */
187 if (queues & (1U << efx->fatal_irq_level)) {
188 syserr = EFX_OWORD_FIELD(*int_ker, FSF_AZ_NET_IVEC_FATAL_INT);
189 if (unlikely(syserr))
190 return efx_nic_fatal_interrupt(efx);
191 }
192
Ben Hutchings8ceee662008-04-27 12:55:59 +0100193 EFX_ZERO_OWORD(*int_ker);
194 wmb(); /* Ensure the vector is cleared before interrupt ack */
195 falcon_irq_ack_a1(efx);
196
197 /* Schedule processing of any interrupting queues */
198 channel = &efx->channel[0];
199 while (queues) {
200 if (queues & 0x01)
201 efx_schedule_channel(channel);
202 channel++;
203 queues >>= 1;
204 }
205
206 return IRQ_HANDLED;
207}
Ben Hutchings8ceee662008-04-27 12:55:59 +0100208/**************************************************************************
209 *
210 * EEPROM/flash
211 *
212 **************************************************************************
213 */
214
Ben Hutchings23d30f02008-12-12 21:56:11 -0800215#define FALCON_SPI_MAX_LEN sizeof(efx_oword_t)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100216
Ben Hutchingsbe4ea892008-12-12 21:33:50 -0800217static int falcon_spi_poll(struct efx_nic *efx)
218{
219 efx_oword_t reg;
Ben Hutchings12d00ca2009-10-23 08:30:46 +0000220 efx_reado(efx, &reg, FR_AB_EE_SPI_HCMD);
Ben Hutchings3e6c4532009-10-23 08:30:36 +0000221 return EFX_OWORD_FIELD(reg, FRF_AB_EE_SPI_HCMD_CMD_EN) ? -EBUSY : 0;
Ben Hutchingsbe4ea892008-12-12 21:33:50 -0800222}
223
Ben Hutchings8ceee662008-04-27 12:55:59 +0100224/* Wait for SPI command completion */
225static int falcon_spi_wait(struct efx_nic *efx)
226{
Ben Hutchingsbe4ea892008-12-12 21:33:50 -0800227 /* Most commands will finish quickly, so we start polling at
228 * very short intervals. Sometimes the command may have to
229 * wait for VPD or expansion ROM access outside of our
230 * control, so we allow up to 100 ms. */
231 unsigned long timeout = jiffies + 1 + DIV_ROUND_UP(HZ, 10);
232 int i;
233
234 for (i = 0; i < 10; i++) {
235 if (!falcon_spi_poll(efx))
236 return 0;
237 udelay(10);
238 }
Ben Hutchings8ceee662008-04-27 12:55:59 +0100239
Ben Hutchings4a5b5042008-09-01 12:47:16 +0100240 for (;;) {
Ben Hutchingsbe4ea892008-12-12 21:33:50 -0800241 if (!falcon_spi_poll(efx))
Ben Hutchings8ceee662008-04-27 12:55:59 +0100242 return 0;
Ben Hutchings4a5b5042008-09-01 12:47:16 +0100243 if (time_after_eq(jiffies, timeout)) {
Ben Hutchings62776d02010-06-23 11:30:07 +0000244 netif_err(efx, hw, efx->net_dev,
245 "timed out waiting for SPI\n");
Ben Hutchings4a5b5042008-09-01 12:47:16 +0100246 return -ETIMEDOUT;
247 }
Ben Hutchingsbe4ea892008-12-12 21:33:50 -0800248 schedule_timeout_uninterruptible(1);
Ben Hutchings4a5b5042008-09-01 12:47:16 +0100249 }
Ben Hutchings8ceee662008-04-27 12:55:59 +0100250}
251
Ben Hutchings76884832009-11-29 15:10:44 +0000252int falcon_spi_cmd(struct efx_nic *efx, const struct efx_spi_device *spi,
Ben Hutchingsf4150722008-11-04 20:34:28 +0000253 unsigned int command, int address,
Ben Hutchings23d30f02008-12-12 21:56:11 -0800254 const void *in, void *out, size_t len)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100255{
Ben Hutchings4a5b5042008-09-01 12:47:16 +0100256 bool addressed = (address >= 0);
257 bool reading = (out != NULL);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100258 efx_oword_t reg;
259 int rc;
260
Ben Hutchings4a5b5042008-09-01 12:47:16 +0100261 /* Input validation */
262 if (len > FALCON_SPI_MAX_LEN)
263 return -EINVAL;
Ben Hutchingsf4150722008-11-04 20:34:28 +0000264 BUG_ON(!mutex_is_locked(&efx->spi_lock));
Ben Hutchings8ceee662008-04-27 12:55:59 +0100265
Ben Hutchingsbe4ea892008-12-12 21:33:50 -0800266 /* Check that previous command is not still running */
267 rc = falcon_spi_poll(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100268 if (rc)
269 return rc;
270
Ben Hutchings4a5b5042008-09-01 12:47:16 +0100271 /* Program address register, if we have an address */
272 if (addressed) {
Ben Hutchings3e6c4532009-10-23 08:30:36 +0000273 EFX_POPULATE_OWORD_1(reg, FRF_AB_EE_SPI_HADR_ADR, address);
Ben Hutchings12d00ca2009-10-23 08:30:46 +0000274 efx_writeo(efx, &reg, FR_AB_EE_SPI_HADR);
Ben Hutchings4a5b5042008-09-01 12:47:16 +0100275 }
Ben Hutchings8ceee662008-04-27 12:55:59 +0100276
Ben Hutchings4a5b5042008-09-01 12:47:16 +0100277 /* Program data register, if we have data */
278 if (in != NULL) {
279 memcpy(&reg, in, len);
Ben Hutchings12d00ca2009-10-23 08:30:46 +0000280 efx_writeo(efx, &reg, FR_AB_EE_SPI_HDATA);
Ben Hutchings4a5b5042008-09-01 12:47:16 +0100281 }
282
283 /* Issue read/write command */
Ben Hutchings8ceee662008-04-27 12:55:59 +0100284 EFX_POPULATE_OWORD_7(reg,
Ben Hutchings3e6c4532009-10-23 08:30:36 +0000285 FRF_AB_EE_SPI_HCMD_CMD_EN, 1,
286 FRF_AB_EE_SPI_HCMD_SF_SEL, spi->device_id,
287 FRF_AB_EE_SPI_HCMD_DABCNT, len,
288 FRF_AB_EE_SPI_HCMD_READ, reading,
289 FRF_AB_EE_SPI_HCMD_DUBCNT, 0,
290 FRF_AB_EE_SPI_HCMD_ADBCNT,
Ben Hutchings4a5b5042008-09-01 12:47:16 +0100291 (addressed ? spi->addr_len : 0),
Ben Hutchings3e6c4532009-10-23 08:30:36 +0000292 FRF_AB_EE_SPI_HCMD_ENC, command);
Ben Hutchings12d00ca2009-10-23 08:30:46 +0000293 efx_writeo(efx, &reg, FR_AB_EE_SPI_HCMD);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100294
Ben Hutchings4a5b5042008-09-01 12:47:16 +0100295 /* Wait for read/write to complete */
Ben Hutchings8ceee662008-04-27 12:55:59 +0100296 rc = falcon_spi_wait(efx);
297 if (rc)
298 return rc;
299
300 /* Read data */
Ben Hutchings4a5b5042008-09-01 12:47:16 +0100301 if (out != NULL) {
Ben Hutchings12d00ca2009-10-23 08:30:46 +0000302 efx_reado(efx, &reg, FR_AB_EE_SPI_HDATA);
Ben Hutchings4a5b5042008-09-01 12:47:16 +0100303 memcpy(out, &reg, len);
304 }
305
Ben Hutchings8ceee662008-04-27 12:55:59 +0100306 return 0;
307}
308
Ben Hutchings23d30f02008-12-12 21:56:11 -0800309static size_t
310falcon_spi_write_limit(const struct efx_spi_device *spi, size_t start)
Ben Hutchings4a5b5042008-09-01 12:47:16 +0100311{
312 return min(FALCON_SPI_MAX_LEN,
313 (spi->block_size - (start & (spi->block_size - 1))));
314}
315
316static inline u8
317efx_spi_munge_command(const struct efx_spi_device *spi,
318 const u8 command, const unsigned int address)
319{
320 return command | (((address >> 8) & spi->munge_address) << 3);
321}
322
Ben Hutchingsbe4ea892008-12-12 21:33:50 -0800323/* Wait up to 10 ms for buffered write completion */
Ben Hutchings76884832009-11-29 15:10:44 +0000324int
325falcon_spi_wait_write(struct efx_nic *efx, const struct efx_spi_device *spi)
Ben Hutchings4a5b5042008-09-01 12:47:16 +0100326{
Ben Hutchingsbe4ea892008-12-12 21:33:50 -0800327 unsigned long timeout = jiffies + 1 + DIV_ROUND_UP(HZ, 100);
Ben Hutchings4a5b5042008-09-01 12:47:16 +0100328 u8 status;
Ben Hutchingsbe4ea892008-12-12 21:33:50 -0800329 int rc;
Ben Hutchings4a5b5042008-09-01 12:47:16 +0100330
Ben Hutchingsbe4ea892008-12-12 21:33:50 -0800331 for (;;) {
Ben Hutchings76884832009-11-29 15:10:44 +0000332 rc = falcon_spi_cmd(efx, spi, SPI_RDSR, -1, NULL,
Ben Hutchings4a5b5042008-09-01 12:47:16 +0100333 &status, sizeof(status));
334 if (rc)
335 return rc;
336 if (!(status & SPI_STATUS_NRDY))
337 return 0;
Ben Hutchingsbe4ea892008-12-12 21:33:50 -0800338 if (time_after_eq(jiffies, timeout)) {
Ben Hutchings62776d02010-06-23 11:30:07 +0000339 netif_err(efx, hw, efx->net_dev,
340 "SPI write timeout on device %d"
341 " last status=0x%02x\n",
342 spi->device_id, status);
Ben Hutchingsbe4ea892008-12-12 21:33:50 -0800343 return -ETIMEDOUT;
344 }
345 schedule_timeout_uninterruptible(1);
Ben Hutchings4a5b5042008-09-01 12:47:16 +0100346 }
Ben Hutchings4a5b5042008-09-01 12:47:16 +0100347}
348
Ben Hutchings76884832009-11-29 15:10:44 +0000349int falcon_spi_read(struct efx_nic *efx, const struct efx_spi_device *spi,
350 loff_t start, size_t len, size_t *retlen, u8 *buffer)
Ben Hutchings4a5b5042008-09-01 12:47:16 +0100351{
Ben Hutchings23d30f02008-12-12 21:56:11 -0800352 size_t block_len, pos = 0;
353 unsigned int command;
Ben Hutchings4a5b5042008-09-01 12:47:16 +0100354 int rc = 0;
355
356 while (pos < len) {
Ben Hutchings23d30f02008-12-12 21:56:11 -0800357 block_len = min(len - pos, FALCON_SPI_MAX_LEN);
Ben Hutchings4a5b5042008-09-01 12:47:16 +0100358
359 command = efx_spi_munge_command(spi, SPI_READ, start + pos);
Ben Hutchings76884832009-11-29 15:10:44 +0000360 rc = falcon_spi_cmd(efx, spi, command, start + pos, NULL,
Ben Hutchings4a5b5042008-09-01 12:47:16 +0100361 buffer + pos, block_len);
362 if (rc)
363 break;
364 pos += block_len;
365
366 /* Avoid locking up the system */
367 cond_resched();
368 if (signal_pending(current)) {
369 rc = -EINTR;
370 break;
371 }
372 }
373
374 if (retlen)
375 *retlen = pos;
376 return rc;
377}
378
Ben Hutchings76884832009-11-29 15:10:44 +0000379int
380falcon_spi_write(struct efx_nic *efx, const struct efx_spi_device *spi,
381 loff_t start, size_t len, size_t *retlen, const u8 *buffer)
Ben Hutchings4a5b5042008-09-01 12:47:16 +0100382{
383 u8 verify_buffer[FALCON_SPI_MAX_LEN];
Ben Hutchings23d30f02008-12-12 21:56:11 -0800384 size_t block_len, pos = 0;
385 unsigned int command;
Ben Hutchings4a5b5042008-09-01 12:47:16 +0100386 int rc = 0;
387
388 while (pos < len) {
Ben Hutchings76884832009-11-29 15:10:44 +0000389 rc = falcon_spi_cmd(efx, spi, SPI_WREN, -1, NULL, NULL, 0);
Ben Hutchings4a5b5042008-09-01 12:47:16 +0100390 if (rc)
391 break;
392
Ben Hutchings23d30f02008-12-12 21:56:11 -0800393 block_len = min(len - pos,
Ben Hutchings4a5b5042008-09-01 12:47:16 +0100394 falcon_spi_write_limit(spi, start + pos));
395 command = efx_spi_munge_command(spi, SPI_WRITE, start + pos);
Ben Hutchings76884832009-11-29 15:10:44 +0000396 rc = falcon_spi_cmd(efx, spi, command, start + pos,
Ben Hutchings4a5b5042008-09-01 12:47:16 +0100397 buffer + pos, NULL, block_len);
398 if (rc)
399 break;
400
Ben Hutchings76884832009-11-29 15:10:44 +0000401 rc = falcon_spi_wait_write(efx, spi);
Ben Hutchings4a5b5042008-09-01 12:47:16 +0100402 if (rc)
403 break;
404
405 command = efx_spi_munge_command(spi, SPI_READ, start + pos);
Ben Hutchings76884832009-11-29 15:10:44 +0000406 rc = falcon_spi_cmd(efx, spi, command, start + pos,
Ben Hutchings4a5b5042008-09-01 12:47:16 +0100407 NULL, verify_buffer, block_len);
408 if (memcmp(verify_buffer, buffer + pos, block_len)) {
409 rc = -EIO;
410 break;
411 }
412
413 pos += block_len;
414
415 /* Avoid locking up the system */
416 cond_resched();
417 if (signal_pending(current)) {
418 rc = -EINTR;
419 break;
420 }
421 }
422
423 if (retlen)
424 *retlen = pos;
425 return rc;
426}
427
Ben Hutchings8ceee662008-04-27 12:55:59 +0100428/**************************************************************************
429 *
430 * MAC wrapper
431 *
432 **************************************************************************
433 */
Ben Hutchings177dfcd2008-12-12 21:50:08 -0800434
Ben Hutchingsef2b90e2009-11-29 03:42:31 +0000435static void falcon_push_multicast_hash(struct efx_nic *efx)
436{
437 union efx_multicast_hash *mc_hash = &efx->multicast_hash;
438
439 WARN_ON(!mutex_is_locked(&efx->mac_lock));
440
441 efx_writeo(efx, &mc_hash->oword[0], FR_AB_MAC_MC_HASH_REG0);
442 efx_writeo(efx, &mc_hash->oword[1], FR_AB_MAC_MC_HASH_REG1);
443}
444
Ben Hutchingsd3245b22009-11-29 03:42:41 +0000445static void falcon_reset_macs(struct efx_nic *efx)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100446{
Ben Hutchingsd3245b22009-11-29 03:42:41 +0000447 struct falcon_nic_data *nic_data = efx->nic_data;
448 efx_oword_t reg, mac_ctrl;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100449 int count;
450
Ben Hutchingsdaeda632009-11-28 05:36:04 +0000451 if (efx_nic_rev(efx) < EFX_REV_FALCON_B0) {
Ben Hutchings177dfcd2008-12-12 21:50:08 -0800452 /* It's not safe to use GLB_CTL_REG to reset the
453 * macs, so instead use the internal MAC resets
454 */
455 if (!EFX_IS10G(efx)) {
Ben Hutchings3e6c4532009-10-23 08:30:36 +0000456 EFX_POPULATE_OWORD_1(reg, FRF_AB_GM_SW_RST, 1);
Ben Hutchings12d00ca2009-10-23 08:30:46 +0000457 efx_writeo(efx, &reg, FR_AB_GM_CFG1);
Ben Hutchings177dfcd2008-12-12 21:50:08 -0800458 udelay(1000);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100459
Ben Hutchings3e6c4532009-10-23 08:30:36 +0000460 EFX_POPULATE_OWORD_1(reg, FRF_AB_GM_SW_RST, 0);
Ben Hutchings12d00ca2009-10-23 08:30:46 +0000461 efx_writeo(efx, &reg, FR_AB_GM_CFG1);
Ben Hutchings177dfcd2008-12-12 21:50:08 -0800462 udelay(1000);
Ben Hutchingsd3245b22009-11-29 03:42:41 +0000463 return;
Ben Hutchings177dfcd2008-12-12 21:50:08 -0800464 } else {
Ben Hutchings3e6c4532009-10-23 08:30:36 +0000465 EFX_POPULATE_OWORD_1(reg, FRF_AB_XM_CORE_RST, 1);
Ben Hutchings12d00ca2009-10-23 08:30:46 +0000466 efx_writeo(efx, &reg, FR_AB_XM_GLB_CFG);
Ben Hutchings177dfcd2008-12-12 21:50:08 -0800467
468 for (count = 0; count < 10000; count++) {
Ben Hutchings12d00ca2009-10-23 08:30:46 +0000469 efx_reado(efx, &reg, FR_AB_XM_GLB_CFG);
Ben Hutchings3e6c4532009-10-23 08:30:36 +0000470 if (EFX_OWORD_FIELD(reg, FRF_AB_XM_CORE_RST) ==
471 0)
Ben Hutchingsd3245b22009-11-29 03:42:41 +0000472 return;
Ben Hutchings177dfcd2008-12-12 21:50:08 -0800473 udelay(10);
474 }
475
Ben Hutchings62776d02010-06-23 11:30:07 +0000476 netif_err(efx, hw, efx->net_dev,
477 "timed out waiting for XMAC core reset\n");
Ben Hutchings177dfcd2008-12-12 21:50:08 -0800478 }
479 }
Ben Hutchings8ceee662008-04-27 12:55:59 +0100480
Ben Hutchingsd3245b22009-11-29 03:42:41 +0000481 /* Mac stats will fail whist the TX fifo is draining */
482 WARN_ON(nic_data->stats_disable_count == 0);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100483
Ben Hutchingsd3245b22009-11-29 03:42:41 +0000484 efx_reado(efx, &mac_ctrl, FR_AB_MAC_CTRL);
485 EFX_SET_OWORD_FIELD(mac_ctrl, FRF_BB_TXFIFO_DRAIN_EN, 1);
486 efx_writeo(efx, &mac_ctrl, FR_AB_MAC_CTRL);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100487
Ben Hutchings12d00ca2009-10-23 08:30:46 +0000488 efx_reado(efx, &reg, FR_AB_GLB_CTL);
Ben Hutchings3e6c4532009-10-23 08:30:36 +0000489 EFX_SET_OWORD_FIELD(reg, FRF_AB_RST_XGTX, 1);
490 EFX_SET_OWORD_FIELD(reg, FRF_AB_RST_XGRX, 1);
491 EFX_SET_OWORD_FIELD(reg, FRF_AB_RST_EM, 1);
Ben Hutchings12d00ca2009-10-23 08:30:46 +0000492 efx_writeo(efx, &reg, FR_AB_GLB_CTL);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100493
494 count = 0;
495 while (1) {
Ben Hutchings12d00ca2009-10-23 08:30:46 +0000496 efx_reado(efx, &reg, FR_AB_GLB_CTL);
Ben Hutchings3e6c4532009-10-23 08:30:36 +0000497 if (!EFX_OWORD_FIELD(reg, FRF_AB_RST_XGTX) &&
498 !EFX_OWORD_FIELD(reg, FRF_AB_RST_XGRX) &&
499 !EFX_OWORD_FIELD(reg, FRF_AB_RST_EM)) {
Ben Hutchings62776d02010-06-23 11:30:07 +0000500 netif_dbg(efx, hw, efx->net_dev,
501 "Completed MAC reset after %d loops\n",
502 count);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100503 break;
504 }
505 if (count > 20) {
Ben Hutchings62776d02010-06-23 11:30:07 +0000506 netif_err(efx, hw, efx->net_dev, "MAC reset failed\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +0100507 break;
508 }
509 count++;
510 udelay(10);
511 }
512
Ben Hutchingsd3245b22009-11-29 03:42:41 +0000513 /* Ensure the correct MAC is selected before statistics
514 * are re-enabled by the caller */
515 efx_writeo(efx, &mac_ctrl, FR_AB_MAC_CTRL);
Steve Hodgsonb7b40ee2010-04-28 09:28:10 +0000516
517 /* This can run even when the GMAC is selected */
518 falcon_setup_xaui(efx);
Ben Hutchings177dfcd2008-12-12 21:50:08 -0800519}
520
521void falcon_drain_tx_fifo(struct efx_nic *efx)
522{
523 efx_oword_t reg;
524
Ben Hutchingsdaeda632009-11-28 05:36:04 +0000525 if ((efx_nic_rev(efx) < EFX_REV_FALCON_B0) ||
Ben Hutchings177dfcd2008-12-12 21:50:08 -0800526 (efx->loopback_mode != LOOPBACK_NONE))
527 return;
528
Ben Hutchings12d00ca2009-10-23 08:30:46 +0000529 efx_reado(efx, &reg, FR_AB_MAC_CTRL);
Ben Hutchings177dfcd2008-12-12 21:50:08 -0800530 /* There is no point in draining more than once */
Ben Hutchings3e6c4532009-10-23 08:30:36 +0000531 if (EFX_OWORD_FIELD(reg, FRF_BB_TXFIFO_DRAIN_EN))
Ben Hutchings177dfcd2008-12-12 21:50:08 -0800532 return;
533
534 falcon_reset_macs(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100535}
536
Ben Hutchingsd3245b22009-11-29 03:42:41 +0000537static void falcon_deconfigure_mac_wrapper(struct efx_nic *efx)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100538{
Ben Hutchings177dfcd2008-12-12 21:50:08 -0800539 efx_oword_t reg;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100540
Ben Hutchingsdaeda632009-11-28 05:36:04 +0000541 if (efx_nic_rev(efx) < EFX_REV_FALCON_B0)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100542 return;
543
544 /* Isolate the MAC -> RX */
Ben Hutchings12d00ca2009-10-23 08:30:46 +0000545 efx_reado(efx, &reg, FR_AZ_RX_CFG);
Ben Hutchings3e6c4532009-10-23 08:30:36 +0000546 EFX_SET_OWORD_FIELD(reg, FRF_BZ_RX_INGR_EN, 0);
Ben Hutchings12d00ca2009-10-23 08:30:46 +0000547 efx_writeo(efx, &reg, FR_AZ_RX_CFG);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100548
Ben Hutchingsd3245b22009-11-29 03:42:41 +0000549 /* Isolate TX -> MAC */
550 falcon_drain_tx_fifo(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100551}
552
553void falcon_reconfigure_mac_wrapper(struct efx_nic *efx)
554{
Ben Hutchingseb50c0d2009-11-23 16:06:30 +0000555 struct efx_link_state *link_state = &efx->link_state;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100556 efx_oword_t reg;
Steve Hodgsonfd371e32010-06-01 11:17:51 +0000557 int link_speed, isolate;
558
559 isolate = (efx->reset_pending != RESET_TYPE_NONE);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100560
Ben Hutchingseb50c0d2009-11-23 16:06:30 +0000561 switch (link_state->speed) {
Ben Hutchingsf31a45d2008-12-12 21:43:33 -0800562 case 10000: link_speed = 3; break;
563 case 1000: link_speed = 2; break;
564 case 100: link_speed = 1; break;
565 default: link_speed = 0; break;
566 }
Ben Hutchings8ceee662008-04-27 12:55:59 +0100567 /* MAC_LINK_STATUS controls MAC backpressure but doesn't work
568 * as advertised. Disable to ensure packets are not
569 * indefinitely held and TX queue can be flushed at any point
570 * while the link is down. */
571 EFX_POPULATE_OWORD_5(reg,
Ben Hutchings3e6c4532009-10-23 08:30:36 +0000572 FRF_AB_MAC_XOFF_VAL, 0xffff /* max pause time */,
573 FRF_AB_MAC_BCAD_ACPT, 1,
574 FRF_AB_MAC_UC_PROM, efx->promiscuous,
575 FRF_AB_MAC_LINK_STATUS, 1, /* always set */
576 FRF_AB_MAC_SPEED, link_speed);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100577 /* On B0, MAC backpressure can be disabled and packets get
578 * discarded. */
Ben Hutchingsdaeda632009-11-28 05:36:04 +0000579 if (efx_nic_rev(efx) >= EFX_REV_FALCON_B0) {
Ben Hutchings3e6c4532009-10-23 08:30:36 +0000580 EFX_SET_OWORD_FIELD(reg, FRF_BB_TXFIFO_DRAIN_EN,
Steve Hodgsonfd371e32010-06-01 11:17:51 +0000581 !link_state->up || isolate);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100582 }
583
Ben Hutchings12d00ca2009-10-23 08:30:46 +0000584 efx_writeo(efx, &reg, FR_AB_MAC_CTRL);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100585
586 /* Restore the multicast hash registers. */
Ben Hutchings8be4f3e2009-11-25 16:12:16 +0000587 falcon_push_multicast_hash(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100588
Ben Hutchings12d00ca2009-10-23 08:30:46 +0000589 efx_reado(efx, &reg, FR_AZ_RX_CFG);
Ben Hutchings4b0d29d2009-11-29 03:42:18 +0000590 /* Enable XOFF signal from RX FIFO (we enabled it during NIC
591 * initialisation but it may read back as 0) */
592 EFX_SET_OWORD_FIELD(reg, FRF_AZ_RX_XOFF_MAC_EN, 1);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100593 /* Unisolate the MAC -> RX */
Ben Hutchingsdaeda632009-11-28 05:36:04 +0000594 if (efx_nic_rev(efx) >= EFX_REV_FALCON_B0)
Steve Hodgsonfd371e32010-06-01 11:17:51 +0000595 EFX_SET_OWORD_FIELD(reg, FRF_BZ_RX_INGR_EN, !isolate);
Ben Hutchings12d00ca2009-10-23 08:30:46 +0000596 efx_writeo(efx, &reg, FR_AZ_RX_CFG);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100597}
598
Ben Hutchings55edc6e2009-11-25 16:11:35 +0000599static void falcon_stats_request(struct efx_nic *efx)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100600{
Ben Hutchings55edc6e2009-11-25 16:11:35 +0000601 struct falcon_nic_data *nic_data = efx->nic_data;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100602 efx_oword_t reg;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100603
Ben Hutchings55edc6e2009-11-25 16:11:35 +0000604 WARN_ON(nic_data->stats_pending);
605 WARN_ON(nic_data->stats_disable_count);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100606
Ben Hutchings55edc6e2009-11-25 16:11:35 +0000607 if (nic_data->stats_dma_done == NULL)
608 return; /* no mac selected */
Ben Hutchings8ceee662008-04-27 12:55:59 +0100609
Ben Hutchings55edc6e2009-11-25 16:11:35 +0000610 *nic_data->stats_dma_done = FALCON_STATS_NOT_DONE;
611 nic_data->stats_pending = true;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100612 wmb(); /* ensure done flag is clear */
613
614 /* Initiate DMA transfer of stats */
615 EFX_POPULATE_OWORD_2(reg,
Ben Hutchings3e6c4532009-10-23 08:30:36 +0000616 FRF_AB_MAC_STAT_DMA_CMD, 1,
617 FRF_AB_MAC_STAT_DMA_ADR,
Ben Hutchings8ceee662008-04-27 12:55:59 +0100618 efx->stats_buffer.dma_addr);
Ben Hutchings12d00ca2009-10-23 08:30:46 +0000619 efx_writeo(efx, &reg, FR_AB_MAC_STAT_DMA);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100620
Ben Hutchings55edc6e2009-11-25 16:11:35 +0000621 mod_timer(&nic_data->stats_timer, round_jiffies_up(jiffies + HZ / 2));
622}
Ben Hutchings8ceee662008-04-27 12:55:59 +0100623
Ben Hutchings55edc6e2009-11-25 16:11:35 +0000624static void falcon_stats_complete(struct efx_nic *efx)
625{
626 struct falcon_nic_data *nic_data = efx->nic_data;
627
628 if (!nic_data->stats_pending)
629 return;
630
631 nic_data->stats_pending = 0;
632 if (*nic_data->stats_dma_done == FALCON_STATS_DONE) {
633 rmb(); /* read the done flag before the stats */
634 efx->mac_op->update_stats(efx);
635 } else {
Ben Hutchings62776d02010-06-23 11:30:07 +0000636 netif_err(efx, hw, efx->net_dev,
637 "timed out waiting for statistics\n");
Ben Hutchings55edc6e2009-11-25 16:11:35 +0000638 }
639}
640
641static void falcon_stats_timer_func(unsigned long context)
642{
643 struct efx_nic *efx = (struct efx_nic *)context;
644 struct falcon_nic_data *nic_data = efx->nic_data;
645
646 spin_lock(&efx->stats_lock);
647
648 falcon_stats_complete(efx);
649 if (nic_data->stats_disable_count == 0)
650 falcon_stats_request(efx);
651
652 spin_unlock(&efx->stats_lock);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100653}
654
Ben Hutchingsd3245b22009-11-29 03:42:41 +0000655static void falcon_switch_mac(struct efx_nic *efx);
656
Steve Hodgsonfdaa9ae2009-11-28 05:34:05 +0000657static bool falcon_loopback_link_poll(struct efx_nic *efx)
658{
659 struct efx_link_state old_state = efx->link_state;
660
661 WARN_ON(!mutex_is_locked(&efx->mac_lock));
662 WARN_ON(!LOOPBACK_INTERNAL(efx));
663
664 efx->link_state.fd = true;
665 efx->link_state.fc = efx->wanted_fc;
666 efx->link_state.up = true;
667
668 if (efx->loopback_mode == LOOPBACK_GMAC)
669 efx->link_state.speed = 1000;
670 else
671 efx->link_state.speed = 10000;
672
673 return !efx_link_state_equal(&efx->link_state, &old_state);
674}
675
Ben Hutchingsd3245b22009-11-29 03:42:41 +0000676static int falcon_reconfigure_port(struct efx_nic *efx)
677{
678 int rc;
679
680 WARN_ON(efx_nic_rev(efx) > EFX_REV_FALCON_B0);
681
682 /* Poll the PHY link state *before* reconfiguring it. This means we
683 * will pick up the correct speed (in loopback) to select the correct
684 * MAC.
685 */
686 if (LOOPBACK_INTERNAL(efx))
687 falcon_loopback_link_poll(efx);
688 else
689 efx->phy_op->poll(efx);
690
691 falcon_stop_nic_stats(efx);
692 falcon_deconfigure_mac_wrapper(efx);
693
694 falcon_switch_mac(efx);
695
696 efx->phy_op->reconfigure(efx);
697 rc = efx->mac_op->reconfigure(efx);
698 BUG_ON(rc);
699
700 falcon_start_nic_stats(efx);
701
702 /* Synchronise efx->link_state with the kernel */
703 efx_link_status_changed(efx);
704
705 return 0;
706}
707
Ben Hutchings8ceee662008-04-27 12:55:59 +0100708/**************************************************************************
709 *
710 * PHY access via GMII
711 *
712 **************************************************************************
713 */
714
Ben Hutchings8ceee662008-04-27 12:55:59 +0100715/* Wait for GMII access to complete */
716static int falcon_gmii_wait(struct efx_nic *efx)
717{
Ben Hutchings80cb9a02009-11-25 16:08:41 +0000718 efx_oword_t md_stat;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100719 int count;
720
Ben Hutchings177dfcd2008-12-12 21:50:08 -0800721 /* wait upto 50ms - taken max from datasheet */
722 for (count = 0; count < 5000; count++) {
Ben Hutchings80cb9a02009-11-25 16:08:41 +0000723 efx_reado(efx, &md_stat, FR_AB_MD_STAT);
724 if (EFX_OWORD_FIELD(md_stat, FRF_AB_MD_BSY) == 0) {
725 if (EFX_OWORD_FIELD(md_stat, FRF_AB_MD_LNFL) != 0 ||
726 EFX_OWORD_FIELD(md_stat, FRF_AB_MD_BSERR) != 0) {
Ben Hutchings62776d02010-06-23 11:30:07 +0000727 netif_err(efx, hw, efx->net_dev,
728 "error from GMII access "
729 EFX_OWORD_FMT"\n",
730 EFX_OWORD_VAL(md_stat));
Ben Hutchings8ceee662008-04-27 12:55:59 +0100731 return -EIO;
732 }
733 return 0;
734 }
735 udelay(10);
736 }
Ben Hutchings62776d02010-06-23 11:30:07 +0000737 netif_err(efx, hw, efx->net_dev, "timed out waiting for GMII\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +0100738 return -ETIMEDOUT;
739}
740
Ben Hutchings68e7f452009-04-29 08:05:08 +0000741/* Write an MDIO register of a PHY connected to Falcon. */
742static int falcon_mdio_write(struct net_device *net_dev,
743 int prtad, int devad, u16 addr, u16 value)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100744{
Ben Hutchings767e4682008-09-01 12:43:14 +0100745 struct efx_nic *efx = netdev_priv(net_dev);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100746 efx_oword_t reg;
Ben Hutchings68e7f452009-04-29 08:05:08 +0000747 int rc;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100748
Ben Hutchings62776d02010-06-23 11:30:07 +0000749 netif_vdbg(efx, hw, efx->net_dev,
750 "writing MDIO %d register %d.%d with 0x%04x\n",
Ben Hutchings68e7f452009-04-29 08:05:08 +0000751 prtad, devad, addr, value);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100752
Steve Hodgsonab867462009-11-28 05:34:44 +0000753 mutex_lock(&efx->mdio_lock);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100754
Ben Hutchings68e7f452009-04-29 08:05:08 +0000755 /* Check MDIO not currently being accessed */
756 rc = falcon_gmii_wait(efx);
757 if (rc)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100758 goto out;
759
760 /* Write the address/ID register */
Ben Hutchings3e6c4532009-10-23 08:30:36 +0000761 EFX_POPULATE_OWORD_1(reg, FRF_AB_MD_PHY_ADR, addr);
Ben Hutchings12d00ca2009-10-23 08:30:46 +0000762 efx_writeo(efx, &reg, FR_AB_MD_PHY_ADR);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100763
Ben Hutchings3e6c4532009-10-23 08:30:36 +0000764 EFX_POPULATE_OWORD_2(reg, FRF_AB_MD_PRT_ADR, prtad,
765 FRF_AB_MD_DEV_ADR, devad);
Ben Hutchings12d00ca2009-10-23 08:30:46 +0000766 efx_writeo(efx, &reg, FR_AB_MD_ID);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100767
768 /* Write data */
Ben Hutchings3e6c4532009-10-23 08:30:36 +0000769 EFX_POPULATE_OWORD_1(reg, FRF_AB_MD_TXD, value);
Ben Hutchings12d00ca2009-10-23 08:30:46 +0000770 efx_writeo(efx, &reg, FR_AB_MD_TXD);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100771
772 EFX_POPULATE_OWORD_2(reg,
Ben Hutchings3e6c4532009-10-23 08:30:36 +0000773 FRF_AB_MD_WRC, 1,
774 FRF_AB_MD_GC, 0);
Ben Hutchings12d00ca2009-10-23 08:30:46 +0000775 efx_writeo(efx, &reg, FR_AB_MD_CS);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100776
777 /* Wait for data to be written */
Ben Hutchings68e7f452009-04-29 08:05:08 +0000778 rc = falcon_gmii_wait(efx);
779 if (rc) {
Ben Hutchings8ceee662008-04-27 12:55:59 +0100780 /* Abort the write operation */
781 EFX_POPULATE_OWORD_2(reg,
Ben Hutchings3e6c4532009-10-23 08:30:36 +0000782 FRF_AB_MD_WRC, 0,
783 FRF_AB_MD_GC, 1);
Ben Hutchings12d00ca2009-10-23 08:30:46 +0000784 efx_writeo(efx, &reg, FR_AB_MD_CS);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100785 udelay(10);
786 }
787
Steve Hodgsonab867462009-11-28 05:34:44 +0000788out:
789 mutex_unlock(&efx->mdio_lock);
Ben Hutchings68e7f452009-04-29 08:05:08 +0000790 return rc;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100791}
792
Ben Hutchings68e7f452009-04-29 08:05:08 +0000793/* Read an MDIO register of a PHY connected to Falcon. */
794static int falcon_mdio_read(struct net_device *net_dev,
795 int prtad, int devad, u16 addr)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100796{
Ben Hutchings767e4682008-09-01 12:43:14 +0100797 struct efx_nic *efx = netdev_priv(net_dev);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100798 efx_oword_t reg;
Ben Hutchings68e7f452009-04-29 08:05:08 +0000799 int rc;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100800
Steve Hodgsonab867462009-11-28 05:34:44 +0000801 mutex_lock(&efx->mdio_lock);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100802
Ben Hutchings68e7f452009-04-29 08:05:08 +0000803 /* Check MDIO not currently being accessed */
804 rc = falcon_gmii_wait(efx);
805 if (rc)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100806 goto out;
807
Ben Hutchings3e6c4532009-10-23 08:30:36 +0000808 EFX_POPULATE_OWORD_1(reg, FRF_AB_MD_PHY_ADR, addr);
Ben Hutchings12d00ca2009-10-23 08:30:46 +0000809 efx_writeo(efx, &reg, FR_AB_MD_PHY_ADR);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100810
Ben Hutchings3e6c4532009-10-23 08:30:36 +0000811 EFX_POPULATE_OWORD_2(reg, FRF_AB_MD_PRT_ADR, prtad,
812 FRF_AB_MD_DEV_ADR, devad);
Ben Hutchings12d00ca2009-10-23 08:30:46 +0000813 efx_writeo(efx, &reg, FR_AB_MD_ID);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100814
815 /* Request data to be read */
Ben Hutchings3e6c4532009-10-23 08:30:36 +0000816 EFX_POPULATE_OWORD_2(reg, FRF_AB_MD_RDC, 1, FRF_AB_MD_GC, 0);
Ben Hutchings12d00ca2009-10-23 08:30:46 +0000817 efx_writeo(efx, &reg, FR_AB_MD_CS);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100818
819 /* Wait for data to become available */
Ben Hutchings68e7f452009-04-29 08:05:08 +0000820 rc = falcon_gmii_wait(efx);
821 if (rc == 0) {
Ben Hutchings12d00ca2009-10-23 08:30:46 +0000822 efx_reado(efx, &reg, FR_AB_MD_RXD);
Ben Hutchings3e6c4532009-10-23 08:30:36 +0000823 rc = EFX_OWORD_FIELD(reg, FRF_AB_MD_RXD);
Ben Hutchings62776d02010-06-23 11:30:07 +0000824 netif_vdbg(efx, hw, efx->net_dev,
825 "read from MDIO %d register %d.%d, got %04x\n",
826 prtad, devad, addr, rc);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100827 } else {
828 /* Abort the read operation */
829 EFX_POPULATE_OWORD_2(reg,
Ben Hutchings3e6c4532009-10-23 08:30:36 +0000830 FRF_AB_MD_RIC, 0,
831 FRF_AB_MD_GC, 1);
Ben Hutchings12d00ca2009-10-23 08:30:46 +0000832 efx_writeo(efx, &reg, FR_AB_MD_CS);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100833
Ben Hutchings62776d02010-06-23 11:30:07 +0000834 netif_dbg(efx, hw, efx->net_dev,
835 "read from MDIO %d register %d.%d, got error %d\n",
836 prtad, devad, addr, rc);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100837 }
838
Steve Hodgsonab867462009-11-28 05:34:44 +0000839out:
840 mutex_unlock(&efx->mdio_lock);
Ben Hutchings68e7f452009-04-29 08:05:08 +0000841 return rc;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100842}
843
Steve Hodgson26deba52009-11-25 16:11:03 +0000844static void falcon_clock_mac(struct efx_nic *efx)
845{
846 unsigned strap_val;
847 efx_oword_t nic_stat;
848
849 /* Configure the NIC generated MAC clock correctly */
850 efx_reado(efx, &nic_stat, FR_AB_NIC_STAT);
851 strap_val = EFX_IS10G(efx) ? 5 : 3;
Ben Hutchingsdaeda632009-11-28 05:36:04 +0000852 if (efx_nic_rev(efx) >= EFX_REV_FALCON_B0) {
Steve Hodgson26deba52009-11-25 16:11:03 +0000853 EFX_SET_OWORD_FIELD(nic_stat, FRF_BB_EE_STRAP_EN, 1);
854 EFX_SET_OWORD_FIELD(nic_stat, FRF_BB_EE_STRAP, strap_val);
855 efx_writeo(efx, &nic_stat, FR_AB_NIC_STAT);
856 } else {
857 /* Falcon A1 does not support 1G/10G speed switching
858 * and must not be used with a PHY that does. */
859 BUG_ON(EFX_OWORD_FIELD(nic_stat, FRF_AB_STRAP_PINS) !=
860 strap_val);
861 }
862}
863
Ben Hutchingsd3245b22009-11-29 03:42:41 +0000864static void falcon_switch_mac(struct efx_nic *efx)
Ben Hutchings177dfcd2008-12-12 21:50:08 -0800865{
866 struct efx_mac_operations *old_mac_op = efx->mac_op;
Ben Hutchings55edc6e2009-11-25 16:11:35 +0000867 struct falcon_nic_data *nic_data = efx->nic_data;
868 unsigned int stats_done_offset;
Ben Hutchings177dfcd2008-12-12 21:50:08 -0800869
Steve Hodgson0cc1283872009-01-29 17:49:59 +0000870 WARN_ON(!mutex_is_locked(&efx->mac_lock));
Ben Hutchingsd3245b22009-11-29 03:42:41 +0000871 WARN_ON(nic_data->stats_disable_count == 0);
872
Ben Hutchings177dfcd2008-12-12 21:50:08 -0800873 efx->mac_op = (EFX_IS10G(efx) ?
874 &falcon_xmac_operations : &falcon_gmac_operations);
Ben Hutchings177dfcd2008-12-12 21:50:08 -0800875
Ben Hutchings55edc6e2009-11-25 16:11:35 +0000876 if (EFX_IS10G(efx))
877 stats_done_offset = XgDmaDone_offset;
878 else
879 stats_done_offset = GDmaDone_offset;
880 nic_data->stats_dma_done = efx->stats_buffer.addr + stats_done_offset;
881
Steve Hodgson0cc1283872009-01-29 17:49:59 +0000882 if (old_mac_op == efx->mac_op)
Ben Hutchingsd3245b22009-11-29 03:42:41 +0000883 return;
Ben Hutchings177dfcd2008-12-12 21:50:08 -0800884
Steve Hodgson26deba52009-11-25 16:11:03 +0000885 falcon_clock_mac(efx);
886
Ben Hutchings62776d02010-06-23 11:30:07 +0000887 netif_dbg(efx, hw, efx->net_dev, "selected %cMAC\n",
888 EFX_IS10G(efx) ? 'X' : 'G');
Steve Hodgson0cc1283872009-01-29 17:49:59 +0000889 /* Not all macs support a mac-level link state */
Ben Hutchings9007b9f2009-11-25 16:12:01 +0000890 efx->xmac_poll_required = false;
Ben Hutchingsd3245b22009-11-29 03:42:41 +0000891 falcon_reset_macs(efx);
Ben Hutchings177dfcd2008-12-12 21:50:08 -0800892}
893
Ben Hutchings8ceee662008-04-27 12:55:59 +0100894/* This call is responsible for hooking in the MAC and PHY operations */
Ben Hutchingsef2b90e2009-11-29 03:42:31 +0000895static int falcon_probe_port(struct efx_nic *efx)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100896{
897 int rc;
898
Ben Hutchings96c457262009-10-23 08:32:42 +0000899 switch (efx->phy_type) {
900 case PHY_TYPE_SFX7101:
901 efx->phy_op = &falcon_sfx7101_phy_ops;
902 break;
903 case PHY_TYPE_SFT9001A:
904 case PHY_TYPE_SFT9001B:
905 efx->phy_op = &falcon_sft9001_phy_ops;
906 break;
907 case PHY_TYPE_QT2022C2:
908 case PHY_TYPE_QT2025C:
Ben Hutchingsb37b62f2009-10-23 08:33:42 +0000909 efx->phy_op = &falcon_qt202x_phy_ops;
Ben Hutchings96c457262009-10-23 08:32:42 +0000910 break;
911 default:
Ben Hutchings62776d02010-06-23 11:30:07 +0000912 netif_err(efx, probe, efx->net_dev, "Unknown PHY type %d\n",
913 efx->phy_type);
Ben Hutchings96c457262009-10-23 08:32:42 +0000914 return -ENODEV;
915 }
916
Ben Hutchingsc1c4f452009-11-29 15:08:55 +0000917 /* Fill out MDIO structure and loopback modes */
Ben Hutchings68e7f452009-04-29 08:05:08 +0000918 efx->mdio.mdio_read = falcon_mdio_read;
919 efx->mdio.mdio_write = falcon_mdio_write;
Ben Hutchingsc1c4f452009-11-29 15:08:55 +0000920 rc = efx->phy_op->probe(efx);
921 if (rc != 0)
922 return rc;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100923
Steve Hodgsonb895d732009-11-28 05:35:00 +0000924 /* Initial assumption */
925 efx->link_state.speed = 10000;
926 efx->link_state.fd = true;
927
Ben Hutchings8ceee662008-04-27 12:55:59 +0100928 /* Hardware flow ctrl. FalconA RX FIFO too small for pause generation */
Ben Hutchingsdaeda632009-11-28 05:36:04 +0000929 if (efx_nic_rev(efx) >= EFX_REV_FALCON_B0)
Ben Hutchings04cc8ca2008-12-12 21:50:46 -0800930 efx->wanted_fc = EFX_FC_RX | EFX_FC_TX;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100931 else
Ben Hutchings04cc8ca2008-12-12 21:50:46 -0800932 efx->wanted_fc = EFX_FC_RX;
Steve Hodgson7a6b8f62010-02-03 09:30:38 +0000933 if (efx->mdio.mmds & MDIO_DEVS_AN)
934 efx->wanted_fc |= EFX_FC_AUTO;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100935
936 /* Allocate buffer for stats */
Ben Hutchings152b6a62009-11-29 03:43:56 +0000937 rc = efx_nic_alloc_buffer(efx, &efx->stats_buffer,
938 FALCON_MAC_STATS_SIZE);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100939 if (rc)
940 return rc;
Ben Hutchings62776d02010-06-23 11:30:07 +0000941 netif_dbg(efx, probe, efx->net_dev,
942 "stats buffer at %llx (virt %p phys %llx)\n",
943 (u64)efx->stats_buffer.dma_addr,
944 efx->stats_buffer.addr,
945 (u64)virt_to_phys(efx->stats_buffer.addr));
Ben Hutchings8ceee662008-04-27 12:55:59 +0100946
947 return 0;
948}
949
Ben Hutchingsef2b90e2009-11-29 03:42:31 +0000950static void falcon_remove_port(struct efx_nic *efx)
Ben Hutchings8ceee662008-04-27 12:55:59 +0100951{
Steve Hodgsonff3b00a2009-12-23 13:46:36 +0000952 efx->phy_op->remove(efx);
Ben Hutchings152b6a62009-11-29 03:43:56 +0000953 efx_nic_free_buffer(efx, &efx->stats_buffer);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100954}
955
956/**************************************************************************
957 *
Ben Hutchings8c8661e2008-09-01 12:49:02 +0100958 * Falcon test code
959 *
960 **************************************************************************/
961
Ben Hutchings0aa3fba2009-11-29 03:43:33 +0000962static int
963falcon_read_nvram(struct efx_nic *efx, struct falcon_nvconfig *nvconfig_out)
Ben Hutchings8c8661e2008-09-01 12:49:02 +0100964{
965 struct falcon_nvconfig *nvconfig;
966 struct efx_spi_device *spi;
967 void *region;
968 int rc, magic_num, struct_ver;
969 __le16 *word, *limit;
970 u32 csum;
971
Ben Hutchings2f7f5732008-12-12 21:34:25 -0800972 spi = efx->spi_flash ? efx->spi_flash : efx->spi_eeprom;
973 if (!spi)
974 return -EINVAL;
975
Ben Hutchings0a95f562008-11-04 20:33:11 +0000976 region = kmalloc(FALCON_NVCONFIG_END, GFP_KERNEL);
Ben Hutchings8c8661e2008-09-01 12:49:02 +0100977 if (!region)
978 return -ENOMEM;
Ben Hutchings3e6c4532009-10-23 08:30:36 +0000979 nvconfig = region + FALCON_NVCONFIG_OFFSET;
Ben Hutchings8c8661e2008-09-01 12:49:02 +0100980
Ben Hutchingsf4150722008-11-04 20:34:28 +0000981 mutex_lock(&efx->spi_lock);
Ben Hutchings76884832009-11-29 15:10:44 +0000982 rc = falcon_spi_read(efx, spi, 0, FALCON_NVCONFIG_END, NULL, region);
Ben Hutchingsf4150722008-11-04 20:34:28 +0000983 mutex_unlock(&efx->spi_lock);
Ben Hutchings8c8661e2008-09-01 12:49:02 +0100984 if (rc) {
Ben Hutchings62776d02010-06-23 11:30:07 +0000985 netif_err(efx, hw, efx->net_dev, "Failed to read %s\n",
986 efx->spi_flash ? "flash" : "EEPROM");
Ben Hutchings8c8661e2008-09-01 12:49:02 +0100987 rc = -EIO;
988 goto out;
989 }
990
991 magic_num = le16_to_cpu(nvconfig->board_magic_num);
992 struct_ver = le16_to_cpu(nvconfig->board_struct_ver);
993
994 rc = -EINVAL;
Ben Hutchings3e6c4532009-10-23 08:30:36 +0000995 if (magic_num != FALCON_NVCONFIG_BOARD_MAGIC_NUM) {
Ben Hutchings62776d02010-06-23 11:30:07 +0000996 netif_err(efx, hw, efx->net_dev,
997 "NVRAM bad magic 0x%x\n", magic_num);
Ben Hutchings8c8661e2008-09-01 12:49:02 +0100998 goto out;
999 }
1000 if (struct_ver < 2) {
Ben Hutchings62776d02010-06-23 11:30:07 +00001001 netif_err(efx, hw, efx->net_dev,
1002 "NVRAM has ancient version 0x%x\n", struct_ver);
Ben Hutchings8c8661e2008-09-01 12:49:02 +01001003 goto out;
1004 } else if (struct_ver < 4) {
1005 word = &nvconfig->board_magic_num;
1006 limit = (__le16 *) (nvconfig + 1);
1007 } else {
1008 word = region;
Ben Hutchings0a95f562008-11-04 20:33:11 +00001009 limit = region + FALCON_NVCONFIG_END;
Ben Hutchings8c8661e2008-09-01 12:49:02 +01001010 }
1011 for (csum = 0; word < limit; ++word)
1012 csum += le16_to_cpu(*word);
1013
1014 if (~csum & 0xffff) {
Ben Hutchings62776d02010-06-23 11:30:07 +00001015 netif_err(efx, hw, efx->net_dev,
1016 "NVRAM has incorrect checksum\n");
Ben Hutchings8c8661e2008-09-01 12:49:02 +01001017 goto out;
1018 }
1019
1020 rc = 0;
1021 if (nvconfig_out)
1022 memcpy(nvconfig_out, nvconfig, sizeof(*nvconfig));
1023
1024 out:
1025 kfree(region);
1026 return rc;
1027}
1028
Ben Hutchings0aa3fba2009-11-29 03:43:33 +00001029static int falcon_test_nvram(struct efx_nic *efx)
1030{
1031 return falcon_read_nvram(efx, NULL);
1032}
1033
Ben Hutchings152b6a62009-11-29 03:43:56 +00001034static const struct efx_nic_register_test falcon_b0_register_tests[] = {
Ben Hutchings3e6c4532009-10-23 08:30:36 +00001035 { FR_AZ_ADR_REGION,
Steve Hodgson4cddca52010-02-03 09:31:40 +00001036 EFX_OWORD32(0x0003FFFF, 0x0003FFFF, 0x0003FFFF, 0x0003FFFF) },
Ben Hutchings3e6c4532009-10-23 08:30:36 +00001037 { FR_AZ_RX_CFG,
Ben Hutchings8c8661e2008-09-01 12:49:02 +01001038 EFX_OWORD32(0xFFFFFFFE, 0x00017FFF, 0x00000000, 0x00000000) },
Ben Hutchings3e6c4532009-10-23 08:30:36 +00001039 { FR_AZ_TX_CFG,
Ben Hutchings8c8661e2008-09-01 12:49:02 +01001040 EFX_OWORD32(0x7FFF0037, 0x00000000, 0x00000000, 0x00000000) },
Ben Hutchings3e6c4532009-10-23 08:30:36 +00001041 { FR_AZ_TX_RESERVED,
Ben Hutchings8c8661e2008-09-01 12:49:02 +01001042 EFX_OWORD32(0xFFFEFE80, 0x1FFFFFFF, 0x020000FE, 0x007FFFFF) },
Ben Hutchings3e6c4532009-10-23 08:30:36 +00001043 { FR_AB_MAC_CTRL,
Ben Hutchings8c8661e2008-09-01 12:49:02 +01001044 EFX_OWORD32(0xFFFF0000, 0x00000000, 0x00000000, 0x00000000) },
Ben Hutchings3e6c4532009-10-23 08:30:36 +00001045 { FR_AZ_SRM_TX_DC_CFG,
Ben Hutchings8c8661e2008-09-01 12:49:02 +01001046 EFX_OWORD32(0x001FFFFF, 0x00000000, 0x00000000, 0x00000000) },
Ben Hutchings3e6c4532009-10-23 08:30:36 +00001047 { FR_AZ_RX_DC_CFG,
Ben Hutchings8c8661e2008-09-01 12:49:02 +01001048 EFX_OWORD32(0x0000000F, 0x00000000, 0x00000000, 0x00000000) },
Ben Hutchings3e6c4532009-10-23 08:30:36 +00001049 { FR_AZ_RX_DC_PF_WM,
Ben Hutchings8c8661e2008-09-01 12:49:02 +01001050 EFX_OWORD32(0x000003FF, 0x00000000, 0x00000000, 0x00000000) },
Ben Hutchings3e6c4532009-10-23 08:30:36 +00001051 { FR_BZ_DP_CTRL,
Ben Hutchings8c8661e2008-09-01 12:49:02 +01001052 EFX_OWORD32(0x00000FFF, 0x00000000, 0x00000000, 0x00000000) },
Ben Hutchings3e6c4532009-10-23 08:30:36 +00001053 { FR_AB_GM_CFG2,
Ben Hutchings177dfcd2008-12-12 21:50:08 -08001054 EFX_OWORD32(0x00007337, 0x00000000, 0x00000000, 0x00000000) },
Ben Hutchings3e6c4532009-10-23 08:30:36 +00001055 { FR_AB_GMF_CFG0,
Ben Hutchings177dfcd2008-12-12 21:50:08 -08001056 EFX_OWORD32(0x00001F1F, 0x00000000, 0x00000000, 0x00000000) },
Ben Hutchings3e6c4532009-10-23 08:30:36 +00001057 { FR_AB_XM_GLB_CFG,
Ben Hutchings8c8661e2008-09-01 12:49:02 +01001058 EFX_OWORD32(0x00000C68, 0x00000000, 0x00000000, 0x00000000) },
Ben Hutchings3e6c4532009-10-23 08:30:36 +00001059 { FR_AB_XM_TX_CFG,
Ben Hutchings8c8661e2008-09-01 12:49:02 +01001060 EFX_OWORD32(0x00080164, 0x00000000, 0x00000000, 0x00000000) },
Ben Hutchings3e6c4532009-10-23 08:30:36 +00001061 { FR_AB_XM_RX_CFG,
Ben Hutchings8c8661e2008-09-01 12:49:02 +01001062 EFX_OWORD32(0x07100A0C, 0x00000000, 0x00000000, 0x00000000) },
Ben Hutchings3e6c4532009-10-23 08:30:36 +00001063 { FR_AB_XM_RX_PARAM,
Ben Hutchings8c8661e2008-09-01 12:49:02 +01001064 EFX_OWORD32(0x00001FF8, 0x00000000, 0x00000000, 0x00000000) },
Ben Hutchings3e6c4532009-10-23 08:30:36 +00001065 { FR_AB_XM_FC,
Ben Hutchings8c8661e2008-09-01 12:49:02 +01001066 EFX_OWORD32(0xFFFF0001, 0x00000000, 0x00000000, 0x00000000) },
Ben Hutchings3e6c4532009-10-23 08:30:36 +00001067 { FR_AB_XM_ADR_LO,
Ben Hutchings8c8661e2008-09-01 12:49:02 +01001068 EFX_OWORD32(0xFFFFFFFF, 0x00000000, 0x00000000, 0x00000000) },
Ben Hutchings3e6c4532009-10-23 08:30:36 +00001069 { FR_AB_XX_SD_CTL,
Ben Hutchings8c8661e2008-09-01 12:49:02 +01001070 EFX_OWORD32(0x0003FF0F, 0x00000000, 0x00000000, 0x00000000) },
1071};
1072
Ben Hutchings152b6a62009-11-29 03:43:56 +00001073static int falcon_b0_test_registers(struct efx_nic *efx)
1074{
1075 return efx_nic_test_registers(efx, falcon_b0_register_tests,
1076 ARRAY_SIZE(falcon_b0_register_tests));
1077}
1078
Ben Hutchings8ceee662008-04-27 12:55:59 +01001079/**************************************************************************
1080 *
1081 * Device reset
1082 *
1083 **************************************************************************
1084 */
1085
1086/* Resets NIC to known state. This routine must be called in process
1087 * context and is allowed to sleep. */
Ben Hutchingsef2b90e2009-11-29 03:42:31 +00001088static int falcon_reset_hw(struct efx_nic *efx, enum reset_type method)
Ben Hutchings8ceee662008-04-27 12:55:59 +01001089{
1090 struct falcon_nic_data *nic_data = efx->nic_data;
1091 efx_oword_t glb_ctl_reg_ker;
1092 int rc;
1093
Ben Hutchings62776d02010-06-23 11:30:07 +00001094 netif_dbg(efx, hw, efx->net_dev, "performing %s hardware reset\n",
1095 RESET_TYPE(method));
Ben Hutchings8ceee662008-04-27 12:55:59 +01001096
1097 /* Initiate device reset */
1098 if (method == RESET_TYPE_WORLD) {
1099 rc = pci_save_state(efx->pci_dev);
1100 if (rc) {
Ben Hutchings62776d02010-06-23 11:30:07 +00001101 netif_err(efx, drv, efx->net_dev,
1102 "failed to backup PCI state of primary "
1103 "function prior to hardware reset\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01001104 goto fail1;
1105 }
Ben Hutchings152b6a62009-11-29 03:43:56 +00001106 if (efx_nic_is_dual_func(efx)) {
Ben Hutchings8ceee662008-04-27 12:55:59 +01001107 rc = pci_save_state(nic_data->pci_dev2);
1108 if (rc) {
Ben Hutchings62776d02010-06-23 11:30:07 +00001109 netif_err(efx, drv, efx->net_dev,
1110 "failed to backup PCI state of "
1111 "secondary function prior to "
1112 "hardware reset\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01001113 goto fail2;
1114 }
1115 }
1116
1117 EFX_POPULATE_OWORD_2(glb_ctl_reg_ker,
Ben Hutchings3e6c4532009-10-23 08:30:36 +00001118 FRF_AB_EXT_PHY_RST_DUR,
1119 FFE_AB_EXT_PHY_RST_DUR_10240US,
1120 FRF_AB_SWRST, 1);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001121 } else {
Ben Hutchings8ceee662008-04-27 12:55:59 +01001122 EFX_POPULATE_OWORD_7(glb_ctl_reg_ker,
Ben Hutchings3e6c4532009-10-23 08:30:36 +00001123 /* exclude PHY from "invisible" reset */
1124 FRF_AB_EXT_PHY_RST_CTL,
1125 method == RESET_TYPE_INVISIBLE,
1126 /* exclude EEPROM/flash and PCIe */
1127 FRF_AB_PCIE_CORE_RST_CTL, 1,
1128 FRF_AB_PCIE_NSTKY_RST_CTL, 1,
1129 FRF_AB_PCIE_SD_RST_CTL, 1,
1130 FRF_AB_EE_RST_CTL, 1,
1131 FRF_AB_EXT_PHY_RST_DUR,
1132 FFE_AB_EXT_PHY_RST_DUR_10240US,
1133 FRF_AB_SWRST, 1);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001134 }
Ben Hutchings12d00ca2009-10-23 08:30:46 +00001135 efx_writeo(efx, &glb_ctl_reg_ker, FR_AB_GLB_CTL);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001136
Ben Hutchings62776d02010-06-23 11:30:07 +00001137 netif_dbg(efx, hw, efx->net_dev, "waiting for hardware reset\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01001138 schedule_timeout_uninterruptible(HZ / 20);
1139
1140 /* Restore PCI configuration if needed */
1141 if (method == RESET_TYPE_WORLD) {
Ben Hutchings152b6a62009-11-29 03:43:56 +00001142 if (efx_nic_is_dual_func(efx)) {
Ben Hutchings8ceee662008-04-27 12:55:59 +01001143 rc = pci_restore_state(nic_data->pci_dev2);
1144 if (rc) {
Ben Hutchings62776d02010-06-23 11:30:07 +00001145 netif_err(efx, drv, efx->net_dev,
1146 "failed to restore PCI config for "
1147 "the secondary function\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01001148 goto fail3;
1149 }
1150 }
1151 rc = pci_restore_state(efx->pci_dev);
1152 if (rc) {
Ben Hutchings62776d02010-06-23 11:30:07 +00001153 netif_err(efx, drv, efx->net_dev,
1154 "failed to restore PCI config for the "
1155 "primary function\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01001156 goto fail4;
1157 }
Ben Hutchings62776d02010-06-23 11:30:07 +00001158 netif_dbg(efx, drv, efx->net_dev,
1159 "successfully restored PCI config\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01001160 }
1161
1162 /* Assert that reset complete */
Ben Hutchings12d00ca2009-10-23 08:30:46 +00001163 efx_reado(efx, &glb_ctl_reg_ker, FR_AB_GLB_CTL);
Ben Hutchings3e6c4532009-10-23 08:30:36 +00001164 if (EFX_OWORD_FIELD(glb_ctl_reg_ker, FRF_AB_SWRST) != 0) {
Ben Hutchings8ceee662008-04-27 12:55:59 +01001165 rc = -ETIMEDOUT;
Ben Hutchings62776d02010-06-23 11:30:07 +00001166 netif_err(efx, hw, efx->net_dev,
1167 "timed out waiting for hardware reset\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01001168 goto fail5;
1169 }
Ben Hutchings62776d02010-06-23 11:30:07 +00001170 netif_dbg(efx, hw, efx->net_dev, "hardware reset complete\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01001171
1172 return 0;
1173
1174 /* pci_save_state() and pci_restore_state() MUST be called in pairs */
1175fail2:
1176fail3:
1177 pci_restore_state(efx->pci_dev);
1178fail1:
1179fail4:
1180fail5:
1181 return rc;
1182}
1183
Ben Hutchingsef2b90e2009-11-29 03:42:31 +00001184static void falcon_monitor(struct efx_nic *efx)
Ben Hutchingsfe758202009-11-25 16:11:45 +00001185{
Steve Hodgsonfdaa9ae2009-11-28 05:34:05 +00001186 bool link_changed;
Ben Hutchingsfe758202009-11-25 16:11:45 +00001187 int rc;
1188
Steve Hodgsonfdaa9ae2009-11-28 05:34:05 +00001189 BUG_ON(!mutex_is_locked(&efx->mac_lock));
1190
Ben Hutchingsfe758202009-11-25 16:11:45 +00001191 rc = falcon_board(efx)->type->monitor(efx);
1192 if (rc) {
Ben Hutchings62776d02010-06-23 11:30:07 +00001193 netif_err(efx, hw, efx->net_dev,
1194 "Board sensor %s; shutting down PHY\n",
1195 (rc == -ERANGE) ? "reported fault" : "failed");
Ben Hutchingsfe758202009-11-25 16:11:45 +00001196 efx->phy_mode |= PHY_MODE_LOW_POWER;
Ben Hutchingsd3245b22009-11-29 03:42:41 +00001197 rc = __efx_reconfigure_port(efx);
1198 WARN_ON(rc);
Ben Hutchingsfe758202009-11-25 16:11:45 +00001199 }
Steve Hodgsonfdaa9ae2009-11-28 05:34:05 +00001200
1201 if (LOOPBACK_INTERNAL(efx))
1202 link_changed = falcon_loopback_link_poll(efx);
1203 else
1204 link_changed = efx->phy_op->poll(efx);
1205
1206 if (link_changed) {
1207 falcon_stop_nic_stats(efx);
1208 falcon_deconfigure_mac_wrapper(efx);
1209
1210 falcon_switch_mac(efx);
Ben Hutchingsd3245b22009-11-29 03:42:41 +00001211 rc = efx->mac_op->reconfigure(efx);
1212 BUG_ON(rc);
Steve Hodgsonfdaa9ae2009-11-28 05:34:05 +00001213
1214 falcon_start_nic_stats(efx);
1215
1216 efx_link_status_changed(efx);
1217 }
1218
Ben Hutchings9007b9f2009-11-25 16:12:01 +00001219 if (EFX_IS10G(efx))
1220 falcon_poll_xmac(efx);
Ben Hutchingsfe758202009-11-25 16:11:45 +00001221}
1222
Ben Hutchings8ceee662008-04-27 12:55:59 +01001223/* Zeroes out the SRAM contents. This routine must be called in
1224 * process context and is allowed to sleep.
1225 */
1226static int falcon_reset_sram(struct efx_nic *efx)
1227{
1228 efx_oword_t srm_cfg_reg_ker, gpio_cfg_reg_ker;
1229 int count;
1230
1231 /* Set the SRAM wake/sleep GPIO appropriately. */
Ben Hutchings12d00ca2009-10-23 08:30:46 +00001232 efx_reado(efx, &gpio_cfg_reg_ker, FR_AB_GPIO_CTL);
Ben Hutchings3e6c4532009-10-23 08:30:36 +00001233 EFX_SET_OWORD_FIELD(gpio_cfg_reg_ker, FRF_AB_GPIO1_OEN, 1);
1234 EFX_SET_OWORD_FIELD(gpio_cfg_reg_ker, FRF_AB_GPIO1_OUT, 1);
Ben Hutchings12d00ca2009-10-23 08:30:46 +00001235 efx_writeo(efx, &gpio_cfg_reg_ker, FR_AB_GPIO_CTL);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001236
1237 /* Initiate SRAM reset */
1238 EFX_POPULATE_OWORD_2(srm_cfg_reg_ker,
Ben Hutchings3e6c4532009-10-23 08:30:36 +00001239 FRF_AZ_SRM_INIT_EN, 1,
1240 FRF_AZ_SRM_NB_SZ, 0);
Ben Hutchings12d00ca2009-10-23 08:30:46 +00001241 efx_writeo(efx, &srm_cfg_reg_ker, FR_AZ_SRM_CFG);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001242
1243 /* Wait for SRAM reset to complete */
1244 count = 0;
1245 do {
Ben Hutchings62776d02010-06-23 11:30:07 +00001246 netif_dbg(efx, hw, efx->net_dev,
1247 "waiting for SRAM reset (attempt %d)...\n", count);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001248
1249 /* SRAM reset is slow; expect around 16ms */
1250 schedule_timeout_uninterruptible(HZ / 50);
1251
1252 /* Check for reset complete */
Ben Hutchings12d00ca2009-10-23 08:30:46 +00001253 efx_reado(efx, &srm_cfg_reg_ker, FR_AZ_SRM_CFG);
Ben Hutchings3e6c4532009-10-23 08:30:36 +00001254 if (!EFX_OWORD_FIELD(srm_cfg_reg_ker, FRF_AZ_SRM_INIT_EN)) {
Ben Hutchings62776d02010-06-23 11:30:07 +00001255 netif_dbg(efx, hw, efx->net_dev,
1256 "SRAM reset complete\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01001257
1258 return 0;
1259 }
1260 } while (++count < 20); /* wait upto 0.4 sec */
1261
Ben Hutchings62776d02010-06-23 11:30:07 +00001262 netif_err(efx, hw, efx->net_dev, "timed out waiting for SRAM reset\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01001263 return -ETIMEDOUT;
1264}
1265
Ben Hutchings4a5b5042008-09-01 12:47:16 +01001266static int falcon_spi_device_init(struct efx_nic *efx,
1267 struct efx_spi_device **spi_device_ret,
1268 unsigned int device_id, u32 device_type)
1269{
1270 struct efx_spi_device *spi_device;
1271
1272 if (device_type != 0) {
Ben Hutchings0c53d8c2008-12-12 22:08:50 -08001273 spi_device = kzalloc(sizeof(*spi_device), GFP_KERNEL);
Ben Hutchings4a5b5042008-09-01 12:47:16 +01001274 if (!spi_device)
1275 return -ENOMEM;
1276 spi_device->device_id = device_id;
1277 spi_device->size =
1278 1 << SPI_DEV_TYPE_FIELD(device_type, SPI_DEV_TYPE_SIZE);
1279 spi_device->addr_len =
1280 SPI_DEV_TYPE_FIELD(device_type, SPI_DEV_TYPE_ADDR_LEN);
1281 spi_device->munge_address = (spi_device->size == 1 << 9 &&
1282 spi_device->addr_len == 1);
Ben Hutchingsf4150722008-11-04 20:34:28 +00001283 spi_device->erase_command =
1284 SPI_DEV_TYPE_FIELD(device_type, SPI_DEV_TYPE_ERASE_CMD);
1285 spi_device->erase_size =
1286 1 << SPI_DEV_TYPE_FIELD(device_type,
1287 SPI_DEV_TYPE_ERASE_SIZE);
Ben Hutchings4a5b5042008-09-01 12:47:16 +01001288 spi_device->block_size =
1289 1 << SPI_DEV_TYPE_FIELD(device_type,
1290 SPI_DEV_TYPE_BLOCK_SIZE);
Ben Hutchings4a5b5042008-09-01 12:47:16 +01001291 } else {
1292 spi_device = NULL;
1293 }
1294
1295 kfree(*spi_device_ret);
1296 *spi_device_ret = spi_device;
1297 return 0;
1298}
1299
Ben Hutchings4a5b5042008-09-01 12:47:16 +01001300static void falcon_remove_spi_devices(struct efx_nic *efx)
1301{
1302 kfree(efx->spi_eeprom);
1303 efx->spi_eeprom = NULL;
1304 kfree(efx->spi_flash);
1305 efx->spi_flash = NULL;
1306}
1307
Ben Hutchings8ceee662008-04-27 12:55:59 +01001308/* Extract non-volatile configuration */
1309static int falcon_probe_nvconfig(struct efx_nic *efx)
1310{
1311 struct falcon_nvconfig *nvconfig;
Ben Hutchings8c8661e2008-09-01 12:49:02 +01001312 int board_rev;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001313 int rc;
1314
Ben Hutchings8ceee662008-04-27 12:55:59 +01001315 nvconfig = kmalloc(sizeof(*nvconfig), GFP_KERNEL);
Ben Hutchings4a5b5042008-09-01 12:47:16 +01001316 if (!nvconfig)
1317 return -ENOMEM;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001318
Ben Hutchings8c8661e2008-09-01 12:49:02 +01001319 rc = falcon_read_nvram(efx, nvconfig);
1320 if (rc == -EINVAL) {
Ben Hutchings62776d02010-06-23 11:30:07 +00001321 netif_err(efx, probe, efx->net_dev,
1322 "NVRAM is invalid therefore using defaults\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01001323 efx->phy_type = PHY_TYPE_NONE;
Ben Hutchings68e7f452009-04-29 08:05:08 +00001324 efx->mdio.prtad = MDIO_PRTAD_NONE;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001325 board_rev = 0;
Ben Hutchings8c8661e2008-09-01 12:49:02 +01001326 rc = 0;
1327 } else if (rc) {
1328 goto fail1;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001329 } else {
1330 struct falcon_nvconfig_board_v2 *v2 = &nvconfig->board_v2;
Ben Hutchings4a5b5042008-09-01 12:47:16 +01001331 struct falcon_nvconfig_board_v3 *v3 = &nvconfig->board_v3;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001332
1333 efx->phy_type = v2->port0_phy_type;
Ben Hutchings68e7f452009-04-29 08:05:08 +00001334 efx->mdio.prtad = v2->port0_phy_addr;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001335 board_rev = le16_to_cpu(v2->board_revision);
Ben Hutchings4a5b5042008-09-01 12:47:16 +01001336
Ben Hutchings8c8661e2008-09-01 12:49:02 +01001337 if (le16_to_cpu(nvconfig->board_struct_ver) >= 3) {
Ben Hutchings3e6c4532009-10-23 08:30:36 +00001338 rc = falcon_spi_device_init(
1339 efx, &efx->spi_flash, FFE_AB_SPI_DEVICE_FLASH,
1340 le32_to_cpu(v3->spi_device_type
1341 [FFE_AB_SPI_DEVICE_FLASH]));
Ben Hutchings4a5b5042008-09-01 12:47:16 +01001342 if (rc)
1343 goto fail2;
Ben Hutchings3e6c4532009-10-23 08:30:36 +00001344 rc = falcon_spi_device_init(
1345 efx, &efx->spi_eeprom, FFE_AB_SPI_DEVICE_EEPROM,
1346 le32_to_cpu(v3->spi_device_type
1347 [FFE_AB_SPI_DEVICE_EEPROM]));
Ben Hutchings4a5b5042008-09-01 12:47:16 +01001348 if (rc)
1349 goto fail2;
1350 }
Ben Hutchings8ceee662008-04-27 12:55:59 +01001351 }
1352
Ben Hutchings8c8661e2008-09-01 12:49:02 +01001353 /* Read the MAC addresses */
1354 memcpy(efx->mac_address, nvconfig->mac_address[0], ETH_ALEN);
1355
Ben Hutchings62776d02010-06-23 11:30:07 +00001356 netif_dbg(efx, probe, efx->net_dev, "PHY is %d phy_id %d\n",
1357 efx->phy_type, efx->mdio.prtad);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001358
Ben Hutchingse41c11e2010-04-28 09:01:50 +00001359 rc = falcon_probe_board(efx, board_rev);
1360 if (rc)
1361 goto fail2;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001362
Ben Hutchings4a5b5042008-09-01 12:47:16 +01001363 kfree(nvconfig);
1364 return 0;
1365
1366 fail2:
1367 falcon_remove_spi_devices(efx);
1368 fail1:
Ben Hutchings8ceee662008-04-27 12:55:59 +01001369 kfree(nvconfig);
1370 return rc;
1371}
1372
Ben Hutchings4a5b5042008-09-01 12:47:16 +01001373/* Probe all SPI devices on the NIC */
1374static void falcon_probe_spi_devices(struct efx_nic *efx)
1375{
1376 efx_oword_t nic_stat, gpio_ctl, ee_vpd_cfg;
Ben Hutchings2f7f5732008-12-12 21:34:25 -08001377 int boot_dev;
Ben Hutchings4a5b5042008-09-01 12:47:16 +01001378
Ben Hutchings12d00ca2009-10-23 08:30:46 +00001379 efx_reado(efx, &gpio_ctl, FR_AB_GPIO_CTL);
1380 efx_reado(efx, &nic_stat, FR_AB_NIC_STAT);
1381 efx_reado(efx, &ee_vpd_cfg, FR_AB_EE_VPD_CFG0);
Ben Hutchings4a5b5042008-09-01 12:47:16 +01001382
Ben Hutchings3e6c4532009-10-23 08:30:36 +00001383 if (EFX_OWORD_FIELD(gpio_ctl, FRF_AB_GPIO3_PWRUP_VALUE)) {
1384 boot_dev = (EFX_OWORD_FIELD(nic_stat, FRF_AB_SF_PRST) ?
1385 FFE_AB_SPI_DEVICE_FLASH : FFE_AB_SPI_DEVICE_EEPROM);
Ben Hutchings62776d02010-06-23 11:30:07 +00001386 netif_dbg(efx, probe, efx->net_dev, "Booted from %s\n",
1387 boot_dev == FFE_AB_SPI_DEVICE_FLASH ?
1388 "flash" : "EEPROM");
Ben Hutchings2f7f5732008-12-12 21:34:25 -08001389 } else {
1390 /* Disable VPD and set clock dividers to safe
1391 * values for initial programming. */
1392 boot_dev = -1;
Ben Hutchings62776d02010-06-23 11:30:07 +00001393 netif_dbg(efx, probe, efx->net_dev,
1394 "Booted from internal ASIC settings;"
1395 " setting SPI config\n");
Ben Hutchings3e6c4532009-10-23 08:30:36 +00001396 EFX_POPULATE_OWORD_3(ee_vpd_cfg, FRF_AB_EE_VPD_EN, 0,
Ben Hutchings2f7f5732008-12-12 21:34:25 -08001397 /* 125 MHz / 7 ~= 20 MHz */
Ben Hutchings3e6c4532009-10-23 08:30:36 +00001398 FRF_AB_EE_SF_CLOCK_DIV, 7,
Ben Hutchings2f7f5732008-12-12 21:34:25 -08001399 /* 125 MHz / 63 ~= 2 MHz */
Ben Hutchings3e6c4532009-10-23 08:30:36 +00001400 FRF_AB_EE_EE_CLOCK_DIV, 63);
Ben Hutchings12d00ca2009-10-23 08:30:46 +00001401 efx_writeo(efx, &ee_vpd_cfg, FR_AB_EE_VPD_CFG0);
Ben Hutchings4a5b5042008-09-01 12:47:16 +01001402 }
1403
Ben Hutchings3e6c4532009-10-23 08:30:36 +00001404 if (boot_dev == FFE_AB_SPI_DEVICE_FLASH)
1405 falcon_spi_device_init(efx, &efx->spi_flash,
1406 FFE_AB_SPI_DEVICE_FLASH,
Ben Hutchings2f7f5732008-12-12 21:34:25 -08001407 default_flash_type);
Ben Hutchings3e6c4532009-10-23 08:30:36 +00001408 if (boot_dev == FFE_AB_SPI_DEVICE_EEPROM)
1409 falcon_spi_device_init(efx, &efx->spi_eeprom,
1410 FFE_AB_SPI_DEVICE_EEPROM,
Ben Hutchings2f7f5732008-12-12 21:34:25 -08001411 large_eeprom_type);
Ben Hutchings4a5b5042008-09-01 12:47:16 +01001412}
1413
Ben Hutchingsef2b90e2009-11-29 03:42:31 +00001414static int falcon_probe_nic(struct efx_nic *efx)
Ben Hutchings8ceee662008-04-27 12:55:59 +01001415{
1416 struct falcon_nic_data *nic_data;
Ben Hutchingse775fb92009-11-23 16:06:02 +00001417 struct falcon_board *board;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001418 int rc;
1419
Ben Hutchings8ceee662008-04-27 12:55:59 +01001420 /* Allocate storage for hardware specific data */
1421 nic_data = kzalloc(sizeof(*nic_data), GFP_KERNEL);
Ben Hutchings88c59422008-09-03 15:07:50 +01001422 if (!nic_data)
1423 return -ENOMEM;
Ben Hutchings5daab962008-05-16 21:19:43 +01001424 efx->nic_data = nic_data;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001425
Ben Hutchings57849462009-11-29 15:08:21 +00001426 rc = -ENODEV;
1427
1428 if (efx_nic_fpga_ver(efx) != 0) {
Ben Hutchings62776d02010-06-23 11:30:07 +00001429 netif_err(efx, probe, efx->net_dev,
1430 "Falcon FPGA not supported\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01001431 goto fail1;
Ben Hutchings57849462009-11-29 15:08:21 +00001432 }
Ben Hutchings8ceee662008-04-27 12:55:59 +01001433
Ben Hutchings57849462009-11-29 15:08:21 +00001434 if (efx_nic_rev(efx) <= EFX_REV_FALCON_A1) {
1435 efx_oword_t nic_stat;
1436 struct pci_dev *dev;
1437 u8 pci_rev = efx->pci_dev->revision;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001438
Ben Hutchings57849462009-11-29 15:08:21 +00001439 if ((pci_rev == 0xff) || (pci_rev == 0)) {
Ben Hutchings62776d02010-06-23 11:30:07 +00001440 netif_err(efx, probe, efx->net_dev,
1441 "Falcon rev A0 not supported\n");
Ben Hutchings57849462009-11-29 15:08:21 +00001442 goto fail1;
1443 }
1444 efx_reado(efx, &nic_stat, FR_AB_NIC_STAT);
1445 if (EFX_OWORD_FIELD(nic_stat, FRF_AB_STRAP_10G) == 0) {
Ben Hutchings62776d02010-06-23 11:30:07 +00001446 netif_err(efx, probe, efx->net_dev,
1447 "Falcon rev A1 1G not supported\n");
Ben Hutchings57849462009-11-29 15:08:21 +00001448 goto fail1;
1449 }
1450 if (EFX_OWORD_FIELD(nic_stat, FRF_AA_STRAP_PCIE) == 0) {
Ben Hutchings62776d02010-06-23 11:30:07 +00001451 netif_err(efx, probe, efx->net_dev,
1452 "Falcon rev A1 PCI-X not supported\n");
Ben Hutchings57849462009-11-29 15:08:21 +00001453 goto fail1;
1454 }
1455
1456 dev = pci_dev_get(efx->pci_dev);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001457 while ((dev = pci_get_device(EFX_VENDID_SFC, FALCON_A_S_DEVID,
1458 dev))) {
1459 if (dev->bus == efx->pci_dev->bus &&
1460 dev->devfn == efx->pci_dev->devfn + 1) {
1461 nic_data->pci_dev2 = dev;
1462 break;
1463 }
1464 }
1465 if (!nic_data->pci_dev2) {
Ben Hutchings62776d02010-06-23 11:30:07 +00001466 netif_err(efx, probe, efx->net_dev,
1467 "failed to find secondary function\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01001468 rc = -ENODEV;
1469 goto fail2;
1470 }
1471 }
1472
1473 /* Now we can reset the NIC */
1474 rc = falcon_reset_hw(efx, RESET_TYPE_ALL);
1475 if (rc) {
Ben Hutchings62776d02010-06-23 11:30:07 +00001476 netif_err(efx, probe, efx->net_dev, "failed to reset NIC\n");
Ben Hutchings8ceee662008-04-27 12:55:59 +01001477 goto fail3;
1478 }
1479
1480 /* Allocate memory for INT_KER */
Ben Hutchings152b6a62009-11-29 03:43:56 +00001481 rc = efx_nic_alloc_buffer(efx, &efx->irq_status, sizeof(efx_oword_t));
Ben Hutchings8ceee662008-04-27 12:55:59 +01001482 if (rc)
1483 goto fail4;
1484 BUG_ON(efx->irq_status.dma_addr & 0x0f);
1485
Ben Hutchings62776d02010-06-23 11:30:07 +00001486 netif_dbg(efx, probe, efx->net_dev,
1487 "INT_KER at %llx (virt %p phys %llx)\n",
1488 (u64)efx->irq_status.dma_addr,
1489 efx->irq_status.addr,
1490 (u64)virt_to_phys(efx->irq_status.addr));
Ben Hutchings8ceee662008-04-27 12:55:59 +01001491
Ben Hutchings4a5b5042008-09-01 12:47:16 +01001492 falcon_probe_spi_devices(efx);
1493
Ben Hutchings8ceee662008-04-27 12:55:59 +01001494 /* Read in the non-volatile configuration */
1495 rc = falcon_probe_nvconfig(efx);
1496 if (rc)
1497 goto fail5;
1498
Ben Hutchings37b5a602008-05-30 22:27:04 +01001499 /* Initialise I2C adapter */
Ben Hutchingse775fb92009-11-23 16:06:02 +00001500 board = falcon_board(efx);
1501 board->i2c_adap.owner = THIS_MODULE;
1502 board->i2c_data = falcon_i2c_bit_operations;
1503 board->i2c_data.data = efx;
1504 board->i2c_adap.algo_data = &board->i2c_data;
1505 board->i2c_adap.dev.parent = &efx->pci_dev->dev;
1506 strlcpy(board->i2c_adap.name, "SFC4000 GPIO",
1507 sizeof(board->i2c_adap.name));
1508 rc = i2c_bit_add_bus(&board->i2c_adap);
Ben Hutchings37b5a602008-05-30 22:27:04 +01001509 if (rc)
1510 goto fail5;
1511
Ben Hutchings44838a42009-11-25 16:09:41 +00001512 rc = falcon_board(efx)->type->init(efx);
Ben Hutchings278c0622009-11-23 16:05:12 +00001513 if (rc) {
Ben Hutchings62776d02010-06-23 11:30:07 +00001514 netif_err(efx, probe, efx->net_dev,
1515 "failed to initialise board\n");
Ben Hutchings278c0622009-11-23 16:05:12 +00001516 goto fail6;
1517 }
1518
Ben Hutchings55edc6e2009-11-25 16:11:35 +00001519 nic_data->stats_disable_count = 1;
1520 setup_timer(&nic_data->stats_timer, &falcon_stats_timer_func,
1521 (unsigned long)efx);
1522
Ben Hutchings8ceee662008-04-27 12:55:59 +01001523 return 0;
1524
Ben Hutchings278c0622009-11-23 16:05:12 +00001525 fail6:
Ben Hutchingse775fb92009-11-23 16:06:02 +00001526 BUG_ON(i2c_del_adapter(&board->i2c_adap));
1527 memset(&board->i2c_adap, 0, sizeof(board->i2c_adap));
Ben Hutchings8ceee662008-04-27 12:55:59 +01001528 fail5:
Ben Hutchings4a5b5042008-09-01 12:47:16 +01001529 falcon_remove_spi_devices(efx);
Ben Hutchings152b6a62009-11-29 03:43:56 +00001530 efx_nic_free_buffer(efx, &efx->irq_status);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001531 fail4:
Ben Hutchings8ceee662008-04-27 12:55:59 +01001532 fail3:
1533 if (nic_data->pci_dev2) {
1534 pci_dev_put(nic_data->pci_dev2);
1535 nic_data->pci_dev2 = NULL;
1536 }
1537 fail2:
Ben Hutchings8ceee662008-04-27 12:55:59 +01001538 fail1:
1539 kfree(efx->nic_data);
1540 return rc;
1541}
1542
Ben Hutchings56241ce2009-10-23 08:30:06 +00001543static void falcon_init_rx_cfg(struct efx_nic *efx)
1544{
1545 /* Prior to Siena the RX DMA engine will split each frame at
1546 * intervals of RX_USR_BUF_SIZE (32-byte units). We set it to
1547 * be so large that that never happens. */
1548 const unsigned huge_buf_size = (3 * 4096) >> 5;
1549 /* RX control FIFO thresholds (32 entries) */
1550 const unsigned ctrl_xon_thr = 20;
1551 const unsigned ctrl_xoff_thr = 25;
1552 /* RX data FIFO thresholds (256-byte units; size varies) */
Ben Hutchings152b6a62009-11-29 03:43:56 +00001553 int data_xon_thr = efx_nic_rx_xon_thresh >> 8;
1554 int data_xoff_thr = efx_nic_rx_xoff_thresh >> 8;
Ben Hutchings56241ce2009-10-23 08:30:06 +00001555 efx_oword_t reg;
1556
Ben Hutchings12d00ca2009-10-23 08:30:46 +00001557 efx_reado(efx, &reg, FR_AZ_RX_CFG);
Ben Hutchingsdaeda632009-11-28 05:36:04 +00001558 if (efx_nic_rev(efx) <= EFX_REV_FALCON_A1) {
Ben Hutchings625b4512009-10-23 08:30:17 +00001559 /* Data FIFO size is 5.5K */
1560 if (data_xon_thr < 0)
1561 data_xon_thr = 512 >> 8;
1562 if (data_xoff_thr < 0)
1563 data_xoff_thr = 2048 >> 8;
Ben Hutchings3e6c4532009-10-23 08:30:36 +00001564 EFX_SET_OWORD_FIELD(reg, FRF_AA_RX_DESC_PUSH_EN, 0);
1565 EFX_SET_OWORD_FIELD(reg, FRF_AA_RX_USR_BUF_SIZE,
1566 huge_buf_size);
1567 EFX_SET_OWORD_FIELD(reg, FRF_AA_RX_XON_MAC_TH, data_xon_thr);
1568 EFX_SET_OWORD_FIELD(reg, FRF_AA_RX_XOFF_MAC_TH, data_xoff_thr);
1569 EFX_SET_OWORD_FIELD(reg, FRF_AA_RX_XON_TX_TH, ctrl_xon_thr);
1570 EFX_SET_OWORD_FIELD(reg, FRF_AA_RX_XOFF_TX_TH, ctrl_xoff_thr);
Ben Hutchings56241ce2009-10-23 08:30:06 +00001571 } else {
Ben Hutchings625b4512009-10-23 08:30:17 +00001572 /* Data FIFO size is 80K; register fields moved */
1573 if (data_xon_thr < 0)
1574 data_xon_thr = 27648 >> 8; /* ~3*max MTU */
1575 if (data_xoff_thr < 0)
1576 data_xoff_thr = 54272 >> 8; /* ~80Kb - 3*max MTU */
Ben Hutchings3e6c4532009-10-23 08:30:36 +00001577 EFX_SET_OWORD_FIELD(reg, FRF_BZ_RX_DESC_PUSH_EN, 0);
1578 EFX_SET_OWORD_FIELD(reg, FRF_BZ_RX_USR_BUF_SIZE,
1579 huge_buf_size);
1580 EFX_SET_OWORD_FIELD(reg, FRF_BZ_RX_XON_MAC_TH, data_xon_thr);
1581 EFX_SET_OWORD_FIELD(reg, FRF_BZ_RX_XOFF_MAC_TH, data_xoff_thr);
1582 EFX_SET_OWORD_FIELD(reg, FRF_BZ_RX_XON_TX_TH, ctrl_xon_thr);
1583 EFX_SET_OWORD_FIELD(reg, FRF_BZ_RX_XOFF_TX_TH, ctrl_xoff_thr);
1584 EFX_SET_OWORD_FIELD(reg, FRF_BZ_RX_INGR_EN, 1);
Ben Hutchings477e54e2010-06-25 07:05:56 +00001585
1586 /* Enable hash insertion. This is broken for the
1587 * 'Falcon' hash so also select Toeplitz TCP/IPv4 and
1588 * IPv4 hashes. */
1589 EFX_SET_OWORD_FIELD(reg, FRF_BZ_RX_HASH_INSRT_HDR, 1);
1590 EFX_SET_OWORD_FIELD(reg, FRF_BZ_RX_HASH_ALG, 1);
1591 EFX_SET_OWORD_FIELD(reg, FRF_BZ_RX_IP_HASH, 1);
Ben Hutchings56241ce2009-10-23 08:30:06 +00001592 }
Ben Hutchings4b0d29d2009-11-29 03:42:18 +00001593 /* Always enable XOFF signal from RX FIFO. We enable
1594 * or disable transmission of pause frames at the MAC. */
1595 EFX_SET_OWORD_FIELD(reg, FRF_AZ_RX_XOFF_MAC_EN, 1);
Ben Hutchings12d00ca2009-10-23 08:30:46 +00001596 efx_writeo(efx, &reg, FR_AZ_RX_CFG);
Ben Hutchings56241ce2009-10-23 08:30:06 +00001597}
1598
Ben Hutchings152b6a62009-11-29 03:43:56 +00001599/* This call performs hardware-specific global initialisation, such as
1600 * defining the descriptor cache sizes and number of RSS channels.
1601 * It does not set up any buffers, descriptor rings or event queues.
1602 */
1603static int falcon_init_nic(struct efx_nic *efx)
1604{
1605 efx_oword_t temp;
1606 int rc;
1607
1608 /* Use on-chip SRAM */
1609 efx_reado(efx, &temp, FR_AB_NIC_STAT);
1610 EFX_SET_OWORD_FIELD(temp, FRF_AB_ONCHIP_SRAM, 1);
1611 efx_writeo(efx, &temp, FR_AB_NIC_STAT);
1612
1613 /* Set the source of the GMAC clock */
1614 if (efx_nic_rev(efx) == EFX_REV_FALCON_B0) {
1615 efx_reado(efx, &temp, FR_AB_GPIO_CTL);
1616 EFX_SET_OWORD_FIELD(temp, FRF_AB_USE_NIC_CLK, true);
1617 efx_writeo(efx, &temp, FR_AB_GPIO_CTL);
1618 }
1619
1620 /* Select the correct MAC */
1621 falcon_clock_mac(efx);
1622
1623 rc = falcon_reset_sram(efx);
1624 if (rc)
1625 return rc;
1626
1627 /* Clear the parity enables on the TX data fifos as
1628 * they produce false parity errors because of timing issues
1629 */
1630 if (EFX_WORKAROUND_5129(efx)) {
1631 efx_reado(efx, &temp, FR_AZ_CSR_SPARE);
1632 EFX_SET_OWORD_FIELD(temp, FRF_AB_MEM_PERR_EN_TX_DATA, 0);
1633 efx_writeo(efx, &temp, FR_AZ_CSR_SPARE);
1634 }
1635
1636 if (EFX_WORKAROUND_7244(efx)) {
1637 efx_reado(efx, &temp, FR_BZ_RX_FILTER_CTL);
1638 EFX_SET_OWORD_FIELD(temp, FRF_BZ_UDP_FULL_SRCH_LIMIT, 8);
1639 EFX_SET_OWORD_FIELD(temp, FRF_BZ_UDP_WILD_SRCH_LIMIT, 8);
1640 EFX_SET_OWORD_FIELD(temp, FRF_BZ_TCP_FULL_SRCH_LIMIT, 8);
1641 EFX_SET_OWORD_FIELD(temp, FRF_BZ_TCP_WILD_SRCH_LIMIT, 8);
1642 efx_writeo(efx, &temp, FR_BZ_RX_FILTER_CTL);
1643 }
1644
1645 /* XXX This is documented only for Falcon A0/A1 */
1646 /* Setup RX. Wait for descriptor is broken and must
1647 * be disabled. RXDP recovery shouldn't be needed, but is.
1648 */
1649 efx_reado(efx, &temp, FR_AA_RX_SELF_RST);
1650 EFX_SET_OWORD_FIELD(temp, FRF_AA_RX_NODESC_WAIT_DIS, 1);
1651 EFX_SET_OWORD_FIELD(temp, FRF_AA_RX_SELF_RST_EN, 1);
1652 if (EFX_WORKAROUND_5583(efx))
1653 EFX_SET_OWORD_FIELD(temp, FRF_AA_RX_ISCSI_DIS, 1);
1654 efx_writeo(efx, &temp, FR_AA_RX_SELF_RST);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001655
1656 /* Do not enable TX_NO_EOP_DISC_EN, since it limits packets to 16
1657 * descriptors (which is bad).
1658 */
Ben Hutchings12d00ca2009-10-23 08:30:46 +00001659 efx_reado(efx, &temp, FR_AZ_TX_CFG);
Ben Hutchings3e6c4532009-10-23 08:30:36 +00001660 EFX_SET_OWORD_FIELD(temp, FRF_AZ_TX_NO_EOP_DISC_EN, 0);
Ben Hutchings12d00ca2009-10-23 08:30:46 +00001661 efx_writeo(efx, &temp, FR_AZ_TX_CFG);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001662
Ben Hutchings56241ce2009-10-23 08:30:06 +00001663 falcon_init_rx_cfg(efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001664
Ben Hutchingsdaeda632009-11-28 05:36:04 +00001665 if (efx_nic_rev(efx) >= EFX_REV_FALCON_B0) {
Ben Hutchings477e54e2010-06-25 07:05:56 +00001666 /* Set hash key for IPv4 */
1667 memcpy(&temp, efx->rx_hash_key, sizeof(temp));
1668 efx_writeo(efx, &temp, FR_BZ_RX_RSS_TKEY);
1669
1670 /* Set destination of both TX and RX Flush events */
Ben Hutchings3e6c4532009-10-23 08:30:36 +00001671 EFX_POPULATE_OWORD_1(temp, FRF_BZ_FLS_EVQ_ID, 0);
Ben Hutchings12d00ca2009-10-23 08:30:46 +00001672 efx_writeo(efx, &temp, FR_BZ_DP_CTRL);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001673 }
1674
Ben Hutchings152b6a62009-11-29 03:43:56 +00001675 efx_nic_init_common(efx);
1676
Ben Hutchings8ceee662008-04-27 12:55:59 +01001677 return 0;
1678}
1679
Ben Hutchingsef2b90e2009-11-29 03:42:31 +00001680static void falcon_remove_nic(struct efx_nic *efx)
Ben Hutchings8ceee662008-04-27 12:55:59 +01001681{
1682 struct falcon_nic_data *nic_data = efx->nic_data;
Ben Hutchingse775fb92009-11-23 16:06:02 +00001683 struct falcon_board *board = falcon_board(efx);
Ben Hutchings37b5a602008-05-30 22:27:04 +01001684 int rc;
1685
Ben Hutchings44838a42009-11-25 16:09:41 +00001686 board->type->fini(efx);
Ben Hutchings278c0622009-11-23 16:05:12 +00001687
Ben Hutchings8c870372009-03-04 09:53:02 +00001688 /* Remove I2C adapter and clear it in preparation for a retry */
Ben Hutchingse775fb92009-11-23 16:06:02 +00001689 rc = i2c_del_adapter(&board->i2c_adap);
Ben Hutchings37b5a602008-05-30 22:27:04 +01001690 BUG_ON(rc);
Ben Hutchingse775fb92009-11-23 16:06:02 +00001691 memset(&board->i2c_adap, 0, sizeof(board->i2c_adap));
Ben Hutchings8ceee662008-04-27 12:55:59 +01001692
Ben Hutchings4a5b5042008-09-01 12:47:16 +01001693 falcon_remove_spi_devices(efx);
Ben Hutchings152b6a62009-11-29 03:43:56 +00001694 efx_nic_free_buffer(efx, &efx->irq_status);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001695
Ben Hutchings91ad7572008-05-16 21:14:27 +01001696 falcon_reset_hw(efx, RESET_TYPE_ALL);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001697
1698 /* Release the second function after the reset */
1699 if (nic_data->pci_dev2) {
1700 pci_dev_put(nic_data->pci_dev2);
1701 nic_data->pci_dev2 = NULL;
1702 }
1703
1704 /* Tear down the private nic state */
1705 kfree(efx->nic_data);
1706 efx->nic_data = NULL;
1707}
1708
Ben Hutchingsef2b90e2009-11-29 03:42:31 +00001709static void falcon_update_nic_stats(struct efx_nic *efx)
Ben Hutchings8ceee662008-04-27 12:55:59 +01001710{
Ben Hutchings55edc6e2009-11-25 16:11:35 +00001711 struct falcon_nic_data *nic_data = efx->nic_data;
Ben Hutchings8ceee662008-04-27 12:55:59 +01001712 efx_oword_t cnt;
1713
Ben Hutchings55edc6e2009-11-25 16:11:35 +00001714 if (nic_data->stats_disable_count)
1715 return;
1716
Ben Hutchings12d00ca2009-10-23 08:30:46 +00001717 efx_reado(efx, &cnt, FR_AZ_RX_NODESC_DROP);
Ben Hutchings3e6c4532009-10-23 08:30:36 +00001718 efx->n_rx_nodesc_drop_cnt +=
1719 EFX_OWORD_FIELD(cnt, FRF_AB_RX_NODESC_DROP_CNT);
Ben Hutchings55edc6e2009-11-25 16:11:35 +00001720
1721 if (nic_data->stats_pending &&
1722 *nic_data->stats_dma_done == FALCON_STATS_DONE) {
1723 nic_data->stats_pending = false;
1724 rmb(); /* read the done flag before the stats */
1725 efx->mac_op->update_stats(efx);
1726 }
1727}
1728
1729void falcon_start_nic_stats(struct efx_nic *efx)
1730{
1731 struct falcon_nic_data *nic_data = efx->nic_data;
1732
1733 spin_lock_bh(&efx->stats_lock);
1734 if (--nic_data->stats_disable_count == 0)
1735 falcon_stats_request(efx);
1736 spin_unlock_bh(&efx->stats_lock);
1737}
1738
1739void falcon_stop_nic_stats(struct efx_nic *efx)
1740{
1741 struct falcon_nic_data *nic_data = efx->nic_data;
1742 int i;
1743
1744 might_sleep();
1745
1746 spin_lock_bh(&efx->stats_lock);
1747 ++nic_data->stats_disable_count;
1748 spin_unlock_bh(&efx->stats_lock);
1749
1750 del_timer_sync(&nic_data->stats_timer);
1751
1752 /* Wait enough time for the most recent transfer to
1753 * complete. */
1754 for (i = 0; i < 4 && nic_data->stats_pending; i++) {
1755 if (*nic_data->stats_dma_done == FALCON_STATS_DONE)
1756 break;
1757 msleep(1);
1758 }
1759
1760 spin_lock_bh(&efx->stats_lock);
1761 falcon_stats_complete(efx);
1762 spin_unlock_bh(&efx->stats_lock);
Ben Hutchings8ceee662008-04-27 12:55:59 +01001763}
1764
Ben Hutchings06629f02009-11-29 03:43:43 +00001765static void falcon_set_id_led(struct efx_nic *efx, enum efx_led_mode mode)
1766{
1767 falcon_board(efx)->type->set_id_led(efx, mode);
1768}
1769
Ben Hutchings8ceee662008-04-27 12:55:59 +01001770/**************************************************************************
1771 *
Ben Hutchings89c758f2009-11-29 03:43:07 +00001772 * Wake on LAN
1773 *
1774 **************************************************************************
1775 */
1776
1777static void falcon_get_wol(struct efx_nic *efx, struct ethtool_wolinfo *wol)
1778{
1779 wol->supported = 0;
1780 wol->wolopts = 0;
1781 memset(&wol->sopass, 0, sizeof(wol->sopass));
1782}
1783
1784static int falcon_set_wol(struct efx_nic *efx, u32 type)
1785{
1786 if (type != 0)
1787 return -EINVAL;
1788 return 0;
1789}
1790
1791/**************************************************************************
1792 *
Ben Hutchings754c6532010-02-03 09:31:57 +00001793 * Revision-dependent attributes used by efx.c and nic.c
Ben Hutchings8ceee662008-04-27 12:55:59 +01001794 *
1795 **************************************************************************
1796 */
1797
Ben Hutchingsdaeda632009-11-28 05:36:04 +00001798struct efx_nic_type falcon_a1_nic_type = {
Ben Hutchingsef2b90e2009-11-29 03:42:31 +00001799 .probe = falcon_probe_nic,
1800 .remove = falcon_remove_nic,
1801 .init = falcon_init_nic,
1802 .fini = efx_port_dummy_op_void,
1803 .monitor = falcon_monitor,
1804 .reset = falcon_reset_hw,
1805 .probe_port = falcon_probe_port,
1806 .remove_port = falcon_remove_port,
1807 .prepare_flush = falcon_prepare_flush,
1808 .update_stats = falcon_update_nic_stats,
1809 .start_stats = falcon_start_nic_stats,
1810 .stop_stats = falcon_stop_nic_stats,
Ben Hutchings06629f02009-11-29 03:43:43 +00001811 .set_id_led = falcon_set_id_led,
Ben Hutchingsef2b90e2009-11-29 03:42:31 +00001812 .push_irq_moderation = falcon_push_irq_moderation,
1813 .push_multicast_hash = falcon_push_multicast_hash,
Ben Hutchingsd3245b22009-11-29 03:42:41 +00001814 .reconfigure_port = falcon_reconfigure_port,
Ben Hutchings89c758f2009-11-29 03:43:07 +00001815 .get_wol = falcon_get_wol,
1816 .set_wol = falcon_set_wol,
1817 .resume_wol = efx_port_dummy_op_void,
Ben Hutchings0aa3fba2009-11-29 03:43:33 +00001818 .test_nvram = falcon_test_nvram,
Steve Hodgsonb895d732009-11-28 05:35:00 +00001819 .default_mac_ops = &falcon_xmac_operations,
1820
Ben Hutchingsdaeda632009-11-28 05:36:04 +00001821 .revision = EFX_REV_FALCON_A1,
Ben Hutchings8ceee662008-04-27 12:55:59 +01001822 .mem_map_size = 0x20000,
Ben Hutchings3e6c4532009-10-23 08:30:36 +00001823 .txd_ptr_tbl_base = FR_AA_TX_DESC_PTR_TBL_KER,
1824 .rxd_ptr_tbl_base = FR_AA_RX_DESC_PTR_TBL_KER,
1825 .buf_tbl_base = FR_AA_BUF_FULL_TBL_KER,
1826 .evq_ptr_tbl_base = FR_AA_EVQ_PTR_TBL_KER,
1827 .evq_rptr_tbl_base = FR_AA_EVQ_RPTR_KER,
Ben Hutchings6d51d302009-10-23 08:31:07 +00001828 .max_dma_mask = DMA_BIT_MASK(FSF_AZ_TX_KER_BUF_ADDR_WIDTH),
Ben Hutchings8ceee662008-04-27 12:55:59 +01001829 .rx_buffer_padding = 0x24,
1830 .max_interrupt_mode = EFX_INT_MODE_MSI,
1831 .phys_addr_channels = 4,
Ben Hutchings0228f5cdb02009-11-28 05:36:12 +00001832 .tx_dc_base = 0x130000,
1833 .rx_dc_base = 0x100000,
Ben Hutchingsc383b532009-11-29 15:11:02 +00001834 .offload_features = NETIF_F_IP_CSUM,
Ben Hutchingseb9f6742009-11-29 03:43:15 +00001835 .reset_world_flags = ETH_RESET_IRQ,
Ben Hutchings8ceee662008-04-27 12:55:59 +01001836};
1837
Ben Hutchingsdaeda632009-11-28 05:36:04 +00001838struct efx_nic_type falcon_b0_nic_type = {
Ben Hutchingsef2b90e2009-11-29 03:42:31 +00001839 .probe = falcon_probe_nic,
1840 .remove = falcon_remove_nic,
1841 .init = falcon_init_nic,
1842 .fini = efx_port_dummy_op_void,
1843 .monitor = falcon_monitor,
1844 .reset = falcon_reset_hw,
1845 .probe_port = falcon_probe_port,
1846 .remove_port = falcon_remove_port,
1847 .prepare_flush = falcon_prepare_flush,
1848 .update_stats = falcon_update_nic_stats,
1849 .start_stats = falcon_start_nic_stats,
1850 .stop_stats = falcon_stop_nic_stats,
Ben Hutchings06629f02009-11-29 03:43:43 +00001851 .set_id_led = falcon_set_id_led,
Ben Hutchingsef2b90e2009-11-29 03:42:31 +00001852 .push_irq_moderation = falcon_push_irq_moderation,
1853 .push_multicast_hash = falcon_push_multicast_hash,
Ben Hutchingsd3245b22009-11-29 03:42:41 +00001854 .reconfigure_port = falcon_reconfigure_port,
Ben Hutchings89c758f2009-11-29 03:43:07 +00001855 .get_wol = falcon_get_wol,
1856 .set_wol = falcon_set_wol,
1857 .resume_wol = efx_port_dummy_op_void,
Ben Hutchings9bfc4bb2009-11-29 03:43:23 +00001858 .test_registers = falcon_b0_test_registers,
Ben Hutchings0aa3fba2009-11-29 03:43:33 +00001859 .test_nvram = falcon_test_nvram,
Steve Hodgsonb895d732009-11-28 05:35:00 +00001860 .default_mac_ops = &falcon_xmac_operations,
1861
Ben Hutchingsdaeda632009-11-28 05:36:04 +00001862 .revision = EFX_REV_FALCON_B0,
Ben Hutchings8ceee662008-04-27 12:55:59 +01001863 /* Map everything up to and including the RSS indirection
1864 * table. Don't map MSI-X table, MSI-X PBA since Linux
1865 * requires that they not be mapped. */
Ben Hutchings3e6c4532009-10-23 08:30:36 +00001866 .mem_map_size = (FR_BZ_RX_INDIRECTION_TBL +
1867 FR_BZ_RX_INDIRECTION_TBL_STEP *
1868 FR_BZ_RX_INDIRECTION_TBL_ROWS),
1869 .txd_ptr_tbl_base = FR_BZ_TX_DESC_PTR_TBL,
1870 .rxd_ptr_tbl_base = FR_BZ_RX_DESC_PTR_TBL,
1871 .buf_tbl_base = FR_BZ_BUF_FULL_TBL,
1872 .evq_ptr_tbl_base = FR_BZ_EVQ_PTR_TBL,
1873 .evq_rptr_tbl_base = FR_BZ_EVQ_RPTR,
Ben Hutchings6d51d302009-10-23 08:31:07 +00001874 .max_dma_mask = DMA_BIT_MASK(FSF_AZ_TX_KER_BUF_ADDR_WIDTH),
Ben Hutchings39c9cf02010-06-23 11:31:28 +00001875 .rx_buffer_hash_size = 0x10,
Ben Hutchings8ceee662008-04-27 12:55:59 +01001876 .rx_buffer_padding = 0,
1877 .max_interrupt_mode = EFX_INT_MODE_MSIX,
1878 .phys_addr_channels = 32, /* Hardware limit is 64, but the legacy
1879 * interrupt handler only supports 32
1880 * channels */
Ben Hutchings0228f5cdb02009-11-28 05:36:12 +00001881 .tx_dc_base = 0x130000,
1882 .rx_dc_base = 0x100000,
Ben Hutchings39c9cf02010-06-23 11:31:28 +00001883 .offload_features = NETIF_F_IP_CSUM | NETIF_F_RXHASH,
Ben Hutchingseb9f6742009-11-29 03:43:15 +00001884 .reset_world_flags = ETH_RESET_IRQ,
Ben Hutchings8ceee662008-04-27 12:55:59 +01001885};
1886