dpdk: improve checksum computation
[vpp.git] / src / plugins / dpdk / device / common.c
1 /*
2  * Copyright (c) 2017 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
16 #include <vnet/vnet.h>
17 #include <vppinfra/vec.h>
18 #include <vppinfra/format.h>
19 #include <vppinfra/file.h>
20 #include <vlib/unix/unix.h>
21 #include <assert.h>
22
23 #include <vnet/ip/ip.h>
24 #include <vnet/ethernet/ethernet.h>
25 #include <vnet/ethernet/arp_packet.h>
26 #include <vnet/interface/rx_queue_funcs.h>
27 #include <dpdk/buffer.h>
28 #include <dpdk/device/dpdk.h>
29 #include <dpdk/device/dpdk_priv.h>
30 #include <vppinfra/error.h>
31
32 void
33 dpdk_device_error (dpdk_device_t * xd, char *str, int rv)
34 {
35   dpdk_log_err ("Interface %U error %d: %s",
36                 format_dpdk_device_name, xd->port_id, rv, rte_strerror (rv));
37   xd->errors = clib_error_return (xd->errors, "%s[port:%d, errno:%d]: %s",
38                                   str, xd->port_id, rv, rte_strerror (rv));
39 }
40
41 void
42 dpdk_device_setup (dpdk_device_t * xd)
43 {
44   vlib_main_t *vm = vlib_get_main ();
45   vnet_main_t *vnm = vnet_get_main ();
46   vlib_thread_main_t *tm = vlib_get_thread_main ();
47   vnet_sw_interface_t *sw = vnet_get_sw_interface (vnm, xd->sw_if_index);
48   vnet_hw_interface_t *hi = vnet_get_hw_interface (vnm, xd->hw_if_index);
49   struct rte_eth_dev_info dev_info;
50   u64 bitmap;
51   int rv;
52   int j;
53
54   ASSERT (vlib_get_thread_index () == 0);
55
56   clib_error_free (xd->errors);
57   sw->flags &= ~VNET_SW_INTERFACE_FLAG_ERROR;
58
59   if (xd->flags & DPDK_DEVICE_FLAG_ADMIN_UP)
60     {
61       vnet_hw_interface_set_flags (vnm, xd->hw_if_index, 0);
62       dpdk_device_stop (xd);
63     }
64
65   /* Enable flow director when flows exist */
66   if (xd->pmd == VNET_DPDK_PMD_I40E)
67     {
68       if ((xd->flags & DPDK_DEVICE_FLAG_RX_FLOW_OFFLOAD) != 0)
69         xd->port_conf.fdir_conf.mode = RTE_FDIR_MODE_PERFECT;
70       else
71         xd->port_conf.fdir_conf.mode = RTE_FDIR_MODE_NONE;
72     }
73
74   rte_eth_dev_info_get (xd->port_id, &dev_info);
75
76   bitmap = xd->port_conf.txmode.offloads & ~dev_info.tx_offload_capa;
77   if (bitmap)
78     {
79       dpdk_log_warn ("unsupported tx offloads requested on port %u: %U",
80                      xd->port_id, format_dpdk_tx_offload_caps, bitmap);
81       xd->port_conf.txmode.offloads ^= bitmap;
82     }
83
84   bitmap = xd->port_conf.rxmode.offloads & ~dev_info.rx_offload_capa;
85   if (bitmap)
86     {
87       dpdk_log_warn ("unsupported rx offloads requested on port %u: %U",
88                      xd->port_id, format_dpdk_rx_offload_caps, bitmap);
89       xd->port_conf.rxmode.offloads ^= bitmap;
90     }
91
92   rv = rte_eth_dev_configure (xd->port_id, xd->conf.n_rx_queues,
93                               xd->conf.n_tx_queues, &xd->port_conf);
94
95   if (rv < 0)
96     {
97       dpdk_device_error (xd, "rte_eth_dev_configure", rv);
98       goto error;
99     }
100
101   vec_validate_aligned (xd->tx_queues, xd->conf.n_tx_queues - 1,
102                         CLIB_CACHE_LINE_BYTES);
103   for (j = 0; j < xd->conf.n_tx_queues; j++)
104     {
105       rv = rte_eth_tx_queue_setup (xd->port_id, j, xd->conf.n_tx_desc,
106                                    xd->cpu_socket, &xd->tx_conf);
107
108       /* retry with any other CPU socket */
109       if (rv < 0)
110         rv = rte_eth_tx_queue_setup (xd->port_id, j, xd->conf.n_tx_desc,
111                                      SOCKET_ID_ANY, &xd->tx_conf);
112       if (rv < 0)
113         dpdk_device_error (xd, "rte_eth_tx_queue_setup", rv);
114
115       if (xd->conf.n_tx_queues < tm->n_vlib_mains)
116         clib_spinlock_init (&vec_elt (xd->tx_queues, j).lock);
117     }
118
119   vec_validate_aligned (xd->rx_queues, xd->conf.n_rx_queues - 1,
120                         CLIB_CACHE_LINE_BYTES);
121
122   for (j = 0; j < xd->conf.n_rx_queues; j++)
123     {
124       dpdk_rx_queue_t *rxq = vec_elt_at_index (xd->rx_queues, j);
125       u8 bpidx = vlib_buffer_pool_get_default_for_numa (
126         vm, vnet_hw_if_get_rx_queue_numa_node (vnm, rxq->queue_index));
127       vlib_buffer_pool_t *bp = vlib_get_buffer_pool (vm, bpidx);
128       struct rte_mempool *mp = dpdk_mempool_by_buffer_pool_index[bpidx];
129
130       rv = rte_eth_rx_queue_setup (xd->port_id, j, xd->conf.n_rx_desc,
131                                    xd->cpu_socket, 0, mp);
132
133       /* retry with any other CPU socket */
134       if (rv < 0)
135         rv = rte_eth_rx_queue_setup (xd->port_id, j, xd->conf.n_rx_desc,
136                                      SOCKET_ID_ANY, 0, mp);
137
138       rxq->buffer_pool_index = bp->index;
139
140       if (rv < 0)
141         dpdk_device_error (xd, "rte_eth_rx_queue_setup", rv);
142     }
143
144   if (vec_len (xd->errors))
145     goto error;
146
147   rte_eth_dev_set_mtu (xd->port_id, hi->max_packet_bytes);
148   xd->buffer_flags =
149     (VLIB_BUFFER_TOTAL_LENGTH_VALID | VLIB_BUFFER_EXT_HDR_VALID);
150
151   if ((xd->port_conf.rxmode.offloads &
152        (DEV_RX_OFFLOAD_TCP_CKSUM | DEV_RX_OFFLOAD_UDP_CKSUM)) ==
153       (DEV_RX_OFFLOAD_TCP_CKSUM | DEV_RX_OFFLOAD_UDP_CKSUM))
154     xd->buffer_flags |=
155       (VNET_BUFFER_F_L4_CHECKSUM_COMPUTED | VNET_BUFFER_F_L4_CHECKSUM_CORRECT);
156
157   if (xd->flags & DPDK_DEVICE_FLAG_ADMIN_UP)
158     dpdk_device_start (xd);
159
160   if (vec_len (xd->errors))
161     goto error;
162
163   return;
164
165 error:
166   xd->flags |= DPDK_DEVICE_FLAG_PMD_INIT_FAIL;
167   sw->flags |= VNET_SW_INTERFACE_FLAG_ERROR;
168 }
169
170 static clib_error_t *
171 dpdk_rx_read_ready (clib_file_t *uf)
172 {
173   vnet_main_t *vnm = vnet_get_main ();
174   dpdk_main_t *dm = &dpdk_main;
175   u32 qidx = uf->private_data;
176   vnet_hw_if_rx_queue_t *rxq = vnet_hw_if_get_rx_queue (vnm, qidx);
177   dpdk_device_t *xd = vec_elt_at_index (dm->devices, rxq->dev_instance);
178
179   u64 b;
180   CLIB_UNUSED (ssize_t size) = read (uf->file_descriptor, &b, sizeof (b));
181   if (rxq->mode != VNET_HW_IF_RX_MODE_POLLING)
182     {
183       vnet_hw_if_rx_queue_set_int_pending (vnm, uf->private_data);
184       rte_eth_dev_rx_intr_enable (xd->port_id, rxq->queue_id);
185     }
186
187   return 0;
188 }
189
190 static void
191 dpdk_setup_interrupts (dpdk_device_t *xd)
192 {
193   vnet_main_t *vnm = vnet_get_main ();
194   vnet_hw_interface_t *hi = vnet_get_hw_interface (vnm, xd->hw_if_index);
195   if (!hi)
196     return;
197
198   if (!xd->port_conf.intr_conf.rxq)
199     return;
200
201   /* Probe for interrupt support */
202   if (rte_eth_dev_rx_intr_enable (xd->port_id, 0))
203     {
204       dpdk_log_info ("probe for interrupt mode for device %U. Failed.\n",
205                      format_dpdk_device_name, xd->port_id);
206     }
207   else
208     {
209       xd->flags |= DPDK_DEVICE_FLAG_INT_SUPPORTED;
210       if (!(xd->flags & DPDK_DEVICE_FLAG_INT_UNMASKABLE))
211         rte_eth_dev_rx_intr_disable (xd->port_id, 0);
212       dpdk_log_info ("Probe for interrupt mode for device %U. Success.\n",
213                      format_dpdk_device_name, xd->port_id);
214     }
215
216   if (xd->flags & DPDK_DEVICE_FLAG_INT_SUPPORTED)
217     {
218       hi->caps |= VNET_HW_IF_CAP_INT_MODE;
219       for (int q = 0; q < xd->conf.n_rx_queues; q++)
220         {
221           dpdk_rx_queue_t *rxq = vec_elt_at_index (xd->rx_queues, q);
222           clib_file_t f = { 0 };
223           rxq->efd = rte_eth_dev_rx_intr_ctl_q_get_fd (xd->port_id, q);
224           if (rxq->efd < 0)
225             {
226               xd->flags &= ~DPDK_DEVICE_FLAG_INT_SUPPORTED;
227               hi->caps &= ~VNET_HW_IF_CAP_INT_MODE;
228               break;
229             }
230           f.read_function = dpdk_rx_read_ready;
231           f.flags = UNIX_FILE_EVENT_EDGE_TRIGGERED;
232           f.file_descriptor = rxq->efd;
233           f.private_data = rxq->queue_index;
234           f.description =
235             format (0, "%U queue %u", format_dpdk_device_name, xd->port_id, q);
236           rxq->clib_file_index = clib_file_add (&file_main, &f);
237           vnet_hw_if_set_rx_queue_file_index (vnm, rxq->queue_index,
238                                               rxq->clib_file_index);
239           if (xd->flags & DPDK_DEVICE_FLAG_INT_UNMASKABLE)
240             {
241               clib_file_main_t *fm = &file_main;
242               clib_file_t *f =
243                 pool_elt_at_index (fm->file_pool, rxq->clib_file_index);
244               fm->file_update (f, UNIX_FILE_UPDATE_DELETE);
245             }
246         }
247     }
248   vnet_hw_if_update_runtime_data (vnm, xd->hw_if_index);
249 }
250
251 void
252 dpdk_device_start (dpdk_device_t * xd)
253 {
254   int rv;
255
256   if (xd->flags & DPDK_DEVICE_FLAG_PMD_INIT_FAIL)
257     return;
258
259   rv = rte_eth_dev_start (xd->port_id);
260
261   if (rv)
262     {
263       dpdk_device_error (xd, "rte_eth_dev_start", rv);
264       return;
265     }
266
267   dpdk_setup_interrupts (xd);
268
269   if (xd->default_mac_address)
270     rv = rte_eth_dev_default_mac_addr_set (xd->port_id,
271                                            (void *) xd->default_mac_address);
272
273   if (rv)
274     dpdk_device_error (xd, "rte_eth_dev_default_mac_addr_set", rv);
275
276   if (xd->flags & DPDK_DEVICE_FLAG_PROMISC)
277     rte_eth_promiscuous_enable (xd->port_id);
278   else
279     rte_eth_promiscuous_disable (xd->port_id);
280
281   rte_eth_allmulticast_enable (xd->port_id);
282
283   dpdk_log_info ("Interface %U started",
284                  format_dpdk_device_name, xd->port_id);
285 }
286
287 void
288 dpdk_device_stop (dpdk_device_t * xd)
289 {
290   if (xd->flags & DPDK_DEVICE_FLAG_PMD_INIT_FAIL)
291     return;
292
293   rte_eth_allmulticast_disable (xd->port_id);
294   rte_eth_dev_stop (xd->port_id);
295   clib_memset (&xd->link, 0, sizeof (struct rte_eth_link));
296
297   dpdk_log_info ("Interface %U stopped",
298                  format_dpdk_device_name, xd->port_id);
299 }
300
301 void vl_api_force_rpc_call_main_thread (void *fp, u8 * data, u32 data_length);
302
303 always_inline int
304 dpdk_port_state_callback_inline (dpdk_portid_t port_id,
305                                  enum rte_eth_event_type type, void *param)
306 {
307   struct rte_eth_link link;
308
309   RTE_SET_USED (param);
310   if (type != RTE_ETH_EVENT_INTR_LSC)
311     {
312       dpdk_log_info ("Unknown event %d received for port %d", type, port_id);
313       return -1;
314     }
315
316   rte_eth_link_get_nowait (port_id, &link);
317   u8 link_up = link.link_status;
318   if (link_up)
319     dpdk_log_info ("Port %d Link Up - speed %u Mbps - %s",
320                    port_id, (unsigned) link.link_speed,
321                    (link.link_duplex == ETH_LINK_FULL_DUPLEX) ?
322                    "full-duplex" : "half-duplex");
323   else
324     dpdk_log_info ("Port %d Link Down\n\n", port_id);
325
326   return 0;
327 }
328
329 int
330 dpdk_port_state_callback (dpdk_portid_t port_id,
331                           enum rte_eth_event_type type,
332                           void *param,
333                           void *ret_param __attribute__ ((unused)))
334 {
335   return dpdk_port_state_callback_inline (port_id, type, param);
336 }
337
338 /* If this device is PCI return pointer to info, otherwise NULL */
339 struct rte_pci_device *
340 dpdk_get_pci_device (const struct rte_eth_dev_info *info)
341 {
342   const struct rte_bus *bus;
343
344   bus = rte_bus_find_by_device (info->device);
345   if (bus && !strcmp (bus->name, "pci"))
346     return RTE_DEV_TO_PCI (info->device);
347   else
348     return NULL;
349 }
350
351 /* If this device is VMBUS return pointer to info, otherwise NULL */
352 struct rte_vmbus_device *
353 dpdk_get_vmbus_device (const struct rte_eth_dev_info *info)
354 {
355   const struct rte_bus *bus;
356
357   bus = rte_bus_find_by_device (info->device);
358   if (bus && !strcmp (bus->name, "vmbus"))
359     return container_of (info->device, struct rte_vmbus_device, device);
360   else
361     return NULL;
362 }
363
364 /*
365  * fd.io coding-style-patch-verification: ON
366  *
367  * Local Variables:
368  * eval: (c-set-style "gnu")
369  * End:
370  */