flow: add RSS support
[vpp.git] / src / plugins / dpdk / device / dpdk.h
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 #ifndef __included_dpdk_h__
16 #define __included_dpdk_h__
17
18 /* $$$$ We should rename always_inline -> clib_always_inline */
19 #undef always_inline
20
21 #define ALLOW_EXPERIMENTAL_API
22
23 #include <rte_config.h>
24
25 #include <rte_common.h>
26 #include <rte_dev.h>
27 #include <rte_memory.h>
28 #include <rte_eal.h>
29 #include <rte_per_lcore.h>
30 #include <rte_cycles.h>
31 #include <rte_lcore.h>
32 #include <rte_per_lcore.h>
33 #include <rte_interrupts.h>
34 #include <rte_pci.h>
35 #include <rte_ether.h>
36 #include <rte_ethdev.h>
37 #include <rte_ring.h>
38 #include <rte_mempool.h>
39 #include <rte_mbuf.h>
40 #include <rte_version.h>
41 #include <rte_sched.h>
42 #include <rte_net.h>
43 #include <rte_bus_pci.h>
44 #include <rte_flow.h>
45
46 #include <vnet/devices/devices.h>
47
48 #if CLIB_DEBUG > 0
49 #define always_inline static inline
50 #else
51 #define always_inline static inline __attribute__ ((__always_inline__))
52 #endif
53
54 #include <vlib/pci/pci.h>
55 #include <vnet/flow/flow.h>
56
57 extern vnet_device_class_t dpdk_device_class;
58 extern vlib_node_registration_t dpdk_input_node;
59 extern vlib_node_registration_t admin_up_down_process_node;
60
61 #define foreach_dpdk_pmd          \
62   _ ("net_thunderx", THUNDERX)    \
63   _ ("net_e1000_em", E1000EM)     \
64   _ ("net_e1000_igb", IGB)        \
65   _ ("net_e1000_igb_vf", IGBVF)   \
66   _ ("net_ixgbe", IXGBE)          \
67   _ ("net_ixgbe_vf", IXGBEVF)     \
68   _ ("net_i40e", I40E)            \
69   _ ("net_i40e_vf", I40EVF)       \
70   _ ("net_ice", ICE)              \
71   _ ("net_iavf", IAVF)            \
72   _ ("net_virtio", VIRTIO)        \
73   _ ("net_enic", ENIC)            \
74   _ ("net_vmxnet3", VMXNET3)      \
75   _ ("AF_PACKET PMD", AF_PACKET)  \
76   _ ("net_fm10k", FM10K)          \
77   _ ("net_cxgbe", CXGBE)          \
78   _ ("net_mlx4", MLX4)            \
79   _ ("net_mlx5", MLX5)            \
80   _ ("net_dpaa2", DPAA2)          \
81   _ ("net_virtio_user", VIRTIO_USER) \
82   _ ("net_vhost", VHOST_ETHER)    \
83   _ ("net_ena", ENA)              \
84   _ ("net_failsafe", FAILSAFE)    \
85   _ ("net_liovf", LIOVF_ETHER)    \
86   _ ("net_qede", QEDE)            \
87   _ ("net_netvsc", NETVSC)        \
88   _ ("net_bnxt", BNXT)
89
90 typedef enum
91 {
92   VNET_DPDK_PMD_NONE,
93 #define _(s,f) VNET_DPDK_PMD_##f,
94   foreach_dpdk_pmd
95 #undef _
96     VNET_DPDK_PMD_UNKNOWN,      /* must be last */
97 } dpdk_pmd_t;
98
99 typedef enum
100 {
101   VNET_DPDK_PORT_TYPE_ETH_1G,
102   VNET_DPDK_PORT_TYPE_ETH_2_5G,
103   VNET_DPDK_PORT_TYPE_ETH_5G,
104   VNET_DPDK_PORT_TYPE_ETH_10G,
105   VNET_DPDK_PORT_TYPE_ETH_20G,
106   VNET_DPDK_PORT_TYPE_ETH_25G,
107   VNET_DPDK_PORT_TYPE_ETH_40G,
108   VNET_DPDK_PORT_TYPE_ETH_50G,
109   VNET_DPDK_PORT_TYPE_ETH_56G,
110   VNET_DPDK_PORT_TYPE_ETH_100G,
111   VNET_DPDK_PORT_TYPE_ETH_SWITCH,
112   VNET_DPDK_PORT_TYPE_AF_PACKET,
113   VNET_DPDK_PORT_TYPE_ETH_VF,
114   VNET_DPDK_PORT_TYPE_VIRTIO_USER,
115   VNET_DPDK_PORT_TYPE_VHOST_ETHER,
116   VNET_DPDK_PORT_TYPE_FAILSAFE,
117   VNET_DPDK_PORT_TYPE_NETVSC,
118   VNET_DPDK_PORT_TYPE_UNKNOWN,
119 } dpdk_port_type_t;
120
121 typedef uint16_t dpdk_portid_t;
122
123 #define foreach_dpdk_device_flags \
124   _( 0, ADMIN_UP, "admin-up") \
125   _( 1, PROMISC, "promisc") \
126   _( 2, PMD, "pmd") \
127   _( 3, PMD_INIT_FAIL, "pmd-init-fail") \
128   _( 4, MAYBE_MULTISEG, "maybe-multiseg") \
129   _( 5, HAVE_SUBIF, "subif") \
130   _( 9, TX_OFFLOAD, "tx-offload") \
131   _(10, INTEL_PHDR_CKSUM, "intel-phdr-cksum") \
132   _(11, RX_FLOW_OFFLOAD, "rx-flow-offload") \
133   _(12, RX_IP4_CKSUM, "rx-ip4-cksum")
134
135 enum
136 {
137 #define _(a, b, c) DPDK_DEVICE_FLAG_##b = (1 << a),
138   foreach_dpdk_device_flags
139 #undef _
140 };
141
142 typedef struct
143 {
144   u32 flow_index;
145   u32 mark;
146   struct rte_flow *handle;
147 } dpdk_flow_entry_t;
148
149 typedef struct
150 {
151   u32 flow_id;
152   u16 next_index;
153   i16 buffer_advance;
154 } dpdk_flow_lookup_entry_t;
155
156 typedef struct
157 {
158   CLIB_CACHE_LINE_ALIGN_MARK (cacheline0);
159   volatile u32 **lockp;
160
161   /* Instance ID to access internal device array. */
162   dpdk_portid_t device_index;
163
164   /* DPDK device port number */
165   dpdk_portid_t port_id;
166
167   u32 hw_if_index;
168   u32 sw_if_index;
169
170   /* next node index if we decide to steal the rx graph arc */
171   u32 per_interface_next_index;
172
173   dpdk_pmd_t pmd:8;
174   i8 cpu_socket;
175
176   u16 flags;
177
178   u16 nb_tx_desc;
179     CLIB_CACHE_LINE_ALIGN_MARK (cacheline1);
180
181   u8 *name;
182   u8 *interface_name_suffix;
183
184   /* number of sub-interfaces */
185   u16 num_subifs;
186
187   /* PMD related */
188   u16 tx_q_used;
189   u16 rx_q_used;
190   u16 nb_rx_desc;
191   u16 *cpu_socket_id_by_queue;
192   u8 *buffer_pool_for_queue;
193   struct rte_eth_conf port_conf;
194   struct rte_eth_txconf tx_conf;
195
196   /* flow related */
197   u32 supported_flow_actions;
198   dpdk_flow_entry_t *flow_entries;      /* pool */
199   dpdk_flow_lookup_entry_t *flow_lookup_entries;        /* pool */
200   u32 *parked_lookup_indexes;   /* vector */
201   u32 parked_loop_count;
202   struct rte_flow_error last_flow_error;
203
204   /* af_packet instance number */
205   u16 af_packet_instance_num;
206
207   struct rte_eth_link link;
208   f64 time_last_link_update;
209
210   struct rte_eth_stats stats;
211   struct rte_eth_stats last_stats;
212   struct rte_eth_xstat *xstats;
213   f64 time_last_stats_update;
214   dpdk_port_type_t port_type;
215
216   /* mac address */
217   u8 *default_mac_address;
218
219   /* error string */
220   clib_error_t *errors;
221 } dpdk_device_t;
222
223 #define DPDK_STATS_POLL_INTERVAL      (10.0)
224 #define DPDK_MIN_STATS_POLL_INTERVAL  (0.001)   /* 1msec */
225
226 #define DPDK_LINK_POLL_INTERVAL       (3.0)
227 #define DPDK_MIN_LINK_POLL_INTERVAL   (0.001)   /* 1msec */
228
229 typedef struct
230 {
231   u32 device;
232   u16 queue_id;
233 } dpdk_device_and_queue_t;
234
235 #ifndef DPDK_HQOS_DBG_BYPASS
236 #define DPDK_HQOS_DBG_BYPASS 0
237 #endif
238
239 #ifndef HQOS_FLUSH_COUNT_THRESHOLD
240 #define HQOS_FLUSH_COUNT_THRESHOLD              100000
241 #endif
242
243
244 #define foreach_dpdk_device_config_item \
245   _ (num_rx_queues) \
246   _ (num_tx_queues) \
247   _ (num_rx_desc) \
248   _ (num_tx_desc) \
249   _ (rss_fn)
250
251 typedef struct
252 {
253   vlib_pci_addr_t pci_addr;
254   u8 *name;
255   u8 is_blacklisted;
256   u8 vlan_strip_offload;
257 #define DPDK_DEVICE_VLAN_STRIP_DEFAULT 0
258 #define DPDK_DEVICE_VLAN_STRIP_OFF 1
259 #define DPDK_DEVICE_VLAN_STRIP_ON  2
260
261 #define _(x) uword x;
262     foreach_dpdk_device_config_item
263 #undef _
264     clib_bitmap_t * workers;
265   u8 tso;
266   u8 *devargs;
267
268 #define DPDK_DEVICE_TSO_DEFAULT 0
269 #define DPDK_DEVICE_TSO_OFF 1
270 #define DPDK_DEVICE_TSO_ON  2
271 } dpdk_device_config_t;
272
273 typedef struct
274 {
275
276   /* Config stuff */
277   u8 **eal_init_args;
278   u8 *eal_init_args_str;
279   u8 *uio_driver_name;
280   u8 no_multi_seg;
281   u8 enable_tcp_udp_checksum;
282   u8 no_tx_checksum_offload;
283
284   /* Required config parameters */
285   u8 coremask_set_manually;
286   u8 nchannels_set_manually;
287   u32 coremask;
288   u32 nchannels;
289   u32 num_crypto_mbufs;
290
291   /*
292    * format interface names ala xxxEthernet%d/%d/%d instead of
293    * xxxEthernet%x/%x/%x.
294    */
295   u8 interface_name_format_decimal;
296
297   /* per-device config */
298   dpdk_device_config_t default_devconf;
299   dpdk_device_config_t *dev_confs;
300   uword *device_config_index_by_pci_addr;
301
302   /* devices blacklist by pci vendor_id, device_id */
303   u32 *blacklist_by_pci_vendor_and_device;
304
305 } dpdk_config_main_t;
306
307 extern dpdk_config_main_t dpdk_config_main;
308
309 #define DPDK_RX_BURST_SZ VLIB_FRAME_SIZE
310
311 typedef struct
312 {
313   CLIB_CACHE_LINE_ALIGN_MARK (cacheline0);
314   struct rte_mbuf *mbufs[DPDK_RX_BURST_SZ];
315   u32 buffers[DPDK_RX_BURST_SZ];
316   u16 next[DPDK_RX_BURST_SZ];
317   u16 etype[DPDK_RX_BURST_SZ];
318   u16 flags[DPDK_RX_BURST_SZ];
319   vlib_buffer_t buffer_template;
320 } dpdk_per_thread_data_t;
321
322 typedef struct
323 {
324
325   /* Devices */
326   dpdk_device_t *devices;
327   dpdk_per_thread_data_t *per_thread_data;
328
329   /* buffer flags template, configurable to enable/disable tcp / udp cksum */
330   u32 buffer_flags_template;
331
332   /*
333    * flag indicating that a posted admin up/down
334    * (via post_sw_interface_set_flags) is in progress
335    */
336   u8 admin_up_down_in_progress;
337
338   /* control interval of dpdk link state and stat polling */
339   f64 link_state_poll_interval;
340   f64 stat_poll_interval;
341
342   /* convenience */
343   vlib_main_t *vlib_main;
344   vnet_main_t *vnet_main;
345   dpdk_config_main_t *conf;
346
347   /* API message ID base */
348   u16 msg_id_base;
349
350   /* logging */
351   vlib_log_class_t log_default;
352 } dpdk_main_t;
353
354 extern dpdk_main_t dpdk_main;
355
356 typedef struct
357 {
358   u32 buffer_index;
359   u16 device_index;
360   u8 queue_index;
361   struct rte_mbuf mb;
362   /* Copy of VLIB buffer; packet data stored in pre_data. */
363   vlib_buffer_t buffer;
364   u8 data[256];                 /* First 256 data bytes, used for hexdump */
365 } dpdk_tx_trace_t;
366
367 typedef struct
368 {
369   u32 buffer_index;
370   u16 device_index;
371   u16 queue_index;
372   struct rte_mbuf mb;
373   vlib_buffer_t buffer;         /* Copy of VLIB buffer; pkt data stored in pre_data. */
374   u8 data[256];                 /* First 256 data bytes, used for hexdump */
375 } dpdk_rx_trace_t;
376
377 void dpdk_device_setup (dpdk_device_t * xd);
378 void dpdk_device_start (dpdk_device_t * xd);
379 void dpdk_device_stop (dpdk_device_t * xd);
380
381 int dpdk_port_state_callback (dpdk_portid_t port_id,
382                               enum rte_eth_event_type type,
383                               void *param, void *ret_param);
384
385 #define foreach_dpdk_error                                              \
386   _(NONE, "no error")                                                   \
387   _(RX_PACKET_ERROR, "Rx packet errors")                                \
388   _(RX_BAD_FCS, "Rx bad fcs")                                           \
389   _(IP_CHECKSUM_ERROR, "Rx ip checksum errors")                         \
390   _(RX_ALLOC_FAIL, "rx buf alloc from free list failed")                \
391   _(RX_ALLOC_NO_PHYSMEM, "rx buf alloc failed no physmem")              \
392   _(RX_ALLOC_DROP_PKTS, "rx packets dropped due to alloc error")
393
394 typedef enum
395 {
396 #define _(f,s) DPDK_ERROR_##f,
397   foreach_dpdk_error
398 #undef _
399     DPDK_N_ERROR,
400 } dpdk_error_t;
401
402 #define dpdk_log_err(...) \
403   vlib_log(VLIB_LOG_LEVEL_ERR, dpdk_main.log_default, __VA_ARGS__)
404 #define dpdk_log_warn(...) \
405   vlib_log(VLIB_LOG_LEVEL_WARNING, dpdk_main.log_default, __VA_ARGS__)
406 #define dpdk_log_notice(...) \
407   vlib_log(VLIB_LOG_LEVEL_NOTICE, dpdk_main.log_default, __VA_ARGS__)
408 #define dpdk_log_info(...) \
409   vlib_log(VLIB_LOG_LEVEL_INFO, dpdk_main.log_default, __VA_ARGS__)
410
411 void dpdk_update_link_state (dpdk_device_t * xd, f64 now);
412
413 #define foreach_dpdk_rss_hf                    \
414   _(0, ETH_RSS_FRAG_IPV4,           "ipv4-frag")    \
415   _(1, ETH_RSS_NONFRAG_IPV4_TCP,    "ipv4-tcp")     \
416   _(2, ETH_RSS_NONFRAG_IPV4_UDP,    "ipv4-udp")     \
417   _(3, ETH_RSS_NONFRAG_IPV4_SCTP,   "ipv4-sctp")    \
418   _(4, ETH_RSS_NONFRAG_IPV4_OTHER,  "ipv4-other")   \
419   _(5, ETH_RSS_IPV4,                "ipv4")         \
420   _(6, ETH_RSS_IPV6_TCP_EX,         "ipv6-tcp-ex")  \
421   _(7, ETH_RSS_IPV6_UDP_EX,         "ipv6-udp-ex")  \
422   _(8, ETH_RSS_FRAG_IPV6,           "ipv6-frag")    \
423   _(9, ETH_RSS_NONFRAG_IPV6_TCP,    "ipv6-tcp")     \
424   _(10, ETH_RSS_NONFRAG_IPV6_UDP,   "ipv6-udp")     \
425   _(11, ETH_RSS_NONFRAG_IPV6_SCTP,  "ipv6-sctp")    \
426   _(12, ETH_RSS_NONFRAG_IPV6_OTHER, "ipv6-other")   \
427   _(13, ETH_RSS_IPV6_EX,            "ipv6-ex")      \
428   _(14, ETH_RSS_IPV6,               "ipv6")         \
429   _(15, ETH_RSS_L2_PAYLOAD,         "l2-payload")   \
430   _(16, ETH_RSS_PORT,               "port")         \
431   _(17, ETH_RSS_VXLAN,              "vxlan")        \
432   _(18, ETH_RSS_GENEVE,             "geneve")       \
433   _(19, ETH_RSS_NVGRE,              "nvgre")        \
434   _(20, ETH_RSS_GTPU,               "gtpu")         \
435   _(60, ETH_RSS_L4_DST_ONLY,        "l4-dst-only")  \
436   _(61, ETH_RSS_L4_SRC_ONLY,        "l4-src-only")  \
437   _(62, ETH_RSS_L3_DST_ONLY,        "l3-dst-only")  \
438   _(63, ETH_RSS_L3_SRC_ONLY,        "l3-src-only")
439
440 format_function_t format_dpdk_device_name;
441 format_function_t format_dpdk_device;
442 format_function_t format_dpdk_device_errors;
443 format_function_t format_dpdk_tx_trace;
444 format_function_t format_dpdk_rx_trace;
445 format_function_t format_dpdk_rte_mbuf;
446 format_function_t format_dpdk_rx_rte_mbuf;
447 format_function_t format_dpdk_flow;
448 format_function_t format_dpdk_rss_hf_name;
449 format_function_t format_dpdk_rx_offload_caps;
450 format_function_t format_dpdk_tx_offload_caps;
451 vnet_flow_dev_ops_function_t dpdk_flow_ops_fn;
452
453 clib_error_t *unformat_rss_fn (unformat_input_t * input, uword * rss_fn);
454
455 struct rte_pci_device *dpdk_get_pci_device (const struct rte_eth_dev_info
456                                             *info);
457 void dpdk_cli_reference (void);
458
459 #if CLI_DEBUG
460 int dpdk_buffer_validate_trajectory_all (u32 * uninitialized);
461 void dpdk_buffer_poison_trajectory_all (void);
462 #endif
463
464 #endif /* __included_dpdk_h__ */
465
466 /*
467  * fd.io coding-style-patch-verification: ON
468  *
469  * Local Variables:
470  * eval: (c-set-style "gnu")
471  * End:
472  */