aboutsummaryrefslogtreecommitdiff
path: root/platform/linux-dpdk/pktio/dpdk.h
blob: 2adf50722dca28649b91e51da066b61b04e4202b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
/* Copyright (c) 2013, Linaro Limited
 * All rights reserved.
 *
 * SPDX-License-Identifier:     BSD-3-Clause
 */

#ifndef ODP_PKTIO_OPS_DPDK_H_
#define ODP_PKTIO_OPS_DPDK_H_

#include <stdint.h>
#include <net/if.h>

#include <config.h>

#include <protocols/eth.h>
#include <odp/api/align.h>
#include <odp/api/debug.h>
#include <odp/api/packet.h>
#include <odp_packet_internal.h>
#include <odp/api/pool.h>
#include <odp_pool_internal.h>
#include <odp_buffer_internal.h>
#include <odp/api/std_types.h>

#include <rte_config.h>
#include <rte_memory.h>
#include <rte_memzone.h>
#include <rte_launch.h>
#include <rte_tailq.h>
#include <rte_eal.h>
#include <rte_per_lcore.h>
#include <rte_lcore.h>
#include <rte_branch_prediction.h>
#include <rte_prefetch.h>
#include <rte_cycles.h>
#include <rte_errno.h>
#include <rte_debug.h>
#include <rte_log.h>
#include <rte_byteorder.h>
#include <rte_pci.h>
#include <rte_random.h>
#include <rte_ether.h>
#include <rte_ethdev.h>
#include <rte_hash.h>
#include <rte_jhash.h>
#include <rte_hash_crc.h>

#define RTE_TEST_RX_DESC_DEFAULT 128
#define RTE_TEST_TX_DESC_DEFAULT 512

/** Packet socket using dpdk mmaped rings for both Rx and Tx */
typedef struct {
	odp_pktio_capability_t capa;	/**< interface capabilities */

	/********************************/
	char ifname[32];
	uint8_t min_rx_burst;
	uint8_t portid;
	odp_bool_t vdev_sysc_promisc;	/**< promiscuous mode defined with
					     system call */
	odp_pktin_hash_proto_t hash;	/**< Packet input hash protocol */
	odp_bool_t lockless_rx;		/**< no locking for rx */
	odp_bool_t lockless_tx;		/**< no locking for tx */
	odp_ticketlock_t rx_lock[PKTIO_MAX_QUEUES]; /**< RX queue locks */
	odp_ticketlock_t tx_lock[PKTIO_MAX_QUEUES]; /**< TX queue locks */
} pktio_ops_dpdk_data_t;

#endif