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