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