dpdk: allow interface name to be specified from startup.conf
[vpp.git] / src / plugins / dpdk / device / init.c
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 #include <vnet/vnet.h>
16 #include <vppinfra/vec.h>
17 #include <vppinfra/error.h>
18 #include <vppinfra/format.h>
19 #include <vppinfra/bitmap.h>
20 #include <vppinfra/linux/sysfs.h>
21 #include <vlib/unix/unix.h>
22 #include <vlib/log.h>
23
24 #include <vnet/ethernet/ethernet.h>
25 #include <dpdk/device/dpdk.h>
26 #include <vlib/pci/pci.h>
27
28 #include <rte_ring.h>
29
30 #include <stdio.h>
31 #include <stdlib.h>
32 #include <unistd.h>
33 #include <sys/stat.h>
34 #include <sys/mount.h>
35 #include <string.h>
36 #include <fcntl.h>
37
38 #include <dpdk/device/dpdk_priv.h>
39
40 #define ETHER_MAX_LEN   1518  /**< Maximum frame len, including CRC. */
41
42 dpdk_main_t dpdk_main;
43 dpdk_config_main_t dpdk_config_main;
44
45 #define LINK_STATE_ELOGS        0
46
47 /* Port configuration, mildly modified Intel app values */
48
49 static dpdk_port_type_t
50 port_type_from_speed_capa (struct rte_eth_dev_info *dev_info)
51 {
52
53   if (dev_info->speed_capa & ETH_LINK_SPEED_100G)
54     return VNET_DPDK_PORT_TYPE_ETH_100G;
55   else if (dev_info->speed_capa & ETH_LINK_SPEED_56G)
56     return VNET_DPDK_PORT_TYPE_ETH_56G;
57   else if (dev_info->speed_capa & ETH_LINK_SPEED_50G)
58     return VNET_DPDK_PORT_TYPE_ETH_50G;
59   else if (dev_info->speed_capa & ETH_LINK_SPEED_40G)
60     return VNET_DPDK_PORT_TYPE_ETH_40G;
61   else if (dev_info->speed_capa & ETH_LINK_SPEED_25G)
62     return VNET_DPDK_PORT_TYPE_ETH_25G;
63   else if (dev_info->speed_capa & ETH_LINK_SPEED_20G)
64     return VNET_DPDK_PORT_TYPE_ETH_20G;
65   else if (dev_info->speed_capa & ETH_LINK_SPEED_10G)
66     return VNET_DPDK_PORT_TYPE_ETH_10G;
67   else if (dev_info->speed_capa & ETH_LINK_SPEED_5G)
68     return VNET_DPDK_PORT_TYPE_ETH_5G;
69   else if (dev_info->speed_capa & ETH_LINK_SPEED_2_5G)
70     return VNET_DPDK_PORT_TYPE_ETH_2_5G;
71   else if (dev_info->speed_capa & ETH_LINK_SPEED_1G)
72     return VNET_DPDK_PORT_TYPE_ETH_1G;
73
74   return VNET_DPDK_PORT_TYPE_UNKNOWN;
75 }
76
77 static dpdk_port_type_t
78 port_type_from_link_speed (u32 link_speed)
79 {
80   switch (link_speed)
81     {
82     case ETH_SPEED_NUM_1G:
83       return VNET_DPDK_PORT_TYPE_ETH_1G;
84     case ETH_SPEED_NUM_2_5G:
85       return VNET_DPDK_PORT_TYPE_ETH_2_5G;
86     case ETH_SPEED_NUM_5G:
87       return VNET_DPDK_PORT_TYPE_ETH_5G;
88     case ETH_SPEED_NUM_10G:
89       return VNET_DPDK_PORT_TYPE_ETH_10G;
90     case ETH_SPEED_NUM_20G:
91       return VNET_DPDK_PORT_TYPE_ETH_20G;
92     case ETH_SPEED_NUM_25G:
93       return VNET_DPDK_PORT_TYPE_ETH_25G;
94     case ETH_SPEED_NUM_40G:
95       return VNET_DPDK_PORT_TYPE_ETH_40G;
96     case ETH_SPEED_NUM_50G:
97       return VNET_DPDK_PORT_TYPE_ETH_50G;
98     case ETH_SPEED_NUM_56G:
99       return VNET_DPDK_PORT_TYPE_ETH_56G;
100     case ETH_SPEED_NUM_100G:
101       return VNET_DPDK_PORT_TYPE_ETH_100G;
102     default:
103       return VNET_DPDK_PORT_TYPE_UNKNOWN;
104     }
105 }
106
107 static u32
108 dpdk_flag_change (vnet_main_t * vnm, vnet_hw_interface_t * hi, u32 flags)
109 {
110   dpdk_main_t *dm = &dpdk_main;
111   dpdk_device_t *xd = vec_elt_at_index (dm->devices, hi->dev_instance);
112   u32 old = 0;
113
114   if (ETHERNET_INTERFACE_FLAG_CONFIG_PROMISC (flags))
115     {
116       old = (xd->flags & DPDK_DEVICE_FLAG_PROMISC) != 0;
117
118       if (flags & ETHERNET_INTERFACE_FLAG_ACCEPT_ALL)
119         xd->flags |= DPDK_DEVICE_FLAG_PROMISC;
120       else
121         xd->flags &= ~DPDK_DEVICE_FLAG_PROMISC;
122
123       if (xd->flags & DPDK_DEVICE_FLAG_ADMIN_UP)
124         {
125           if (xd->flags & DPDK_DEVICE_FLAG_PROMISC)
126             rte_eth_promiscuous_enable (xd->port_id);
127           else
128             rte_eth_promiscuous_disable (xd->port_id);
129         }
130     }
131   else if (ETHERNET_INTERFACE_FLAG_CONFIG_MTU (flags))
132     {
133       xd->port_conf.rxmode.max_rx_pkt_len = hi->max_packet_bytes;
134       dpdk_device_setup (xd);
135     }
136   return old;
137 }
138
139 static void
140 dpdk_device_lock_init (dpdk_device_t * xd)
141 {
142   int q;
143   vec_validate (xd->lockp, xd->tx_q_used - 1);
144   for (q = 0; q < xd->tx_q_used; q++)
145     {
146       xd->lockp[q] = clib_mem_alloc_aligned (CLIB_CACHE_LINE_BYTES,
147                                              CLIB_CACHE_LINE_BYTES);
148       clib_memset ((void *) xd->lockp[q], 0, CLIB_CACHE_LINE_BYTES);
149     }
150 }
151
152 static struct rte_mempool_ops *
153 get_ops_by_name (char *ops_name)
154 {
155   u32 i;
156
157   for (i = 0; i < rte_mempool_ops_table.num_ops; i++)
158     {
159       if (!strcmp (ops_name, rte_mempool_ops_table.ops[i].name))
160         return &rte_mempool_ops_table.ops[i];
161     }
162
163   return 0;
164 }
165
166 static int
167 dpdk_ring_alloc (struct rte_mempool *mp)
168 {
169   u32 rg_flags = 0, count;
170   i32 ret;
171   char rg_name[RTE_RING_NAMESIZE];
172   struct rte_ring *r;
173
174   ret = snprintf (rg_name, sizeof (rg_name), RTE_MEMPOOL_MZ_FORMAT, mp->name);
175   if (ret < 0 || ret >= (i32) sizeof (rg_name))
176     return -ENAMETOOLONG;
177
178   /* ring flags */
179   if (mp->flags & MEMPOOL_F_SP_PUT)
180     rg_flags |= RING_F_SP_ENQ;
181   if (mp->flags & MEMPOOL_F_SC_GET)
182     rg_flags |= RING_F_SC_DEQ;
183
184   count = rte_align32pow2 (mp->size + 1);
185   /*
186    * Allocate the ring that will be used to store objects.
187    * Ring functions will return appropriate errors if we are
188    * running as a secondary process etc., so no checks made
189    * in this function for that condition.
190    */
191   /* XXX can we get memory from the right socket? */
192   r = clib_mem_alloc_aligned (rte_ring_get_memsize (count),
193                               CLIB_CACHE_LINE_BYTES);
194
195   /* XXX rte_ring_lookup will not work */
196
197   ret = rte_ring_init (r, rg_name, count, rg_flags);
198   if (ret)
199     return ret;
200
201   mp->pool_data = r;
202
203   return 0;
204 }
205
206 static int
207 dpdk_port_crc_strip_enabled (dpdk_device_t * xd)
208 {
209 #if RTE_VERSION < RTE_VERSION_NUM(18, 8, 0, 0)
210   return ! !(xd->port_conf.rxmode.hw_strip_crc);
211 #elif RTE_VERSION < RTE_VERSION_NUM(18, 11, 0, 0)
212   return ! !(xd->port_conf.rxmode.offloads & DEV_RX_OFFLOAD_CRC_STRIP);
213 #else
214   return !(xd->port_conf.rxmode.offloads & DEV_RX_OFFLOAD_KEEP_CRC);
215 #endif
216 }
217
218 static clib_error_t *
219 dpdk_lib_init (dpdk_main_t * dm)
220 {
221   u32 nports;
222   u32 mtu, max_rx_frame;
223   u32 nb_desc = 0;
224   int i;
225   clib_error_t *error;
226   vlib_main_t *vm = vlib_get_main ();
227   vlib_thread_main_t *tm = vlib_get_thread_main ();
228   vnet_device_main_t *vdm = &vnet_device_main;
229   vnet_sw_interface_t *sw;
230   vnet_hw_interface_t *hi;
231   dpdk_device_t *xd;
232   vlib_pci_addr_t last_pci_addr;
233   u32 last_pci_addr_port = 0;
234   vlib_thread_registration_t *tr_hqos;
235   uword *p_hqos;
236
237   u32 next_hqos_cpu = 0;
238   u8 af_packet_instance_num = 0;
239   u8 bond_ether_instance_num = 0;
240   last_pci_addr.as_u32 = ~0;
241
242   dm->hqos_cpu_first_index = 0;
243   dm->hqos_cpu_count = 0;
244
245   /* find out which cpus will be used for I/O TX */
246   p_hqos = hash_get_mem (tm->thread_registrations_by_name, "hqos-threads");
247   tr_hqos = p_hqos ? (vlib_thread_registration_t *) p_hqos[0] : 0;
248
249   if (tr_hqos && tr_hqos->count > 0)
250     {
251       dm->hqos_cpu_first_index = tr_hqos->first_index;
252       dm->hqos_cpu_count = tr_hqos->count;
253     }
254
255   vec_validate_aligned (dm->devices_by_hqos_cpu, tm->n_vlib_mains - 1,
256                         CLIB_CACHE_LINE_BYTES);
257
258   nports = rte_eth_dev_count_avail ();
259
260   if (nports < 1)
261     {
262       dpdk_log_notice ("DPDK drivers found no ports...");
263     }
264
265   if (CLIB_DEBUG > 0)
266     dpdk_log_notice ("DPDK drivers found %d ports...", nports);
267
268   if (dm->conf->enable_tcp_udp_checksum)
269     dm->buffer_flags_template &= ~(VNET_BUFFER_F_L4_CHECKSUM_CORRECT
270                                    | VNET_BUFFER_F_L4_CHECKSUM_COMPUTED);
271
272   /* vlib_buffer_t template */
273   vec_validate_aligned (dm->per_thread_data, tm->n_vlib_mains - 1,
274                         CLIB_CACHE_LINE_BYTES);
275   for (i = 0; i < tm->n_vlib_mains; i++)
276     {
277       vlib_buffer_free_list_t *fl;
278       dpdk_per_thread_data_t *ptd = vec_elt_at_index (dm->per_thread_data, i);
279       fl = vlib_buffer_get_free_list (vm,
280                                       VLIB_BUFFER_DEFAULT_FREE_LIST_INDEX);
281       vlib_buffer_init_for_free_list (&ptd->buffer_template, fl);
282       ptd->buffer_template.flags = dm->buffer_flags_template;
283       vnet_buffer (&ptd->buffer_template)->sw_if_index[VLIB_TX] = (u32) ~ 0;
284     }
285
286   /* *INDENT-OFF* */
287   RTE_ETH_FOREACH_DEV(i)
288     {
289       u8 addr[6];
290       u8 vlan_strip = 0;
291       struct rte_eth_dev_info dev_info;
292       struct rte_pci_device *pci_dev;
293       struct rte_eth_link l;
294       dpdk_device_config_t *devconf = 0;
295       vlib_pci_addr_t pci_addr;
296       uword *p = 0;
297
298       if (!rte_eth_dev_is_valid_port(i))
299         continue;
300
301       rte_eth_link_get_nowait (i, &l);
302       rte_eth_dev_info_get (i, &dev_info);
303
304       if (dev_info.device == 0)
305         {
306           clib_warning ("DPDK bug: missing device info. Skipping %s device",
307                         dev_info.driver_name);
308           continue;
309         }
310
311       pci_dev = dpdk_get_pci_device (&dev_info);
312
313       if (pci_dev)      /* bonded interface has no pci info */
314         {
315           pci_addr.domain = pci_dev->addr.domain;
316           pci_addr.bus = pci_dev->addr.bus;
317           pci_addr.slot = pci_dev->addr.devid;
318           pci_addr.function = pci_dev->addr.function;
319           p = hash_get (dm->conf->device_config_index_by_pci_addr,
320                         pci_addr.as_u32);
321         }
322
323
324       /* Create vnet interface */
325       vec_add2_aligned (dm->devices, xd, 1, CLIB_CACHE_LINE_BYTES);
326       xd->nb_rx_desc = DPDK_NB_RX_DESC_DEFAULT;
327       xd->nb_tx_desc = DPDK_NB_TX_DESC_DEFAULT;
328       xd->cpu_socket = (i8) rte_eth_dev_socket_id (i);
329
330       if (p)
331         {
332           devconf = pool_elt_at_index (dm->conf->dev_confs, p[0]);
333           xd->name = devconf->name;
334         }
335       else
336         devconf = &dm->conf->default_devconf;
337
338       /* Handle interface naming for devices with multiple ports sharing same PCI ID */
339       if (pci_dev)
340         {
341           struct rte_eth_dev_info di = { 0 };
342           struct rte_pci_device *next_pci_dev;
343           rte_eth_dev_info_get (i + 1, &di);
344           next_pci_dev = di.device ? RTE_DEV_TO_PCI (di.device) : 0;
345           if (pci_dev && next_pci_dev &&
346               pci_addr.as_u32 != last_pci_addr.as_u32 &&
347               memcmp (&pci_dev->addr, &next_pci_dev->addr,
348                       sizeof (struct rte_pci_addr)) == 0)
349             {
350               xd->interface_name_suffix = format (0, "0");
351               last_pci_addr.as_u32 = pci_addr.as_u32;
352               last_pci_addr_port = i;
353             }
354           else if (pci_addr.as_u32 == last_pci_addr.as_u32)
355             {
356               xd->interface_name_suffix =
357                 format (0, "%u", i - last_pci_addr_port);
358             }
359           else
360             {
361               last_pci_addr.as_u32 = ~0;
362             }
363         }
364       else
365         last_pci_addr.as_u32 = ~0;
366
367       clib_memcpy (&xd->tx_conf, &dev_info.default_txconf,
368                    sizeof (struct rte_eth_txconf));
369
370       if (dev_info.rx_offload_capa & DEV_RX_OFFLOAD_IPV4_CKSUM)
371         {
372           xd->port_conf.rxmode.offloads |= DEV_RX_OFFLOAD_IPV4_CKSUM;
373           xd->flags |= DPDK_DEVICE_FLAG_RX_IP4_CKSUM;
374         }
375
376       if (dm->conf->no_multi_seg)
377         {
378 #if RTE_VERSION < RTE_VERSION_NUM(18, 8, 0, 0)
379           xd->tx_conf.txq_flags |= ETH_TXQ_FLAGS_NOMULTSEGS;
380           xd->port_conf.rxmode.jumbo_frame = 0;
381           xd->port_conf.rxmode.enable_scatter = 0;
382 #else
383           xd->port_conf.txmode.offloads &= ~DEV_TX_OFFLOAD_MULTI_SEGS;
384           xd->port_conf.rxmode.offloads &= ~DEV_RX_OFFLOAD_JUMBO_FRAME;
385           xd->port_conf.rxmode.offloads &= ~DEV_RX_OFFLOAD_SCATTER;
386 #endif
387         }
388       else
389         {
390 #if RTE_VERSION < RTE_VERSION_NUM(18, 8, 0, 0)
391           xd->tx_conf.txq_flags &= ~ETH_TXQ_FLAGS_NOMULTSEGS;
392           xd->port_conf.rxmode.jumbo_frame = 1;
393           xd->port_conf.rxmode.enable_scatter = 1;
394 #else
395           xd->port_conf.txmode.offloads |= DEV_TX_OFFLOAD_MULTI_SEGS;
396           xd->port_conf.rxmode.offloads |= DEV_RX_OFFLOAD_JUMBO_FRAME;
397           xd->port_conf.rxmode.offloads |= DEV_RX_OFFLOAD_SCATTER;
398 #endif
399           xd->flags |= DPDK_DEVICE_FLAG_MAYBE_MULTISEG;
400         }
401
402       xd->tx_q_used = clib_min (dev_info.max_tx_queues, tm->n_vlib_mains);
403
404       if (devconf->num_tx_queues > 0
405           && devconf->num_tx_queues < xd->tx_q_used)
406         xd->tx_q_used = clib_min (xd->tx_q_used, devconf->num_tx_queues);
407
408       if (devconf->num_rx_queues > 1
409           && dev_info.max_rx_queues >= devconf->num_rx_queues)
410         {
411           xd->rx_q_used = devconf->num_rx_queues;
412           xd->port_conf.rxmode.mq_mode = ETH_MQ_RX_RSS;
413           if (devconf->rss_fn == 0)
414             xd->port_conf.rx_adv_conf.rss_conf.rss_hf =
415               ETH_RSS_IP | ETH_RSS_UDP | ETH_RSS_TCP;
416           else
417             {
418               u64 unsupported_bits;
419               xd->port_conf.rx_adv_conf.rss_conf.rss_hf = devconf->rss_fn;
420               unsupported_bits = xd->port_conf.rx_adv_conf.rss_conf.rss_hf;
421               unsupported_bits &= ~dev_info.flow_type_rss_offloads;
422               if (unsupported_bits)
423                 dpdk_log_warn ("Unsupported RSS hash functions: %U",
424                                format_dpdk_rss_hf_name, unsupported_bits);
425             }
426           xd->port_conf.rx_adv_conf.rss_conf.rss_hf &=
427             dev_info.flow_type_rss_offloads;
428         }
429       else
430         xd->rx_q_used = 1;
431
432       xd->flags |= DPDK_DEVICE_FLAG_PMD;
433
434       /* workaround for drivers not setting driver_name */
435       if ((!dev_info.driver_name) && (pci_dev))
436         dev_info.driver_name = pci_dev->driver->driver.name;
437
438       ASSERT (dev_info.driver_name);
439
440       if (!xd->pmd)
441         {
442
443
444 #define _(s,f) else if (dev_info.driver_name &&                 \
445                         !strcmp(dev_info.driver_name, s))       \
446                  xd->pmd = VNET_DPDK_PMD_##f;
447           if (0)
448             ;
449           foreach_dpdk_pmd
450 #undef _
451             else
452             xd->pmd = VNET_DPDK_PMD_UNKNOWN;
453
454           xd->port_type = VNET_DPDK_PORT_TYPE_UNKNOWN;
455           xd->nb_rx_desc = DPDK_NB_RX_DESC_DEFAULT;
456           xd->nb_tx_desc = DPDK_NB_TX_DESC_DEFAULT;
457
458           switch (xd->pmd)
459             {
460               /* Drivers with valid speed_capa set */
461             case VNET_DPDK_PMD_E1000EM:
462             case VNET_DPDK_PMD_IGB:
463             case VNET_DPDK_PMD_IXGBE:
464             case VNET_DPDK_PMD_I40E:
465               xd->port_type = port_type_from_speed_capa (&dev_info);
466               xd->supported_flow_actions = VNET_FLOW_ACTION_MARK |
467                 VNET_FLOW_ACTION_REDIRECT_TO_NODE |
468                 VNET_FLOW_ACTION_BUFFER_ADVANCE |
469                 VNET_FLOW_ACTION_COUNT | VNET_FLOW_ACTION_DROP;
470
471               if (dm->conf->no_tx_checksum_offload == 0)
472                 {
473 #if RTE_VERSION < RTE_VERSION_NUM(18, 8, 0, 0)
474                   xd->tx_conf.txq_flags &= ~(ETH_TXQ_FLAGS_NOXSUMUDP |
475                                                      ETH_TXQ_FLAGS_NOXSUMTCP);
476 #else
477                   xd->port_conf.txmode.offloads |= DEV_TX_OFFLOAD_TCP_CKSUM;
478                   xd->port_conf.txmode.offloads |= DEV_TX_OFFLOAD_UDP_CKSUM;
479 #endif
480                   xd->flags |=
481                     DPDK_DEVICE_FLAG_TX_OFFLOAD |
482                     DPDK_DEVICE_FLAG_INTEL_PHDR_CKSUM;
483                 }
484
485
486               break;
487             case VNET_DPDK_PMD_CXGBE:
488             case VNET_DPDK_PMD_MLX4:
489             case VNET_DPDK_PMD_MLX5:
490             case VNET_DPDK_PMD_QEDE:
491               xd->port_type = port_type_from_speed_capa (&dev_info);
492               break;
493
494               /* SR-IOV VFs */
495             case VNET_DPDK_PMD_IGBVF:
496             case VNET_DPDK_PMD_IXGBEVF:
497             case VNET_DPDK_PMD_I40EVF:
498               xd->port_type = VNET_DPDK_PORT_TYPE_ETH_VF;
499 #if RTE_VERSION < RTE_VERSION_NUM(18, 8, 0, 0)
500               xd->port_conf.rxmode.hw_strip_crc = 1;
501 #elif RTE_VERSION < RTE_VERSION_NUM(18, 11, 0, 0)
502               xd->port_conf.rxmode.offloads |= DEV_RX_OFFLOAD_CRC_STRIP;
503 #endif
504               break;
505
506             case VNET_DPDK_PMD_THUNDERX:
507               xd->port_type = VNET_DPDK_PORT_TYPE_ETH_VF;
508 #if RTE_VERSION < RTE_VERSION_NUM(18, 8, 0, 0)
509               xd->port_conf.rxmode.hw_strip_crc = 1;
510 #elif RTE_VERSION < RTE_VERSION_NUM(18, 11, 0, 0)
511               xd->port_conf.rxmode.offloads |= DEV_RX_OFFLOAD_CRC_STRIP;
512 #endif
513
514               if (dm->conf->no_tx_checksum_offload == 0)
515                 {
516 #if RTE_VERSION < RTE_VERSION_NUM(18, 8, 0, 0)
517                   xd->tx_conf.txq_flags &= ~(ETH_TXQ_FLAGS_NOXSUMUDP |
518                                                      ETH_TXQ_FLAGS_NOXSUMTCP);
519 #else
520                   xd->port_conf.txmode.offloads |= DEV_TX_OFFLOAD_TCP_CKSUM;
521                   xd->port_conf.txmode.offloads |= DEV_TX_OFFLOAD_UDP_CKSUM;
522 #endif
523                   xd->flags |=
524                     DPDK_DEVICE_FLAG_TX_OFFLOAD;
525                 }
526               break;
527
528             case VNET_DPDK_PMD_ENA:
529               xd->port_type = VNET_DPDK_PORT_TYPE_ETH_VF;
530 #if RTE_VERSION < RTE_VERSION_NUM(18, 8, 0, 0)
531               xd->port_conf.rxmode.enable_scatter = 0;
532 #else
533               xd->port_conf.rxmode.offloads &= ~DEV_RX_OFFLOAD_SCATTER;
534 #endif
535               break;
536
537             case VNET_DPDK_PMD_DPAA2:
538               xd->port_type = VNET_DPDK_PORT_TYPE_ETH_10G;
539               break;
540
541               /* Cisco VIC */
542             case VNET_DPDK_PMD_ENIC:
543               if (l.link_speed == 40000)
544                 xd->port_type = VNET_DPDK_PORT_TYPE_ETH_40G;
545               else
546                 xd->port_type = VNET_DPDK_PORT_TYPE_ETH_10G;
547               break;
548
549               /* Intel Red Rock Canyon */
550             case VNET_DPDK_PMD_FM10K:
551               xd->port_type = VNET_DPDK_PORT_TYPE_ETH_SWITCH;
552 #if RTE_VERSION < RTE_VERSION_NUM(18, 8, 0, 0)
553               xd->port_conf.rxmode.hw_strip_crc = 1;
554 #elif RTE_VERSION < RTE_VERSION_NUM(18, 11, 0, 0)
555               xd->port_conf.rxmode.offloads |= DEV_RX_OFFLOAD_CRC_STRIP;
556 #endif
557               break;
558
559               /* virtio */
560             case VNET_DPDK_PMD_VIRTIO:
561               xd->port_type = VNET_DPDK_PORT_TYPE_ETH_1G;
562               xd->nb_rx_desc = DPDK_NB_RX_DESC_VIRTIO;
563               xd->nb_tx_desc = DPDK_NB_TX_DESC_VIRTIO;
564               break;
565
566               /* vmxnet3 */
567             case VNET_DPDK_PMD_VMXNET3:
568               xd->port_type = VNET_DPDK_PORT_TYPE_ETH_1G;
569 #if RTE_VERSION < RTE_VERSION_NUM(18, 8, 0, 0)
570               xd->tx_conf.txq_flags |= ETH_TXQ_FLAGS_NOMULTSEGS;
571 #else
572               xd->port_conf.txmode.offloads |= DEV_TX_OFFLOAD_MULTI_SEGS;
573 #endif
574               break;
575
576             case VNET_DPDK_PMD_AF_PACKET:
577               xd->port_type = VNET_DPDK_PORT_TYPE_AF_PACKET;
578               xd->af_packet_instance_num = af_packet_instance_num++;
579               break;
580
581             case VNET_DPDK_PMD_BOND:
582               xd->port_type = VNET_DPDK_PORT_TYPE_ETH_BOND;
583               xd->bond_instance_num = bond_ether_instance_num++;
584               break;
585
586             case VNET_DPDK_PMD_VIRTIO_USER:
587               xd->port_type = VNET_DPDK_PORT_TYPE_VIRTIO_USER;
588               break;
589
590             case VNET_DPDK_PMD_VHOST_ETHER:
591               xd->port_type = VNET_DPDK_PORT_TYPE_VHOST_ETHER;
592               break;
593
594             case VNET_DPDK_PMD_LIOVF_ETHER:
595               xd->port_type = VNET_DPDK_PORT_TYPE_ETH_VF;
596               break;
597
598             case VNET_DPDK_PMD_FAILSAFE:
599               xd->port_type = VNET_DPDK_PORT_TYPE_FAILSAFE;
600               xd->port_conf.intr_conf.lsc = 1;
601               break;
602
603             case VNET_DPDK_PMD_NETVSC:
604               xd->port_type = port_type_from_link_speed (l.link_speed);
605               break;
606
607             default:
608               xd->port_type = VNET_DPDK_PORT_TYPE_UNKNOWN;
609             }
610
611           if (devconf->num_rx_desc)
612             xd->nb_rx_desc = devconf->num_rx_desc;
613
614           if (devconf->num_tx_desc)
615             xd->nb_tx_desc = devconf->num_tx_desc;
616         }
617
618       if (xd->pmd == VNET_DPDK_PMD_AF_PACKET)
619         {
620           f64 now = vlib_time_now (vm);
621           u32 rnd;
622           rnd = (u32) (now * 1e6);
623           rnd = random_u32 (&rnd);
624           clib_memcpy (addr + 2, &rnd, sizeof (rnd));
625           addr[0] = 2;
626           addr[1] = 0xfe;
627         }
628       else
629         rte_eth_macaddr_get (i, (struct ether_addr *) addr);
630
631       if (xd->tx_q_used < tm->n_vlib_mains)
632         dpdk_device_lock_init (xd);
633
634       xd->port_id = i;
635       xd->device_index = xd - dm->devices;
636       xd->per_interface_next_index = ~0;
637
638       /* assign interface to input thread */
639       int q;
640
641       if (devconf->hqos_enabled)
642         {
643           xd->flags |= DPDK_DEVICE_FLAG_HQOS;
644
645           int cpu;
646           if (devconf->hqos.hqos_thread_valid)
647             {
648               if (devconf->hqos.hqos_thread >= dm->hqos_cpu_count)
649                 return clib_error_return (0, "invalid HQoS thread index");
650
651               cpu = dm->hqos_cpu_first_index + devconf->hqos.hqos_thread;
652             }
653           else
654             {
655               if (dm->hqos_cpu_count == 0)
656                 return clib_error_return (0, "no HQoS threads available");
657
658               cpu = dm->hqos_cpu_first_index + next_hqos_cpu;
659
660               next_hqos_cpu++;
661               if (next_hqos_cpu == dm->hqos_cpu_count)
662                 next_hqos_cpu = 0;
663
664               devconf->hqos.hqos_thread_valid = 1;
665               devconf->hqos.hqos_thread = cpu;
666             }
667
668           dpdk_device_and_queue_t *dq;
669           vec_add2 (dm->devices_by_hqos_cpu[cpu], dq, 1);
670           dq->device = xd->device_index;
671           dq->queue_id = 0;
672         }
673
674       /* count the number of descriptors used for this device */
675       nb_desc += xd->nb_rx_desc + xd->nb_tx_desc * xd->tx_q_used;
676
677       error = ethernet_register_interface
678         (dm->vnet_main, dpdk_device_class.index, xd->device_index,
679          /* ethernet address */ addr,
680          &xd->hw_if_index, dpdk_flag_change);
681       if (error)
682         return error;
683
684       /*
685        * Ensure default mtu is not > the mtu read from the hardware.
686        * Otherwise rte_eth_dev_configure() will fail and the port will
687        * not be available.
688        * Calculate max_frame_size and mtu supported by NIC
689        */
690       if (ETHERNET_MAX_PACKET_BYTES > dev_info.max_rx_pktlen)
691         {
692           /*
693            * This device does not support the platforms's max frame
694            * size. Use it's advertised mru instead.
695            */
696           max_rx_frame = dev_info.max_rx_pktlen;
697           mtu = dev_info.max_rx_pktlen - sizeof (ethernet_header_t);
698         }
699       else
700         {
701           /* VPP treats MTU and max_rx_pktlen both equal to
702            * ETHERNET_MAX_PACKET_BYTES, if dev_info.max_rx_pktlen >=
703            * ETHERNET_MAX_PACKET_BYTES + sizeof(ethernet_header_t)
704            */
705           if (dev_info.max_rx_pktlen >= (ETHERNET_MAX_PACKET_BYTES +
706                                          sizeof (ethernet_header_t)))
707             {
708               mtu = ETHERNET_MAX_PACKET_BYTES;
709               max_rx_frame = ETHERNET_MAX_PACKET_BYTES;
710
711               /*
712                * Some platforms do not account for Ethernet FCS (4 bytes) in
713                * MTU calculations. To interop with them increase mru but only
714                * if the device's settings can support it.
715                */
716               if (dpdk_port_crc_strip_enabled (xd) &&
717                   (dev_info.max_rx_pktlen >= (ETHERNET_MAX_PACKET_BYTES +
718                                               sizeof (ethernet_header_t) +
719                                               4)))
720                 {
721                   max_rx_frame += 4;
722                 }
723             }
724           else
725             {
726               max_rx_frame = ETHERNET_MAX_PACKET_BYTES;
727               mtu = ETHERNET_MAX_PACKET_BYTES - sizeof (ethernet_header_t);
728
729               if (dpdk_port_crc_strip_enabled (xd) &&
730                   (dev_info.max_rx_pktlen >= (ETHERNET_MAX_PACKET_BYTES + 4)))
731                 {
732                   max_rx_frame += 4;
733                 }
734             }
735         }
736
737       if (xd->pmd == VNET_DPDK_PMD_FAILSAFE)
738         {
739           /* failsafe device numerables are reported with active device only,
740            * need to query the mtu for current device setup to overwrite
741            * reported value.
742            */
743           uint16_t dev_mtu;
744           if (!rte_eth_dev_get_mtu (i, &dev_mtu))
745             {
746               mtu = dev_mtu;
747               max_rx_frame = mtu + sizeof (ethernet_header_t);
748
749               if (dpdk_port_crc_strip_enabled (xd))
750                 {
751                   max_rx_frame += 4;
752                 }
753             }
754         }
755
756       /*Set port rxmode config */
757       xd->port_conf.rxmode.max_rx_pkt_len = max_rx_frame;
758
759       sw = vnet_get_hw_sw_interface (dm->vnet_main, xd->hw_if_index);
760       xd->sw_if_index = sw->sw_if_index;
761       vnet_hw_interface_set_input_node (dm->vnet_main, xd->hw_if_index,
762                                         dpdk_input_node.index);
763
764       if (devconf->workers)
765         {
766           int i;
767           q = 0;
768           clib_bitmap_foreach (i, devconf->workers, ({
769             vnet_hw_interface_assign_rx_thread (dm->vnet_main, xd->hw_if_index, q++,
770                                              vdm->first_worker_thread_index + i);
771           }));
772         }
773       else
774         for (q = 0; q < xd->rx_q_used; q++)
775           {
776             vnet_hw_interface_assign_rx_thread (dm->vnet_main, xd->hw_if_index, q,      /* any */
777                                                 ~1);
778           }
779
780       /*Get vnet hardware interface */
781       hi = vnet_get_hw_interface (dm->vnet_main, xd->hw_if_index);
782
783       /*Override default max_packet_bytes and max_supported_bytes set in
784        * ethernet_register_interface() above*/
785       if (hi)
786         {
787           hi->max_packet_bytes = mtu;
788           hi->max_supported_packet_bytes = max_rx_frame;
789         }
790
791       if (dm->conf->no_tx_checksum_offload == 0)
792         if (xd->flags & DPDK_DEVICE_FLAG_TX_OFFLOAD && hi != NULL)
793           hi->flags |= VNET_HW_INTERFACE_FLAG_SUPPORTS_TX_L4_CKSUM_OFFLOAD;
794
795       dpdk_device_setup (xd);
796
797       if (vec_len (xd->errors))
798         dpdk_log_err ("setup failed for device %U. Errors:\n  %U",
799                       format_dpdk_device_name, i,
800                       format_dpdk_device_errors, xd);
801
802       if (devconf->hqos_enabled)
803         {
804           clib_error_t *rv;
805           rv = dpdk_port_setup_hqos (xd, &devconf->hqos);
806           if (rv)
807             return rv;
808         }
809
810       /*
811        * For cisco VIC vNIC, set default to VLAN strip enabled, unless
812        * specified otherwise in the startup config.
813        * For other NICs default to VLAN strip disabled, unless specified
814        * otherwise in the startup config.
815        */
816       if (xd->pmd == VNET_DPDK_PMD_ENIC)
817         {
818           if (devconf->vlan_strip_offload != DPDK_DEVICE_VLAN_STRIP_OFF)
819             vlan_strip = 1;     /* remove vlan tag from VIC port by default */
820           else
821             dpdk_log_warn ("VLAN strip disabled for interface\n");
822         }
823       else if (devconf->vlan_strip_offload == DPDK_DEVICE_VLAN_STRIP_ON)
824         vlan_strip = 1;
825
826       if (vlan_strip)
827         {
828           int vlan_off;
829           vlan_off = rte_eth_dev_get_vlan_offload (xd->port_id);
830           vlan_off |= ETH_VLAN_STRIP_OFFLOAD;
831 #if RTE_VERSION < RTE_VERSION_NUM(18, 8, 0, 0)
832           xd->port_conf.rxmode.hw_vlan_strip = vlan_off;
833 #else
834           if (vlan_off)
835             xd->port_conf.rxmode.offloads |= DEV_RX_OFFLOAD_VLAN_STRIP;
836           else
837             xd->port_conf.rxmode.offloads &= ~DEV_RX_OFFLOAD_VLAN_STRIP;
838 #endif
839           if (rte_eth_dev_set_vlan_offload (xd->port_id, vlan_off) == 0)
840             dpdk_log_info ("VLAN strip enabled for interface\n");
841           else
842             dpdk_log_warn ("VLAN strip cannot be supported by interface\n");
843         }
844
845       if (hi)
846         hi->max_packet_bytes = xd->port_conf.rxmode.max_rx_pkt_len
847           - sizeof (ethernet_header_t);
848       else
849         clib_warning ("hi NULL");
850
851       if (dm->conf->no_multi_seg)
852         mtu = mtu > ETHER_MAX_LEN ? ETHER_MAX_LEN : mtu;
853
854       rte_eth_dev_set_mtu (xd->port_id, mtu);
855     }
856   /* *INDENT-ON* */
857
858   if (nb_desc > dm->conf->num_mbufs)
859     dpdk_log_err ("%d mbufs allocated but total rx/tx ring size is %d\n",
860                   dm->conf->num_mbufs, nb_desc);
861
862   return 0;
863 }
864
865 static void
866 dpdk_bind_devices_to_uio (dpdk_config_main_t * conf)
867 {
868   vlib_main_t *vm = vlib_get_main ();
869   clib_error_t *error;
870   u8 *pci_addr = 0;
871   int num_whitelisted = vec_len (conf->dev_confs);
872   vlib_pci_device_info_t *d = 0;
873   vlib_pci_addr_t *addr = 0, *addrs;
874
875   addrs = vlib_pci_get_all_dev_addrs ();
876   /* *INDENT-OFF* */
877   vec_foreach (addr, addrs)
878     {
879     dpdk_device_config_t * devconf = 0;
880     vec_reset_length (pci_addr);
881     pci_addr = format (pci_addr, "%U%c", format_vlib_pci_addr, addr, 0);
882     if (d)
883     {
884       vlib_pci_free_device_info (d);
885       d = 0;
886       }
887     d = vlib_pci_get_device_info (vm, addr, &error);
888     if (error)
889     {
890       clib_error_report (error);
891       continue;
892     }
893
894     if (d->device_class != PCI_CLASS_NETWORK_ETHERNET && d->device_class != PCI_CLASS_PROCESSOR_CO)
895       continue;
896
897     if (num_whitelisted)
898       {
899         uword * p = hash_get (conf->device_config_index_by_pci_addr, addr->as_u32);
900
901         if (!p)
902           continue;
903
904         devconf = pool_elt_at_index (conf->dev_confs, p[0]);
905       }
906
907     /* virtio */
908     if (d->vendor_id == 0x1af4 &&
909             (d->device_id == VIRTIO_PCI_LEGACY_DEVICEID_NET ||
910              d->device_id == VIRTIO_PCI_MODERN_DEVICEID_NET))
911       ;
912     /* vmxnet3 */
913     else if (d->vendor_id == 0x15ad && d->device_id == 0x07b0)
914       {
915         /*
916          * For vmxnet3 PCI, unless it is explicitly specified in the whitelist,
917          * the default is to put it in the blacklist.
918          */
919         if (devconf == 0)
920           {
921             pool_get (conf->dev_confs, devconf);
922             hash_set (conf->device_config_index_by_pci_addr, addr->as_u32,
923                       devconf - conf->dev_confs);
924             devconf->pci_addr.as_u32 = addr->as_u32;
925             devconf->is_blacklisted = 1;
926           }
927       }
928     /* all Intel network devices */
929     else if (d->vendor_id == 0x8086 && d->device_class == PCI_CLASS_NETWORK_ETHERNET)
930       ;
931     /* all Intel QAT devices VFs */
932     else if (d->vendor_id == 0x8086 && d->device_class == PCI_CLASS_PROCESSOR_CO &&
933         (d->device_id == 0x0443 || d->device_id == 0x37c9 || d->device_id == 0x19e3))
934       ;
935     /* Cisco VIC */
936     else if (d->vendor_id == 0x1137 && d->device_id == 0x0043)
937       ;
938     /* Chelsio T4/T5 */
939     else if (d->vendor_id == 0x1425 && (d->device_id & 0xe000) == 0x4000)
940       ;
941     /* Amazen Elastic Network Adapter */
942     else if (d->vendor_id == 0x1d0f && d->device_id >= 0xec20 && d->device_id <= 0xec21)
943       ;
944     /* Cavium Network Adapter */
945     else if (d->vendor_id == 0x177d && d->device_id == 0x9712)
946       ;
947     /* Cavium FastlinQ QL41000 Series */
948     else if (d->vendor_id == 0x1077 && d->device_id >= 0x8070 && d->device_id <= 0x8090)
949       ;
950     /* Mellanox mlx4 */
951     else if (d->vendor_id == 0x15b3 && d->device_id >= 0x1003 && d->device_id <= 0x1004)
952       {
953         continue;
954       }
955     /* Mellanox mlx5 */
956     else if (d->vendor_id == 0x15b3 && d->device_id >= 0x1013 && d->device_id <= 0x101a)
957       {
958         continue;
959       }
960     else
961       {
962         dpdk_log_warn ("Unsupported PCI device 0x%04x:0x%04x found "
963                       "at PCI address %s\n", (u16) d->vendor_id, (u16) d->device_id,
964                       pci_addr);
965         continue;
966       }
967
968     error = vlib_pci_bind_to_uio (vm, addr, (char *) conf->uio_driver_name);
969
970     if (error)
971       {
972         if (devconf == 0)
973           {
974             pool_get (conf->dev_confs, devconf);
975             hash_set (conf->device_config_index_by_pci_addr, addr->as_u32,
976                       devconf - conf->dev_confs);
977             devconf->pci_addr.as_u32 = addr->as_u32;
978           }
979         devconf->is_blacklisted = 1;
980         clib_error_report (error);
981       }
982   }
983   /* *INDENT-ON* */
984   vec_free (pci_addr);
985   vlib_pci_free_device_info (d);
986 }
987
988 static clib_error_t *
989 dpdk_device_config (dpdk_config_main_t * conf, vlib_pci_addr_t pci_addr,
990                     unformat_input_t * input, u8 is_default)
991 {
992   clib_error_t *error = 0;
993   uword *p;
994   dpdk_device_config_t *devconf;
995   unformat_input_t sub_input;
996
997   if (is_default)
998     {
999       devconf = &conf->default_devconf;
1000     }
1001   else
1002     {
1003       p = hash_get (conf->device_config_index_by_pci_addr, pci_addr.as_u32);
1004
1005       if (!p)
1006         {
1007           pool_get (conf->dev_confs, devconf);
1008           hash_set (conf->device_config_index_by_pci_addr, pci_addr.as_u32,
1009                     devconf - conf->dev_confs);
1010         }
1011       else
1012         return clib_error_return (0,
1013                                   "duplicate configuration for PCI address %U",
1014                                   format_vlib_pci_addr, &pci_addr);
1015     }
1016
1017   devconf->pci_addr.as_u32 = pci_addr.as_u32;
1018   devconf->hqos_enabled = 0;
1019   dpdk_device_config_hqos_default (&devconf->hqos);
1020
1021   if (!input)
1022     return 0;
1023
1024   unformat_skip_white_space (input);
1025   while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
1026     {
1027       if (unformat (input, "num-rx-queues %u", &devconf->num_rx_queues))
1028         ;
1029       else if (unformat (input, "num-tx-queues %u", &devconf->num_tx_queues))
1030         ;
1031       else if (unformat (input, "num-rx-desc %u", &devconf->num_rx_desc))
1032         ;
1033       else if (unformat (input, "num-tx-desc %u", &devconf->num_tx_desc))
1034         ;
1035       else if (unformat (input, "name %s", &devconf->name))
1036         ;
1037       else if (unformat (input, "workers %U", unformat_bitmap_list,
1038                          &devconf->workers))
1039         ;
1040       else
1041         if (unformat
1042             (input, "rss %U", unformat_vlib_cli_sub_input, &sub_input))
1043         {
1044           error = unformat_rss_fn (&sub_input, &devconf->rss_fn);
1045           if (error)
1046             break;
1047         }
1048       else if (unformat (input, "vlan-strip-offload off"))
1049         devconf->vlan_strip_offload = DPDK_DEVICE_VLAN_STRIP_OFF;
1050       else if (unformat (input, "vlan-strip-offload on"))
1051         devconf->vlan_strip_offload = DPDK_DEVICE_VLAN_STRIP_ON;
1052       else
1053         if (unformat
1054             (input, "hqos %U", unformat_vlib_cli_sub_input, &sub_input))
1055         {
1056           devconf->hqos_enabled = 1;
1057           error = unformat_hqos (&sub_input, &devconf->hqos);
1058           if (error)
1059             break;
1060         }
1061       else if (unformat (input, "hqos"))
1062         {
1063           devconf->hqos_enabled = 1;
1064         }
1065       else
1066         {
1067           error = clib_error_return (0, "unknown input `%U'",
1068                                      format_unformat_error, input);
1069           break;
1070         }
1071     }
1072
1073   if (error)
1074     return error;
1075
1076   if (devconf->workers && devconf->num_rx_queues == 0)
1077     devconf->num_rx_queues = clib_bitmap_count_set_bits (devconf->workers);
1078   else if (devconf->workers &&
1079            clib_bitmap_count_set_bits (devconf->workers) !=
1080            devconf->num_rx_queues)
1081     error =
1082       clib_error_return (0,
1083                          "%U: number of worker threads must be "
1084                          "equal to number of rx queues", format_vlib_pci_addr,
1085                          &pci_addr);
1086
1087   return error;
1088 }
1089
1090 static clib_error_t *
1091 dpdk_log_read_ready (clib_file_t * uf)
1092 {
1093   unformat_input_t input;
1094   u8 *line, *s = 0;
1095   int n, n_try;
1096
1097   n = n_try = 4096;
1098   while (n == n_try)
1099     {
1100       uword len = vec_len (s);
1101       vec_resize (s, len + n_try);
1102
1103       n = read (uf->file_descriptor, s + len, n_try);
1104       if (n < 0 && errno != EAGAIN)
1105         return clib_error_return_unix (0, "read");
1106       _vec_len (s) = len + (n < 0 ? 0 : n);
1107     }
1108
1109   unformat_init_vector (&input, s);
1110
1111   while (unformat_user (&input, unformat_line, &line))
1112     {
1113       dpdk_log_notice ("%v", line);
1114       vec_free (line);
1115     }
1116
1117   unformat_free (&input);
1118   return 0;
1119 }
1120
1121 static clib_error_t *
1122 dpdk_config (vlib_main_t * vm, unformat_input_t * input)
1123 {
1124   clib_error_t *error = 0;
1125   dpdk_config_main_t *conf = &dpdk_config_main;
1126   vlib_thread_main_t *tm = vlib_get_thread_main ();
1127   dpdk_device_config_t *devconf;
1128   vlib_pci_addr_t pci_addr;
1129   unformat_input_t sub_input;
1130   uword x;
1131   u8 *s, *tmp = 0;
1132   u32 log_level;
1133   int ret, i;
1134   int num_whitelisted = 0;
1135   u8 no_pci = 0;
1136   u8 no_huge = 0;
1137   u8 huge_dir = 0;
1138   u8 file_prefix = 0;
1139   u8 *socket_mem = 0;
1140   u8 *huge_dir_path = 0;
1141
1142   huge_dir_path =
1143     format (0, "%s/hugepages%c", vlib_unix_get_runtime_dir (), 0);
1144
1145   conf->device_config_index_by_pci_addr = hash_create (0, sizeof (uword));
1146   log_level = RTE_LOG_NOTICE;
1147
1148   while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
1149     {
1150       /* Prime the pump */
1151       if (unformat (input, "no-hugetlb"))
1152         {
1153           vec_add1 (conf->eal_init_args, (u8 *) "--no-huge");
1154           no_huge = 1;
1155         }
1156
1157       else if (unformat (input, "enable-tcp-udp-checksum"))
1158         conf->enable_tcp_udp_checksum = 1;
1159
1160       else if (unformat (input, "no-tx-checksum-offload"))
1161         conf->no_tx_checksum_offload = 1;
1162
1163       else if (unformat (input, "decimal-interface-names"))
1164         conf->interface_name_format_decimal = 1;
1165
1166       else if (unformat (input, "log-level %U", unformat_dpdk_log_level, &x))
1167         log_level = x;
1168
1169       else if (unformat (input, "no-multi-seg"))
1170         conf->no_multi_seg = 1;
1171
1172       else if (unformat (input, "dev default %U", unformat_vlib_cli_sub_input,
1173                          &sub_input))
1174         {
1175           error =
1176             dpdk_device_config (conf, (vlib_pci_addr_t) (u32) ~ 1, &sub_input,
1177                                 1);
1178
1179           if (error)
1180             return error;
1181         }
1182       else
1183         if (unformat
1184             (input, "dev %U %U", unformat_vlib_pci_addr, &pci_addr,
1185              unformat_vlib_cli_sub_input, &sub_input))
1186         {
1187           error = dpdk_device_config (conf, pci_addr, &sub_input, 0);
1188
1189           if (error)
1190             return error;
1191
1192           num_whitelisted++;
1193         }
1194       else if (unformat (input, "dev %U", unformat_vlib_pci_addr, &pci_addr))
1195         {
1196           error = dpdk_device_config (conf, pci_addr, 0, 0);
1197
1198           if (error)
1199             return error;
1200
1201           num_whitelisted++;
1202         }
1203       else if (unformat (input, "num-mem-channels %d", &conf->nchannels))
1204         conf->nchannels_set_manually = 0;
1205       else if (unformat (input, "num-mbufs %d", &conf->num_mbufs))
1206         ;
1207       else if (unformat (input, "uio-driver %s", &conf->uio_driver_name))
1208         ;
1209       else if (unformat (input, "socket-mem %s", &socket_mem))
1210         ;
1211       else if (unformat (input, "no-pci"))
1212         {
1213           no_pci = 1;
1214           tmp = format (0, "--no-pci%c", 0);
1215           vec_add1 (conf->eal_init_args, tmp);
1216         }
1217
1218 #define _(a)                                    \
1219       else if (unformat(input, #a))             \
1220         {                                       \
1221           tmp = format (0, "--%s%c", #a, 0);    \
1222           vec_add1 (conf->eal_init_args, tmp);    \
1223         }
1224       foreach_eal_double_hyphen_predicate_arg
1225 #undef _
1226 #define _(a)                                          \
1227         else if (unformat(input, #a " %s", &s))       \
1228           {                                           \
1229             if (!strncmp(#a, "huge-dir", 8))          \
1230               huge_dir = 1;                           \
1231             else if (!strncmp(#a, "file-prefix", 11)) \
1232               file_prefix = 1;                        \
1233             tmp = format (0, "--%s%c", #a, 0);        \
1234             vec_add1 (conf->eal_init_args, tmp);      \
1235             vec_add1 (s, 0);                          \
1236             if (!strncmp(#a, "vdev", 4))              \
1237               if (strstr((char*)s, "af_packet"))      \
1238                 clib_warning ("af_packet obsoleted. Use CLI 'create host-interface'."); \
1239             vec_add1 (conf->eal_init_args, s);        \
1240           }
1241         foreach_eal_double_hyphen_arg
1242 #undef _
1243 #define _(a,b)                                          \
1244           else if (unformat(input, #a " %s", &s))       \
1245             {                                           \
1246               tmp = format (0, "-%s%c", #b, 0);         \
1247               vec_add1 (conf->eal_init_args, tmp);      \
1248               vec_add1 (s, 0);                          \
1249               vec_add1 (conf->eal_init_args, s);        \
1250             }
1251         foreach_eal_single_hyphen_arg
1252 #undef _
1253 #define _(a,b)                                          \
1254             else if (unformat(input, #a " %s", &s))     \
1255               {                                         \
1256                 tmp = format (0, "-%s%c", #b, 0);       \
1257                 vec_add1 (conf->eal_init_args, tmp);    \
1258                 vec_add1 (s, 0);                        \
1259                 vec_add1 (conf->eal_init_args, s);      \
1260                 conf->a##_set_manually = 1;             \
1261               }
1262         foreach_eal_single_hyphen_mandatory_arg
1263 #undef _
1264         else if (unformat (input, "default"))
1265         ;
1266
1267       else if (unformat_skip_white_space (input))
1268         ;
1269       else
1270         {
1271           error = clib_error_return (0, "unknown input `%U'",
1272                                      format_unformat_error, input);
1273           goto done;
1274         }
1275     }
1276
1277   if (!conf->uio_driver_name)
1278     conf->uio_driver_name = format (0, "auto%c", 0);
1279
1280   /*
1281    * Use 1G huge pages if available.
1282    */
1283   if (!no_huge && !huge_dir)
1284     {
1285       u32 x, *mem_by_socket = 0;
1286       uword c = 0;
1287       int rv;
1288
1289       umount ((char *) huge_dir_path);
1290
1291       /* Process "socket-mem" parameter value */
1292       if (vec_len (socket_mem))
1293         {
1294           unformat_input_t in;
1295           unformat_init_vector (&in, socket_mem);
1296           while (unformat_check_input (&in) != UNFORMAT_END_OF_INPUT)
1297             {
1298               if (unformat (&in, "%u,", &x))
1299                 ;
1300               else if (unformat (&in, "%u", &x))
1301                 ;
1302               else if (unformat (&in, ","))
1303                 x = 0;
1304               else
1305                 break;
1306
1307               vec_add1 (mem_by_socket, x);
1308             }
1309           /* Note: unformat_free vec_frees(in.buffer), aka socket_mem... */
1310           unformat_free (&in);
1311           socket_mem = 0;
1312         }
1313       else
1314         {
1315           /* *INDENT-OFF* */
1316           clib_bitmap_foreach (c, tm->cpu_socket_bitmap, (
1317             {
1318               vec_validate(mem_by_socket, c);
1319               mem_by_socket[c] = 64; /* default per-socket mem */
1320             }
1321           ));
1322           /* *INDENT-ON* */
1323         }
1324
1325       uword default_hugepage_sz = clib_mem_get_default_hugepage_size ();
1326       /* *INDENT-OFF* */
1327       clib_bitmap_foreach (c, tm->cpu_socket_bitmap, (
1328         {
1329           clib_error_t *e;
1330           uword n_pages;
1331           vec_validate(mem_by_socket, c);
1332           n_pages = round_pow2 ((uword) mem_by_socket[c]<<20,
1333                                 default_hugepage_sz);
1334           n_pages /= default_hugepage_sz;
1335
1336           if ((e = clib_sysfs_prealloc_hugepages(c, 0, n_pages)))
1337             clib_error_report (e);
1338       }));
1339       /* *INDENT-ON* */
1340
1341       if (mem_by_socket == 0)
1342         {
1343           error = clib_error_return (0, "mem_by_socket NULL");
1344           goto done;
1345         }
1346       _vec_len (mem_by_socket) = c + 1;
1347
1348       /* regenerate socket_mem string */
1349       vec_foreach_index (x, mem_by_socket)
1350         socket_mem = format (socket_mem, "%s%u",
1351                              socket_mem ? "," : "", mem_by_socket[x]);
1352       socket_mem = format (socket_mem, "%c", 0);
1353
1354       vec_free (mem_by_socket);
1355
1356       error = vlib_unix_recursive_mkdir ((char *) huge_dir_path);
1357       if (error)
1358         {
1359           goto done;
1360         }
1361
1362       rv = mount ("none", (char *) huge_dir_path, "hugetlbfs", 0, NULL);
1363
1364       if (rv)
1365         {
1366           error = clib_error_return (0, "mount failed %d", errno);
1367           goto done;
1368         }
1369
1370       tmp = format (0, "--huge-dir%c", 0);
1371       vec_add1 (conf->eal_init_args, tmp);
1372       tmp = format (0, "%s%c", huge_dir_path, 0);
1373       vec_add1 (conf->eal_init_args, tmp);
1374       if (!file_prefix)
1375         {
1376           tmp = format (0, "--file-prefix%c", 0);
1377           vec_add1 (conf->eal_init_args, tmp);
1378           tmp = format (0, "vpp%c", 0);
1379           vec_add1 (conf->eal_init_args, tmp);
1380         }
1381     }
1382
1383   if (error)
1384     return error;
1385
1386   /* I'll bet that -c and -n must be the first and second args... */
1387   if (!conf->coremask_set_manually)
1388     {
1389       vlib_thread_registration_t *tr;
1390       uword *coremask = 0;
1391       int i;
1392
1393       /* main thread core */
1394       coremask = clib_bitmap_set (coremask, tm->main_lcore, 1);
1395
1396       for (i = 0; i < vec_len (tm->registrations); i++)
1397         {
1398           tr = tm->registrations[i];
1399           coremask = clib_bitmap_or (coremask, tr->coremask);
1400         }
1401
1402       vec_insert (conf->eal_init_args, 2, 1);
1403       conf->eal_init_args[1] = (u8 *) "-c";
1404       tmp = format (0, "%U%c", format_bitmap_hex, coremask, 0);
1405       conf->eal_init_args[2] = tmp;
1406       clib_bitmap_free (coremask);
1407     }
1408
1409   if (!conf->nchannels_set_manually)
1410     {
1411       vec_insert (conf->eal_init_args, 2, 3);
1412       conf->eal_init_args[3] = (u8 *) "-n";
1413       tmp = format (0, "%d", conf->nchannels);
1414       conf->eal_init_args[4] = tmp;
1415     }
1416
1417   if (no_pci == 0 && geteuid () == 0)
1418     dpdk_bind_devices_to_uio (conf);
1419
1420 #define _(x) \
1421     if (devconf->x == 0 && conf->default_devconf.x > 0) \
1422       devconf->x = conf->default_devconf.x ;
1423
1424   /* *INDENT-OFF* */
1425   pool_foreach (devconf, conf->dev_confs, ({
1426
1427     /* default per-device config items */
1428     foreach_dpdk_device_config_item
1429
1430     /* add DPDK EAL whitelist/blacklist entry */
1431     if (num_whitelisted > 0 && devconf->is_blacklisted == 0)
1432       {
1433         tmp = format (0, "-w%c", 0);
1434         vec_add1 (conf->eal_init_args, tmp);
1435         tmp = format (0, "%U%c", format_vlib_pci_addr, &devconf->pci_addr, 0);
1436         vec_add1 (conf->eal_init_args, tmp);
1437       }
1438     else if (num_whitelisted == 0 && devconf->is_blacklisted != 0)
1439       {
1440         tmp = format (0, "-b%c", 0);
1441         vec_add1 (conf->eal_init_args, tmp);
1442         tmp = format (0, "%U%c", format_vlib_pci_addr, &devconf->pci_addr, 0);
1443         vec_add1 (conf->eal_init_args, tmp);
1444       }
1445   }));
1446   /* *INDENT-ON* */
1447
1448 #undef _
1449
1450   /* set master-lcore */
1451   tmp = format (0, "--master-lcore%c", 0);
1452   vec_add1 (conf->eal_init_args, tmp);
1453   tmp = format (0, "%u%c", tm->main_lcore, 0);
1454   vec_add1 (conf->eal_init_args, tmp);
1455
1456   /* set socket-mem */
1457   if (!no_huge)
1458     {
1459       tmp = format (0, "--socket-mem%c", 0);
1460       vec_add1 (conf->eal_init_args, tmp);
1461       tmp = format (0, "%s%c", socket_mem, 0);
1462       vec_add1 (conf->eal_init_args, tmp);
1463     }
1464
1465   /* NULL terminate the "argv" vector, in case of stupidity */
1466   vec_add1 (conf->eal_init_args, 0);
1467   _vec_len (conf->eal_init_args) -= 1;
1468
1469   /* Set up DPDK eal and packet mbuf pool early. */
1470
1471   rte_log_set_global_level (log_level);
1472   int log_fds[2] = { 0 };
1473   if (pipe (log_fds) == 0)
1474     {
1475       if (fcntl (log_fds[1], F_SETFL, O_NONBLOCK) == 0)
1476         {
1477           FILE *f = fdopen (log_fds[1], "a");
1478           if (f && rte_openlog_stream (f) == 0)
1479             {
1480               clib_file_t t = { 0 };
1481               t.read_function = dpdk_log_read_ready;
1482               t.file_descriptor = log_fds[0];
1483               t.description = format (0, "DPDK logging pipe");
1484               clib_file_add (&file_main, &t);
1485             }
1486         }
1487       else
1488         {
1489           close (log_fds[0]);
1490           close (log_fds[1]);
1491         }
1492     }
1493
1494   vm = vlib_get_main ();
1495
1496   /* make copy of args as rte_eal_init tends to mess up with arg array */
1497   for (i = 1; i < vec_len (conf->eal_init_args); i++)
1498     conf->eal_init_args_str = format (conf->eal_init_args_str, "%s ",
1499                                       conf->eal_init_args[i]);
1500
1501   dpdk_log_warn ("EAL init args: %s", conf->eal_init_args_str);
1502   ret = rte_eal_init (vec_len (conf->eal_init_args),
1503                       (char **) conf->eal_init_args);
1504
1505   /* lazy umount hugepages */
1506   umount2 ((char *) huge_dir_path, MNT_DETACH);
1507   rmdir ((char *) huge_dir_path);
1508   vec_free (huge_dir_path);
1509
1510   if (ret < 0)
1511     return clib_error_return (0, "rte_eal_init returned %d", ret);
1512
1513   /* set custom ring memory allocator */
1514   {
1515     struct rte_mempool_ops *ops = NULL;
1516
1517     ops = get_ops_by_name ("ring_sp_sc");
1518     ops->alloc = dpdk_ring_alloc;
1519
1520     ops = get_ops_by_name ("ring_mp_sc");
1521     ops->alloc = dpdk_ring_alloc;
1522
1523     ops = get_ops_by_name ("ring_sp_mc");
1524     ops->alloc = dpdk_ring_alloc;
1525
1526     ops = get_ops_by_name ("ring_mp_mc");
1527     ops->alloc = dpdk_ring_alloc;
1528   }
1529
1530   /* main thread 1st */
1531   error = dpdk_buffer_pool_create (vm, conf->num_mbufs, rte_socket_id ());
1532   if (error)
1533     return error;
1534
1535   for (i = 0; i < RTE_MAX_LCORE; i++)
1536     {
1537       error = dpdk_buffer_pool_create (vm, conf->num_mbufs,
1538                                        rte_lcore_to_socket_id (i));
1539       if (error)
1540         return error;
1541     }
1542
1543 done:
1544   return error;
1545 }
1546
1547 VLIB_CONFIG_FUNCTION (dpdk_config, "dpdk");
1548
1549 void
1550 dpdk_update_link_state (dpdk_device_t * xd, f64 now)
1551 {
1552   vnet_main_t *vnm = vnet_get_main ();
1553   struct rte_eth_link prev_link = xd->link;
1554   u32 hw_flags = 0;
1555   u8 hw_flags_chg = 0;
1556
1557   /* only update link state for PMD interfaces */
1558   if ((xd->flags & DPDK_DEVICE_FLAG_PMD) == 0)
1559     return;
1560
1561   xd->time_last_link_update = now ? now : xd->time_last_link_update;
1562   clib_memset (&xd->link, 0, sizeof (xd->link));
1563   rte_eth_link_get_nowait (xd->port_id, &xd->link);
1564
1565   if (LINK_STATE_ELOGS)
1566     {
1567       vlib_main_t *vm = vlib_get_main ();
1568       ELOG_TYPE_DECLARE (e) =
1569       {
1570       .format =
1571           "update-link-state: sw_if_index %d, admin_up %d,"
1572           "old link_state %d new link_state %d",.format_args = "i4i1i1i1",};
1573
1574       struct
1575       {
1576         u32 sw_if_index;
1577         u8 admin_up;
1578         u8 old_link_state;
1579         u8 new_link_state;
1580       } *ed;
1581       ed = ELOG_DATA (&vm->elog_main, e);
1582       ed->sw_if_index = xd->sw_if_index;
1583       ed->admin_up = (xd->flags & DPDK_DEVICE_FLAG_ADMIN_UP) != 0;
1584       ed->old_link_state = (u8)
1585         vnet_hw_interface_is_link_up (vnm, xd->hw_if_index);
1586       ed->new_link_state = (u8) xd->link.link_status;
1587     }
1588
1589   if ((xd->flags & (DPDK_DEVICE_FLAG_ADMIN_UP | DPDK_DEVICE_FLAG_BOND_SLAVE))
1590       && ((xd->link.link_status != 0) ^
1591           vnet_hw_interface_is_link_up (vnm, xd->hw_if_index)))
1592     {
1593       hw_flags_chg = 1;
1594       hw_flags |= (xd->link.link_status ? VNET_HW_INTERFACE_FLAG_LINK_UP : 0);
1595     }
1596
1597   if (hw_flags_chg || (xd->link.link_duplex != prev_link.link_duplex))
1598     {
1599       hw_flags_chg = 1;
1600       switch (xd->link.link_duplex)
1601         {
1602         case ETH_LINK_HALF_DUPLEX:
1603           hw_flags |= VNET_HW_INTERFACE_FLAG_HALF_DUPLEX;
1604           break;
1605         case ETH_LINK_FULL_DUPLEX:
1606           hw_flags |= VNET_HW_INTERFACE_FLAG_FULL_DUPLEX;
1607           break;
1608         default:
1609           break;
1610         }
1611     }
1612   if (xd->link.link_speed != prev_link.link_speed)
1613     vnet_hw_interface_set_link_speed (vnm, xd->hw_if_index,
1614                                       xd->link.link_speed * 1000);
1615
1616   if (hw_flags_chg)
1617     {
1618       if (LINK_STATE_ELOGS)
1619         {
1620           vlib_main_t *vm = vlib_get_main ();
1621
1622           ELOG_TYPE_DECLARE (e) =
1623           {
1624           .format =
1625               "update-link-state: sw_if_index %d, new flags %d",.format_args
1626               = "i4i4",};
1627
1628           struct
1629           {
1630             u32 sw_if_index;
1631             u32 flags;
1632           } *ed;
1633           ed = ELOG_DATA (&vm->elog_main, e);
1634           ed->sw_if_index = xd->sw_if_index;
1635           ed->flags = hw_flags;
1636         }
1637       vnet_hw_interface_set_flags (vnm, xd->hw_if_index, hw_flags);
1638     }
1639 }
1640
1641 static uword
1642 dpdk_process (vlib_main_t * vm, vlib_node_runtime_t * rt, vlib_frame_t * f)
1643 {
1644   clib_error_t *error;
1645   vnet_main_t *vnm = vnet_get_main ();
1646   dpdk_main_t *dm = &dpdk_main;
1647   ethernet_main_t *em = &ethernet_main;
1648   dpdk_device_t *xd;
1649   vlib_thread_main_t *tm = vlib_get_thread_main ();
1650   int i;
1651   int j;
1652
1653   error = dpdk_lib_init (dm);
1654
1655   if (error)
1656     clib_error_report (error);
1657
1658   tm->worker_thread_release = 1;
1659
1660   f64 now = vlib_time_now (vm);
1661   vec_foreach (xd, dm->devices)
1662   {
1663     dpdk_update_link_state (xd, now);
1664   }
1665
1666   {
1667     /*
1668      * Extra set up for bond interfaces:
1669      *  1. Setup MACs for bond interfaces and their slave links which was set
1670      *     in dpdk_device_setup() but needs to be done again here to take
1671      *     effect.
1672      *  2. Set up info and register slave link state change callback handling.
1673      *  3. Set up info for bond interface related CLI support.
1674      */
1675     int nports = rte_eth_dev_count_avail ();
1676     if (nports > 0)
1677       {
1678         /* *INDENT-OFF* */
1679         RTE_ETH_FOREACH_DEV(i)
1680           {
1681             xd = NULL;
1682             for (j = 0; j < nports; j++)
1683               {
1684                 if (dm->devices[j].port_id == i)
1685                   {
1686                     xd = &dm->devices[j];
1687                   }
1688               }
1689             if (xd != NULL && xd->pmd == VNET_DPDK_PMD_BOND)
1690               {
1691                 u8 addr[6];
1692                 dpdk_portid_t slink[16];
1693                 int nlink = rte_eth_bond_slaves_get (i, slink, 16);
1694                 if (nlink > 0)
1695                   {
1696                     vnet_hw_interface_t *bhi;
1697                     ethernet_interface_t *bei;
1698                     int rv;
1699
1700                     /* Get MAC of 1st slave link */
1701                     rte_eth_macaddr_get
1702                       (slink[0], (struct ether_addr *) addr);
1703
1704                     /* Set MAC of bounded interface to that of 1st slave link */
1705                     dpdk_log_info ("Set MAC for bond port %d BondEthernet%d",
1706                                    i, xd->bond_instance_num);
1707                     rv = rte_eth_bond_mac_address_set
1708                       (i, (struct ether_addr *) addr);
1709                     if (rv)
1710                       dpdk_log_warn ("Set MAC addr failure rv=%d", rv);
1711
1712                     /* Populate MAC of bonded interface in VPP hw tables */
1713                     bhi = vnet_get_hw_interface
1714                       (vnm, dm->devices[i].hw_if_index);
1715                     bei = pool_elt_at_index
1716                       (em->interfaces, bhi->hw_instance);
1717                     clib_memcpy (bhi->hw_address, addr, 6);
1718                     clib_memcpy (bei->address, addr, 6);
1719
1720                     /* Init l3 packet size allowed on bonded interface */
1721                     bhi->max_packet_bytes = ETHERNET_MAX_PACKET_BYTES;
1722                     while (nlink >= 1)
1723                       {         /* for all slave links */
1724                         int slave = slink[--nlink];
1725                         dpdk_device_t *sdev = &dm->devices[slave];
1726                         vnet_hw_interface_t *shi;
1727                         vnet_sw_interface_t *ssi;
1728                         ethernet_interface_t *sei;
1729                         /* Add MAC to all slave links except the first one */
1730                         if (nlink)
1731                           {
1732                             dpdk_log_info ("Add MAC for slave port %d",
1733                                            slave);
1734                             rv = rte_eth_dev_mac_addr_add
1735                               (slave, (struct ether_addr *) addr, 0);
1736                             if (rv)
1737                               dpdk_log_warn ("Add MAC addr failure rv=%d",
1738                                              rv);
1739                           }
1740                         /* Setup slave link state change callback handling */
1741                         rte_eth_dev_callback_register
1742                           (slave, RTE_ETH_EVENT_INTR_LSC,
1743                            dpdk_port_state_callback, NULL);
1744                         dpdk_device_t *sxd = &dm->devices[slave];
1745                         sxd->flags |= DPDK_DEVICE_FLAG_BOND_SLAVE;
1746                         sxd->bond_port = i;
1747                         /* Set slaves bitmap for bonded interface */
1748                         bhi->bond_info = clib_bitmap_set
1749                           (bhi->bond_info, sdev->hw_if_index, 1);
1750                         /* Set MACs and slave link flags on slave interface */
1751                         shi = vnet_get_hw_interface (vnm, sdev->hw_if_index);
1752                         ssi = vnet_get_sw_interface (vnm, sdev->sw_if_index);
1753                         sei = pool_elt_at_index
1754                           (em->interfaces, shi->hw_instance);
1755                         shi->bond_info = VNET_HW_INTERFACE_BOND_INFO_SLAVE;
1756                         ssi->flags |= VNET_SW_INTERFACE_FLAG_BOND_SLAVE;
1757                         clib_memcpy (shi->hw_address, addr, 6);
1758                         clib_memcpy (sei->address, addr, 6);
1759                         /* Set l3 packet size allowed as the lowest of slave */
1760                         if (bhi->max_packet_bytes > shi->max_packet_bytes)
1761                           bhi->max_packet_bytes = shi->max_packet_bytes;
1762                       }
1763                   }
1764               }
1765           }
1766         /* *INDENT-ON* */
1767       }
1768   }
1769
1770   while (1)
1771     {
1772       /*
1773        * check each time through the loop in case intervals are changed
1774        */
1775       f64 min_wait = dm->link_state_poll_interval < dm->stat_poll_interval ?
1776         dm->link_state_poll_interval : dm->stat_poll_interval;
1777
1778       vlib_process_wait_for_event_or_clock (vm, min_wait);
1779
1780       if (dm->admin_up_down_in_progress)
1781         /* skip the poll if an admin up down is in progress (on any interface) */
1782         continue;
1783
1784       vec_foreach (xd, dm->devices)
1785       {
1786         f64 now = vlib_time_now (vm);
1787         if ((now - xd->time_last_stats_update) >= dm->stat_poll_interval)
1788           dpdk_update_counters (xd, now);
1789         if ((now - xd->time_last_link_update) >= dm->link_state_poll_interval)
1790           dpdk_update_link_state (xd, now);
1791
1792       }
1793     }
1794
1795   return 0;
1796 }
1797
1798 /* *INDENT-OFF* */
1799 VLIB_REGISTER_NODE (dpdk_process_node,static) = {
1800     .function = dpdk_process,
1801     .type = VLIB_NODE_TYPE_PROCESS,
1802     .name = "dpdk-process",
1803     .process_log2_n_stack_bytes = 17,
1804 };
1805 /* *INDENT-ON* */
1806
1807 static clib_error_t *
1808 dpdk_init (vlib_main_t * vm)
1809 {
1810   dpdk_main_t *dm = &dpdk_main;
1811   clib_error_t *error = 0;
1812
1813   /* verify that structs are cacheline aligned */
1814   STATIC_ASSERT (offsetof (dpdk_device_t, cacheline0) == 0,
1815                  "Cache line marker must be 1st element in dpdk_device_t");
1816   STATIC_ASSERT (offsetof (dpdk_device_t, cacheline1) ==
1817                  CLIB_CACHE_LINE_BYTES,
1818                  "Data in cache line 0 is bigger than cache line size");
1819   STATIC_ASSERT (offsetof (frame_queue_trace_t, cacheline0) == 0,
1820                  "Cache line marker must be 1st element in frame_queue_trace_t");
1821   STATIC_ASSERT (RTE_CACHE_LINE_SIZE == 1 << CLIB_LOG2_CACHE_LINE_BYTES,
1822                  "DPDK RTE CACHE LINE SIZE does not match with 1<<CLIB_LOG2_CACHE_LINE_BYTES");
1823
1824   dm->vlib_main = vm;
1825   dm->vnet_main = vnet_get_main ();
1826   dm->conf = &dpdk_config_main;
1827
1828   dm->conf->nchannels = 4;
1829   dm->conf->num_mbufs = dm->conf->num_mbufs ? dm->conf->num_mbufs : NB_MBUF;
1830   vec_add1 (dm->conf->eal_init_args, (u8 *) "vnet");
1831
1832   /* Default vlib_buffer_t flags, DISABLES tcp/udp checksumming... */
1833   dm->buffer_flags_template = (VLIB_BUFFER_TOTAL_LENGTH_VALID |
1834                                VLIB_BUFFER_EXT_HDR_VALID |
1835                                VNET_BUFFER_F_L4_CHECKSUM_COMPUTED |
1836                                VNET_BUFFER_F_L4_CHECKSUM_CORRECT);
1837
1838   dm->stat_poll_interval = DPDK_STATS_POLL_INTERVAL;
1839   dm->link_state_poll_interval = DPDK_LINK_POLL_INTERVAL;
1840
1841   /* init CLI */
1842   if ((error = vlib_call_init_function (vm, dpdk_cli_init)))
1843     return error;
1844
1845   dm->log_default = vlib_log_register_class ("dpdk", 0);
1846
1847   return error;
1848 }
1849
1850 VLIB_INIT_FUNCTION (dpdk_init);
1851
1852
1853 /*
1854  * fd.io coding-style-patch-verification: ON
1855  *
1856  * Local Variables:
1857  * eval: (c-set-style "gnu")
1858  * End:
1859  */