1
2
3
4
5
6 #ifndef _IGBVF_H_
7 #define _IGBVF_H_
8
9 #include <linux/types.h>
10 #include <linux/timer.h>
11 #include <linux/io.h>
12 #include <linux/netdevice.h>
13 #include <linux/if_vlan.h>
14
15 #include "vf.h"
16
17
18 struct igbvf_info;
19 struct igbvf_adapter;
20
21
22 #define IGBVF_START_ITR 488
23 #define IGBVF_4K_ITR 980
24 #define IGBVF_20K_ITR 196
25 #define IGBVF_70K_ITR 56
26
27 enum latency_range {
28 lowest_latency = 0,
29 low_latency = 1,
30 bulk_latency = 2,
31 latency_invalid = 255
32 };
33
34
35 #define IGBVF_INT_MODE_LEGACY 0
36 #define IGBVF_INT_MODE_MSI 1
37 #define IGBVF_INT_MODE_MSIX 2
38
39
40 #define IGBVF_DEFAULT_TXD 256
41 #define IGBVF_MAX_TXD 4096
42 #define IGBVF_MIN_TXD 80
43
44 #define IGBVF_DEFAULT_RXD 256
45 #define IGBVF_MAX_RXD 4096
46 #define IGBVF_MIN_RXD 80
47
48 #define IGBVF_MIN_ITR_USECS 10
49 #define IGBVF_MAX_ITR_USECS 10000
50
51
52
53
54
55
56
57
58
59
60
61
62 #define IGBVF_RX_PTHRESH 16
63 #define IGBVF_RX_HTHRESH 8
64 #define IGBVF_RX_WTHRESH 1
65
66
67 #define MAXIMUM_ETHERNET_VLAN_SIZE 1522
68
69 #define IGBVF_FC_PAUSE_TIME 0x0680
70
71
72 #define IGBVF_TX_QUEUE_WAKE 32
73
74 #define IGBVF_RX_BUFFER_WRITE 16
75
76 #define AUTO_ALL_MODES 0
77 #define IGBVF_EEPROM_APME 0x0400
78
79 #define IGBVF_MNG_VLAN_NONE (-1)
80
81 #define IGBVF_MAX_MAC_FILTERS 3
82
83
84 #define PS_PAGE_BUFFERS (MAX_PS_BUFFERS - 1)
85
86 enum igbvf_boards {
87 board_vf,
88 board_i350_vf,
89 };
90
91 struct igbvf_queue_stats {
92 u64 packets;
93 u64 bytes;
94 };
95
96
97
98
99 struct igbvf_buffer {
100 dma_addr_t dma;
101 struct sk_buff *skb;
102 union {
103
104 struct {
105 unsigned long time_stamp;
106 union e1000_adv_tx_desc *next_to_watch;
107 u16 length;
108 u16 mapped_as_page;
109 };
110
111 struct {
112 struct page *page;
113 u64 page_dma;
114 unsigned int page_offset;
115 };
116 };
117 };
118
119 union igbvf_desc {
120 union e1000_adv_rx_desc rx_desc;
121 union e1000_adv_tx_desc tx_desc;
122 struct e1000_adv_tx_context_desc tx_context_desc;
123 };
124
125 struct igbvf_ring {
126 struct igbvf_adapter *adapter;
127 union igbvf_desc *desc;
128 dma_addr_t dma;
129 unsigned int size;
130 unsigned int count;
131
132 u16 next_to_use;
133 u16 next_to_clean;
134
135 u16 head;
136 u16 tail;
137
138
139 struct igbvf_buffer *buffer_info;
140 struct napi_struct napi;
141
142 char name[IFNAMSIZ + 5];
143 u32 eims_value;
144 u32 itr_val;
145 enum latency_range itr_range;
146 u16 itr_register;
147 int set_itr;
148
149 struct sk_buff *rx_skb_top;
150
151 struct igbvf_queue_stats stats;
152 };
153
154
155 struct igbvf_adapter {
156 struct timer_list watchdog_timer;
157 struct timer_list blink_timer;
158
159 struct work_struct reset_task;
160 struct work_struct watchdog_task;
161
162 const struct igbvf_info *ei;
163
164 unsigned long active_vlans[BITS_TO_LONGS(VLAN_N_VID)];
165 u32 bd_number;
166 u32 rx_buffer_len;
167 u32 polling_interval;
168 u16 mng_vlan_id;
169 u16 link_speed;
170 u16 link_duplex;
171
172 spinlock_t tx_queue_lock;
173
174
175 unsigned long state;
176
177
178 u32 requested_itr;
179 u32 current_itr;
180
181
182 struct igbvf_ring *tx_ring
183 ____cacheline_aligned_in_smp;
184
185 unsigned int restart_queue;
186 u32 txd_cmd;
187
188 u32 tx_int_delay;
189 u32 tx_abs_int_delay;
190
191 unsigned int total_tx_bytes;
192 unsigned int total_tx_packets;
193 unsigned int total_rx_bytes;
194 unsigned int total_rx_packets;
195
196
197 u32 tx_timeout_count;
198 u32 tx_fifo_head;
199 u32 tx_head_addr;
200 u32 tx_fifo_size;
201 u32 tx_dma_failed;
202
203
204 struct igbvf_ring *rx_ring;
205
206 u32 rx_int_delay;
207 u32 rx_abs_int_delay;
208
209
210 u64 hw_csum_err;
211 u64 hw_csum_good;
212 u64 rx_hdr_split;
213 u32 alloc_rx_buff_failed;
214 u32 rx_dma_failed;
215
216 unsigned int rx_ps_hdr_size;
217 u32 max_frame_size;
218 u32 min_frame_size;
219
220
221 struct net_device *netdev;
222 struct pci_dev *pdev;
223 spinlock_t stats_lock;
224
225
226 struct e1000_hw hw;
227
228
229
230
231
232 struct e1000_vf_stats stats;
233 u64 zero_base;
234
235 struct igbvf_ring test_tx_ring;
236 struct igbvf_ring test_rx_ring;
237 u32 test_icr;
238
239 u32 msg_enable;
240 struct msix_entry *msix_entries;
241 int int_mode;
242 u32 eims_enable_mask;
243 u32 eims_other;
244 u32 int_counter0;
245 u32 int_counter1;
246
247 u32 eeprom_wol;
248 u32 wol;
249 u32 pba;
250
251 bool fc_autoneg;
252
253 unsigned long led_status;
254
255 unsigned int flags;
256 unsigned long last_reset;
257 };
258
259 struct igbvf_info {
260 enum e1000_mac_type mac;
261 unsigned int flags;
262 u32 pba;
263 void (*init_ops)(struct e1000_hw *);
264 s32 (*get_variants)(struct igbvf_adapter *);
265 };
266
267
268 #define IGBVF_FLAG_RX_CSUM_DISABLED BIT(0)
269 #define IGBVF_FLAG_RX_LB_VLAN_BSWAP BIT(1)
270 #define IGBVF_RX_DESC_ADV(R, i) \
271 (&((((R).desc))[i].rx_desc))
272 #define IGBVF_TX_DESC_ADV(R, i) \
273 (&((((R).desc))[i].tx_desc))
274 #define IGBVF_TX_CTXTDESC_ADV(R, i) \
275 (&((((R).desc))[i].tx_context_desc))
276
277 enum igbvf_state_t {
278 __IGBVF_TESTING,
279 __IGBVF_RESETTING,
280 __IGBVF_DOWN
281 };
282
283 extern char igbvf_driver_name[];
284 extern const char igbvf_driver_version[];
285
286 void igbvf_check_options(struct igbvf_adapter *);
287 void igbvf_set_ethtool_ops(struct net_device *);
288
289 int igbvf_up(struct igbvf_adapter *);
290 void igbvf_down(struct igbvf_adapter *);
291 void igbvf_reinit_locked(struct igbvf_adapter *);
292 int igbvf_setup_rx_resources(struct igbvf_adapter *, struct igbvf_ring *);
293 int igbvf_setup_tx_resources(struct igbvf_adapter *, struct igbvf_ring *);
294 void igbvf_free_rx_resources(struct igbvf_ring *);
295 void igbvf_free_tx_resources(struct igbvf_ring *);
296 void igbvf_update_stats(struct igbvf_adapter *);
297
298 extern unsigned int copybreak;
299
300 #endif