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