bond: move param parsing in configure step
[dpdk.git] / lib / librte_pmd_bond / rte_eth_bond_private.h
1 /*-
2  *   BSD LICENSE
3  *
4  *   Copyright(c) 2010-2014 Intel Corporation. All rights reserved.
5  *   All rights reserved.
6  *
7  *   Redistribution and use in source and binary forms, with or without
8  *   modification, are permitted provided that the following conditions
9  *   are met:
10  *
11  *     * Redistributions of source code must retain the above copyright
12  *       notice, this list of conditions and the following disclaimer.
13  *     * Redistributions in binary form must reproduce the above copyright
14  *       notice, this list of conditions and the following disclaimer in
15  *       the documentation and/or other materials provided with the
16  *       distribution.
17  *     * Neither the name of Intel Corporation nor the names of its
18  *       contributors may be used to endorse or promote products derived
19  *       from this software without specific prior written permission.
20  *
21  *   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
22  *   "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
23  *   LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
24  *   A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
25  *   OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
26  *   SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
27  *   LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
28  *   DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
29  *   THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
30  *   (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
31  *   OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
32  */
33
34 #ifndef _RTE_ETH_BOND_PRIVATE_H_
35 #define _RTE_ETH_BOND_PRIVATE_H_
36
37 #ifdef __cplusplus
38 extern "C" {
39 #endif
40
41 #include <rte_ethdev.h>
42
43 #include "rte_eth_bond.h"
44
45 #define PMD_BOND_SLAVE_PORT_KVARG               ("slave")
46 #define PMD_BOND_PRIMARY_SLAVE_KVARG    ("primary")
47 #define PMD_BOND_MODE_KVARG                             ("mode")
48 #define PMD_BOND_XMIT_POLICY_KVARG              ("xmit_policy")
49 #define PMD_BOND_SOCKET_ID_KVARG                ("socket_id")
50 #define PMD_BOND_MAC_ADDR_KVARG                 ("mac")
51
52 #define PMD_BOND_XMIT_POLICY_LAYER2_KVARG       ("l2")
53 #define PMD_BOND_XMIT_POLICY_LAYER23_KVARG      ("l23")
54 #define PMD_BOND_XMIT_POLICY_LAYER34_KVARG      ("l34")
55
56 extern const char *pmd_bond_init_valid_arguments[];
57
58 extern const char *driver_name;
59
60 /** Port Queue Mapping Structure */
61 struct bond_rx_queue {
62         int queue_id;
63         /**< Queue Id */
64         struct bond_dev_private *dev_private;
65         /**< Reference to eth_dev private structure */
66         uint16_t nb_rx_desc;
67         /**< Number of RX descriptors available for the queue */
68         struct rte_eth_rxconf rx_conf;
69         /**< Copy of RX configuration structure for queue */
70         struct rte_mempool *mb_pool;
71         /**< Reference to mbuf pool to use for RX queue */
72 };
73
74 struct bond_tx_queue {
75         int queue_id;
76         /**< Queue Id */
77         struct bond_dev_private *dev_private;
78         /**< Reference to dev private structure */
79         uint16_t nb_tx_desc;
80         /**< Number of TX descriptors available for the queue */
81         struct rte_eth_txconf tx_conf;
82         /**< Copy of TX configuration structure for queue */
83 };
84
85 /** Persisted Slave Configuration Structure */
86 struct slave_conf {
87         uint8_t port_id;
88         /**< Port Id of slave eth_dev */
89         struct ether_addr mac_addr;
90         /**< Slave eth_dev original MAC address */
91 };
92 /** Bonded slave devices structure */
93 struct bond_ethdev_slave_ports {
94         uint8_t slaves[RTE_MAX_ETHPORTS];       /**< Slave port id array */
95         uint8_t slave_count;                            /**< Number of slaves */
96 };
97
98 /** Link Bonding PMD device private configuration Structure */
99 struct bond_dev_private {
100         uint8_t mode;                                           /**< Link Bonding Mode */
101
102         uint8_t primary_port;                           /**< Primary Slave Port */
103         uint8_t current_primary_port;           /**< Primary Slave Port */
104         uint8_t user_defined_primary_port;
105         /**< Flag for whether primary port is user defined or not */
106         uint8_t balance_xmit_policy;
107         /**< Transmit policy - l2 / l23 / l34 for operation in balance mode */
108         uint8_t user_defined_mac;
109         /**< Flag for whether MAC address is user defined or not */
110         uint8_t promiscuous_en;
111         /**< Enabled/disable promiscuous mode on slave devices */
112         uint8_t link_props_set;
113         /**< Bonded eth_dev link properties set */
114
115         uint16_t nb_rx_queues;                  /**< Total number of rx queues */
116         uint16_t nb_tx_queues;                  /**< Total number of tx queues*/
117
118         uint8_t slave_count;                    /**< Number of active slaves */
119         uint8_t active_slave_count;             /**< Number of slaves */
120
121         uint8_t active_slaves[RTE_MAX_ETHPORTS];        /**< Active slave list */
122         uint8_t slaves[RTE_MAX_ETHPORTS];                       /**< Slave list */
123
124         /** Persisted configuration of slaves */
125         struct slave_conf presisted_slaves_conf[RTE_MAX_ETHPORTS];
126
127         struct rte_kvargs *kvlist;
128 };
129
130 extern struct eth_dev_ops default_dev_ops;
131
132 int
133 valid_bonded_ethdev(struct rte_eth_dev *eth_dev);
134
135 int
136 valid_port_id(uint8_t port_id);
137
138 int
139 valid_bonded_port_id(uint8_t port_id);
140
141 int
142 valid_slave_port_id(uint8_t port_id);
143
144 void
145 link_properties_set(struct rte_eth_dev *bonded_eth_dev,
146                 struct rte_eth_link *slave_dev_link);
147 void
148 link_properties_reset(struct rte_eth_dev *bonded_eth_dev);
149
150 int
151 link_properties_valid(struct rte_eth_link *bonded_dev_link,
152                 struct rte_eth_link *slave_dev_link);
153
154 int
155 mac_address_set(struct rte_eth_dev *eth_dev, struct ether_addr *new_mac_addr);
156
157 int
158 mac_address_slaves_update(struct rte_eth_dev *bonded_eth_dev);
159
160 uint8_t
161 number_of_sockets(void);
162
163 int
164 bond_ethdev_mode_set(struct rte_eth_dev *eth_dev, int mode);
165
166 int
167 slave_configure(struct rte_eth_dev *bonded_eth_dev,
168                 struct rte_eth_dev *slave_eth_dev);
169
170 void
171 slave_config_clear(struct bond_dev_private *internals,
172                 struct rte_eth_dev *slave_eth_dev);
173
174 void
175 slave_config_store(struct bond_dev_private *internals,
176                 struct rte_eth_dev *slave_eth_dev);
177
178 struct slave_conf *
179 slave_config_get(struct bond_dev_private *internals, uint8_t slave_port_id);
180
181 void
182 bond_ethdev_primary_set(struct bond_dev_private *internals,
183                 uint8_t slave_port_id);
184
185 void
186 bond_ethdev_lsc_event_callback(uint8_t port_id, enum rte_eth_event_type type,
187                 void *param);
188
189 int
190 bond_ethdev_parse_slave_port_kvarg(const char *key __rte_unused,
191                 const char *value, void *extra_args);
192
193 int
194 bond_ethdev_parse_slave_mode_kvarg(const char *key __rte_unused,
195                 const char *value, void *extra_args);
196
197 int
198 bond_ethdev_parse_socket_id_kvarg(const char *key __rte_unused,
199                 const char *value, void *extra_args);
200
201 int
202 bond_ethdev_parse_primary_slave_port_id_kvarg(const char *key __rte_unused,
203                 const char *value, void *extra_args);
204
205 int
206 bond_ethdev_parse_balance_xmit_policy_kvarg(const char *key __rte_unused,
207                 const char *value, void *extra_args);
208
209 int
210 bond_ethdev_parse_bond_mac_addr_kvarg(const char *key __rte_unused,
211                 const char *value, void *extra_args);
212
213 #ifdef __cplusplus
214 }
215 #endif
216
217 #endif