blob: 3497b036f4081bc70f5d7873ae3112d5782dd3cb [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.
4 * Copyright 2006-2008 Solarflare Communications Inc.
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#ifndef EFX_EFX_H
12#define EFX_EFX_H
13
14#include "net_driver.h"
15
16/* PCI IDs */
17#define EFX_VENDID_SFC 0x1924
18#define FALCON_A_P_DEVID 0x0703
19#define FALCON_A_S_DEVID 0x6703
20#define FALCON_B_P_DEVID 0x0710
21
Ben Hutchingsdc803df2009-10-23 08:32:33 +000022/* Solarstorm controllers use BAR 0 for I/O space and BAR 2(&3) for memory */
23#define EFX_MEM_BAR 2
24
Ben Hutchings8ceee662008-04-27 12:55:59 +010025/* TX */
Ben Hutchingsf5e7adc2009-11-23 16:07:30 +000026extern int efx_probe_tx_queue(struct efx_tx_queue *tx_queue);
27extern void efx_remove_tx_queue(struct efx_tx_queue *tx_queue);
28extern void efx_init_tx_queue(struct efx_tx_queue *tx_queue);
29extern void efx_fini_tx_queue(struct efx_tx_queue *tx_queue);
30extern void efx_release_tx_buffers(struct efx_tx_queue *tx_queue);
31extern netdev_tx_t
32efx_hard_start_xmit(struct sk_buff *skb, struct net_device *net_dev);
33extern netdev_tx_t
34efx_enqueue_skb(struct efx_tx_queue *tx_queue, struct sk_buff *skb);
Ben Hutchings59cf09c2009-10-23 08:31:54 +000035extern void efx_xmit_done(struct efx_tx_queue *tx_queue, unsigned int index);
Ben Hutchings8ceee662008-04-27 12:55:59 +010036extern void efx_stop_queue(struct efx_nic *efx);
37extern void efx_wake_queue(struct efx_nic *efx);
Ben Hutchings3ffeabd2009-10-23 08:30:58 +000038#define EFX_TXQ_SIZE 1024
39#define EFX_TXQ_MASK (EFX_TXQ_SIZE - 1)
Ben Hutchings8ceee662008-04-27 12:55:59 +010040
41/* RX */
Ben Hutchingsf5e7adc2009-11-23 16:07:30 +000042extern int efx_probe_rx_queue(struct efx_rx_queue *rx_queue);
43extern void efx_remove_rx_queue(struct efx_rx_queue *rx_queue);
44extern void efx_init_rx_queue(struct efx_rx_queue *rx_queue);
45extern void efx_fini_rx_queue(struct efx_rx_queue *rx_queue);
46extern void efx_rx_strategy(struct efx_channel *channel);
47extern void efx_fast_push_rx_descriptors(struct efx_rx_queue *rx_queue);
48extern void efx_rx_work(struct work_struct *data);
49extern void __efx_rx_packet(struct efx_channel *channel,
50 struct efx_rx_buffer *rx_buf, bool checksummed);
Ben Hutchings8ceee662008-04-27 12:55:59 +010051extern void efx_rx_packet(struct efx_rx_queue *rx_queue, unsigned int index,
Ben Hutchingsdc8cfa52008-09-01 12:46:50 +010052 unsigned int len, bool checksummed, bool discard);
Ben Hutchings8ceee662008-04-27 12:55:59 +010053extern void efx_schedule_slow_fill(struct efx_rx_queue *rx_queue, int delay);
Ben Hutchings3ffeabd2009-10-23 08:30:58 +000054#define EFX_RXQ_SIZE 1024
55#define EFX_RXQ_MASK (EFX_RXQ_SIZE - 1)
Ben Hutchings8ceee662008-04-27 12:55:59 +010056
57/* Channels */
58extern void efx_process_channel_now(struct efx_channel *channel);
Ben Hutchingsbc3c90a2008-09-01 12:48:46 +010059extern void efx_flush_queues(struct efx_nic *efx);
Ben Hutchings3ffeabd2009-10-23 08:30:58 +000060#define EFX_EVQ_SIZE 4096
61#define EFX_EVQ_MASK (EFX_EVQ_SIZE - 1)
Ben Hutchings8ceee662008-04-27 12:55:59 +010062
63/* Ports */
Ben Hutchings1974cc22009-01-29 18:00:07 +000064extern void efx_stats_disable(struct efx_nic *efx);
65extern void efx_stats_enable(struct efx_nic *efx);
Ben Hutchings8ceee662008-04-27 12:55:59 +010066extern void efx_reconfigure_port(struct efx_nic *efx);
Ben Hutchings8c8661e2008-09-01 12:49:02 +010067extern void __efx_reconfigure_port(struct efx_nic *efx);
68
Ben Hutchingsf5e7adc2009-11-23 16:07:30 +000069/* Ethtool support */
70extern int efx_ethtool_get_settings(struct net_device *net_dev,
71 struct ethtool_cmd *ecmd);
72extern int efx_ethtool_set_settings(struct net_device *net_dev,
73 struct ethtool_cmd *ecmd);
74extern const struct ethtool_ops efx_ethtool_ops;
75
Ben Hutchings8c8661e2008-09-01 12:49:02 +010076/* Reset handling */
Steve Hodgson4b988282009-01-29 17:50:51 +000077extern void efx_reset_down(struct efx_nic *efx, enum reset_type method,
78 struct ethtool_cmd *ecmd);
79extern int efx_reset_up(struct efx_nic *efx, enum reset_type method,
80 struct ethtool_cmd *ecmd, bool ok);
Ben Hutchings8ceee662008-04-27 12:55:59 +010081
82/* Global */
83extern void efx_schedule_reset(struct efx_nic *efx, enum reset_type type);
84extern void efx_suspend(struct efx_nic *efx);
85extern void efx_resume(struct efx_nic *efx);
86extern void efx_init_irq_moderation(struct efx_nic *efx, int tx_usecs,
Ben Hutchings6fb70fd2009-03-20 13:30:37 +000087 int rx_usecs, bool rx_adaptive);
Ben Hutchings8ceee662008-04-27 12:55:59 +010088extern int efx_request_power(struct efx_nic *efx, int mw, const char *name);
89extern void efx_hex_dump(const u8 *, unsigned int, const char *);
90
91/* Dummy PHY ops for PHY drivers */
92extern int efx_port_dummy_op_int(struct efx_nic *efx);
93extern void efx_port_dummy_op_void(struct efx_nic *efx);
Ben Hutchings398468e2009-11-23 16:03:45 +000094extern void
95efx_port_dummy_op_set_id_led(struct efx_nic *efx, enum efx_led_mode mode);
Ben Hutchings8ceee662008-04-27 12:55:59 +010096
Ben Hutchingsf4150722008-11-04 20:34:28 +000097/* MTD */
98#ifdef CONFIG_SFC_MTD
99extern int efx_mtd_probe(struct efx_nic *efx);
100extern void efx_mtd_rename(struct efx_nic *efx);
101extern void efx_mtd_remove(struct efx_nic *efx);
102#else
103static inline int efx_mtd_probe(struct efx_nic *efx) { return 0; }
104static inline void efx_mtd_rename(struct efx_nic *efx) {}
105static inline void efx_mtd_remove(struct efx_nic *efx) {}
106#endif
Ben Hutchings8ceee662008-04-27 12:55:59 +0100107
108extern unsigned int efx_monitor_interval;
109
110static inline void efx_schedule_channel(struct efx_channel *channel)
111{
112 EFX_TRACE(channel->efx, "channel %d scheduling NAPI poll on CPU%d\n",
113 channel->channel, raw_smp_processor_id());
Ben Hutchingsdc8cfa52008-09-01 12:46:50 +0100114 channel->work_pending = true;
Ben Hutchings8ceee662008-04-27 12:55:59 +0100115
Ben Hutchings288379f2009-01-19 16:43:59 -0800116 napi_schedule(&channel->napi_str);
Ben Hutchings8ceee662008-04-27 12:55:59 +0100117}
118
119#endif /* EFX_EFX_H */