aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/sfc/siena.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/net/sfc/siena.c')
-rw-r--r--drivers/net/sfc/siena.c67
1 files changed, 28 insertions, 39 deletions
diff --git a/drivers/net/sfc/siena.c b/drivers/net/sfc/siena.c
index 3fab030f8ab5..fb4721f780ff 100644
--- a/drivers/net/sfc/siena.c
+++ b/drivers/net/sfc/siena.c
@@ -1,7 +1,7 @@
1/**************************************************************************** 1/****************************************************************************
2 * Driver for Solarflare Solarstorm network controllers and boards 2 * Driver for Solarflare Solarstorm network controllers and boards
3 * Copyright 2005-2006 Fen Systems Ltd. 3 * Copyright 2005-2006 Fen Systems Ltd.
4 * Copyright 2006-2009 Solarflare Communications Inc. 4 * Copyright 2006-2010 Solarflare Communications Inc.
5 * 5 *
6 * This program is free software; you can redistribute it and/or modify it 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 7 * under the terms of the GNU General Public License version 2 as published
@@ -129,7 +129,7 @@ static int siena_probe_port(struct efx_nic *efx)
129 return 0; 129 return 0;
130} 130}
131 131
132void siena_remove_port(struct efx_nic *efx) 132static void siena_remove_port(struct efx_nic *efx)
133{ 133{
134 efx->phy_op->remove(efx); 134 efx->phy_op->remove(efx);
135 efx_nic_free_buffer(efx, &efx->stats_buffer); 135 efx_nic_free_buffer(efx, &efx->stats_buffer);
@@ -194,13 +194,7 @@ static int siena_reset_hw(struct efx_nic *efx, enum reset_type method)
194 194
195static int siena_probe_nvconfig(struct efx_nic *efx) 195static int siena_probe_nvconfig(struct efx_nic *efx)
196{ 196{
197 int rc; 197 return efx_mcdi_get_board_cfg(efx, efx->net_dev->perm_addr, NULL);
198
199 rc = efx_mcdi_get_board_cfg(efx, efx->mac_address, NULL);
200 if (rc)
201 return rc;
202
203 return 0;
204} 198}
205 199
206static int siena_probe_nic(struct efx_nic *efx) 200static int siena_probe_nic(struct efx_nic *efx)
@@ -226,19 +220,26 @@ static int siena_probe_nic(struct efx_nic *efx)
226 efx_reado(efx, &reg, FR_AZ_CS_DEBUG); 220 efx_reado(efx, &reg, FR_AZ_CS_DEBUG);
227 efx->net_dev->dev_id = EFX_OWORD_FIELD(reg, FRF_CZ_CS_PORT_NUM) - 1; 221 efx->net_dev->dev_id = EFX_OWORD_FIELD(reg, FRF_CZ_CS_PORT_NUM) - 1;
228 222
223 /* Initialise MCDI */
224 nic_data->mcdi_smem = ioremap_nocache(efx->membase_phys +
225 FR_CZ_MC_TREG_SMEM,
226 FR_CZ_MC_TREG_SMEM_STEP *
227 FR_CZ_MC_TREG_SMEM_ROWS);
228 if (!nic_data->mcdi_smem) {
229 netif_err(efx, probe, efx->net_dev,
230 "could not map MCDI at %llx+%x\n",
231 (unsigned long long)efx->membase_phys +
232 FR_CZ_MC_TREG_SMEM,
233 FR_CZ_MC_TREG_SMEM_STEP * FR_CZ_MC_TREG_SMEM_ROWS);
234 rc = -ENOMEM;
235 goto fail1;
236 }
229 efx_mcdi_init(efx); 237 efx_mcdi_init(efx);
230 238
231 /* Recover from a failed assertion before probing */ 239 /* Recover from a failed assertion before probing */
232 rc = efx_mcdi_handle_assertion(efx); 240 rc = efx_mcdi_handle_assertion(efx);
233 if (rc) 241 if (rc)
234 goto fail1; 242 goto fail2;
235
236 rc = efx_mcdi_fwver(efx, &nic_data->fw_version, &nic_data->fw_build);
237 if (rc) {
238 netif_err(efx, probe, efx->net_dev,
239 "Failed to read MCPU firmware version - rc %d\n", rc);
240 goto fail1; /* MCPU absent? */
241 }
242 243
243 /* Let the BMC know that the driver is now in charge of link and 244 /* Let the BMC know that the driver is now in charge of link and
244 * filter settings. We must do this before we reset the NIC */ 245 * filter settings. We must do this before we reset the NIC */
@@ -293,6 +294,7 @@ fail4:
293fail3: 294fail3:
294 efx_mcdi_drv_attach(efx, false, NULL); 295 efx_mcdi_drv_attach(efx, false, NULL);
295fail2: 296fail2:
297 iounmap(nic_data->mcdi_smem);
296fail1: 298fail1:
297 kfree(efx->nic_data); 299 kfree(efx->nic_data);
298 return rc; 300 return rc;
@@ -354,11 +356,6 @@ static int siena_init_nic(struct efx_nic *efx)
354 FRF_CZ_RX_RSS_IPV6_TKEY_HI_WIDTH / 8); 356 FRF_CZ_RX_RSS_IPV6_TKEY_HI_WIDTH / 8);
355 efx_writeo(efx, &temp, FR_CZ_RX_RSS_IPV6_REG3); 357 efx_writeo(efx, &temp, FR_CZ_RX_RSS_IPV6_REG3);
356 358
357 if (efx_nic_rx_xoff_thresh >= 0 || efx_nic_rx_xon_thresh >= 0)
358 /* No MCDI operation has been defined to set thresholds */
359 netif_err(efx, hw, efx->net_dev,
360 "ignoring RX flow control thresholds\n");
361
362 /* Enable event logging */ 359 /* Enable event logging */
363 rc = efx_mcdi_log_ctrl(efx, true, false, 0); 360 rc = efx_mcdi_log_ctrl(efx, true, false, 0);
364 if (rc) 361 if (rc)
@@ -377,6 +374,8 @@ static int siena_init_nic(struct efx_nic *efx)
377 374
378static void siena_remove_nic(struct efx_nic *efx) 375static void siena_remove_nic(struct efx_nic *efx)
379{ 376{
377 struct siena_nic_data *nic_data = efx->nic_data;
378
380 efx_nic_free_buffer(efx, &efx->irq_status); 379 efx_nic_free_buffer(efx, &efx->irq_status);
381 380
382 siena_reset_hw(efx, RESET_TYPE_ALL); 381 siena_reset_hw(efx, RESET_TYPE_ALL);
@@ -386,7 +385,8 @@ static void siena_remove_nic(struct efx_nic *efx)
386 efx_mcdi_drv_attach(efx, false, NULL); 385 efx_mcdi_drv_attach(efx, false, NULL);
387 386
388 /* Tear down the private nic state */ 387 /* Tear down the private nic state */
389 kfree(efx->nic_data); 388 iounmap(nic_data->mcdi_smem);
389 kfree(nic_data);
390 efx->nic_data = NULL; 390 efx->nic_data = NULL;
391} 391}
392 392
@@ -450,7 +450,7 @@ static int siena_try_update_nic_stats(struct efx_nic *efx)
450 mac_stats->rx_bad_bytes); 450 mac_stats->rx_bad_bytes);
451 MAC_STAT(rx_packets, RX_PKTS); 451 MAC_STAT(rx_packets, RX_PKTS);
452 MAC_STAT(rx_good, RX_GOOD_PKTS); 452 MAC_STAT(rx_good, RX_GOOD_PKTS);
453 mac_stats->rx_bad = mac_stats->rx_packets - mac_stats->rx_good; 453 MAC_STAT(rx_bad, RX_BAD_FCS_PKTS);
454 MAC_STAT(rx_pause, RX_PAUSE_PKTS); 454 MAC_STAT(rx_pause, RX_PAUSE_PKTS);
455 MAC_STAT(rx_control, RX_CONTROL_PKTS); 455 MAC_STAT(rx_control, RX_CONTROL_PKTS);
456 MAC_STAT(rx_unicast, RX_UNICAST_PKTS); 456 MAC_STAT(rx_unicast, RX_UNICAST_PKTS);
@@ -520,16 +520,6 @@ static void siena_stop_nic_stats(struct efx_nic *efx)
520 efx_mcdi_mac_stats(efx, efx->stats_buffer.dma_addr, 0, 0, 0); 520 efx_mcdi_mac_stats(efx, efx->stats_buffer.dma_addr, 0, 0, 0);
521} 521}
522 522
523void siena_print_fwver(struct efx_nic *efx, char *buf, size_t len)
524{
525 struct siena_nic_data *nic_data = efx->nic_data;
526 snprintf(buf, len, "%u.%u.%u.%u",
527 (unsigned int)(nic_data->fw_version >> 48),
528 (unsigned int)(nic_data->fw_version >> 32 & 0xffff),
529 (unsigned int)(nic_data->fw_version >> 16 & 0xffff),
530 (unsigned int)(nic_data->fw_version & 0xffff));
531}
532
533/************************************************************************** 523/**************************************************************************
534 * 524 *
535 * Wake on LAN 525 * Wake on LAN
@@ -562,7 +552,7 @@ static int siena_set_wol(struct efx_nic *efx, u32 type)
562 if (nic_data->wol_filter_id != -1) 552 if (nic_data->wol_filter_id != -1)
563 efx_mcdi_wol_filter_remove(efx, 553 efx_mcdi_wol_filter_remove(efx,
564 nic_data->wol_filter_id); 554 nic_data->wol_filter_id);
565 rc = efx_mcdi_wol_filter_set_magic(efx, efx->mac_address, 555 rc = efx_mcdi_wol_filter_set_magic(efx, efx->net_dev->dev_addr,
566 &nic_data->wol_filter_id); 556 &nic_data->wol_filter_id);
567 if (rc) 557 if (rc)
568 goto fail; 558 goto fail;
@@ -609,7 +599,7 @@ static void siena_init_wol(struct efx_nic *efx)
609 ************************************************************************** 599 **************************************************************************
610 */ 600 */
611 601
612struct efx_nic_type siena_a0_nic_type = { 602const struct efx_nic_type siena_a0_nic_type = {
613 .probe = siena_probe_nic, 603 .probe = siena_probe_nic,
614 .remove = siena_remove_nic, 604 .remove = siena_remove_nic,
615 .init = siena_init_nic, 605 .init = siena_init_nic,
@@ -634,8 +624,7 @@ struct efx_nic_type siena_a0_nic_type = {
634 .default_mac_ops = &efx_mcdi_mac_operations, 624 .default_mac_ops = &efx_mcdi_mac_operations,
635 625
636 .revision = EFX_REV_SIENA_A0, 626 .revision = EFX_REV_SIENA_A0,
637 .mem_map_size = (FR_CZ_MC_TREG_SMEM + 627 .mem_map_size = FR_CZ_MC_TREG_SMEM, /* MC_TREG_SMEM mapped separately */
638 FR_CZ_MC_TREG_SMEM_STEP * FR_CZ_MC_TREG_SMEM_ROWS),
639 .txd_ptr_tbl_base = FR_BZ_TX_DESC_PTR_TBL, 628 .txd_ptr_tbl_base = FR_BZ_TX_DESC_PTR_TBL,
640 .rxd_ptr_tbl_base = FR_BZ_RX_DESC_PTR_TBL, 629 .rxd_ptr_tbl_base = FR_BZ_RX_DESC_PTR_TBL,
641 .buf_tbl_base = FR_BZ_BUF_FULL_TBL, 630 .buf_tbl_base = FR_BZ_BUF_FULL_TBL,
@@ -651,6 +640,6 @@ struct efx_nic_type siena_a0_nic_type = {
651 .tx_dc_base = 0x88000, 640 .tx_dc_base = 0x88000,
652 .rx_dc_base = 0x68000, 641 .rx_dc_base = 0x68000,
653 .offload_features = (NETIF_F_IP_CSUM | NETIF_F_IPV6_CSUM | 642 .offload_features = (NETIF_F_IP_CSUM | NETIF_F_IPV6_CSUM |
654 NETIF_F_RXHASH), 643 NETIF_F_RXHASH | NETIF_F_NTUPLE),
655 .reset_world_flags = ETH_RESET_MGMT << ETH_RESET_SHARED_SHIFT, 644 .reset_world_flags = ETH_RESET_MGMT << ETH_RESET_SHARED_SHIFT,
656}; 645};