f913c5b953e10595198abeab404f4105e887fc40
[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 #include <rte_spinlock.h>
43
44 #include "rte_eth_bond.h"
45 #include "rte_eth_bond_8023ad_private.h"
46
47 #define PMD_BOND_SLAVE_PORT_KVARG                       ("slave")
48 #define PMD_BOND_PRIMARY_SLAVE_KVARG            ("primary")
49 #define PMD_BOND_MODE_KVARG                                     ("mode")
50 #define PMD_BOND_XMIT_POLICY_KVARG                      ("xmit_policy")
51 #define PMD_BOND_SOCKET_ID_KVARG                        ("socket_id")
52 #define PMD_BOND_MAC_ADDR_KVARG                         ("mac")
53 #define PMD_BOND_LSC_POLL_PERIOD_KVARG          ("lsc_poll_period_ms")
54 #define PMD_BOND_LINK_UP_PROP_DELAY_KVARG       ("up_delay")
55 #define PMD_BOND_LINK_DOWN_PROP_DELAY_KVARG     ("down_delay")
56
57 #define PMD_BOND_XMIT_POLICY_LAYER2_KVARG       ("l2")
58 #define PMD_BOND_XMIT_POLICY_LAYER23_KVARG      ("l23")
59 #define PMD_BOND_XMIT_POLICY_LAYER34_KVARG      ("l34")
60
61 #define RTE_BOND_LOG(lvl, msg, ...)             \
62         RTE_LOG(lvl, PMD, "%s(%d) - " msg "\n", __func__, __LINE__, ##__VA_ARGS__)
63
64 #define BONDING_MODE_INVALID 0xFF
65
66 extern const char *pmd_bond_init_valid_arguments[];
67
68 extern const char *driver_name;
69
70 /** Port Queue Mapping Structure */
71 struct bond_rx_queue {
72         int queue_id;
73         /**< Queue Id */
74         struct bond_dev_private *dev_private;
75         /**< Reference to eth_dev private structure */
76         uint16_t nb_rx_desc;
77         /**< Number of RX descriptors available for the queue */
78         struct rte_eth_rxconf rx_conf;
79         /**< Copy of RX configuration structure for queue */
80         struct rte_mempool *mb_pool;
81         /**< Reference to mbuf pool to use for RX queue */
82 };
83
84 struct bond_tx_queue {
85         int queue_id;
86         /**< Queue Id */
87         struct bond_dev_private *dev_private;
88         /**< Reference to dev private structure */
89         uint16_t nb_tx_desc;
90         /**< Number of TX descriptors available for the queue */
91         struct rte_eth_txconf tx_conf;
92         /**< Copy of TX configuration structure for queue */
93 };
94
95 /** Bonded slave devices structure */
96 struct bond_ethdev_slave_ports {
97         uint8_t slaves[RTE_MAX_ETHPORTS];       /**< Slave port id array */
98         uint8_t slave_count;                            /**< Number of slaves */
99 };
100
101 struct bond_slave_details {
102         uint8_t port_id;
103
104         uint8_t link_status_poll_enabled;
105         uint8_t link_status_wait_to_complete;
106         uint8_t last_link_status;
107         /**< Port Id of slave eth_dev */
108         struct ether_addr persisted_mac_addr;
109 };
110
111 /** Link Bonding PMD device private configuration Structure */
112 struct bond_dev_private {
113         uint8_t port_id;                                        /**< Port Id of Bonded Port */
114         uint8_t mode;                                           /**< Link Bonding Mode */
115
116         rte_spinlock_t lock;
117
118         uint8_t primary_port;                           /**< Primary Slave Port */
119         uint8_t current_primary_port;           /**< Primary Slave Port */
120         uint8_t user_defined_primary_port;
121         /**< Flag for whether primary port is user defined or not */
122
123         uint8_t balance_xmit_policy;
124         /**< Transmit policy - l2 / l23 / l34 for operation in balance mode */
125         uint8_t user_defined_mac;
126         /**< Flag for whether MAC address is user defined or not */
127         uint8_t promiscuous_en;
128         /**< Enabled/disable promiscuous mode on bonding device */
129         uint8_t link_props_set;
130         /**< flag to denote if the link properties are set */
131
132         uint8_t link_status_polling_enabled;
133         uint32_t link_status_polling_interval_ms;
134
135         uint32_t link_down_delay_ms;
136         uint32_t link_up_delay_ms;
137
138         uint16_t nb_rx_queues;                  /**< Total number of rx queues */
139         uint16_t nb_tx_queues;                  /**< Total number of tx queues*/
140
141         uint8_t active_slave_count;             /**< Number of active slaves */
142         uint8_t active_slaves[RTE_MAX_ETHPORTS];        /**< Active slave list */
143
144         uint8_t slave_count;                    /**< Number of bonded slaves */
145         struct bond_slave_details slaves[RTE_MAX_ETHPORTS];
146         /**< Arary of bonded slaves details */
147
148         struct mode8023ad_private mode4;
149
150         uint32_t rx_offload_capa;            /** Rx offload capability */
151         uint32_t tx_offload_capa;            /** Tx offload capability */
152
153         struct rte_kvargs *kvlist;
154         uint8_t slave_update_idx;
155 };
156
157 extern struct eth_dev_ops default_dev_ops;
158
159 int
160 valid_bonded_ethdev(struct rte_eth_dev *eth_dev);
161
162 /* Search given slave array to find possition of given id.
163  * Return slave pos or slaves_count if not found. */
164 static inline uint8_t
165 find_slave_by_id(uint8_t *slaves, uint8_t slaves_count, uint8_t slave_id) {
166
167         uint8_t pos;
168         for (pos = 0; pos < slaves_count; pos++) {
169                 if (slave_id == slaves[pos])
170                         break;
171         }
172
173         return pos;
174 }
175
176 int
177 valid_port_id(uint8_t port_id);
178
179 int
180 valid_bonded_port_id(uint8_t port_id);
181
182 int
183 valid_slave_port_id(uint8_t port_id);
184
185 void
186 deactivate_slave(struct rte_eth_dev *eth_dev, uint8_t port_id);
187
188 void
189 activate_slave(struct rte_eth_dev *eth_dev, uint8_t port_id);
190
191 void
192 link_properties_set(struct rte_eth_dev *bonded_eth_dev,
193                 struct rte_eth_link *slave_dev_link);
194 void
195 link_properties_reset(struct rte_eth_dev *bonded_eth_dev);
196
197 int
198 link_properties_valid(struct rte_eth_link *bonded_dev_link,
199                 struct rte_eth_link *slave_dev_link);
200
201 int
202 mac_address_set(struct rte_eth_dev *eth_dev, struct ether_addr *new_mac_addr);
203
204 int
205 mac_address_get(struct rte_eth_dev *eth_dev, struct ether_addr *dst_mac_addr);
206
207 int
208 mac_address_slaves_update(struct rte_eth_dev *bonded_eth_dev);
209
210 uint8_t
211 number_of_sockets(void);
212
213 int
214 bond_ethdev_mode_set(struct rte_eth_dev *eth_dev, int mode);
215
216 int
217 slave_configure(struct rte_eth_dev *bonded_eth_dev,
218                 struct rte_eth_dev *slave_eth_dev);
219
220 void
221 slave_remove(struct bond_dev_private *internals,
222                 struct rte_eth_dev *slave_eth_dev);
223
224 void
225 slave_add(struct bond_dev_private *internals,
226                 struct rte_eth_dev *slave_eth_dev);
227
228 void
229 bond_ethdev_primary_set(struct bond_dev_private *internals,
230                 uint8_t slave_port_id);
231
232 void
233 bond_ethdev_lsc_event_callback(uint8_t port_id, enum rte_eth_event_type type,
234                 void *param);
235
236 int
237 bond_ethdev_parse_slave_port_kvarg(const char *key __rte_unused,
238                 const char *value, void *extra_args);
239
240 int
241 bond_ethdev_parse_slave_mode_kvarg(const char *key __rte_unused,
242                 const char *value, void *extra_args);
243
244 int
245 bond_ethdev_parse_socket_id_kvarg(const char *key __rte_unused,
246                 const char *value, void *extra_args);
247
248 int
249 bond_ethdev_parse_primary_slave_port_id_kvarg(const char *key __rte_unused,
250                 const char *value, void *extra_args);
251
252 int
253 bond_ethdev_parse_balance_xmit_policy_kvarg(const char *key __rte_unused,
254                 const char *value, void *extra_args);
255
256 int
257 bond_ethdev_parse_bond_mac_addr_kvarg(const char *key __rte_unused,
258                 const char *value, void *extra_args);
259
260 int
261 bond_ethdev_parse_time_ms_kvarg(const char *key __rte_unused,
262                 const char *value, void *extra_args);
263
264 #ifdef __cplusplus
265 }
266 #endif
267
268 #endif