blob: bf69f01f8467754cea8ecdfd7f2f8bc68c82dc21 [file] [log] [blame]
Alexander Duyckd4e0fe02009-04-07 14:37:34 +00001/*******************************************************************************
2
3 Intel(R) 82576 Virtual Function Linux driver
Mitch A Williams2a06ed92012-01-17 04:09:05 +00004 Copyright(c) 2009 - 2012 Intel Corporation.
Alexander Duyckd4e0fe02009-04-07 14:37:34 +00005
6 This program is free software; you can redistribute it and/or modify it
7 under the terms and conditions of the GNU General Public License,
8 version 2, as published by the Free Software Foundation.
9
10 This program is distributed in the hope it will be useful, but WITHOUT
11 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
13 more details.
14
15 You should have received a copy of the GNU General Public License along with
Jeff Kirsher03405012015-01-21 09:57:50 +000016 this program; if not, see <http://www.gnu.org/licenses/>.
Alexander Duyckd4e0fe02009-04-07 14:37:34 +000017
18 The full GNU General Public License is included in this distribution in
19 the file called "COPYING".
20
21 Contact Information:
22 e1000-devel Mailing List <e1000-devel@lists.sourceforge.net>
23 Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
24
25*******************************************************************************/
26
27/* Linux PRO/1000 Ethernet Driver main header file */
28
29#ifndef _IGBVF_H_
30#define _IGBVF_H_
31
32#include <linux/types.h>
33#include <linux/timer.h>
34#include <linux/io.h>
35#include <linux/netdevice.h>
Jiri Pirkoa0f1d602011-07-21 06:30:00 +000036#include <linux/if_vlan.h>
Alexander Duyckd4e0fe02009-04-07 14:37:34 +000037
38#include "vf.h"
39
40/* Forward declarations */
41struct igbvf_info;
42struct igbvf_adapter;
43
44/* Interrupt defines */
Jeff Kirsher03405012015-01-21 09:57:50 +000045#define IGBVF_START_ITR 488 /* ~8000 ints/sec */
46#define IGBVF_4K_ITR 980
47#define IGBVF_20K_ITR 196
48#define IGBVF_70K_ITR 56
Mitch A Williamsab50a2a2012-01-14 08:10:50 +000049
50enum latency_range {
51 lowest_latency = 0,
52 low_latency = 1,
53 bulk_latency = 2,
54 latency_invalid = 255
55};
56
Martin Olsson98a17082009-04-22 18:21:29 +020057/* Interrupt modes, as used by the IntMode parameter */
Jeff Kirsher03405012015-01-21 09:57:50 +000058#define IGBVF_INT_MODE_LEGACY 0
59#define IGBVF_INT_MODE_MSI 1
60#define IGBVF_INT_MODE_MSIX 2
Alexander Duyckd4e0fe02009-04-07 14:37:34 +000061
62/* Tx/Rx descriptor defines */
Jeff Kirsher03405012015-01-21 09:57:50 +000063#define IGBVF_DEFAULT_TXD 256
64#define IGBVF_MAX_TXD 4096
65#define IGBVF_MIN_TXD 80
Alexander Duyckd4e0fe02009-04-07 14:37:34 +000066
Jeff Kirsher03405012015-01-21 09:57:50 +000067#define IGBVF_DEFAULT_RXD 256
68#define IGBVF_MAX_RXD 4096
69#define IGBVF_MIN_RXD 80
Alexander Duyckd4e0fe02009-04-07 14:37:34 +000070
Jeff Kirsher03405012015-01-21 09:57:50 +000071#define IGBVF_MIN_ITR_USECS 10 /* 100000 irq/sec */
72#define IGBVF_MAX_ITR_USECS 10000 /* 100 irq/sec */
Alexander Duyckd4e0fe02009-04-07 14:37:34 +000073
74/* RX descriptor control thresholds.
75 * PTHRESH - MAC will consider prefetch if it has fewer than this number of
Jeff Kirsher03405012015-01-21 09:57:50 +000076 * descriptors available in its onboard memory.
77 * Setting this to 0 disables RX descriptor prefetch.
Alexander Duyckd4e0fe02009-04-07 14:37:34 +000078 * HTHRESH - MAC will only prefetch if there are at least this many descriptors
Jeff Kirsher03405012015-01-21 09:57:50 +000079 * available in host memory.
80 * If PTHRESH is 0, this should also be 0.
Alexander Duyckd4e0fe02009-04-07 14:37:34 +000081 * WTHRESH - RX descriptor writeback threshold - MAC will delay writing back
Jeff Kirsher03405012015-01-21 09:57:50 +000082 * descriptors until either it has this many to write back, or the
83 * ITR timer expires.
Alexander Duyckd4e0fe02009-04-07 14:37:34 +000084 */
Jeff Kirsher03405012015-01-21 09:57:50 +000085#define IGBVF_RX_PTHRESH 16
86#define IGBVF_RX_HTHRESH 8
87#define IGBVF_RX_WTHRESH 1
Alexander Duyckd4e0fe02009-04-07 14:37:34 +000088
89/* this is the size past which hardware will drop packets when setting LPE=0 */
Jeff Kirsher03405012015-01-21 09:57:50 +000090#define MAXIMUM_ETHERNET_VLAN_SIZE 1522
Alexander Duyckd4e0fe02009-04-07 14:37:34 +000091
Jeff Kirsher03405012015-01-21 09:57:50 +000092#define IGBVF_FC_PAUSE_TIME 0x0680 /* 858 usec */
Alexander Duyckd4e0fe02009-04-07 14:37:34 +000093
94/* How many Tx Descriptors do we need to call netif_wake_queue ? */
Jeff Kirsher03405012015-01-21 09:57:50 +000095#define IGBVF_TX_QUEUE_WAKE 32
Alexander Duyckd4e0fe02009-04-07 14:37:34 +000096/* How many Rx Buffers do we bundle into one write to the hardware ? */
Jeff Kirsher03405012015-01-21 09:57:50 +000097#define IGBVF_RX_BUFFER_WRITE 16 /* Must be power of 2 */
Alexander Duyckd4e0fe02009-04-07 14:37:34 +000098
Jeff Kirsher03405012015-01-21 09:57:50 +000099#define AUTO_ALL_MODES 0
100#define IGBVF_EEPROM_APME 0x0400
Alexander Duyckd4e0fe02009-04-07 14:37:34 +0000101
Jeff Kirsher03405012015-01-21 09:57:50 +0000102#define IGBVF_MNG_VLAN_NONE (-1)
Alexander Duyckd4e0fe02009-04-07 14:37:34 +0000103
Yury Kylulin4827cc32017-03-07 11:20:26 +0300104#define IGBVF_MAX_MAC_FILTERS 3
105
Alexander Duyckd4e0fe02009-04-07 14:37:34 +0000106/* Number of packet split data buffers (not including the header buffer) */
Jeff Kirsher03405012015-01-21 09:57:50 +0000107#define PS_PAGE_BUFFERS (MAX_PS_BUFFERS - 1)
Alexander Duyckd4e0fe02009-04-07 14:37:34 +0000108
109enum igbvf_boards {
110 board_vf,
Williams, Mitch A031d7952010-12-09 03:23:56 +0000111 board_i350_vf,
Alexander Duyckd4e0fe02009-04-07 14:37:34 +0000112};
113
114struct igbvf_queue_stats {
115 u64 packets;
116 u64 bytes;
117};
118
Jeff Kirsher03405012015-01-21 09:57:50 +0000119/* wrappers around a pointer to a socket buffer,
Alexander Duyckd4e0fe02009-04-07 14:37:34 +0000120 * so a DMA handle can be stored along with the buffer
121 */
122struct igbvf_buffer {
123 dma_addr_t dma;
124 struct sk_buff *skb;
125 union {
126 /* Tx */
127 struct {
128 unsigned long time_stamp;
Alexander Duyck3eb1a402013-01-31 07:15:51 +0000129 union e1000_adv_tx_desc *next_to_watch;
Alexander Duyckd4e0fe02009-04-07 14:37:34 +0000130 u16 length;
Alexander Duycka7d5ca402009-12-02 16:47:37 +0000131 u16 mapped_as_page;
Alexander Duyckd4e0fe02009-04-07 14:37:34 +0000132 };
133 /* Rx */
134 struct {
135 struct page *page;
136 u64 page_dma;
137 unsigned int page_offset;
138 };
139 };
Alexander Duyckd4e0fe02009-04-07 14:37:34 +0000140};
141
142union igbvf_desc {
143 union e1000_adv_rx_desc rx_desc;
144 union e1000_adv_tx_desc tx_desc;
145 struct e1000_adv_tx_context_desc tx_context_desc;
146};
147
148struct igbvf_ring {
149 struct igbvf_adapter *adapter; /* backlink */
Jeff Kirsher03405012015-01-21 09:57:50 +0000150 union igbvf_desc *desc; /* pointer to ring memory */
151 dma_addr_t dma; /* phys address of ring */
152 unsigned int size; /* length of ring in bytes */
153 unsigned int count; /* number of desc. in ring */
Alexander Duyckd4e0fe02009-04-07 14:37:34 +0000154
155 u16 next_to_use;
156 u16 next_to_clean;
157
158 u16 head;
159 u16 tail;
160
161 /* array of buffer information structs */
162 struct igbvf_buffer *buffer_info;
163 struct napi_struct napi;
164
165 char name[IFNAMSIZ + 5];
166 u32 eims_value;
167 u32 itr_val;
Mitch A Williamsab50a2a2012-01-14 08:10:50 +0000168 enum latency_range itr_range;
Alexander Duyckd4e0fe02009-04-07 14:37:34 +0000169 u16 itr_register;
170 int set_itr;
171
172 struct sk_buff *rx_skb_top;
173
174 struct igbvf_queue_stats stats;
175};
176
177/* board specific private data structure */
178struct igbvf_adapter {
179 struct timer_list watchdog_timer;
180 struct timer_list blink_timer;
181
182 struct work_struct reset_task;
183 struct work_struct watchdog_task;
184
185 const struct igbvf_info *ei;
186
Jiri Pirkoa0f1d602011-07-21 06:30:00 +0000187 unsigned long active_vlans[BITS_TO_LONGS(VLAN_N_VID)];
Alexander Duyckd4e0fe02009-04-07 14:37:34 +0000188 u32 bd_number;
189 u32 rx_buffer_len;
190 u32 polling_interval;
191 u16 mng_vlan_id;
192 u16 link_speed;
193 u16 link_duplex;
194
195 spinlock_t tx_queue_lock; /* prevent concurrent tail updates */
196
197 /* track device up/down/testing state */
198 unsigned long state;
199
200 /* Interrupt Throttle Rate */
Mitch A Williamsab50a2a2012-01-14 08:10:50 +0000201 u32 requested_itr; /* ints/sec or adaptive */
202 u32 current_itr; /* Actual ITR register value, not ints/sec */
Alexander Duyckd4e0fe02009-04-07 14:37:34 +0000203
Jeff Kirsher03405012015-01-21 09:57:50 +0000204 /* Tx */
Alexander Duyckd4e0fe02009-04-07 14:37:34 +0000205 struct igbvf_ring *tx_ring /* One per active queue */
206 ____cacheline_aligned_in_smp;
207
Alexander Duyckd4e0fe02009-04-07 14:37:34 +0000208 unsigned int restart_queue;
209 u32 txd_cmd;
210
Alexander Duyckd4e0fe02009-04-07 14:37:34 +0000211 u32 tx_int_delay;
212 u32 tx_abs_int_delay;
213
214 unsigned int total_tx_bytes;
215 unsigned int total_tx_packets;
216 unsigned int total_rx_bytes;
217 unsigned int total_rx_packets;
218
219 /* Tx stats */
220 u32 tx_timeout_count;
221 u32 tx_fifo_head;
222 u32 tx_head_addr;
223 u32 tx_fifo_size;
224 u32 tx_dma_failed;
225
Jeff Kirsher03405012015-01-21 09:57:50 +0000226 /* Rx */
Alexander Duyckd4e0fe02009-04-07 14:37:34 +0000227 struct igbvf_ring *rx_ring;
228
229 u32 rx_int_delay;
230 u32 rx_abs_int_delay;
231
232 /* Rx stats */
233 u64 hw_csum_err;
234 u64 hw_csum_good;
235 u64 rx_hdr_split;
236 u32 alloc_rx_buff_failed;
237 u32 rx_dma_failed;
238
239 unsigned int rx_ps_hdr_size;
240 u32 max_frame_size;
241 u32 min_frame_size;
242
243 /* OS defined structs */
244 struct net_device *netdev;
245 struct pci_dev *pdev;
Jeff Kirsher03405012015-01-21 09:57:50 +0000246 spinlock_t stats_lock; /* prevent concurrent stats updates */
Alexander Duyckd4e0fe02009-04-07 14:37:34 +0000247
248 /* structs defined in e1000_hw.h */
249 struct e1000_hw hw;
250
251 /* The VF counters don't clear on read so we have to get a base
252 * count on driver start up and always subtract that base on
253 * on the first update, thus the flag..
254 */
255 struct e1000_vf_stats stats;
256 u64 zero_base;
257
258 struct igbvf_ring test_tx_ring;
259 struct igbvf_ring test_rx_ring;
260 u32 test_icr;
261
262 u32 msg_enable;
263 struct msix_entry *msix_entries;
264 int int_mode;
265 u32 eims_enable_mask;
266 u32 eims_other;
267 u32 int_counter0;
268 u32 int_counter1;
269
270 u32 eeprom_wol;
271 u32 wol;
272 u32 pba;
273
274 bool fc_autoneg;
275
276 unsigned long led_status;
277
278 unsigned int flags;
Alexander Duyck72279092009-12-11 22:58:14 -0800279 unsigned long last_reset;
Alexander Duyckd4e0fe02009-04-07 14:37:34 +0000280};
281
282struct igbvf_info {
Jeff Kirsher03405012015-01-21 09:57:50 +0000283 enum e1000_mac_type mac;
284 unsigned int flags;
285 u32 pba;
286 void (*init_ops)(struct e1000_hw *);
287 s32 (*get_variants)(struct igbvf_adapter *);
Alexander Duyckd4e0fe02009-04-07 14:37:34 +0000288};
289
290/* hardware capability, feature, and workaround flags */
Jacob Keller0ed2dbf2016-04-13 16:08:31 -0700291#define IGBVF_FLAG_RX_CSUM_DISABLED BIT(0)
292#define IGBVF_FLAG_RX_LB_VLAN_BSWAP BIT(1)
Alexander Duyckd4e0fe02009-04-07 14:37:34 +0000293#define IGBVF_RX_DESC_ADV(R, i) \
294 (&((((R).desc))[i].rx_desc))
295#define IGBVF_TX_DESC_ADV(R, i) \
296 (&((((R).desc))[i].tx_desc))
297#define IGBVF_TX_CTXTDESC_ADV(R, i) \
298 (&((((R).desc))[i].tx_context_desc))
299
300enum igbvf_state_t {
301 __IGBVF_TESTING,
302 __IGBVF_RESETTING,
303 __IGBVF_DOWN
304};
305
Alexander Duyckd4e0fe02009-04-07 14:37:34 +0000306extern char igbvf_driver_name[];
307extern const char igbvf_driver_version[];
308
Joe Perches5ccc9212013-09-23 11:37:59 -0700309void igbvf_check_options(struct igbvf_adapter *);
310void igbvf_set_ethtool_ops(struct net_device *);
Alexander Duyckd4e0fe02009-04-07 14:37:34 +0000311
Joe Perches5ccc9212013-09-23 11:37:59 -0700312int igbvf_up(struct igbvf_adapter *);
313void igbvf_down(struct igbvf_adapter *);
314void igbvf_reinit_locked(struct igbvf_adapter *);
315int igbvf_setup_rx_resources(struct igbvf_adapter *, struct igbvf_ring *);
316int igbvf_setup_tx_resources(struct igbvf_adapter *, struct igbvf_ring *);
317void igbvf_free_rx_resources(struct igbvf_ring *);
318void igbvf_free_tx_resources(struct igbvf_ring *);
319void igbvf_update_stats(struct igbvf_adapter *);
Alexander Duyckd4e0fe02009-04-07 14:37:34 +0000320
321extern unsigned int copybreak;
322
323#endif /* _IGBVF_H_ */