2008-04-27 12:55:59 +01:00
/****************************************************************************
* Driver for Solarflare Solarstorm network controllers and boards
* Copyright 2005 - 2006 Fen Systems Ltd .
* Copyright 2006 - 2008 Solarflare Communications Inc .
*
* This program is free software ; you can redistribute it and / or modify it
* under the terms of the GNU General Public License version 2 as published
* by the Free Software Foundation , incorporated herein by reference .
*/
# ifndef EFX_EFX_H
# define EFX_EFX_H
# include "net_driver.h"
/* PCI IDs */
# define EFX_VENDID_SFC 0x1924
# define FALCON_A_P_DEVID 0x0703
# define FALCON_A_S_DEVID 0x6703
# define FALCON_B_P_DEVID 0x0710
/* TX */
extern int efx_xmit ( struct efx_nic * efx ,
struct efx_tx_queue * tx_queue , struct sk_buff * skb ) ;
extern void efx_stop_queue ( struct efx_nic * efx ) ;
extern void efx_wake_queue ( struct efx_nic * efx ) ;
/* RX */
extern void efx_xmit_done ( struct efx_tx_queue * tx_queue , unsigned int index ) ;
extern void efx_rx_packet ( struct efx_rx_queue * rx_queue , unsigned int index ,
2008-09-01 12:46:50 +01:00
unsigned int len , bool checksummed , bool discard ) ;
2008-04-27 12:55:59 +01:00
extern void efx_schedule_slow_fill ( struct efx_rx_queue * rx_queue , int delay ) ;
/* Channels */
extern void efx_process_channel_now ( struct efx_channel * channel ) ;
2008-09-01 12:48:46 +01:00
extern void efx_flush_queues ( struct efx_nic * efx ) ;
2008-04-27 12:55:59 +01:00
/* Ports */
2009-01-29 18:00:07 +00:00
extern void efx_stats_disable ( struct efx_nic * efx ) ;
extern void efx_stats_enable ( struct efx_nic * efx ) ;
2008-04-27 12:55:59 +01:00
extern void efx_reconfigure_port ( struct efx_nic * efx ) ;
2008-09-01 12:49:02 +01:00
extern void __efx_reconfigure_port ( struct efx_nic * efx ) ;
/* Reset handling */
2009-01-29 17:50:51 +00:00
extern void efx_reset_down ( struct efx_nic * efx , enum reset_type method ,
struct ethtool_cmd * ecmd ) ;
extern int efx_reset_up ( struct efx_nic * efx , enum reset_type method ,
struct ethtool_cmd * ecmd , bool ok ) ;
2008-04-27 12:55:59 +01:00
/* Global */
extern void efx_schedule_reset ( struct efx_nic * efx , enum reset_type type ) ;
extern void efx_suspend ( struct efx_nic * efx ) ;
extern void efx_resume ( struct efx_nic * efx ) ;
extern void efx_init_irq_moderation ( struct efx_nic * efx , int tx_usecs ,
2009-03-20 13:30:37 +00:00
int rx_usecs , bool rx_adaptive ) ;
2008-04-27 12:55:59 +01:00
extern int efx_request_power ( struct efx_nic * efx , int mw , const char * name ) ;
extern void efx_hex_dump ( const u8 * , unsigned int , const char * ) ;
/* Dummy PHY ops for PHY drivers */
extern int efx_port_dummy_op_int ( struct efx_nic * efx ) ;
extern void efx_port_dummy_op_void ( struct efx_nic * efx ) ;
2008-09-01 12:46:50 +01:00
extern void efx_port_dummy_op_blink ( struct efx_nic * efx , bool blink ) ;
2008-04-27 12:55:59 +01:00
2008-11-04 20:34:28 +00:00
/* MTD */
# ifdef CONFIG_SFC_MTD
extern int efx_mtd_probe ( struct efx_nic * efx ) ;
extern void efx_mtd_rename ( struct efx_nic * efx ) ;
extern void efx_mtd_remove ( struct efx_nic * efx ) ;
# else
static inline int efx_mtd_probe ( struct efx_nic * efx ) { return 0 ; }
static inline void efx_mtd_rename ( struct efx_nic * efx ) { }
static inline void efx_mtd_remove ( struct efx_nic * efx ) { }
# endif
2008-04-27 12:55:59 +01:00
extern unsigned int efx_monitor_interval ;
static inline void efx_schedule_channel ( struct efx_channel * channel )
{
EFX_TRACE ( channel - > efx , " channel %d scheduling NAPI poll on CPU%d \n " ,
channel - > channel , raw_smp_processor_id ( ) ) ;
2008-09-01 12:46:50 +01:00
channel - > work_pending = true ;
2008-04-27 12:55:59 +01:00
2009-01-19 16:43:59 -08:00
napi_schedule ( & channel - > napi_str ) ;
2008-04-27 12:55:59 +01:00
}
# endif /* EFX_EFX_H */