17616187f4b5eb97bcaddab7c540b3370d2869c1
[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_ether.h>
21 #include <rte_ethdev.h>
22
23 #include "prox_globals.h"
24
25 enum addr_type {PROX_PORT_MAC_HW, PROX_PORT_MAC_SET, PROX_PORT_MAC_RAND};
26
27 #define IPV4_CKSUM      1
28 #define UDP_CKSUM       2
29
30 struct prox_port_cfg {
31         struct rte_mempool *pool[32];  /* Rx/Tx mempool */
32         size_t pool_size[32];
33         uint8_t promiscuous;
34         uint8_t lsc_set_explicitely; /* Explicitly enable/disable lsc */
35         uint8_t lsc_val;
36         uint8_t active;
37         int socket;
38         uint16_t max_rxq;         /* max number of Tx queues */
39         uint16_t max_txq;         /* max number of Tx queues */
40         uint16_t n_rxq;           /* number of used Rx queues */
41         uint16_t n_txq;           /* number of used Tx queues */
42         uint32_t n_rxd;
43         uint32_t n_txd;
44         uint8_t  link_up;
45         uint32_t  link_speed;
46         uint32_t  mtu;
47         enum addr_type    type;
48         struct ether_addr eth_addr;    /* port MAC address */
49         char name[MAX_NAME_SIZE];
50         char short_name[MAX_NAME_SIZE];
51         char driver_name[MAX_NAME_SIZE];
52         char rx_ring[MAX_NAME_SIZE];
53         char tx_ring[MAX_NAME_SIZE];
54         char pci_addr[32];
55         struct rte_eth_conf port_conf;
56         struct rte_eth_rxconf rx_conf;
57         struct rte_eth_txconf tx_conf;
58         struct {
59                 int tx_offload_cksum;
60         } capabilities;
61 };
62
63 extern rte_atomic32_t lsc;
64
65 int prox_nb_active_ports(void);
66 int prox_last_port_active(void);
67
68 extern struct prox_port_cfg prox_port_cfg[];
69
70 void init_rte_dev(int use_dummy_devices);
71 uint8_t init_rte_ring_dev(void);
72 void init_port_addr(void);
73 void init_port_all(void);
74 void close_ports_atexit(void);
75
76 struct rte_mempool;
77
78 void prox_pktmbuf_init(struct rte_mempool *mp, void *opaque_arg, void *_m, unsigned i);
79 void prox_pktmbuf_reinit(void *arg, void *start, void *end, uint32_t idx);
80
81 int port_is_active(uint8_t port_id);
82
83 #endif /* __PROX_PORT_CFG_H_ */