Prepare for DPDK 19.08 support
[samplevnf.git] / VNFs / DPPD-PROX / prox_port_cfg.h
1 /*
2 // Copyright (c) 2010-2017 Intel Corporation
3 //
4 // Licensed under the Apache License, Version 2.0 (the "License");
5 // you may not use this file except in compliance with the License.
6 // You may obtain a copy of the License at
7 //
8 //     http://www.apache.org/licenses/LICENSE-2.0
9 //
10 // Unless required by applicable law or agreed to in writing, software
11 // distributed under the License is distributed on an "AS IS" BASIS,
12 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 // See the License for the specific language governing permissions and
14 // limitations under the License.
15 */
16
17 #ifndef _PROX_PORT_CFG_H
18 #define _PROX_PORT_CFG_H
19
20 #include <rte_pci.h>
21 #include <rte_ether.h>
22 #include <rte_ethdev.h>
23 #include <rte_version.h>
24 #if RTE_VERSION >= RTE_VERSION_NUM(17,11,0,0)
25 #include <rte_bus_pci.h>
26 #endif
27 #include <rte_pci.h>
28
29 #include "prox_compat.h"
30 #include "prox_globals.h"
31
32 enum addr_type {PROX_PORT_MAC_HW, PROX_PORT_MAC_SET, PROX_PORT_MAC_RAND};
33
34 #define IPV4_CKSUM      1
35 #define UDP_CKSUM       2
36 #define NB_MCAST_ADDR   16
37
38 struct prox_port_cfg {
39         struct rte_mempool *pool[32];  /* Rx/Tx mempool */
40         size_t pool_size[32];
41         uint8_t promiscuous;
42         uint8_t lsc_set_explicitely; /* Explicitly enable/disable lsc */
43         uint8_t lsc_val;
44         uint8_t active;
45         int socket;
46         uint16_t max_rxq;         /* max number of Tx queues */
47         uint16_t max_txq;         /* max number of Tx queues */
48         uint16_t n_rxq;           /* number of used Rx queues */
49         uint16_t n_txq;           /* number of used Tx queues */
50         uint32_t n_rxd;
51         uint32_t n_txd;
52         uint8_t  link_up;
53         uint32_t  link_speed;
54         uint32_t  max_link_speed;
55         uint32_t  mtu;
56         enum addr_type    type;
57         prox_rte_ether_addr eth_addr;    /* port MAC address */
58         char name[MAX_NAME_SIZE];
59         char short_name[MAX_NAME_SIZE];
60         char driver_name[MAX_NAME_SIZE];
61         char rx_ring[MAX_NAME_SIZE];
62         char tx_ring[MAX_NAME_SIZE];
63         char pci_addr[32];
64         struct rte_eth_conf port_conf;
65         struct rte_eth_rxconf rx_conf;
66         struct rte_eth_txconf tx_conf;
67         uint64_t requested_rx_offload;
68         uint64_t requested_tx_offload;
69         uint64_t disabled_tx_offload;
70         struct rte_eth_dev_info dev_info;
71         struct {
72                 int tx_offload_cksum;
73         } capabilities;
74         uint32_t max_rx_pkt_len;
75         uint32_t min_rx_bufsize;
76         uint16_t min_rx_desc;
77         uint16_t max_rx_desc;
78         uint16_t min_tx_desc;
79         uint16_t max_tx_desc;
80         uint32_t nb_mc_addr;
81         prox_rte_ether_addr mc_addr[NB_MCAST_ADDR];
82 };
83
84 extern rte_atomic32_t lsc;
85
86 int prox_nb_active_ports(void);
87 int prox_last_port_active(void);
88
89 extern struct prox_port_cfg prox_port_cfg[];
90
91 void init_rte_dev(int use_dummy_devices);
92 uint8_t init_rte_ring_dev(void);
93 void init_port_addr(void);
94 void init_port_all(void);
95 void close_ports_atexit(void);
96
97 struct rte_mempool;
98
99 void prox_pktmbuf_init(struct rte_mempool *mp, void *opaque_arg, void *_m, unsigned i);
100 void prox_pktmbuf_reinit(void *arg, void *start, void *end, uint32_t idx);
101
102 int port_is_active(uint8_t port_id);
103
104 #endif /* __PROX_PORT_CFG_H_ */