fm10k: Add support for SR-IOV to driver
[deliverable/linux.git] / drivers / net / ethernet / intel / fm10k / fm10k.h
CommitLineData
b3890e30
AD
1/* Intel Ethernet Switch Host Interface Driver
2 * Copyright(c) 2013 - 2014 Intel Corporation.
3 *
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>
29
0e7b3644 30#include "fm10k_pf.h"
5cb8db4a 31#include "fm10k_vf.h"
0e7b3644
AD
32
33#define FM10K_MAX_JUMBO_FRAME_SIZE 15358 /* Maximum supported size 15K */
34
e27ef599
AD
35#define MAX_QUEUES FM10K_MAX_QUEUES_PF
36
37#define FM10K_MIN_RXD 128
38#define FM10K_MAX_RXD 4096
39#define FM10K_DEFAULT_RXD 256
40
41#define FM10K_MIN_TXD 128
42#define FM10K_MAX_TXD 4096
43#define FM10K_DEFAULT_TXD 256
44#define FM10K_DEFAULT_TX_WORK 256
45
46#define FM10K_RXBUFFER_256 256
47#define FM10K_RXBUFFER_16384 16384
48#define FM10K_RX_HDR_LEN FM10K_RXBUFFER_256
49#if PAGE_SIZE <= FM10K_RXBUFFER_16384
50#define FM10K_RX_BUFSZ (PAGE_SIZE / 2)
51#else
52#define FM10K_RX_BUFSZ FM10K_RXBUFFER_16384
53#endif
54
55/* How many Rx Buffers do we bundle into one write to the hardware ? */
56#define FM10K_RX_BUFFER_WRITE 16 /* Must be power of 2 */
57
5cd5e2e9
AD
58#define FM10K_MAX_STATIONS 63
59struct fm10k_l2_accel {
60 int size;
61 u16 count;
62 u16 dglort;
63 struct rcu_head rcu;
64 struct net_device *macvlan[0];
65};
66
e27ef599
AD
67enum fm10k_ring_state_t {
68 __FM10K_TX_DETECT_HANG,
69 __FM10K_HANG_CHECK_ARMED,
70};
71
72#define check_for_tx_hang(ring) \
73 test_bit(__FM10K_TX_DETECT_HANG, &(ring)->state)
74#define set_check_for_tx_hang(ring) \
75 set_bit(__FM10K_TX_DETECT_HANG, &(ring)->state)
76#define clear_check_for_tx_hang(ring) \
77 clear_bit(__FM10K_TX_DETECT_HANG, &(ring)->state)
78
79struct fm10k_tx_buffer {
80 struct fm10k_tx_desc *next_to_watch;
81 struct sk_buff *skb;
82 unsigned int bytecount;
83 u16 gso_segs;
84 u16 tx_flags;
85 DEFINE_DMA_UNMAP_ADDR(dma);
86 DEFINE_DMA_UNMAP_LEN(len);
87};
88
89struct fm10k_rx_buffer {
90 dma_addr_t dma;
91 struct page *page;
92 u32 page_offset;
93};
94
95struct fm10k_queue_stats {
96 u64 packets;
97 u64 bytes;
98};
99
100struct fm10k_tx_queue_stats {
101 u64 restart_queue;
102 u64 csum_err;
103 u64 tx_busy;
104 u64 tx_done_old;
105};
106
107struct fm10k_rx_queue_stats {
108 u64 alloc_failed;
109 u64 csum_err;
110 u64 errors;
111};
112
113struct fm10k_ring {
114 struct fm10k_q_vector *q_vector;/* backpointer to host q_vector */
115 struct net_device *netdev; /* netdev ring belongs to */
116 struct device *dev; /* device for DMA mapping */
5cd5e2e9 117 struct fm10k_l2_accel __rcu *l2_accel; /* L2 acceleration list */
e27ef599
AD
118 void *desc; /* descriptor ring memory */
119 union {
120 struct fm10k_tx_buffer *tx_buffer;
121 struct fm10k_rx_buffer *rx_buffer;
122 };
123 u32 __iomem *tail;
124 unsigned long state;
125 dma_addr_t dma; /* phys. address of descriptor ring */
126 unsigned int size; /* length in bytes */
127
128 u8 queue_index; /* needed for queue management */
129 u8 reg_idx; /* holds the special value that gets
130 * the hardware register offset
131 * associated with this ring, which is
132 * different for DCB and RSS modes
133 */
134 u8 qos_pc; /* priority class of queue */
135 u16 vid; /* default vlan ID of queue */
136 u16 count; /* amount of descriptors */
137
138 u16 next_to_alloc;
139 u16 next_to_use;
140 u16 next_to_clean;
141
142 struct fm10k_queue_stats stats;
143 struct u64_stats_sync syncp;
144 union {
145 /* Tx */
146 struct fm10k_tx_queue_stats tx_stats;
147 /* Rx */
148 struct {
149 struct fm10k_rx_queue_stats rx_stats;
150 struct sk_buff *skb;
151 };
152 };
153} ____cacheline_internodealigned_in_smp;
154
18283cad 155struct fm10k_ring_container {
e27ef599 156 struct fm10k_ring *ring; /* pointer to linked list of rings */
18283cad
AD
157 unsigned int total_bytes; /* total bytes processed this int */
158 unsigned int total_packets; /* total packets processed this int */
159 u16 work_limit; /* total work allowed per interrupt */
160 u16 itr; /* interrupt throttle rate value */
161 u8 count; /* total number of rings in vector */
162};
163
164#define FM10K_ITR_MAX 0x0FFF /* maximum value for ITR */
165#define FM10K_ITR_10K 100 /* 100us */
166#define FM10K_ITR_20K 50 /* 50us */
167#define FM10K_ITR_ADAPTIVE 0x8000 /* adaptive interrupt moderation flag */
168
169#define FM10K_ITR_ENABLE (FM10K_ITR_AUTOMASK | FM10K_ITR_MASK_CLEAR)
170
e27ef599
AD
171static inline struct netdev_queue *txring_txq(const struct fm10k_ring *ring)
172{
173 return &ring->netdev->_tx[ring->queue_index];
174}
175
176/* iterator for handling rings in ring container */
177#define fm10k_for_each_ring(pos, head) \
178 for (pos = &(head).ring[(head).count]; (--pos) >= (head).ring;)
179
18283cad
AD
180#define MAX_Q_VECTORS 256
181#define MIN_Q_VECTORS 1
182enum fm10k_non_q_vectors {
183 FM10K_MBX_VECTOR,
5cb8db4a 184#define NON_Q_VECTORS_VF NON_Q_VECTORS_PF
18283cad
AD
185 NON_Q_VECTORS_PF
186};
187
188#define NON_Q_VECTORS(hw) (((hw)->mac.type == fm10k_mac_pf) ? \
189 NON_Q_VECTORS_PF : \
5cb8db4a 190 NON_Q_VECTORS_VF)
18283cad
AD
191#define MIN_MSIX_COUNT(hw) (MIN_Q_VECTORS + NON_Q_VECTORS(hw))
192
193struct fm10k_q_vector {
194 struct fm10k_intfc *interface;
195 u32 __iomem *itr; /* pointer to ITR register for this vector */
196 u16 v_idx; /* index of q_vector within interface array */
197 struct fm10k_ring_container rx, tx;
198
199 struct napi_struct napi;
200 char name[IFNAMSIZ + 9];
201
202 struct rcu_head rcu; /* to avoid race with update stats on free */
e27ef599
AD
203
204 /* for dynamic allocation of rings associated with this q_vector */
205 struct fm10k_ring ring[0] ____cacheline_internodealigned_in_smp;
18283cad
AD
206};
207
0e7b3644
AD
208enum fm10k_ring_f_enum {
209 RING_F_RSS,
210 RING_F_QOS,
211 RING_F_ARRAY_SIZE /* must be last in enum set */
212};
213
214struct fm10k_ring_feature {
215 u16 limit; /* upper limit on feature indices */
216 u16 indices; /* current value of indices */
217 u16 mask; /* Mask used for feature to ring mapping */
218 u16 offset; /* offset to start of feature */
219};
220
883a9ccb
AD
221struct fm10k_iov_data {
222 unsigned int num_vfs;
223 unsigned int next_vf_mbx;
224 struct rcu_head rcu;
225 struct fm10k_vf_info vf_info[0];
226};
227
0e7b3644
AD
228#define fm10k_vxlan_port_for_each(vp, intfc) \
229 list_for_each_entry(vp, &(intfc)->vxlan_port, list)
230struct fm10k_vxlan_port {
231 struct list_head list;
232 sa_family_t sa_family;
233 __be16 port;
234};
04a5aefb
AD
235
236struct fm10k_intfc {
0e7b3644
AD
237 unsigned long active_vlans[BITS_TO_LONGS(VLAN_N_VID)];
238 struct net_device *netdev;
5cd5e2e9 239 struct fm10k_l2_accel *l2_accel; /* pointer to L2 acceleration list */
04a5aefb 240 struct pci_dev *pdev;
0e7b3644
AD
241 unsigned long state;
242
243 u32 flags;
244#define FM10K_FLAG_RESET_REQUESTED (u32)(1 << 0)
245#define FM10K_FLAG_RSS_FIELD_IPV4_UDP (u32)(1 << 1)
246#define FM10K_FLAG_RSS_FIELD_IPV6_UDP (u32)(1 << 2)
247#define FM10K_FLAG_RX_TS_ENABLED (u32)(1 << 3)
248#define FM10K_FLAG_SWPRI_CONFIG (u32)(1 << 4)
249 int xcast_mode;
250
18283cad
AD
251 /* Tx fast path data */
252 int num_tx_queues;
253 u16 tx_itr;
254
255 /* Rx fast path data */
256 int num_rx_queues;
257 u16 rx_itr;
258
e27ef599
AD
259 /* TX */
260 struct fm10k_ring *tx_ring[MAX_QUEUES] ____cacheline_aligned_in_smp;
261
b7d8514c
AD
262 u64 restart_queue;
263 u64 tx_busy;
264 u64 tx_csum_errors;
265 u64 alloc_failed;
266 u64 rx_csum_errors;
267 u64 rx_errors;
268
269 u64 tx_bytes_nic;
270 u64 tx_packets_nic;
271 u64 rx_bytes_nic;
272 u64 rx_packets_nic;
273 u64 rx_drops_nic;
0e7b3644
AD
274 u64 rx_overrun_pf;
275 u64 rx_overrun_vf;
b7d8514c 276 u32 tx_timeout_count;
04a5aefb 277
e27ef599
AD
278 /* RX */
279 struct fm10k_ring *rx_ring[MAX_QUEUES];
280
18283cad
AD
281 /* Queueing vectors */
282 struct fm10k_q_vector *q_vector[MAX_Q_VECTORS];
283 struct msix_entry *msix_entries;
284 int num_q_vectors; /* current number of q_vectors for device */
0e7b3644
AD
285 struct fm10k_ring_feature ring_feature[RING_F_ARRAY_SIZE];
286
883a9ccb
AD
287 /* SR-IOV information management structure */
288 struct fm10k_iov_data *iov_data;
289
0e7b3644 290 struct fm10k_hw_stats stats;
04a5aefb
AD
291 struct fm10k_hw hw;
292 u32 __iomem *uc_addr;
0e7b3644 293 u16 msg_enable;
18283cad
AD
294 u16 tx_ring_count;
295 u16 rx_ring_count;
b7d8514c
AD
296 struct timer_list service_timer;
297 struct work_struct service_task;
298 unsigned long next_stats_update;
299 unsigned long next_tx_hang_check;
300 unsigned long last_reset;
301 unsigned long link_down_event;
302 bool host_ready;
0e7b3644
AD
303
304 u32 reta[FM10K_RETA_SIZE];
305 u32 rssrk[FM10K_RSSRK_SIZE];
306
307 /* VXLAN port tracking information */
308 struct list_head vxlan_port;
309
310#if defined(HAVE_DCBNL_IEEE) && defined(CONFIG_DCB)
311 u8 pfc_en;
312#endif
313 u8 rx_pause;
314
315 /* GLORT resources in use by PF */
316 u16 glort;
317 u16 glort_count;
318
319 /* VLAN ID for updating multicast/unicast lists */
320 u16 vid;
321};
322
323enum fm10k_state_t {
324 __FM10K_RESETTING,
325 __FM10K_DOWN,
b7d8514c
AD
326 __FM10K_SERVICE_SCHED,
327 __FM10K_SERVICE_DISABLE,
0e7b3644
AD
328 __FM10K_MBX_LOCK,
329 __FM10K_LINK_DOWN,
04a5aefb 330};
b3890e30 331
0e7b3644
AD
332static inline void fm10k_mbx_lock(struct fm10k_intfc *interface)
333{
334 /* busy loop if we cannot obtain the lock as some calls
335 * such as ndo_set_rx_mode may be made in atomic context
336 */
337 while (test_and_set_bit(__FM10K_MBX_LOCK, &interface->state))
338 udelay(20);
339}
340
341static inline void fm10k_mbx_unlock(struct fm10k_intfc *interface)
342{
343 /* flush memory to make sure state is correct */
344 smp_mb__before_atomic();
345 clear_bit(__FM10K_MBX_LOCK, &interface->state);
346}
347
348static inline int fm10k_mbx_trylock(struct fm10k_intfc *interface)
349{
350 return !test_and_set_bit(__FM10K_MBX_LOCK, &interface->state);
351}
352
e27ef599
AD
353/* fm10k_test_staterr - test bits in Rx descriptor status and error fields */
354static inline __le32 fm10k_test_staterr(union fm10k_rx_desc *rx_desc,
355 const u32 stat_err_bits)
356{
357 return rx_desc->d.staterr & cpu_to_le32(stat_err_bits);
358}
359
360/* fm10k_desc_unused - calculate if we have unused descriptors */
361static inline u16 fm10k_desc_unused(struct fm10k_ring *ring)
362{
363 s16 unused = ring->next_to_clean - ring->next_to_use - 1;
364
365 return likely(unused < 0) ? unused + ring->count : unused;
366}
367
368#define FM10K_TX_DESC(R, i) \
369 (&(((struct fm10k_tx_desc *)((R)->desc))[i]))
370#define FM10K_RX_DESC(R, i) \
371 (&(((union fm10k_rx_desc *)((R)->desc))[i]))
372
373#define FM10K_MAX_TXD_PWR 14
374#define FM10K_MAX_DATA_PER_TXD (1 << FM10K_MAX_TXD_PWR)
375
376/* Tx Descriptors needed, worst case */
377#define TXD_USE_COUNT(S) DIV_ROUND_UP((S), FM10K_MAX_DATA_PER_TXD)
378#define DESC_NEEDED (MAX_SKB_FRAGS + 4)
379
380enum fm10k_tx_flags {
381 /* Tx offload flags */
382 FM10K_TX_FLAGS_CSUM = 0x01,
383};
384
385/* This structure is stored as little endian values as that is the native
386 * format of the Rx descriptor. The ordering of these fields is reversed
387 * from the actual ftag header to allow for a single bswap to take care
388 * of placing all of the values in network order
389 */
390union fm10k_ftag_info {
391 __le64 ftag;
392 struct {
393 /* dglort and sglort combined into a single 32bit desc read */
394 __le32 glort;
395 /* upper 16 bits of vlan are reserved 0 for swpri_type_user */
396 __le32 vlan;
397 } d;
398 struct {
399 __le16 dglort;
400 __le16 sglort;
401 __le16 vlan;
402 __le16 swpri_type_user;
403 } w;
404};
405
406struct fm10k_cb {
407 union fm10k_ftag_info fi;
408};
409
410#define FM10K_CB(skb) ((struct fm10k_cb *)(skb)->cb)
411
b3890e30
AD
412/* main */
413extern char fm10k_driver_name[];
414extern const char fm10k_driver_version[];
18283cad
AD
415int fm10k_init_queueing_scheme(struct fm10k_intfc *interface);
416void fm10k_clear_queueing_scheme(struct fm10k_intfc *interface);
b101c962
AD
417netdev_tx_t fm10k_xmit_frame_ring(struct sk_buff *skb,
418 struct fm10k_ring *tx_ring);
419void fm10k_tx_timeout_reset(struct fm10k_intfc *interface);
420bool fm10k_check_tx_hang(struct fm10k_ring *tx_ring);
421void fm10k_alloc_rx_buffers(struct fm10k_ring *rx_ring, u16 cleaned_count);
b3890e30
AD
422
423/* PCI */
18283cad
AD
424void fm10k_mbx_free_irq(struct fm10k_intfc *);
425int fm10k_mbx_request_irq(struct fm10k_intfc *);
426void fm10k_qv_free_irq(struct fm10k_intfc *interface);
427int fm10k_qv_request_irq(struct fm10k_intfc *interface);
b3890e30
AD
428int fm10k_register_pci_driver(void);
429void fm10k_unregister_pci_driver(void);
504c5eac
AD
430void fm10k_up(struct fm10k_intfc *interface);
431void fm10k_down(struct fm10k_intfc *interface);
b7d8514c
AD
432void fm10k_update_stats(struct fm10k_intfc *interface);
433void fm10k_service_event_schedule(struct fm10k_intfc *interface);
434void fm10k_update_rx_drop_en(struct fm10k_intfc *interface);
0e7b3644
AD
435
436/* Netdev */
437struct net_device *fm10k_alloc_netdev(void);
3abaae42
AD
438int fm10k_setup_rx_resources(struct fm10k_ring *);
439int fm10k_setup_tx_resources(struct fm10k_ring *);
440void fm10k_free_rx_resources(struct fm10k_ring *);
441void fm10k_free_tx_resources(struct fm10k_ring *);
442void fm10k_clean_all_rx_rings(struct fm10k_intfc *);
443void fm10k_clean_all_tx_rings(struct fm10k_intfc *);
444void fm10k_unmap_and_free_tx_resource(struct fm10k_ring *,
445 struct fm10k_tx_buffer *);
8f5e20d4
AD
446void fm10k_restore_rx_state(struct fm10k_intfc *);
447void fm10k_reset_rx_state(struct fm10k_intfc *);
aa3ac822 448int fm10k_setup_tc(struct net_device *dev, u8 tc);
504c5eac
AD
449int fm10k_open(struct net_device *netdev);
450int fm10k_close(struct net_device *netdev);
82dd0f7e
AD
451
452/* Ethtool */
453void fm10k_set_ethtool_ops(struct net_device *dev);
883a9ccb
AD
454
455/* IOV */
456s32 fm10k_iov_event(struct fm10k_intfc *interface);
457s32 fm10k_iov_mbx(struct fm10k_intfc *interface);
458void fm10k_iov_suspend(struct pci_dev *pdev);
459int fm10k_iov_resume(struct pci_dev *pdev);
460void fm10k_iov_disable(struct pci_dev *pdev);
461int fm10k_iov_configure(struct pci_dev *pdev, int num_vfs);
462s32 fm10k_iov_update_pvid(struct fm10k_intfc *interface, u16 glort, u16 pvid);
463int fm10k_ndo_set_vf_mac(struct net_device *netdev, int vf_idx, u8 *mac);
464int fm10k_ndo_set_vf_vlan(struct net_device *netdev,
465 int vf_idx, u16 vid, u8 qos);
466int fm10k_ndo_set_vf_bw(struct net_device *netdev, int vf_idx, int rate,
467 int unused);
468int fm10k_ndo_get_vf_config(struct net_device *netdev,
469 int vf_idx, struct ifla_vf_info *ivi);
b3890e30 470#endif /* _FM10K_H_ */
This page took 0.04935 seconds and 5 git commands to generate.