1 /* SPDX-License-Identifier: BSD-3-Clause
2 * Copyright(c) 2015-2020
5 #ifndef _TXGBE_ETHDEV_H_
6 #define _TXGBE_ETHDEV_H_
8 #include "base/txgbe.h"
9 #include "txgbe_ptypes.h"
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)
19 * Defines that were not part of txgbe_type.h as they are not used by the
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
30 #define NBBY 8 /* number of bits in a byte */
32 #define TXGBE_HWSTRIP_BITMAP_SIZE \
33 (TXGBE_MAX_RX_QUEUE_NUM / (sizeof(uint32_t) * NBBY))
35 #define TXGBE_QUEUE_ITR_INTERVAL_DEFAULT 500 /* 500us */
37 #define TXGBE_MAX_QUEUE_NUM_PER_VF 8
39 #define TXGBE_RSS_OFFLOAD_ALL ( \
41 ETH_RSS_NONFRAG_IPV4_TCP | \
42 ETH_RSS_NONFRAG_IPV4_UDP | \
44 ETH_RSS_NONFRAG_IPV6_TCP | \
45 ETH_RSS_NONFRAG_IPV6_UDP | \
47 ETH_RSS_IPV6_TCP_EX | \
50 #define TXGBE_MISC_VEC_ID RTE_INTR_VEC_ZERO_OFFSET
51 #define TXGBE_RX_VEC_START RTE_INTR_VEC_RXTX_OFFSET
53 /* structure for interrupt relative data */
54 struct txgbe_interrupt {
57 /* to save original mask during delayed handler */
58 uint32_t mask_misc_orig;
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];
72 uint32_t vfta[TXGBE_VFTA_SIZE];
75 struct txgbe_hwstrip {
76 uint32_t bitmap[TXGBE_HWSTRIP_BITMAP_SIZE];
80 * VF data which used by PF host only
82 #define TXGBE_MAX_VF_MC_ENTRIES 30
84 struct txgbe_uta_info {
85 uint8_t uc_filter_type;
87 uint32_t uta_shadow[TXGBE_MAX_UTA];
90 #define TXGBE_MAX_MIRROR_RULES 4 /* Maximum nb. of mirror rules. */
92 struct txgbe_mirror_info {
93 struct rte_eth_mirror_conf mr_conf[TXGBE_MAX_MIRROR_RULES];
94 /* store PF mirror rules configuration */
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;
102 uint16_t tx_rate[TXGBE_MAX_QUEUE_NUM_PER_VF];
105 uint16_t switch_domain_id;
110 struct txgbe_ethertype_filter {
115 * If this filter is added by configuration,
116 * it should not be removed.
122 * Structure to store filters' info.
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];
131 * Structure to store private data for each driver instance (for each port).
133 struct txgbe_adapter {
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;
147 #define TXGBE_DEV_ADAPTER(dev) \
148 ((struct txgbe_adapter *)(dev)->data->dev_private)
150 #define TXGBE_DEV_HW(dev) \
151 (&((struct txgbe_adapter *)(dev)->data->dev_private)->hw)
153 #define TXGBE_DEV_STATS(dev) \
154 (&((struct txgbe_adapter *)(dev)->data->dev_private)->stats)
156 #define TXGBE_DEV_INTR(dev) \
157 (&((struct txgbe_adapter *)(dev)->data->dev_private)->intr)
159 #define TXGBE_DEV_STAT_MAPPINGS(dev) \
160 (&((struct txgbe_adapter *)(dev)->data->dev_private)->stat_mappings)
162 #define TXGBE_DEV_VFTA(dev) \
163 (&((struct txgbe_adapter *)(dev)->data->dev_private)->shadow_vfta)
165 #define TXGBE_DEV_HWSTRIP(dev) \
166 (&((struct txgbe_adapter *)(dev)->data->dev_private)->hwstrip)
168 #define TXGBE_DEV_VFDATA(dev) \
169 (&((struct txgbe_adapter *)(dev)->data->dev_private)->vfdata)
171 #define TXGBE_DEV_MR_INFO(dev) \
172 (&((struct txgbe_adapter *)(dev)->data->dev_private)->mr_data)
174 #define TXGBE_DEV_UTA_INFO(dev) \
175 (&((struct txgbe_adapter *)(dev)->data->dev_private)->uta_info)
177 #define TXGBE_DEV_FILTER(dev) \
178 (&((struct txgbe_adapter *)(dev)->data->dev_private)->filter)
181 * RX/TX function prototypes
183 void txgbe_dev_clear_queues(struct rte_eth_dev *dev);
185 void txgbe_dev_free_queues(struct rte_eth_dev *dev);
187 void txgbe_dev_rx_queue_release(void *rxq);
189 void txgbe_dev_tx_queue_release(void *txq);
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);
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);
200 int txgbe_dev_rx_init(struct rte_eth_dev *dev);
202 void txgbe_dev_tx_init(struct rte_eth_dev *dev);
204 int txgbe_dev_rxtx_start(struct rte_eth_dev *dev);
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);
211 int txgbe_dev_rx_queue_start(struct rte_eth_dev *dev, uint16_t rx_queue_id);
213 int txgbe_dev_rx_queue_stop(struct rte_eth_dev *dev, uint16_t rx_queue_id);
215 int txgbe_dev_tx_queue_start(struct rte_eth_dev *dev, uint16_t tx_queue_id);
217 int txgbe_dev_tx_queue_stop(struct rte_eth_dev *dev, uint16_t tx_queue_id);
219 void txgbe_rxq_info_get(struct rte_eth_dev *dev, uint16_t queue_id,
220 struct rte_eth_rxq_info *qinfo);
222 void txgbe_txq_info_get(struct rte_eth_dev *dev, uint16_t queue_id,
223 struct rte_eth_txq_info *qinfo);
225 uint16_t txgbe_recv_pkts(void *rx_queue, struct rte_mbuf **rx_pkts,
228 uint16_t txgbe_recv_pkts_bulk_alloc(void *rx_queue, struct rte_mbuf **rx_pkts,
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);
236 uint16_t txgbe_xmit_pkts(void *tx_queue, struct rte_mbuf **tx_pkts,
239 uint16_t txgbe_xmit_pkts_simple(void *tx_queue, struct rte_mbuf **tx_pkts,
242 uint16_t txgbe_prep_pkts(void *tx_queue, struct rte_mbuf **tx_pkts,
245 void txgbe_set_ivar_map(struct txgbe_hw *hw, int8_t direction,
246 uint8_t queue, uint8_t msix_vector);
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);
253 void txgbe_pf_host_uninit(struct rte_eth_dev *eth_dev);
255 void txgbe_pf_mbx_process(struct rte_eth_dev *eth_dev);
257 int txgbe_pf_host_configure(struct rte_eth_dev *eth_dev);
259 uint32_t txgbe_convert_vm_rx_mask_to_val(uint16_t rx_mask, uint32_t orig_val);
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,
266 txgbe_ethertype_filter_lookup(struct txgbe_filter_info *filter_info,
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)))
280 txgbe_ethertype_filter_insert(struct txgbe_filter_info *filter_info,
281 struct txgbe_ethertype_filter *ethertype_filter)
285 for (i = 0; i < TXGBE_ETF_ID_MAX; i++) {
286 if (filter_info->ethertype_mask & (1 << i))
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;
300 return (i < TXGBE_ETF_ID_MAX ? i : -1);
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. */
309 * Default values for RX/TX configuration
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
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
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];
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);
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,
343 #endif /* _TXGBE_ETHDEV_H_ */