vlib: add support for multiple buffer pools
[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 rte_mbuf_from_vlib_buffer(x) (((struct rte_mbuf *)x) - 1)
17 #define vlib_buffer_from_rte_mbuf(x) ((vlib_buffer_t *)(x+1))
18
19 #define DPDK_NB_RX_DESC_DEFAULT   1024
20 #define DPDK_NB_TX_DESC_DEFAULT   1024
21 #define DPDK_NB_RX_DESC_VIRTIO    256
22 #define DPDK_NB_TX_DESC_VIRTIO    256
23
24 #define I40E_DEV_ID_SFP_XL710           0x1572
25 #define I40E_DEV_ID_QSFP_A              0x1583
26 #define I40E_DEV_ID_QSFP_B              0x1584
27 #define I40E_DEV_ID_QSFP_C              0x1585
28 #define I40E_DEV_ID_10G_BASE_T          0x1586
29 #define I40E_DEV_ID_VF                  0x154C
30
31 /* These args appear by themselves */
32 #define foreach_eal_double_hyphen_predicate_arg \
33 _(no-shconf)                                    \
34 _(no-hpet)                                      \
35 _(no-huge)                                      \
36 _(vmware-tsc-map)
37
38 #define foreach_eal_single_hyphen_mandatory_arg \
39 _(coremask, c)                                  \
40 _(nchannels, n)                                 \
41
42 #define foreach_eal_single_hyphen_arg           \
43 _(blacklist, b)                                 \
44 _(mem-alloc-request, m)                         \
45 _(force-ranks, r)
46
47 /* These args are preceeded by "--" and followed by a single string */
48 #define foreach_eal_double_hyphen_arg           \
49 _(huge-dir)                                     \
50 _(proc-type)                                    \
51 _(file-prefix)                                  \
52 _(vdev)
53
54 typedef struct
55 {
56   /* must be first */
57   struct rte_pktmbuf_pool_private mbp_priv;
58   u8 buffer_pool_index;
59 } dpdk_mempool_private_t;
60
61
62 static inline void
63 dpdk_get_xstats (dpdk_device_t * xd)
64 {
65   int len;
66   if ((len = rte_eth_xstats_get (xd->device_index, NULL, 0)) > 0)
67     {
68       vec_validate (xd->xstats, len - 1);
69       vec_validate (xd->last_cleared_xstats, len - 1);
70
71       len =
72         rte_eth_xstats_get (xd->device_index, xd->xstats,
73                             vec_len (xd->xstats));
74
75       ASSERT (vec_len (xd->xstats) == len);
76       ASSERT (vec_len (xd->last_cleared_xstats) == len);
77
78       _vec_len (xd->xstats) = len;
79       _vec_len (xd->last_cleared_xstats) = len;
80
81     }
82 }
83
84
85 static inline void
86 dpdk_update_counters (dpdk_device_t * xd, f64 now)
87 {
88   vlib_simple_counter_main_t *cm;
89   vnet_main_t *vnm = vnet_get_main ();
90   u32 thread_index = vlib_get_thread_index ();
91   u64 rxerrors, last_rxerrors;
92
93   /* only update counters for PMD interfaces */
94   if ((xd->flags & DPDK_DEVICE_FLAG_PMD) == 0)
95     return;
96
97   xd->time_last_stats_update = now ? now : xd->time_last_stats_update;
98   clib_memcpy (&xd->last_stats, &xd->stats, sizeof (xd->last_stats));
99   rte_eth_stats_get (xd->device_index, &xd->stats);
100
101   /* maybe bump interface rx no buffer counter */
102   if (PREDICT_FALSE (xd->stats.rx_nombuf != xd->last_stats.rx_nombuf))
103     {
104       cm = vec_elt_at_index (vnm->interface_main.sw_if_counters,
105                              VNET_INTERFACE_COUNTER_RX_NO_BUF);
106
107       vlib_increment_simple_counter (cm, thread_index, xd->vlib_sw_if_index,
108                                      xd->stats.rx_nombuf -
109                                      xd->last_stats.rx_nombuf);
110     }
111
112   /* missed pkt counter */
113   if (PREDICT_FALSE (xd->stats.imissed != xd->last_stats.imissed))
114     {
115       cm = vec_elt_at_index (vnm->interface_main.sw_if_counters,
116                              VNET_INTERFACE_COUNTER_RX_MISS);
117
118       vlib_increment_simple_counter (cm, thread_index, xd->vlib_sw_if_index,
119                                      xd->stats.imissed -
120                                      xd->last_stats.imissed);
121     }
122   rxerrors = xd->stats.ierrors;
123   last_rxerrors = xd->last_stats.ierrors;
124
125   if (PREDICT_FALSE (rxerrors != last_rxerrors))
126     {
127       cm = vec_elt_at_index (vnm->interface_main.sw_if_counters,
128                              VNET_INTERFACE_COUNTER_RX_ERROR);
129
130       vlib_increment_simple_counter (cm, thread_index, xd->vlib_sw_if_index,
131                                      rxerrors - last_rxerrors);
132     }
133
134   dpdk_get_xstats (xd);
135 }
136
137 /*
138  * fd.io coding-style-patch-verification: ON
139  *
140  * Local Variables:
141  * eval: (c-set-style "gnu")
142  * End:
143  */