0b1fe92bf72aa2056f87a1ef436518dd8c1206c3
[vpp.git] / src / plugins / dpdk / device / dpdk_priv.h
1 /*
2  * Copyright (c) 2015 Cisco and/or its affiliates.
3  * Licensed under the Apache License, Version 2.0 (the "License");
4  * you may not use this file except in compliance with the License.
5  * You may obtain a copy of the License at:
6  *
7  *     http://www.apache.org/licenses/LICENSE-2.0
8  *
9  * Unless required by applicable law or agreed to in writing, software
10  * distributed under the License is distributed on an "AS IS" BASIS,
11  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12  * See the License for the specific language governing permissions and
13  * limitations under the License.
14  */
15
16 #define DPDK_NB_RX_DESC_DEFAULT   1024
17 #define DPDK_NB_TX_DESC_DEFAULT   1024
18 #define DPDK_NB_RX_DESC_VIRTIO    256
19 #define DPDK_NB_TX_DESC_VIRTIO    256
20
21 #define I40E_DEV_ID_SFP_XL710           0x1572
22 #define I40E_DEV_ID_QSFP_A              0x1583
23 #define I40E_DEV_ID_QSFP_B              0x1584
24 #define I40E_DEV_ID_QSFP_C              0x1585
25 #define I40E_DEV_ID_10G_BASE_T          0x1586
26 #define I40E_DEV_ID_VF                  0x154C
27
28 /* These args appear by themselves */
29 #define foreach_eal_double_hyphen_predicate_arg \
30 _(no-shconf)                                    \
31 _(no-hpet)                                      \
32 _(no-huge)                                      \
33 _(vmware-tsc-map)
34
35 #define foreach_eal_single_hyphen_mandatory_arg \
36 _(coremask, c)                                  \
37 _(nchannels, n)                                 \
38
39 #define foreach_eal_single_hyphen_arg           \
40 _(blacklist, b)                                 \
41 _(mem-alloc-request, m)                         \
42 _(force-ranks, r)
43
44 /* These args are preceded by "--" and followed by a single string */
45 #define foreach_eal_double_hyphen_arg           \
46 _(huge-dir)                                     \
47 _(proc-type)                                    \
48 _(file-prefix)                                  \
49 _(vdev)                                         \
50 _(log-level)
51
52 static inline void
53 dpdk_get_xstats (dpdk_device_t * xd)
54 {
55   int len, ret;
56
57   if (!(xd->flags & DPDK_DEVICE_FLAG_ADMIN_UP))
58     return;
59
60   len = rte_eth_xstats_get (xd->port_id, NULL, 0);
61   if (len < 0)
62     return;
63
64   vec_validate (xd->xstats, len - 1);
65
66   ret = rte_eth_xstats_get (xd->port_id, xd->xstats, len);
67   if (ret < 0 || ret > len)
68     {
69       _vec_len (xd->xstats) = 0;
70       return;
71     }
72
73   _vec_len (xd->xstats) = len;
74 }
75
76 static inline void
77 dpdk_update_counters (dpdk_device_t * xd, f64 now)
78 {
79   vlib_simple_counter_main_t *cm;
80   vnet_main_t *vnm = vnet_get_main ();
81   u32 thread_index = vlib_get_thread_index ();
82   u64 rxerrors, last_rxerrors;
83
84   /* only update counters for PMD interfaces */
85   if ((xd->flags & DPDK_DEVICE_FLAG_PMD) == 0)
86     return;
87
88   xd->time_last_stats_update = now ? now : xd->time_last_stats_update;
89   clib_memcpy_fast (&xd->last_stats, &xd->stats, sizeof (xd->last_stats));
90   rte_eth_stats_get (xd->port_id, &xd->stats);
91
92   /* maybe bump interface rx no buffer counter */
93   if (PREDICT_FALSE (xd->stats.rx_nombuf != xd->last_stats.rx_nombuf))
94     {
95       cm = vec_elt_at_index (vnm->interface_main.sw_if_counters,
96                              VNET_INTERFACE_COUNTER_RX_NO_BUF);
97
98       vlib_increment_simple_counter (cm, thread_index, xd->sw_if_index,
99                                      xd->stats.rx_nombuf -
100                                      xd->last_stats.rx_nombuf);
101     }
102
103   /* missed pkt counter */
104   if (PREDICT_FALSE (xd->stats.imissed != xd->last_stats.imissed))
105     {
106       cm = vec_elt_at_index (vnm->interface_main.sw_if_counters,
107                              VNET_INTERFACE_COUNTER_RX_MISS);
108
109       vlib_increment_simple_counter (cm, thread_index, xd->sw_if_index,
110                                      xd->stats.imissed -
111                                      xd->last_stats.imissed);
112     }
113   rxerrors = xd->stats.ierrors;
114   last_rxerrors = xd->last_stats.ierrors;
115
116   if (PREDICT_FALSE (rxerrors != last_rxerrors))
117     {
118       cm = vec_elt_at_index (vnm->interface_main.sw_if_counters,
119                              VNET_INTERFACE_COUNTER_RX_ERROR);
120
121       vlib_increment_simple_counter (cm, thread_index, xd->sw_if_index,
122                                      rxerrors - last_rxerrors);
123     }
124
125   dpdk_get_xstats (xd);
126 }
127
128 /*
129  * fd.io coding-style-patch-verification: ON
130  *
131  * Local Variables:
132  * eval: (c-set-style "gnu")
133  * End:
134  */