Ben Hutchings | afd4aea | 2009-11-29 15:15:25 +0000 | [diff] [blame] | 1 | /**************************************************************************** |
| 2 | * Driver for Solarflare Solarstorm network controllers and boards |
| 3 | * Copyright 2005-2006 Fen Systems Ltd. |
Ben Hutchings | 0a6f40c | 2011-02-25 00:01:34 +0000 | [diff] [blame] | 4 | * Copyright 2006-2010 Solarflare Communications Inc. |
Ben Hutchings | afd4aea | 2009-11-29 15:15:25 +0000 | [diff] [blame] | 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> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 15 | #include <linux/slab.h> |
Ben Hutchings | d614cfb | 2010-04-28 09:29:02 +0000 | [diff] [blame] | 16 | #include <linux/random.h> |
Ben Hutchings | afd4aea | 2009-11-29 15:15:25 +0000 | [diff] [blame] | 17 | #include "net_driver.h" |
| 18 | #include "bitfield.h" |
| 19 | #include "efx.h" |
| 20 | #include "nic.h" |
Ben Hutchings | afd4aea | 2009-11-29 15:15:25 +0000 | [diff] [blame] | 21 | #include "spi.h" |
Ben Hutchings | 8b8a95a | 2012-09-18 01:57:07 +0100 | [diff] [blame] | 22 | #include "farch_regs.h" |
Ben Hutchings | afd4aea | 2009-11-29 15:15:25 +0000 | [diff] [blame] | 23 | #include "io.h" |
| 24 | #include "phy.h" |
| 25 | #include "workarounds.h" |
| 26 | #include "mcdi.h" |
| 27 | #include "mcdi_pcol.h" |
Ben Hutchings | d4f2cec | 2012-07-04 03:58:33 +0100 | [diff] [blame] | 28 | #include "selftest.h" |
Ben Hutchings | afd4aea | 2009-11-29 15:15:25 +0000 | [diff] [blame] | 29 | |
| 30 | /* Hardware control for SFC9000 family including SFL9021 (aka Siena). */ |
| 31 | |
| 32 | static void siena_init_wol(struct efx_nic *efx); |
| 33 | |
| 34 | |
| 35 | static void siena_push_irq_moderation(struct efx_channel *channel) |
| 36 | { |
| 37 | efx_dword_t timer_cmd; |
| 38 | |
| 39 | if (channel->irq_moderation) |
| 40 | EFX_POPULATE_DWORD_2(timer_cmd, |
| 41 | FRF_CZ_TC_TIMER_MODE, |
| 42 | FFE_CZ_TIMER_MODE_INT_HLDOFF, |
| 43 | FRF_CZ_TC_TIMER_VAL, |
| 44 | channel->irq_moderation - 1); |
| 45 | else |
| 46 | EFX_POPULATE_DWORD_2(timer_cmd, |
| 47 | FRF_CZ_TC_TIMER_MODE, |
| 48 | FFE_CZ_TIMER_MODE_DIS, |
| 49 | FRF_CZ_TC_TIMER_VAL, 0); |
| 50 | efx_writed_page_locked(channel->efx, &timer_cmd, FR_BZ_TIMER_COMMAND_P0, |
| 51 | channel->channel); |
| 52 | } |
| 53 | |
Ben Hutchings | d5e8cc6 | 2012-09-06 16:52:31 +0100 | [diff] [blame] | 54 | void siena_prepare_flush(struct efx_nic *efx) |
| 55 | { |
| 56 | if (efx->fc_disable++ == 0) |
| 57 | efx_mcdi_set_mac(efx); |
| 58 | } |
| 59 | |
| 60 | void siena_finish_flush(struct efx_nic *efx) |
| 61 | { |
| 62 | if (--efx->fc_disable == 0) |
| 63 | efx_mcdi_set_mac(efx); |
| 64 | } |
| 65 | |
Ben Hutchings | 86094f7 | 2013-08-21 19:51:04 +0100 | [diff] [blame] | 66 | static const struct efx_farch_register_test siena_register_tests[] = { |
Ben Hutchings | afd4aea | 2009-11-29 15:15:25 +0000 | [diff] [blame] | 67 | { FR_AZ_ADR_REGION, |
Steve Hodgson | 4cddca5 | 2010-02-03 09:31:40 +0000 | [diff] [blame] | 68 | EFX_OWORD32(0x0003FFFF, 0x0003FFFF, 0x0003FFFF, 0x0003FFFF) }, |
Ben Hutchings | afd4aea | 2009-11-29 15:15:25 +0000 | [diff] [blame] | 69 | { FR_CZ_USR_EV_CFG, |
| 70 | EFX_OWORD32(0x000103FF, 0x00000000, 0x00000000, 0x00000000) }, |
| 71 | { FR_AZ_RX_CFG, |
| 72 | EFX_OWORD32(0xFFFFFFFE, 0xFFFFFFFF, 0x0003FFFF, 0x00000000) }, |
| 73 | { FR_AZ_TX_CFG, |
| 74 | EFX_OWORD32(0x7FFF0037, 0xFFFF8000, 0xFFFFFFFF, 0x03FFFFFF) }, |
| 75 | { FR_AZ_TX_RESERVED, |
| 76 | EFX_OWORD32(0xFFFEFE80, 0x1FFFFFFF, 0x020000FE, 0x007FFFFF) }, |
| 77 | { FR_AZ_SRM_TX_DC_CFG, |
| 78 | EFX_OWORD32(0x001FFFFF, 0x00000000, 0x00000000, 0x00000000) }, |
| 79 | { FR_AZ_RX_DC_CFG, |
| 80 | EFX_OWORD32(0x00000003, 0x00000000, 0x00000000, 0x00000000) }, |
| 81 | { FR_AZ_RX_DC_PF_WM, |
| 82 | EFX_OWORD32(0x000003FF, 0x00000000, 0x00000000, 0x00000000) }, |
| 83 | { FR_BZ_DP_CTRL, |
| 84 | EFX_OWORD32(0x00000FFF, 0x00000000, 0x00000000, 0x00000000) }, |
| 85 | { FR_BZ_RX_RSS_TKEY, |
| 86 | EFX_OWORD32(0xFFFFFFFF, 0xFFFFFFFF, 0xFFFFFFFF, 0xFFFFFFFF) }, |
| 87 | { FR_CZ_RX_RSS_IPV6_REG1, |
| 88 | EFX_OWORD32(0xFFFFFFFF, 0xFFFFFFFF, 0xFFFFFFFF, 0xFFFFFFFF) }, |
| 89 | { FR_CZ_RX_RSS_IPV6_REG2, |
| 90 | EFX_OWORD32(0xFFFFFFFF, 0xFFFFFFFF, 0xFFFFFFFF, 0xFFFFFFFF) }, |
| 91 | { FR_CZ_RX_RSS_IPV6_REG3, |
| 92 | EFX_OWORD32(0xFFFFFFFF, 0xFFFFFFFF, 0x00000007, 0x00000000) }, |
| 93 | }; |
| 94 | |
Ben Hutchings | d4f2cec | 2012-07-04 03:58:33 +0100 | [diff] [blame] | 95 | static int siena_test_chip(struct efx_nic *efx, struct efx_self_tests *tests) |
Ben Hutchings | afd4aea | 2009-11-29 15:15:25 +0000 | [diff] [blame] | 96 | { |
Ben Hutchings | ef492f1 | 2012-12-01 01:55:27 +0000 | [diff] [blame] | 97 | enum reset_type reset_method = RESET_TYPE_ALL; |
Ben Hutchings | d4f2cec | 2012-07-04 03:58:33 +0100 | [diff] [blame] | 98 | int rc, rc2; |
| 99 | |
| 100 | efx_reset_down(efx, reset_method); |
| 101 | |
| 102 | /* Reset the chip immediately so that it is completely |
| 103 | * quiescent regardless of what any VF driver does. |
| 104 | */ |
Ben Hutchings | 6bff861 | 2012-09-18 02:33:52 +0100 | [diff] [blame] | 105 | rc = efx_mcdi_reset(efx, reset_method); |
Ben Hutchings | d4f2cec | 2012-07-04 03:58:33 +0100 | [diff] [blame] | 106 | if (rc) |
| 107 | goto out; |
| 108 | |
| 109 | tests->registers = |
Ben Hutchings | 86094f7 | 2013-08-21 19:51:04 +0100 | [diff] [blame] | 110 | efx_farch_test_registers(efx, siena_register_tests, |
| 111 | ARRAY_SIZE(siena_register_tests)) |
Ben Hutchings | d4f2cec | 2012-07-04 03:58:33 +0100 | [diff] [blame] | 112 | ? -1 : 1; |
| 113 | |
Ben Hutchings | 6bff861 | 2012-09-18 02:33:52 +0100 | [diff] [blame] | 114 | rc = efx_mcdi_reset(efx, reset_method); |
Ben Hutchings | d4f2cec | 2012-07-04 03:58:33 +0100 | [diff] [blame] | 115 | out: |
| 116 | rc2 = efx_reset_up(efx, reset_method, rc == 0); |
| 117 | return rc ? rc : rc2; |
Ben Hutchings | afd4aea | 2009-11-29 15:15:25 +0000 | [diff] [blame] | 118 | } |
| 119 | |
| 120 | /************************************************************************** |
| 121 | * |
| 122 | * Device reset |
| 123 | * |
| 124 | ************************************************************************** |
| 125 | */ |
| 126 | |
Ben Hutchings | 0e2a9c7 | 2011-06-24 20:50:07 +0100 | [diff] [blame] | 127 | static int siena_map_reset_flags(u32 *flags) |
| 128 | { |
| 129 | enum { |
| 130 | SIENA_RESET_PORT = (ETH_RESET_DMA | ETH_RESET_FILTER | |
| 131 | ETH_RESET_OFFLOAD | ETH_RESET_MAC | |
| 132 | ETH_RESET_PHY), |
| 133 | SIENA_RESET_MC = (SIENA_RESET_PORT | |
| 134 | ETH_RESET_MGMT << ETH_RESET_SHARED_SHIFT), |
| 135 | }; |
| 136 | |
| 137 | if ((*flags & SIENA_RESET_MC) == SIENA_RESET_MC) { |
| 138 | *flags &= ~SIENA_RESET_MC; |
| 139 | return RESET_TYPE_WORLD; |
| 140 | } |
| 141 | |
| 142 | if ((*flags & SIENA_RESET_PORT) == SIENA_RESET_PORT) { |
| 143 | *flags &= ~SIENA_RESET_PORT; |
| 144 | return RESET_TYPE_ALL; |
| 145 | } |
| 146 | |
| 147 | /* no invisible reset implemented */ |
| 148 | |
| 149 | return -EINVAL; |
| 150 | } |
| 151 | |
Alexandre Rames | 626950d | 2013-01-14 17:20:22 +0000 | [diff] [blame] | 152 | #ifdef CONFIG_EEH |
| 153 | /* When a PCI device is isolated from the bus, a subsequent MMIO read is |
| 154 | * required for the kernel EEH mechanisms to notice. As the Solarflare driver |
| 155 | * was written to minimise MMIO read (for latency) then a periodic call to check |
| 156 | * the EEH status of the device is required so that device recovery can happen |
| 157 | * in a timely fashion. |
| 158 | */ |
| 159 | static void siena_monitor(struct efx_nic *efx) |
| 160 | { |
| 161 | struct eeh_dev *eehdev = |
| 162 | of_node_to_eeh_dev(pci_device_to_OF_node(efx->pci_dev)); |
| 163 | |
| 164 | eeh_dev_check_failure(eehdev); |
| 165 | } |
| 166 | #endif |
| 167 | |
Ben Hutchings | afd4aea | 2009-11-29 15:15:25 +0000 | [diff] [blame] | 168 | static int siena_probe_nvconfig(struct efx_nic *efx) |
| 169 | { |
Ben Hutchings | cc180b6 | 2011-12-08 19:51:47 +0000 | [diff] [blame] | 170 | u32 caps = 0; |
| 171 | int rc; |
| 172 | |
| 173 | rc = efx_mcdi_get_board_cfg(efx, efx->net_dev->perm_addr, NULL, &caps); |
| 174 | |
| 175 | efx->timer_quantum_ns = |
| 176 | (caps & (1 << MC_CMD_CAPABILITIES_TURBO_ACTIVE_LBN)) ? |
| 177 | 3072 : 6144; /* 768 cycles */ |
| 178 | return rc; |
Ben Hutchings | afd4aea | 2009-11-29 15:15:25 +0000 | [diff] [blame] | 179 | } |
| 180 | |
Ben Hutchings | 28e47c4 | 2012-02-15 01:58:49 +0000 | [diff] [blame] | 181 | static void siena_dimension_resources(struct efx_nic *efx) |
| 182 | { |
| 183 | /* Each port has a small block of internal SRAM dedicated to |
| 184 | * the buffer table and descriptor caches. In theory we can |
| 185 | * map both blocks to one port, but we don't. |
| 186 | */ |
Ben Hutchings | 86094f7 | 2013-08-21 19:51:04 +0100 | [diff] [blame] | 187 | efx_farch_dimension_resources(efx, FR_CZ_BUF_FULL_TBL_ROWS / 2); |
Ben Hutchings | 28e47c4 | 2012-02-15 01:58:49 +0000 | [diff] [blame] | 188 | } |
| 189 | |
Ben Hutchings | b105798 | 2012-09-19 00:56:47 +0100 | [diff] [blame] | 190 | static unsigned int siena_mem_map_size(struct efx_nic *efx) |
| 191 | { |
| 192 | return FR_CZ_MC_TREG_SMEM + |
| 193 | FR_CZ_MC_TREG_SMEM_STEP * FR_CZ_MC_TREG_SMEM_ROWS; |
| 194 | } |
| 195 | |
Ben Hutchings | afd4aea | 2009-11-29 15:15:25 +0000 | [diff] [blame] | 196 | static int siena_probe_nic(struct efx_nic *efx) |
| 197 | { |
| 198 | struct siena_nic_data *nic_data; |
Rusty Russell | 3db1cd5 | 2011-12-19 13:56:45 +0000 | [diff] [blame] | 199 | bool already_attached = false; |
Ben Hutchings | d42a8f4 | 2010-06-01 11:32:43 +0000 | [diff] [blame] | 200 | efx_oword_t reg; |
Ben Hutchings | afd4aea | 2009-11-29 15:15:25 +0000 | [diff] [blame] | 201 | int rc; |
| 202 | |
| 203 | /* Allocate storage for hardware specific data */ |
| 204 | nic_data = kzalloc(sizeof(struct siena_nic_data), GFP_KERNEL); |
| 205 | if (!nic_data) |
| 206 | return -ENOMEM; |
| 207 | efx->nic_data = nic_data; |
| 208 | |
Ben Hutchings | 86094f7 | 2013-08-21 19:51:04 +0100 | [diff] [blame] | 209 | if (efx_farch_fpga_ver(efx) != 0) { |
Ben Hutchings | 62776d0 | 2010-06-23 11:30:07 +0000 | [diff] [blame] | 210 | netif_err(efx, probe, efx->net_dev, |
| 211 | "Siena FPGA not supported\n"); |
Ben Hutchings | afd4aea | 2009-11-29 15:15:25 +0000 | [diff] [blame] | 212 | rc = -ENODEV; |
| 213 | goto fail1; |
| 214 | } |
| 215 | |
Ben Hutchings | b105798 | 2012-09-19 00:56:47 +0100 | [diff] [blame] | 216 | efx->max_channels = EFX_MAX_CHANNELS; |
| 217 | |
Ben Hutchings | d42a8f4 | 2010-06-01 11:32:43 +0000 | [diff] [blame] | 218 | efx_reado(efx, ®, FR_AZ_CS_DEBUG); |
Ben Hutchings | 6602041 | 2013-06-10 18:03:17 +0100 | [diff] [blame] | 219 | efx->port_num = EFX_OWORD_FIELD(reg, FRF_CZ_CS_PORT_NUM) - 1; |
Ben Hutchings | d42a8f4 | 2010-06-01 11:32:43 +0000 | [diff] [blame] | 220 | |
Ben Hutchings | f073dde | 2012-09-18 02:33:55 +0100 | [diff] [blame] | 221 | rc = efx_mcdi_init(efx); |
Ben Hutchings | afd4aea | 2009-11-29 15:15:25 +0000 | [diff] [blame] | 222 | if (rc) |
David S. Miller | 8decf86 | 2011-09-22 03:23:13 -0400 | [diff] [blame] | 223 | goto fail1; |
Ben Hutchings | afd4aea | 2009-11-29 15:15:25 +0000 | [diff] [blame] | 224 | |
Ben Hutchings | afd4aea | 2009-11-29 15:15:25 +0000 | [diff] [blame] | 225 | /* Let the BMC know that the driver is now in charge of link and |
| 226 | * filter settings. We must do this before we reset the NIC */ |
| 227 | rc = efx_mcdi_drv_attach(efx, true, &already_attached); |
| 228 | if (rc) { |
Ben Hutchings | 62776d0 | 2010-06-23 11:30:07 +0000 | [diff] [blame] | 229 | netif_err(efx, probe, efx->net_dev, |
| 230 | "Unable to register driver with MCPU\n"); |
Ben Hutchings | afd4aea | 2009-11-29 15:15:25 +0000 | [diff] [blame] | 231 | goto fail2; |
| 232 | } |
| 233 | if (already_attached) |
| 234 | /* Not a fatal error */ |
Ben Hutchings | 62776d0 | 2010-06-23 11:30:07 +0000 | [diff] [blame] | 235 | netif_err(efx, probe, efx->net_dev, |
| 236 | "Host already registered with MCPU\n"); |
Ben Hutchings | afd4aea | 2009-11-29 15:15:25 +0000 | [diff] [blame] | 237 | |
| 238 | /* Now we can reset the NIC */ |
Ben Hutchings | 6bff861 | 2012-09-18 02:33:52 +0100 | [diff] [blame] | 239 | rc = efx_mcdi_reset(efx, RESET_TYPE_ALL); |
Ben Hutchings | afd4aea | 2009-11-29 15:15:25 +0000 | [diff] [blame] | 240 | if (rc) { |
Ben Hutchings | 62776d0 | 2010-06-23 11:30:07 +0000 | [diff] [blame] | 241 | netif_err(efx, probe, efx->net_dev, "failed to reset NIC\n"); |
Ben Hutchings | afd4aea | 2009-11-29 15:15:25 +0000 | [diff] [blame] | 242 | goto fail3; |
| 243 | } |
| 244 | |
| 245 | siena_init_wol(efx); |
| 246 | |
| 247 | /* Allocate memory for INT_KER */ |
Ben Hutchings | 0d19a54 | 2012-09-18 21:59:52 +0100 | [diff] [blame] | 248 | rc = efx_nic_alloc_buffer(efx, &efx->irq_status, sizeof(efx_oword_t), |
| 249 | GFP_KERNEL); |
Ben Hutchings | afd4aea | 2009-11-29 15:15:25 +0000 | [diff] [blame] | 250 | if (rc) |
| 251 | goto fail4; |
| 252 | BUG_ON(efx->irq_status.dma_addr & 0x0f); |
| 253 | |
Ben Hutchings | 62776d0 | 2010-06-23 11:30:07 +0000 | [diff] [blame] | 254 | netif_dbg(efx, probe, efx->net_dev, |
| 255 | "INT_KER at %llx (virt %p phys %llx)\n", |
| 256 | (unsigned long long)efx->irq_status.dma_addr, |
| 257 | efx->irq_status.addr, |
| 258 | (unsigned long long)virt_to_phys(efx->irq_status.addr)); |
Ben Hutchings | afd4aea | 2009-11-29 15:15:25 +0000 | [diff] [blame] | 259 | |
| 260 | /* Read in the non-volatile configuration */ |
| 261 | rc = siena_probe_nvconfig(efx); |
| 262 | if (rc == -EINVAL) { |
Ben Hutchings | 62776d0 | 2010-06-23 11:30:07 +0000 | [diff] [blame] | 263 | netif_err(efx, probe, efx->net_dev, |
| 264 | "NVRAM is invalid therefore using defaults\n"); |
Ben Hutchings | afd4aea | 2009-11-29 15:15:25 +0000 | [diff] [blame] | 265 | efx->phy_type = PHY_TYPE_NONE; |
| 266 | efx->mdio.prtad = MDIO_PRTAD_NONE; |
| 267 | } else if (rc) { |
| 268 | goto fail5; |
| 269 | } |
| 270 | |
Ben Hutchings | 55c5e0f8 | 2012-01-06 20:25:39 +0000 | [diff] [blame] | 271 | rc = efx_mcdi_mon_probe(efx); |
| 272 | if (rc) |
| 273 | goto fail5; |
| 274 | |
Ben Hutchings | cd2d5b5 | 2012-02-14 00:48:07 +0000 | [diff] [blame] | 275 | efx_sriov_probe(efx); |
Stuart Hodgson | 7c236c4 | 2012-09-03 11:09:36 +0100 | [diff] [blame] | 276 | efx_ptp_probe(efx); |
Ben Hutchings | cd2d5b5 | 2012-02-14 00:48:07 +0000 | [diff] [blame] | 277 | |
Ben Hutchings | afd4aea | 2009-11-29 15:15:25 +0000 | [diff] [blame] | 278 | return 0; |
| 279 | |
| 280 | fail5: |
| 281 | efx_nic_free_buffer(efx, &efx->irq_status); |
| 282 | fail4: |
| 283 | fail3: |
| 284 | efx_mcdi_drv_attach(efx, false, NULL); |
| 285 | fail2: |
Ben Hutchings | f3ad500 | 2012-09-18 02:33:56 +0100 | [diff] [blame] | 286 | efx_mcdi_fini(efx); |
Ben Hutchings | afd4aea | 2009-11-29 15:15:25 +0000 | [diff] [blame] | 287 | fail1: |
| 288 | kfree(efx->nic_data); |
| 289 | return rc; |
| 290 | } |
| 291 | |
| 292 | /* This call performs hardware-specific global initialisation, such as |
| 293 | * defining the descriptor cache sizes and number of RSS channels. |
| 294 | * It does not set up any buffers, descriptor rings or event queues. |
| 295 | */ |
| 296 | static int siena_init_nic(struct efx_nic *efx) |
| 297 | { |
| 298 | efx_oword_t temp; |
| 299 | int rc; |
| 300 | |
| 301 | /* Recover from a failed assertion post-reset */ |
| 302 | rc = efx_mcdi_handle_assertion(efx); |
| 303 | if (rc) |
| 304 | return rc; |
| 305 | |
| 306 | /* Squash TX of packets of 16 bytes or less */ |
| 307 | efx_reado(efx, &temp, FR_AZ_TX_RESERVED); |
| 308 | EFX_SET_OWORD_FIELD(temp, FRF_BZ_TX_FLUSH_MIN_LEN_EN, 1); |
| 309 | efx_writeo(efx, &temp, FR_AZ_TX_RESERVED); |
| 310 | |
| 311 | /* Do not enable TX_NO_EOP_DISC_EN, since it limits packets to 16 |
| 312 | * descriptors (which is bad). |
| 313 | */ |
| 314 | efx_reado(efx, &temp, FR_AZ_TX_CFG); |
| 315 | EFX_SET_OWORD_FIELD(temp, FRF_AZ_TX_NO_EOP_DISC_EN, 0); |
| 316 | EFX_SET_OWORD_FIELD(temp, FRF_CZ_TX_FILTER_EN_BIT, 1); |
| 317 | efx_writeo(efx, &temp, FR_AZ_TX_CFG); |
| 318 | |
| 319 | efx_reado(efx, &temp, FR_AZ_RX_CFG); |
| 320 | EFX_SET_OWORD_FIELD(temp, FRF_BZ_RX_DESC_PUSH_EN, 0); |
| 321 | EFX_SET_OWORD_FIELD(temp, FRF_BZ_RX_INGR_EN, 1); |
Ben Hutchings | 477e54e | 2010-06-25 07:05:56 +0000 | [diff] [blame] | 322 | /* Enable hash insertion. This is broken for the 'Falcon' hash |
| 323 | * if IPv6 hashing is also enabled, so also select Toeplitz |
| 324 | * TCP/IPv4 and IPv4 hashes. */ |
| 325 | EFX_SET_OWORD_FIELD(temp, FRF_BZ_RX_HASH_INSRT_HDR, 1); |
| 326 | EFX_SET_OWORD_FIELD(temp, FRF_BZ_RX_HASH_ALG, 1); |
| 327 | EFX_SET_OWORD_FIELD(temp, FRF_BZ_RX_IP_HASH, 1); |
Ben Hutchings | 85740cdf | 2013-01-29 23:33:15 +0000 | [diff] [blame] | 328 | EFX_SET_OWORD_FIELD(temp, FRF_BZ_RX_USR_BUF_SIZE, |
| 329 | EFX_RX_USR_BUF_SIZE >> 5); |
Ben Hutchings | afd4aea | 2009-11-29 15:15:25 +0000 | [diff] [blame] | 330 | efx_writeo(efx, &temp, FR_AZ_RX_CFG); |
| 331 | |
Ben Hutchings | 477e54e | 2010-06-25 07:05:56 +0000 | [diff] [blame] | 332 | /* Set hash key for IPv4 */ |
| 333 | memcpy(&temp, efx->rx_hash_key, sizeof(temp)); |
| 334 | efx_writeo(efx, &temp, FR_BZ_RX_RSS_TKEY); |
| 335 | |
Ben Hutchings | d614cfb | 2010-04-28 09:29:02 +0000 | [diff] [blame] | 336 | /* Enable IPv6 RSS */ |
Ben Hutchings | 5d3a6fc | 2010-06-25 07:05:43 +0000 | [diff] [blame] | 337 | BUILD_BUG_ON(sizeof(efx->rx_hash_key) < |
Ben Hutchings | d614cfb | 2010-04-28 09:29:02 +0000 | [diff] [blame] | 338 | 2 * sizeof(temp) + FRF_CZ_RX_RSS_IPV6_TKEY_HI_WIDTH / 8 || |
| 339 | FRF_CZ_RX_RSS_IPV6_TKEY_HI_LBN != 0); |
Ben Hutchings | 5d3a6fc | 2010-06-25 07:05:43 +0000 | [diff] [blame] | 340 | memcpy(&temp, efx->rx_hash_key, sizeof(temp)); |
Ben Hutchings | d614cfb | 2010-04-28 09:29:02 +0000 | [diff] [blame] | 341 | efx_writeo(efx, &temp, FR_CZ_RX_RSS_IPV6_REG1); |
Ben Hutchings | 5d3a6fc | 2010-06-25 07:05:43 +0000 | [diff] [blame] | 342 | memcpy(&temp, efx->rx_hash_key + sizeof(temp), sizeof(temp)); |
Ben Hutchings | d614cfb | 2010-04-28 09:29:02 +0000 | [diff] [blame] | 343 | efx_writeo(efx, &temp, FR_CZ_RX_RSS_IPV6_REG2); |
| 344 | EFX_POPULATE_OWORD_2(temp, FRF_CZ_RX_RSS_IPV6_THASH_ENABLE, 1, |
| 345 | FRF_CZ_RX_RSS_IPV6_IP_THASH_ENABLE, 1); |
Ben Hutchings | 5d3a6fc | 2010-06-25 07:05:43 +0000 | [diff] [blame] | 346 | memcpy(&temp, efx->rx_hash_key + 2 * sizeof(temp), |
Ben Hutchings | d614cfb | 2010-04-28 09:29:02 +0000 | [diff] [blame] | 347 | FRF_CZ_RX_RSS_IPV6_TKEY_HI_WIDTH / 8); |
| 348 | efx_writeo(efx, &temp, FR_CZ_RX_RSS_IPV6_REG3); |
| 349 | |
Ben Hutchings | afd4aea | 2009-11-29 15:15:25 +0000 | [diff] [blame] | 350 | /* Enable event logging */ |
| 351 | rc = efx_mcdi_log_ctrl(efx, true, false, 0); |
| 352 | if (rc) |
| 353 | return rc; |
| 354 | |
| 355 | /* Set destination of both TX and RX Flush events */ |
| 356 | EFX_POPULATE_OWORD_1(temp, FRF_BZ_FLS_EVQ_ID, 0); |
| 357 | efx_writeo(efx, &temp, FR_BZ_DP_CTRL); |
| 358 | |
| 359 | EFX_POPULATE_OWORD_1(temp, FRF_CZ_USREV_DIS, 1); |
| 360 | efx_writeo(efx, &temp, FR_CZ_USR_EV_CFG); |
| 361 | |
Ben Hutchings | 86094f7 | 2013-08-21 19:51:04 +0100 | [diff] [blame] | 362 | efx_farch_init_common(efx); |
Ben Hutchings | afd4aea | 2009-11-29 15:15:25 +0000 | [diff] [blame] | 363 | return 0; |
| 364 | } |
| 365 | |
| 366 | static void siena_remove_nic(struct efx_nic *efx) |
| 367 | { |
Ben Hutchings | 55c5e0f8 | 2012-01-06 20:25:39 +0000 | [diff] [blame] | 368 | efx_mcdi_mon_remove(efx); |
| 369 | |
Ben Hutchings | afd4aea | 2009-11-29 15:15:25 +0000 | [diff] [blame] | 370 | efx_nic_free_buffer(efx, &efx->irq_status); |
| 371 | |
Ben Hutchings | 6bff861 | 2012-09-18 02:33:52 +0100 | [diff] [blame] | 372 | efx_mcdi_reset(efx, RESET_TYPE_ALL); |
Ben Hutchings | afd4aea | 2009-11-29 15:15:25 +0000 | [diff] [blame] | 373 | |
| 374 | /* Relinquish the device back to the BMC */ |
Ben Hutchings | bdca71e | 2012-02-24 21:29:40 +0000 | [diff] [blame] | 375 | efx_mcdi_drv_attach(efx, false, NULL); |
Ben Hutchings | afd4aea | 2009-11-29 15:15:25 +0000 | [diff] [blame] | 376 | |
| 377 | /* Tear down the private nic state */ |
David S. Miller | 8decf86 | 2011-09-22 03:23:13 -0400 | [diff] [blame] | 378 | kfree(efx->nic_data); |
Ben Hutchings | afd4aea | 2009-11-29 15:15:25 +0000 | [diff] [blame] | 379 | efx->nic_data = NULL; |
Ben Hutchings | f3ad500 | 2012-09-18 02:33:56 +0100 | [diff] [blame] | 380 | |
| 381 | efx_mcdi_fini(efx); |
Ben Hutchings | afd4aea | 2009-11-29 15:15:25 +0000 | [diff] [blame] | 382 | } |
| 383 | |
Ben Hutchings | afd4aea | 2009-11-29 15:15:25 +0000 | [diff] [blame] | 384 | static int siena_try_update_nic_stats(struct efx_nic *efx) |
| 385 | { |
Steve Hodgson | a659b2a | 2011-06-22 12:11:33 +0100 | [diff] [blame] | 386 | __le64 *dma_stats; |
Ben Hutchings | afd4aea | 2009-11-29 15:15:25 +0000 | [diff] [blame] | 387 | struct efx_mac_stats *mac_stats; |
Steve Hodgson | a659b2a | 2011-06-22 12:11:33 +0100 | [diff] [blame] | 388 | __le64 generation_start, generation_end; |
Ben Hutchings | afd4aea | 2009-11-29 15:15:25 +0000 | [diff] [blame] | 389 | |
| 390 | mac_stats = &efx->mac_stats; |
Joe Perches | 43d620c | 2011-06-16 19:08:06 +0000 | [diff] [blame] | 391 | dma_stats = efx->stats_buffer.addr; |
Ben Hutchings | afd4aea | 2009-11-29 15:15:25 +0000 | [diff] [blame] | 392 | |
| 393 | generation_end = dma_stats[MC_CMD_MAC_GENERATION_END]; |
Ben Hutchings | 43f775b2 | 2012-09-18 02:33:54 +0100 | [diff] [blame] | 394 | if (generation_end == EFX_MC_STATS_GENERATION_INVALID) |
Ben Hutchings | afd4aea | 2009-11-29 15:15:25 +0000 | [diff] [blame] | 395 | return 0; |
| 396 | rmb(); |
| 397 | |
| 398 | #define MAC_STAT(M, D) \ |
Steve Hodgson | a659b2a | 2011-06-22 12:11:33 +0100 | [diff] [blame] | 399 | mac_stats->M = le64_to_cpu(dma_stats[MC_CMD_MAC_ ## D]) |
Ben Hutchings | afd4aea | 2009-11-29 15:15:25 +0000 | [diff] [blame] | 400 | |
| 401 | MAC_STAT(tx_bytes, TX_BYTES); |
| 402 | MAC_STAT(tx_bad_bytes, TX_BAD_BYTES); |
Ben Hutchings | b7f514a | 2012-07-04 22:25:07 +0100 | [diff] [blame] | 403 | efx_update_diff_stat(&mac_stats->tx_good_bytes, |
| 404 | mac_stats->tx_bytes - mac_stats->tx_bad_bytes); |
Ben Hutchings | afd4aea | 2009-11-29 15:15:25 +0000 | [diff] [blame] | 405 | MAC_STAT(tx_packets, TX_PKTS); |
| 406 | MAC_STAT(tx_bad, TX_BAD_FCS_PKTS); |
| 407 | MAC_STAT(tx_pause, TX_PAUSE_PKTS); |
| 408 | MAC_STAT(tx_control, TX_CONTROL_PKTS); |
| 409 | MAC_STAT(tx_unicast, TX_UNICAST_PKTS); |
| 410 | MAC_STAT(tx_multicast, TX_MULTICAST_PKTS); |
| 411 | MAC_STAT(tx_broadcast, TX_BROADCAST_PKTS); |
| 412 | MAC_STAT(tx_lt64, TX_LT64_PKTS); |
| 413 | MAC_STAT(tx_64, TX_64_PKTS); |
| 414 | MAC_STAT(tx_65_to_127, TX_65_TO_127_PKTS); |
| 415 | MAC_STAT(tx_128_to_255, TX_128_TO_255_PKTS); |
| 416 | MAC_STAT(tx_256_to_511, TX_256_TO_511_PKTS); |
| 417 | MAC_STAT(tx_512_to_1023, TX_512_TO_1023_PKTS); |
| 418 | MAC_STAT(tx_1024_to_15xx, TX_1024_TO_15XX_PKTS); |
| 419 | MAC_STAT(tx_15xx_to_jumbo, TX_15XX_TO_JUMBO_PKTS); |
| 420 | MAC_STAT(tx_gtjumbo, TX_GTJUMBO_PKTS); |
| 421 | mac_stats->tx_collision = 0; |
| 422 | MAC_STAT(tx_single_collision, TX_SINGLE_COLLISION_PKTS); |
| 423 | MAC_STAT(tx_multiple_collision, TX_MULTIPLE_COLLISION_PKTS); |
| 424 | MAC_STAT(tx_excessive_collision, TX_EXCESSIVE_COLLISION_PKTS); |
| 425 | MAC_STAT(tx_deferred, TX_DEFERRED_PKTS); |
| 426 | MAC_STAT(tx_late_collision, TX_LATE_COLLISION_PKTS); |
| 427 | mac_stats->tx_collision = (mac_stats->tx_single_collision + |
| 428 | mac_stats->tx_multiple_collision + |
| 429 | mac_stats->tx_excessive_collision + |
| 430 | mac_stats->tx_late_collision); |
| 431 | MAC_STAT(tx_excessive_deferred, TX_EXCESSIVE_DEFERRED_PKTS); |
| 432 | MAC_STAT(tx_non_tcpudp, TX_NON_TCPUDP_PKTS); |
| 433 | MAC_STAT(tx_mac_src_error, TX_MAC_SRC_ERR_PKTS); |
| 434 | MAC_STAT(tx_ip_src_error, TX_IP_SRC_ERR_PKTS); |
| 435 | MAC_STAT(rx_bytes, RX_BYTES); |
| 436 | MAC_STAT(rx_bad_bytes, RX_BAD_BYTES); |
Ben Hutchings | b7f514a | 2012-07-04 22:25:07 +0100 | [diff] [blame] | 437 | efx_update_diff_stat(&mac_stats->rx_good_bytes, |
| 438 | mac_stats->rx_bytes - mac_stats->rx_bad_bytes); |
Ben Hutchings | afd4aea | 2009-11-29 15:15:25 +0000 | [diff] [blame] | 439 | MAC_STAT(rx_packets, RX_PKTS); |
| 440 | MAC_STAT(rx_good, RX_GOOD_PKTS); |
Ben Hutchings | 1cdc2cf | 2010-09-10 06:41:00 +0000 | [diff] [blame] | 441 | MAC_STAT(rx_bad, RX_BAD_FCS_PKTS); |
Ben Hutchings | afd4aea | 2009-11-29 15:15:25 +0000 | [diff] [blame] | 442 | MAC_STAT(rx_pause, RX_PAUSE_PKTS); |
| 443 | MAC_STAT(rx_control, RX_CONTROL_PKTS); |
| 444 | MAC_STAT(rx_unicast, RX_UNICAST_PKTS); |
| 445 | MAC_STAT(rx_multicast, RX_MULTICAST_PKTS); |
| 446 | MAC_STAT(rx_broadcast, RX_BROADCAST_PKTS); |
| 447 | MAC_STAT(rx_lt64, RX_UNDERSIZE_PKTS); |
| 448 | MAC_STAT(rx_64, RX_64_PKTS); |
| 449 | MAC_STAT(rx_65_to_127, RX_65_TO_127_PKTS); |
| 450 | MAC_STAT(rx_128_to_255, RX_128_TO_255_PKTS); |
| 451 | MAC_STAT(rx_256_to_511, RX_256_TO_511_PKTS); |
| 452 | MAC_STAT(rx_512_to_1023, RX_512_TO_1023_PKTS); |
| 453 | MAC_STAT(rx_1024_to_15xx, RX_1024_TO_15XX_PKTS); |
| 454 | MAC_STAT(rx_15xx_to_jumbo, RX_15XX_TO_JUMBO_PKTS); |
| 455 | MAC_STAT(rx_gtjumbo, RX_GTJUMBO_PKTS); |
| 456 | mac_stats->rx_bad_lt64 = 0; |
| 457 | mac_stats->rx_bad_64_to_15xx = 0; |
| 458 | mac_stats->rx_bad_15xx_to_jumbo = 0; |
| 459 | MAC_STAT(rx_bad_gtjumbo, RX_JABBER_PKTS); |
| 460 | MAC_STAT(rx_overflow, RX_OVERFLOW_PKTS); |
| 461 | mac_stats->rx_missed = 0; |
| 462 | MAC_STAT(rx_false_carrier, RX_FALSE_CARRIER_PKTS); |
| 463 | MAC_STAT(rx_symbol_error, RX_SYMBOL_ERROR_PKTS); |
| 464 | MAC_STAT(rx_align_error, RX_ALIGN_ERROR_PKTS); |
| 465 | MAC_STAT(rx_length_error, RX_LENGTH_ERROR_PKTS); |
| 466 | MAC_STAT(rx_internal_error, RX_INTERNAL_ERROR_PKTS); |
| 467 | mac_stats->rx_good_lt64 = 0; |
| 468 | |
Steve Hodgson | a659b2a | 2011-06-22 12:11:33 +0100 | [diff] [blame] | 469 | efx->n_rx_nodesc_drop_cnt = |
| 470 | le64_to_cpu(dma_stats[MC_CMD_MAC_RX_NODESC_DROPS]); |
Ben Hutchings | afd4aea | 2009-11-29 15:15:25 +0000 | [diff] [blame] | 471 | |
| 472 | #undef MAC_STAT |
| 473 | |
| 474 | rmb(); |
| 475 | generation_start = dma_stats[MC_CMD_MAC_GENERATION_START]; |
| 476 | if (generation_end != generation_start) |
| 477 | return -EAGAIN; |
| 478 | |
| 479 | return 0; |
| 480 | } |
| 481 | |
| 482 | static void siena_update_nic_stats(struct efx_nic *efx) |
| 483 | { |
Ben Hutchings | aabc564 | 2010-04-28 09:00:35 +0000 | [diff] [blame] | 484 | int retry; |
| 485 | |
| 486 | /* If we're unlucky enough to read statistics wduring the DMA, wait |
| 487 | * up to 10ms for it to finish (typically takes <500us) */ |
| 488 | for (retry = 0; retry < 100; ++retry) { |
| 489 | if (siena_try_update_nic_stats(efx) == 0) |
| 490 | return; |
| 491 | udelay(100); |
| 492 | } |
| 493 | |
| 494 | /* Use the old values instead */ |
Ben Hutchings | afd4aea | 2009-11-29 15:15:25 +0000 | [diff] [blame] | 495 | } |
| 496 | |
Ben Hutchings | 319ec64 | 2012-10-08 16:56:18 +0100 | [diff] [blame] | 497 | static int siena_mac_reconfigure(struct efx_nic *efx) |
| 498 | { |
| 499 | MCDI_DECLARE_BUF(inbuf, MC_CMD_SET_MCAST_HASH_IN_LEN); |
| 500 | int rc; |
| 501 | |
| 502 | BUILD_BUG_ON(MC_CMD_SET_MCAST_HASH_IN_LEN != |
| 503 | MC_CMD_SET_MCAST_HASH_IN_HASH0_OFST + |
| 504 | sizeof(efx->multicast_hash)); |
| 505 | |
| 506 | WARN_ON(!mutex_is_locked(&efx->mac_lock)); |
| 507 | |
| 508 | rc = efx_mcdi_set_mac(efx); |
| 509 | if (rc != 0) |
| 510 | return rc; |
| 511 | |
| 512 | memcpy(MCDI_PTR(inbuf, SET_MCAST_HASH_IN_HASH0), |
| 513 | efx->multicast_hash.byte, sizeof(efx->multicast_hash)); |
| 514 | return efx_mcdi_rpc(efx, MC_CMD_SET_MCAST_HASH, |
| 515 | inbuf, sizeof(inbuf), NULL, 0, NULL); |
| 516 | } |
| 517 | |
Ben Hutchings | afd4aea | 2009-11-29 15:15:25 +0000 | [diff] [blame] | 518 | /************************************************************************** |
| 519 | * |
| 520 | * Wake on LAN |
| 521 | * |
| 522 | ************************************************************************** |
| 523 | */ |
| 524 | |
| 525 | static void siena_get_wol(struct efx_nic *efx, struct ethtool_wolinfo *wol) |
| 526 | { |
| 527 | struct siena_nic_data *nic_data = efx->nic_data; |
| 528 | |
| 529 | wol->supported = WAKE_MAGIC; |
| 530 | if (nic_data->wol_filter_id != -1) |
| 531 | wol->wolopts = WAKE_MAGIC; |
| 532 | else |
| 533 | wol->wolopts = 0; |
| 534 | memset(&wol->sopass, 0, sizeof(wol->sopass)); |
| 535 | } |
| 536 | |
| 537 | |
| 538 | static int siena_set_wol(struct efx_nic *efx, u32 type) |
| 539 | { |
| 540 | struct siena_nic_data *nic_data = efx->nic_data; |
| 541 | int rc; |
| 542 | |
| 543 | if (type & ~WAKE_MAGIC) |
| 544 | return -EINVAL; |
| 545 | |
| 546 | if (type & WAKE_MAGIC) { |
| 547 | if (nic_data->wol_filter_id != -1) |
| 548 | efx_mcdi_wol_filter_remove(efx, |
| 549 | nic_data->wol_filter_id); |
Ben Hutchings | 02ebc26 | 2010-12-02 13:48:20 +0000 | [diff] [blame] | 550 | rc = efx_mcdi_wol_filter_set_magic(efx, efx->net_dev->dev_addr, |
Ben Hutchings | afd4aea | 2009-11-29 15:15:25 +0000 | [diff] [blame] | 551 | &nic_data->wol_filter_id); |
| 552 | if (rc) |
| 553 | goto fail; |
| 554 | |
| 555 | pci_wake_from_d3(efx->pci_dev, true); |
| 556 | } else { |
| 557 | rc = efx_mcdi_wol_filter_reset(efx); |
| 558 | nic_data->wol_filter_id = -1; |
| 559 | pci_wake_from_d3(efx->pci_dev, false); |
| 560 | if (rc) |
| 561 | goto fail; |
| 562 | } |
| 563 | |
| 564 | return 0; |
| 565 | fail: |
Ben Hutchings | 62776d0 | 2010-06-23 11:30:07 +0000 | [diff] [blame] | 566 | netif_err(efx, hw, efx->net_dev, "%s failed: type=%d rc=%d\n", |
| 567 | __func__, type, rc); |
Ben Hutchings | afd4aea | 2009-11-29 15:15:25 +0000 | [diff] [blame] | 568 | return rc; |
| 569 | } |
| 570 | |
| 571 | |
| 572 | static void siena_init_wol(struct efx_nic *efx) |
| 573 | { |
| 574 | struct siena_nic_data *nic_data = efx->nic_data; |
| 575 | int rc; |
| 576 | |
| 577 | rc = efx_mcdi_wol_filter_get_magic(efx, &nic_data->wol_filter_id); |
| 578 | |
| 579 | if (rc != 0) { |
| 580 | /* If it failed, attempt to get into a synchronised |
| 581 | * state with MC by resetting any set WoL filters */ |
| 582 | efx_mcdi_wol_filter_reset(efx); |
| 583 | nic_data->wol_filter_id = -1; |
| 584 | } else if (nic_data->wol_filter_id != -1) { |
| 585 | pci_wake_from_d3(efx->pci_dev, true); |
| 586 | } |
| 587 | } |
| 588 | |
Ben Hutchings | f3ad500 | 2012-09-18 02:33:56 +0100 | [diff] [blame] | 589 | /************************************************************************** |
| 590 | * |
| 591 | * MCDI |
| 592 | * |
| 593 | ************************************************************************** |
| 594 | */ |
| 595 | |
| 596 | #define MCDI_PDU(efx) \ |
| 597 | (efx_port_num(efx) ? MC_SMEM_P1_PDU_OFST : MC_SMEM_P0_PDU_OFST) |
| 598 | #define MCDI_DOORBELL(efx) \ |
| 599 | (efx_port_num(efx) ? MC_SMEM_P1_DOORBELL_OFST : MC_SMEM_P0_DOORBELL_OFST) |
| 600 | #define MCDI_STATUS(efx) \ |
| 601 | (efx_port_num(efx) ? MC_SMEM_P1_STATUS_OFST : MC_SMEM_P0_STATUS_OFST) |
| 602 | |
| 603 | static void siena_mcdi_request(struct efx_nic *efx, |
| 604 | const efx_dword_t *hdr, size_t hdr_len, |
| 605 | const efx_dword_t *sdu, size_t sdu_len) |
| 606 | { |
| 607 | unsigned pdu = FR_CZ_MC_TREG_SMEM + MCDI_PDU(efx); |
| 608 | unsigned doorbell = FR_CZ_MC_TREG_SMEM + MCDI_DOORBELL(efx); |
| 609 | unsigned int i; |
| 610 | unsigned int inlen_dw = DIV_ROUND_UP(sdu_len, 4); |
| 611 | |
| 612 | EFX_BUG_ON_PARANOID(hdr_len != 4); |
| 613 | |
| 614 | efx_writed(efx, hdr, pdu); |
| 615 | |
| 616 | for (i = 0; i < inlen_dw; i++) |
| 617 | efx_writed(efx, &sdu[i], pdu + hdr_len + 4 * i); |
| 618 | |
| 619 | /* Ensure the request is written out before the doorbell */ |
| 620 | wmb(); |
| 621 | |
| 622 | /* ring the doorbell with a distinctive value */ |
| 623 | _efx_writed(efx, (__force __le32) 0x45789abc, doorbell); |
| 624 | } |
| 625 | |
| 626 | static bool siena_mcdi_poll_response(struct efx_nic *efx) |
| 627 | { |
| 628 | unsigned int pdu = FR_CZ_MC_TREG_SMEM + MCDI_PDU(efx); |
| 629 | efx_dword_t hdr; |
| 630 | |
| 631 | efx_readd(efx, &hdr, pdu); |
| 632 | |
| 633 | /* All 1's indicates that shared memory is in reset (and is |
| 634 | * not a valid hdr). Wait for it to come out reset before |
| 635 | * completing the command |
| 636 | */ |
| 637 | return EFX_DWORD_FIELD(hdr, EFX_DWORD_0) != 0xffffffff && |
| 638 | EFX_DWORD_FIELD(hdr, MCDI_HEADER_RESPONSE); |
| 639 | } |
| 640 | |
| 641 | static void siena_mcdi_read_response(struct efx_nic *efx, efx_dword_t *outbuf, |
| 642 | size_t offset, size_t outlen) |
| 643 | { |
| 644 | unsigned int pdu = FR_CZ_MC_TREG_SMEM + MCDI_PDU(efx); |
| 645 | unsigned int outlen_dw = DIV_ROUND_UP(outlen, 4); |
| 646 | int i; |
| 647 | |
| 648 | for (i = 0; i < outlen_dw; i++) |
| 649 | efx_readd(efx, &outbuf[i], pdu + offset + 4 * i); |
| 650 | } |
| 651 | |
| 652 | static int siena_mcdi_poll_reboot(struct efx_nic *efx) |
| 653 | { |
| 654 | unsigned int addr = FR_CZ_MC_TREG_SMEM + MCDI_STATUS(efx); |
| 655 | efx_dword_t reg; |
| 656 | u32 value; |
| 657 | |
| 658 | efx_readd(efx, ®, addr); |
| 659 | value = EFX_DWORD_FIELD(reg, EFX_DWORD_0); |
| 660 | |
| 661 | if (value == 0) |
| 662 | return 0; |
| 663 | |
| 664 | EFX_ZERO_DWORD(reg); |
| 665 | efx_writed(efx, ®, addr); |
| 666 | |
| 667 | if (value == MC_STATUS_DWORD_ASSERT) |
| 668 | return -EINTR; |
| 669 | else |
| 670 | return -EIO; |
| 671 | } |
Ben Hutchings | afd4aea | 2009-11-29 15:15:25 +0000 | [diff] [blame] | 672 | |
| 673 | /************************************************************************** |
| 674 | * |
| 675 | * Revision-dependent attributes used by efx.c and nic.c |
| 676 | * |
| 677 | ************************************************************************** |
| 678 | */ |
| 679 | |
stephen hemminger | 6c8c251 | 2011-04-14 05:50:12 +0000 | [diff] [blame] | 680 | const struct efx_nic_type siena_a0_nic_type = { |
Ben Hutchings | b105798 | 2012-09-19 00:56:47 +0100 | [diff] [blame] | 681 | .mem_map_size = siena_mem_map_size, |
Ben Hutchings | afd4aea | 2009-11-29 15:15:25 +0000 | [diff] [blame] | 682 | .probe = siena_probe_nic, |
| 683 | .remove = siena_remove_nic, |
| 684 | .init = siena_init_nic, |
Ben Hutchings | 28e47c4 | 2012-02-15 01:58:49 +0000 | [diff] [blame] | 685 | .dimension_resources = siena_dimension_resources, |
Ben Hutchings | afd4aea | 2009-11-29 15:15:25 +0000 | [diff] [blame] | 686 | .fini = efx_port_dummy_op_void, |
Alexandre Rames | 626950d | 2013-01-14 17:20:22 +0000 | [diff] [blame] | 687 | #ifdef CONFIG_EEH |
| 688 | .monitor = siena_monitor, |
| 689 | #else |
Ben Hutchings | afd4aea | 2009-11-29 15:15:25 +0000 | [diff] [blame] | 690 | .monitor = NULL, |
Alexandre Rames | 626950d | 2013-01-14 17:20:22 +0000 | [diff] [blame] | 691 | #endif |
Ben Hutchings | 6bff861 | 2012-09-18 02:33:52 +0100 | [diff] [blame] | 692 | .map_reset_reason = efx_mcdi_map_reset_reason, |
Ben Hutchings | 0e2a9c7 | 2011-06-24 20:50:07 +0100 | [diff] [blame] | 693 | .map_reset_flags = siena_map_reset_flags, |
Ben Hutchings | 6bff861 | 2012-09-18 02:33:52 +0100 | [diff] [blame] | 694 | .reset = efx_mcdi_reset, |
Ben Hutchings | 43f775b2 | 2012-09-18 02:33:54 +0100 | [diff] [blame] | 695 | .probe_port = efx_mcdi_port_probe, |
| 696 | .remove_port = efx_mcdi_port_remove, |
Ben Hutchings | e42c3d8 | 2013-05-27 16:52:54 +0100 | [diff] [blame] | 697 | .fini_dmaq = efx_farch_fini_dmaq, |
Ben Hutchings | d5e8cc6 | 2012-09-06 16:52:31 +0100 | [diff] [blame] | 698 | .prepare_flush = siena_prepare_flush, |
| 699 | .finish_flush = siena_finish_flush, |
Ben Hutchings | afd4aea | 2009-11-29 15:15:25 +0000 | [diff] [blame] | 700 | .update_stats = siena_update_nic_stats, |
Ben Hutchings | 43f775b2 | 2012-09-18 02:33:54 +0100 | [diff] [blame] | 701 | .start_stats = efx_mcdi_mac_start_stats, |
| 702 | .stop_stats = efx_mcdi_mac_stop_stats, |
Ben Hutchings | afd4aea | 2009-11-29 15:15:25 +0000 | [diff] [blame] | 703 | .set_id_led = efx_mcdi_set_id_led, |
| 704 | .push_irq_moderation = siena_push_irq_moderation, |
Ben Hutchings | 319ec64 | 2012-10-08 16:56:18 +0100 | [diff] [blame] | 705 | .reconfigure_mac = siena_mac_reconfigure, |
Ben Hutchings | 710b208 | 2011-09-03 00:15:00 +0100 | [diff] [blame] | 706 | .check_mac_fault = efx_mcdi_mac_check_fault, |
Ben Hutchings | 43f775b2 | 2012-09-18 02:33:54 +0100 | [diff] [blame] | 707 | .reconfigure_port = efx_mcdi_port_reconfigure, |
Ben Hutchings | afd4aea | 2009-11-29 15:15:25 +0000 | [diff] [blame] | 708 | .get_wol = siena_get_wol, |
| 709 | .set_wol = siena_set_wol, |
| 710 | .resume_wol = siena_init_wol, |
Ben Hutchings | d4f2cec | 2012-07-04 03:58:33 +0100 | [diff] [blame] | 711 | .test_chip = siena_test_chip, |
Ben Hutchings | 2e80340 | 2010-02-03 09:31:01 +0000 | [diff] [blame] | 712 | .test_nvram = efx_mcdi_nvram_test_all, |
Ben Hutchings | f3ad500 | 2012-09-18 02:33:56 +0100 | [diff] [blame] | 713 | .mcdi_request = siena_mcdi_request, |
| 714 | .mcdi_poll_response = siena_mcdi_poll_response, |
| 715 | .mcdi_read_response = siena_mcdi_read_response, |
| 716 | .mcdi_poll_reboot = siena_mcdi_poll_reboot, |
Ben Hutchings | 86094f7 | 2013-08-21 19:51:04 +0100 | [diff] [blame] | 717 | .irq_enable_master = efx_farch_irq_enable_master, |
| 718 | .irq_test_generate = efx_farch_irq_test_generate, |
| 719 | .irq_disable_non_ev = efx_farch_irq_disable_master, |
| 720 | .irq_handle_msi = efx_farch_msi_interrupt, |
| 721 | .irq_handle_legacy = efx_farch_legacy_interrupt, |
| 722 | .tx_probe = efx_farch_tx_probe, |
| 723 | .tx_init = efx_farch_tx_init, |
| 724 | .tx_remove = efx_farch_tx_remove, |
| 725 | .tx_write = efx_farch_tx_write, |
| 726 | .rx_push_indir_table = efx_farch_rx_push_indir_table, |
| 727 | .rx_probe = efx_farch_rx_probe, |
| 728 | .rx_init = efx_farch_rx_init, |
| 729 | .rx_remove = efx_farch_rx_remove, |
| 730 | .rx_write = efx_farch_rx_write, |
| 731 | .rx_defer_refill = efx_farch_rx_defer_refill, |
| 732 | .ev_probe = efx_farch_ev_probe, |
| 733 | .ev_init = efx_farch_ev_init, |
| 734 | .ev_fini = efx_farch_ev_fini, |
| 735 | .ev_remove = efx_farch_ev_remove, |
| 736 | .ev_process = efx_farch_ev_process, |
| 737 | .ev_read_ack = efx_farch_ev_read_ack, |
| 738 | .ev_test_generate = efx_farch_ev_test_generate, |
Ben Hutchings | add7247 | 2012-11-08 01:46:53 +0000 | [diff] [blame^] | 739 | .filter_table_probe = efx_farch_filter_table_probe, |
| 740 | .filter_table_restore = efx_farch_filter_table_restore, |
| 741 | .filter_table_remove = efx_farch_filter_table_remove, |
| 742 | .filter_update_rx_scatter = efx_farch_filter_update_rx_scatter, |
| 743 | .filter_insert = efx_farch_filter_insert, |
| 744 | .filter_remove_safe = efx_farch_filter_remove_safe, |
| 745 | .filter_get_safe = efx_farch_filter_get_safe, |
| 746 | .filter_clear_rx = efx_farch_filter_clear_rx, |
| 747 | .filter_count_rx_used = efx_farch_filter_count_rx_used, |
| 748 | .filter_get_rx_id_limit = efx_farch_filter_get_rx_id_limit, |
| 749 | .filter_get_rx_ids = efx_farch_filter_get_rx_ids, |
| 750 | #ifdef CONFIG_RFS_ACCEL |
| 751 | .filter_rfs_insert = efx_farch_filter_rfs_insert, |
| 752 | .filter_rfs_expire_one = efx_farch_filter_rfs_expire_one, |
| 753 | #endif |
Ben Hutchings | afd4aea | 2009-11-29 15:15:25 +0000 | [diff] [blame] | 754 | |
| 755 | .revision = EFX_REV_SIENA_A0, |
Ben Hutchings | afd4aea | 2009-11-29 15:15:25 +0000 | [diff] [blame] | 756 | .txd_ptr_tbl_base = FR_BZ_TX_DESC_PTR_TBL, |
| 757 | .rxd_ptr_tbl_base = FR_BZ_RX_DESC_PTR_TBL, |
| 758 | .buf_tbl_base = FR_BZ_BUF_FULL_TBL, |
| 759 | .evq_ptr_tbl_base = FR_BZ_EVQ_PTR_TBL, |
| 760 | .evq_rptr_tbl_base = FR_BZ_EVQ_RPTR, |
| 761 | .max_dma_mask = DMA_BIT_MASK(FSF_AZ_TX_KER_BUF_ADDR_WIDTH), |
Ben Hutchings | 39c9cf0 | 2010-06-23 11:31:28 +0000 | [diff] [blame] | 762 | .rx_buffer_hash_size = 0x10, |
Ben Hutchings | afd4aea | 2009-11-29 15:15:25 +0000 | [diff] [blame] | 763 | .rx_buffer_padding = 0, |
Ben Hutchings | 85740cdf | 2013-01-29 23:33:15 +0000 | [diff] [blame] | 764 | .can_rx_scatter = true, |
Ben Hutchings | afd4aea | 2009-11-29 15:15:25 +0000 | [diff] [blame] | 765 | .max_interrupt_mode = EFX_INT_MODE_MSIX, |
Ben Hutchings | cc180b6 | 2011-12-08 19:51:47 +0000 | [diff] [blame] | 766 | .timer_period_max = 1 << FRF_CZ_TC_TIMER_VAL_WIDTH, |
Ben Hutchings | 39c9cf0 | 2010-06-23 11:31:28 +0000 | [diff] [blame] | 767 | .offload_features = (NETIF_F_IP_CSUM | NETIF_F_IPV6_CSUM | |
Ben Hutchings | b4187e4 | 2010-09-20 08:43:42 +0000 | [diff] [blame] | 768 | NETIF_F_RXHASH | NETIF_F_NTUPLE), |
Ben Hutchings | df2cd8a | 2012-09-19 00:56:18 +0100 | [diff] [blame] | 769 | .mcdi_max_ver = 1, |
Ben Hutchings | add7247 | 2012-11-08 01:46:53 +0000 | [diff] [blame^] | 770 | .max_rx_ip_filters = FR_BZ_RX_FILTER_TBL0_ROWS, |
Ben Hutchings | afd4aea | 2009-11-29 15:15:25 +0000 | [diff] [blame] | 771 | }; |