Skip to content

Commit

Permalink
sfc: Move Falcon NIC operations to efx_nic_type
Browse files Browse the repository at this point in the history
This is preparation for adding differing implementations for new NICs.

Signed-off-by: Ben Hutchings <bhutchings@solarflare.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
Ben Hutchings authored and David S. Miller committed Nov 30, 2009
1 parent 4b0d29d commit ef2b90e
Show file tree
Hide file tree
Showing 6 changed files with 105 additions and 63 deletions.
44 changes: 24 additions & 20 deletions drivers/net/sfc/efx.c
Original file line number Diff line number Diff line change
Expand Up @@ -274,14 +274,14 @@ static int efx_poll(struct napi_struct *napi, int budget)
irq_adapt_low_thresh)) {
if (channel->irq_moderation > 1) {
channel->irq_moderation -= 1;
falcon_set_int_moderation(channel);
efx->type->push_irq_moderation(channel);
}
} else if (unlikely(channel->irq_mod_score >
irq_adapt_high_thresh)) {
if (channel->irq_moderation <
efx->irq_rx_moderation) {
channel->irq_moderation += 1;
falcon_set_int_moderation(channel);
efx->type->push_irq_moderation(channel);
}
}
channel->irq_count = 0;
Expand Down Expand Up @@ -637,7 +637,7 @@ void __efx_reconfigure_port(struct efx_nic *efx)
netif_addr_unlock_bh(efx->net_dev);
}

falcon_stop_nic_stats(efx);
efx->type->stop_stats(efx);
falcon_deconfigure_mac_wrapper(efx);

/* Reconfigure the PHY, disabling transmit in mac level loopback. */
Expand All @@ -652,7 +652,7 @@ void __efx_reconfigure_port(struct efx_nic *efx)

efx->mac_op->reconfigure(efx);

falcon_start_nic_stats(efx);
efx->type->start_stats(efx);

/* Inform kernel of loss/gain of carrier */
efx_link_status_changed(efx);
Expand Down Expand Up @@ -684,7 +684,7 @@ static void efx_mac_work(struct work_struct *data)

mutex_lock(&efx->mac_lock);
if (efx->port_enabled) {
falcon_push_multicast_hash(efx);
efx->type->push_multicast_hash(efx);
efx->mac_op->reconfigure(efx);
}
mutex_unlock(&efx->mac_lock);
Expand All @@ -696,8 +696,8 @@ static int efx_probe_port(struct efx_nic *efx)

EFX_LOG(efx, "create port\n");

/* Connect up MAC/PHY operations table and read MAC address */
rc = falcon_probe_port(efx);
/* Connect up MAC/PHY operations table */
rc = efx->type->probe_port(efx);
if (rc)
goto err;

Expand Down Expand Up @@ -765,7 +765,7 @@ static void efx_start_port(struct efx_nic *efx)

/* efx_mac_work() might have been scheduled after efx_stop_port(),
* and then cancelled by efx_flush_all() */
falcon_push_multicast_hash(efx);
efx->type->push_multicast_hash(efx);
efx->mac_op->reconfigure(efx);

mutex_unlock(&efx->mac_lock);
Expand Down Expand Up @@ -805,7 +805,7 @@ static void efx_remove_port(struct efx_nic *efx)
{
EFX_LOG(efx, "destroying port\n");

falcon_remove_port(efx);
efx->type->remove_port(efx);
}

/**************************************************************************
Expand Down Expand Up @@ -1042,7 +1042,7 @@ static int efx_probe_nic(struct efx_nic *efx)
EFX_LOG(efx, "creating NIC\n");

/* Carry out hardware-type specific initialisation */
rc = falcon_probe_nic(efx);
rc = efx->type->probe(efx);
if (rc)
return rc;

Expand All @@ -1063,7 +1063,7 @@ static void efx_remove_nic(struct efx_nic *efx)
EFX_LOG(efx, "destroying NIC\n");

efx_remove_interrupts(efx);
falcon_remove_nic(efx);
efx->type->remove(efx);
}

