Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 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 | #include <rte_config.h> |
| 22 | |
| 23 | #include <rte_common.h> |
| 24 | #include <rte_dev.h> |
| 25 | #include <rte_log.h> |
| 26 | #include <rte_memory.h> |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 27 | #include <rte_memzone.h> |
| 28 | #include <rte_tailq.h> |
| 29 | #include <rte_eal.h> |
| 30 | #include <rte_per_lcore.h> |
| 31 | #include <rte_launch.h> |
| 32 | #include <rte_atomic.h> |
| 33 | #include <rte_cycles.h> |
| 34 | #include <rte_prefetch.h> |
| 35 | #include <rte_lcore.h> |
| 36 | #include <rte_per_lcore.h> |
| 37 | #include <rte_branch_prediction.h> |
| 38 | #include <rte_interrupts.h> |
| 39 | #include <rte_pci.h> |
| 40 | #include <rte_random.h> |
| 41 | #include <rte_debug.h> |
| 42 | #include <rte_ether.h> |
| 43 | #include <rte_ethdev.h> |
| 44 | #include <rte_ring.h> |
| 45 | #include <rte_mempool.h> |
| 46 | #include <rte_mbuf.h> |
Damjan Marion | e90892e | 2016-02-23 19:20:28 +0100 | [diff] [blame] | 47 | #ifdef RTE_LIBRTE_KNI |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 48 | #include <rte_kni.h> |
Damjan Marion | e90892e | 2016-02-23 19:20:28 +0100 | [diff] [blame] | 49 | #endif |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 50 | #include <rte_virtio_net.h> |
| 51 | #include <rte_pci_dev_ids.h> |
| 52 | #include <rte_version.h> |
John Lo | d9bf9ab | 2016-02-25 11:17:55 -0500 | [diff] [blame] | 53 | #include <rte_eth_bond.h> |
Jasvinder Singh | 85ecc81 | 2016-07-21 17:02:19 +0100 | [diff] [blame^] | 54 | #include <rte_sched.h> |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 55 | |
| 56 | #include <vnet/unix/pcap.h> |
| 57 | #include <vnet/devices/virtio/vhost-user.h> |
| 58 | |
| 59 | #if CLIB_DEBUG > 0 |
| 60 | #define always_inline static inline |
| 61 | #else |
| 62 | #define always_inline static inline __attribute__ ((__always_inline__)) |
| 63 | #endif |
| 64 | |
Damjan Marion | 1f0da17 | 2016-07-13 22:44:18 +0200 | [diff] [blame] | 65 | #if RTE_VERSION < RTE_VERSION_NUM(16, 7, 0, 0) |
| 66 | #define DPDK_VHOST_USER 1 |
| 67 | #else |
| 68 | #define DPDK_VHOST_USER 0 |
| 69 | #endif |
| 70 | |
Damjan Marion | c68b4cb | 2016-05-25 20:11:33 +0200 | [diff] [blame] | 71 | #include <vlib/pci/pci.h> |
| 72 | |
Damjan Marion | a06dfb3 | 2016-06-26 20:16:57 +0200 | [diff] [blame] | 73 | #define NB_MBUF (16<<10) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 74 | |
Damjan Marion | b8abf87 | 2016-03-14 20:02:35 +0100 | [diff] [blame] | 75 | extern vnet_device_class_t dpdk_device_class; |
Jean-Mickael Guerin | 8941ec2 | 2016-03-04 14:14:21 +0100 | [diff] [blame] | 76 | extern vlib_node_registration_t dpdk_input_node; |
Jean-Mickael Guerin | 8941ec2 | 2016-03-04 14:14:21 +0100 | [diff] [blame] | 77 | extern vlib_node_registration_t handoff_dispatch_node; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 78 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 79 | #define foreach_dpdk_pmd \ |
Dave Barach | 61efa14 | 2016-01-22 08:23:09 -0500 | [diff] [blame] | 80 | _ ("rte_nicvf_pmd", THUNDERX) \ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 81 | _ ("rte_em_pmd", E1000EM) \ |
| 82 | _ ("rte_igb_pmd", IGB) \ |
| 83 | _ ("rte_igbvf_pmd", IGBVF) \ |
| 84 | _ ("rte_ixgbe_pmd", IXGBE) \ |
| 85 | _ ("rte_ixgbevf_pmd", IXGBEVF) \ |
| 86 | _ ("rte_i40e_pmd", I40E) \ |
| 87 | _ ("rte_i40evf_pmd", I40EVF) \ |
| 88 | _ ("rte_virtio_pmd", VIRTIO) \ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 89 | _ ("rte_enic_pmd", ENIC) \ |
| 90 | _ ("rte_vmxnet3_pmd", VMXNET3) \ |
| 91 | _ ("AF_PACKET PMD", AF_PACKET) \ |
John Lo | d9bf9ab | 2016-02-25 11:17:55 -0500 | [diff] [blame] | 92 | _ ("rte_bond_pmd", BOND) \ |
Damjan Marion | 2068e98 | 2016-01-27 16:59:04 +0100 | [diff] [blame] | 93 | _ ("rte_pmd_fm10k", FM10K) \ |
Sachin | a29f200 | 2016-06-17 09:24:20 +0530 | [diff] [blame] | 94 | _ ("rte_cxgbe_pmd", CXGBE) \ |
| 95 | _ ("rte_dpaa2_dpni", DPAA2) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 96 | |
Damjan Marion | 2566567 | 2016-08-16 18:56:08 +0200 | [diff] [blame] | 97 | typedef enum |
| 98 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 99 | VNET_DPDK_PMD_NONE, |
| 100 | #define _(s,f) VNET_DPDK_PMD_##f, |
| 101 | foreach_dpdk_pmd |
| 102 | #undef _ |
Damjan Marion | 2566567 | 2016-08-16 18:56:08 +0200 | [diff] [blame] | 103 | VNET_DPDK_PMD_UNKNOWN, /* must be last */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 104 | } dpdk_pmd_t; |
| 105 | |
Damjan Marion | 2566567 | 2016-08-16 18:56:08 +0200 | [diff] [blame] | 106 | typedef enum |
| 107 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 108 | VNET_DPDK_PORT_TYPE_ETH_1G, |
| 109 | VNET_DPDK_PORT_TYPE_ETH_10G, |
| 110 | VNET_DPDK_PORT_TYPE_ETH_40G, |
John Lo | d9bf9ab | 2016-02-25 11:17:55 -0500 | [diff] [blame] | 111 | VNET_DPDK_PORT_TYPE_ETH_BOND, |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 112 | VNET_DPDK_PORT_TYPE_ETH_SWITCH, |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 113 | VNET_DPDK_PORT_TYPE_AF_PACKET, |
| 114 | VNET_DPDK_PORT_TYPE_UNKNOWN, |
| 115 | } dpdk_port_type_t; |
| 116 | |
Damjan Marion | 2566567 | 2016-08-16 18:56:08 +0200 | [diff] [blame] | 117 | typedef struct |
| 118 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 119 | f64 deadline; |
Damjan Marion | 2566567 | 2016-08-16 18:56:08 +0200 | [diff] [blame] | 120 | vlib_frame_t *frame; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 121 | } dpdk_frame_t; |
| 122 | |
| 123 | #define DPDK_EFD_MAX_DISCARD_RATE 10 |
| 124 | |
Damjan Marion | 2566567 | 2016-08-16 18:56:08 +0200 | [diff] [blame] | 125 | typedef struct |
| 126 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 127 | u16 last_burst_sz; |
| 128 | u16 max_burst_sz; |
| 129 | u32 full_frames_cnt; |
| 130 | u32 consec_full_frames_cnt; |
| 131 | u32 congestion_cnt; |
| 132 | u64 last_poll_time; |
| 133 | u64 max_poll_delay; |
| 134 | u32 discard_cnt; |
| 135 | u32 total_packet_cnt; |
| 136 | } dpdk_efd_agent_t; |
| 137 | |
Damjan Marion | 1f0da17 | 2016-07-13 22:44:18 +0200 | [diff] [blame] | 138 | #if DPDK_VHOST_USER |
Damjan Marion | 2566567 | 2016-08-16 18:56:08 +0200 | [diff] [blame] | 139 | typedef struct |
| 140 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 141 | int callfd; |
| 142 | int kickfd; |
| 143 | int errfd; |
Shesha Sreenivasamurthy | b8f45b3 | 2016-02-03 09:38:36 -0800 | [diff] [blame] | 144 | int enabled; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 145 | u32 callfd_idx; |
| 146 | u32 n_since_last_int; |
| 147 | f64 int_deadline; |
Shesha Sreenivasamurthy | 9455084 | 2016-03-02 10:33:26 -0800 | [diff] [blame] | 148 | u64 packets; |
| 149 | u64 bytes; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 150 | } dpdk_vu_vring; |
| 151 | |
Damjan Marion | 2566567 | 2016-08-16 18:56:08 +0200 | [diff] [blame] | 152 | typedef struct |
| 153 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 154 | u32 is_up; |
| 155 | u32 unix_fd; |
| 156 | u32 unix_file_index; |
| 157 | u32 client_fd; |
| 158 | char sock_filename[256]; |
| 159 | int sock_errno; |
| 160 | u8 sock_is_server; |
| 161 | u8 active; |
| 162 | |
| 163 | u64 feature_mask; |
| 164 | u32 num_vrings; |
Shesha Sreenivasamurthy | b8f45b3 | 2016-02-03 09:38:36 -0800 | [diff] [blame] | 165 | dpdk_vu_vring vrings[VHOST_MAX_QUEUE_PAIRS * 2]; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 166 | u64 region_addr[VHOST_MEMORY_MAX_NREGIONS]; |
| 167 | u32 region_fd[VHOST_MEMORY_MAX_NREGIONS]; |
Shesha Sreenivasamurthy | 81f7092 | 2016-06-15 13:47:40 -0700 | [diff] [blame] | 168 | u64 region_offset[VHOST_MEMORY_MAX_NREGIONS]; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 169 | } dpdk_vu_intf_t; |
Damjan Marion | 1f0da17 | 2016-07-13 22:44:18 +0200 | [diff] [blame] | 170 | #endif |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 171 | |
Damjan Marion | 2566567 | 2016-08-16 18:56:08 +0200 | [diff] [blame] | 172 | typedef void (*dpdk_flowcontrol_callback_t) (vlib_main_t * vm, |
| 173 | u32 hw_if_index, u32 n_packets); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 174 | |
| 175 | /* |
| 176 | * The header for the tx_vector in dpdk_device_t. |
| 177 | * Head and tail are indexes into the tx_vector and are of type |
| 178 | * u64 so they never overflow. |
| 179 | */ |
Damjan Marion | 2566567 | 2016-08-16 18:56:08 +0200 | [diff] [blame] | 180 | typedef struct |
| 181 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 182 | u64 tx_head; |
| 183 | u64 tx_tail; |
| 184 | } tx_ring_hdr_t; |
| 185 | |
Damjan Marion | 2566567 | 2016-08-16 18:56:08 +0200 | [diff] [blame] | 186 | typedef struct |
| 187 | { |
Jasvinder Singh | 85ecc81 | 2016-07-21 17:02:19 +0100 | [diff] [blame^] | 188 | struct rte_ring *swq; |
| 189 | |
| 190 | u64 hqos_field0_slabmask; |
| 191 | u32 hqos_field0_slabpos; |
| 192 | u32 hqos_field0_slabshr; |
| 193 | u64 hqos_field1_slabmask; |
| 194 | u32 hqos_field1_slabpos; |
| 195 | u32 hqos_field1_slabshr; |
| 196 | u64 hqos_field2_slabmask; |
| 197 | u32 hqos_field2_slabpos; |
| 198 | u32 hqos_field2_slabshr; |
| 199 | u32 hqos_tc_table[64]; |
| 200 | } dpdk_device_hqos_per_worker_thread_t; |
| 201 | |
| 202 | typedef struct |
| 203 | { |
| 204 | struct rte_ring **swq; |
| 205 | struct rte_mbuf **pkts_enq; |
| 206 | struct rte_mbuf **pkts_deq; |
| 207 | struct rte_sched_port *hqos; |
| 208 | u32 hqos_burst_enq; |
| 209 | u32 hqos_burst_deq; |
| 210 | u32 pkts_enq_len; |
| 211 | u32 swq_pos; |
| 212 | } dpdk_device_hqos_per_hqos_thread_t; |
| 213 | |
| 214 | typedef struct |
| 215 | { |
Damjan Marion | 2566567 | 2016-08-16 18:56:08 +0200 | [diff] [blame] | 216 | CLIB_CACHE_LINE_ALIGN_MARK (cacheline0); |
Damjan Marion | 85cdbd0 | 2016-02-12 18:00:23 +0100 | [diff] [blame] | 217 | volatile u32 **lockp; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 218 | |
| 219 | /* Instance ID */ |
| 220 | u32 device_index; |
| 221 | |
| 222 | u32 vlib_hw_if_index; |
| 223 | u32 vlib_sw_if_index; |
| 224 | |
| 225 | /* next node index if we decide to steal the rx graph arc */ |
| 226 | u32 per_interface_next_index; |
| 227 | |
| 228 | /* dpdk rte_mbuf rx and tx vectors, VLIB_FRAME_SIZE */ |
Damjan Marion | 2566567 | 2016-08-16 18:56:08 +0200 | [diff] [blame] | 229 | struct rte_mbuf ***tx_vectors; /* one per worker thread */ |
| 230 | struct rte_mbuf ***rx_vectors; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 231 | |
| 232 | /* vector of traced contexts, per device */ |
Damjan Marion | 2566567 | 2016-08-16 18:56:08 +0200 | [diff] [blame] | 233 | u32 *d_trace_buffers; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 234 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 235 | dpdk_pmd_t pmd:8; |
| 236 | i8 cpu_socket; |
| 237 | |
Damjan Marion | b28e498 | 2016-08-22 22:34:38 +0200 | [diff] [blame] | 238 | u16 flags; |
Damjan Marion | 5643170 | 2016-09-19 13:18:09 +0200 | [diff] [blame] | 239 | #define DPDK_DEVICE_FLAG_ADMIN_UP (1 << 0) |
| 240 | #define DPDK_DEVICE_FLAG_PROMISC (1 << 1) |
| 241 | #define DPDK_DEVICE_FLAG_PMD (1 << 2) |
| 242 | #define DPDK_DEVICE_FLAG_KNI (1 << 3) |
| 243 | #define DPDK_DEVICE_FLAG_VHOST_USER (1 << 4) |
Damjan Marion | a7cc447 | 2016-09-19 13:31:49 +0200 | [diff] [blame] | 244 | #define DPDK_DEVICE_FLAG_HAVE_SUBIF (1 << 5) |
Jasvinder Singh | 85ecc81 | 2016-07-21 17:02:19 +0100 | [diff] [blame^] | 245 | #define DPDK_DEVICE_FLAG_HQOS (1 << 6) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 246 | |
Damjan Marion | b58598b | 2016-09-19 13:44:37 +0200 | [diff] [blame] | 247 | u16 nb_tx_desc; |
Damjan Marion | 2566567 | 2016-08-16 18:56:08 +0200 | [diff] [blame] | 248 | CLIB_CACHE_LINE_ALIGN_MARK (cacheline1); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 249 | |
Damjan Marion | 2566567 | 2016-08-16 18:56:08 +0200 | [diff] [blame] | 250 | u8 *interface_name_suffix; |
Damjan Marion | 32f7bc1 | 2016-07-21 03:42:37 -0700 | [diff] [blame] | 251 | |
Damjan Marion | a7cc447 | 2016-09-19 13:31:49 +0200 | [diff] [blame] | 252 | /* number of sub-interfaces */ |
| 253 | u16 num_subifs; |
| 254 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 255 | /* PMD related */ |
| 256 | u16 tx_q_used; |
| 257 | u16 rx_q_used; |
| 258 | u16 nb_rx_desc; |
Damjan Marion | 2566567 | 2016-08-16 18:56:08 +0200 | [diff] [blame] | 259 | u16 *cpu_socket_id_by_queue; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 260 | struct rte_eth_conf port_conf; |
| 261 | struct rte_eth_txconf tx_conf; |
| 262 | |
Jasvinder Singh | 85ecc81 | 2016-07-21 17:02:19 +0100 | [diff] [blame^] | 263 | /* HQoS related */ |
| 264 | dpdk_device_hqos_per_worker_thread_t *hqos_wt; |
| 265 | dpdk_device_hqos_per_hqos_thread_t *hqos_ht; |
| 266 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 267 | /* KNI related */ |
| 268 | struct rte_kni *kni; |
| 269 | u8 kni_port_id; |
| 270 | |
Damjan Marion | 1f0da17 | 2016-07-13 22:44:18 +0200 | [diff] [blame] | 271 | #if DPDK_VHOST_USER |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 272 | /* vhost-user related */ |
| 273 | u32 vu_if_id; |
Damjan Marion | 2566567 | 2016-08-16 18:56:08 +0200 | [diff] [blame] | 274 | struct virtio_net vu_vhost_dev; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 275 | u32 vu_is_running; |
| 276 | dpdk_vu_intf_t *vu_intf; |
Damjan Marion | 1f0da17 | 2016-07-13 22:44:18 +0200 | [diff] [blame] | 277 | #endif |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 278 | |
| 279 | /* af_packet */ |
| 280 | u8 af_packet_port_id; |
| 281 | |
| 282 | struct rte_eth_link link; |
| 283 | f64 time_last_link_update; |
| 284 | |
| 285 | struct rte_eth_stats stats; |
| 286 | struct rte_eth_stats last_stats; |
Sean Hope | a4f16a0 | 2016-03-28 13:11:31 -0400 | [diff] [blame] | 287 | struct rte_eth_stats last_cleared_stats; |
Damjan Marion | 1f0da17 | 2016-07-13 22:44:18 +0200 | [diff] [blame] | 288 | #if RTE_VERSION >= RTE_VERSION_NUM(16, 7, 0, 0) |
Damjan Marion | 2566567 | 2016-08-16 18:56:08 +0200 | [diff] [blame] | 289 | struct rte_eth_xstat *xstats; |
| 290 | struct rte_eth_xstat *last_cleared_xstats; |
Damjan Marion | 1f0da17 | 2016-07-13 22:44:18 +0200 | [diff] [blame] | 291 | #else |
Damjan Marion | 2566567 | 2016-08-16 18:56:08 +0200 | [diff] [blame] | 292 | struct rte_eth_xstats *xstats; |
| 293 | struct rte_eth_xstats *last_cleared_xstats; |
Damjan Marion | 1f0da17 | 2016-07-13 22:44:18 +0200 | [diff] [blame] | 294 | #endif |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 295 | f64 time_last_stats_update; |
| 296 | dpdk_port_type_t port_type; |
| 297 | |
| 298 | dpdk_efd_agent_t efd_agent; |
Damjan Marion | 2566567 | 2016-08-16 18:56:08 +0200 | [diff] [blame] | 299 | u8 need_txlock; /* Used by VNET_DPDK_DEV_VHOST_USER */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 300 | } dpdk_device_t; |
| 301 | |
Bud Grise | 02301ef | 2016-02-24 16:09:05 -0500 | [diff] [blame] | 302 | #define DPDK_STATS_POLL_INTERVAL (10.0) |
Damjan Marion | 2566567 | 2016-08-16 18:56:08 +0200 | [diff] [blame] | 303 | #define DPDK_MIN_STATS_POLL_INTERVAL (0.001) /* 1msec */ |
Bud Grise | 02301ef | 2016-02-24 16:09:05 -0500 | [diff] [blame] | 304 | |
| 305 | #define DPDK_LINK_POLL_INTERVAL (3.0) |
Damjan Marion | 2566567 | 2016-08-16 18:56:08 +0200 | [diff] [blame] | 306 | #define DPDK_MIN_LINK_POLL_INTERVAL (0.001) /* 1msec */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 307 | |
Damjan Marion | 2566567 | 2016-08-16 18:56:08 +0200 | [diff] [blame] | 308 | typedef struct |
| 309 | { |
| 310 | CLIB_CACHE_LINE_ALIGN_MARK (cacheline0); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 311 | |
| 312 | /* total input packet counter */ |
| 313 | u64 aggregate_rx_packets; |
| 314 | } dpdk_worker_t; |
| 315 | |
Damjan Marion | 2566567 | 2016-08-16 18:56:08 +0200 | [diff] [blame] | 316 | typedef struct |
| 317 | { |
Jasvinder Singh | 85ecc81 | 2016-07-21 17:02:19 +0100 | [diff] [blame^] | 318 | CLIB_CACHE_LINE_ALIGN_MARK (cacheline0); |
| 319 | |
| 320 | /* total input packet counter */ |
| 321 | u64 aggregate_rx_packets; |
| 322 | } dpdk_hqos_thread_t; |
| 323 | |
| 324 | typedef struct |
| 325 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 326 | u32 device; |
| 327 | u16 queue_id; |
| 328 | } dpdk_device_and_queue_t; |
| 329 | |
| 330 | /* Early-Fast-Discard (EFD) */ |
| 331 | #define DPDK_EFD_DISABLED 0 |
| 332 | #define DPDK_EFD_DISCARD_ENABLED (1 << 0) |
| 333 | #define DPDK_EFD_MONITOR_ENABLED (1 << 1) |
| 334 | #define DPDK_EFD_DROPALL_ENABLED (1 << 2) |
| 335 | |
| 336 | #define DPDK_EFD_DEFAULT_DEVICE_QUEUE_HI_THRESH_PCT 90 |
| 337 | #define DPDK_EFD_DEFAULT_CONSEC_FULL_FRAMES_HI_THRESH 6 |
| 338 | |
Damjan Marion | 2566567 | 2016-08-16 18:56:08 +0200 | [diff] [blame] | 339 | typedef struct dpdk_efd_t |
| 340 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 341 | u16 enabled; |
| 342 | u16 queue_hi_thresh; |
| 343 | u16 consec_full_frames_hi_thresh; |
| 344 | u16 pad; |
| 345 | } dpdk_efd_t; |
| 346 | |
Jasvinder Singh | 85ecc81 | 2016-07-21 17:02:19 +0100 | [diff] [blame^] | 347 | #ifndef DPDK_HQOS_DBG_BYPASS |
| 348 | #define DPDK_HQOS_DBG_BYPASS 0 |
| 349 | #endif |
| 350 | |
| 351 | typedef struct dpdk_device_config_hqos_t |
| 352 | { |
| 353 | u32 hqos_thread; |
| 354 | u32 hqos_thread_valid; |
| 355 | |
| 356 | u32 swq_size; |
| 357 | u32 burst_enq; |
| 358 | u32 burst_deq; |
| 359 | |
| 360 | u32 pktfield0_slabpos; |
| 361 | u32 pktfield1_slabpos; |
| 362 | u32 pktfield2_slabpos; |
| 363 | u64 pktfield0_slabmask; |
| 364 | u64 pktfield1_slabmask; |
| 365 | u64 pktfield2_slabmask; |
| 366 | u32 tc_table[64]; |
| 367 | |
| 368 | struct rte_sched_port_params port; |
| 369 | struct rte_sched_subport_params *subport; |
| 370 | struct rte_sched_pipe_params *pipe; |
| 371 | uint32_t *pipe_map; |
| 372 | } dpdk_device_config_hqos_t; |
| 373 | |
| 374 | int dpdk_hqos_validate_mask (u64 mask, u32 n); |
| 375 | void dpdk_device_config_hqos_pipe_profile_default (dpdk_device_config_hqos_t * |
| 376 | hqos, u32 pipe_profile_id); |
| 377 | void dpdk_device_config_hqos_default (dpdk_device_config_hqos_t * hqos); |
| 378 | clib_error_t *dpdk_port_setup_hqos (dpdk_device_t * xd, |
| 379 | dpdk_device_config_hqos_t * hqos); |
| 380 | void dpdk_hqos_metadata_set (dpdk_device_hqos_per_worker_thread_t * hqos, |
| 381 | struct rte_mbuf **pkts, u32 n_pkts); |
| 382 | |
Damjan Marion | c68b4cb | 2016-05-25 20:11:33 +0200 | [diff] [blame] | 383 | #define foreach_dpdk_device_config_item \ |
| 384 | _ (num_rx_queues) \ |
Damjan Marion | 39da621 | 2016-06-06 13:21:04 +0200 | [diff] [blame] | 385 | _ (num_tx_queues) \ |
| 386 | _ (num_rx_desc) \ |
Srivatsa Sangli | 820e363 | 2016-06-14 13:10:55 -0700 | [diff] [blame] | 387 | _ (num_tx_desc) \ |
| 388 | _ (rss_fn) |
Damjan Marion | c68b4cb | 2016-05-25 20:11:33 +0200 | [diff] [blame] | 389 | |
Damjan Marion | 2566567 | 2016-08-16 18:56:08 +0200 | [diff] [blame] | 390 | typedef struct |
| 391 | { |
| 392 | vlib_pci_addr_t pci_addr; |
| 393 | u8 is_blacklisted; |
| 394 | u8 vlan_strip_offload; |
John Lo | ce3e971 | 2016-07-07 13:54:44 -0400 | [diff] [blame] | 395 | #define DPDK_DEVICE_VLAN_STRIP_DEFAULT 0 |
| 396 | #define DPDK_DEVICE_VLAN_STRIP_OFF 1 |
| 397 | #define DPDK_DEVICE_VLAN_STRIP_ON 2 |
| 398 | |
Damjan Marion | c68b4cb | 2016-05-25 20:11:33 +0200 | [diff] [blame] | 399 | #define _(x) uword x; |
| 400 | foreach_dpdk_device_config_item |
| 401 | #undef _ |
Damjan Marion | 0b14072 | 2016-06-14 00:36:09 +0200 | [diff] [blame] | 402 | clib_bitmap_t * workers; |
Jasvinder Singh | 85ecc81 | 2016-07-21 17:02:19 +0100 | [diff] [blame^] | 403 | u32 hqos_enabled; |
| 404 | dpdk_device_config_hqos_t hqos; |
Damjan Marion | c68b4cb | 2016-05-25 20:11:33 +0200 | [diff] [blame] | 405 | } dpdk_device_config_t; |
| 406 | |
Damjan Marion | 2566567 | 2016-08-16 18:56:08 +0200 | [diff] [blame] | 407 | typedef struct |
| 408 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 409 | |
Damjan Marion | 64ae669 | 2016-05-25 18:40:13 +0200 | [diff] [blame] | 410 | /* Config stuff */ |
Damjan Marion | 2566567 | 2016-08-16 18:56:08 +0200 | [diff] [blame] | 411 | u8 **eal_init_args; |
| 412 | u8 *eal_init_args_str; |
| 413 | u8 *uio_driver_name; |
Damjan Marion | 64ae669 | 2016-05-25 18:40:13 +0200 | [diff] [blame] | 414 | u8 no_multi_seg; |
| 415 | u8 enable_tcp_udp_checksum; |
| 416 | |
| 417 | /* Required config parameters */ |
| 418 | u8 coremask_set_manually; |
| 419 | u8 nchannels_set_manually; |
| 420 | u32 coremask; |
| 421 | u32 nchannels; |
| 422 | u32 num_mbufs; |
Damjan Marion | 2566567 | 2016-08-16 18:56:08 +0200 | [diff] [blame] | 423 | u8 num_kni; /* while kni_init allows u32, port_id in callback fn is only u8 */ |
Damjan Marion | 64ae669 | 2016-05-25 18:40:13 +0200 | [diff] [blame] | 424 | |
| 425 | /* |
| 426 | * format interface names ala xxxEthernet%d/%d/%d instead of |
Damjan Marion | 137c7c6 | 2016-07-06 22:52:49 +0200 | [diff] [blame] | 427 | * xxxEthernet%x/%x/%x. |
Damjan Marion | 64ae669 | 2016-05-25 18:40:13 +0200 | [diff] [blame] | 428 | */ |
| 429 | u8 interface_name_format_decimal; |
| 430 | |
| 431 | /* virtio vhost-user switch */ |
| 432 | u8 use_virtio_vhost; |
| 433 | |
| 434 | /* vhost-user coalescence frames config */ |
| 435 | u32 vhost_coalesce_frames; |
| 436 | f64 vhost_coalesce_time; |
| 437 | |
Damjan Marion | c68b4cb | 2016-05-25 20:11:33 +0200 | [diff] [blame] | 438 | /* per-device config */ |
| 439 | dpdk_device_config_t default_devconf; |
Damjan Marion | 2566567 | 2016-08-16 18:56:08 +0200 | [diff] [blame] | 440 | dpdk_device_config_t *dev_confs; |
| 441 | uword *device_config_index_by_pci_addr; |
Damjan Marion | c68b4cb | 2016-05-25 20:11:33 +0200 | [diff] [blame] | 442 | |
Damjan Marion | 64ae669 | 2016-05-25 18:40:13 +0200 | [diff] [blame] | 443 | } dpdk_config_main_t; |
| 444 | |
| 445 | dpdk_config_main_t dpdk_config_main; |
| 446 | |
Damjan Marion | 2566567 | 2016-08-16 18:56:08 +0200 | [diff] [blame] | 447 | typedef struct |
| 448 | { |
Damjan Marion | 64ae669 | 2016-05-25 18:40:13 +0200 | [diff] [blame] | 449 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 450 | /* Devices */ |
Damjan Marion | 2566567 | 2016-08-16 18:56:08 +0200 | [diff] [blame] | 451 | dpdk_device_t *devices; |
| 452 | dpdk_device_and_queue_t **devices_by_cpu; |
Jasvinder Singh | 85ecc81 | 2016-07-21 17:02:19 +0100 | [diff] [blame^] | 453 | dpdk_device_and_queue_t **devices_by_hqos_cpu; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 454 | |
| 455 | /* per-thread recycle lists */ |
Damjan Marion | 2566567 | 2016-08-16 18:56:08 +0200 | [diff] [blame] | 456 | u32 **recycle; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 457 | |
Dave Barach | d81566f | 2016-02-15 11:34:13 -0500 | [diff] [blame] | 458 | /* buffer flags template, configurable to enable/disable tcp / udp cksum */ |
| 459 | u32 buffer_flags_template; |
| 460 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 461 | /* flow control callback. If 0 then flow control is disabled */ |
| 462 | dpdk_flowcontrol_callback_t flowcontrol_callback; |
| 463 | |
| 464 | /* vlib buffer free list, must be same size as an rte_mbuf */ |
| 465 | u32 vlib_buffer_free_list_index; |
| 466 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 467 | /* dpdk worker "threads" */ |
Damjan Marion | 2566567 | 2016-08-16 18:56:08 +0200 | [diff] [blame] | 468 | dpdk_worker_t *workers; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 469 | |
Jasvinder Singh | 85ecc81 | 2016-07-21 17:02:19 +0100 | [diff] [blame^] | 470 | /* dpdk HQoS "threads" */ |
| 471 | dpdk_hqos_thread_t *hqos_threads; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 472 | |
| 473 | /* Ethernet input node index */ |
| 474 | u32 ethernet_input_node_index; |
| 475 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 476 | /* pcap tracing [only works if (CLIB_DEBUG > 0)] */ |
| 477 | int tx_pcap_enable; |
| 478 | pcap_main_t pcap_main; |
Damjan Marion | 2566567 | 2016-08-16 18:56:08 +0200 | [diff] [blame] | 479 | u8 *pcap_filename; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 480 | u32 pcap_sw_if_index; |
| 481 | u32 pcap_pkts_to_capture; |
| 482 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 483 | /* hashes */ |
Damjan Marion | 2566567 | 2016-08-16 18:56:08 +0200 | [diff] [blame] | 484 | uword *dpdk_device_by_kni_port_id; |
| 485 | uword *vu_sw_if_index_by_listener_fd; |
| 486 | uword *vu_sw_if_index_by_sock_fd; |
| 487 | u32 *vu_inactive_interfaces_device_index; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 488 | |
| 489 | u32 next_vu_if_id; |
| 490 | |
| 491 | /* efd (early-fast-discard) settings */ |
| 492 | dpdk_efd_t efd; |
| 493 | |
| 494 | /* |
| 495 | * flag indicating that a posted admin up/down |
| 496 | * (via post_sw_interface_set_flags) is in progress |
| 497 | */ |
| 498 | u8 admin_up_down_in_progress; |
| 499 | |
Damjan Marion | c68b4cb | 2016-05-25 20:11:33 +0200 | [diff] [blame] | 500 | u8 use_rss; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 501 | |
| 502 | /* which cpus are running dpdk-input */ |
| 503 | int input_cpu_first_index; |
| 504 | int input_cpu_count; |
| 505 | |
Jasvinder Singh | 85ecc81 | 2016-07-21 17:02:19 +0100 | [diff] [blame^] | 506 | /* which cpus are running I/O TX */ |
| 507 | int hqos_cpu_first_index; |
| 508 | int hqos_cpu_count; |
| 509 | |
Bud Grise | 02301ef | 2016-02-24 16:09:05 -0500 | [diff] [blame] | 510 | /* control interval of dpdk link state and stat polling */ |
| 511 | f64 link_state_poll_interval; |
| 512 | f64 stat_poll_interval; |
| 513 | |
Dave Barach | 08602d1 | 2016-06-04 14:10:59 -0400 | [diff] [blame] | 514 | /* Sleep for this many MS after each device poll */ |
| 515 | u32 poll_sleep; |
| 516 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 517 | /* convenience */ |
Damjan Marion | 2566567 | 2016-08-16 18:56:08 +0200 | [diff] [blame] | 518 | vlib_main_t *vlib_main; |
| 519 | vnet_main_t *vnet_main; |
| 520 | dpdk_config_main_t *conf; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 521 | } dpdk_main_t; |
| 522 | |
| 523 | dpdk_main_t dpdk_main; |
| 524 | |
Damjan Marion | 2566567 | 2016-08-16 18:56:08 +0200 | [diff] [blame] | 525 | typedef enum |
| 526 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 527 | DPDK_RX_NEXT_IP4_INPUT, |
| 528 | DPDK_RX_NEXT_IP6_INPUT, |
| 529 | DPDK_RX_NEXT_MPLS_INPUT, |
| 530 | DPDK_RX_NEXT_ETHERNET_INPUT, |
| 531 | DPDK_RX_NEXT_DROP, |
| 532 | DPDK_RX_N_NEXT, |
| 533 | } dpdk_rx_next_t; |
| 534 | |
Damjan Marion | 2566567 | 2016-08-16 18:56:08 +0200 | [diff] [blame] | 535 | typedef struct |
| 536 | { |
Damjan Marion | 7f62097 | 2016-02-25 16:00:11 +0100 | [diff] [blame] | 537 | u32 buffer_index; |
| 538 | u16 device_index; |
| 539 | u8 queue_index; |
| 540 | struct rte_mbuf mb; |
| 541 | /* Copy of VLIB buffer; packet data stored in pre_data. */ |
| 542 | vlib_buffer_t buffer; |
| 543 | } dpdk_tx_dma_trace_t; |
| 544 | |
Damjan Marion | 2566567 | 2016-08-16 18:56:08 +0200 | [diff] [blame] | 545 | typedef struct |
| 546 | { |
Damjan Marion | 7f62097 | 2016-02-25 16:00:11 +0100 | [diff] [blame] | 547 | u32 buffer_index; |
| 548 | u16 device_index; |
| 549 | u16 queue_index; |
| 550 | struct rte_mbuf mb; |
Damjan Marion | 2566567 | 2016-08-16 18:56:08 +0200 | [diff] [blame] | 551 | vlib_buffer_t buffer; /* Copy of VLIB buffer; pkt data stored in pre_data. */ |
| 552 | u8 data[256]; /* First 256 data bytes, used for hexdump */ |
Damjan Marion | 7f62097 | 2016-02-25 16:00:11 +0100 | [diff] [blame] | 553 | } dpdk_rx_dma_trace_t; |
| 554 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 555 | void vnet_buffer_needs_dpdk_mb (vlib_buffer_t * b); |
| 556 | |
| 557 | void dpdk_set_next_node (dpdk_rx_next_t, char *); |
| 558 | |
Damjan Marion | 2566567 | 2016-08-16 18:56:08 +0200 | [diff] [blame] | 559 | clib_error_t *dpdk_set_mac_address (vnet_hw_interface_t * hi, char *address); |
Christian Dechamplain | 2073cfe | 2016-02-19 12:26:57 -0500 | [diff] [blame] | 560 | |
Damjan Marion | 2566567 | 2016-08-16 18:56:08 +0200 | [diff] [blame] | 561 | clib_error_t *dpdk_set_mc_filter (vnet_hw_interface_t * hi, |
| 562 | struct ether_addr mc_addr_vec[], int naddr); |
Christian Dechamplain | 2073cfe | 2016-02-19 12:26:57 -0500 | [diff] [blame] | 563 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 564 | void dpdk_thread_input (dpdk_main_t * dm, dpdk_device_t * xd); |
| 565 | |
Damjan Marion | 2566567 | 2016-08-16 18:56:08 +0200 | [diff] [blame] | 566 | clib_error_t *dpdk_port_setup (dpdk_main_t * dm, dpdk_device_t * xd); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 567 | |
Damjan Marion | 2566567 | 2016-08-16 18:56:08 +0200 | [diff] [blame] | 568 | void dpdk_set_flowcontrol_callback (vlib_main_t * vm, |
| 569 | dpdk_flowcontrol_callback_t callback); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 570 | |
| 571 | u32 dpdk_interface_tx_vector (vlib_main_t * vm, u32 dev_instance); |
| 572 | |
Damjan Marion | 2566567 | 2016-08-16 18:56:08 +0200 | [diff] [blame] | 573 | void set_efd_bitmap (u8 * bitmap, u32 value, u32 op); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 574 | |
Damjan Marion | 2566567 | 2016-08-16 18:56:08 +0200 | [diff] [blame] | 575 | struct rte_mbuf *dpdk_replicate_packet_mb (vlib_buffer_t * b); |
| 576 | struct rte_mbuf *dpdk_zerocopy_replicate_packet_mb (vlib_buffer_t * b); |
Keith Burns (alagalah) | 52fc44d | 2016-03-25 09:38:50 -0700 | [diff] [blame] | 577 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 578 | #define foreach_dpdk_error \ |
| 579 | _(NONE, "no error") \ |
| 580 | _(RX_PACKET_ERROR, "Rx packet errors") \ |
| 581 | _(RX_BAD_FCS, "Rx bad fcs") \ |
| 582 | _(L4_CHECKSUM_ERROR, "Rx L4 checksum errors") \ |
| 583 | _(IP_CHECKSUM_ERROR, "Rx ip checksum errors") \ |
| 584 | _(RX_ALLOC_FAIL, "rx buf alloc from free list failed") \ |
| 585 | _(RX_ALLOC_NO_PHYSMEM, "rx buf alloc failed no physmem") \ |
| 586 | _(RX_ALLOC_DROP_PKTS, "rx packets dropped due to alloc error") \ |
| 587 | _(IPV4_EFD_DROP_PKTS, "IPV4 Early Fast Discard rx drops") \ |
| 588 | _(IPV6_EFD_DROP_PKTS, "IPV6 Early Fast Discard rx drops") \ |
| 589 | _(MPLS_EFD_DROP_PKTS, "MPLS Early Fast Discard rx drops") \ |
| 590 | _(VLAN_EFD_DROP_PKTS, "VLAN Early Fast Discard rx drops") |
| 591 | |
Damjan Marion | 2566567 | 2016-08-16 18:56:08 +0200 | [diff] [blame] | 592 | typedef enum |
| 593 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 594 | #define _(f,s) DPDK_ERROR_##f, |
| 595 | foreach_dpdk_error |
| 596 | #undef _ |
Damjan Marion | 2566567 | 2016-08-16 18:56:08 +0200 | [diff] [blame] | 597 | DPDK_N_ERROR, |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 598 | } dpdk_error_t; |
| 599 | |
| 600 | /* |
| 601 | * Increment EFD drop counter |
| 602 | */ |
Damjan Marion | 2566567 | 2016-08-16 18:56:08 +0200 | [diff] [blame] | 603 | static_always_inline void |
| 604 | increment_efd_drop_counter (vlib_main_t * vm, u32 counter_index, u32 count) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 605 | { |
Damjan Marion | 2566567 | 2016-08-16 18:56:08 +0200 | [diff] [blame] | 606 | vlib_node_t *my_n; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 607 | |
Damjan Marion | 2566567 | 2016-08-16 18:56:08 +0200 | [diff] [blame] | 608 | my_n = vlib_get_node (vm, dpdk_input_node.index); |
| 609 | vm->error_main.counters[my_n->error_heap_index + counter_index] += count; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 610 | } |
| 611 | |
Bud Grise | 02301ef | 2016-02-24 16:09:05 -0500 | [diff] [blame] | 612 | int dpdk_set_stat_poll_interval (f64 interval); |
| 613 | int dpdk_set_link_state_poll_interval (f64 interval); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 614 | void dpdk_update_link_state (dpdk_device_t * xd, f64 now); |
Damjan Marion | 2566567 | 2016-08-16 18:56:08 +0200 | [diff] [blame] | 615 | void dpdk_device_lock_init (dpdk_device_t * xd); |
| 616 | void dpdk_device_lock_free (dpdk_device_t * xd); |
| 617 | void dpdk_efd_update_counters (dpdk_device_t * xd, u32 n_buffers, |
| 618 | u16 enabled); |
| 619 | u32 is_efd_discardable (vlib_thread_main_t * tm, vlib_buffer_t * b0, |
| 620 | struct rte_mbuf *mb); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 621 | |
Damjan Marion | 1f0da17 | 2016-07-13 22:44:18 +0200 | [diff] [blame] | 622 | #if DPDK_VHOST_USER |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 623 | /* dpdk vhost-user interrupt management */ |
Damjan Marion | 2566567 | 2016-08-16 18:56:08 +0200 | [diff] [blame] | 624 | u8 dpdk_vhost_user_want_interrupt (dpdk_device_t * xd, int idx); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 625 | void dpdk_vhost_user_send_interrupt (vlib_main_t * vm, dpdk_device_t * xd, |
Damjan Marion | 2566567 | 2016-08-16 18:56:08 +0200 | [diff] [blame] | 626 | int idx); |
Damjan Marion | 1f0da17 | 2016-07-13 22:44:18 +0200 | [diff] [blame] | 627 | #endif |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 628 | |
| 629 | |
Damjan Marion | 2566567 | 2016-08-16 18:56:08 +0200 | [diff] [blame] | 630 | static inline u64 |
| 631 | vnet_get_aggregate_rx_packets (void) |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 632 | { |
Damjan Marion | 2566567 | 2016-08-16 18:56:08 +0200 | [diff] [blame] | 633 | dpdk_main_t *dm = &dpdk_main; |
| 634 | u64 sum = 0; |
| 635 | dpdk_worker_t *dw; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 636 | |
Damjan Marion | 2566567 | 2016-08-16 18:56:08 +0200 | [diff] [blame] | 637 | vec_foreach (dw, dm->workers) sum += dw->aggregate_rx_packets; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 638 | |
Damjan Marion | 2566567 | 2016-08-16 18:56:08 +0200 | [diff] [blame] | 639 | return sum; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 640 | } |
| 641 | |
| 642 | void dpdk_rx_trace (dpdk_main_t * dm, |
Damjan Marion | 2566567 | 2016-08-16 18:56:08 +0200 | [diff] [blame] | 643 | vlib_node_runtime_t * node, |
| 644 | dpdk_device_t * xd, |
| 645 | u16 queue_id, u32 * buffers, uword n_buffers); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 646 | |
| 647 | #define EFD_OPERATION_LESS_THAN 0 |
| 648 | #define EFD_OPERATION_GREATER_OR_EQUAL 1 |
| 649 | |
Damjan Marion | 2566567 | 2016-08-16 18:56:08 +0200 | [diff] [blame] | 650 | void efd_config (u32 enabled, |
| 651 | u32 ip_prec, u32 ip_op, |
| 652 | u32 mpls_exp, u32 mpls_op, u32 vlan_cos, u32 vlan_op); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 653 | |
Damjan Marion | 2566567 | 2016-08-16 18:56:08 +0200 | [diff] [blame] | 654 | void post_sw_interface_set_flags (vlib_main_t * vm, u32 sw_if_index, |
| 655 | u32 flags); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 656 | |
Damjan Marion | 1f0da17 | 2016-07-13 22:44:18 +0200 | [diff] [blame] | 657 | #if DPDK_VHOST_USER |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 658 | typedef struct vhost_user_memory vhost_user_memory_t; |
| 659 | |
| 660 | void dpdk_vhost_user_process_init (void **ctx); |
| 661 | void dpdk_vhost_user_process_cleanup (void *ctx); |
Damjan Marion | 2566567 | 2016-08-16 18:56:08 +0200 | [diff] [blame] | 662 | uword dpdk_vhost_user_process_if (vlib_main_t * vm, dpdk_device_t * xd, |
| 663 | void *ctx); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 664 | |
| 665 | // vhost-user calls |
| 666 | int dpdk_vhost_user_create_if (vnet_main_t * vnm, vlib_main_t * vm, |
Damjan Marion | 2566567 | 2016-08-16 18:56:08 +0200 | [diff] [blame] | 667 | const char *sock_filename, |
| 668 | u8 is_server, |
| 669 | u32 * sw_if_index, |
| 670 | u64 feature_mask, |
| 671 | u8 renumber, u32 custom_dev_instance, |
| 672 | u8 * hwaddr); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 673 | int dpdk_vhost_user_modify_if (vnet_main_t * vnm, vlib_main_t * vm, |
Damjan Marion | 2566567 | 2016-08-16 18:56:08 +0200 | [diff] [blame] | 674 | const char *sock_filename, |
| 675 | u8 is_server, |
| 676 | u32 sw_if_index, |
| 677 | u64 feature_mask, |
| 678 | u8 renumber, u32 custom_dev_instance); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 679 | int dpdk_vhost_user_delete_if (vnet_main_t * vnm, vlib_main_t * vm, |
Damjan Marion | 2566567 | 2016-08-16 18:56:08 +0200 | [diff] [blame] | 680 | u32 sw_if_index); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 681 | int dpdk_vhost_user_dump_ifs (vnet_main_t * vnm, vlib_main_t * vm, |
Damjan Marion | 2566567 | 2016-08-16 18:56:08 +0200 | [diff] [blame] | 682 | vhost_user_intf_details_t ** out_vuids); |
Damjan Marion | 1f0da17 | 2016-07-13 22:44:18 +0200 | [diff] [blame] | 683 | #endif |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 684 | |
| 685 | u32 dpdk_get_admin_up_down_in_progress (void); |
| 686 | |
Todd Foggoa (tfoggoa) | a30d40d | 2016-03-17 16:54:30 -0400 | [diff] [blame] | 687 | u32 dpdk_num_mbufs (void); |
| 688 | |
Damjan Marion | 2566567 | 2016-08-16 18:56:08 +0200 | [diff] [blame] | 689 | dpdk_pmd_t dpdk_get_pmd_type (vnet_hw_interface_t * hi); |
Todd Foggoa (tfoggoa) | a30d40d | 2016-03-17 16:54:30 -0400 | [diff] [blame] | 690 | |
Damjan Marion | 2566567 | 2016-08-16 18:56:08 +0200 | [diff] [blame] | 691 | i8 dpdk_get_cpu_socket (vnet_hw_interface_t * hi); |
Todd Foggoa (tfoggoa) | a30d40d | 2016-03-17 16:54:30 -0400 | [diff] [blame] | 692 | |
Damjan Marion | 2566567 | 2016-08-16 18:56:08 +0200 | [diff] [blame] | 693 | void *dpdk_input_multiarch_select (); |
| 694 | void *dpdk_input_rss_multiarch_select (); |
| 695 | void *dpdk_input_efd_multiarch_select (); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 696 | |
Damjan Marion | 2566567 | 2016-08-16 18:56:08 +0200 | [diff] [blame] | 697 | clib_error_t *dpdk_get_hw_interface_stats (u32 hw_if_index, |
| 698 | struct rte_eth_stats *dest); |
Sean Hope | a4f16a0 | 2016-03-28 13:11:31 -0400 | [diff] [blame] | 699 | |
Damjan Marion | 7f62097 | 2016-02-25 16:00:11 +0100 | [diff] [blame] | 700 | format_function_t format_dpdk_device_name; |
| 701 | format_function_t format_dpdk_device; |
| 702 | format_function_t format_dpdk_tx_dma_trace; |
| 703 | format_function_t format_dpdk_rx_dma_trace; |
| 704 | format_function_t format_dpdk_rte_mbuf; |
| 705 | format_function_t format_dpdk_rx_rte_mbuf; |
| 706 | unformat_function_t unformat_socket_mem; |
Damjan Marion | 2566567 | 2016-08-16 18:56:08 +0200 | [diff] [blame] | 707 | clib_error_t *unformat_rss_fn (unformat_input_t * input, uword * rss_fn); |
Jasvinder Singh | 85ecc81 | 2016-07-21 17:02:19 +0100 | [diff] [blame^] | 708 | clib_error_t *unformat_hqos (unformat_input_t * input, |
| 709 | dpdk_device_config_hqos_t * hqos); |
Damjan Marion | 7f62097 | 2016-02-25 16:00:11 +0100 | [diff] [blame] | 710 | |
Damjan Marion | aa04a0f | 2016-04-01 12:34:24 +0200 | [diff] [blame] | 711 | |
| 712 | static inline void |
Damjan Marion | 2566567 | 2016-08-16 18:56:08 +0200 | [diff] [blame] | 713 | dpdk_pmd_constructor_init () |
Damjan Marion | aa04a0f | 2016-04-01 12:34:24 +0200 | [diff] [blame] | 714 | { |
| 715 | /* Add references to DPDK Driver Constructor functions to get the dynamic |
| 716 | * loader to pull in the driver library & run the constructors. |
| 717 | */ |
| 718 | #define _(d) \ |
| 719 | do { \ |
| 720 | void devinitfn_ ##d(void); \ |
| 721 | __attribute__((unused)) void (* volatile pf)(void); \ |
| 722 | pf = devinitfn_ ##d; \ |
| 723 | } while(0); |
| 724 | |
| 725 | #ifdef RTE_LIBRTE_EM_PMD |
| 726 | _(em_pmd_drv) |
| 727 | #endif |
Damjan Marion | aa04a0f | 2016-04-01 12:34:24 +0200 | [diff] [blame] | 728 | #ifdef RTE_LIBRTE_IGB_PMD |
Damjan Marion | 2566567 | 2016-08-16 18:56:08 +0200 | [diff] [blame] | 729 | _(pmd_igb_drv) |
Damjan Marion | aa04a0f | 2016-04-01 12:34:24 +0200 | [diff] [blame] | 730 | #endif |
Damjan Marion | aa04a0f | 2016-04-01 12:34:24 +0200 | [diff] [blame] | 731 | #ifdef RTE_LIBRTE_IXGBE_PMD |
Damjan Marion | 2566567 | 2016-08-16 18:56:08 +0200 | [diff] [blame] | 732 | _(rte_ixgbe_driver) |
Damjan Marion | aa04a0f | 2016-04-01 12:34:24 +0200 | [diff] [blame] | 733 | #endif |
Damjan Marion | aa04a0f | 2016-04-01 12:34:24 +0200 | [diff] [blame] | 734 | #ifdef RTE_LIBRTE_I40E_PMD |
Damjan Marion | 2566567 | 2016-08-16 18:56:08 +0200 | [diff] [blame] | 735 | _(rte_i40e_driver) _(rte_i40evf_driver) |
Damjan Marion | aa04a0f | 2016-04-01 12:34:24 +0200 | [diff] [blame] | 736 | #endif |
Damjan Marion | aa04a0f | 2016-04-01 12:34:24 +0200 | [diff] [blame] | 737 | #ifdef RTE_LIBRTE_FM10K_PMD |
Damjan Marion | 2566567 | 2016-08-16 18:56:08 +0200 | [diff] [blame] | 738 | _(rte_fm10k_driver) |
Damjan Marion | aa04a0f | 2016-04-01 12:34:24 +0200 | [diff] [blame] | 739 | #endif |
Damjan Marion | aa04a0f | 2016-04-01 12:34:24 +0200 | [diff] [blame] | 740 | #ifdef RTE_LIBRTE_VIRTIO_PMD |
Damjan Marion | 2566567 | 2016-08-16 18:56:08 +0200 | [diff] [blame] | 741 | _(rte_virtio_driver) |
Damjan Marion | aa04a0f | 2016-04-01 12:34:24 +0200 | [diff] [blame] | 742 | #endif |
Damjan Marion | aa04a0f | 2016-04-01 12:34:24 +0200 | [diff] [blame] | 743 | #ifdef RTE_LIBRTE_VMXNET3_PMD |
Damjan Marion | 2566567 | 2016-08-16 18:56:08 +0200 | [diff] [blame] | 744 | _(rte_vmxnet3_driver) |
Damjan Marion | aa04a0f | 2016-04-01 12:34:24 +0200 | [diff] [blame] | 745 | #endif |
Damjan Marion | aa04a0f | 2016-04-01 12:34:24 +0200 | [diff] [blame] | 746 | #ifdef RTE_LIBRTE_VICE_PMD |
Damjan Marion | 2566567 | 2016-08-16 18:56:08 +0200 | [diff] [blame] | 747 | _(rte_vice_driver) |
Damjan Marion | aa04a0f | 2016-04-01 12:34:24 +0200 | [diff] [blame] | 748 | #endif |
Damjan Marion | aa04a0f | 2016-04-01 12:34:24 +0200 | [diff] [blame] | 749 | #ifdef RTE_LIBRTE_ENIC_PMD |
Damjan Marion | 2566567 | 2016-08-16 18:56:08 +0200 | [diff] [blame] | 750 | _(rte_enic_driver) |
Damjan Marion | aa04a0f | 2016-04-01 12:34:24 +0200 | [diff] [blame] | 751 | #endif |
Damjan Marion | aa04a0f | 2016-04-01 12:34:24 +0200 | [diff] [blame] | 752 | #ifdef RTE_LIBRTE_PMD_AF_PACKET |
Damjan Marion | 2566567 | 2016-08-16 18:56:08 +0200 | [diff] [blame] | 753 | _(pmd_af_packet_drv) |
Damjan Marion | aa04a0f | 2016-04-01 12:34:24 +0200 | [diff] [blame] | 754 | #endif |
Damjan Marion | aa04a0f | 2016-04-01 12:34:24 +0200 | [diff] [blame] | 755 | #ifdef RTE_LIBRTE_CXGBE_PMD |
Damjan Marion | 2566567 | 2016-08-16 18:56:08 +0200 | [diff] [blame] | 756 | _(rte_cxgbe_driver) |
Damjan Marion | aa04a0f | 2016-04-01 12:34:24 +0200 | [diff] [blame] | 757 | #endif |
Damjan Marion | aa04a0f | 2016-04-01 12:34:24 +0200 | [diff] [blame] | 758 | #ifdef RTE_LIBRTE_PMD_BOND |
Damjan Marion | 2566567 | 2016-08-16 18:56:08 +0200 | [diff] [blame] | 759 | _(bond_drv) |
Damjan Marion | aa04a0f | 2016-04-01 12:34:24 +0200 | [diff] [blame] | 760 | #endif |
Sachin | a29f200 | 2016-06-17 09:24:20 +0530 | [diff] [blame] | 761 | #ifdef RTE_LIBRTE_DPAA2_PMD |
Damjan Marion | 2566567 | 2016-08-16 18:56:08 +0200 | [diff] [blame] | 762 | _(pmd_dpaa2_drv) |
Sachin | a29f200 | 2016-06-17 09:24:20 +0530 | [diff] [blame] | 763 | #endif |
Damjan Marion | aa04a0f | 2016-04-01 12:34:24 +0200 | [diff] [blame] | 764 | #undef _ |
Damjan Marion | aa04a0f | 2016-04-01 12:34:24 +0200 | [diff] [blame] | 765 | /* |
| 766 | * At the moment, the ThunderX NIC driver doesn't have |
| 767 | * an entry point named "devinitfn_rte_xxx_driver" |
| 768 | */ |
| 769 | #define _(d) \ |
| 770 | do { \ |
| 771 | void d(void); \ |
| 772 | __attribute__((unused)) void (* volatile pf)(void); \ |
| 773 | pf = d; \ |
| 774 | } while(0); |
Damjan Marion | aa04a0f | 2016-04-01 12:34:24 +0200 | [diff] [blame] | 775 | #ifdef RTE_LIBRTE_THUNDERVNIC_PMD |
Damjan Marion | 2566567 | 2016-08-16 18:56:08 +0200 | [diff] [blame] | 776 | _(rte_nicvf_pmd_init) |
Damjan Marion | aa04a0f | 2016-04-01 12:34:24 +0200 | [diff] [blame] | 777 | #endif |
| 778 | #undef _ |
Damjan Marion | aa04a0f | 2016-04-01 12:34:24 +0200 | [diff] [blame] | 779 | } |
| 780 | |
Todd Foggoa | e3eefff | 2016-05-20 22:10:34 -0400 | [diff] [blame] | 781 | uword |
| 782 | admin_up_down_process (vlib_main_t * vm, |
Damjan Marion | 2566567 | 2016-08-16 18:56:08 +0200 | [diff] [blame] | 783 | vlib_node_runtime_t * rt, vlib_frame_t * f); |
Todd Foggoa | e3eefff | 2016-05-20 22:10:34 -0400 | [diff] [blame] | 784 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 785 | #endif /* __included_dpdk_h__ */ |
Damjan Marion | 2566567 | 2016-08-16 18:56:08 +0200 | [diff] [blame] | 786 | |
| 787 | /* |
| 788 | * fd.io coding-style-patch-verification: ON |
| 789 | * |
| 790 | * Local Variables: |
| 791 | * eval: (c-set-style "gnu") |
| 792 | * End: |
| 793 | */ |