1
2
3
4#ifndef _IGC_H_
5#define _IGC_H_
6
7#include <linux/kobject.h>
8#include <linux/pci.h>
9#include <linux/netdevice.h>
10#include <linux/vmalloc.h>
11#include <linux/ethtool.h>
12#include <linux/sctp.h>
13#include <linux/ptp_clock_kernel.h>
14#include <linux/timecounter.h>
15#include <linux/net_tstamp.h>
16
17#include "igc_hw.h"
18
19
20void igc_set_ethtool_ops(struct net_device *);
21
22struct igc_adapter;
23struct igc_ring;
24
25void igc_up(struct igc_adapter *adapter);
26void igc_down(struct igc_adapter *adapter);
27int igc_setup_tx_resources(struct igc_ring *ring);
28int igc_setup_rx_resources(struct igc_ring *ring);
29void igc_free_tx_resources(struct igc_ring *ring);
30void igc_free_rx_resources(struct igc_ring *ring);
31unsigned int igc_get_max_rss_queues(struct igc_adapter *adapter);
32void igc_set_flag_queue_pairs(struct igc_adapter *adapter,
33 const u32 max_rss_queues);
34int igc_reinit_queues(struct igc_adapter *adapter);
35void igc_write_rss_indir_tbl(struct igc_adapter *adapter);
36bool igc_has_link(struct igc_adapter *adapter);
37void igc_reset(struct igc_adapter *adapter);
38int igc_set_spd_dplx(struct igc_adapter *adapter, u32 spd, u8 dplx);
39int igc_add_mac_steering_filter(struct igc_adapter *adapter,
40 const u8 *addr, u8 queue, u8 flags);
41int igc_del_mac_steering_filter(struct igc_adapter *adapter,
42 const u8 *addr, u8 queue, u8 flags);
43void igc_update_stats(struct igc_adapter *adapter);
44
45
46void igc_rings_dump(struct igc_adapter *adapter);
47void igc_regs_dump(struct igc_adapter *adapter);
48
49extern char igc_driver_name[];
50extern char igc_driver_version[];
51
52#define IGC_REGS_LEN 740
53#define IGC_RETA_SIZE 128
54
55
56#define IGC_PTP_ENABLED BIT(0)
57
58
59#define IGC_START_ITR 648
60
61
62#define IGC_FLAG_HAS_MSI BIT(0)
63#define IGC_FLAG_QUEUE_PAIRS BIT(3)
64#define IGC_FLAG_DMAC BIT(4)
65#define IGC_FLAG_PTP BIT(8)
66#define IGC_FLAG_WOL_SUPPORTED BIT(8)
67#define IGC_FLAG_NEED_LINK_UPDATE BIT(9)
68#define IGC_FLAG_MEDIA_RESET BIT(10)
69#define IGC_FLAG_MAS_ENABLE BIT(12)
70#define IGC_FLAG_HAS_MSIX BIT(13)
71#define IGC_FLAG_VLAN_PROMISC BIT(15)
72#define IGC_FLAG_RX_LEGACY BIT(16)
73
74#define IGC_FLAG_RSS_FIELD_IPV4_UDP BIT(6)
75#define IGC_FLAG_RSS_FIELD_IPV6_UDP BIT(7)
76
77#define IGC_MRQC_ENABLE_RSS_MQ 0x00000002
78#define IGC_MRQC_RSS_FIELD_IPV4_UDP 0x00400000
79#define IGC_MRQC_RSS_FIELD_IPV6_UDP 0x00800000
80
81#define IGC_START_ITR 648
82#define IGC_4K_ITR 980
83#define IGC_20K_ITR 196
84#define IGC_70K_ITR 56
85
86#define IGC_DEFAULT_ITR 3
87#define IGC_MAX_ITR_USECS 10000
88#define IGC_MIN_ITR_USECS 10
89#define NON_Q_VECTORS 1
90#define MAX_MSIX_ENTRIES 10
91
92
93#define IGC_DEFAULT_TXD 256
94#define IGC_DEFAULT_TX_WORK 128
95#define IGC_MIN_TXD 80
96#define IGC_MAX_TXD 4096
97
98#define IGC_DEFAULT_RXD 256
99#define IGC_MIN_RXD 80
100#define IGC_MAX_RXD 4096
101
102
103#define IGC_MAX_RX_QUEUES 4
104#define IGC_MAX_TX_QUEUES 4
105
106#define MAX_Q_VECTORS 8
107#define MAX_STD_JUMBO_FRAME_SIZE 9216
108
109
110#define IGC_RXBUFFER_256 256
111#define IGC_RXBUFFER_2048 2048
112#define IGC_RXBUFFER_3072 3072
113
114#define AUTO_ALL_MODES 0
115#define IGC_RX_HDR_LEN IGC_RXBUFFER_256
116
117
118
119
120
121
122#define IGC_I225_TX_LATENCY_10 9542
123#define IGC_I225_TX_LATENCY_100 1024
124#define IGC_I225_TX_LATENCY_1000 178
125#define IGC_I225_TX_LATENCY_2500 64
126#define IGC_I225_RX_LATENCY_10 20662
127#define IGC_I225_RX_LATENCY_100 2213
128#define IGC_I225_RX_LATENCY_1000 448
129#define IGC_I225_RX_LATENCY_2500 160
130
131
132
133
134
135
136
137
138
139
140
141
142#define IGC_RX_PTHRESH 8
143#define IGC_RX_HTHRESH 8
144#define IGC_TX_PTHRESH 8
145#define IGC_TX_HTHRESH 1
146#define IGC_RX_WTHRESH 4
147#define IGC_TX_WTHRESH 16
148
149#define IGC_RX_DMA_ATTR \
150 (DMA_ATTR_SKIP_CPU_SYNC | DMA_ATTR_WEAK_ORDERING)
151
152#define IGC_TS_HDR_LEN 16
153
154#define IGC_SKB_PAD (NET_SKB_PAD + NET_IP_ALIGN)
155
156#if (PAGE_SIZE < 8192)
157#define IGC_MAX_FRAME_BUILD_SKB \
158 (SKB_WITH_OVERHEAD(IGC_RXBUFFER_2048) - IGC_SKB_PAD - IGC_TS_HDR_LEN)
159#else
160#define IGC_MAX_FRAME_BUILD_SKB (IGC_RXBUFFER_2048 - IGC_TS_HDR_LEN)
161#endif
162
163
164#define IGC_RX_BUFFER_WRITE 16
165
166
167#define IGC_TX_FLAGS_VLAN_MASK 0xffff0000
168
169
170static inline __le32 igc_test_staterr(union igc_adv_rx_desc *rx_desc,
171 const u32 stat_err_bits)
172{
173 return rx_desc->wb.upper.status_error & cpu_to_le32(stat_err_bits);
174}
175
176enum igc_state_t {
177 __IGC_TESTING,
178 __IGC_RESETTING,
179 __IGC_DOWN,
180 __IGC_PTP_TX_IN_PROGRESS,
181};
182
183enum igc_tx_flags {
184
185 IGC_TX_FLAGS_VLAN = 0x01,
186 IGC_TX_FLAGS_TSO = 0x02,
187 IGC_TX_FLAGS_TSTAMP = 0x04,
188
189
190 IGC_TX_FLAGS_IPV4 = 0x10,
191 IGC_TX_FLAGS_CSUM = 0x20,
192};
193
194enum igc_boards {
195 board_base,
196};
197
198
199
200
201#define IGC_MAX_TXD_PWR 15
202#define IGC_MAX_DATA_PER_TXD BIT(IGC_MAX_TXD_PWR)
203
204
205#define TXD_USE_COUNT(S) DIV_ROUND_UP((S), IGC_MAX_DATA_PER_TXD)
206#define DESC_NEEDED (MAX_SKB_FRAGS + 4)
207
208
209
210
211struct igc_tx_buffer {
212 union igc_adv_tx_desc *next_to_watch;
213 unsigned long time_stamp;
214 struct sk_buff *skb;
215 unsigned int bytecount;
216 u16 gso_segs;
217 __be16 protocol;
218
219 DEFINE_DMA_UNMAP_ADDR(dma);
220 DEFINE_DMA_UNMAP_LEN(len);
221 u32 tx_flags;
222};
223
224struct igc_rx_buffer {
225 dma_addr_t dma;
226 struct page *page;
227#if (BITS_PER_LONG > 32) || (PAGE_SIZE >= 65536)
228 __u32 page_offset;
229#else
230 __u16 page_offset;
231#endif
232 __u16 pagecnt_bias;
233};
234
235struct igc_tx_queue_stats {
236 u64 packets;
237 u64 bytes;
238 u64 restart_queue;
239 u64 restart_queue2;
240};
241
242struct igc_rx_queue_stats {
243 u64 packets;
244 u64 bytes;
245 u64 drops;
246 u64 csum_err;
247 u64 alloc_failed;
248};
249
250struct igc_rx_packet_stats {
251 u64 ipv4_packets;
252 u64 ipv4e_packets;
253 u64 ipv6_packets;
254 u64 ipv6e_packets;
255 u64 tcp_packets;
256 u64 udp_packets;
257 u64 sctp_packets;
258 u64 nfs_packets;
259 u64 other_packets;
260};
261
262struct igc_ring_container {
263 struct igc_ring *ring;
264 unsigned int total_bytes;
265 unsigned int total_packets;
266 u16 work_limit;
267 u8 count;
268 u8 itr;
269};
270
271struct igc_ring {
272 struct igc_q_vector *q_vector;
273 struct net_device *netdev;
274 struct device *dev;
275 union {
276 struct igc_tx_buffer *tx_buffer_info;
277 struct igc_rx_buffer *rx_buffer_info;
278 };
279 void *desc;
280 unsigned long flags;
281 void __iomem *tail;
282 dma_addr_t dma;
283 unsigned int size;
284
285 u16 count;
286 u8 queue_index;
287 u8 reg_idx;
288 bool launchtime_enable;
289
290
291 u16 next_to_clean;
292 u16 next_to_use;
293 u16 next_to_alloc;
294
295 union {
296
297 struct {
298 struct igc_tx_queue_stats tx_stats;
299 struct u64_stats_sync tx_syncp;
300 struct u64_stats_sync tx_syncp2;
301 };
302
303 struct {
304 struct igc_rx_queue_stats rx_stats;
305 struct igc_rx_packet_stats pkt_stats;
306 struct u64_stats_sync rx_syncp;
307 struct sk_buff *skb;
308 };
309 };
310} ____cacheline_internodealigned_in_smp;
311
312struct igc_q_vector {
313 struct igc_adapter *adapter;
314 void __iomem *itr_register;
315 u32 eims_value;
316
317 u16 itr_val;
318 u8 set_itr;
319
320 struct igc_ring_container rx, tx;
321
322 struct napi_struct napi;
323
324 struct rcu_head rcu;
325 char name[IFNAMSIZ + 9];
326 struct net_device poll_dev;
327
328
329 struct igc_ring ring[] ____cacheline_internodealigned_in_smp;
330};
331
332#define MAX_ETYPE_FILTER (4 - 1)
333
334enum igc_filter_match_flags {
335 IGC_FILTER_FLAG_ETHER_TYPE = 0x1,
336 IGC_FILTER_FLAG_VLAN_TCI = 0x2,
337 IGC_FILTER_FLAG_SRC_MAC_ADDR = 0x4,
338 IGC_FILTER_FLAG_DST_MAC_ADDR = 0x8,
339};
340
341
342struct igc_nfc_input {
343
344
345
346
347
348 u8 match_flags;
349 __be16 etype;
350 __be16 vlan_tci;
351 u8 src_addr[ETH_ALEN];
352 u8 dst_addr[ETH_ALEN];
353};
354
355struct igc_nfc_filter {
356 struct hlist_node nfc_node;
357 struct igc_nfc_input filter;
358 unsigned long cookie;
359 u16 etype_reg_index;
360 u16 sw_idx;
361 u16 action;
362};
363
364struct igc_mac_addr {
365 u8 addr[ETH_ALEN];
366 u8 queue;
367 u8 state;
368};
369
370#define IGC_MAC_STATE_DEFAULT 0x1
371#define IGC_MAC_STATE_IN_USE 0x2
372#define IGC_MAC_STATE_SRC_ADDR 0x4
373#define IGC_MAC_STATE_QUEUE_STEERING 0x8
374
375#define IGC_MAX_RXNFC_FILTERS 16
376
377
378struct igc_adapter {
379 struct net_device *netdev;
380
381 unsigned long state;
382 unsigned int flags;
383 unsigned int num_q_vectors;
384
385 struct msix_entry *msix_entries;
386
387
388 u16 tx_work_limit;
389 u32 tx_timeout_count;
390 int num_tx_queues;
391 struct igc_ring *tx_ring[IGC_MAX_TX_QUEUES];
392
393
394 int num_rx_queues;
395 struct igc_ring *rx_ring[IGC_MAX_RX_QUEUES];
396
397 struct timer_list watchdog_timer;
398 struct timer_list dma_err_timer;
399 struct timer_list phy_info_timer;
400
401 u32 wol;
402 u32 en_mng_pt;
403 u16 link_speed;
404 u16 link_duplex;
405
406 u8 port_num;
407
408 u8 __iomem *io_addr;
409
410 u32 rx_itr_setting;
411 u32 tx_itr_setting;
412
413 struct work_struct reset_task;
414 struct work_struct watchdog_task;
415 struct work_struct dma_err_task;
416 bool fc_autoneg;
417
418 u8 tx_timeout_factor;
419
420 int msg_enable;
421 u32 max_frame_size;
422 u32 min_frame_size;
423
424
425 struct pci_dev *pdev;
426
427 spinlock_t stats64_lock;
428 struct rtnl_link_stats64 stats64;
429
430
431 struct igc_hw hw;
432 struct igc_hw_stats stats;
433
434 struct igc_q_vector *q_vector[MAX_Q_VECTORS];
435 u32 eims_enable_mask;
436 u32 eims_other;
437
438 u16 tx_ring_count;
439 u16 rx_ring_count;
440
441 u32 tx_hwtstamp_timeouts;
442 u32 tx_hwtstamp_skipped;
443 u32 rx_hwtstamp_cleared;
444
445 u32 rss_queues;
446 u32 rss_indir_tbl_init;
447
448
449 struct hlist_head nfc_filter_list;
450 struct hlist_head cls_flower_list;
451 unsigned int nfc_filter_count;
452
453
454 spinlock_t nfc_lock;
455 bool etype_bitmap[MAX_ETYPE_FILTER];
456
457 struct igc_mac_addr *mac_table;
458
459 u8 rss_indir_tbl[IGC_RETA_SIZE];
460
461 unsigned long link_check_timeout;
462 struct igc_info ei;
463
464 struct ptp_clock *ptp_clock;
465 struct ptp_clock_info ptp_caps;
466 struct work_struct ptp_tx_work;
467 struct sk_buff *ptp_tx_skb;
468 struct hwtstamp_config tstamp_config;
469 unsigned long ptp_tx_start;
470 unsigned long last_rx_ptp_check;
471 unsigned long last_rx_timestamp;
472 unsigned int ptp_flags;
473
474 spinlock_t tmreg_lock;
475 struct cyclecounter cc;
476 struct timecounter tc;
477};
478
479
480static inline u16 igc_desc_unused(const struct igc_ring *ring)
481{
482 u16 ntc = ring->next_to_clean;
483 u16 ntu = ring->next_to_use;
484
485 return ((ntc > ntu) ? 0 : ring->count) + ntc - ntu - 1;
486}
487
488static inline s32 igc_get_phy_info(struct igc_hw *hw)
489{
490 if (hw->phy.ops.get_phy_info)
491 return hw->phy.ops.get_phy_info(hw);
492
493 return 0;
494}
495
496static inline s32 igc_reset_phy(struct igc_hw *hw)
497{
498 if (hw->phy.ops.reset)
499 return hw->phy.ops.reset(hw);
500
501 return 0;
502}
503
504static inline struct netdev_queue *txring_txq(const struct igc_ring *tx_ring)
505{
506 return netdev_get_tx_queue(tx_ring->netdev, tx_ring->queue_index);
507}
508
509enum igc_ring_flags_t {
510 IGC_RING_FLAG_RX_3K_BUFFER,
511 IGC_RING_FLAG_RX_BUILD_SKB_ENABLED,
512 IGC_RING_FLAG_RX_SCTP_CSUM,
513 IGC_RING_FLAG_RX_LB_VLAN_BSWAP,
514 IGC_RING_FLAG_TX_CTX_IDX,
515 IGC_RING_FLAG_TX_DETECT_HANG
516};
517
518#define ring_uses_large_buffer(ring) \
519 test_bit(IGC_RING_FLAG_RX_3K_BUFFER, &(ring)->flags)
520
521#define ring_uses_build_skb(ring) \
522 test_bit(IGC_RING_FLAG_RX_BUILD_SKB_ENABLED, &(ring)->flags)
523
524static inline unsigned int igc_rx_bufsz(struct igc_ring *ring)
525{
526#if (PAGE_SIZE < 8192)
527 if (ring_uses_large_buffer(ring))
528 return IGC_RXBUFFER_3072;
529
530 if (ring_uses_build_skb(ring))
531 return IGC_MAX_FRAME_BUILD_SKB + IGC_TS_HDR_LEN;
532#endif
533 return IGC_RXBUFFER_2048;
534}
535
536static inline unsigned int igc_rx_pg_order(struct igc_ring *ring)
537{
538#if (PAGE_SIZE < 8192)
539 if (ring_uses_large_buffer(ring))
540 return 1;
541#endif
542 return 0;
543}
544
545static inline s32 igc_read_phy_reg(struct igc_hw *hw, u32 offset, u16 *data)
546{
547 if (hw->phy.ops.read_reg)
548 return hw->phy.ops.read_reg(hw, offset, data);
549
550 return 0;
551}
552
553
554void igc_reinit_locked(struct igc_adapter *);
555int igc_add_filter(struct igc_adapter *adapter,
556 struct igc_nfc_filter *input);
557int igc_erase_filter(struct igc_adapter *adapter,
558 struct igc_nfc_filter *input);
559
560void igc_ptp_init(struct igc_adapter *adapter);
561void igc_ptp_reset(struct igc_adapter *adapter);
562void igc_ptp_suspend(struct igc_adapter *adapter);
563void igc_ptp_stop(struct igc_adapter *adapter);
564void igc_ptp_rx_rgtstamp(struct igc_q_vector *q_vector, struct sk_buff *skb);
565void igc_ptp_rx_pktstamp(struct igc_q_vector *q_vector, void *va,
566 struct sk_buff *skb);
567int igc_ptp_set_ts_config(struct net_device *netdev, struct ifreq *ifr);
568int igc_ptp_get_ts_config(struct net_device *netdev, struct ifreq *ifr);
569void igc_ptp_tx_hang(struct igc_adapter *adapter);
570
571#define igc_rx_pg_size(_ring) (PAGE_SIZE << igc_rx_pg_order(_ring))
572
573#define IGC_TXD_DCMD (IGC_ADVTXD_DCMD_EOP | IGC_ADVTXD_DCMD_RS)
574
575#define IGC_RX_DESC(R, i) \
576 (&(((union igc_adv_rx_desc *)((R)->desc))[i]))
577#define IGC_TX_DESC(R, i) \
578 (&(((union igc_adv_tx_desc *)((R)->desc))[i]))
579#define IGC_TX_CTXTDESC(R, i) \
580 (&(((struct igc_adv_tx_context_desc *)((R)->desc))[i]))
581
582#endif
583