/**************************************************************************
Expand Down Expand Up @@ -1145,12 +1145,12 @@ static void efx_start_all(struct efx_nic *efx)

falcon_enable_interrupts(efx);

/* Start hardware monitor if we're in RUNNING */
if (efx->state == STATE_RUNNING)
/* Start the hardware monitor (if there is one) if we're in RUNNING */
if (efx->state == STATE_RUNNING && efx->type->monitor != NULL)
queue_delayed_work(efx->workqueue, &efx->monitor_work,
efx_monitor_interval);

falcon_start_nic_stats(efx);
efx->type->start_stats(efx);
}

/* Flush all delayed work. Should only be called when no more delayed work
Expand Down Expand Up @@ -1186,7 +1186,7 @@ static void efx_stop_all(struct efx_nic *efx)
if (!efx->port_enabled)
return;

falcon_stop_nic_stats(efx);
efx->type->stop_stats(efx);

/* Disable interrupts and wait for ISR to complete */
falcon_disable_interrupts(efx);
Expand Down Expand Up @@ -1284,6 +1284,7 @@ static void efx_monitor(struct work_struct *data)

EFX_TRACE(efx, "hardware monitor executing on CPU %d\n",
raw_smp_processor_id());
BUG_ON(efx->type->monitor == NULL);

/* If the mac_lock is already held then it is likely a port
* reconfiguration is already in place, which will likely do
Expand All @@ -1292,7 +1293,7 @@ static void efx_monitor(struct work_struct *data)
goto out_requeue;
if (!efx->port_enabled)
goto out_unlock;
falcon_monitor(efx);
efx->type->monitor(efx);

out_unlock:
mutex_unlock(&efx->mac_lock);
Expand Down Expand Up @@ -1430,7 +1431,7 @@ static struct net_device_stats *efx_net_stats(struct net_device *net_dev)
struct net_device_stats *stats = &net_dev->stats;

spin_lock_bh(&efx->stats_lock);
falcon_update_nic_stats(efx);
efx->type->update_stats(efx);
spin_unlock_bh(&efx->stats_lock);

stats->rx_packets = mac_stats->rx_packets;
Expand Down Expand Up @@ -1695,6 +1696,7 @@ void efx_reset_down(struct efx_nic *efx, enum reset_type method,
efx_fini_channels(efx);
if (efx->port_initialized && method != RESET_TYPE_INVISIBLE)
efx->phy_op->fini(efx);
efx->type->fini(efx);
}

/* This function will always ensure that the locks acquired in
Expand All @@ -1709,7 +1711,7 @@ int efx_reset_up(struct efx_nic *efx, enum reset_type method,

EFX_ASSERT_RESET_SERIALISED(efx);

rc = falcon_init_nic(efx);
rc = efx->type->init(efx);
if (rc) {
EFX_ERR(efx, "failed to initialise NIC\n");
ok = false;
Expand Down Expand Up @@ -1769,7 +1771,7 @@ static int efx_reset(struct efx_nic *efx)

efx_reset_down(efx, method, &ecmd);

rc = falcon_reset_hw(efx, method);
rc = efx->type->reset(efx, method);
if (rc) {
EFX_ERR(efx, "failed to reset hardware\n");
goto out_disable;
Expand Down Expand Up @@ -2005,6 +2007,7 @@ static void efx_pci_remove_main(struct efx_nic *efx)
falcon_fini_interrupt(efx);
efx_fini_channels(efx);
efx_fini_port(efx);
efx->type->fini(efx);
efx_fini_napi(efx);
efx_remove_all(efx);
}
Expand Down Expand Up @@ -2064,7 +2067,7 @@ static int efx_pci_probe_main(struct efx_nic *efx)
if (rc)
goto fail2;

rc = falcon_init_nic(efx);
rc = efx->type->init(efx);
if (rc) {
EFX_ERR(efx, "failed to initialise NIC\n");
goto fail3;
Expand All @@ -2088,6 +2091,7 @@ static int efx_pci_probe_main(struct efx_nic *efx)
efx_fini_channels(efx);
efx_fini_port(efx);
fail4:
efx->type->fini(efx);
fail3:
efx_fini_napi(efx);
fail2:
Expand Down
2 changes: 1 addition & 1 deletion drivers/net/sfc/ethtool.c
Original file line number Diff line number Diff line change
Expand Up @@ -649,7 +649,7 @@ static int efx_ethtool_set_coalesce(struct net_device *net_dev,

efx_init_irq_moderation(efx, tx_usecs, rx_usecs, adaptive);
efx_for_each_channel(channel, efx)
falcon_set_int_moderation(channel);
efx->type->push_irq_moderation(channel);

return 0;
}
Expand Down
79 changes: 50 additions & 29 deletions drivers/net/sfc/falcon.c
Original file line number Diff line number Diff line change
Expand Up @@ -1041,7 +1041,7 @@ int falcon_process_eventq(struct efx_channel *channel, int rx_quota)
return rx_packets;
}

void falcon_set_int_moderation(struct efx_channel *channel)
static void falcon_push_irq_moderation(struct efx_channel *channel)
{
efx_dword_t timer_cmd;
struct efx_nic *efx = channel->efx;
Expand Down Expand Up @@ -1098,7 +1098,7 @@ void falcon_init_eventq(struct efx_channel *channel)
efx_writeo_table(efx, &evq_ptr, efx->type->evq_ptr_tbl_base,
channel->channel);

falcon_set_int_moderation(channel);
falcon_push_irq_moderation(channel);
}

void falcon_fini_eventq(struct efx_channel *channel)
Expand Down Expand Up @@ -1212,7 +1212,8 @@ int falcon_flush_queues(struct efx_nic *efx)
struct efx_tx_queue *tx_queue;
int i, tx_pending, rx_pending;

falcon_prepare_flush(efx);
/* If necessary prepare the hardware for flushing */
efx->type->prepare_flush(efx);

