blob: 115033f6539e1e27035eea50953e463e35ed6852 [file] [log] [blame]
Alexander Duyckb3890e32014-09-20 19:46:05 -04001/* Intel Ethernet Switch Host Interface Driver
Jeff Kirsher97c71e32015-04-03 13:26:52 -07002 * Copyright(c) 2013 - 2015 Intel Corporation.
Alexander Duyckb3890e32014-09-20 19:46:05 -04003 *
4 * This program is free software; you can redistribute it and/or modify it
5 * under the terms and conditions of the GNU General Public License,
6 * version 2, as published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope it will be useful, but WITHOUT
9 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
10 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
11 * more details.
12 *
13 * The full GNU General Public License is included in this distribution in
14 * the file called "COPYING".
15 *
16 * Contact Information:
17 * e1000-devel Mailing List <e1000-devel@lists.sourceforge.net>
18 * Intel Corporation, 5200 N.E. Elam Young Parkway, Hillsboro, OR 97124-6497
19 */
20
21#ifndef _FM10K_H_
22#define _FM10K_H_
23
24#include <linux/types.h>
25#include <linux/etherdevice.h>
26#include <linux/rtnetlink.h>
27#include <linux/if_vlan.h>
28#include <linux/pci.h>
Alexander Duycka211e012014-09-20 19:54:07 -040029#include <linux/net_tstamp.h>
30#include <linux/clocksource.h>
31#include <linux/ptp_clock_kernel.h>
Alexander Duyckb3890e32014-09-20 19:46:05 -040032
Alexander Duyck0e7b3642014-09-20 19:48:10 -040033#include "fm10k_pf.h"
Alexander Duyck5cb8db42014-09-20 19:51:40 -040034#include "fm10k_vf.h"
Alexander Duyck0e7b3642014-09-20 19:48:10 -040035
Jacob Keller8c7ee6d2015-08-25 13:49:11 -070036#define FM10K_MAX_JUMBO_FRAME_SIZE 15342 /* Maximum supported size 15K */
Alexander Duyck0e7b3642014-09-20 19:48:10 -040037
Alexander Duycke27ef592014-09-20 19:49:03 -040038#define MAX_QUEUES FM10K_MAX_QUEUES_PF
39
40#define FM10K_MIN_RXD 128
41#define FM10K_MAX_RXD 4096
42#define FM10K_DEFAULT_RXD 256
43
44#define FM10K_MIN_TXD 128
45#define FM10K_MAX_TXD 4096
46#define FM10K_DEFAULT_TXD 256
47#define FM10K_DEFAULT_TX_WORK 256
48
49#define FM10K_RXBUFFER_256 256
Alexander Duycke27ef592014-09-20 19:49:03 -040050#define FM10K_RX_HDR_LEN FM10K_RXBUFFER_256
Alexander Duyckfd333962014-09-26 06:33:49 +000051#define FM10K_RXBUFFER_2048 2048
52#define FM10K_RX_BUFSZ FM10K_RXBUFFER_2048
Alexander Duycke27ef592014-09-20 19:49:03 -040053
54/* How many Rx Buffers do we bundle into one write to the hardware ? */
55#define FM10K_RX_BUFFER_WRITE 16 /* Must be power of 2 */
56
Alexander Duyck5cd5e2e2014-09-20 19:51:15 -040057#define FM10K_MAX_STATIONS 63
58struct fm10k_l2_accel {
59 int size;
60 u16 count;
61 u16 dglort;
62 struct rcu_head rcu;
63 struct net_device *macvlan[0];
64};
65
Alexander Duycke27ef592014-09-20 19:49:03 -040066enum fm10k_ring_state_t {
67 __FM10K_TX_DETECT_HANG,
68 __FM10K_HANG_CHECK_ARMED,
69};
70
71#define check_for_tx_hang(ring) \
72 test_bit(__FM10K_TX_DETECT_HANG, &(ring)->state)
73#define set_check_for_tx_hang(ring) \
74 set_bit(__FM10K_TX_DETECT_HANG, &(ring)->state)
75#define clear_check_for_tx_hang(ring) \
76 clear_bit(__FM10K_TX_DETECT_HANG, &(ring)->state)
77
78struct fm10k_tx_buffer {
79 struct fm10k_tx_desc *next_to_watch;
80 struct sk_buff *skb;
81 unsigned int bytecount;
82 u16 gso_segs;
83 u16 tx_flags;
84 DEFINE_DMA_UNMAP_ADDR(dma);
85 DEFINE_DMA_UNMAP_LEN(len);
86};
87
88struct fm10k_rx_buffer {
89 dma_addr_t dma;
90 struct page *page;
91 u32 page_offset;
92};
93
94struct fm10k_queue_stats {
95 u64 packets;
96 u64 bytes;
97};
98
99struct fm10k_tx_queue_stats {
100 u64 restart_queue;
101 u64 csum_err;
102 u64 tx_busy;
103 u64 tx_done_old;
Jacob Keller80043f32015-07-01 17:38:36 -0700104 u64 csum_good;
Alexander Duycke27ef592014-09-20 19:49:03 -0400105};
106
107struct fm10k_rx_queue_stats {
108 u64 alloc_failed;
109 u64 csum_err;
110 u64 errors;
Jacob Keller80043f32015-07-01 17:38:36 -0700111 u64 csum_good;
112 u64 switch_errors;
113 u64 drops;
114 u64 pp_errors;
115 u64 link_errors;
116 u64 length_errors;
Alexander Duycke27ef592014-09-20 19:49:03 -0400117};
118
119struct fm10k_ring {
120 struct fm10k_q_vector *q_vector;/* backpointer to host q_vector */
121 struct net_device *netdev; /* netdev ring belongs to */
122 struct device *dev; /* device for DMA mapping */
Alexander Duyck5cd5e2e2014-09-20 19:51:15 -0400123 struct fm10k_l2_accel __rcu *l2_accel; /* L2 acceleration list */
Alexander Duycke27ef592014-09-20 19:49:03 -0400124 void *desc; /* descriptor ring memory */
125 union {
126 struct fm10k_tx_buffer *tx_buffer;
127 struct fm10k_rx_buffer *rx_buffer;
128 };
129 u32 __iomem *tail;
130 unsigned long state;
131 dma_addr_t dma; /* phys. address of descriptor ring */
132 unsigned int size; /* length in bytes */
133
134 u8 queue_index; /* needed for queue management */
135 u8 reg_idx; /* holds the special value that gets
136 * the hardware register offset
137 * associated with this ring, which is
138 * different for DCB and RSS modes
139 */
140 u8 qos_pc; /* priority class of queue */
141 u16 vid; /* default vlan ID of queue */
142 u16 count; /* amount of descriptors */
143
144 u16 next_to_alloc;
145 u16 next_to_use;
146 u16 next_to_clean;
147
148 struct fm10k_queue_stats stats;
149 struct u64_stats_sync syncp;
150 union {
151 /* Tx */
152 struct fm10k_tx_queue_stats tx_stats;
153 /* Rx */
154 struct {
155 struct fm10k_rx_queue_stats rx_stats;
156 struct sk_buff *skb;
157 };
158 };
159} ____cacheline_internodealigned_in_smp;
160
Alexander Duyck18283ca2014-09-20 19:48:51 -0400161struct fm10k_ring_container {
Alexander Duycke27ef592014-09-20 19:49:03 -0400162 struct fm10k_ring *ring; /* pointer to linked list of rings */
Alexander Duyck18283ca2014-09-20 19:48:51 -0400163 unsigned int total_bytes; /* total bytes processed this int */
164 unsigned int total_packets; /* total packets processed this int */
165 u16 work_limit; /* total work allowed per interrupt */
166 u16 itr; /* interrupt throttle rate value */
Jacob Keller242722d2015-10-16 10:57:07 -0700167 u8 itr_scale; /* ITR adjustment scaler based on PCI speed */
Alexander Duyck18283ca2014-09-20 19:48:51 -0400168 u8 count; /* total number of rings in vector */
169};
170
171#define FM10K_ITR_MAX 0x0FFF /* maximum value for ITR */
172#define FM10K_ITR_10K 100 /* 100us */
173#define FM10K_ITR_20K 50 /* 50us */
174#define FM10K_ITR_ADAPTIVE 0x8000 /* adaptive interrupt moderation flag */
175
Jacob Keller584373f2015-10-16 10:57:06 -0700176#define ITR_IS_ADAPTIVE(itr) (!!(itr & FM10K_ITR_ADAPTIVE))
177
Jacob Keller436ea952015-10-16 10:57:08 -0700178#define FM10K_TX_ITR_DEFAULT FM10K_ITR_10K
179#define FM10K_RX_ITR_DEFAULT FM10K_ITR_20K
Alexander Duyck18283ca2014-09-20 19:48:51 -0400180#define FM10K_ITR_ENABLE (FM10K_ITR_AUTOMASK | FM10K_ITR_MASK_CLEAR)
181
Alexander Duycke27ef592014-09-20 19:49:03 -0400182static inline struct netdev_queue *txring_txq(const struct fm10k_ring *ring)
183{
184 return &ring->netdev->_tx[ring->queue_index];
185}
186
187/* iterator for handling rings in ring container */
188#define fm10k_for_each_ring(pos, head) \
189 for (pos = &(head).ring[(head).count]; (--pos) >= (head).ring;)
190
Alexander Duyck18283ca2014-09-20 19:48:51 -0400191#define MAX_Q_VECTORS 256
192#define MIN_Q_VECTORS 1
193enum fm10k_non_q_vectors {
194 FM10K_MBX_VECTOR,
Alexander Duyck5cb8db42014-09-20 19:51:40 -0400195#define NON_Q_VECTORS_VF NON_Q_VECTORS_PF
Alexander Duyck18283ca2014-09-20 19:48:51 -0400196 NON_Q_VECTORS_PF
197};
198
199#define NON_Q_VECTORS(hw) (((hw)->mac.type == fm10k_mac_pf) ? \
200 NON_Q_VECTORS_PF : \
Alexander Duyck5cb8db42014-09-20 19:51:40 -0400201 NON_Q_VECTORS_VF)
Alexander Duyck18283ca2014-09-20 19:48:51 -0400202#define MIN_MSIX_COUNT(hw) (MIN_Q_VECTORS + NON_Q_VECTORS(hw))
203
204struct fm10k_q_vector {
205 struct fm10k_intfc *interface;
206 u32 __iomem *itr; /* pointer to ITR register for this vector */
207 u16 v_idx; /* index of q_vector within interface array */
208 struct fm10k_ring_container rx, tx;
209
210 struct napi_struct napi;
211 char name[IFNAMSIZ + 9];
212
Alexander Duyck7461fd92014-09-20 19:53:23 -0400213#ifdef CONFIG_DEBUG_FS
214 struct dentry *dbg_q_vector;
215#endif /* CONFIG_DEBUG_FS */
Alexander Duyck18283ca2014-09-20 19:48:51 -0400216 struct rcu_head rcu; /* to avoid race with update stats on free */
Alexander Duycke27ef592014-09-20 19:49:03 -0400217
218 /* for dynamic allocation of rings associated with this q_vector */
219 struct fm10k_ring ring[0] ____cacheline_internodealigned_in_smp;
Alexander Duyck18283ca2014-09-20 19:48:51 -0400220};
221
Alexander Duyck0e7b3642014-09-20 19:48:10 -0400222enum fm10k_ring_f_enum {
223 RING_F_RSS,
224 RING_F_QOS,
225 RING_F_ARRAY_SIZE /* must be last in enum set */
226};
227
228struct fm10k_ring_feature {
229 u16 limit; /* upper limit on feature indices */
230 u16 indices; /* current value of indices */
231 u16 mask; /* Mask used for feature to ring mapping */
232 u16 offset; /* offset to start of feature */
233};
234
Alexander Duyck883a9cc2014-09-20 19:52:09 -0400235struct fm10k_iov_data {
236 unsigned int num_vfs;
237 unsigned int next_vf_mbx;
238 struct rcu_head rcu;
239 struct fm10k_vf_info vf_info[0];
240};
241
Alexander Duyck0e7b3642014-09-20 19:48:10 -0400242#define fm10k_vxlan_port_for_each(vp, intfc) \
243 list_for_each_entry(vp, &(intfc)->vxlan_port, list)
244struct fm10k_vxlan_port {
245 struct list_head list;
246 sa_family_t sa_family;
247 __be16 port;
248};
Alexander Duyck04a5aef2014-09-20 19:46:45 -0400249
Jeff Kirsherb382bb12015-04-03 13:27:05 -0700250/* one work queue for entire driver */
251extern struct workqueue_struct *fm10k_workqueue;
252
Alexander Duyck04a5aef2014-09-20 19:46:45 -0400253struct fm10k_intfc {
Alexander Duyck0e7b3642014-09-20 19:48:10 -0400254 unsigned long active_vlans[BITS_TO_LONGS(VLAN_N_VID)];
255 struct net_device *netdev;
Alexander Duyck5cd5e2e2014-09-20 19:51:15 -0400256 struct fm10k_l2_accel *l2_accel; /* pointer to L2 acceleration list */
Alexander Duyck04a5aef2014-09-20 19:46:45 -0400257 struct pci_dev *pdev;
Alexander Duyck0e7b3642014-09-20 19:48:10 -0400258 unsigned long state;
Alexander Duyck04a5aef2014-09-20 19:46:45 -0400259
Alexander Duyck0e7b3642014-09-20 19:48:10 -0400260 u32 flags;
261#define FM10K_FLAG_RESET_REQUESTED (u32)(1 << 0)
262#define FM10K_FLAG_RSS_FIELD_IPV4_UDP (u32)(1 << 1)
263#define FM10K_FLAG_RSS_FIELD_IPV6_UDP (u32)(1 << 2)
264#define FM10K_FLAG_RX_TS_ENABLED (u32)(1 << 3)
265#define FM10K_FLAG_SWPRI_CONFIG (u32)(1 << 4)
Jacob Keller80043f32015-07-01 17:38:36 -0700266#define FM10K_FLAG_DEBUG_STATS (u32)(1 << 5)
Alexander Duyck0e7b3642014-09-20 19:48:10 -0400267 int xcast_mode;
268
Alexander Duyck18283ca2014-09-20 19:48:51 -0400269 /* Tx fast path data */
270 int num_tx_queues;
271 u16 tx_itr;
272
273 /* Rx fast path data */
274 int num_rx_queues;
275 u16 rx_itr;
276
Alexander Duycke27ef592014-09-20 19:49:03 -0400277 /* TX */
278 struct fm10k_ring *tx_ring[MAX_QUEUES] ____cacheline_aligned_in_smp;
279
Alexander Duyckb7d85142014-09-20 19:49:25 -0400280 u64 restart_queue;
281 u64 tx_busy;
282 u64 tx_csum_errors;
283 u64 alloc_failed;
284 u64 rx_csum_errors;
Alexander Duyckb7d85142014-09-20 19:49:25 -0400285
286 u64 tx_bytes_nic;
287 u64 tx_packets_nic;
288 u64 rx_bytes_nic;
289 u64 rx_packets_nic;
290 u64 rx_drops_nic;
Alexander Duyck0e7b3642014-09-20 19:48:10 -0400291 u64 rx_overrun_pf;
292 u64 rx_overrun_vf;
Jacob Keller80043f32015-07-01 17:38:36 -0700293
294 /* Debug Statistics */
295 u64 hw_sm_mbx_full;
296 u64 hw_csum_tx_good;
297 u64 hw_csum_rx_good;
298 u64 rx_switch_errors;
299 u64 rx_drops;
300 u64 rx_pp_errors;
301 u64 rx_link_errors;
302 u64 rx_length_errors;
303
Alexander Duyckb7d85142014-09-20 19:49:25 -0400304 u32 tx_timeout_count;
Alexander Duyck0e7b3642014-09-20 19:48:10 -0400305
Alexander Duycke27ef592014-09-20 19:49:03 -0400306 /* RX */
307 struct fm10k_ring *rx_ring[MAX_QUEUES];
308
Alexander Duyck18283ca2014-09-20 19:48:51 -0400309 /* Queueing vectors */
310 struct fm10k_q_vector *q_vector[MAX_Q_VECTORS];
311 struct msix_entry *msix_entries;
312 int num_q_vectors; /* current number of q_vectors for device */
Alexander Duyck0e7b3642014-09-20 19:48:10 -0400313 struct fm10k_ring_feature ring_feature[RING_F_ARRAY_SIZE];
314
Alexander Duyck883a9cc2014-09-20 19:52:09 -0400315 /* SR-IOV information management structure */
316 struct fm10k_iov_data *iov_data;
317
Alexander Duyck0e7b3642014-09-20 19:48:10 -0400318 struct fm10k_hw_stats stats;
Alexander Duyck04a5aef2014-09-20 19:46:45 -0400319 struct fm10k_hw hw;
320 u32 __iomem *uc_addr;
Alexander Duycka211e012014-09-20 19:54:07 -0400321 u32 __iomem *sw_addr;
Alexander Duyck0e7b3642014-09-20 19:48:10 -0400322 u16 msg_enable;
Alexander Duyck18283ca2014-09-20 19:48:51 -0400323 u16 tx_ring_count;
324 u16 rx_ring_count;
Alexander Duyckb7d85142014-09-20 19:49:25 -0400325 struct timer_list service_timer;
326 struct work_struct service_task;
327 unsigned long next_stats_update;
328 unsigned long next_tx_hang_check;
329 unsigned long last_reset;
330 unsigned long link_down_event;
331 bool host_ready;
Alexander Duyck0e7b3642014-09-20 19:48:10 -0400332
333 u32 reta[FM10K_RETA_SIZE];
334 u32 rssrk[FM10K_RSSRK_SIZE];
335
336 /* VXLAN port tracking information */
337 struct list_head vxlan_port;
338
Alexander Duyck7461fd92014-09-20 19:53:23 -0400339#ifdef CONFIG_DEBUG_FS
340 struct dentry *dbg_intfc;
341
342#endif /* CONFIG_DEBUG_FS */
Alexander Duycka211e012014-09-20 19:54:07 -0400343 struct ptp_clock_info ptp_caps;
344 struct ptp_clock *ptp_clock;
345
346 struct sk_buff_head ts_tx_skb_queue;
347 u32 tx_hwtstamp_timeouts;
348
349 struct hwtstamp_config ts_config;
350 /* We are unable to actually adjust the clock beyond the frequency
351 * value. Once the clock is started there is no resetting it. As
352 * such we maintain a separate offset from the actual hardware clock
353 * to allow for offset adjustment.
354 */
355 s64 ptp_adjust;
356 rwlock_t systime_lock;
Alexander Duyck9f801ab2014-09-20 19:53:08 -0400357#ifdef CONFIG_DCB
Alexander Duyck0e7b3642014-09-20 19:48:10 -0400358 u8 pfc_en;
359#endif
360 u8 rx_pause;
361
362 /* GLORT resources in use by PF */
363 u16 glort;
364 u16 glort_count;
365
366 /* VLAN ID for updating multicast/unicast lists */
367 u16 vid;
Alexander Duyck04a5aef2014-09-20 19:46:45 -0400368};
Alexander Duyckb3890e32014-09-20 19:46:05 -0400369
Alexander Duyck0e7b3642014-09-20 19:48:10 -0400370enum fm10k_state_t {
371 __FM10K_RESETTING,
372 __FM10K_DOWN,
Alexander Duyckb7d85142014-09-20 19:49:25 -0400373 __FM10K_SERVICE_SCHED,
374 __FM10K_SERVICE_DISABLE,
Alexander Duyck0e7b3642014-09-20 19:48:10 -0400375 __FM10K_MBX_LOCK,
376 __FM10K_LINK_DOWN,
377};
378
379static inline void fm10k_mbx_lock(struct fm10k_intfc *interface)
380{
381 /* busy loop if we cannot obtain the lock as some calls
382 * such as ndo_set_rx_mode may be made in atomic context
383 */
384 while (test_and_set_bit(__FM10K_MBX_LOCK, &interface->state))
385 udelay(20);
386}
387
388static inline void fm10k_mbx_unlock(struct fm10k_intfc *interface)
389{
390 /* flush memory to make sure state is correct */
391 smp_mb__before_atomic();
392 clear_bit(__FM10K_MBX_LOCK, &interface->state);
393}
394
395static inline int fm10k_mbx_trylock(struct fm10k_intfc *interface)
396{
397 return !test_and_set_bit(__FM10K_MBX_LOCK, &interface->state);
398}
399
Alexander Duycke27ef592014-09-20 19:49:03 -0400400/* fm10k_test_staterr - test bits in Rx descriptor status and error fields */
401static inline __le32 fm10k_test_staterr(union fm10k_rx_desc *rx_desc,
402 const u32 stat_err_bits)
403{
404 return rx_desc->d.staterr & cpu_to_le32(stat_err_bits);
405}
406
407/* fm10k_desc_unused - calculate if we have unused descriptors */
408static inline u16 fm10k_desc_unused(struct fm10k_ring *ring)
409{
410 s16 unused = ring->next_to_clean - ring->next_to_use - 1;
411
412 return likely(unused < 0) ? unused + ring->count : unused;
413}
414
415#define FM10K_TX_DESC(R, i) \
416 (&(((struct fm10k_tx_desc *)((R)->desc))[i]))
417#define FM10K_RX_DESC(R, i) \
418 (&(((union fm10k_rx_desc *)((R)->desc))[i]))
419
420#define FM10K_MAX_TXD_PWR 14
421#define FM10K_MAX_DATA_PER_TXD (1 << FM10K_MAX_TXD_PWR)
422
423/* Tx Descriptors needed, worst case */
424#define TXD_USE_COUNT(S) DIV_ROUND_UP((S), FM10K_MAX_DATA_PER_TXD)
425#define DESC_NEEDED (MAX_SKB_FRAGS + 4)
426
427enum fm10k_tx_flags {
428 /* Tx offload flags */
429 FM10K_TX_FLAGS_CSUM = 0x01,
430};
431
432/* This structure is stored as little endian values as that is the native
433 * format of the Rx descriptor. The ordering of these fields is reversed
434 * from the actual ftag header to allow for a single bswap to take care
435 * of placing all of the values in network order
436 */
437union fm10k_ftag_info {
438 __le64 ftag;
439 struct {
440 /* dglort and sglort combined into a single 32bit desc read */
441 __le32 glort;
442 /* upper 16 bits of vlan are reserved 0 for swpri_type_user */
443 __le32 vlan;
444 } d;
445 struct {
446 __le16 dglort;
447 __le16 sglort;
448 __le16 vlan;
449 __le16 swpri_type_user;
450 } w;
451};
452
453struct fm10k_cb {
Alexander Duycka211e012014-09-20 19:54:07 -0400454 union {
455 __le64 tstamp;
456 unsigned long ts_tx_timeout;
457 };
Alexander Duycke27ef592014-09-20 19:49:03 -0400458 union fm10k_ftag_info fi;
459};
460
461#define FM10K_CB(skb) ((struct fm10k_cb *)(skb)->cb)
462
Alexander Duyckb3890e32014-09-20 19:46:05 -0400463/* main */
464extern char fm10k_driver_name[];
465extern const char fm10k_driver_version[];
Alexander Duyck18283ca2014-09-20 19:48:51 -0400466int fm10k_init_queueing_scheme(struct fm10k_intfc *interface);
467void fm10k_clear_queueing_scheme(struct fm10k_intfc *interface);
Matthew Vick5bf33dc2015-01-29 07:17:27 +0000468__be16 fm10k_tx_encap_offload(struct sk_buff *skb);
Alexander Duyckb101c962014-09-20 19:50:03 -0400469netdev_tx_t fm10k_xmit_frame_ring(struct sk_buff *skb,
470 struct fm10k_ring *tx_ring);
471void fm10k_tx_timeout_reset(struct fm10k_intfc *interface);
472bool fm10k_check_tx_hang(struct fm10k_ring *tx_ring);
473void fm10k_alloc_rx_buffers(struct fm10k_ring *rx_ring, u16 cleaned_count);
Alexander Duyckb3890e32014-09-20 19:46:05 -0400474
475/* PCI */
Alexander Duyck18283ca2014-09-20 19:48:51 -0400476void fm10k_mbx_free_irq(struct fm10k_intfc *);
477int fm10k_mbx_request_irq(struct fm10k_intfc *);
478void fm10k_qv_free_irq(struct fm10k_intfc *interface);
479int fm10k_qv_request_irq(struct fm10k_intfc *interface);
Alexander Duyckb3890e32014-09-20 19:46:05 -0400480int fm10k_register_pci_driver(void);
481void fm10k_unregister_pci_driver(void);
Alexander Duyck504c5ea2014-09-20 19:48:29 -0400482void fm10k_up(struct fm10k_intfc *interface);
483void fm10k_down(struct fm10k_intfc *interface);
Alexander Duyckb7d85142014-09-20 19:49:25 -0400484void fm10k_update_stats(struct fm10k_intfc *interface);
485void fm10k_service_event_schedule(struct fm10k_intfc *interface);
486void fm10k_update_rx_drop_en(struct fm10k_intfc *interface);
Jeff Kirsher8b4a98c2015-04-10 19:14:31 -0700487#ifdef CONFIG_NET_POLL_CONTROLLER
488void fm10k_netpoll(struct net_device *netdev);
489#endif
Alexander Duyck0e7b3642014-09-20 19:48:10 -0400490
491/* Netdev */
Jacob Kellere0244902015-10-16 10:56:56 -0700492struct net_device *fm10k_alloc_netdev(const struct fm10k_info *info);
Alexander Duyck3abaae42014-09-20 19:49:43 -0400493int fm10k_setup_rx_resources(struct fm10k_ring *);
494int fm10k_setup_tx_resources(struct fm10k_ring *);
495void fm10k_free_rx_resources(struct fm10k_ring *);
496void fm10k_free_tx_resources(struct fm10k_ring *);
497void fm10k_clean_all_rx_rings(struct fm10k_intfc *);
498void fm10k_clean_all_tx_rings(struct fm10k_intfc *);
499void fm10k_unmap_and_free_tx_resource(struct fm10k_ring *,
500 struct fm10k_tx_buffer *);
Alexander Duyck8f5e20d2014-09-20 19:48:20 -0400501void fm10k_restore_rx_state(struct fm10k_intfc *);
502void fm10k_reset_rx_state(struct fm10k_intfc *);
Alexander Duyckaa3ac822014-09-20 19:50:42 -0400503int fm10k_setup_tc(struct net_device *dev, u8 tc);
Alexander Duyck504c5ea2014-09-20 19:48:29 -0400504int fm10k_open(struct net_device *netdev);
505int fm10k_close(struct net_device *netdev);
Alexander Duyck82dd0f72014-09-20 19:50:15 -0400506
507/* Ethtool */
508void fm10k_set_ethtool_ops(struct net_device *dev);
Alexander Duyck883a9cc2014-09-20 19:52:09 -0400509
510/* IOV */
511s32 fm10k_iov_event(struct fm10k_intfc *interface);
512s32 fm10k_iov_mbx(struct fm10k_intfc *interface);
513void fm10k_iov_suspend(struct pci_dev *pdev);
514int fm10k_iov_resume(struct pci_dev *pdev);
515void fm10k_iov_disable(struct pci_dev *pdev);
516int fm10k_iov_configure(struct pci_dev *pdev, int num_vfs);
517s32 fm10k_iov_update_pvid(struct fm10k_intfc *interface, u16 glort, u16 pvid);
518int fm10k_ndo_set_vf_mac(struct net_device *netdev, int vf_idx, u8 *mac);
519int fm10k_ndo_set_vf_vlan(struct net_device *netdev,
520 int vf_idx, u16 vid, u8 qos);
521int fm10k_ndo_set_vf_bw(struct net_device *netdev, int vf_idx, int rate,
522 int unused);
523int fm10k_ndo_get_vf_config(struct net_device *netdev,
524 int vf_idx, struct ifla_vf_info *ivi);
Alexander Duyck9f801ab2014-09-20 19:53:08 -0400525
Alexander Duyck7461fd92014-09-20 19:53:23 -0400526/* DebugFS */
527#ifdef CONFIG_DEBUG_FS
528void fm10k_dbg_q_vector_init(struct fm10k_q_vector *q_vector);
529void fm10k_dbg_q_vector_exit(struct fm10k_q_vector *q_vector);
530void fm10k_dbg_intfc_init(struct fm10k_intfc *interface);
531void fm10k_dbg_intfc_exit(struct fm10k_intfc *interface);
532void fm10k_dbg_init(void);
533void fm10k_dbg_exit(void);
534#else
535static inline void fm10k_dbg_q_vector_init(struct fm10k_q_vector *q_vector) {}
536static inline void fm10k_dbg_q_vector_exit(struct fm10k_q_vector *q_vector) {}
537static inline void fm10k_dbg_intfc_init(struct fm10k_intfc *interface) {}
538static inline void fm10k_dbg_intfc_exit(struct fm10k_intfc *interface) {}
539static inline void fm10k_dbg_init(void) {}
540static inline void fm10k_dbg_exit(void) {}
541#endif /* CONFIG_DEBUG_FS */
542
Alexander Duycka211e012014-09-20 19:54:07 -0400543/* Time Stamping */
544void fm10k_systime_to_hwtstamp(struct fm10k_intfc *interface,
545 struct skb_shared_hwtstamps *hwtstamp,
546 u64 systime);
547void fm10k_ts_tx_enqueue(struct fm10k_intfc *interface, struct sk_buff *skb);
548void fm10k_ts_tx_hwtstamp(struct fm10k_intfc *interface, __le16 dglort,
549 u64 systime);
550void fm10k_ts_reset(struct fm10k_intfc *interface);
551void fm10k_ts_init(struct fm10k_intfc *interface);
552void fm10k_ts_tx_subtask(struct fm10k_intfc *interface);
553void fm10k_ptp_register(struct fm10k_intfc *interface);
554void fm10k_ptp_unregister(struct fm10k_intfc *interface);
555int fm10k_get_ts_config(struct net_device *netdev, struct ifreq *ifr);
556int fm10k_set_ts_config(struct net_device *netdev, struct ifreq *ifr);
557
Alexander Duyck9f801ab2014-09-20 19:53:08 -0400558/* DCB */
559void fm10k_dcbnl_set_ops(struct net_device *dev);
Alexander Duyckb3890e32014-09-20 19:46:05 -0400560#endif /* _FM10K_H_ */