dpdk: fix Cavium ThunderX support
[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
21 #include <vnet/ethernet/ethernet.h>
22 #include <dpdk/device/dpdk.h>
23 #include <vlib/unix/physmem.h>
24 #include <vlib/pci/pci.h>
25
26 #include <stdio.h>
27 #include <stdlib.h>
28 #include <unistd.h>
29 #include <sys/stat.h>
30 #include <sys/mount.h>
31 #include <string.h>
32 #include <fcntl.h>
33
34 #include <dpdk/device/dpdk_priv.h>
35
36 dpdk_main_t dpdk_main;
37
38 #define LINK_STATE_ELOGS        0
39
40 #define DEFAULT_HUGE_DIR (VPP_RUN_DIR "/hugepages")
41
42 /* Port configuration, mildly modified Intel app values */
43
44 static struct rte_eth_conf port_conf_template = {
45   .rxmode = {
46              .split_hdr_size = 0,
47              .header_split = 0,         /**< Header Split disabled */
48              .hw_ip_checksum = 0,       /**< IP checksum offload disabled */
49              .hw_vlan_filter = 0,       /**< VLAN filtering disabled */
50              .hw_strip_crc = 0,         /**< CRC stripped by hardware */
51              },
52   .txmode = {
53              .mq_mode = ETH_MQ_TX_NONE,
54              },
55 };
56
57 static dpdk_port_type_t
58 port_type_from_speed_capa (struct rte_eth_dev_info *dev_info)
59 {
60
61   if (dev_info->speed_capa & ETH_LINK_SPEED_100G)
62     return VNET_DPDK_PORT_TYPE_ETH_100G;
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_10G)
70     return VNET_DPDK_PORT_TYPE_ETH_10G;
71   else if (dev_info->speed_capa & ETH_LINK_SPEED_1G)
72     return VNET_DPDK_PORT_TYPE_ETH_1G;
73
74   return VNET_DPDK_PORT_TYPE_UNKNOWN;
75 }
76
77
78 static u32
79 dpdk_flag_change (vnet_main_t * vnm, vnet_hw_interface_t * hi, u32 flags)
80 {
81   dpdk_main_t *dm = &dpdk_main;
82   dpdk_device_t *xd = vec_elt_at_index (dm->devices, hi->dev_instance);
83   u32 old = 0;
84
85   if (ETHERNET_INTERFACE_FLAG_CONFIG_PROMISC (flags))
86     {
87       old = (xd->flags & DPDK_DEVICE_FLAG_PROMISC) != 0;
88
89       if (flags & ETHERNET_INTERFACE_FLAG_ACCEPT_ALL)
90         xd->flags |= DPDK_DEVICE_FLAG_PROMISC;
91       else
92         xd->flags &= ~DPDK_DEVICE_FLAG_PROMISC;
93
94       if (xd->flags & DPDK_DEVICE_FLAG_ADMIN_UP)
95         {
96           if (xd->flags & DPDK_DEVICE_FLAG_PROMISC)
97             rte_eth_promiscuous_enable (xd->device_index);
98           else
99             rte_eth_promiscuous_disable (xd->device_index);
100         }
101     }
102   else if (ETHERNET_INTERFACE_FLAG_CONFIG_MTU (flags))
103     {
104       int rv;
105
106       xd->port_conf.rxmode.max_rx_pkt_len = hi->max_packet_bytes;
107
108       if (xd->flags & DPDK_DEVICE_FLAG_ADMIN_UP)
109         dpdk_device_stop (xd);
110
111       rv = rte_eth_dev_configure
112         (xd->device_index, xd->rx_q_used, xd->tx_q_used, &xd->port_conf);
113
114       if (rv < 0)
115         vlib_cli_output (vlib_get_main (),
116                          "rte_eth_dev_configure[%d]: err %d",
117                          xd->device_index, rv);
118
119       rte_eth_dev_set_mtu (xd->device_index, hi->max_packet_bytes);
120
121       if (xd->flags & DPDK_DEVICE_FLAG_ADMIN_UP)
122         dpdk_device_start (xd);
123
124     }
125   return old;
126 }
127
128 static void
129 dpdk_device_lock_init (dpdk_device_t * xd)
130 {
131   int q;
132   vec_validate (xd->lockp, xd->tx_q_used - 1);
133   for (q = 0; q < xd->tx_q_used; q++)
134     {
135       xd->lockp[q] = clib_mem_alloc_aligned (CLIB_CACHE_LINE_BYTES,
136                                              CLIB_CACHE_LINE_BYTES);
137       memset ((void *) xd->lockp[q], 0, CLIB_CACHE_LINE_BYTES);
138     }
139 }
140
141 static clib_error_t *
142 dpdk_lib_init (dpdk_main_t * dm)
143 {
144   u32 nports;
145   u32 nb_desc = 0;
146   int i;
147   clib_error_t *error;
148   vlib_main_t *vm = vlib_get_main ();
149   vlib_thread_main_t *tm = vlib_get_thread_main ();
150   vnet_device_main_t *vdm = &vnet_device_main;
151   vnet_sw_interface_t *sw;
152   vnet_hw_interface_t *hi;
153   dpdk_device_t *xd;
154   vlib_pci_addr_t last_pci_addr;
155   u32 last_pci_addr_port = 0;
156   vlib_thread_registration_t *tr_hqos;
157   uword *p_hqos;
158
159   u32 next_hqos_cpu = 0;
160   u8 af_packet_port_id = 0;
161   u8 bond_ether_port_id = 0;
162   last_pci_addr.as_u32 = ~0;
163
164   dm->hqos_cpu_first_index = 0;
165   dm->hqos_cpu_count = 0;
166
167   /* find out which cpus will be used for I/O TX */
168   p_hqos = hash_get_mem (tm->thread_registrations_by_name, "hqos-threads");
169   tr_hqos = p_hqos ? (vlib_thread_registration_t *) p_hqos[0] : 0;
170
171   if (tr_hqos && tr_hqos->count > 0)
172     {
173       dm->hqos_cpu_first_index = tr_hqos->first_index;
174       dm->hqos_cpu_count = tr_hqos->count;
175     }
176
177   vec_validate_aligned (dm->devices_by_hqos_cpu, tm->n_vlib_mains - 1,
178                         CLIB_CACHE_LINE_BYTES);
179
180   nports = rte_eth_dev_count ();
181   if (nports < 1)
182     {
183       clib_warning ("DPDK drivers found no ports...");
184     }
185
186   if (CLIB_DEBUG > 0)
187     clib_warning ("DPDK drivers found %d ports...", nports);
188
189   /*
190    * All buffers are all allocated from the same rte_mempool.
191    * Thus they all have the same number of data bytes.
192    */
193   dm->vlib_buffer_free_list_index =
194     vlib_buffer_get_or_create_free_list (vm,
195                                          VLIB_BUFFER_DEFAULT_FREE_LIST_BYTES,
196                                          "dpdk rx");
197
198   if (dm->conf->enable_tcp_udp_checksum)
199     dm->buffer_flags_template &= ~(VNET_BUFFER_F_L4_CHECKSUM_CORRECT
200                                    | VNET_BUFFER_F_L4_CHECKSUM_COMPUTED);
201
202   /* vlib_buffer_t template */
203   vec_validate_aligned (dm->buffer_templates, tm->n_vlib_mains - 1,
204                         CLIB_CACHE_LINE_BYTES);
205   for (i = 0; i < tm->n_vlib_mains; i++)
206     {
207       vlib_buffer_free_list_t *fl;
208       vlib_buffer_t *bt = vec_elt_at_index (dm->buffer_templates, i);
209       fl = vlib_buffer_get_free_list (vm,
210                                       VLIB_BUFFER_DEFAULT_FREE_LIST_INDEX);
211       vlib_buffer_init_for_free_list (bt, fl);
212       bt->flags = dm->buffer_flags_template;
213       bt->current_data = -RTE_PKTMBUF_HEADROOM;
214       vnet_buffer (bt)->sw_if_index[VLIB_TX] = (u32) ~ 0;
215     }
216
217   for (i = 0; i < nports; i++)
218     {
219       u8 addr[6];
220       u8 vlan_strip = 0;
221       int j;
222       struct rte_eth_dev_info dev_info;
223       struct rte_eth_link l;
224       dpdk_device_config_t *devconf = 0;
225       vlib_pci_addr_t pci_addr;
226       uword *p = 0;
227
228       rte_eth_dev_info_get (i, &dev_info);
229       if (dev_info.pci_dev)     /* bonded interface has no pci info */
230         {
231           pci_addr.domain = dev_info.pci_dev->addr.domain;
232           pci_addr.bus = dev_info.pci_dev->addr.bus;
233           pci_addr.slot = dev_info.pci_dev->addr.devid;
234           pci_addr.function = dev_info.pci_dev->addr.function;
235           p =
236             hash_get (dm->conf->device_config_index_by_pci_addr,
237                       pci_addr.as_u32);
238         }
239
240       if (p)
241         devconf = pool_elt_at_index (dm->conf->dev_confs, p[0]);
242       else
243         devconf = &dm->conf->default_devconf;
244
245       /* Create vnet interface */
246       vec_add2_aligned (dm->devices, xd, 1, CLIB_CACHE_LINE_BYTES);
247       xd->nb_rx_desc = DPDK_NB_RX_DESC_DEFAULT;
248       xd->nb_tx_desc = DPDK_NB_TX_DESC_DEFAULT;
249       xd->cpu_socket = (i8) rte_eth_dev_socket_id (i);
250
251       /* Handle interface naming for devices with multiple ports sharing same PCI ID */
252       if (dev_info.pci_dev)
253         {
254           struct rte_eth_dev_info di = { 0 };
255           rte_eth_dev_info_get (i + 1, &di);
256           if (di.pci_dev && pci_addr.as_u32 != last_pci_addr.as_u32 &&
257               memcmp (&dev_info.pci_dev->addr, &di.pci_dev->addr,
258                       sizeof (struct rte_pci_addr)) == 0)
259             {
260               xd->interface_name_suffix = format (0, "0");
261               last_pci_addr.as_u32 = pci_addr.as_u32;
262               last_pci_addr_port = i;
263             }
264           else if (pci_addr.as_u32 == last_pci_addr.as_u32)
265             {
266               xd->interface_name_suffix =
267                 format (0, "%u", i - last_pci_addr_port);
268             }
269           else
270             {
271               last_pci_addr.as_u32 = ~0;
272             }
273         }
274       else
275         last_pci_addr.as_u32 = ~0;
276
277       clib_memcpy (&xd->tx_conf, &dev_info.default_txconf,
278                    sizeof (struct rte_eth_txconf));
279       if (dm->conf->no_multi_seg)
280         {
281           xd->tx_conf.txq_flags |= ETH_TXQ_FLAGS_NOMULTSEGS;
282           port_conf_template.rxmode.jumbo_frame = 0;
283           port_conf_template.rxmode.enable_scatter = 0;
284         }
285       else
286         {
287           xd->tx_conf.txq_flags &= ~ETH_TXQ_FLAGS_NOMULTSEGS;
288           port_conf_template.rxmode.jumbo_frame = 1;
289           port_conf_template.rxmode.enable_scatter = 1;
290           xd->flags |= DPDK_DEVICE_FLAG_MAYBE_MULTISEG;
291         }
292
293       clib_memcpy (&xd->port_conf, &port_conf_template,
294                    sizeof (struct rte_eth_conf));
295
296       xd->tx_q_used = clib_min (dev_info.max_tx_queues, tm->n_vlib_mains);
297
298       if (devconf->num_tx_queues > 0
299           && devconf->num_tx_queues < xd->tx_q_used)
300         xd->tx_q_used = clib_min (xd->tx_q_used, devconf->num_tx_queues);
301
302       if (devconf->num_rx_queues > 1 && dm->use_rss == 0)
303         {
304           dm->use_rss = 1;
305         }
306
307       if (devconf->num_rx_queues > 1
308           && dev_info.max_rx_queues >= devconf->num_rx_queues)
309         {
310           xd->rx_q_used = devconf->num_rx_queues;
311           xd->port_conf.rxmode.mq_mode = ETH_MQ_RX_RSS;
312           if (devconf->rss_fn == 0)
313             xd->port_conf.rx_adv_conf.rss_conf.rss_hf =
314               ETH_RSS_IP | ETH_RSS_UDP | ETH_RSS_TCP;
315           else
316             xd->port_conf.rx_adv_conf.rss_conf.rss_hf = devconf->rss_fn;
317         }
318       else
319         xd->rx_q_used = 1;
320
321       xd->flags |= DPDK_DEVICE_FLAG_PMD;
322
323       /* workaround for drivers not setting driver_name */
324       if ((!dev_info.driver_name) && (dev_info.pci_dev))
325         dev_info.driver_name = dev_info.pci_dev->driver->driver.name;
326
327       ASSERT (dev_info.driver_name);
328
329       if (!xd->pmd)
330         {
331
332
333 #define _(s,f) else if (dev_info.driver_name &&                 \
334                         !strcmp(dev_info.driver_name, s))       \
335                  xd->pmd = VNET_DPDK_PMD_##f;
336           if (0)
337             ;
338           foreach_dpdk_pmd
339 #undef _
340             else
341             xd->pmd = VNET_DPDK_PMD_UNKNOWN;
342
343           xd->port_type = VNET_DPDK_PORT_TYPE_UNKNOWN;
344           xd->nb_rx_desc = DPDK_NB_RX_DESC_DEFAULT;
345           xd->nb_tx_desc = DPDK_NB_TX_DESC_DEFAULT;
346
347           switch (xd->pmd)
348             {
349               /* Drivers with valid speed_capa set */
350             case VNET_DPDK_PMD_E1000EM:
351             case VNET_DPDK_PMD_IGB:
352             case VNET_DPDK_PMD_IXGBE:
353             case VNET_DPDK_PMD_I40E:
354               xd->port_type = port_type_from_speed_capa (&dev_info);
355               xd->flags |= DPDK_DEVICE_FLAG_TX_OFFLOAD |
356                 DPDK_DEVICE_FLAG_INTEL_PHDR_CKSUM;
357
358               break;
359             case VNET_DPDK_PMD_CXGBE:
360             case VNET_DPDK_PMD_MLX4:
361             case VNET_DPDK_PMD_MLX5:
362               xd->port_type = port_type_from_speed_capa (&dev_info);
363               break;
364
365               /* SR-IOV VFs */
366             case VNET_DPDK_PMD_IGBVF:
367             case VNET_DPDK_PMD_IXGBEVF:
368             case VNET_DPDK_PMD_I40EVF:
369               xd->port_type = VNET_DPDK_PORT_TYPE_ETH_VF;
370               xd->port_conf.rxmode.hw_strip_crc = 1;
371               break;
372
373             case VNET_DPDK_PMD_THUNDERX:
374               xd->port_type = VNET_DPDK_PORT_TYPE_ETH_VF;
375               xd->port_conf.rxmode.hw_strip_crc = 1;
376               break;
377
378             case VNET_DPDK_PMD_DPAA2:
379               xd->port_type = VNET_DPDK_PORT_TYPE_ETH_10G;
380               break;
381
382               /* Cisco VIC */
383             case VNET_DPDK_PMD_ENIC:
384               rte_eth_link_get_nowait (i, &l);
385               if (l.link_speed == 40000)
386                 xd->port_type = VNET_DPDK_PORT_TYPE_ETH_40G;
387               else
388                 xd->port_type = VNET_DPDK_PORT_TYPE_ETH_10G;
389               break;
390
391               /* Intel Red Rock Canyon */
392             case VNET_DPDK_PMD_FM10K:
393               xd->port_type = VNET_DPDK_PORT_TYPE_ETH_SWITCH;
394               xd->port_conf.rxmode.hw_strip_crc = 1;
395               break;
396
397               /* virtio */
398             case VNET_DPDK_PMD_VIRTIO:
399               xd->port_type = VNET_DPDK_PORT_TYPE_ETH_1G;
400               xd->nb_rx_desc = DPDK_NB_RX_DESC_VIRTIO;
401               xd->nb_tx_desc = DPDK_NB_TX_DESC_VIRTIO;
402               break;
403
404               /* vmxnet3 */
405             case VNET_DPDK_PMD_VMXNET3:
406               xd->port_type = VNET_DPDK_PORT_TYPE_ETH_1G;
407               xd->tx_conf.txq_flags |= ETH_TXQ_FLAGS_NOMULTSEGS;
408               break;
409
410             case VNET_DPDK_PMD_AF_PACKET:
411               xd->port_type = VNET_DPDK_PORT_TYPE_AF_PACKET;
412               xd->port_id = af_packet_port_id++;
413               break;
414
415             case VNET_DPDK_PMD_BOND:
416               xd->port_type = VNET_DPDK_PORT_TYPE_ETH_BOND;
417               xd->port_id = bond_ether_port_id++;
418               break;
419
420             case VNET_DPDK_PMD_VIRTIO_USER:
421               xd->port_type = VNET_DPDK_PORT_TYPE_VIRTIO_USER;
422               break;
423
424             default:
425               xd->port_type = VNET_DPDK_PORT_TYPE_UNKNOWN;
426             }
427
428           if (devconf->num_rx_desc)
429             xd->nb_rx_desc = devconf->num_rx_desc;
430
431           if (devconf->num_tx_desc)
432             xd->nb_tx_desc = devconf->num_tx_desc;
433         }
434
435       /*
436        * Ensure default mtu is not > the mtu read from the hardware.
437        * Otherwise rte_eth_dev_configure() will fail and the port will
438        * not be available.
439        */
440       if (ETHERNET_MAX_PACKET_BYTES > dev_info.max_rx_pktlen)
441         {
442           /*
443            * This device does not support the platforms's max frame
444            * size. Use it's advertised mru instead.
445            */
446           xd->port_conf.rxmode.max_rx_pkt_len = dev_info.max_rx_pktlen;
447         }
448       else
449         {
450           xd->port_conf.rxmode.max_rx_pkt_len = ETHERNET_MAX_PACKET_BYTES;
451
452           /*
453            * Some platforms do not account for Ethernet FCS (4 bytes) in
454            * MTU calculations. To interop with them increase mru but only
455            * if the device's settings can support it.
456            */
457           if ((dev_info.max_rx_pktlen >= (ETHERNET_MAX_PACKET_BYTES + 4)) &&
458               xd->port_conf.rxmode.hw_strip_crc)
459             {
460               /*
461                * Allow additional 4 bytes (for Ethernet FCS). These bytes are
462                * stripped by h/w and so will not consume any buffer memory.
463                */
464               xd->port_conf.rxmode.max_rx_pkt_len += 4;
465             }
466         }
467
468       if (xd->pmd == VNET_DPDK_PMD_AF_PACKET)
469         {
470           f64 now = vlib_time_now (vm);
471           u32 rnd;
472           rnd = (u32) (now * 1e6);
473           rnd = random_u32 (&rnd);
474           clib_memcpy (addr + 2, &rnd, sizeof (rnd));
475           addr[0] = 2;
476           addr[1] = 0xfe;
477         }
478       else
479         rte_eth_macaddr_get (i, (struct ether_addr *) addr);
480
481       if (xd->tx_q_used < tm->n_vlib_mains)
482         dpdk_device_lock_init (xd);
483
484       xd->device_index = xd - dm->devices;
485       ASSERT (i == xd->device_index);
486       xd->per_interface_next_index = ~0;
487
488       /* assign interface to input thread */
489       dpdk_device_and_queue_t *dq;
490       int q;
491
492       if (devconf->hqos_enabled)
493         {
494           xd->flags |= DPDK_DEVICE_FLAG_HQOS;
495
496           if (devconf->hqos.hqos_thread_valid)
497             {
498               int cpu = dm->hqos_cpu_first_index + devconf->hqos.hqos_thread;
499
500               if (devconf->hqos.hqos_thread >= dm->hqos_cpu_count)
501                 return clib_error_return (0, "invalid HQoS thread index");
502
503               vec_add2 (dm->devices_by_hqos_cpu[cpu], dq, 1);
504               dq->device = xd->device_index;
505               dq->queue_id = 0;
506             }
507           else
508             {
509               int cpu = dm->hqos_cpu_first_index + next_hqos_cpu;
510
511               if (dm->hqos_cpu_count == 0)
512                 return clib_error_return (0, "no HQoS threads available");
513
514               vec_add2 (dm->devices_by_hqos_cpu[cpu], dq, 1);
515               dq->device = xd->device_index;
516               dq->queue_id = 0;
517
518               next_hqos_cpu++;
519               if (next_hqos_cpu == dm->hqos_cpu_count)
520                 next_hqos_cpu = 0;
521
522               devconf->hqos.hqos_thread_valid = 1;
523               devconf->hqos.hqos_thread = cpu;
524             }
525         }
526
527       vec_validate_aligned (xd->tx_vectors, tm->n_vlib_mains,
528                             CLIB_CACHE_LINE_BYTES);
529       for (j = 0; j < tm->n_vlib_mains; j++)
530         {
531           vec_validate_ha (xd->tx_vectors[j], xd->nb_tx_desc,
532                            sizeof (tx_ring_hdr_t), CLIB_CACHE_LINE_BYTES);
533           vec_reset_length (xd->tx_vectors[j]);
534         }
535
536       vec_validate_aligned (xd->rx_vectors, xd->rx_q_used,
537                             CLIB_CACHE_LINE_BYTES);
538       for (j = 0; j < xd->rx_q_used; j++)
539         {
540           vec_validate_aligned (xd->rx_vectors[j], VLIB_FRAME_SIZE - 1,
541                                 CLIB_CACHE_LINE_BYTES);
542           vec_reset_length (xd->rx_vectors[j]);
543         }
544
545       vec_validate_aligned (xd->d_trace_buffers, tm->n_vlib_mains,
546                             CLIB_CACHE_LINE_BYTES);
547
548
549       /* count the number of descriptors used for this device */
550       nb_desc += xd->nb_rx_desc + xd->nb_tx_desc * xd->tx_q_used;
551
552       error = ethernet_register_interface
553         (dm->vnet_main, dpdk_device_class.index, xd->device_index,
554          /* ethernet address */ addr,
555          &xd->hw_if_index, dpdk_flag_change);
556       if (error)
557         return error;
558
559       sw = vnet_get_hw_sw_interface (dm->vnet_main, xd->hw_if_index);
560       xd->vlib_sw_if_index = sw->sw_if_index;
561       vnet_hw_interface_set_input_node (dm->vnet_main, xd->hw_if_index,
562                                         dpdk_input_node.index);
563
564       if (devconf->workers)
565         {
566           int i;
567           q = 0;
568           /* *INDENT-OFF* */
569           clib_bitmap_foreach (i, devconf->workers, ({
570             vnet_hw_interface_assign_rx_thread (dm->vnet_main, xd->hw_if_index, q++,
571                                              vdm->first_worker_thread_index + i);
572           }));
573           /* *INDENT-ON* */
574         }
575       else
576         for (q = 0; q < xd->rx_q_used; q++)
577           {
578             vnet_hw_interface_assign_rx_thread (dm->vnet_main, xd->hw_if_index, q,      /* any */
579                                                 ~1);
580           }
581
582       hi = vnet_get_hw_interface (dm->vnet_main, xd->hw_if_index);
583
584       if (xd->flags & DPDK_DEVICE_FLAG_TX_OFFLOAD)
585         hi->flags |= VNET_HW_INTERFACE_FLAG_SUPPORTS_TX_L4_CKSUM_OFFLOAD;
586
587       dpdk_device_setup (xd);
588
589       if (vec_len (xd->errors))
590         clib_warning ("setup failed for device %U. Errors:\n  %U",
591                       format_dpdk_device_name, i,
592                       format_dpdk_device_errors, xd);
593
594       if (devconf->hqos_enabled)
595         {
596           clib_error_t *rv;
597           rv = dpdk_port_setup_hqos (xd, &devconf->hqos);
598           if (rv)
599             return rv;
600         }
601
602       /*
603        * For cisco VIC vNIC, set default to VLAN strip enabled, unless
604        * specified otherwise in the startup config.
605        * For other NICs default to VLAN strip disabled, unless specified
606        * otherwis in the startup config.
607        */
608       if (xd->pmd == VNET_DPDK_PMD_ENIC)
609         {
610           if (devconf->vlan_strip_offload != DPDK_DEVICE_VLAN_STRIP_OFF)
611             vlan_strip = 1;     /* remove vlan tag from VIC port by default */
612           else
613             clib_warning ("VLAN strip disabled for interface\n");
614         }
615       else if (devconf->vlan_strip_offload == DPDK_DEVICE_VLAN_STRIP_ON)
616         vlan_strip = 1;
617
618       if (vlan_strip)
619         {
620           int vlan_off;
621           vlan_off = rte_eth_dev_get_vlan_offload (xd->device_index);
622           vlan_off |= ETH_VLAN_STRIP_OFFLOAD;
623           xd->port_conf.rxmode.hw_vlan_strip = vlan_off;
624           if (rte_eth_dev_set_vlan_offload (xd->device_index, vlan_off) == 0)
625             clib_warning ("VLAN strip enabled for interface\n");
626           else
627             clib_warning ("VLAN strip cannot be supported by interface\n");
628         }
629
630       hi->max_l3_packet_bytes[VLIB_RX] = hi->max_l3_packet_bytes[VLIB_TX] =
631         xd->port_conf.rxmode.max_rx_pkt_len - sizeof (ethernet_header_t);
632
633       rte_eth_dev_set_mtu (xd->device_index, hi->max_packet_bytes);
634     }
635
636   if (nb_desc > dm->conf->num_mbufs)
637     clib_warning ("%d mbufs allocated but total rx/tx ring size is %d\n",
638                   dm->conf->num_mbufs, nb_desc);
639
640   return 0;
641 }
642
643 static void
644 dpdk_bind_devices_to_uio (dpdk_config_main_t * conf)
645 {
646   vlib_pci_main_t *pm = &pci_main;
647   clib_error_t *error;
648   vlib_pci_device_t *d;
649   u8 *pci_addr = 0;
650   int num_whitelisted = vec_len (conf->dev_confs);
651
652   /* *INDENT-OFF* */
653   pool_foreach (d, pm->pci_devs, ({
654     dpdk_device_config_t * devconf = 0;
655     vec_reset_length (pci_addr);
656     pci_addr = format (pci_addr, "%U%c", format_vlib_pci_addr, &d->bus_address, 0);
657
658     if (d->device_class != PCI_CLASS_NETWORK_ETHERNET && d->device_class != PCI_CLASS_PROCESSOR_CO)
659       continue;
660
661     if (num_whitelisted)
662       {
663         uword * p = hash_get (conf->device_config_index_by_pci_addr, d->bus_address.as_u32);
664
665         if (!p)
666           continue;
667
668         devconf = pool_elt_at_index (conf->dev_confs, p[0]);
669       }
670
671     /* virtio */
672     if (d->vendor_id == 0x1af4 && d->device_id == 0x1000)
673       ;
674     /* vmxnet3 */
675     else if (d->vendor_id == 0x15ad && d->device_id == 0x07b0)
676       ;
677     /* all Intel network devices */
678     else if (d->vendor_id == 0x8086 && d->device_class == PCI_CLASS_NETWORK_ETHERNET)
679       ;
680     /* all Intel QAT devices VFs */
681     else if (d->vendor_id == 0x8086 && d->device_class == PCI_CLASS_PROCESSOR_CO &&
682         (d->device_id == 0x0443 || d->device_id == 0x37c9 || d->device_id == 0x19e3))
683       ;
684     /* Cisco VIC */
685     else if (d->vendor_id == 0x1137 && d->device_id == 0x0043)
686       ;
687     /* Chelsio T4/T5 */
688     else if (d->vendor_id == 0x1425 && (d->device_id & 0xe000) == 0x4000)
689       ;
690     else
691       {
692         clib_warning ("Unsupported PCI device 0x%04x:0x%04x found "
693                       "at PCI address %s\n", (u16) d->vendor_id, (u16) d->device_id,
694                       pci_addr);
695         continue;
696       }
697
698     error = vlib_pci_bind_to_uio (d, (char *) conf->uio_driver_name);
699
700     if (error)
701       {
702         if (devconf == 0)
703           {
704             pool_get (conf->dev_confs, devconf);
705             hash_set (conf->device_config_index_by_pci_addr, d->bus_address.as_u32,
706                       devconf - conf->dev_confs);
707             devconf->pci_addr.as_u32 = d->bus_address.as_u32;
708           }
709         devconf->is_blacklisted = 1;
710         clib_error_report (error);
711       }
712   }));
713   /* *INDENT-ON* */
714   vec_free (pci_addr);
715 }
716
717 static clib_error_t *
718 dpdk_device_config (dpdk_config_main_t * conf, vlib_pci_addr_t pci_addr,
719                     unformat_input_t * input, u8 is_default)
720 {
721   clib_error_t *error = 0;
722   uword *p;
723   dpdk_device_config_t *devconf;
724   unformat_input_t sub_input;
725
726   if (is_default)
727     {
728       devconf = &conf->default_devconf;
729     }
730   else
731     {
732       p = hash_get (conf->device_config_index_by_pci_addr, pci_addr.as_u32);
733
734       if (!p)
735         {
736           pool_get (conf->dev_confs, devconf);
737           hash_set (conf->device_config_index_by_pci_addr, pci_addr.as_u32,
738                     devconf - conf->dev_confs);
739         }
740       else
741         return clib_error_return (0,
742                                   "duplicate configuration for PCI address %U",
743                                   format_vlib_pci_addr, &pci_addr);
744     }
745
746   devconf->pci_addr.as_u32 = pci_addr.as_u32;
747   devconf->hqos_enabled = 0;
748   dpdk_device_config_hqos_default (&devconf->hqos);
749
750   if (!input)
751     return 0;
752
753   unformat_skip_white_space (input);
754   while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
755     {
756       if (unformat (input, "num-rx-queues %u", &devconf->num_rx_queues))
757         ;
758       else if (unformat (input, "num-tx-queues %u", &devconf->num_tx_queues))
759         ;
760       else if (unformat (input, "num-rx-desc %u", &devconf->num_rx_desc))
761         ;
762       else if (unformat (input, "num-tx-desc %u", &devconf->num_tx_desc))
763         ;
764       else if (unformat (input, "workers %U", unformat_bitmap_list,
765                          &devconf->workers))
766         ;
767       else
768         if (unformat
769             (input, "rss %U", unformat_vlib_cli_sub_input, &sub_input))
770         {
771           error = unformat_rss_fn (&sub_input, &devconf->rss_fn);
772           if (error)
773             break;
774         }
775       else if (unformat (input, "vlan-strip-offload off"))
776         devconf->vlan_strip_offload = DPDK_DEVICE_VLAN_STRIP_OFF;
777       else if (unformat (input, "vlan-strip-offload on"))
778         devconf->vlan_strip_offload = DPDK_DEVICE_VLAN_STRIP_ON;
779       else
780         if (unformat
781             (input, "hqos %U", unformat_vlib_cli_sub_input, &sub_input))
782         {
783           devconf->hqos_enabled = 1;
784           error = unformat_hqos (&sub_input, &devconf->hqos);
785           if (error)
786             break;
787         }
788       else if (unformat (input, "hqos"))
789         {
790           devconf->hqos_enabled = 1;
791         }
792       else
793         {
794           error = clib_error_return (0, "unknown input `%U'",
795                                      format_unformat_error, input);
796           break;
797         }
798     }
799
800   if (error)
801     return error;
802
803   if (devconf->workers && devconf->num_rx_queues == 0)
804     devconf->num_rx_queues = clib_bitmap_count_set_bits (devconf->workers);
805   else if (devconf->workers &&
806            clib_bitmap_count_set_bits (devconf->workers) !=
807            devconf->num_rx_queues)
808     error =
809       clib_error_return (0,
810                          "%U: number of worker threadds must be "
811                          "equal to number of rx queues", format_vlib_pci_addr,
812                          &pci_addr);
813
814   return error;
815 }
816
817 static clib_error_t *
818 dpdk_config (vlib_main_t * vm, unformat_input_t * input)
819 {
820   clib_error_t *error = 0;
821   dpdk_main_t *dm = &dpdk_main;
822   dpdk_config_main_t *conf = &dpdk_config_main;
823   vlib_thread_main_t *tm = vlib_get_thread_main ();
824   dpdk_device_config_t *devconf;
825   vlib_pci_addr_t pci_addr;
826   unformat_input_t sub_input;
827   uword x;
828   u8 *s, *tmp = 0;
829   u8 *rte_cmd = 0, *ethname = 0;
830   u32 log_level;
831   int ret, i;
832   int num_whitelisted = 0;
833   u8 no_pci = 0;
834   u8 no_huge = 0;
835   u8 huge_dir = 0;
836   u8 file_prefix = 0;
837   u8 *socket_mem = 0;
838
839   conf->device_config_index_by_pci_addr = hash_create (0, sizeof (uword));
840   log_level = RTE_LOG_NOTICE;
841
842   while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
843     {
844       /* Prime the pump */
845       if (unformat (input, "no-hugetlb"))
846         {
847           vec_add1 (conf->eal_init_args, (u8 *) "no-huge");
848           no_huge = 1;
849         }
850
851       else if (unformat (input, "enable-tcp-udp-checksum"))
852         conf->enable_tcp_udp_checksum = 1;
853
854       else if (unformat (input, "decimal-interface-names"))
855         conf->interface_name_format_decimal = 1;
856
857       else if (unformat (input, "log-level %U", unformat_dpdk_log_level, &x))
858         log_level = x;
859
860       else if (unformat (input, "no-multi-seg"))
861         conf->no_multi_seg = 1;
862
863       else if (unformat (input, "dev default %U", unformat_vlib_cli_sub_input,
864                          &sub_input))
865         {
866           error =
867             dpdk_device_config (conf, (vlib_pci_addr_t) (u32) ~ 1, &sub_input,
868                                 1);
869
870           if (error)
871             return error;
872         }
873       else
874         if (unformat
875             (input, "dev %U %U", unformat_vlib_pci_addr, &pci_addr,
876              unformat_vlib_cli_sub_input, &sub_input))
877         {
878           error = dpdk_device_config (conf, pci_addr, &sub_input, 0);
879
880           if (error)
881             return error;
882
883           num_whitelisted++;
884         }
885       else if (unformat (input, "dev %U", unformat_vlib_pci_addr, &pci_addr))
886         {
887           error = dpdk_device_config (conf, pci_addr, 0, 0);
888
889           if (error)
890             return error;
891
892           num_whitelisted++;
893         }
894       else if (unformat (input, "num-mbufs %d", &conf->num_mbufs))
895         ;
896       else if (unformat (input, "uio-driver %s", &conf->uio_driver_name))
897         ;
898       else if (unformat (input, "socket-mem %s", &socket_mem))
899         ;
900       else if (unformat (input, "no-pci"))
901         {
902           no_pci = 1;
903           tmp = format (0, "--no-pci%c", 0);
904           vec_add1 (conf->eal_init_args, tmp);
905         }
906       else if (unformat (input, "poll-sleep %d", &dm->poll_sleep_usec))
907         ;
908
909 #define _(a)                                    \
910       else if (unformat(input, #a))             \
911         {                                       \
912           tmp = format (0, "--%s%c", #a, 0);    \
913           vec_add1 (conf->eal_init_args, tmp);    \
914         }
915       foreach_eal_double_hyphen_predicate_arg
916 #undef _
917 #define _(a)                                          \
918         else if (unformat(input, #a " %s", &s))       \
919           {                                           \
920             if (!strncmp(#a, "huge-dir", 8))          \
921               huge_dir = 1;                           \
922             else if (!strncmp(#a, "file-prefix", 11)) \
923               file_prefix = 1;                        \
924             tmp = format (0, "--%s%c", #a, 0);        \
925             vec_add1 (conf->eal_init_args, tmp);      \
926             vec_add1 (s, 0);                          \
927             if (!strncmp(#a, "vdev", 4))              \
928               if (strstr((char*)s, "af_packet"))      \
929                 clib_warning ("af_packet obsoleted. Use CLI 'create host-interface'."); \
930             vec_add1 (conf->eal_init_args, s);        \
931           }
932         foreach_eal_double_hyphen_arg
933 #undef _
934 #define _(a,b)                                          \
935           else if (unformat(input, #a " %s", &s))       \
936             {                                           \
937               tmp = format (0, "-%s%c", #b, 0);         \
938               vec_add1 (conf->eal_init_args, tmp);      \
939               vec_add1 (s, 0);                          \
940               vec_add1 (conf->eal_init_args, s);        \
941             }
942         foreach_eal_single_hyphen_arg
943 #undef _
944 #define _(a,b)                                          \
945             else if (unformat(input, #a " %s", &s))     \
946               {                                         \
947                 tmp = format (0, "-%s%c", #b, 0);       \
948                 vec_add1 (conf->eal_init_args, tmp);    \
949                 vec_add1 (s, 0);                        \
950                 vec_add1 (conf->eal_init_args, s);      \
951                 conf->a##_set_manually = 1;             \
952               }
953         foreach_eal_single_hyphen_mandatory_arg
954 #undef _
955         else if (unformat (input, "default"))
956         ;
957
958       else if (unformat_skip_white_space (input))
959         ;
960       else
961         {
962           error = clib_error_return (0, "unknown input `%U'",
963                                      format_unformat_error, input);
964           goto done;
965         }
966     }
967
968   if (!conf->uio_driver_name)
969     conf->uio_driver_name = format (0, "uio_pci_generic%c", 0);
970
971   /*
972    * Use 1G huge pages if available.
973    */
974   if (!no_huge && !huge_dir)
975     {
976       u32 x, *mem_by_socket = 0;
977       uword c = 0;
978       u8 use_1g = 1;
979       u8 use_2m = 1;
980       u8 less_than_1g = 1;
981       int rv;
982
983       umount (DEFAULT_HUGE_DIR);
984
985       /* Process "socket-mem" parameter value */
986       if (vec_len (socket_mem))
987         {
988           unformat_input_t in;
989           unformat_init_vector (&in, socket_mem);
990           while (unformat_check_input (&in) != UNFORMAT_END_OF_INPUT)
991             {
992               if (unformat (&in, "%u,", &x))
993                 ;
994               else if (unformat (&in, "%u", &x))
995                 ;
996               else if (unformat (&in, ","))
997                 x = 0;
998               else
999                 break;
1000
1001               vec_add1 (mem_by_socket, x);
1002
1003               if (x > 1023)
1004                 less_than_1g = 0;
1005             }
1006           /* Note: unformat_free vec_frees(in.buffer), aka socket_mem... */
1007           unformat_free (&in);
1008           socket_mem = 0;
1009         }
1010       else
1011         {
1012           /* *INDENT-OFF* */
1013           clib_bitmap_foreach (c, tm->cpu_socket_bitmap, (
1014             {
1015               vec_validate(mem_by_socket, c);
1016               mem_by_socket[c] = 256; /* default per-socket mem */
1017             }
1018           ));
1019           /* *INDENT-ON* */
1020         }
1021
1022       /* check if available enough 1GB pages for each socket */
1023       /* *INDENT-OFF* */
1024       clib_bitmap_foreach (c, tm->cpu_socket_bitmap, (
1025         {
1026           int pages_avail, page_size, mem;
1027
1028           vec_validate(mem_by_socket, c);
1029           mem = mem_by_socket[c];
1030
1031           page_size = 1024;
1032           pages_avail = vlib_sysfs_get_free_hugepages(c, page_size * 1024);
1033
1034           if (pages_avail < 0 || page_size * pages_avail < mem)
1035             use_1g = 0;
1036
1037           page_size = 2;
1038           pages_avail = vlib_sysfs_get_free_hugepages(c, page_size * 1024);
1039
1040           if (pages_avail < 0 || page_size * pages_avail < mem)
1041             use_2m = 0;
1042       }));
1043       /* *INDENT-ON* */
1044
1045       if (mem_by_socket == 0)
1046         {
1047           error = clib_error_return (0, "mem_by_socket NULL");
1048           goto done;
1049         }
1050       _vec_len (mem_by_socket) = c + 1;
1051
1052       /* regenerate socket_mem string */
1053       vec_foreach_index (x, mem_by_socket)
1054         socket_mem = format (socket_mem, "%s%u",
1055                              socket_mem ? "," : "", mem_by_socket[x]);
1056       socket_mem = format (socket_mem, "%c", 0);
1057
1058       vec_free (mem_by_socket);
1059
1060       /* Make sure VPP_RUN_DIR exists */
1061       error = unix_make_vpp_run_dir ();
1062       if (error)
1063         goto done;
1064
1065       rv = mkdir (DEFAULT_HUGE_DIR, 0755);
1066       if (rv && errno != EEXIST)
1067         {
1068           error = clib_error_return (0, "mkdir '%s' failed errno %d",
1069                                      DEFAULT_HUGE_DIR, errno);
1070           goto done;
1071         }
1072
1073       if (use_1g && !(less_than_1g && use_2m))
1074         {
1075           rv =
1076             mount ("none", DEFAULT_HUGE_DIR, "hugetlbfs", 0, "pagesize=1G");
1077         }
1078       else if (use_2m)
1079         {
1080           rv = mount ("none", DEFAULT_HUGE_DIR, "hugetlbfs", 0, NULL);
1081         }
1082       else
1083         {
1084           return clib_error_return (0, "not enough free huge pages");
1085         }
1086
1087       if (rv)
1088         {
1089           error = clib_error_return (0, "mount failed %d", errno);
1090           goto done;
1091         }
1092
1093       tmp = format (0, "--huge-dir%c", 0);
1094       vec_add1 (conf->eal_init_args, tmp);
1095       tmp = format (0, "%s%c", DEFAULT_HUGE_DIR, 0);
1096       vec_add1 (conf->eal_init_args, tmp);
1097       if (!file_prefix)
1098         {
1099           tmp = format (0, "--file-prefix%c", 0);
1100           vec_add1 (conf->eal_init_args, tmp);
1101           tmp = format (0, "vpp%c", 0);
1102           vec_add1 (conf->eal_init_args, tmp);
1103         }
1104     }
1105
1106   vec_free (rte_cmd);
1107   vec_free (ethname);
1108
1109   if (error)
1110     return error;
1111
1112   /* I'll bet that -c and -n must be the first and second args... */
1113   if (!conf->coremask_set_manually)
1114     {
1115       vlib_thread_registration_t *tr;
1116       uword *coremask = 0;
1117       int i;
1118
1119       /* main thread core */
1120       coremask = clib_bitmap_set (coremask, tm->main_lcore, 1);
1121
1122       for (i = 0; i < vec_len (tm->registrations); i++)
1123         {
1124           tr = tm->registrations[i];
1125           coremask = clib_bitmap_or (coremask, tr->coremask);
1126         }
1127
1128       vec_insert (conf->eal_init_args, 2, 1);
1129       conf->eal_init_args[1] = (u8 *) "-c";
1130       tmp = format (0, "%U%c", format_bitmap_hex, coremask, 0);
1131       conf->eal_init_args[2] = tmp;
1132       clib_bitmap_free (coremask);
1133     }
1134
1135   if (!conf->nchannels_set_manually)
1136     {
1137       vec_insert (conf->eal_init_args, 2, 3);
1138       conf->eal_init_args[3] = (u8 *) "-n";
1139       tmp = format (0, "%d", conf->nchannels);
1140       conf->eal_init_args[4] = tmp;
1141     }
1142
1143   if (no_pci == 0 && geteuid () == 0)
1144     dpdk_bind_devices_to_uio (conf);
1145
1146 #define _(x) \
1147     if (devconf->x == 0 && conf->default_devconf.x > 0) \
1148       devconf->x = conf->default_devconf.x ;
1149
1150   /* *INDENT-OFF* */
1151   pool_foreach (devconf, conf->dev_confs, ({
1152
1153     /* default per-device config items */
1154     foreach_dpdk_device_config_item
1155
1156     /* add DPDK EAL whitelist/blacklist entry */
1157     if (num_whitelisted > 0 && devconf->is_blacklisted == 0)
1158       {
1159         tmp = format (0, "-w%c", 0);
1160         vec_add1 (conf->eal_init_args, tmp);
1161         tmp = format (0, "%U%c", format_vlib_pci_addr, &devconf->pci_addr, 0);
1162         vec_add1 (conf->eal_init_args, tmp);
1163       }
1164     else if (num_whitelisted == 0 && devconf->is_blacklisted != 0)
1165       {
1166         tmp = format (0, "-b%c", 0);
1167         vec_add1 (conf->eal_init_args, tmp);
1168         tmp = format (0, "%U%c", format_vlib_pci_addr, &devconf->pci_addr, 0);
1169         vec_add1 (conf->eal_init_args, tmp);
1170       }
1171   }));
1172   /* *INDENT-ON* */
1173
1174 #undef _
1175
1176   /* set master-lcore */
1177   tmp = format (0, "--master-lcore%c", 0);
1178   vec_add1 (conf->eal_init_args, tmp);
1179   tmp = format (0, "%u%c", tm->main_lcore, 0);
1180   vec_add1 (conf->eal_init_args, tmp);
1181
1182   /* set socket-mem */
1183   tmp = format (0, "--socket-mem%c", 0);
1184   vec_add1 (conf->eal_init_args, tmp);
1185   tmp = format (0, "%s%c", socket_mem, 0);
1186   vec_add1 (conf->eal_init_args, tmp);
1187
1188   /* NULL terminate the "argv" vector, in case of stupidity */
1189   vec_add1 (conf->eal_init_args, 0);
1190   _vec_len (conf->eal_init_args) -= 1;
1191
1192   /* Set up DPDK eal and packet mbuf pool early. */
1193
1194 #if RTE_VERSION >= RTE_VERSION_NUM(17, 5, 0, 0)
1195   rte_log_set_global_level (log_level);
1196 #else
1197   rte_set_log_level (log_level);
1198 #endif
1199
1200   vm = vlib_get_main ();
1201
1202   /* make copy of args as rte_eal_init tends to mess up with arg array */
1203   for (i = 1; i < vec_len (conf->eal_init_args); i++)
1204     conf->eal_init_args_str = format (conf->eal_init_args_str, "%s ",
1205                                       conf->eal_init_args[i]);
1206
1207   ret =
1208     rte_eal_init (vec_len (conf->eal_init_args),
1209                   (char **) conf->eal_init_args);
1210
1211   /* lazy umount hugepages */
1212   umount2 (DEFAULT_HUGE_DIR, MNT_DETACH);
1213
1214   if (ret < 0)
1215     return clib_error_return (0, "rte_eal_init returned %d", ret);
1216
1217   /* Dump the physical memory layout prior to creating the mbuf_pool */
1218   fprintf (stdout, "DPDK physical memory layout:\n");
1219   rte_dump_physmem_layout (stdout);
1220
1221   /* main thread 1st */
1222   error = dpdk_buffer_pool_create (vm, conf->num_mbufs, rte_socket_id ());
1223   if (error)
1224     return error;
1225
1226   for (i = 0; i < RTE_MAX_LCORE; i++)
1227     {
1228       error = dpdk_buffer_pool_create (vm, conf->num_mbufs,
1229                                        rte_lcore_to_socket_id (i));
1230       if (error)
1231         return error;
1232     }
1233
1234 done:
1235   return error;
1236 }
1237
1238 VLIB_CONFIG_FUNCTION (dpdk_config, "dpdk");
1239
1240 void
1241 dpdk_update_link_state (dpdk_device_t * xd, f64 now)
1242 {
1243   vnet_main_t *vnm = vnet_get_main ();
1244   struct rte_eth_link prev_link = xd->link;
1245   u32 hw_flags = 0;
1246   u8 hw_flags_chg = 0;
1247
1248   /* only update link state for PMD interfaces */
1249   if ((xd->flags & DPDK_DEVICE_FLAG_PMD) == 0)
1250     return;
1251
1252   xd->time_last_link_update = now ? now : xd->time_last_link_update;
1253   memset (&xd->link, 0, sizeof (xd->link));
1254   rte_eth_link_get_nowait (xd->device_index, &xd->link);
1255
1256   if (LINK_STATE_ELOGS)
1257     {
1258       vlib_main_t *vm = vlib_get_main ();
1259       ELOG_TYPE_DECLARE (e) =
1260       {
1261       .format =
1262           "update-link-state: sw_if_index %d, admin_up %d,"
1263           "old link_state %d new link_state %d",.format_args = "i4i1i1i1",};
1264
1265       struct
1266       {
1267         u32 sw_if_index;
1268         u8 admin_up;
1269         u8 old_link_state;
1270         u8 new_link_state;
1271       } *ed;
1272       ed = ELOG_DATA (&vm->elog_main, e);
1273       ed->sw_if_index = xd->vlib_sw_if_index;
1274       ed->admin_up = (xd->flags & DPDK_DEVICE_FLAG_ADMIN_UP) != 0;
1275       ed->old_link_state = (u8)
1276         vnet_hw_interface_is_link_up (vnm, xd->hw_if_index);
1277       ed->new_link_state = (u8) xd->link.link_status;
1278     }
1279
1280   if ((xd->flags & (DPDK_DEVICE_FLAG_ADMIN_UP | DPDK_DEVICE_FLAG_BOND_SLAVE))
1281       && ((xd->link.link_status != 0) ^
1282           vnet_hw_interface_is_link_up (vnm, xd->hw_if_index)))
1283     {
1284       hw_flags_chg = 1;
1285       hw_flags |= (xd->link.link_status ? VNET_HW_INTERFACE_FLAG_LINK_UP : 0);
1286     }
1287
1288   if (hw_flags_chg || (xd->link.link_duplex != prev_link.link_duplex))
1289     {
1290       hw_flags_chg = 1;
1291       switch (xd->link.link_duplex)
1292         {
1293         case ETH_LINK_HALF_DUPLEX:
1294           hw_flags |= VNET_HW_INTERFACE_FLAG_HALF_DUPLEX;
1295           break;
1296         case ETH_LINK_FULL_DUPLEX:
1297           hw_flags |= VNET_HW_INTERFACE_FLAG_FULL_DUPLEX;
1298           break;
1299         default:
1300           break;
1301         }
1302     }
1303   if (hw_flags_chg || (xd->link.link_speed != prev_link.link_speed))
1304     {
1305       hw_flags_chg = 1;
1306       switch (xd->link.link_speed)
1307         {
1308         case ETH_SPEED_NUM_10M:
1309           hw_flags |= VNET_HW_INTERFACE_FLAG_SPEED_10M;
1310           break;
1311         case ETH_SPEED_NUM_100M:
1312           hw_flags |= VNET_HW_INTERFACE_FLAG_SPEED_100M;
1313           break;
1314         case ETH_SPEED_NUM_1G:
1315           hw_flags |= VNET_HW_INTERFACE_FLAG_SPEED_1G;
1316           break;
1317         case ETH_SPEED_NUM_10G:
1318           hw_flags |= VNET_HW_INTERFACE_FLAG_SPEED_10G;
1319           break;
1320         case ETH_SPEED_NUM_40G:
1321           hw_flags |= VNET_HW_INTERFACE_FLAG_SPEED_40G;
1322           break;
1323         case 0:
1324           break;
1325         default:
1326           clib_warning ("unknown link speed %d", xd->link.link_speed);
1327           break;
1328         }
1329     }
1330   if (hw_flags_chg)
1331     {
1332       if (LINK_STATE_ELOGS)
1333         {
1334           vlib_main_t *vm = vlib_get_main ();
1335
1336           ELOG_TYPE_DECLARE (e) =
1337           {
1338           .format =
1339               "update-link-state: sw_if_index %d, new flags %d",.format_args
1340               = "i4i4",};
1341
1342           struct
1343           {
1344             u32 sw_if_index;
1345             u32 flags;
1346           } *ed;
1347           ed = ELOG_DATA (&vm->elog_main, e);
1348           ed->sw_if_index = xd->vlib_sw_if_index;
1349           ed->flags = hw_flags;
1350         }
1351       vnet_hw_interface_set_flags (vnm, xd->hw_if_index, hw_flags);
1352     }
1353 }
1354
1355 static uword
1356 dpdk_process (vlib_main_t * vm, vlib_node_runtime_t * rt, vlib_frame_t * f)
1357 {
1358   clib_error_t *error;
1359   vnet_main_t *vnm = vnet_get_main ();
1360   dpdk_main_t *dm = &dpdk_main;
1361   ethernet_main_t *em = &ethernet_main;
1362   dpdk_device_t *xd;
1363   vlib_thread_main_t *tm = vlib_get_thread_main ();
1364   int i;
1365
1366   error = dpdk_lib_init (dm);
1367
1368   if (error)
1369     clib_error_report (error);
1370
1371   tm->worker_thread_release = 1;
1372
1373   f64 now = vlib_time_now (vm);
1374   vec_foreach (xd, dm->devices)
1375   {
1376     dpdk_update_link_state (xd, now);
1377   }
1378
1379   {
1380     /*
1381      * Extra set up for bond interfaces:
1382      *  1. Setup MACs for bond interfaces and their slave links which was set
1383      *     in dpdk_device_setup() but needs to be done again here to take
1384      *     effect.
1385      *  2. Set up info and register slave link state change callback handling.
1386      *  3. Set up info for bond interface related CLI support.
1387      */
1388     int nports = rte_eth_dev_count ();
1389     if (nports > 0)
1390       {
1391         for (i = 0; i < nports; i++)
1392           {
1393             xd = &dm->devices[i];
1394             ASSERT (i == xd->device_index);
1395             if (xd->pmd == VNET_DPDK_PMD_BOND)
1396               {
1397                 u8 addr[6];
1398                 u8 slink[16];
1399                 int nlink = rte_eth_bond_slaves_get (i, slink, 16);
1400                 if (nlink > 0)
1401                   {
1402                     vnet_hw_interface_t *bhi;
1403                     ethernet_interface_t *bei;
1404                     int rv;
1405
1406                     /* Get MAC of 1st slave link */
1407                     rte_eth_macaddr_get
1408                       (slink[0], (struct ether_addr *) addr);
1409
1410                     /* Set MAC of bounded interface to that of 1st slave link */
1411                     clib_warning ("Set MAC for bond port %d BondEthernet%d",
1412                                   i, xd->port_id);
1413                     rv = rte_eth_bond_mac_address_set
1414                       (i, (struct ether_addr *) addr);
1415                     if (rv)
1416                       clib_warning ("Set MAC addr failure rv=%d", rv);
1417
1418                     /* Populate MAC of bonded interface in VPP hw tables */
1419                     bhi = vnet_get_hw_interface
1420                       (vnm, dm->devices[i].hw_if_index);
1421                     bei = pool_elt_at_index
1422                       (em->interfaces, bhi->hw_instance);
1423                     clib_memcpy (bhi->hw_address, addr, 6);
1424                     clib_memcpy (bei->address, addr, 6);
1425
1426                     /* Init l3 packet size allowed on bonded interface */
1427                     bhi->max_packet_bytes = ETHERNET_MAX_PACKET_BYTES;
1428                     bhi->max_l3_packet_bytes[VLIB_RX] =
1429                       bhi->max_l3_packet_bytes[VLIB_TX] =
1430                       ETHERNET_MAX_PACKET_BYTES - sizeof (ethernet_header_t);
1431                     while (nlink >= 1)
1432                       {         /* for all slave links */
1433                         int slave = slink[--nlink];
1434                         dpdk_device_t *sdev = &dm->devices[slave];
1435                         vnet_hw_interface_t *shi;
1436                         vnet_sw_interface_t *ssi;
1437                         ethernet_interface_t *sei;
1438                         /* Add MAC to all slave links except the first one */
1439                         if (nlink)
1440                           {
1441                             clib_warning ("Add MAC for slave port %d", slave);
1442                             rv = rte_eth_dev_mac_addr_add
1443                               (slave, (struct ether_addr *) addr, 0);
1444                             if (rv)
1445                               clib_warning ("Add MAC addr failure rv=%d", rv);
1446                           }
1447                         /* Setup slave link state change callback handling */
1448                         rte_eth_dev_callback_register
1449                           (slave, RTE_ETH_EVENT_INTR_LSC,
1450                            dpdk_port_state_callback, NULL);
1451                         dpdk_device_t *sxd = &dm->devices[slave];
1452                         sxd->flags |= DPDK_DEVICE_FLAG_BOND_SLAVE;
1453                         sxd->bond_port = i;
1454                         /* Set slaves bitmap for bonded interface */
1455                         bhi->bond_info = clib_bitmap_set
1456                           (bhi->bond_info, sdev->hw_if_index, 1);
1457                         /* Set MACs and slave link flags on slave interface */
1458                         shi = vnet_get_hw_interface (vnm, sdev->hw_if_index);
1459                         ssi = vnet_get_sw_interface
1460                           (vnm, sdev->vlib_sw_if_index);
1461                         sei = pool_elt_at_index
1462                           (em->interfaces, shi->hw_instance);
1463                         shi->bond_info = VNET_HW_INTERFACE_BOND_INFO_SLAVE;
1464                         ssi->flags |= VNET_SW_INTERFACE_FLAG_BOND_SLAVE;
1465                         clib_memcpy (shi->hw_address, addr, 6);
1466                         clib_memcpy (sei->address, addr, 6);
1467                         /* Set l3 packet size allowed as the lowest of slave */
1468                         if (bhi->max_l3_packet_bytes[VLIB_RX] >
1469                             shi->max_l3_packet_bytes[VLIB_RX])
1470                           bhi->max_l3_packet_bytes[VLIB_RX] =
1471                             bhi->max_l3_packet_bytes[VLIB_TX] =
1472                             shi->max_l3_packet_bytes[VLIB_RX];
1473                         /* Set max packet size allowed as the lowest of slave */
1474                         if (bhi->max_packet_bytes > shi->max_packet_bytes)
1475                           bhi->max_packet_bytes = shi->max_packet_bytes;
1476                       }
1477                   }
1478               }
1479           }
1480       }
1481   }
1482
1483   while (1)
1484     {
1485       /*
1486        * check each time through the loop in case intervals are changed
1487        */
1488       f64 min_wait = dm->link_state_poll_interval < dm->stat_poll_interval ?
1489         dm->link_state_poll_interval : dm->stat_poll_interval;
1490
1491       vlib_process_wait_for_event_or_clock (vm, min_wait);
1492
1493       if (dm->admin_up_down_in_progress)
1494         /* skip the poll if an admin up down is in progress (on any interface) */
1495         continue;
1496
1497       vec_foreach (xd, dm->devices)
1498       {
1499         f64 now = vlib_time_now (vm);
1500         if ((now - xd->time_last_stats_update) >= dm->stat_poll_interval)
1501           dpdk_update_counters (xd, now);
1502         if ((now - xd->time_last_link_update) >= dm->link_state_poll_interval)
1503           dpdk_update_link_state (xd, now);
1504
1505       }
1506     }
1507
1508   return 0;
1509 }
1510
1511 /* *INDENT-OFF* */
1512 VLIB_REGISTER_NODE (dpdk_process_node,static) = {
1513     .function = dpdk_process,
1514     .type = VLIB_NODE_TYPE_PROCESS,
1515     .name = "dpdk-process",
1516     .process_log2_n_stack_bytes = 17,
1517 };
1518 /* *INDENT-ON* */
1519
1520 static clib_error_t *
1521 dpdk_init (vlib_main_t * vm)
1522 {
1523   dpdk_main_t *dm = &dpdk_main;
1524   vlib_node_t *ei;
1525   clib_error_t *error = 0;
1526   vlib_thread_main_t *tm = vlib_get_thread_main ();
1527
1528   /* verify that structs are cacheline aligned */
1529   STATIC_ASSERT (offsetof (dpdk_device_t, cacheline0) == 0,
1530                  "Cache line marker must be 1st element in dpdk_device_t");
1531   STATIC_ASSERT (offsetof (dpdk_device_t, cacheline1) ==
1532                  CLIB_CACHE_LINE_BYTES,
1533                  "Data in cache line 0 is bigger than cache line size");
1534   STATIC_ASSERT (offsetof (frame_queue_trace_t, cacheline0) == 0,
1535                  "Cache line marker must be 1st element in frame_queue_trace_t");
1536
1537   dm->vlib_main = vm;
1538   dm->vnet_main = vnet_get_main ();
1539   dm->conf = &dpdk_config_main;
1540
1541   ei = vlib_get_node_by_name (vm, (u8 *) "ethernet-input");
1542   if (ei == 0)
1543     return clib_error_return (0, "ethernet-input node AWOL");
1544
1545   dm->ethernet_input_node_index = ei->index;
1546
1547   dm->conf->nchannels = 4;
1548   dm->conf->num_mbufs = dm->conf->num_mbufs ? dm->conf->num_mbufs : NB_MBUF;
1549   vec_add1 (dm->conf->eal_init_args, (u8 *) "vnet");
1550
1551   vec_validate (dm->recycle, tm->n_thread_stacks - 1);
1552
1553   /* Default vlib_buffer_t flags, DISABLES tcp/udp checksumming... */
1554   dm->buffer_flags_template =
1555     (VLIB_BUFFER_TOTAL_LENGTH_VALID | VLIB_BUFFER_EXT_HDR_VALID
1556      | VNET_BUFFER_F_L4_CHECKSUM_COMPUTED |
1557      VNET_BUFFER_F_L4_CHECKSUM_CORRECT);
1558
1559   dm->stat_poll_interval = DPDK_STATS_POLL_INTERVAL;
1560   dm->link_state_poll_interval = DPDK_LINK_POLL_INTERVAL;
1561
1562   /* init CLI */
1563   if ((error = vlib_call_init_function (vm, dpdk_cli_init)))
1564     return error;
1565
1566   return error;
1567 }
1568
1569 VLIB_INIT_FUNCTION (dpdk_init);
1570
1571
1572 /*
1573  * fd.io coding-style-patch-verification: ON
1574  *
1575  * Local Variables:
1576  * eval: (c-set-style "gnu")
1577  * End:
1578  */