/* Flush all tx queues in parallel */
efx_for_each_tx_queue(tx_queue, efx)
Expand Down Expand Up @@ -1825,6 +1826,16 @@ int falcon_spi_write(const struct efx_spi_device *spi, loff_t start,
**************************************************************************
*/

static void falcon_push_multicast_hash(struct efx_nic *efx)
{
union efx_multicast_hash *mc_hash = &efx->multicast_hash;

WARN_ON(!mutex_is_locked(&efx->mac_lock));

efx_writeo(efx, &mc_hash->oword[0], FR_AB_MAC_MC_HASH_REG0);
efx_writeo(efx, &mc_hash->oword[1], FR_AB_MAC_MC_HASH_REG1);
}

static int falcon_reset_macs(struct efx_nic *efx)
{
efx_oword_t reg;
Expand Down Expand Up @@ -2240,7 +2251,7 @@ int falcon_switch_mac(struct efx_nic *efx)
}

/* This call is responsible for hooking in the MAC and PHY operations */
int falcon_probe_port(struct efx_nic *efx)
static int falcon_probe_port(struct efx_nic *efx)
{
int rc;

Expand Down Expand Up @@ -2299,29 +2310,11 @@ int falcon_probe_port(struct efx_nic *efx)
return 0;
}

void falcon_remove_port(struct efx_nic *efx)
static void falcon_remove_port(struct efx_nic *efx)
{
falcon_free_buffer(efx, &efx->stats_buffer);
}

/**************************************************************************
*
* Multicast filtering
*
**************************************************************************
*/

void falcon_push_multicast_hash(struct efx_nic *efx)
{
union efx_multicast_hash *mc_hash = &efx->multicast_hash;

WARN_ON(!mutex_is_locked(&efx->mac_lock));

efx_writeo(efx, &mc_hash->oword[0], FR_AB_MAC_MC_HASH_REG0);
efx_writeo(efx, &mc_hash->oword[1], FR_AB_MAC_MC_HASH_REG1);
}


/**************************************************************************
*
* Falcon test code
Expand Down Expand Up @@ -2503,7 +2496,7 @@ int falcon_test_registers(struct efx_nic *efx)

/* Resets NIC to known state. This routine must be called in process
* context and is allowed to sleep. */
int falcon_reset_hw(struct efx_nic *efx, enum reset_type method)
static int falcon_reset_hw(struct efx_nic *efx, enum reset_type method)
{
struct falcon_nic_data *nic_data = efx->nic_data;
efx_oword_t glb_ctl_reg_ker;
Expand Down Expand Up @@ -2592,7 +2585,7 @@ int falcon_reset_hw(struct efx_nic *efx, enum reset_type method)
return rc;
}

void falcon_monitor(struct efx_nic *efx)
static void falcon_monitor(struct efx_nic *efx)
{
bool link_changed;
int rc;
Expand Down Expand Up @@ -2850,7 +2843,7 @@ static void falcon_probe_spi_devices(struct efx_nic *efx)
large_eeprom_type);
}

