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