tests: use socket transport instead of shared memory
[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 <assert.h>
20
21 #include <vnet/ip/ip.h>
22 #include <vnet/ethernet/ethernet.h>
23 #include <vnet/ethernet/arp_packet.h>
24 #include <vnet/interface/rx_queue_funcs.h>
25 #include <dpdk/buffer.h>
26 #include <dpdk/device/dpdk.h>
27 #include <dpdk/device/dpdk_priv.h>
28 #include <vppinfra/error.h>
29
30 void
31 dpdk_device_error (dpdk_device_t * xd, char *str, int rv)
32 {
33   dpdk_log_err ("Interface %U error %d: %s",
34                 format_dpdk_device_name, xd->port_id, rv, rte_strerror (rv));
35   xd->errors = clib_error_return (xd->errors, "%s[port:%d, errno:%d]: %s",
36                                   str, xd->port_id, rv, rte_strerror (rv));
37 }
38
39 void
40 dpdk_device_setup (dpdk_device_t * xd)
41 {
42   dpdk_main_t *dm = &dpdk_main;
43   vlib_main_t *vm = vlib_get_main ();
44   vnet_main_t *vnm = vnet_get_main ();
45   vlib_thread_main_t *tm = vlib_get_thread_main ();
46   vnet_sw_interface_t *sw = vnet_get_sw_interface (vnm, xd->sw_if_index);
47   vnet_hw_interface_t *hi = vnet_get_hw_interface (vnm, xd->hw_if_index);
48   struct rte_eth_dev_info dev_info;
49   u64 bitmap;
50   int rv;
51   int j;
52
53   ASSERT (vlib_get_thread_index () == 0);
54
55   clib_error_free (xd->errors);
56   sw->flags &= ~VNET_SW_INTERFACE_FLAG_ERROR;
57
58   if (xd->flags & DPDK_DEVICE_FLAG_ADMIN_UP)
59     {
60       vnet_hw_interface_set_flags (dm->vnet_main, xd->hw_if_index, 0);
61       dpdk_device_stop (xd);
62     }
63
64   /* Enable flow director when flows exist */
65   if (xd->pmd == VNET_DPDK_PMD_I40E)
66     {
67       if ((xd->flags & DPDK_DEVICE_FLAG_RX_FLOW_OFFLOAD) != 0)
68         xd->port_conf.fdir_conf.mode = RTE_FDIR_MODE_PERFECT;
69       else
70         xd->port_conf.fdir_conf.mode = RTE_FDIR_MODE_NONE;
71     }
72
73   rte_eth_dev_info_get (xd->port_id, &dev_info);
74
75   bitmap = xd->port_conf.txmode.offloads & ~dev_info.tx_offload_capa;
76   if (bitmap)
77     {
78       dpdk_log_warn ("unsupported tx offloads requested on port %u: %U",
79                      xd->port_id, format_dpdk_tx_offload_caps, bitmap);
80       xd->port_conf.txmode.offloads ^= bitmap;
81     }
82
83   bitmap = xd->port_conf.rxmode.offloads & ~dev_info.rx_offload_capa;
84   if (bitmap)
85     {
86       dpdk_log_warn ("unsupported rx offloads requested on port %u: %U",
87                      xd->port_id, format_dpdk_rx_offload_caps, bitmap);
88       xd->port_conf.rxmode.offloads ^= bitmap;
89     }
90
91   rv = rte_eth_dev_configure (xd->port_id, xd->rx_q_used,
92                               xd->tx_q_used, &xd->port_conf);
93
94   if (rv < 0)
95     {
96       dpdk_device_error (xd, "rte_eth_dev_configure", rv);
97       goto error;
98     }
99
100   vec_validate_aligned (xd->tx_queues, xd->tx_q_used - 1,
101                         CLIB_CACHE_LINE_BYTES);
102   for (j = 0; j < xd->tx_q_used; j++)
103     {
104       rv =
105         rte_eth_tx_queue_setup (xd->port_id, j, xd->nb_tx_desc,
106                                 xd->cpu_socket, &xd->tx_conf);
107
108       /* retry with any other CPU socket */
109       if (rv < 0)
110         rv =
111           rte_eth_tx_queue_setup (xd->port_id, j,
112                                   xd->nb_tx_desc, SOCKET_ID_ANY,
113                                   &xd->tx_conf);
114       if (rv < 0)
115         dpdk_device_error (xd, "rte_eth_tx_queue_setup", rv);
116
117       if (xd->tx_q_used < tm->n_vlib_mains)
118         clib_spinlock_init (&vec_elt (xd->tx_queues, j).lock);
119     }
120
121   vec_validate_aligned (xd->rx_queues, xd->rx_q_used - 1,
122                         CLIB_CACHE_LINE_BYTES);
123   for (j = 0; j < xd->rx_q_used; j++)
124     {
125       dpdk_rx_queue_t *rxq = vec_elt_at_index (xd->rx_queues, j);
126       u8 bpidx = vlib_buffer_pool_get_default_for_numa (
127         vm, vnet_hw_if_get_rx_queue_numa_node (vnm, rxq->queue_index));
128       vlib_buffer_pool_t *bp = vlib_get_buffer_pool (vm, bpidx);
129       struct rte_mempool *mp = dpdk_mempool_by_buffer_pool_index[bpidx];
130
131       rv = rte_eth_rx_queue_setup (xd->port_id, j, xd->nb_rx_desc,
132                                    xd->cpu_socket, 0, mp);
133
134       /* retry with any other CPU socket */
135       if (rv < 0)
136         rv = rte_eth_rx_queue_setup (xd->port_id, j, xd->nb_rx_desc,
137                                      SOCKET_ID_ANY, 0, mp);
138
139       rxq->buffer_pool_index = bp->index;
140
141       if (rv < 0)
142         dpdk_device_error (xd, "rte_eth_rx_queue_setup", rv);
143     }
144
145   if (vec_len (xd->errors))
146     goto error;
147
148   rte_eth_dev_set_mtu (xd->port_id, hi->max_packet_bytes);
149
150   if (xd->flags & DPDK_DEVICE_FLAG_ADMIN_UP)
151     dpdk_device_start (xd);
152
153   if (vec_len (xd->errors))
154     goto error;
155
156   return;
157
158 error:
159   xd->flags |= DPDK_DEVICE_FLAG_PMD_INIT_FAIL;
160   sw->flags |= VNET_SW_INTERFACE_FLAG_ERROR;
161 }
162
163 void
164 dpdk_device_start (dpdk_device_t * xd)
165 {
166   int rv;
167
168   if (xd->flags & DPDK_DEVICE_FLAG_PMD_INIT_FAIL)
169     return;
170
171   rv = rte_eth_dev_start (xd->port_id);
172
173   if (rv)
174     {
175       dpdk_device_error (xd, "rte_eth_dev_start", rv);
176       return;
177     }
178
179   if (xd->default_mac_address)
180     rv = rte_eth_dev_default_mac_addr_set (xd->port_id,
181                                            (void *) xd->default_mac_address);
182
183   if (rv)
184     dpdk_device_error (xd, "rte_eth_dev_default_mac_addr_set", rv);
185
186   if (xd->flags & DPDK_DEVICE_FLAG_PROMISC)
187     rte_eth_promiscuous_enable (xd->port_id);
188   else
189     rte_eth_promiscuous_disable (xd->port_id);
190
191   rte_eth_allmulticast_enable (xd->port_id);
192
193   dpdk_log_info ("Interface %U started",
194                  format_dpdk_device_name, xd->port_id);
195 }
196
197 void
198 dpdk_device_stop (dpdk_device_t * xd)
199 {
200   if (xd->flags & DPDK_DEVICE_FLAG_PMD_INIT_FAIL)
201     return;
202
203   rte_eth_allmulticast_disable (xd->port_id);
204   rte_eth_dev_stop (xd->port_id);
205   clib_memset (&xd->link, 0, sizeof (struct rte_eth_link));
206
207   dpdk_log_info ("Interface %U stopped",
208                  format_dpdk_device_name, xd->port_id);
209 }
210
211 void vl_api_force_rpc_call_main_thread (void *fp, u8 * data, u32 data_length);
212
213 always_inline int
214 dpdk_port_state_callback_inline (dpdk_portid_t port_id,
215                                  enum rte_eth_event_type type, void *param)
216 {
217   struct rte_eth_link link;
218
219   RTE_SET_USED (param);
220   if (type != RTE_ETH_EVENT_INTR_LSC)
221     {
222       dpdk_log_info ("Unknown event %d received for port %d", type, port_id);
223       return -1;
224     }
225
226   rte_eth_link_get_nowait (port_id, &link);
227   u8 link_up = link.link_status;
228   if (link_up)
229     dpdk_log_info ("Port %d Link Up - speed %u Mbps - %s",
230                    port_id, (unsigned) link.link_speed,
231                    (link.link_duplex == ETH_LINK_FULL_DUPLEX) ?
232                    "full-duplex" : "half-duplex");
233   else
234     dpdk_log_info ("Port %d Link Down\n\n", port_id);
235
236   return 0;
237 }
238
239 int
240 dpdk_port_state_callback (dpdk_portid_t port_id,
241                           enum rte_eth_event_type type,
242                           void *param,
243                           void *ret_param __attribute__ ((unused)))
244 {
245   return dpdk_port_state_callback_inline (port_id, type, param);
246 }
247
248 /* If this device is PCI return pointer to info, otherwise NULL */
249 struct rte_pci_device *
250 dpdk_get_pci_device (const struct rte_eth_dev_info *info)
251 {
252   const struct rte_bus *bus;
253
254   bus = rte_bus_find_by_device (info->device);
255   if (bus && !strcmp (bus->name, "pci"))
256     return RTE_DEV_TO_PCI (info->device);
257   else
258     return NULL;
259 }
260
261 /* If this device is VMBUS return pointer to info, otherwise NULL */
262 struct rte_vmbus_device *
263 dpdk_get_vmbus_device (const struct rte_eth_dev_info *info)
264 {
265   const struct rte_bus *bus;
266
267   bus = rte_bus_find_by_device (info->device);
268   if (bus && !strcmp (bus->name, "vmbus"))
269     return container_of (info->device, struct rte_vmbus_device, device);
270   else
271     return NULL;
272 }
273
274 /*
275  * fd.io coding-style-patch-verification: ON
276  *
277  * Local Variables:
278  * eval: (c-set-style "gnu")
279  * End:
280  */