bf13e0378a2f910cb61eefc9c2b6a7bd839030a7
[dpdk.git] / drivers / net / txgbe / txgbe_ethdev.h
1 /* SPDX-License-Identifier: BSD-3-Clause
2  * Copyright(c) 2015-2020
3  */
4
5 #ifndef _TXGBE_ETHDEV_H_
6 #define _TXGBE_ETHDEV_H_
7
8 #include "base/txgbe.h"
9 #include "txgbe_ptypes.h"
10
11 /* need update link, bit flag */
12 #define TXGBE_FLAG_NEED_LINK_UPDATE (uint32_t)(1 << 0)
13 #define TXGBE_FLAG_MAILBOX          (uint32_t)(1 << 1)
14 #define TXGBE_FLAG_PHY_INTERRUPT    (uint32_t)(1 << 2)
15 #define TXGBE_FLAG_MACSEC           (uint32_t)(1 << 3)
16 #define TXGBE_FLAG_NEED_LINK_CONFIG (uint32_t)(1 << 4)
17
18 /*
19  * Defines that were not part of txgbe_type.h as they are not used by the
20  * FreeBSD driver.
21  */
22 #define TXGBE_VFTA_SIZE 128
23 #define TXGBE_VLAN_TAG_SIZE 4
24 #define TXGBE_HKEY_MAX_INDEX 10
25 /*Default value of Max Rx Queue*/
26 #define TXGBE_MAX_RX_QUEUE_NUM  128
27 #define TXGBE_VMDQ_DCB_NB_QUEUES     TXGBE_MAX_RX_QUEUE_NUM
28
29 #ifndef NBBY
30 #define NBBY    8       /* number of bits in a byte */
31 #endif
32 #define TXGBE_HWSTRIP_BITMAP_SIZE \
33         (TXGBE_MAX_RX_QUEUE_NUM / (sizeof(uint32_t) * NBBY))
34
35 #define TXGBE_QUEUE_ITR_INTERVAL_DEFAULT        500 /* 500us */
36
37 #define TXGBE_MAX_QUEUE_NUM_PER_VF  8
38
39 #define TXGBE_RSS_OFFLOAD_ALL ( \
40         ETH_RSS_IPV4 | \
41         ETH_RSS_NONFRAG_IPV4_TCP | \
42         ETH_RSS_NONFRAG_IPV4_UDP | \
43         ETH_RSS_IPV6 | \
44         ETH_RSS_NONFRAG_IPV6_TCP | \
45         ETH_RSS_NONFRAG_IPV6_UDP | \
46         ETH_RSS_IPV6_EX | \
47         ETH_RSS_IPV6_TCP_EX | \
48         ETH_RSS_IPV6_UDP_EX)
49
50 #define TXGBE_MISC_VEC_ID               RTE_INTR_VEC_ZERO_OFFSET
51 #define TXGBE_RX_VEC_START              RTE_INTR_VEC_RXTX_OFFSET
52
53 /* structure for interrupt relative data */
54 struct txgbe_interrupt {
55         uint32_t flags;
56         uint32_t mask_misc;
57         /* to save original mask during delayed handler */
58         uint32_t mask_misc_orig;
59         uint32_t mask[2];
60 };
61
62 #define TXGBE_NB_STAT_MAPPING  32
63 #define QSM_REG_NB_BITS_PER_QMAP_FIELD 8
64 #define NB_QMAP_FIELDS_PER_QSM_REG 4
65 #define QMAP_FIELD_RESERVED_BITS_MASK 0x0f
66 struct txgbe_stat_mappings {
67         uint32_t tqsm[TXGBE_NB_STAT_MAPPING];
68         uint32_t rqsm[TXGBE_NB_STAT_MAPPING];
69 };
70
71 struct txgbe_vfta {
72         uint32_t vfta[TXGBE_VFTA_SIZE];
73 };
74
75 struct txgbe_hwstrip {
76         uint32_t bitmap[TXGBE_HWSTRIP_BITMAP_SIZE];
77 };
78
79 /*
80  * VF data which used by PF host only
81  */
82 #define TXGBE_MAX_VF_MC_ENTRIES      30
83
84 struct txgbe_uta_info {
85         uint8_t  uc_filter_type;
86         uint16_t uta_in_use;
87         uint32_t uta_shadow[TXGBE_MAX_UTA];
88 };
89
90 #define TXGBE_MAX_MIRROR_RULES 4  /* Maximum nb. of mirror rules. */
91
92 struct txgbe_mirror_info {
93         struct rte_eth_mirror_conf mr_conf[TXGBE_MAX_MIRROR_RULES];
94         /* store PF mirror rules configuration */
95 };
96
97 struct txgbe_vf_info {
98         uint8_t vf_mac_addresses[RTE_ETHER_ADDR_LEN];
99         uint16_t vf_mc_hashes[TXGBE_MAX_VF_MC_ENTRIES];
100         uint16_t num_vf_mc_hashes;
101         bool clear_to_send;
102         uint16_t tx_rate[TXGBE_MAX_QUEUE_NUM_PER_VF];
103         uint16_t vlan_count;
104         uint8_t api_version;
105         uint16_t switch_domain_id;
106         uint16_t xcast_mode;
107         uint16_t mac_count;
108 };
109
110 struct txgbe_ethertype_filter {
111         uint16_t ethertype;
112         uint32_t etqf;
113         uint32_t etqs;
114         /**
115          * If this filter is added by configuration,
116          * it should not be removed.
117          */
118         bool     conf;
119 };
120
121 /*
122  * Structure to store filters' info.
123  */
124 struct txgbe_filter_info {
125         uint8_t ethertype_mask;  /* Bit mask for every used ethertype filter */
126         /* store used ethertype filters*/
127         struct txgbe_ethertype_filter ethertype_filters[TXGBE_ETF_ID_MAX];
128 };
129
130 /*
131  * Structure to store private data for each driver instance (for each port).
132  */
133 struct txgbe_adapter {
134         struct txgbe_hw             hw;
135         struct txgbe_hw_stats       stats;
136         struct txgbe_interrupt      intr;
137         struct txgbe_stat_mappings  stat_mappings;
138         struct txgbe_vfta           shadow_vfta;
139         struct txgbe_hwstrip        hwstrip;
140         struct txgbe_mirror_info    mr_data;
141         struct txgbe_vf_info        *vfdata;
142         struct txgbe_uta_info       uta_info;
143         struct txgbe_filter_info    filter;
144         bool rx_bulk_alloc_allowed;
145 };
146
147 #define TXGBE_DEV_ADAPTER(dev) \
148         ((struct txgbe_adapter *)(dev)->data->dev_private)
149
150 #define TXGBE_DEV_HW(dev) \
151         (&((struct txgbe_adapter *)(dev)->data->dev_private)->hw)
152
153 #define TXGBE_DEV_STATS(dev) \
154         (&((struct txgbe_adapter *)(dev)->data->dev_private)->stats)
155
156 #define TXGBE_DEV_INTR(dev) \
157         (&((struct txgbe_adapter *)(dev)->data->dev_private)->intr)
158
159 #define TXGBE_DEV_STAT_MAPPINGS(dev) \
160         (&((struct txgbe_adapter *)(dev)->data->dev_private)->stat_mappings)
161
162 #define TXGBE_DEV_VFTA(dev) \
163         (&((struct txgbe_adapter *)(dev)->data->dev_private)->shadow_vfta)
164
165 #define TXGBE_DEV_HWSTRIP(dev) \
166         (&((struct txgbe_adapter *)(dev)->data->dev_private)->hwstrip)
167
168 #define TXGBE_DEV_VFDATA(dev) \
169         (&((struct txgbe_adapter *)(dev)->data->dev_private)->vfdata)
170
171 #define TXGBE_DEV_MR_INFO(dev) \
172         (&((struct txgbe_adapter *)(dev)->data->dev_private)->mr_data)
173
174 #define TXGBE_DEV_UTA_INFO(dev) \
175         (&((struct txgbe_adapter *)(dev)->data->dev_private)->uta_info)
176
177 #define TXGBE_DEV_FILTER(dev) \
178         (&((struct txgbe_adapter *)(dev)->data->dev_private)->filter)
179
180 /*
181  * RX/TX function prototypes
182  */
183 void txgbe_dev_clear_queues(struct rte_eth_dev *dev);
184
185 void txgbe_dev_free_queues(struct rte_eth_dev *dev);
186
187 void txgbe_dev_rx_queue_release(void *rxq);
188
189 void txgbe_dev_tx_queue_release(void *txq);
190
191 int  txgbe_dev_rx_queue_setup(struct rte_eth_dev *dev, uint16_t rx_queue_id,
192                 uint16_t nb_rx_desc, unsigned int socket_id,
193                 const struct rte_eth_rxconf *rx_conf,
194                 struct rte_mempool *mb_pool);
195
196 int  txgbe_dev_tx_queue_setup(struct rte_eth_dev *dev, uint16_t tx_queue_id,
197                 uint16_t nb_tx_desc, unsigned int socket_id,
198                 const struct rte_eth_txconf *tx_conf);
199
200 int txgbe_dev_rx_init(struct rte_eth_dev *dev);
201
202 void txgbe_dev_tx_init(struct rte_eth_dev *dev);
203
204 int txgbe_dev_rxtx_start(struct rte_eth_dev *dev);
205
206 void txgbe_dev_save_rx_queue(struct txgbe_hw *hw, uint16_t rx_queue_id);
207 void txgbe_dev_store_rx_queue(struct txgbe_hw *hw, uint16_t rx_queue_id);
208 void txgbe_dev_save_tx_queue(struct txgbe_hw *hw, uint16_t tx_queue_id);
209 void txgbe_dev_store_tx_queue(struct txgbe_hw *hw, uint16_t tx_queue_id);
210
211 int txgbe_dev_rx_queue_start(struct rte_eth_dev *dev, uint16_t rx_queue_id);
212
213 int txgbe_dev_rx_queue_stop(struct rte_eth_dev *dev, uint16_t rx_queue_id);
214
215 int txgbe_dev_tx_queue_start(struct rte_eth_dev *dev, uint16_t tx_queue_id);
216
217 int txgbe_dev_tx_queue_stop(struct rte_eth_dev *dev, uint16_t tx_queue_id);
218
219 void txgbe_rxq_info_get(struct rte_eth_dev *dev, uint16_t queue_id,
220         struct rte_eth_rxq_info *qinfo);
221
222 void txgbe_txq_info_get(struct rte_eth_dev *dev, uint16_t queue_id,
223         struct rte_eth_txq_info *qinfo);
224
225 uint16_t txgbe_recv_pkts(void *rx_queue, struct rte_mbuf **rx_pkts,
226                 uint16_t nb_pkts);
227
228 uint16_t txgbe_recv_pkts_bulk_alloc(void *rx_queue, struct rte_mbuf **rx_pkts,
229                                     uint16_t nb_pkts);
230
231 uint16_t txgbe_recv_pkts_lro_single_alloc(void *rx_queue,
232                 struct rte_mbuf **rx_pkts, uint16_t nb_pkts);
233 uint16_t txgbe_recv_pkts_lro_bulk_alloc(void *rx_queue,
234                 struct rte_mbuf **rx_pkts, uint16_t nb_pkts);
235
236 uint16_t txgbe_xmit_pkts(void *tx_queue, struct rte_mbuf **tx_pkts,
237                 uint16_t nb_pkts);
238
239 uint16_t txgbe_xmit_pkts_simple(void *tx_queue, struct rte_mbuf **tx_pkts,
240                 uint16_t nb_pkts);
241
242 uint16_t txgbe_prep_pkts(void *tx_queue, struct rte_mbuf **tx_pkts,
243                 uint16_t nb_pkts);
244
245 void txgbe_set_ivar_map(struct txgbe_hw *hw, int8_t direction,
246                                uint8_t queue, uint8_t msix_vector);
247
248 int
249 txgbe_dev_link_update_share(struct rte_eth_dev *dev,
250                 int wait_to_complete);
251 void txgbe_pf_host_init(struct rte_eth_dev *eth_dev);
252
253 void txgbe_pf_host_uninit(struct rte_eth_dev *eth_dev);
254
255 void txgbe_pf_mbx_process(struct rte_eth_dev *eth_dev);
256
257 int txgbe_pf_host_configure(struct rte_eth_dev *eth_dev);
258
259 uint32_t txgbe_convert_vm_rx_mask_to_val(uint16_t rx_mask, uint32_t orig_val);
260
261 int txgbe_set_vf_rate_limit(struct rte_eth_dev *dev, uint16_t vf,
262                             uint16_t tx_rate, uint64_t q_msk);
263 int txgbe_set_queue_rate_limit(struct rte_eth_dev *dev, uint16_t queue_idx,
264                                uint16_t tx_rate);
265 static inline int
266 txgbe_ethertype_filter_lookup(struct txgbe_filter_info *filter_info,
267                               uint16_t ethertype)
268 {
269         int i;
270
271         for (i = 0; i < TXGBE_ETF_ID_MAX; i++) {
272                 if (filter_info->ethertype_filters[i].ethertype == ethertype &&
273                     (filter_info->ethertype_mask & (1 << i)))
274                         return i;
275         }
276         return -1;
277 }
278
279 static inline int
280 txgbe_ethertype_filter_insert(struct txgbe_filter_info *filter_info,
281                               struct txgbe_ethertype_filter *ethertype_filter)
282 {
283         int i;
284
285         for (i = 0; i < TXGBE_ETF_ID_MAX; i++) {
286                 if (filter_info->ethertype_mask & (1 << i))
287                         continue;
288
289                 filter_info->ethertype_mask |= 1 << i;
290                 filter_info->ethertype_filters[i].ethertype =
291                                 ethertype_filter->ethertype;
292                 filter_info->ethertype_filters[i].etqf =
293                                 ethertype_filter->etqf;
294                 filter_info->ethertype_filters[i].etqs =
295                                 ethertype_filter->etqs;
296                 filter_info->ethertype_filters[i].conf =
297                                 ethertype_filter->conf;
298                 break;
299         }
300         return (i < TXGBE_ETF_ID_MAX ? i : -1);
301 }
302
303
304 #define TXGBE_LINK_DOWN_CHECK_TIMEOUT 4000 /* ms */
305 #define TXGBE_LINK_UP_CHECK_TIMEOUT   1000 /* ms */
306 #define TXGBE_VMDQ_NUM_UC_MAC         4096 /* Maximum nb. of UC MAC addr. */
307
308 /*
309  *  Default values for RX/TX configuration
310  */
311 #define TXGBE_DEFAULT_RX_FREE_THRESH  32
312 #define TXGBE_DEFAULT_RX_PTHRESH      8
313 #define TXGBE_DEFAULT_RX_HTHRESH      8
314 #define TXGBE_DEFAULT_RX_WTHRESH      0
315
316 #define TXGBE_DEFAULT_TX_FREE_THRESH  32
317 #define TXGBE_DEFAULT_TX_PTHRESH      32
318 #define TXGBE_DEFAULT_TX_HTHRESH      0
319 #define TXGBE_DEFAULT_TX_WTHRESH      0
320
321 /* store statistics names and its offset in stats structure */
322 struct rte_txgbe_xstats_name_off {
323         char name[RTE_ETH_XSTATS_NAME_SIZE];
324         unsigned int offset;
325 };
326
327 const uint32_t *txgbe_dev_supported_ptypes_get(struct rte_eth_dev *dev);
328 int txgbe_dev_set_mc_addr_list(struct rte_eth_dev *dev,
329                                       struct rte_ether_addr *mc_addr_set,
330                                       uint32_t nb_mc_addr);
331 void txgbe_dev_setup_link_alarm_handler(void *param);
332 void txgbe_read_stats_registers(struct txgbe_hw *hw,
333                            struct txgbe_hw_stats *hw_stats);
334
335 void txgbe_vlan_hw_filter_enable(struct rte_eth_dev *dev);
336 void txgbe_vlan_hw_filter_disable(struct rte_eth_dev *dev);
337 void txgbe_vlan_hw_strip_config(struct rte_eth_dev *dev);
338 void txgbe_vlan_hw_strip_bitmap_set(struct rte_eth_dev *dev,
339                 uint16_t queue, bool on);
340 void txgbe_config_vlan_strip_on_all_queues(struct rte_eth_dev *dev,
341                                                   int mask);
342
343 #endif /* _TXGBE_ETHDEV_H_ */