Linux Kernel  3.7.1
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
vxge-main.h
Go to the documentation of this file.
1 /******************************************************************************
2  * This software may be used and distributed according to the terms of
3  * the GNU General Public License (GPL), incorporated herein by reference.
4  * Drivers based on or derived from this code fall under the GPL and must
5  * retain the authorship, copyright and license notice. This file is not
6  * a complete program and may only be used when the entire operating
7  * system is licensed under the GPL.
8  * See the file COPYING in this distribution for more information.
9  *
10  * vxge-main.h: Driver for Exar Corp's X3100 Series 10GbE PCIe I/O
11  * Virtualized Server Adapter.
12  * Copyright(c) 2002-2010 Exar Corp.
13  ******************************************************************************/
14 #ifndef VXGE_MAIN_H
15 #define VXGE_MAIN_H
16 
17 #include "vxge-traffic.h"
18 #include "vxge-config.h"
19 #include "vxge-version.h"
20 #include <linux/list.h>
21 #include <linux/bitops.h>
22 #include <linux/if_vlan.h>
23 
24 #define VXGE_DRIVER_NAME "vxge"
25 #define VXGE_DRIVER_VENDOR "Neterion, Inc"
26 #define VXGE_DRIVER_FW_VERSION_MAJOR 1
27 
28 #define DRV_VERSION VXGE_VERSION_MAJOR"."VXGE_VERSION_MINOR"."\
29  VXGE_VERSION_FIX"."VXGE_VERSION_BUILD"-"\
30  VXGE_VERSION_FOR
31 
32 #define PCI_DEVICE_ID_TITAN_WIN 0x5733
33 #define PCI_DEVICE_ID_TITAN_UNI 0x5833
34 #define VXGE_HW_TITAN1_PCI_REVISION 1
35 #define VXGE_HW_TITAN1A_PCI_REVISION 2
36 
37 #define VXGE_USE_DEFAULT 0xffffffff
38 #define VXGE_HW_VPATH_MSIX_ACTIVE 4
39 #define VXGE_ALARM_MSIX_ID 2
40 #define VXGE_HW_RXSYNC_FREQ_CNT 4
41 #define VXGE_LL_WATCH_DOG_TIMEOUT (15 * HZ)
42 #define VXGE_LL_RX_COPY_THRESHOLD 256
43 #define VXGE_DEF_FIFO_LENGTH 84
44 
45 #define NO_STEERING 0
46 #define PORT_STEERING 0x1
47 #define RTH_STEERING 0x2
48 #define RX_TOS_STEERING 0x3
49 #define RX_VLAN_STEERING 0x4
50 #define RTH_BUCKET_SIZE 4
51 
52 #define TX_PRIORITY_STEERING 1
53 #define TX_VLAN_STEERING 2
54 #define TX_PORT_STEERING 3
55 #define TX_MULTIQ_STEERING 4
56 
57 #define VXGE_HW_MAC_ADDR_LEARN_DEFAULT VXGE_HW_RTS_MAC_DISABLE
58 
59 #define VXGE_TTI_BTIMER_VAL 250000
60 
61 #define VXGE_TTI_LTIMER_VAL 1000
62 #define VXGE_T1A_TTI_LTIMER_VAL 80
63 #define VXGE_TTI_RTIMER_VAL 0
64 #define VXGE_TTI_RTIMER_ADAPT_VAL 10
65 #define VXGE_T1A_TTI_RTIMER_VAL 400
66 #define VXGE_RTI_BTIMER_VAL 250
67 #define VXGE_RTI_LTIMER_VAL 100
68 #define VXGE_RTI_RTIMER_VAL 0
69 #define VXGE_RTI_RTIMER_ADAPT_VAL 15
70 #define VXGE_FIFO_INDICATE_MAX_PKTS VXGE_DEF_FIFO_LENGTH
71 #define VXGE_ISR_POLLING_CNT 8
72 #define VXGE_MAX_CONFIG_DEV 0xFF
73 #define VXGE_EXEC_MODE_DISABLE 0
74 #define VXGE_EXEC_MODE_ENABLE 1
75 #define VXGE_MAX_CONFIG_PORT 1
76 #define VXGE_ALL_VID_DISABLE 0
77 #define VXGE_ALL_VID_ENABLE 1
78 #define VXGE_PAUSE_CTRL_DISABLE 0
79 #define VXGE_PAUSE_CTRL_ENABLE 1
80 
81 #define TTI_TX_URANGE_A 5
82 #define TTI_TX_URANGE_B 15
83 #define TTI_TX_URANGE_C 40
84 #define TTI_TX_UFC_A 5
85 #define TTI_TX_UFC_B 40
86 #define TTI_TX_UFC_C 60
87 #define TTI_TX_UFC_D 100
88 #define TTI_T1A_TX_UFC_A 30
89 #define TTI_T1A_TX_UFC_B 80
90 /* Slope - (max_mtu - min_mtu)/(max_mtu_ufc - min_mtu_ufc) */
91 /* Slope - 93 */
92 /* 60 - 9k Mtu, 140 - 1.5k mtu */
93 #define TTI_T1A_TX_UFC_C(mtu) (60 + ((VXGE_HW_MAX_MTU - mtu) / 93))
94 
95 /* Slope - 37 */
96 /* 100 - 9k Mtu, 300 - 1.5k mtu */
97 #define TTI_T1A_TX_UFC_D(mtu) (100 + ((VXGE_HW_MAX_MTU - mtu) / 37))
98 
99 
100 #define RTI_RX_URANGE_A 5
101 #define RTI_RX_URANGE_B 15
102 #define RTI_RX_URANGE_C 40
103 #define RTI_T1A_RX_URANGE_A 1
104 #define RTI_T1A_RX_URANGE_B 20
105 #define RTI_T1A_RX_URANGE_C 50
106 #define RTI_RX_UFC_A 1
107 #define RTI_RX_UFC_B 5
108 #define RTI_RX_UFC_C 10
109 #define RTI_RX_UFC_D 15
110 #define RTI_T1A_RX_UFC_B 20
111 #define RTI_T1A_RX_UFC_C 50
112 #define RTI_T1A_RX_UFC_D 60
113 
114 /*
115  * The interrupt rate is maintained at 3k per second with the moderation
116  * parameters for most traffic but not all. This is the maximum interrupt
117  * count allowed per function with INTA or per vector in the case of
118  * MSI-X in a 10 millisecond time period. Enabled only for Titan 1A.
119  */
120 #define VXGE_T1A_MAX_INTERRUPT_COUNT 100
121 #define VXGE_T1A_MAX_TX_INTERRUPT_COUNT 200
122 
123 /* Milli secs timer period */
124 #define VXGE_TIMER_DELAY 10000
125 
126 #define VXGE_LL_MAX_FRAME_SIZE(dev) ((dev)->mtu + VXGE_HW_MAC_HEADER_MAX_SIZE)
127 
128 #define is_sriov(function_mode) \
129  ((function_mode == VXGE_HW_FUNCTION_MODE_SRIOV) || \
130  (function_mode == VXGE_HW_FUNCTION_MODE_SRIOV_8) || \
131  (function_mode == VXGE_HW_FUNCTION_MODE_SRIOV_4))
132 
134  /* reset events */
140 };
141 /* These flags represent the devices temporary state */
145 };
146 
148  /* mac address states */
151 };
152 
157  unsigned int vpath_per_dev;
158 };
159 
160 struct macInfo {
161  unsigned char macaddr[ETH_ALEN];
162  unsigned char macmask[ETH_ALEN];
163  unsigned int vpath_no;
165 };
166 
167 struct vxge_config {
170 
171 #define NEW_NAPI_WEIGHT 64
174 #define INTA 0
175 #define MSI 1
176 #define MSI_X 2
177 
179 
181  rth_algorithm:2,
188  rth_bkt_sz:8;
193 };
194 
196  /* Mimicing the msix_entry struct of Kernel. */
200  void *arg;
201 };
202 
203 /* Software Statistics */
204 
206 
207  /* Virtual Path */
208  unsigned long vpaths_open;
209  unsigned long vpath_open_fail;
210 
211  /* Misc. */
212  unsigned long link_up;
213  unsigned long link_down;
214 };
215 
217  struct list_head item;
221 };
222 
223 struct vxgedev;
224 
229 
230  unsigned long tx_errors;
231  unsigned long txd_not_free;
232  unsigned long txd_out_of_desc;
233  unsigned long pci_map_fail;
234 };
235 
236 struct vxge_fifo {
237  struct net_device *ndev;
238  struct pci_dev *pdev;
240  struct netdev_queue *txq;
241 
244 
245  /* Adaptive interrupt moderation parameters used in T1A */
246  unsigned long interrupt_count;
247  unsigned long jiffies;
248 
250  /* Tx stats */
253 
259 
260  unsigned long rx_errors;
261  unsigned long rx_dropped;
262  unsigned long prev_rx_frms;
263  unsigned long pci_map_fail;
264  unsigned long skb_alloc_fail;
265 };
266 
267 struct vxge_ring {
268  struct net_device *ndev;
269  struct pci_dev *pdev;
271  /* The vpath id maintained in the driver -
272  * 0 to 'maximum_vpaths_in_function - 1'
273  */
275 
276  /* Adaptive interrupt moderation parameters used in T1A */
277  unsigned long interrupt_count;
278  unsigned long jiffies;
279 
280  /* copy of the flag indicating whether rx_hwts is to be used */
282 
284  int budget;
285 
288 
289 #define VXGE_MAX_MAC_ADDR_COUNT 30
290 
294 
295  /* Rx stats */
298 
299 struct vxge_vpath {
300  struct vxge_fifo fifo;
301  struct vxge_ring ring;
302 
304 
305  /* Actual vpath id for this vpath in the device - 0 to 16 */
309  int is_open;
310  struct vxgedev *vdev;
313 
314 #define VXGE_MAX_LEARN_MAC_ADDR_CNT 2048
315  /* mac addresses currently programmed into NIC */
319 
322 };
323 #define VXGE_COPY_DEBUG_INFO_TO_LL(vdev, err, trace) { \
324  for (i = 0; i < vdev->no_of_vpath; i++) { \
325  vdev->vpaths[i].level_err = err; \
326  vdev->vpaths[i].level_trace = trace; \
327  } \
328  vdev->level_err = err; \
329  vdev->level_trace = trace; \
330 }
331 
332 struct vxgedev {
333  struct net_device *ndev;
334  struct pci_dev *pdev;
339  unsigned long state;
340 
341  /* Indicates which vpath to reset */
342  unsigned long vp_reset;
343 
344  /* Timer used for polling vpath resets */
346 
347  /* Timer used for polling vpath lockup */
349 
350  /*
351  * Flags to track whether device is in All Multicast
352  * or in promiscuous mode.
353  */
355 
356  /* A flag indicating whether rx_hwts is to be used or not. */
358  titan1:1;
359 
361  struct msix_entry *entries;
362  /*
363  * 4 for each vpath * 17;
364  * total is 68
365  */
366 #define VXGE_MAX_REQUESTED_MSIX 68
367 #define VXGE_INTR_STRLEN 80
369 
371 
374 
376  /* A debug option, when enabled and if error condition occurs,
377  * the driver will do following steps:
378  * - mask all interrupts
379  * - Not clear the source of the alarm
380  * - gracefully stop all I/O
381  * A diagnostic dump of register and stats at this point
382  * reveals very useful information.
383  */
387 
389  void __iomem *bar0;
391  int mtu;
392  /* Below variables are used for vpath selection to transmit a packet */
395 
401 };
402 
403 struct vxge_rx_priv {
404  struct sk_buff *skb;
405  unsigned char *skb_data;
408 };
409 
410 struct vxge_tx_priv {
411  struct sk_buff *skb;
413 };
414 
415 #define VXGE_MODULE_PARAM_INT(p, val) \
416  static int p = val; \
417  module_param(p, int, 0)
418 
419 static inline
420 void vxge_os_timer(struct timer_list *timer, void (*func)(unsigned long data),
421  struct vxgedev *vdev, unsigned long timeout)
422 {
423  init_timer(timer);
424  timer->function = func;
425  timer->data = (unsigned long)vdev;
426  mod_timer(timer, jiffies + timeout);
427 }
428 
430 enum vxge_hw_status vxge_reset_all_vpaths(struct vxgedev *vdev);
431 int vxge_fw_upgrade(struct vxgedev *vdev, char *fw_name, int override);
432 
433 /* #define VXGE_DEBUG_INIT: debug for initialization functions
434  * #define VXGE_DEBUG_TX : debug transmit related functions
435  * #define VXGE_DEBUG_RX : debug recevice related functions
436  * #define VXGE_DEBUG_MEM : debug memory module
437  * #define VXGE_DEBUG_LOCK: debug locks
438  * #define VXGE_DEBUG_SEM : debug semaphore
439  * #define VXGE_DEBUG_ENTRYEXIT: debug functions by adding entry exit statements
440 */
441 #define VXGE_DEBUG_INIT 0x00000001
442 #define VXGE_DEBUG_TX 0x00000002
443 #define VXGE_DEBUG_RX 0x00000004
444 #define VXGE_DEBUG_MEM 0x00000008
445 #define VXGE_DEBUG_LOCK 0x00000010
446 #define VXGE_DEBUG_SEM 0x00000020
447 #define VXGE_DEBUG_ENTRYEXIT 0x00000040
448 #define VXGE_DEBUG_INTR 0x00000080
449 #define VXGE_DEBUG_LL_CONFIG 0x00000100
450 
451 /* Debug tracing for VXGE driver */
452 #ifndef VXGE_DEBUG_MASK
453 #define VXGE_DEBUG_MASK 0x0
454 #endif
455 
456 #if (VXGE_DEBUG_LL_CONFIG & VXGE_DEBUG_MASK)
457 #define vxge_debug_ll_config(level, fmt, ...) \
458  vxge_debug_ll(level, VXGE_DEBUG_LL_CONFIG, fmt, __VA_ARGS__)
459 #else
460 #define vxge_debug_ll_config(level, fmt, ...)
461 #endif
462 
463 #if (VXGE_DEBUG_INIT & VXGE_DEBUG_MASK)
464 #define vxge_debug_init(level, fmt, ...) \
465  vxge_debug_ll(level, VXGE_DEBUG_INIT, fmt, __VA_ARGS__)
466 #else
467 #define vxge_debug_init(level, fmt, ...)
468 #endif
469 
470 #if (VXGE_DEBUG_TX & VXGE_DEBUG_MASK)
471 #define vxge_debug_tx(level, fmt, ...) \
472  vxge_debug_ll(level, VXGE_DEBUG_TX, fmt, __VA_ARGS__)
473 #else
474 #define vxge_debug_tx(level, fmt, ...)
475 #endif
476 
477 #if (VXGE_DEBUG_RX & VXGE_DEBUG_MASK)
478 #define vxge_debug_rx(level, fmt, ...) \
479  vxge_debug_ll(level, VXGE_DEBUG_RX, fmt, __VA_ARGS__)
480 #else
481 #define vxge_debug_rx(level, fmt, ...)
482 #endif
483 
484 #if (VXGE_DEBUG_MEM & VXGE_DEBUG_MASK)
485 #define vxge_debug_mem(level, fmt, ...) \
486  vxge_debug_ll(level, VXGE_DEBUG_MEM, fmt, __VA_ARGS__)
487 #else
488 #define vxge_debug_mem(level, fmt, ...)
489 #endif
490 
491 #if (VXGE_DEBUG_ENTRYEXIT & VXGE_DEBUG_MASK)
492 #define vxge_debug_entryexit(level, fmt, ...) \
493  vxge_debug_ll(level, VXGE_DEBUG_ENTRYEXIT, fmt, __VA_ARGS__)
494 #else
495 #define vxge_debug_entryexit(level, fmt, ...)
496 #endif
497 
498 #if (VXGE_DEBUG_INTR & VXGE_DEBUG_MASK)
499 #define vxge_debug_intr(level, fmt, ...) \
500  vxge_debug_ll(level, VXGE_DEBUG_INTR, fmt, __VA_ARGS__)
501 #else
502 #define vxge_debug_intr(level, fmt, ...)
503 #endif
504 
505 #define VXGE_DEVICE_DEBUG_LEVEL_SET(level, mask, vdev) {\
506  vxge_hw_device_debug_set((struct __vxge_hw_device *)vdev->devh, \
507  level, mask);\
508  VXGE_COPY_DEBUG_INFO_TO_LL(vdev, \
509  vxge_hw_device_error_level_get((struct __vxge_hw_device *) \
510  vdev->devh), \
511  vxge_hw_device_trace_level_get((struct __vxge_hw_device *) \
512  vdev->devh));\
513 }
514 
515 #ifdef NETIF_F_GSO
516 #define vxge_tcp_mss(skb) (skb_shinfo(skb)->gso_size)
517 #define vxge_udp_mss(skb) (skb_shinfo(skb)->gso_size)
518 #define vxge_offload_type(skb) (skb_shinfo(skb)->gso_type)
519 #endif
520 
521 #endif