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