dpdk: enable igc devices
[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_I40E:
452               xd->flags |= DPDK_DEVICE_FLAG_INT_UNMASKABLE;
453             case VNET_DPDK_PMD_E1000EM:
454             case VNET_DPDK_PMD_IGB:
455             case VNET_DPDK_PMD_IGC:
456             case VNET_DPDK_PMD_IXGBE:
457             case VNET_DPDK_PMD_ICE:
458               xd->port_type = port_type_from_speed_capa (&dev_info);
459               xd->supported_flow_actions = VNET_FLOW_ACTION_MARK |
460                 VNET_FLOW_ACTION_REDIRECT_TO_NODE |
461                 VNET_FLOW_ACTION_REDIRECT_TO_QUEUE |
462                 VNET_FLOW_ACTION_BUFFER_ADVANCE |
463                 VNET_FLOW_ACTION_COUNT | VNET_FLOW_ACTION_DROP |
464                 VNET_FLOW_ACTION_RSS;
465
466               if (dm->conf->no_tx_checksum_offload == 0)
467                 {
468                   xd->port_conf.txmode.offloads |= DEV_TX_OFFLOAD_TCP_CKSUM;
469                   xd->port_conf.txmode.offloads |= DEV_TX_OFFLOAD_UDP_CKSUM;
470                   xd->flags |=
471                     DPDK_DEVICE_FLAG_TX_OFFLOAD |
472                     DPDK_DEVICE_FLAG_INTEL_PHDR_CKSUM;
473                 }
474
475               xd->port_conf.intr_conf.rxq = 1;
476               break;
477             case VNET_DPDK_PMD_CXGBE:
478             case VNET_DPDK_PMD_MLX4:
479             case VNET_DPDK_PMD_MLX5:
480             case VNET_DPDK_PMD_QEDE:
481             case VNET_DPDK_PMD_BNXT:
482               xd->port_type = port_type_from_speed_capa (&dev_info);
483               break;
484
485               /* SR-IOV VFs */
486             case VNET_DPDK_PMD_I40EVF:
487               xd->flags |= DPDK_DEVICE_FLAG_INT_UNMASKABLE;
488             case VNET_DPDK_PMD_IGBVF:
489             case VNET_DPDK_PMD_IXGBEVF:
490               xd->port_type = VNET_DPDK_PORT_TYPE_ETH_VF;
491               if (dm->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 |=
496                     DPDK_DEVICE_FLAG_TX_OFFLOAD |
497                     DPDK_DEVICE_FLAG_INTEL_PHDR_CKSUM;
498                 }
499               /* DPDK bug in multiqueue... */
500               /* xd->port_conf.intr_conf.rxq = 1; */
501               break;
502
503               /* iAVF */
504             case VNET_DPDK_PMD_IAVF:
505               xd->flags |= DPDK_DEVICE_FLAG_INT_UNMASKABLE;
506               xd->port_type = VNET_DPDK_PORT_TYPE_ETH_VF;
507               xd->supported_flow_actions =
508                 VNET_FLOW_ACTION_MARK | VNET_FLOW_ACTION_REDIRECT_TO_NODE |
509                 VNET_FLOW_ACTION_REDIRECT_TO_QUEUE |
510                 VNET_FLOW_ACTION_BUFFER_ADVANCE | VNET_FLOW_ACTION_COUNT |
511                 VNET_FLOW_ACTION_DROP | VNET_FLOW_ACTION_RSS;
512
513               if (dm->conf->no_tx_checksum_offload == 0)
514                 {
515                   xd->port_conf.txmode.offloads |= DEV_TX_OFFLOAD_TCP_CKSUM;
516                   xd->port_conf.txmode.offloads |= DEV_TX_OFFLOAD_UDP_CKSUM;
517                   xd->flags |=
518                     DPDK_DEVICE_FLAG_TX_OFFLOAD |
519                     DPDK_DEVICE_FLAG_INTEL_PHDR_CKSUM;
520                 }
521               /* DPDK bug in multiqueue... */
522               /* xd->port_conf.intr_conf.rxq = 1; */
523               break;
524
525             case VNET_DPDK_PMD_THUNDERX:
526               xd->port_type = VNET_DPDK_PORT_TYPE_ETH_VF;
527
528               if (dm->conf->no_tx_checksum_offload == 0)
529                 {
530                   xd->port_conf.txmode.offloads |= DEV_TX_OFFLOAD_TCP_CKSUM;
531                   xd->port_conf.txmode.offloads |= DEV_TX_OFFLOAD_UDP_CKSUM;
532                   xd->flags |= DPDK_DEVICE_FLAG_TX_OFFLOAD;
533                 }
534               break;
535
536             case VNET_DPDK_PMD_ENA:
537               xd->port_type = VNET_DPDK_PORT_TYPE_ETH_VF;
538               xd->port_conf.rxmode.offloads &= ~DEV_RX_OFFLOAD_SCATTER;
539               xd->port_conf.intr_conf.rxq = 1;
540               break;
541
542             case VNET_DPDK_PMD_DPAA2:
543               xd->port_type = VNET_DPDK_PORT_TYPE_ETH_10G;
544               break;
545
546               /* Cisco VIC */
547             case VNET_DPDK_PMD_ENIC:
548                 {
549                   struct rte_eth_link l;
550                   rte_eth_link_get_nowait (i, &l);
551                   xd->port_type = port_type_from_link_speed (l.link_speed);
552                   if (dm->conf->enable_tcp_udp_checksum)
553                     dpdk_enable_l4_csum_offload (xd);
554                 }
555               break;
556
557               /* Intel Red Rock Canyon */
558             case VNET_DPDK_PMD_FM10K:
559               xd->port_type = VNET_DPDK_PORT_TYPE_ETH_SWITCH;
560               break;
561
562               /* virtio */
563             case VNET_DPDK_PMD_VIRTIO:
564               xd->port_conf.rxmode.mq_mode = ETH_MQ_RX_NONE;
565               xd->port_type = VNET_DPDK_PORT_TYPE_ETH_1G;
566               xd->nb_rx_desc = DPDK_NB_RX_DESC_VIRTIO;
567               xd->nb_tx_desc = DPDK_NB_TX_DESC_VIRTIO;
568               break;
569
570               /* vmxnet3 */
571             case VNET_DPDK_PMD_VMXNET3:
572               xd->port_type = VNET_DPDK_PORT_TYPE_ETH_1G;
573               xd->port_conf.txmode.offloads |= DEV_TX_OFFLOAD_MULTI_SEGS;
574               break;
575
576             case VNET_DPDK_PMD_AF_PACKET:
577               xd->port_type = VNET_DPDK_PORT_TYPE_AF_PACKET;
578               xd->af_packet_instance_num = af_packet_instance_num++;
579               break;
580
581             case VNET_DPDK_PMD_VIRTIO_USER:
582               xd->port_type = VNET_DPDK_PORT_TYPE_VIRTIO_USER;
583               break;
584
585             case VNET_DPDK_PMD_VHOST_ETHER:
586               xd->port_type = VNET_DPDK_PORT_TYPE_VHOST_ETHER;
587               break;
588
589             case VNET_DPDK_PMD_LIOVF_ETHER:
590               xd->port_type = VNET_DPDK_PORT_TYPE_ETH_VF;
591               break;
592
593             case VNET_DPDK_PMD_FAILSAFE:
594               xd->port_type = VNET_DPDK_PORT_TYPE_FAILSAFE;
595               xd->port_conf.intr_conf.lsc = 1;
596               break;
597
598             case VNET_DPDK_PMD_NETVSC:
599                 {
600                   struct rte_eth_link l;
601                   rte_eth_link_get_nowait (i, &l);
602                   xd->port_type = VNET_DPDK_PORT_TYPE_ETH_VF;
603                 }
604               break;
605
606             default:
607               xd->port_type = VNET_DPDK_PORT_TYPE_UNKNOWN;
608             }
609
610           if (devconf->num_rx_desc)
611             xd->nb_rx_desc = devconf->num_rx_desc;
612           else {
613
614             /* If num_rx_desc is not specified by VPP user, the current CPU is working
615             with 2M page and has no L3 cache, default num_rx_desc is changed to 512
616             from original 1024 to help reduce TLB misses.
617             */
618             if ((clib_mem_get_default_hugepage_size () == 2 << 20)
619               && check_l3cache() == 0)
620               xd->nb_rx_desc = 512;
621           }
622
623           if (devconf->num_tx_desc)
624             xd->nb_tx_desc = devconf->num_tx_desc;
625           else {
626
627             /* If num_tx_desc is not specified by VPP user, the current CPU is working
628             with 2M page and has no L3 cache, default num_tx_desc is changed to 512
629             from original 1024 to help reduce TLB misses.
630             */
631             if ((clib_mem_get_default_hugepage_size () == 2 << 20)
632               && check_l3cache() == 0)
633               xd->nb_tx_desc = 512;
634           }
635        }
636
637       if (xd->pmd == VNET_DPDK_PMD_AF_PACKET)
638         {
639           f64 now = vlib_time_now (vm);
640           u32 rnd;
641           rnd = (u32) (now * 1e6);
642           rnd = random_u32 (&rnd);
643           clib_memcpy (addr + 2, &rnd, sizeof (rnd));
644           addr[0] = 2;
645           addr[1] = 0xfe;
646         }
647       else
648         rte_eth_macaddr_get (i, (void *) addr);
649
650       xd->port_id = i;
651       xd->device_index = xd - dm->devices;
652       xd->per_interface_next_index = ~0;
653
654       /* assign interface to input thread */
655       int q;
656
657       error = ethernet_register_interface
658         (dm->vnet_main, dpdk_device_class.index, xd->device_index,
659          /* ethernet address */ addr,
660          &xd->hw_if_index, dpdk_flag_change);
661       if (error)
662         return error;
663
664       /*
665        * Ensure default mtu is not > the mtu read from the hardware.
666        * Otherwise rte_eth_dev_configure() will fail and the port will
667        * not be available.
668        * Calculate max_frame_size and mtu supported by NIC
669        */
670       if (ETHERNET_MAX_PACKET_BYTES > dev_info.max_rx_pktlen)
671         {
672           /*
673            * This device does not support the platforms's max frame
674            * size. Use it's advertised mru instead.
675            */
676           max_rx_frame = dev_info.max_rx_pktlen;
677           mtu = dev_info.max_rx_pktlen - sizeof (ethernet_header_t);
678         }
679       else
680         {
681           /* VPP treats MTU and max_rx_pktlen both equal to
682            * ETHERNET_MAX_PACKET_BYTES, if dev_info.max_rx_pktlen >=
683            * ETHERNET_MAX_PACKET_BYTES + sizeof(ethernet_header_t)
684            */
685           if (dev_info.max_rx_pktlen >= (ETHERNET_MAX_PACKET_BYTES +
686                                          sizeof (ethernet_header_t)))
687             {
688               mtu = ETHERNET_MAX_PACKET_BYTES;
689               max_rx_frame = ETHERNET_MAX_PACKET_BYTES;
690
691               /*
692                * Some platforms do not account for Ethernet FCS (4 bytes) in
693                * MTU calculations. To interop with them increase mru but only
694                * if the device's settings can support it.
695                */
696               if (dpdk_port_crc_strip_enabled (xd) &&
697                   (dev_info.max_rx_pktlen >= (ETHERNET_MAX_PACKET_BYTES +
698                                               sizeof (ethernet_header_t) +
699                                               4)))
700                 {
701                   max_rx_frame += 4;
702                 }
703             }
704           else
705             {
706               max_rx_frame = ETHERNET_MAX_PACKET_BYTES;
707               mtu = ETHERNET_MAX_PACKET_BYTES - sizeof (ethernet_header_t);
708
709               if (dpdk_port_crc_strip_enabled (xd) &&
710                   (dev_info.max_rx_pktlen >= (ETHERNET_MAX_PACKET_BYTES + 4)))
711                 {
712                   max_rx_frame += 4;
713                 }
714             }
715         }
716
717       if (xd->pmd == VNET_DPDK_PMD_FAILSAFE)
718         {
719           /* failsafe device numerables are reported with active device only,
720            * need to query the mtu for current device setup to overwrite
721            * reported value.
722            */
723           uint16_t dev_mtu;
724           if (!rte_eth_dev_get_mtu (i, &dev_mtu))
725             {
726               mtu = dev_mtu;
727               max_rx_frame = mtu + sizeof (ethernet_header_t);
728
729               if (dpdk_port_crc_strip_enabled (xd))
730                 {
731                   max_rx_frame += 4;
732                 }
733             }
734         }
735
736       /*Set port rxmode config */
737       xd->port_conf.rxmode.max_rx_pkt_len = max_rx_frame;
738
739       sw = vnet_get_hw_sw_interface (dm->vnet_main, xd->hw_if_index);
740       xd->sw_if_index = sw->sw_if_index;
741       vnet_hw_if_set_input_node (dm->vnet_main, xd->hw_if_index,
742                                  dpdk_input_node.index);
743
744       if (devconf->workers)
745         {
746           int i;
747           q = 0;
748           clib_bitmap_foreach (i, devconf->workers)  {
749               dpdk_rx_queue_t *rxq = vec_elt_at_index (xd->rx_queues, q);
750               rxq->queue_index = vnet_hw_if_register_rx_queue (
751                 dm->vnet_main, xd->hw_if_index, q++,
752                 vdm->first_worker_thread_index + i);
753           }
754         }
755       else
756         for (q = 0; q < xd->rx_q_used; q++)
757           {
758             dpdk_rx_queue_t *rxq = vec_elt_at_index (xd->rx_queues, q);
759             rxq->queue_index = vnet_hw_if_register_rx_queue (
760               dm->vnet_main, xd->hw_if_index, q, VNET_HW_IF_RXQ_THREAD_ANY);
761           }
762
763       vnet_hw_if_update_runtime_data (dm->vnet_main, xd->hw_if_index);
764
765       /*Get vnet hardware interface */
766       hi = vnet_get_hw_interface (dm->vnet_main, xd->hw_if_index);
767
768       /*Override default max_packet_bytes and max_supported_bytes set in
769        * ethernet_register_interface() above*/
770       if (hi)
771         {
772           hi->max_packet_bytes = mtu;
773           hi->max_supported_packet_bytes = max_rx_frame;
774           hi->numa_node = xd->cpu_socket;
775
776           /* Indicate ability to support L3 DMAC filtering and
777            * initialize interface to L3 non-promisc mode */
778           hi->caps |= VNET_HW_INTERFACE_CAP_SUPPORTS_MAC_FILTER;
779           ethernet_set_flags (dm->vnet_main, xd->hw_if_index,
780                              ETHERNET_INTERFACE_FLAG_DEFAULT_L3);
781         }
782
783       if (dm->conf->no_tx_checksum_offload == 0)
784         if (xd->flags & DPDK_DEVICE_FLAG_TX_OFFLOAD && hi != NULL)
785           {
786             hi->caps |= VNET_HW_INTERFACE_CAP_SUPPORTS_TX_IP4_CKSUM |
787                         VNET_HW_INTERFACE_CAP_SUPPORTS_TX_TCP_CKSUM |
788                         VNET_HW_INTERFACE_CAP_SUPPORTS_TX_UDP_CKSUM;
789           }
790       if (devconf->tso == DPDK_DEVICE_TSO_ON && hi != NULL)
791         {
792           /*tcp_udp checksum must be enabled*/
793           if ((dm->conf->enable_tcp_udp_checksum) &&
794               (hi->caps & VNET_HW_INTERFACE_CAP_SUPPORTS_TX_CKSUM))
795             {
796               hi->caps |= VNET_HW_INTERFACE_CAP_SUPPORTS_TCP_GSO |
797                           VNET_HW_INTERFACE_CAP_SUPPORTS_UDP_GSO;
798               xd->port_conf.txmode.offloads |=
799                 DEV_TX_OFFLOAD_TCP_TSO | DEV_TX_OFFLOAD_UDP_TSO;
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
812               (vnet_get_main (), hi, 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, i,
821                       format_dpdk_device_errors, xd);
822
823       /*
824        * A note on Cisco VIC (PMD_ENIC) and VLAN:
825        *
826        * With Cisco VIC vNIC, every ingress packet is tagged. On a
827        * trunk vNIC (C series "standalone" server), packets on no VLAN
828        * are tagged with vlan 0. On an access vNIC (standalone or B
829        * series "blade" server), packets on the default/native VLAN
830        * are tagged with that vNIC's VLAN. VPP expects these packets
831        * to be untagged, and previously enabled VLAN strip on VIC by
832        * default. But it also broke vlan sub-interfaces.
833        *
834        * The VIC adapter has "untag default vlan" ingress VLAN rewrite
835        * mode, which removes tags from these packets. VPP now includes
836        * a local patch for the enic driver to use this untag mode, so
837        * enabling vlan stripping is no longer needed. In future, the
838        * driver + dpdk will have an API to set the mode after
839        * rte_eal_init. Then, this note and local patch will be
840        * removed.
841        */
842
843       /*
844        * VLAN stripping: default to VLAN strip disabled, unless specified
845        * otherwise in the startup config.
846        */
847
848         vlan_off = rte_eth_dev_get_vlan_offload (xd->port_id);
849         if (devconf->vlan_strip_offload == DPDK_DEVICE_VLAN_STRIP_ON)
850           {
851             vlan_off |= ETH_VLAN_STRIP_OFFLOAD;
852             if (rte_eth_dev_set_vlan_offload (xd->port_id, vlan_off) >= 0)
853               dpdk_log_info ("VLAN strip enabled for interface\n");
854             else
855               dpdk_log_warn ("VLAN strip cannot be supported by interface\n");
856             xd->port_conf.rxmode.offloads |= DEV_RX_OFFLOAD_VLAN_STRIP;
857           }
858         else
859           {
860             if (vlan_off & ETH_VLAN_STRIP_OFFLOAD)
861               {
862                 vlan_off &= ~ETH_VLAN_STRIP_OFFLOAD;
863                 if (rte_eth_dev_set_vlan_offload (xd->port_id, vlan_off) >= 0)
864                   dpdk_log_warn ("set VLAN offload failed\n");
865               }
866             xd->port_conf.rxmode.offloads &= ~DEV_RX_OFFLOAD_VLAN_STRIP;
867           }
868
869         if (hi)
870           hi->max_packet_bytes = xd->port_conf.rxmode.max_rx_pkt_len
871             - sizeof (ethernet_header_t);
872         else
873           dpdk_log_warn ("hi NULL");
874
875         if (dm->conf->no_multi_seg)
876           mtu = mtu > ETHER_MAX_LEN ? ETHER_MAX_LEN : mtu;
877
878         rte_eth_dev_set_mtu (xd->port_id, mtu);
879 }
880
881   /* *INDENT-ON* */
882
883   return 0;
884 }
885
886 static void
887 dpdk_bind_devices_to_uio (dpdk_config_main_t * conf)
888 {
889   vlib_main_t *vm = vlib_get_main ();
890   clib_error_t *error;
891   u8 *pci_addr = 0;
892   int num_whitelisted = vec_len (conf->dev_confs);
893   vlib_pci_device_info_t *d = 0;
894   vlib_pci_addr_t *addr = 0, *addrs;
895   int i;
896
897   addrs = vlib_pci_get_all_dev_addrs ();
898   /* *INDENT-OFF* */
899   vec_foreach (addr, addrs)
900     {
901     dpdk_device_config_t * devconf = 0;
902     vec_reset_length (pci_addr);
903     pci_addr = format (pci_addr, "%U%c", format_vlib_pci_addr, addr, 0);
904     if (d)
905     {
906       vlib_pci_free_device_info (d);
907       d = 0;
908       }
909     d = vlib_pci_get_device_info (vm, addr, &error);
910     if (error)
911     {
912       vlib_log_warn (dpdk_main.log_default, "%U", format_clib_error, error);
913       clib_error_free (error);
914       continue;
915     }
916
917     if (d->device_class != PCI_CLASS_NETWORK_ETHERNET && d->device_class != PCI_CLASS_PROCESSOR_CO)
918       continue;
919
920     if (num_whitelisted)
921       {
922         uword * p = hash_get (conf->device_config_index_by_pci_addr, addr->as_u32);
923
924         if (!p)
925           {
926           skipped_pci:
927             continue;
928           }
929
930         devconf = pool_elt_at_index (conf->dev_confs, p[0]);
931       }
932
933     /* Enforce Device blacklist by vendor and device */
934     for (i = 0; i < vec_len (conf->blacklist_by_pci_vendor_and_device); i++)
935       {
936         u16 vendor, device;
937         vendor = (u16)(conf->blacklist_by_pci_vendor_and_device[i] >> 16);
938         device = (u16)(conf->blacklist_by_pci_vendor_and_device[i] & 0xFFFF);
939         if (d->vendor_id == vendor && d->device_id == device)
940           {
941             /*
942              * Expected case: device isn't whitelisted,
943              * so blacklist it...
944              */
945             if (devconf == 0)
946               {
947                 /* Device is blacklisted */
948                 pool_get (conf->dev_confs, devconf);
949                 hash_set (conf->device_config_index_by_pci_addr, addr->as_u32,
950                           devconf - conf->dev_confs);
951                 devconf->pci_addr.as_u32 = addr->as_u32;
952                 devconf->dev_addr_type = VNET_DEV_ADDR_PCI;
953                 devconf->is_blacklisted = 1;
954                 goto skipped_pci;
955               }
956             else /* explicitly whitelisted, ignore the device blacklist  */
957               break;
958           }
959       }
960
961     /* virtio */
962     if (d->vendor_id == 0x1af4 &&
963             (d->device_id == VIRTIO_PCI_LEGACY_DEVICEID_NET ||
964              d->device_id == VIRTIO_PCI_MODERN_DEVICEID_NET))
965       ;
966     /* vmxnet3 */
967     else if (d->vendor_id == 0x15ad && d->device_id == 0x07b0)
968       {
969         /*
970          * For vmxnet3 PCI, unless it is explicitly specified in the whitelist,
971          * the default is to put it in the blacklist.
972          */
973         if (devconf == 0)
974           {
975             pool_get (conf->dev_confs, devconf);
976             hash_set (conf->device_config_index_by_pci_addr, addr->as_u32,
977                       devconf - conf->dev_confs);
978             devconf->pci_addr.as_u32 = addr->as_u32;
979             devconf->is_blacklisted = 1;
980           }
981       }
982     /* all Intel network devices */
983     else if (d->vendor_id == 0x8086 && d->device_class == PCI_CLASS_NETWORK_ETHERNET)
984       ;
985     /* all Intel QAT devices VFs */
986     else if (d->vendor_id == 0x8086 && d->device_class == PCI_CLASS_PROCESSOR_CO &&
987         (d->device_id == 0x0443 || d->device_id == 0x18a1 || d->device_id == 0x19e3 ||
988         d->device_id == 0x37c9 || d->device_id == 0x6f55))
989       ;
990     /* Cisco VIC */
991     else if (d->vendor_id == 0x1137 &&
992         (d->device_id == 0x0043 || d->device_id == 0x0071))
993       ;
994     /* Chelsio T4/T5 */
995     else if (d->vendor_id == 0x1425 && (d->device_id & 0xe000) == 0x4000)
996       ;
997     /* Amazon Elastic Network Adapter */
998     else if (d->vendor_id == 0x1d0f && d->device_id >= 0xec20 && d->device_id <= 0xec21)
999       ;
1000     /* Cavium Network Adapter */
1001     else if (d->vendor_id == 0x177d && d->device_id == 0x9712)
1002       ;
1003     /* Cavium FastlinQ QL41000 Series */
1004     else if (d->vendor_id == 0x1077 && d->device_id >= 0x8070 && d->device_id <= 0x8090)
1005       ;
1006     /* Mellanox CX3, CX3VF */
1007     else if (d->vendor_id == 0x15b3 && d->device_id >= 0x1003 && d->device_id <= 0x1004)
1008       {
1009         continue;
1010       }
1011     /* Mellanox CX4, CX4VF, CX4LX, CX4LXVF, CX5, CX5VF, CX5EX, CX5EXVF */
1012     else if (d->vendor_id == 0x15b3 && d->device_id >= 0x1013 && d->device_id <= 0x101a)
1013       {
1014         continue;
1015       }
1016     /* Mellanox CX6, CX6VF, CX6DX, CX6DXVF */
1017     else if (d->vendor_id == 0x15b3 && d->device_id >= 0x101b && d->device_id <= 0x101e)
1018       {
1019         continue;
1020       }
1021     /* Broadcom NetXtreme S, and E series only */
1022     else if (d->vendor_id == 0x14e4 &&
1023         ((d->device_id >= 0x16c0 &&
1024                 d->device_id != 0x16c6 && d->device_id != 0x16c7 &&
1025                 d->device_id != 0x16dd && d->device_id != 0x16f7 &&
1026                 d->device_id != 0x16fd && d->device_id != 0x16fe &&
1027                 d->device_id != 0x170d && d->device_id != 0x170c &&
1028                 d->device_id != 0x170e && d->device_id != 0x1712 &&
1029                 d->device_id != 0x1713) ||
1030         (d->device_id == 0x1604 || d->device_id == 0x1605 ||
1031          d->device_id == 0x1614 || d->device_id == 0x1606 ||
1032          d->device_id == 0x1609 || d->device_id == 0x1614)))
1033       ;
1034     else
1035       {
1036         dpdk_log_warn ("Unsupported PCI device 0x%04x:0x%04x found "
1037                       "at PCI address %s\n", (u16) d->vendor_id, (u16) d->device_id,
1038                       pci_addr);
1039         continue;
1040       }
1041
1042     error = vlib_pci_bind_to_uio (vm, addr, (char *) conf->uio_driver_name);
1043
1044     if (error)
1045       {
1046         if (devconf == 0)
1047           {
1048             pool_get (conf->dev_confs, devconf);
1049             hash_set (conf->device_config_index_by_pci_addr, addr->as_u32,
1050                       devconf - conf->dev_confs);
1051             devconf->pci_addr.as_u32 = addr->as_u32;
1052           }
1053         devconf->dev_addr_type = VNET_DEV_ADDR_PCI;
1054         devconf->is_blacklisted = 1;
1055         clib_error_report (error);
1056       }
1057   }
1058   /* *INDENT-ON* */
1059   vec_free (pci_addr);
1060   vlib_pci_free_device_info (d);
1061 }
1062
1063 static void
1064 dpdk_bind_vmbus_devices_to_uio (dpdk_config_main_t * conf)
1065 {
1066   clib_error_t *error;
1067   vlib_vmbus_addr_t *addrs, *addr = 0;
1068   int num_whitelisted = vec_len (conf->dev_confs);
1069   int i;
1070
1071   addrs = vlib_vmbus_get_all_dev_addrs ();
1072
1073   /* *INDENT-OFF* */
1074   vec_foreach (addr, addrs)
1075     {
1076       dpdk_device_config_t *devconf = 0;
1077       if (num_whitelisted)
1078         {
1079           uword *p =
1080             mhash_get (&conf->device_config_index_by_vmbus_addr, addr);
1081           if (!p)
1082             {
1083               /* No devices blacklisted, but have whitelisted. blacklist all
1084                * non-whitelisted */
1085               pool_get (conf->dev_confs, devconf);
1086               mhash_set (&conf->device_config_index_by_vmbus_addr, addr,
1087                          devconf - conf->dev_confs, 0);
1088               devconf->vmbus_addr = *addr;
1089               devconf->dev_addr_type = VNET_DEV_ADDR_VMBUS;
1090               devconf->is_blacklisted = 1;
1091             skipped_vmbus:
1092               continue;
1093             }
1094
1095           devconf = pool_elt_at_index (conf->dev_confs, p[0]);
1096         }
1097
1098       /* Enforce Device blacklist by vmbus_addr */
1099       for (i = 0; i < vec_len (conf->blacklist_by_vmbus_addr); i++)
1100         {
1101           vlib_vmbus_addr_t *a1 = &conf->blacklist_by_vmbus_addr[i];
1102           vlib_vmbus_addr_t *a2 = addr;
1103           if (memcmp (a1, a2, sizeof (vlib_vmbus_addr_t)) == 0)
1104             {
1105               if (devconf == 0)
1106                 {
1107                   /* Device not whitelisted */
1108                   pool_get (conf->dev_confs, devconf);
1109                   mhash_set (&conf->device_config_index_by_vmbus_addr, addr,
1110                              devconf - conf->dev_confs, 0);
1111                   devconf->vmbus_addr = *addr;
1112                   devconf->dev_addr_type = VNET_DEV_ADDR_VMBUS;
1113                   devconf->is_blacklisted = 1;
1114                   goto skipped_vmbus;
1115                 }
1116               else
1117                 {
1118                   break;
1119                 }
1120             }
1121         }
1122
1123       error = vlib_vmbus_bind_to_uio (addr);
1124       if (error)
1125         {
1126           if (devconf == 0)
1127             {
1128               pool_get (conf->dev_confs, devconf);
1129               mhash_set (&conf->device_config_index_by_vmbus_addr, addr,
1130                          devconf - conf->dev_confs, 0);
1131               devconf->vmbus_addr = *addr;
1132             }
1133           devconf->dev_addr_type = VNET_DEV_ADDR_VMBUS;
1134           devconf->is_blacklisted = 1;
1135           clib_error_report (error);
1136         }
1137     }
1138   /* *INDENT-ON* */
1139 }
1140
1141 uword
1142 unformat_max_simd_bitwidth (unformat_input_t *input, va_list *va)
1143 {
1144   uword *max_simd_bitwidth = va_arg (*va, uword *);
1145
1146   while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
1147     {
1148       if (!unformat (input, "%u", max_simd_bitwidth))
1149         goto error;
1150
1151       if (*max_simd_bitwidth != DPDK_MAX_SIMD_BITWIDTH_256 &&
1152           *max_simd_bitwidth != DPDK_MAX_SIMD_BITWIDTH_512)
1153         goto error;
1154     }
1155   return 1;
1156 error:
1157   return 0;
1158 }
1159
1160 static clib_error_t *
1161 dpdk_device_config (dpdk_config_main_t *conf, void *addr,
1162                     dpdk_device_addr_type_t addr_type, unformat_input_t *input,
1163                     u8 is_default)
1164 {
1165   clib_error_t *error = 0;
1166   uword *p;
1167   dpdk_device_config_t *devconf = 0;
1168   unformat_input_t sub_input;
1169
1170   if (is_default)
1171     {
1172       devconf = &conf->default_devconf;
1173     }
1174   else if (addr_type == VNET_DEV_ADDR_PCI)
1175     {
1176       p = hash_get (conf->device_config_index_by_pci_addr,
1177                     ((vlib_pci_addr_t *) (addr))->as_u32);
1178
1179       if (!p)
1180         {
1181           pool_get (conf->dev_confs, devconf);
1182           hash_set (conf->device_config_index_by_pci_addr,
1183                     ((vlib_pci_addr_t *) (addr))->as_u32,
1184                     devconf - conf->dev_confs);
1185         }
1186       else
1187         return clib_error_return (0,
1188                                   "duplicate configuration for PCI address %U",
1189                                   format_vlib_pci_addr, addr);
1190     }
1191   else if (addr_type == VNET_DEV_ADDR_VMBUS)
1192     {
1193       p = mhash_get (&conf->device_config_index_by_vmbus_addr,
1194                      (vlib_vmbus_addr_t *) (addr));
1195
1196       if (!p)
1197         {
1198           pool_get (conf->dev_confs, devconf);
1199           mhash_set (&conf->device_config_index_by_vmbus_addr, addr,
1200                      devconf - conf->dev_confs, 0);
1201         }
1202       else
1203         return clib_error_return (
1204           0, "duplicate configuration for VMBUS address %U",
1205           format_vlib_vmbus_addr, addr);
1206     }
1207
1208   if (addr_type == VNET_DEV_ADDR_PCI)
1209     {
1210       devconf->pci_addr.as_u32 = ((vlib_pci_addr_t *) (addr))->as_u32;
1211       devconf->tso = DPDK_DEVICE_TSO_DEFAULT;
1212       devconf->dev_addr_type = VNET_DEV_ADDR_PCI;
1213     }
1214   else if (addr_type == VNET_DEV_ADDR_VMBUS)
1215     {
1216       devconf->vmbus_addr = *((vlib_vmbus_addr_t *) (addr));
1217       devconf->tso = DPDK_DEVICE_TSO_DEFAULT;
1218       devconf->dev_addr_type = VNET_DEV_ADDR_VMBUS;
1219     }
1220
1221   if (!input)
1222     return 0;
1223
1224   unformat_skip_white_space (input);
1225   while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
1226     {
1227       if (unformat (input, "num-rx-queues %u", &devconf->num_rx_queues))
1228         ;
1229       else if (unformat (input, "num-tx-queues %u", &devconf->num_tx_queues))
1230         ;
1231       else if (unformat (input, "num-rx-desc %u", &devconf->num_rx_desc))
1232         ;
1233       else if (unformat (input, "num-tx-desc %u", &devconf->num_tx_desc))
1234         ;
1235       else if (unformat (input, "name %s", &devconf->name))
1236         ;
1237       else if (unformat (input, "workers %U", unformat_bitmap_list,
1238                          &devconf->workers))
1239         ;
1240       else
1241         if (unformat
1242             (input, "rss %U", unformat_vlib_cli_sub_input, &sub_input))
1243         {
1244           error = unformat_rss_fn (&sub_input, &devconf->rss_fn);
1245           if (error)
1246             break;
1247         }
1248       else if (unformat (input, "vlan-strip-offload off"))
1249         devconf->vlan_strip_offload = DPDK_DEVICE_VLAN_STRIP_OFF;
1250       else if (unformat (input, "vlan-strip-offload on"))
1251         devconf->vlan_strip_offload = DPDK_DEVICE_VLAN_STRIP_ON;
1252       else if (unformat (input, "tso on"))
1253         {
1254           devconf->tso = DPDK_DEVICE_TSO_ON;
1255         }
1256       else if (unformat (input, "tso off"))
1257         {
1258           devconf->tso = DPDK_DEVICE_TSO_OFF;
1259         }
1260       else if (unformat (input, "devargs %s", &devconf->devargs))
1261         ;
1262       else if (unformat (input, "rss-queues %U",
1263                          unformat_bitmap_list, &devconf->rss_queues))
1264         ;
1265       else
1266         {
1267           error = clib_error_return (0, "unknown input `%U'",
1268                                      format_unformat_error, input);
1269           break;
1270         }
1271     }
1272
1273   if (error)
1274     return error;
1275
1276   if (devconf->workers && devconf->num_rx_queues == 0)
1277     devconf->num_rx_queues = clib_bitmap_count_set_bits (devconf->workers);
1278   else if (devconf->workers &&
1279            clib_bitmap_count_set_bits (devconf->workers) !=
1280            devconf->num_rx_queues)
1281     error = clib_error_return (0,
1282                                "%U: number of worker threads must be "
1283                                "equal to number of rx queues",
1284                                format_vlib_pci_addr, addr);
1285
1286   return error;
1287 }
1288
1289 static clib_error_t *
1290 dpdk_log_read_ready (clib_file_t * uf)
1291 {
1292   unformat_input_t input;
1293   u8 *line, *s = 0;
1294   int n, n_try;
1295
1296   n = n_try = 4096;
1297   while (n == n_try)
1298     {
1299       uword len = vec_len (s);
1300       vec_resize (s, len + n_try);
1301
1302       n = read (uf->file_descriptor, s + len, n_try);
1303       if (n < 0 && errno != EAGAIN)
1304         return clib_error_return_unix (0, "read");
1305       _vec_len (s) = len + (n < 0 ? 0 : n);
1306     }
1307
1308   unformat_init_vector (&input, s);
1309
1310   while (unformat_user (&input, unformat_line, &line))
1311     {
1312       dpdk_log_notice ("%v", line);
1313       vec_free (line);
1314     }
1315
1316   unformat_free (&input);
1317   return 0;
1318 }
1319
1320 static clib_error_t *
1321 dpdk_config (vlib_main_t * vm, unformat_input_t * input)
1322 {
1323   clib_error_t *error = 0;
1324   dpdk_config_main_t *conf = &dpdk_config_main;
1325   vlib_thread_main_t *tm = vlib_get_thread_main ();
1326   dpdk_device_config_t *devconf;
1327   vlib_pci_addr_t pci_addr = { 0 };
1328   vlib_vmbus_addr_t vmbus_addr = { 0 };
1329   unformat_input_t sub_input;
1330   uword default_hugepage_sz, x;
1331   u8 *s, *tmp = 0;
1332   int ret, i;
1333   int num_whitelisted = 0;
1334   int eal_no_hugetlb = 0;
1335   u8 no_pci = 0;
1336   u8 no_vmbus = 0;
1337   u8 file_prefix = 0;
1338   u8 *socket_mem = 0;
1339   u8 *huge_dir_path = 0;
1340   u32 vendor, device, domain, bus, func;
1341
1342   huge_dir_path =
1343     format (0, "%s/hugepages%c", vlib_unix_get_runtime_dir (), 0);
1344
1345   conf->device_config_index_by_pci_addr = hash_create (0, sizeof (uword));
1346   mhash_init (&conf->device_config_index_by_vmbus_addr, sizeof (uword),
1347               sizeof (vlib_vmbus_addr_t));
1348
1349   while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
1350     {
1351       /* Prime the pump */
1352       if (unformat (input, "no-hugetlb"))
1353         {
1354           vec_add1 (conf->eal_init_args, (u8 *) "--no-huge");
1355           eal_no_hugetlb = 1;
1356         }
1357       else if (unformat (input, "telemetry"))
1358         conf->enable_telemetry = 1;
1359
1360       else if (unformat (input, "enable-tcp-udp-checksum"))
1361         conf->enable_tcp_udp_checksum = 1;
1362
1363       else if (unformat (input, "no-tx-checksum-offload"))
1364         conf->no_tx_checksum_offload = 1;
1365
1366       else if (unformat (input, "decimal-interface-names"))
1367         conf->interface_name_format_decimal = 1;
1368
1369       else if (unformat (input, "no-multi-seg"))
1370         conf->no_multi_seg = 1;
1371       else if (unformat (input, "max-simd-bitwidth %U",
1372                          unformat_max_simd_bitwidth, &conf->max_simd_bitwidth))
1373         ;
1374       else if (unformat (input, "dev default %U", unformat_vlib_cli_sub_input,
1375                          &sub_input))
1376         {
1377           error =
1378             dpdk_device_config (conf, 0, VNET_DEV_ADDR_ANY, &sub_input, 1);
1379
1380           if (error)
1381             return error;
1382         }
1383       else
1384         if (unformat
1385             (input, "dev %U %U", unformat_vlib_pci_addr, &pci_addr,
1386              unformat_vlib_cli_sub_input, &sub_input))
1387         {
1388           error = dpdk_device_config (conf, &pci_addr, VNET_DEV_ADDR_PCI,
1389                                       &sub_input, 0);
1390
1391           if (error)
1392             return error;
1393
1394           num_whitelisted++;
1395         }
1396       else if (unformat (input, "dev %U", unformat_vlib_pci_addr, &pci_addr))
1397         {
1398           error =
1399             dpdk_device_config (conf, &pci_addr, VNET_DEV_ADDR_PCI, 0, 0);
1400
1401           if (error)
1402             return error;
1403
1404           num_whitelisted++;
1405         }
1406       else if (unformat (input, "dev %U %U", unformat_vlib_vmbus_addr,
1407                          &vmbus_addr, unformat_vlib_cli_sub_input, &sub_input))
1408         {
1409           error = dpdk_device_config (conf, &vmbus_addr, VNET_DEV_ADDR_VMBUS,
1410                                       &sub_input, 0);
1411
1412           if (error)
1413             return error;
1414
1415           num_whitelisted++;
1416         }
1417       else if (unformat (input, "dev %U", unformat_vlib_vmbus_addr,
1418                          &vmbus_addr))
1419         {
1420           error =
1421             dpdk_device_config (conf, &vmbus_addr, VNET_DEV_ADDR_VMBUS, 0, 0);
1422
1423           if (error)
1424             return error;
1425
1426           num_whitelisted++;
1427         }
1428       else if (unformat (input, "num-mem-channels %d", &conf->nchannels))
1429         conf->nchannels_set_manually = 0;
1430       else if (unformat (input, "num-crypto-mbufs %d",
1431                          &conf->num_crypto_mbufs))
1432         ;
1433       else if (unformat (input, "uio-driver %s", &conf->uio_driver_name))
1434         ;
1435       else if (unformat (input, "socket-mem %s", &socket_mem))
1436         ;
1437       else if (unformat (input, "no-pci"))
1438         {
1439           no_pci = 1;
1440           tmp = format (0, "--no-pci%c", 0);
1441           vec_add1 (conf->eal_init_args, tmp);
1442         }
1443       else if (unformat (input, "blacklist %U", unformat_vlib_vmbus_addr,
1444                          &vmbus_addr))
1445         {
1446           vec_add1 (conf->blacklist_by_vmbus_addr, vmbus_addr);
1447         }
1448       else
1449         if (unformat
1450             (input, "blacklist %x:%x:%x.%x", &domain, &bus, &device, &func))
1451         {
1452           tmp = format (0, "-b%c", 0);
1453           vec_add1 (conf->eal_init_args, tmp);
1454           tmp =
1455             format (0, "%04x:%02x:%02x.%x%c", domain, bus, device, func, 0);
1456           vec_add1 (conf->eal_init_args, tmp);
1457         }
1458       else if (unformat (input, "blacklist %x:%x", &vendor, &device))
1459         {
1460           u32 blacklist_entry;
1461           if (vendor > 0xFFFF)
1462             return clib_error_return (0, "blacklist PCI vendor out of range");
1463           if (device > 0xFFFF)
1464             return clib_error_return (0, "blacklist PCI device out of range");
1465           blacklist_entry = (vendor << 16) | (device & 0xffff);
1466           vec_add1 (conf->blacklist_by_pci_vendor_and_device,
1467                     blacklist_entry);
1468         }
1469       else if (unformat (input, "no-vmbus"))
1470         {
1471           no_vmbus = 1;
1472           tmp = format (0, "--no-vmbus%c", 0);
1473           vec_add1 (conf->eal_init_args, tmp);
1474         }
1475
1476 #define _(a)                                    \
1477       else if (unformat(input, #a))             \
1478         {                                       \
1479           tmp = format (0, "--%s%c", #a, 0);    \
1480           vec_add1 (conf->eal_init_args, tmp);    \
1481         }
1482       foreach_eal_double_hyphen_predicate_arg
1483 #undef _
1484 #define _(a)                                          \
1485         else if (unformat(input, #a " %s", &s))       \
1486           {                                           \
1487             if (!strncmp(#a, "file-prefix", 11)) \
1488               file_prefix = 1;                        \
1489             tmp = format (0, "--%s%c", #a, 0);        \
1490             vec_add1 (conf->eal_init_args, tmp);      \
1491             vec_add1 (s, 0);                          \
1492             if (!strncmp(#a, "vdev", 4))              \
1493               if (strstr((char*)s, "af_packet"))      \
1494                 clib_warning ("af_packet obsoleted. Use CLI 'create host-interface'."); \
1495             vec_add1 (conf->eal_init_args, s);        \
1496           }
1497         foreach_eal_double_hyphen_arg
1498 #undef _
1499 #define _(a,b)                                          \
1500           else if (unformat(input, #a " %s", &s))       \
1501             {                                           \
1502               tmp = format (0, "-%s%c", #b, 0);         \
1503               vec_add1 (conf->eal_init_args, tmp);      \
1504               vec_add1 (s, 0);                          \
1505               vec_add1 (conf->eal_init_args, s);        \
1506             }
1507         foreach_eal_single_hyphen_arg
1508 #undef _
1509 #define _(a,b)                                          \
1510             else if (unformat(input, #a " %s", &s))     \
1511               {                                         \
1512                 tmp = format (0, "-%s%c", #b, 0);       \
1513                 vec_add1 (conf->eal_init_args, tmp);    \
1514                 vec_add1 (s, 0);                        \
1515                 vec_add1 (conf->eal_init_args, s);      \
1516                 conf->a##_set_manually = 1;             \
1517               }
1518         foreach_eal_single_hyphen_mandatory_arg
1519 #undef _
1520         else if (unformat (input, "default"))
1521         ;
1522
1523       else if (unformat_skip_white_space (input))
1524         ;
1525       else
1526         {
1527           error = clib_error_return (0, "unknown input `%U'",
1528                                      format_unformat_error, input);
1529           goto done;
1530         }
1531     }
1532
1533   if (!conf->uio_driver_name)
1534     conf->uio_driver_name = format (0, "auto%c", 0);
1535
1536   if (eal_no_hugetlb == 0)
1537     {
1538       vec_add1 (conf->eal_init_args, (u8 *) "--in-memory");
1539
1540       default_hugepage_sz = clib_mem_get_default_hugepage_size ();
1541
1542       /* *INDENT-OFF* */
1543       clib_bitmap_foreach (x, tm->cpu_socket_bitmap)
1544         {
1545           clib_error_t *e;
1546           uword n_pages;
1547           /* preallocate at least 16MB of hugepages per socket,
1548             if more is needed it is up to consumer to preallocate more */
1549           n_pages = round_pow2 ((uword) 16 << 20, default_hugepage_sz);
1550           n_pages /= default_hugepage_sz;
1551
1552           if ((e = clib_sysfs_prealloc_hugepages(x, 0, n_pages)))
1553             clib_error_report (e);
1554         }
1555       /* *INDENT-ON* */
1556     }
1557
1558   /* on/off dpdk's telemetry thread */
1559   if (conf->enable_telemetry == 0)
1560     {
1561       vec_add1 (conf->eal_init_args, (u8 *) "--no-telemetry");
1562     }
1563
1564   if (!file_prefix)
1565     {
1566       tmp = format (0, "--file-prefix%c", 0);
1567       vec_add1 (conf->eal_init_args, tmp);
1568       tmp = format (0, "vpp%c", 0);
1569       vec_add1 (conf->eal_init_args, tmp);
1570     }
1571
1572   if (error)
1573     return error;
1574
1575   /* I'll bet that -c and -n must be the first and second args... */
1576   if (!conf->coremask_set_manually)
1577     {
1578       vlib_thread_registration_t *tr;
1579       uword *coremask = 0;
1580       int i;
1581
1582       /* main thread core */
1583       coremask = clib_bitmap_set (coremask, tm->main_lcore, 1);
1584
1585       for (i = 0; i < vec_len (tm->registrations); i++)
1586         {
1587           tr = tm->registrations[i];
1588           coremask = clib_bitmap_or (coremask, tr->coremask);
1589         }
1590
1591       vec_insert (conf->eal_init_args, 2, 1);
1592       conf->eal_init_args[1] = (u8 *) "-c";
1593       tmp = format (0, "%U%c", format_bitmap_hex, coremask, 0);
1594       conf->eal_init_args[2] = tmp;
1595       clib_bitmap_free (coremask);
1596     }
1597
1598   if (!conf->nchannels_set_manually)
1599     {
1600       vec_insert (conf->eal_init_args, 2, 3);
1601       conf->eal_init_args[3] = (u8 *) "-n";
1602       tmp = format (0, "%d", conf->nchannels);
1603       vec_terminate_c_string (tmp);
1604       conf->eal_init_args[4] = tmp;
1605     }
1606
1607   if (no_pci == 0 && geteuid () == 0)
1608     dpdk_bind_devices_to_uio (conf);
1609
1610   if (no_vmbus == 0 && geteuid () == 0)
1611     dpdk_bind_vmbus_devices_to_uio (conf);
1612
1613 #define _(x) \
1614     if (devconf->x == 0 && conf->default_devconf.x > 0) \
1615       devconf->x = conf->default_devconf.x ;
1616
1617   /* *INDENT-OFF* */
1618   pool_foreach (devconf, conf->dev_confs)  {
1619
1620     /* default per-device config items */
1621     foreach_dpdk_device_config_item
1622
1623       /* copy vlan_strip config from default device */
1624       _ (vlan_strip_offload)
1625
1626       /* copy tso config from default device */
1627       _ (tso)
1628
1629       /* copy tso config from default device */
1630       _ (devargs)
1631
1632       /* copy rss_queues config from default device */
1633       _ (rss_queues)
1634
1635       /* add DPDK EAL whitelist/blacklist entry */
1636       if (num_whitelisted > 0 && devconf->is_blacklisted == 0 &&
1637           devconf->dev_addr_type == VNET_DEV_ADDR_PCI)
1638     {
1639           tmp = format (0, "-a%c", 0);
1640           vec_add1 (conf->eal_init_args, tmp);
1641           if (devconf->devargs)
1642           {
1643             tmp = format (0, "%U,%s%c", format_vlib_pci_addr,
1644                           &devconf->pci_addr, devconf->devargs, 0);
1645           }
1646           else
1647           {
1648             tmp = format (0, "%U%c", format_vlib_pci_addr, &devconf->pci_addr, 0);
1649           }
1650           vec_add1 (conf->eal_init_args, tmp);
1651     }
1652     else if (num_whitelisted == 0 && devconf->is_blacklisted != 0 &&
1653              devconf->dev_addr_type == VNET_DEV_ADDR_PCI)
1654     {
1655           tmp = format (0, "-b%c", 0);
1656           vec_add1 (conf->eal_init_args, tmp);
1657           tmp = format (0, "%U%c", format_vlib_pci_addr, &devconf->pci_addr, 0);
1658           vec_add1 (conf->eal_init_args, tmp);
1659     }
1660   }
1661   /* *INDENT-ON* */
1662
1663 #undef _
1664
1665   /* set master-lcore */
1666   tmp = format (0, "--main-lcore%c", 0);
1667   vec_add1 (conf->eal_init_args, tmp);
1668   tmp = format (0, "%u%c", tm->main_lcore, 0);
1669   vec_add1 (conf->eal_init_args, tmp);
1670
1671
1672   if (socket_mem)
1673     clib_warning ("socket-mem argument is deprecated");
1674
1675   /* NULL terminate the "argv" vector, in case of stupidity */
1676   vec_add1 (conf->eal_init_args, 0);
1677   _vec_len (conf->eal_init_args) -= 1;
1678
1679   /* Set up DPDK eal and packet mbuf pool early. */
1680
1681   int log_fds[2] = { 0 };
1682   if (pipe (log_fds) == 0)
1683     {
1684       if (fcntl (log_fds[1], F_SETFL, O_NONBLOCK) == 0)
1685         {
1686           FILE *f = fdopen (log_fds[1], "a");
1687           if (f && rte_openlog_stream (f) == 0)
1688             {
1689               clib_file_t t = { 0 };
1690               t.read_function = dpdk_log_read_ready;
1691               t.file_descriptor = log_fds[0];
1692               t.description = format (0, "DPDK logging pipe");
1693               clib_file_add (&file_main, &t);
1694             }
1695         }
1696       else
1697         {
1698           close (log_fds[0]);
1699           close (log_fds[1]);
1700         }
1701     }
1702
1703   vm = vlib_get_main ();
1704
1705   /* make copy of args as rte_eal_init tends to mess up with arg array */
1706   for (i = 1; i < vec_len (conf->eal_init_args); i++)
1707     conf->eal_init_args_str = format (conf->eal_init_args_str, "%s ",
1708                                       conf->eal_init_args[i]);
1709
1710   vec_terminate_c_string (conf->eal_init_args_str);
1711
1712   dpdk_log_notice ("EAL init args: %s", conf->eal_init_args_str);
1713   ret = rte_eal_init (vec_len (conf->eal_init_args),
1714                       (char **) conf->eal_init_args);
1715
1716   /* enable the AVX-512 vPMDs in DPDK */
1717   if (clib_cpu_supports_avx512_bitalg () &&
1718       conf->max_simd_bitwidth == DPDK_MAX_SIMD_BITWIDTH_DEFAULT)
1719     rte_vect_set_max_simd_bitwidth (RTE_VECT_SIMD_512);
1720   else if (conf->max_simd_bitwidth != DPDK_MAX_SIMD_BITWIDTH_DEFAULT)
1721     rte_vect_set_max_simd_bitwidth (conf->max_simd_bitwidth ==
1722                                         DPDK_MAX_SIMD_BITWIDTH_256 ?
1723                                       RTE_VECT_SIMD_256 :
1724                                       RTE_VECT_SIMD_512);
1725
1726   /* lazy umount hugepages */
1727   umount2 ((char *) huge_dir_path, MNT_DETACH);
1728   rmdir ((char *) huge_dir_path);
1729   vec_free (huge_dir_path);
1730
1731   if (ret < 0)
1732     return clib_error_return (0, "rte_eal_init returned %d", ret);
1733
1734   /* main thread 1st */
1735   if ((error = dpdk_buffer_pools_create (vm)))
1736     return error;
1737
1738 done:
1739   return error;
1740 }
1741
1742 VLIB_CONFIG_FUNCTION (dpdk_config, "dpdk");
1743
1744 void
1745 dpdk_update_link_state (dpdk_device_t * xd, f64 now)
1746 {
1747   vnet_main_t *vnm = vnet_get_main ();
1748   struct rte_eth_link prev_link = xd->link;
1749   u32 hw_flags = 0;
1750   u8 hw_flags_chg = 0;
1751
1752   /* only update link state for PMD interfaces */
1753   if ((xd->flags & DPDK_DEVICE_FLAG_PMD) == 0)
1754     return;
1755
1756   xd->time_last_link_update = now ? now : xd->time_last_link_update;
1757   clib_memset (&xd->link, 0, sizeof (xd->link));
1758   rte_eth_link_get_nowait (xd->port_id, &xd->link);
1759
1760   if (LINK_STATE_ELOGS)
1761     {
1762       ELOG_TYPE_DECLARE (e) =
1763       {
1764       .format =
1765           "update-link-state: sw_if_index %d, admin_up %d,"
1766           "old link_state %d new link_state %d",.format_args = "i4i1i1i1",};
1767
1768       struct
1769       {
1770         u32 sw_if_index;
1771         u8 admin_up;
1772         u8 old_link_state;
1773         u8 new_link_state;
1774       } *ed;
1775       ed = ELOG_DATA (&vlib_global_main.elog_main, e);
1776       ed->sw_if_index = xd->sw_if_index;
1777       ed->admin_up = (xd->flags & DPDK_DEVICE_FLAG_ADMIN_UP) != 0;
1778       ed->old_link_state = (u8)
1779         vnet_hw_interface_is_link_up (vnm, xd->hw_if_index);
1780       ed->new_link_state = (u8) xd->link.link_status;
1781     }
1782
1783   if ((xd->link.link_duplex != prev_link.link_duplex))
1784     {
1785       hw_flags_chg = 1;
1786       switch (xd->link.link_duplex)
1787         {
1788         case ETH_LINK_HALF_DUPLEX:
1789           hw_flags |= VNET_HW_INTERFACE_FLAG_HALF_DUPLEX;
1790           break;
1791         case ETH_LINK_FULL_DUPLEX:
1792           hw_flags |= VNET_HW_INTERFACE_FLAG_FULL_DUPLEX;
1793           break;
1794         default:
1795           break;
1796         }
1797     }
1798   if (xd->link.link_speed != prev_link.link_speed)
1799     vnet_hw_interface_set_link_speed (vnm, xd->hw_if_index,
1800                                       xd->link.link_speed * 1000);
1801
1802   if (xd->link.link_status != prev_link.link_status)
1803     {
1804       hw_flags_chg = 1;
1805
1806       if (xd->link.link_status)
1807         hw_flags |= VNET_HW_INTERFACE_FLAG_LINK_UP;
1808     }
1809
1810   if (hw_flags_chg)
1811     {
1812       if (LINK_STATE_ELOGS)
1813         {
1814           ELOG_TYPE_DECLARE (e) =
1815           {
1816           .format =
1817               "update-link-state: sw_if_index %d, new flags %d",.format_args
1818               = "i4i4",};
1819
1820           struct
1821           {
1822             u32 sw_if_index;
1823             u32 flags;
1824           } *ed;
1825           ed = ELOG_DATA (&vlib_global_main.elog_main, e);
1826           ed->sw_if_index = xd->sw_if_index;
1827           ed->flags = hw_flags;
1828         }
1829       vnet_hw_interface_set_flags (vnm, xd->hw_if_index, hw_flags);
1830     }
1831 }
1832
1833 static uword
1834 dpdk_process (vlib_main_t * vm, vlib_node_runtime_t * rt, vlib_frame_t * f)
1835 {
1836   clib_error_t *error;
1837   dpdk_main_t *dm = &dpdk_main;
1838   dpdk_device_t *xd;
1839   vlib_thread_main_t *tm = vlib_get_thread_main ();
1840
1841   error = dpdk_lib_init (dm);
1842
1843   if (error)
1844     clib_error_report (error);
1845
1846   if (dpdk_cryptodev_init)
1847     {
1848       error = dpdk_cryptodev_init (vm);
1849       if (error)
1850         {
1851           vlib_log_warn (dpdk_main.log_cryptodev, "%U", format_clib_error,
1852                          error);
1853           clib_error_free (error);
1854         }
1855     }
1856
1857   tm->worker_thread_release = 1;
1858
1859   f64 now = vlib_time_now (vm);
1860   vec_foreach (xd, dm->devices)
1861   {
1862     dpdk_update_link_state (xd, now);
1863   }
1864
1865   while (1)
1866     {
1867       /*
1868        * check each time through the loop in case intervals are changed
1869        */
1870       f64 min_wait = dm->link_state_poll_interval < dm->stat_poll_interval ?
1871         dm->link_state_poll_interval : dm->stat_poll_interval;
1872
1873       vlib_process_wait_for_event_or_clock (vm, min_wait);
1874
1875       if (dm->admin_up_down_in_progress)
1876         /* skip the poll if an admin up down is in progress (on any interface) */
1877         continue;
1878
1879       vec_foreach (xd, dm->devices)
1880       {
1881         f64 now = vlib_time_now (vm);
1882         if ((now - xd->time_last_stats_update) >= dm->stat_poll_interval)
1883           dpdk_update_counters (xd, now);
1884         if ((now - xd->time_last_link_update) >= dm->link_state_poll_interval)
1885           dpdk_update_link_state (xd, now);
1886
1887       }
1888     }
1889
1890   return 0;
1891 }
1892
1893 /* *INDENT-OFF* */
1894 VLIB_REGISTER_NODE (dpdk_process_node,static) = {
1895     .function = dpdk_process,
1896     .type = VLIB_NODE_TYPE_PROCESS,
1897     .name = "dpdk-process",
1898     .process_log2_n_stack_bytes = 17,
1899 };
1900 /* *INDENT-ON* */
1901
1902 static clib_error_t *
1903 dpdk_init (vlib_main_t * vm)
1904 {
1905   dpdk_main_t *dm = &dpdk_main;
1906   clib_error_t *error = 0;
1907
1908   /* verify that structs are cacheline aligned */
1909   STATIC_ASSERT (offsetof (dpdk_device_t, cacheline0) == 0,
1910                  "Cache line marker must be 1st element in dpdk_device_t");
1911   STATIC_ASSERT (offsetof (dpdk_device_t, cacheline1) ==
1912                  CLIB_CACHE_LINE_BYTES,
1913                  "Data in cache line 0 is bigger than cache line size");
1914   STATIC_ASSERT (offsetof (frame_queue_trace_t, cacheline0) == 0,
1915                  "Cache line marker must be 1st element in frame_queue_trace_t");
1916   STATIC_ASSERT (RTE_CACHE_LINE_SIZE == 1 << CLIB_LOG2_CACHE_LINE_BYTES,
1917                  "DPDK RTE CACHE LINE SIZE does not match with 1<<CLIB_LOG2_CACHE_LINE_BYTES");
1918
1919   dpdk_cli_reference ();
1920
1921   dm->vlib_main = vm;
1922   dm->vnet_main = vnet_get_main ();
1923   dm->conf = &dpdk_config_main;
1924
1925   dm->conf->nchannels = 4;
1926   vec_add1 (dm->conf->eal_init_args, (u8 *) "vnet");
1927
1928   /* Default vlib_buffer_t flags, DISABLES tcp/udp checksumming... */
1929   dm->buffer_flags_template = (VLIB_BUFFER_TOTAL_LENGTH_VALID |
1930                                VLIB_BUFFER_EXT_HDR_VALID |
1931                                VNET_BUFFER_F_L4_CHECKSUM_COMPUTED |
1932                                VNET_BUFFER_F_L4_CHECKSUM_CORRECT);
1933
1934   dm->stat_poll_interval = DPDK_STATS_POLL_INTERVAL;
1935   dm->link_state_poll_interval = DPDK_LINK_POLL_INTERVAL;
1936
1937   dm->log_default = vlib_log_register_class ("dpdk", 0);
1938   dm->log_cryptodev = vlib_log_register_class ("dpdk", "cryptodev");
1939   dm->log_ipsec = vlib_log_register_class ("dpdk", "ipsec");
1940
1941   return error;
1942 }
1943
1944 VLIB_INIT_FUNCTION (dpdk_init);
1945
1946 /*
1947  * fd.io coding-style-patch-verification: ON
1948  *
1949  * Local Variables:
1950  * eval: (c-set-style "gnu")
1951  * End:
1952  */