int falcon_probe_nic(struct efx_nic *efx)
static int falcon_probe_nic(struct efx_nic *efx)
{
struct falcon_nic_data *nic_data;
struct falcon_board *board;
Expand Down Expand Up @@ -3006,7 +2999,7 @@ static void falcon_init_rx_cfg(struct efx_nic *efx)
* defining the descriptor cache sizes and number of RSS channels.
* It does not set up any buffers, descriptor rings or event queues.
*/
int falcon_init_nic(struct efx_nic *efx)
static int falcon_init_nic(struct efx_nic *efx)
{
efx_oword_t temp;
int rc;
Expand Down Expand Up @@ -3139,7 +3132,7 @@ int falcon_init_nic(struct efx_nic *efx)
return 0;
}

void falcon_remove_nic(struct efx_nic *efx)
static void falcon_remove_nic(struct efx_nic *efx)
{
struct falcon_nic_data *nic_data = efx->nic_data;
struct falcon_board *board = falcon_board(efx);
Expand Down Expand Up @@ -3168,7 +3161,7 @@ void falcon_remove_nic(struct efx_nic *efx)
efx->nic_data = NULL;
}

void falcon_update_nic_stats(struct efx_nic *efx)
static void falcon_update_nic_stats(struct efx_nic *efx)
{
struct falcon_nic_data *nic_data = efx->nic_data;
efx_oword_t cnt;
Expand Down Expand Up @@ -3232,6 +3225,20 @@ void falcon_stop_nic_stats(struct efx_nic *efx)
*/

struct efx_nic_type falcon_a1_nic_type = {
.probe = falcon_probe_nic,
.remove = falcon_remove_nic,
.init = falcon_init_nic,
.fini = efx_port_dummy_op_void,
.monitor = falcon_monitor,
.reset = falcon_reset_hw,
.probe_port = falcon_probe_port,
.remove_port = falcon_remove_port,
.prepare_flush = falcon_prepare_flush,
.update_stats = falcon_update_nic_stats,
.start_stats = falcon_start_nic_stats,
.stop_stats = falcon_stop_nic_stats,
.push_irq_moderation = falcon_push_irq_moderation,
.push_multicast_hash = falcon_push_multicast_hash,
.default_mac_ops = &falcon_xmac_operations,

.revision = EFX_REV_FALCON_A1,
Expand All @@ -3250,6 +3257,20 @@ struct efx_nic_type falcon_a1_nic_type = {
};

struct efx_nic_type falcon_b0_nic_type = {
.probe = falcon_probe_nic,
.remove = falcon_remove_nic,
.init = falcon_init_nic,
.fini = efx_port_dummy_op_void,
.monitor = falcon_monitor,
.reset = falcon_reset_hw,
.probe_port = falcon_probe_port,
.remove_port = falcon_remove_port,
.prepare_flush = falcon_prepare_flush,
.update_stats = falcon_update_nic_stats,
.start_stats = falcon_start_nic_stats,
.stop_stats = falcon_stop_nic_stats,
.push_irq_moderation = falcon_push_irq_moderation,
.push_multicast_hash = falcon_push_multicast_hash,
.default_mac_ops = &falcon_xmac_operations,

.revision = EFX_REV_FALCON_B0,
Expand Down
Loading

0 comments on commit ef2b90e

Please sign in to comment.