sfc: Make the dmaq size a run-time setting (rather than compile-time)
[linux-block.git] / drivers / net / sfc / efx.h
CommitLineData
8ceee660
BH
1/****************************************************************************
2 * Driver for Solarflare Solarstorm network controllers and boards
3 * Copyright 2005-2006 Fen Systems Ltd.
906bb26c 4 * Copyright 2006-2009 Solarflare Communications Inc.
8ceee660
BH
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
8880f4ec
BH
21#define BETHPAGE_A_P_DEVID 0x0803
22#define SIENA_A_P_DEVID 0x0813
8ceee660 23
dc803df8
BH
24/* Solarstorm controllers use BAR 0 for I/O space and BAR 2(&3) for memory */
25#define EFX_MEM_BAR 2
26
8ceee660 27/* TX */
f5e7adc3
BH
28extern int efx_probe_tx_queue(struct efx_tx_queue *tx_queue);
29extern void efx_remove_tx_queue(struct efx_tx_queue *tx_queue);
30extern void efx_init_tx_queue(struct efx_tx_queue *tx_queue);
31extern void efx_fini_tx_queue(struct efx_tx_queue *tx_queue);
32extern void efx_release_tx_buffers(struct efx_tx_queue *tx_queue);
33extern netdev_tx_t
34efx_hard_start_xmit(struct sk_buff *skb, struct net_device *net_dev);
35extern netdev_tx_t
36efx_enqueue_skb(struct efx_tx_queue *tx_queue, struct sk_buff *skb);
59cf09cc 37extern void efx_xmit_done(struct efx_tx_queue *tx_queue, unsigned int index);
a4900ac9
BH
38extern void efx_stop_queue(struct efx_channel *channel);
39extern void efx_wake_queue(struct efx_channel *channel);
8ceee660
BH
40
41/* RX */
f5e7adc3
BH
42extern 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);
90d683af 48extern void efx_rx_slow_fill(unsigned long context);
f5e7adc3
BH
49extern void __efx_rx_packet(struct efx_channel *channel,
50 struct efx_rx_buffer *rx_buf, bool checksummed);
8ceee660 51extern void efx_rx_packet(struct efx_rx_queue *rx_queue, unsigned int index,
dc8cfa55 52 unsigned int len, bool checksummed, bool discard);
90d683af 53extern void efx_schedule_slow_fill(struct efx_rx_queue *rx_queue);
ecc910f5
SH
54
55#define EFX_MAX_DMAQ_SIZE 4096UL
56#define EFX_DEFAULT_DMAQ_SIZE 1024UL
57#define EFX_MIN_DMAQ_SIZE 512UL
58
59#define EFX_MAX_EVQ_SIZE 16384UL
60#define EFX_MIN_EVQ_SIZE 512UL
8ceee660
BH
61
62/* Channels */
63extern void efx_process_channel_now(struct efx_channel *channel);
8ceee660
BH
64
65/* Ports */
d3245b28
BH
66extern int efx_reconfigure_port(struct efx_nic *efx);
67extern int __efx_reconfigure_port(struct efx_nic *efx);
8c8661e4 68
f5e7adc3
BH
69/* 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
8c8661e4 76/* Reset handling */
eb9f6744 77extern int efx_reset(struct efx_nic *efx, enum reset_type method);
d3245b28
BH
78extern void efx_reset_down(struct efx_nic *efx, enum reset_type method);
79extern int efx_reset_up(struct efx_nic *efx, enum reset_type method, bool ok);
8ceee660
BH
80
81/* Global */
82extern void efx_schedule_reset(struct efx_nic *efx, enum reset_type type);
8ceee660 83extern void efx_init_irq_moderation(struct efx_nic *efx, int tx_usecs,
6fb70fd1 84 int rx_usecs, bool rx_adaptive);
8ceee660
BH
85
86/* Dummy PHY ops for PHY drivers */
87extern int efx_port_dummy_op_int(struct efx_nic *efx);
88extern void efx_port_dummy_op_void(struct efx_nic *efx);
398468ed
BH
89extern void
90efx_port_dummy_op_set_id_led(struct efx_nic *efx, enum efx_led_mode mode);
fdaa9aed 91extern bool efx_port_dummy_op_poll(struct efx_nic *efx);
8ceee660 92
f4150724
BH
93/* MTD */
94#ifdef CONFIG_SFC_MTD
95extern int efx_mtd_probe(struct efx_nic *efx);
96extern void efx_mtd_rename(struct efx_nic *efx);
97extern void efx_mtd_remove(struct efx_nic *efx);
98#else
99static inline int efx_mtd_probe(struct efx_nic *efx) { return 0; }
100static inline void efx_mtd_rename(struct efx_nic *efx) {}
101static inline void efx_mtd_remove(struct efx_nic *efx) {}
102#endif
8ceee660
BH
103
104extern unsigned int efx_monitor_interval;
105
106static inline void efx_schedule_channel(struct efx_channel *channel)
107{
62776d03
BH
108 netif_vdbg(channel->efx, intr, channel->efx->net_dev,
109 "channel %d scheduling NAPI poll on CPU%d\n",
110 channel->channel, raw_smp_processor_id());
dc8cfa55 111 channel->work_pending = true;
8ceee660 112
288379f0 113 napi_schedule(&channel->napi_str);
8ceee660
BH
114}
115
fdaa9aed 116extern void efx_link_status_changed(struct efx_nic *efx);
d3245b28
BH
117extern void efx_link_set_advertising(struct efx_nic *efx, u32);
118extern void efx_link_set_wanted_fc(struct efx_nic *efx, enum efx_fc_type);
fdaa9aed 119
8ceee660 120#endif /* EFX_EFX_H */