]>
Commit | Line | Data |
---|---|---|
f62b8bb8 | 1 | /* |
1afff42c | 2 | * Copyright (c) 2015-2016, Mellanox Technologies. All rights reserved. |
f62b8bb8 AV |
3 | * |
4 | * This software is available to you under a choice of one of two | |
5 | * licenses. You may choose to be licensed under the terms of the GNU | |
6 | * General Public License (GPL) Version 2, available from the file | |
7 | * COPYING in the main directory of this source tree, or the | |
8 | * OpenIB.org BSD license below: | |
9 | * | |
10 | * Redistribution and use in source and binary forms, with or | |
11 | * without modification, are permitted provided that the following | |
12 | * conditions are met: | |
13 | * | |
14 | * - Redistributions of source code must retain the above | |
15 | * copyright notice, this list of conditions and the following | |
16 | * disclaimer. | |
17 | * | |
18 | * - Redistributions in binary form must reproduce the above | |
19 | * copyright notice, this list of conditions and the following | |
20 | * disclaimer in the documentation and/or other materials | |
21 | * provided with the distribution. | |
22 | * | |
23 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, | |
24 | * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF | |
25 | * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND | |
26 | * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS | |
27 | * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN | |
28 | * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN | |
29 | * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | |
30 | * SOFTWARE. | |
31 | */ | |
1afff42c MF |
32 | #ifndef __MLX5_EN_H__ |
33 | #define __MLX5_EN_H__ | |
f62b8bb8 AV |
34 | |
35 | #include <linux/if_vlan.h> | |
36 | #include <linux/etherdevice.h> | |
ef9814de EBE |
37 | #include <linux/timecounter.h> |
38 | #include <linux/net_tstamp.h> | |
3d8c38af | 39 | #include <linux/ptp_clock_kernel.h> |
48935bbb | 40 | #include <linux/crash_dump.h> |
f62b8bb8 AV |
41 | #include <linux/mlx5/driver.h> |
42 | #include <linux/mlx5/qp.h> | |
43 | #include <linux/mlx5/cq.h> | |
ada68c31 | 44 | #include <linux/mlx5/port.h> |
d18a9470 | 45 | #include <linux/mlx5/vport.h> |
8d7f9ecb | 46 | #include <linux/mlx5/transobj.h> |
1ae1df3a | 47 | #include <linux/mlx5/fs.h> |
e8f887ac | 48 | #include <linux/rhashtable.h> |
cb67b832 | 49 | #include <net/switchdev.h> |
0ddf5432 | 50 | #include <net/xdp.h> |
4c4dbb4a | 51 | #include <linux/net_dim.h> |
f62b8bb8 | 52 | #include "wq.h" |
f62b8bb8 | 53 | #include "mlx5_core.h" |
9218b44d | 54 | #include "en_stats.h" |
fe6d86b3 | 55 | #include "en/fs.h" |
f62b8bb8 | 56 | |
4d8fcf21 | 57 | extern const struct net_device_ops mlx5e_netdev_ops; |
60bbf7ee JDB |
58 | struct page_pool; |
59 | ||
bb909416 IL |
60 | #define MLX5E_METADATA_ETHER_TYPE (0x8CE4) |
61 | #define MLX5E_METADATA_ETHER_LEN 8 | |
62 | ||
1cabe6b0 MG |
63 | #define MLX5_SET_CFG(p, f, v) MLX5_SET(create_flow_group_in, p, f, v) |
64 | ||
c139dbfd ES |
65 | #define MLX5E_ETH_HARD_MTU (ETH_HLEN + VLAN_HLEN + ETH_FCS_LEN) |
66 | ||
472a1e44 TT |
67 | #define MLX5E_HW2SW_MTU(params, hwmtu) ((hwmtu) - ((params)->hard_mtu)) |
68 | #define MLX5E_SW2HW_MTU(params, swmtu) ((swmtu) + ((params)->hard_mtu)) | |
d8bec2b2 | 69 | |
0696d608 | 70 | #define MLX5E_MAX_PRIORITY 8 |
2a5e7a13 | 71 | #define MLX5E_MAX_DSCP 64 |
f62b8bb8 AV |
72 | #define MLX5E_MAX_NUM_TC 8 |
73 | ||
1bfecfca | 74 | #define MLX5_RX_HEADROOM NET_SKB_PAD |
78aedd32 TT |
75 | #define MLX5_SKB_FRAG_SZ(len) (SKB_DATA_ALIGN(len) + \ |
76 | SKB_DATA_ALIGN(sizeof(struct skb_shared_info))) | |
1bfecfca | 77 | |
f32f5bd2 DJ |
78 | #define MLX5_MPWRQ_MIN_LOG_STRIDE_SZ(mdev) \ |
79 | (6 + MLX5_CAP_GEN(mdev, cache_line_128byte)) /* HW restriction */ | |
80 | #define MLX5_MPWRQ_LOG_STRIDE_SZ(mdev, req) \ | |
81 | max_t(u32, MLX5_MPWRQ_MIN_LOG_STRIDE_SZ(mdev), req) | |
82 | #define MLX5_MPWRQ_DEF_LOG_STRIDE_SZ(mdev) MLX5_MPWRQ_LOG_STRIDE_SZ(mdev, 6) | |
83 | #define MLX5_MPWRQ_CQE_CMPRS_LOG_STRIDE_SZ(mdev) MLX5_MPWRQ_LOG_STRIDE_SZ(mdev, 8) | |
696a97cf EE |
84 | #define MLX5E_MPWQE_STRIDE_SZ(mdev, cqe_cmprs) \ |
85 | (cqe_cmprs ? MLX5_MPWRQ_CQE_CMPRS_LOG_STRIDE_SZ(mdev) : \ | |
86 | MLX5_MPWRQ_DEF_LOG_STRIDE_SZ(mdev)) | |
f32f5bd2 | 87 | |
7e426671 | 88 | #define MLX5_MPWRQ_LOG_WQE_SZ 18 |
461017cb TT |
89 | #define MLX5_MPWRQ_WQE_PAGE_ORDER (MLX5_MPWRQ_LOG_WQE_SZ - PAGE_SHIFT > 0 ? \ |
90 | MLX5_MPWRQ_LOG_WQE_SZ - PAGE_SHIFT : 0) | |
91 | #define MLX5_MPWRQ_PAGES_PER_WQE BIT(MLX5_MPWRQ_WQE_PAGE_ORDER) | |
fe4c988b SM |
92 | |
93 | #define MLX5_MTT_OCTW(npages) (ALIGN(npages, 8) / 2) | |
73281b78 | 94 | #define MLX5E_REQUIRED_WQE_MTTS (ALIGN(MLX5_MPWRQ_PAGES_PER_WQE, 8)) |
b8a98a4c | 95 | #define MLX5E_LOG_ALIGNED_MPWQE_PPW (ilog2(MLX5E_REQUIRED_WQE_MTTS)) |
73281b78 TT |
96 | #define MLX5E_REQUIRED_MTTS(wqes) (wqes * MLX5E_REQUIRED_WQE_MTTS) |
97 | #define MLX5E_MAX_RQ_NUM_MTTS \ | |
98 | ((1 << 16) * 2) /* So that MLX5_MTT_OCTW(num_mtts) fits into u16 */ | |
99 | #define MLX5E_ORDER2_MAX_PACKET_MTU (order_base_2(10 * 1024)) | |
100 | #define MLX5E_PARAMS_MAXIMUM_LOG_RQ_SIZE_MPW \ | |
101 | (ilog2(MLX5E_MAX_RQ_NUM_MTTS / MLX5E_REQUIRED_WQE_MTTS)) | |
102 | #define MLX5E_LOG_MAX_RQ_NUM_PACKETS_MPW \ | |
103 | (MLX5E_PARAMS_MAXIMUM_LOG_RQ_SIZE_MPW + \ | |
104 | (MLX5_MPWRQ_LOG_WQE_SZ - MLX5E_ORDER2_MAX_PACKET_MTU)) | |
105 | ||
069d1146 TT |
106 | #define MLX5E_MIN_SKB_FRAG_SZ (MLX5_SKB_FRAG_SZ(MLX5_RX_HEADROOM)) |
107 | #define MLX5E_LOG_MAX_RX_WQE_BULK \ | |
108 | (ilog2(PAGE_SIZE / roundup_pow_of_two(MLX5E_MIN_SKB_FRAG_SZ))) | |
109 | ||
73281b78 TT |
110 | #define MLX5E_PARAMS_MINIMUM_LOG_SQ_SIZE 0x6 |
111 | #define MLX5E_PARAMS_DEFAULT_LOG_SQ_SIZE 0xa | |
112 | #define MLX5E_PARAMS_MAXIMUM_LOG_SQ_SIZE 0xd | |
113 | ||
069d1146 | 114 | #define MLX5E_PARAMS_MINIMUM_LOG_RQ_SIZE (1 + MLX5E_LOG_MAX_RX_WQE_BULK) |
73281b78 TT |
115 | #define MLX5E_PARAMS_DEFAULT_LOG_RQ_SIZE 0xa |
116 | #define MLX5E_PARAMS_MAXIMUM_LOG_RQ_SIZE min_t(u8, 0xd, \ | |
117 | MLX5E_LOG_MAX_RQ_NUM_PACKETS_MPW) | |
118 | ||
119 | #define MLX5E_PARAMS_MINIMUM_LOG_RQ_SIZE_MPW 0x2 | |
fe4c988b | 120 | |
75aa889f | 121 | #define MLX5E_RX_MAX_HEAD (256) |
461017cb | 122 | |
d9a40271 | 123 | #define MLX5E_PARAMS_DEFAULT_LRO_WQE_SZ (64 * 1024) |
2b029556 SM |
124 | #define MLX5E_DEFAULT_LRO_TIMEOUT 32 |
125 | #define MLX5E_LRO_TIMEOUT_ARR_SIZE 4 | |
126 | ||
f62b8bb8 | 127 | #define MLX5E_PARAMS_DEFAULT_RX_CQ_MODERATION_USEC 0x10 |
9908aa29 | 128 | #define MLX5E_PARAMS_DEFAULT_RX_CQ_MODERATION_USEC_FROM_CQE 0x3 |
f62b8bb8 AV |
129 | #define MLX5E_PARAMS_DEFAULT_RX_CQ_MODERATION_PKTS 0x20 |
130 | #define MLX5E_PARAMS_DEFAULT_TX_CQ_MODERATION_USEC 0x10 | |
0088cbbc | 131 | #define MLX5E_PARAMS_DEFAULT_TX_CQ_MODERATION_USEC_FROM_CQE 0x10 |
f62b8bb8 AV |
132 | #define MLX5E_PARAMS_DEFAULT_TX_CQ_MODERATION_PKTS 0x20 |
133 | #define MLX5E_PARAMS_DEFAULT_MIN_RX_WQES 0x80 | |
461017cb | 134 | #define MLX5E_PARAMS_DEFAULT_MIN_RX_WQES_MPW 0x2 |
f62b8bb8 | 135 | |
936896e9 AS |
136 | #define MLX5E_LOG_INDIR_RQT_SIZE 0x7 |
137 | #define MLX5E_INDIR_RQT_SIZE BIT(MLX5E_LOG_INDIR_RQT_SIZE) | |
b4e029da | 138 | #define MLX5E_MIN_NUM_CHANNELS 0x1 |
936896e9 | 139 | #define MLX5E_MAX_NUM_CHANNELS (MLX5E_INDIR_RQT_SIZE >> 1) |
507f0c81 | 140 | #define MLX5E_MAX_NUM_SQS (MLX5E_MAX_NUM_CHANNELS * MLX5E_MAX_NUM_TC) |
f62b8bb8 | 141 | #define MLX5E_TX_CQ_POLL_BUDGET 128 |
db75373c | 142 | #define MLX5E_SQ_RECOVER_MIN_INTERVAL 500 /* msecs */ |
f62b8bb8 | 143 | |
ea3886ca TT |
144 | #define MLX5E_UMR_WQE_INLINE_SZ \ |
145 | (sizeof(struct mlx5e_umr_wqe) + \ | |
146 | ALIGN(MLX5_MPWRQ_PAGES_PER_WQE * sizeof(struct mlx5_mtt), \ | |
147 | MLX5_UMR_MTT_ALIGNMENT)) | |
148 | #define MLX5E_UMR_WQEBBS \ | |
149 | (DIV_ROUND_UP(MLX5E_UMR_WQE_INLINE_SZ, MLX5_SEND_WQE_BB)) | |
150 | #define MLX5E_ICOSQ_MAX_WQEBBS MLX5E_UMR_WQEBBS | |
f10b7cc7 | 151 | |
86d722ad | 152 | #define MLX5E_NUM_MAIN_GROUPS 9 |
2f48af12 | 153 | |
79c48764 GP |
154 | #define MLX5E_MSG_LEVEL NETIF_MSG_LINK |
155 | ||
156 | #define mlx5e_dbg(mlevel, priv, format, ...) \ | |
157 | do { \ | |
158 | if (NETIF_MSG_##mlevel & (priv)->msglevel) \ | |
159 | netdev_warn(priv->netdev, format, \ | |
160 | ##__VA_ARGS__); \ | |
161 | } while (0) | |
162 | ||
163 | ||
461017cb TT |
164 | static inline u16 mlx5_min_rx_wqes(int wq_type, u32 wq_size) |
165 | { | |
166 | switch (wq_type) { | |
167 | case MLX5_WQ_TYPE_LINKED_LIST_STRIDING_RQ: | |
168 | return min_t(u16, MLX5E_PARAMS_DEFAULT_MIN_RX_WQES_MPW, | |
169 | wq_size / 2); | |
170 | default: | |
171 | return min_t(u16, MLX5E_PARAMS_DEFAULT_MIN_RX_WQES, | |
172 | wq_size / 2); | |
173 | } | |
174 | } | |
175 | ||
779d986d | 176 | /* Use this function to get max num channels (rxqs/txqs) only to create netdev */ |
48935bbb SM |
177 | static inline int mlx5e_get_max_num_channels(struct mlx5_core_dev *mdev) |
178 | { | |
179 | return is_kdump_kernel() ? | |
180 | MLX5E_MIN_NUM_CHANNELS : | |
181 | min_t(int, mdev->priv.eq_table.num_comp_vectors, | |
182 | MLX5E_MAX_NUM_CHANNELS); | |
183 | } | |
184 | ||
779d986d FD |
185 | /* Use this function to get max num channels after netdev was created */ |
186 | static inline int mlx5e_get_netdev_max_channels(struct net_device *netdev) | |
187 | { | |
188 | return min_t(unsigned int, netdev->num_rx_queues, | |
189 | netdev->num_tx_queues); | |
190 | } | |
191 | ||
2f48af12 TT |
192 | struct mlx5e_tx_wqe { |
193 | struct mlx5_wqe_ctrl_seg ctrl; | |
194 | struct mlx5_wqe_eth_seg eth; | |
043dc78e | 195 | struct mlx5_wqe_data_seg data[0]; |
2f48af12 TT |
196 | }; |
197 | ||
99cbfa93 | 198 | struct mlx5e_rx_wqe_ll { |
2f48af12 | 199 | struct mlx5_wqe_srq_next_seg next; |
99cbfa93 TT |
200 | struct mlx5_wqe_data_seg data[0]; |
201 | }; | |
202 | ||
203 | struct mlx5e_rx_wqe_cyc { | |
204 | struct mlx5_wqe_data_seg data[0]; | |
2f48af12 | 205 | }; |
86d722ad | 206 | |
bc77b240 TT |
207 | struct mlx5e_umr_wqe { |
208 | struct mlx5_wqe_ctrl_seg ctrl; | |
209 | struct mlx5_wqe_umr_ctrl_seg uctrl; | |
210 | struct mlx5_mkey_seg mkc; | |
ea3886ca | 211 | struct mlx5_mtt inline_mtts[0]; |
bc77b240 TT |
212 | }; |
213 | ||
d605d668 KH |
214 | extern const char mlx5e_self_tests[][ETH_GSTRING_LEN]; |
215 | ||
4e59e288 | 216 | enum mlx5e_priv_flag { |
9908aa29 | 217 | MLX5E_PFLAG_RX_CQE_BASED_MODER = (1 << 0), |
0088cbbc TG |
218 | MLX5E_PFLAG_TX_CQE_BASED_MODER = (1 << 1), |
219 | MLX5E_PFLAG_RX_CQE_COMPRESS = (1 << 2), | |
2ccb0a79 | 220 | MLX5E_PFLAG_RX_STRIDING_RQ = (1 << 3), |
b856df28 | 221 | MLX5E_PFLAG_RX_NO_CSUM_COMPLETE = (1 << 4), |
4e59e288 GP |
222 | }; |
223 | ||
6a9764ef | 224 | #define MLX5E_SET_PFLAG(params, pflag, enable) \ |
59ece1c9 SD |
225 | do { \ |
226 | if (enable) \ | |
6a9764ef | 227 | (params)->pflags |= (pflag); \ |
59ece1c9 | 228 | else \ |
6a9764ef | 229 | (params)->pflags &= ~(pflag); \ |
4e59e288 GP |
230 | } while (0) |
231 | ||
6a9764ef | 232 | #define MLX5E_GET_PFLAG(params, pflag) (!!((params)->pflags & (pflag))) |
59ece1c9 | 233 | |
08fb1dac SM |
234 | #ifdef CONFIG_MLX5_CORE_EN_DCB |
235 | #define MLX5E_MAX_BW_ALLOC 100 /* Max percentage of BW allocation */ | |
08fb1dac SM |
236 | #endif |
237 | ||
f62b8bb8 AV |
238 | struct mlx5e_params { |
239 | u8 log_sq_size; | |
461017cb | 240 | u8 rq_wq_type; |
73281b78 | 241 | u8 log_rq_mtu_frames; |
f62b8bb8 | 242 | u16 num_channels; |
f62b8bb8 | 243 | u8 num_tc; |
9bcc8606 | 244 | bool rx_cqe_compress_def; |
9a317425 AG |
245 | struct net_dim_cq_moder rx_cq_moderation; |
246 | struct net_dim_cq_moder tx_cq_moderation; | |
f62b8bb8 AV |
247 | bool lro_en; |
248 | u32 lro_wqe_sz; | |
cff92d7c | 249 | u8 tx_min_inline_mode; |
2d75b2bc AS |
250 | u8 rss_hfunc; |
251 | u8 toeplitz_hash_key[40]; | |
252 | u32 indirection_rqt[MLX5E_INDIR_RQT_SIZE]; | |
36350114 | 253 | bool vlan_strip_disable; |
102722fc | 254 | bool scatter_fcs_en; |
9a317425 | 255 | bool rx_dim_enabled; |
cbce4f44 | 256 | bool tx_dim_enabled; |
2b029556 | 257 | u32 lro_timeout; |
59ece1c9 | 258 | u32 pflags; |
6a9764ef | 259 | struct bpf_prog *xdp_prog; |
472a1e44 TT |
260 | unsigned int sw_mtu; |
261 | int hard_mtu; | |
f62b8bb8 AV |
262 | }; |
263 | ||
3a6a931d HN |
264 | #ifdef CONFIG_MLX5_CORE_EN_DCB |
265 | struct mlx5e_cee_config { | |
266 | /* bw pct for priority group */ | |
267 | u8 pg_bw_pct[CEE_DCBX_MAX_PGS]; | |
268 | u8 prio_to_pg_map[CEE_DCBX_MAX_PRIO]; | |
269 | bool pfc_setting[CEE_DCBX_MAX_PRIO]; | |
270 | bool pfc_enable; | |
271 | }; | |
272 | ||
273 | enum { | |
274 | MLX5_DCB_CHG_RESET, | |
275 | MLX5_DCB_NO_CHG, | |
276 | MLX5_DCB_CHG_NO_RESET, | |
277 | }; | |
278 | ||
279 | struct mlx5e_dcbx { | |
e207b7e9 | 280 | enum mlx5_dcbx_oper_mode mode; |
3a6a931d | 281 | struct mlx5e_cee_config cee_cfg; /* pending configuration */ |
2a5e7a13 | 282 | u8 dscp_app_cnt; |
820c2c5e HN |
283 | |
284 | /* The only setting that cannot be read from FW */ | |
285 | u8 tc_tsa[IEEE_8021QAZ_MAX_TCS]; | |
9e10bf1d | 286 | u8 cap; |
0696d608 HN |
287 | |
288 | /* Buffer configuration */ | |
ecdf2dad | 289 | bool manual_buffer; |
0696d608 HN |
290 | u32 cable_len; |
291 | u32 xoff; | |
3a6a931d | 292 | }; |
2a5e7a13 HN |
293 | |
294 | struct mlx5e_dcbx_dp { | |
295 | u8 dscp2prio[MLX5E_MAX_DSCP]; | |
296 | u8 trust_state; | |
297 | }; | |
3a6a931d HN |
298 | #endif |
299 | ||
f62b8bb8 | 300 | enum { |
c0f1147d | 301 | MLX5E_RQ_STATE_ENABLED, |
cb3c7fd4 | 302 | MLX5E_RQ_STATE_AM, |
b856df28 | 303 | MLX5E_RQ_STATE_NO_CSUM_COMPLETE, |
f62b8bb8 AV |
304 | }; |
305 | ||
f62b8bb8 AV |
306 | struct mlx5e_cq { |
307 | /* data path - accessed per cqe */ | |
308 | struct mlx5_cqwq wq; | |
f62b8bb8 AV |
309 | |
310 | /* data path - accessed per napi poll */ | |
cb3c7fd4 | 311 | u16 event_ctr; |
f62b8bb8 AV |
312 | struct napi_struct *napi; |
313 | struct mlx5_core_cq mcq; | |
314 | struct mlx5e_channel *channel; | |
315 | ||
7219ab34 TT |
316 | /* cqe decompression */ |
317 | struct mlx5_cqe64 title; | |
318 | struct mlx5_mini_cqe8 mini_arr[MLX5_MINI_CQE_ARRAY_SIZE]; | |
319 | u8 mini_arr_idx; | |
320 | u16 decmprs_left; | |
321 | u16 decmprs_wqe_counter; | |
322 | ||
f62b8bb8 | 323 | /* control */ |
a43b25da | 324 | struct mlx5_core_dev *mdev; |
3a2f7033 | 325 | struct mlx5_wq_ctrl wq_ctrl; |
f62b8bb8 AV |
326 | } ____cacheline_aligned_in_smp; |
327 | ||
eba2db2b | 328 | struct mlx5e_tx_wqe_info { |
77bdf895 | 329 | struct sk_buff *skb; |
eba2db2b SM |
330 | u32 num_bytes; |
331 | u8 num_wqebbs; | |
332 | u8 num_dma; | |
333 | }; | |
334 | ||
335 | enum mlx5e_dma_map_type { | |
336 | MLX5E_DMA_MAP_SINGLE, | |
337 | MLX5E_DMA_MAP_PAGE | |
338 | }; | |
339 | ||
340 | struct mlx5e_sq_dma { | |
341 | dma_addr_t addr; | |
342 | u32 size; | |
343 | enum mlx5e_dma_map_type type; | |
344 | }; | |
345 | ||
346 | enum { | |
347 | MLX5E_SQ_STATE_ENABLED, | |
db75373c | 348 | MLX5E_SQ_STATE_RECOVERING, |
2ac9cfe7 | 349 | MLX5E_SQ_STATE_IPSEC, |
cbce4f44 | 350 | MLX5E_SQ_STATE_AM, |
bf239741 | 351 | MLX5E_SQ_STATE_TLS, |
58b99ee3 | 352 | MLX5E_SQ_STATE_REDIRECT, |
eba2db2b SM |
353 | }; |
354 | ||
355 | struct mlx5e_sq_wqe_info { | |
356 | u8 opcode; | |
eba2db2b | 357 | }; |
2f48af12 | 358 | |
31391048 | 359 | struct mlx5e_txqsq { |
eba2db2b SM |
360 | /* data path */ |
361 | ||
362 | /* dirtied @completion */ | |
363 | u16 cc; | |
364 | u32 dma_fifo_cc; | |
cbce4f44 | 365 | struct net_dim dim; /* Adaptive Moderation */ |
eba2db2b SM |
366 | |
367 | /* dirtied @xmit */ | |
368 | u16 pc ____cacheline_aligned_in_smp; | |
369 | u32 dma_fifo_pc; | |
eba2db2b SM |
370 | |
371 | struct mlx5e_cq cq; | |
372 | ||
eba2db2b SM |
373 | /* read only */ |
374 | struct mlx5_wq_cyc wq; | |
375 | u32 dma_fifo_mask; | |
05909bab | 376 | struct mlx5e_sq_stats *stats; |
9a3956da TT |
377 | struct { |
378 | struct mlx5e_sq_dma *dma_fifo; | |
379 | struct mlx5e_tx_wqe_info *wqe_info; | |
380 | } db; | |
eba2db2b SM |
381 | void __iomem *uar_map; |
382 | struct netdev_queue *txq; | |
383 | u32 sqn; | |
eba2db2b | 384 | u8 min_inline_mode; |
eba2db2b | 385 | struct device *pdev; |
eba2db2b SM |
386 | __be32 mkey_be; |
387 | unsigned long state; | |
7c39afb3 FD |
388 | struct hwtstamp_config *tstamp; |
389 | struct mlx5_clock *clock; | |
eba2db2b SM |
390 | |
391 | /* control path */ | |
392 | struct mlx5_wq_ctrl wq_ctrl; | |
393 | struct mlx5e_channel *channel; | |
acc6c595 | 394 | int txq_ix; |
eba2db2b | 395 | u32 rate_limit; |
db75373c EBE |
396 | struct mlx5e_txqsq_recover { |
397 | struct work_struct recover_work; | |
398 | u64 last_recover; | |
399 | } recover; | |
31391048 SM |
400 | } ____cacheline_aligned_in_smp; |
401 | ||
c94e4f11 TT |
402 | struct mlx5e_dma_info { |
403 | struct page *page; | |
404 | dma_addr_t addr; | |
405 | }; | |
406 | ||
407 | struct mlx5e_xdp_info { | |
408 | struct xdp_frame *xdpf; | |
409 | dma_addr_t dma_addr; | |
410 | struct mlx5e_dma_info di; | |
411 | }; | |
412 | ||
31391048 SM |
413 | struct mlx5e_xdpsq { |
414 | /* data path */ | |
415 | ||
dac0d15f | 416 | /* dirtied @completion */ |
31391048 | 417 | u16 cc; |
dac0d15f | 418 | bool redirect_flush; |
31391048 | 419 | |
dac0d15f TT |
420 | /* dirtied @xmit */ |
421 | u16 pc ____cacheline_aligned_in_smp; | |
422 | bool doorbell; | |
31391048 | 423 | |
dac0d15f | 424 | struct mlx5e_cq cq; |
31391048 SM |
425 | |
426 | /* read only */ | |
427 | struct mlx5_wq_cyc wq; | |
890388ad | 428 | struct mlx5e_xdpsq_stats *stats; |
dac0d15f TT |
429 | struct { |
430 | struct mlx5e_xdp_info *xdpi; | |
431 | } db; | |
31391048 SM |
432 | void __iomem *uar_map; |
433 | u32 sqn; | |
434 | struct device *pdev; | |
435 | __be32 mkey_be; | |
436 | u8 min_inline_mode; | |
437 | unsigned long state; | |
c94e4f11 | 438 | unsigned int hw_mtu; |
31391048 SM |
439 | |
440 | /* control path */ | |
441 | struct mlx5_wq_ctrl wq_ctrl; | |
442 | struct mlx5e_channel *channel; | |
443 | } ____cacheline_aligned_in_smp; | |
444 | ||
445 | struct mlx5e_icosq { | |
446 | /* data path */ | |
447 | ||
31391048 SM |
448 | /* dirtied @xmit */ |
449 | u16 pc ____cacheline_aligned_in_smp; | |
31391048 SM |
450 | |
451 | struct mlx5e_cq cq; | |
452 | ||
453 | /* write@xmit, read@completion */ | |
454 | struct { | |
455 | struct mlx5e_sq_wqe_info *ico_wqe; | |
456 | } db; | |
457 | ||
458 | /* read only */ | |
459 | struct mlx5_wq_cyc wq; | |
460 | void __iomem *uar_map; | |
461 | u32 sqn; | |
31391048 SM |
462 | unsigned long state; |
463 | ||
464 | /* control path */ | |
465 | struct mlx5_wq_ctrl wq_ctrl; | |
466 | struct mlx5e_channel *channel; | |
eba2db2b SM |
467 | } ____cacheline_aligned_in_smp; |
468 | ||
864b2d71 SM |
469 | static inline bool |
470 | mlx5e_wqc_has_room_for(struct mlx5_wq_cyc *wq, u16 cc, u16 pc, u16 n) | |
eba2db2b | 471 | { |
ddf385e3 | 472 | return (mlx5_wq_cyc_ctr2ix(wq, cc - pc) >= n) || (cc == pc); |
eba2db2b | 473 | } |
6cd392a0 | 474 | |
accd5883 | 475 | struct mlx5e_wqe_frag_info { |
069d1146 | 476 | struct mlx5e_dma_info *di; |
accd5883 | 477 | u32 offset; |
069d1146 | 478 | bool last_in_page; |
accd5883 TT |
479 | }; |
480 | ||
eba2db2b | 481 | struct mlx5e_umr_dma_info { |
eba2db2b | 482 | struct mlx5e_dma_info dma_info[MLX5_MPWRQ_PAGES_PER_WQE]; |
eba2db2b SM |
483 | }; |
484 | ||
485 | struct mlx5e_mpw_info { | |
486 | struct mlx5e_umr_dma_info umr; | |
487 | u16 consumed_strides; | |
22f45398 | 488 | DECLARE_BITMAP(xdp_xmit_bitmap, MLX5_MPWRQ_PAGES_PER_WQE); |
eba2db2b SM |
489 | }; |
490 | ||
069d1146 TT |
491 | #define MLX5E_MAX_RX_FRAGS 4 |
492 | ||
4415a031 TT |
493 | /* a single cache unit is capable to serve one napi call (for non-striding rq) |
494 | * or a MPWQE (for striding rq). | |
495 | */ | |
496 | #define MLX5E_CACHE_UNIT (MLX5_MPWRQ_PAGES_PER_WQE > NAPI_POLL_WEIGHT ? \ | |
497 | MLX5_MPWRQ_PAGES_PER_WQE : NAPI_POLL_WEIGHT) | |
29c2849e | 498 | #define MLX5E_CACHE_SIZE (4 * roundup_pow_of_two(MLX5E_CACHE_UNIT)) |
4415a031 TT |
499 | struct mlx5e_page_cache { |
500 | u32 head; | |
501 | u32 tail; | |
502 | struct mlx5e_dma_info page_cache[MLX5E_CACHE_SIZE]; | |
503 | }; | |
504 | ||
eba2db2b SM |
505 | struct mlx5e_rq; |
506 | typedef void (*mlx5e_fp_handle_rx_cqe)(struct mlx5e_rq*, struct mlx5_cqe64*); | |
619a8f2a TT |
507 | typedef struct sk_buff * |
508 | (*mlx5e_fp_skb_from_cqe_mpwrq)(struct mlx5e_rq *rq, struct mlx5e_mpw_info *wi, | |
509 | u16 cqe_bcnt, u32 head_offset, u32 page_idx); | |
069d1146 TT |
510 | typedef struct sk_buff * |
511 | (*mlx5e_fp_skb_from_cqe)(struct mlx5e_rq *rq, struct mlx5_cqe64 *cqe, | |
512 | struct mlx5e_wqe_frag_info *wi, u32 cqe_bcnt); | |
7cc6d77b | 513 | typedef bool (*mlx5e_fp_post_rx_wqes)(struct mlx5e_rq *rq); |
eba2db2b SM |
514 | typedef void (*mlx5e_fp_dealloc_wqe)(struct mlx5e_rq*, u16); |
515 | ||
121e8927 TT |
516 | enum mlx5e_rq_flag { |
517 | MLX5E_RQ_FLAG_XDP_XMIT = BIT(0), | |
518 | }; | |
519 | ||
069d1146 TT |
520 | struct mlx5e_rq_frag_info { |
521 | int frag_size; | |
522 | int frag_stride; | |
523 | }; | |
524 | ||
525 | struct mlx5e_rq_frags_info { | |
526 | struct mlx5e_rq_frag_info arr[MLX5E_MAX_RX_FRAGS]; | |
527 | u8 num_frags; | |
528 | u8 log_num_frags; | |
529 | u8 wqe_bulk; | |
530 | }; | |
531 | ||
f62b8bb8 AV |
532 | struct mlx5e_rq { |
533 | /* data path */ | |
21c59685 | 534 | union { |
accd5883 | 535 | struct { |
069d1146 TT |
536 | struct mlx5_wq_cyc wq; |
537 | struct mlx5e_wqe_frag_info *frags; | |
538 | struct mlx5e_dma_info *di; | |
539 | struct mlx5e_rq_frags_info info; | |
540 | mlx5e_fp_skb_from_cqe skb_from_cqe; | |
accd5883 | 541 | } wqe; |
21c59685 | 542 | struct { |
422d4c40 | 543 | struct mlx5_wq_ll wq; |
b8a98a4c | 544 | struct mlx5e_umr_wqe umr_wqe; |
21c59685 | 545 | struct mlx5e_mpw_info *info; |
619a8f2a | 546 | mlx5e_fp_skb_from_cqe_mpwrq skb_from_cqe_mpwrq; |
b45d8b50 | 547 | u16 num_strides; |
89e89f7a | 548 | u8 log_stride_sz; |
a071cb9f | 549 | bool umr_in_progress; |
21c59685 SM |
550 | } mpwqe; |
551 | }; | |
1bfecfca | 552 | struct { |
b45d8b50 | 553 | u16 headroom; |
b5503b99 | 554 | u8 map_dir; /* dma map direction */ |
1bfecfca | 555 | } buff; |
f62b8bb8 | 556 | |
7cc6d77b | 557 | struct mlx5e_channel *channel; |
f62b8bb8 AV |
558 | struct device *pdev; |
559 | struct net_device *netdev; | |
05909bab | 560 | struct mlx5e_rq_stats *stats; |
f62b8bb8 | 561 | struct mlx5e_cq cq; |
4415a031 | 562 | struct mlx5e_page_cache page_cache; |
7c39afb3 FD |
563 | struct hwtstamp_config *tstamp; |
564 | struct mlx5_clock *clock; | |
4415a031 | 565 | |
2f48af12 | 566 | mlx5e_fp_handle_rx_cqe handle_rx_cqe; |
7cc6d77b | 567 | mlx5e_fp_post_rx_wqes post_wqes; |
6cd392a0 | 568 | mlx5e_fp_dealloc_wqe dealloc_wqe; |
f62b8bb8 AV |
569 | |
570 | unsigned long state; | |
571 | int ix; | |
0073c8f7 | 572 | unsigned int hw_mtu; |
f62b8bb8 | 573 | |
9a317425 | 574 | struct net_dim dim; /* Dynamic Interrupt Moderation */ |
31871f87 SM |
575 | |
576 | /* XDP */ | |
86994156 | 577 | struct bpf_prog *xdp_prog; |
31391048 | 578 | struct mlx5e_xdpsq xdpsq; |
121e8927 | 579 | DECLARE_BITMAP(flags, 8); |
60bbf7ee | 580 | struct page_pool *page_pool; |
cb3c7fd4 | 581 | |
f62b8bb8 AV |
582 | /* control */ |
583 | struct mlx5_wq_ctrl wq_ctrl; | |
b45d8b50 | 584 | __be32 mkey_be; |
461017cb | 585 | u8 wq_type; |
f62b8bb8 | 586 | u32 rqn; |
a43b25da | 587 | struct mlx5_core_dev *mdev; |
ec8b9981 | 588 | struct mlx5_core_mkey umr_mkey; |
0ddf5432 JDB |
589 | |
590 | /* XDP read-mostly */ | |
591 | struct xdp_rxq_info xdp_rxq; | |
f62b8bb8 AV |
592 | } ____cacheline_aligned_in_smp; |
593 | ||
f62b8bb8 AV |
594 | struct mlx5e_channel { |
595 | /* data path */ | |
596 | struct mlx5e_rq rq; | |
31391048 SM |
597 | struct mlx5e_txqsq sq[MLX5E_MAX_NUM_TC]; |
598 | struct mlx5e_icosq icosq; /* internal control operations */ | |
b5503b99 | 599 | bool xdp; |
f62b8bb8 AV |
600 | struct napi_struct napi; |
601 | struct device *pdev; | |
602 | struct net_device *netdev; | |
603 | __be32 mkey_be; | |
604 | u8 num_tc; | |
f62b8bb8 | 605 | |
58b99ee3 TT |
606 | /* XDP_REDIRECT */ |
607 | struct mlx5e_xdpsq xdpsq; | |
608 | ||
a8c2eb15 TT |
609 | /* data path - accessed per napi poll */ |
610 | struct irq_desc *irq_desc; | |
05909bab | 611 | struct mlx5e_ch_stats *stats; |
f62b8bb8 AV |
612 | |
613 | /* control */ | |
614 | struct mlx5e_priv *priv; | |
a43b25da | 615 | struct mlx5_core_dev *mdev; |
7c39afb3 | 616 | struct hwtstamp_config *tstamp; |
f62b8bb8 | 617 | int ix; |
231243c8 | 618 | int cpu; |
f62b8bb8 AV |
619 | }; |
620 | ||
ff9c852f SM |
621 | struct mlx5e_channels { |
622 | struct mlx5e_channel **c; | |
623 | unsigned int num; | |
6a9764ef | 624 | struct mlx5e_params params; |
ff9c852f SM |
625 | }; |
626 | ||
05909bab EBE |
627 | struct mlx5e_channel_stats { |
628 | struct mlx5e_ch_stats ch; | |
629 | struct mlx5e_sq_stats sq[MLX5E_MAX_NUM_TC]; | |
630 | struct mlx5e_rq_stats rq; | |
890388ad | 631 | struct mlx5e_xdpsq_stats rq_xdpsq; |
58b99ee3 | 632 | struct mlx5e_xdpsq_stats xdpsq; |
05909bab EBE |
633 | } ____cacheline_aligned_in_smp; |
634 | ||
acff797c | 635 | enum { |
e0f46eb9 | 636 | MLX5E_STATE_ASYNC_EVENTS_ENABLED, |
acff797c MG |
637 | MLX5E_STATE_OPENED, |
638 | MLX5E_STATE_DESTROYING, | |
639 | }; | |
640 | ||
398f3351 | 641 | struct mlx5e_rqt { |
1da36696 | 642 | u32 rqtn; |
398f3351 HHZ |
643 | bool enabled; |
644 | }; | |
645 | ||
646 | struct mlx5e_tir { | |
647 | u32 tirn; | |
648 | struct mlx5e_rqt rqt; | |
649 | struct list_head list; | |
1da36696 TT |
650 | }; |
651 | ||
acff797c MG |
652 | enum { |
653 | MLX5E_TC_PRIO = 0, | |
654 | MLX5E_NIC_PRIO | |
655 | }; | |
656 | ||
f62b8bb8 AV |
657 | struct mlx5e_priv { |
658 | /* priv data path fields - start */ | |
acc6c595 SM |
659 | struct mlx5e_txqsq *txq2sq[MLX5E_MAX_NUM_CHANNELS * MLX5E_MAX_NUM_TC]; |
660 | int channel_tc2txq[MLX5E_MAX_NUM_CHANNELS][MLX5E_MAX_NUM_TC]; | |
2a5e7a13 HN |
661 | #ifdef CONFIG_MLX5_CORE_EN_DCB |
662 | struct mlx5e_dcbx_dp dcbx_dp; | |
663 | #endif | |
f62b8bb8 AV |
664 | /* priv data path fields - end */ |
665 | ||
79c48764 | 666 | u32 msglevel; |
f62b8bb8 AV |
667 | unsigned long state; |
668 | struct mutex state_lock; /* Protects Interface state */ | |
50cfa25a | 669 | struct mlx5e_rq drop_rq; |
f62b8bb8 | 670 | |
ff9c852f | 671 | struct mlx5e_channels channels; |
f62b8bb8 | 672 | u32 tisn[MLX5E_MAX_NUM_TC]; |
398f3351 | 673 | struct mlx5e_rqt indir_rqt; |
724b2aa1 | 674 | struct mlx5e_tir indir_tir[MLX5E_NUM_INDIR_TIRS]; |
7b3722fa | 675 | struct mlx5e_tir inner_indir_tir[MLX5E_NUM_INDIR_TIRS]; |
724b2aa1 | 676 | struct mlx5e_tir direct_tir[MLX5E_MAX_NUM_CHANNELS]; |
507f0c81 | 677 | u32 tx_rates[MLX5E_MAX_NUM_SQS]; |
f62b8bb8 | 678 | |
acff797c | 679 | struct mlx5e_flow_steering fs; |
f62b8bb8 | 680 | |
7bb29755 | 681 | struct workqueue_struct *wq; |
f62b8bb8 AV |
682 | struct work_struct update_carrier_work; |
683 | struct work_struct set_rx_mode_work; | |
3947ca18 | 684 | struct work_struct tx_timeout_work; |
cdeef2b1 | 685 | struct work_struct update_stats_work; |
f62b8bb8 AV |
686 | |
687 | struct mlx5_core_dev *mdev; | |
688 | struct net_device *netdev; | |
689 | struct mlx5e_stats stats; | |
05909bab EBE |
690 | struct mlx5e_channel_stats channel_stats[MLX5E_MAX_NUM_CHANNELS]; |
691 | u8 max_opened_tc; | |
7c39afb3 | 692 | struct hwtstamp_config tstamp; |
7cbaf9a3 MS |
693 | u16 q_counter; |
694 | u16 drop_rq_q_counter; | |
3a6a931d HN |
695 | #ifdef CONFIG_MLX5_CORE_EN_DCB |
696 | struct mlx5e_dcbx dcbx; | |
697 | #endif | |
698 | ||
6bfd390b | 699 | const struct mlx5e_profile *profile; |
127ea380 | 700 | void *ppriv; |
547eede0 IT |
701 | #ifdef CONFIG_MLX5_EN_IPSEC |
702 | struct mlx5e_ipsec *ipsec; | |
703 | #endif | |
43585a41 IL |
704 | #ifdef CONFIG_MLX5_EN_TLS |
705 | struct mlx5e_tls *tls; | |
706 | #endif | |
f62b8bb8 AV |
707 | }; |
708 | ||
a43b25da | 709 | struct mlx5e_profile { |
182570b2 | 710 | int (*init)(struct mlx5_core_dev *mdev, |
a43b25da SM |
711 | struct net_device *netdev, |
712 | const struct mlx5e_profile *profile, void *ppriv); | |
713 | void (*cleanup)(struct mlx5e_priv *priv); | |
714 | int (*init_rx)(struct mlx5e_priv *priv); | |
715 | void (*cleanup_rx)(struct mlx5e_priv *priv); | |
716 | int (*init_tx)(struct mlx5e_priv *priv); | |
717 | void (*cleanup_tx)(struct mlx5e_priv *priv); | |
718 | void (*enable)(struct mlx5e_priv *priv); | |
719 | void (*disable)(struct mlx5e_priv *priv); | |
720 | void (*update_stats)(struct mlx5e_priv *priv); | |
7ca42c80 | 721 | void (*update_carrier)(struct mlx5e_priv *priv); |
20fd0c19 SM |
722 | struct { |
723 | mlx5e_fp_handle_rx_cqe handle_rx_cqe; | |
724 | mlx5e_fp_handle_rx_cqe handle_rx_cqe_mpwqe; | |
725 | } rx_handlers; | |
a43b25da SM |
726 | int max_tc; |
727 | }; | |
728 | ||
665bc539 GP |
729 | void mlx5e_build_ptys2ethtool_map(void); |
730 | ||
f62b8bb8 | 731 | u16 mlx5e_select_queue(struct net_device *dev, struct sk_buff *skb, |
4f49dec9 AD |
732 | struct net_device *sb_dev, |
733 | select_queue_fallback_t fallback); | |
f62b8bb8 | 734 | netdev_tx_t mlx5e_xmit(struct sk_buff *skb, struct net_device *dev); |
bf239741 IL |
735 | netdev_tx_t mlx5e_sq_xmit(struct mlx5e_txqsq *sq, struct sk_buff *skb, |
736 | struct mlx5e_tx_wqe *wqe, u16 pi); | |
f62b8bb8 AV |
737 | |
738 | void mlx5e_completion_event(struct mlx5_core_cq *mcq); | |
739 | void mlx5e_cq_error_event(struct mlx5_core_cq *mcq, enum mlx5_event event); | |
740 | int mlx5e_napi_poll(struct napi_struct *napi, int budget); | |
8ec736e5 | 741 | bool mlx5e_poll_tx_cq(struct mlx5e_cq *cq, int napi_budget); |
44fb6fbb | 742 | int mlx5e_poll_rx_cq(struct mlx5e_cq *cq, int budget); |
31391048 | 743 | void mlx5e_free_txqsq_descs(struct mlx5e_txqsq *sq); |
461017cb | 744 | |
2ccb0a79 TT |
745 | bool mlx5e_check_fragmented_striding_rq_cap(struct mlx5_core_dev *mdev); |
746 | bool mlx5e_striding_rq_possible(struct mlx5_core_dev *mdev, | |
747 | struct mlx5e_params *params); | |
748 | ||
159d2131 | 749 | void mlx5e_page_dma_unmap(struct mlx5e_rq *rq, struct mlx5e_dma_info *dma_info); |
4415a031 TT |
750 | void mlx5e_page_release(struct mlx5e_rq *rq, struct mlx5e_dma_info *dma_info, |
751 | bool recycle); | |
2f48af12 | 752 | void mlx5e_handle_rx_cqe(struct mlx5e_rq *rq, struct mlx5_cqe64 *cqe); |
461017cb | 753 | void mlx5e_handle_rx_cqe_mpwrq(struct mlx5e_rq *rq, struct mlx5_cqe64 *cqe); |
f62b8bb8 | 754 | bool mlx5e_post_rx_wqes(struct mlx5e_rq *rq); |
7cc6d77b | 755 | bool mlx5e_post_rx_mpwqes(struct mlx5e_rq *rq); |
6cd392a0 DJ |
756 | void mlx5e_dealloc_rx_wqe(struct mlx5e_rq *rq, u16 ix); |
757 | void mlx5e_dealloc_rx_mpwqe(struct mlx5e_rq *rq, u16 ix); | |
619a8f2a TT |
758 | struct sk_buff * |
759 | mlx5e_skb_from_cqe_mpwrq_linear(struct mlx5e_rq *rq, struct mlx5e_mpw_info *wi, | |
760 | u16 cqe_bcnt, u32 head_offset, u32 page_idx); | |
761 | struct sk_buff * | |
762 | mlx5e_skb_from_cqe_mpwrq_nonlinear(struct mlx5e_rq *rq, struct mlx5e_mpw_info *wi, | |
763 | u16 cqe_bcnt, u32 head_offset, u32 page_idx); | |
069d1146 TT |
764 | struct sk_buff * |
765 | mlx5e_skb_from_cqe_linear(struct mlx5e_rq *rq, struct mlx5_cqe64 *cqe, | |
766 | struct mlx5e_wqe_frag_info *wi, u32 cqe_bcnt); | |
767 | struct sk_buff * | |
768 | mlx5e_skb_from_cqe_nonlinear(struct mlx5e_rq *rq, struct mlx5_cqe64 *cqe, | |
769 | struct mlx5e_wqe_frag_info *wi, u32 cqe_bcnt); | |
f62b8bb8 | 770 | |
19386177 | 771 | void mlx5e_update_stats(struct mlx5e_priv *priv); |
f62b8bb8 | 772 | |
33cfaaa8 | 773 | void mlx5e_init_l2_addr(struct mlx5e_priv *priv); |
d605d668 KH |
774 | int mlx5e_self_test_num(struct mlx5e_priv *priv); |
775 | void mlx5e_self_test(struct net_device *ndev, struct ethtool_test *etest, | |
776 | u64 *buf); | |
f62b8bb8 AV |
777 | void mlx5e_set_rx_mode_work(struct work_struct *work); |
778 | ||
1170fbd8 FD |
779 | int mlx5e_hwstamp_set(struct mlx5e_priv *priv, struct ifreq *ifr); |
780 | int mlx5e_hwstamp_get(struct mlx5e_priv *priv, struct ifreq *ifr); | |
be7e87f9 | 781 | int mlx5e_modify_rx_cqe_compression_locked(struct mlx5e_priv *priv, bool val); |
ef9814de | 782 | |
f62b8bb8 AV |
783 | int mlx5e_vlan_rx_add_vid(struct net_device *dev, __always_unused __be16 proto, |
784 | u16 vid); | |
785 | int mlx5e_vlan_rx_kill_vid(struct net_device *dev, __always_unused __be16 proto, | |
786 | u16 vid); | |
237f258c | 787 | void mlx5e_timestamp_init(struct mlx5e_priv *priv); |
f62b8bb8 | 788 | |
a5f97fee SM |
789 | struct mlx5e_redirect_rqt_param { |
790 | bool is_rss; | |
791 | union { | |
792 | u32 rqn; /* Direct RQN (Non-RSS) */ | |
793 | struct { | |
794 | u8 hfunc; | |
795 | struct mlx5e_channels *channels; | |
796 | } rss; /* RSS data */ | |
797 | }; | |
798 | }; | |
799 | ||
800 | int mlx5e_redirect_rqt(struct mlx5e_priv *priv, u32 rqtn, int sz, | |
801 | struct mlx5e_redirect_rqt_param rrp); | |
6a9764ef SM |
802 | void mlx5e_build_indir_tir_ctx_hash(struct mlx5e_params *params, |
803 | enum mlx5e_traffic_types tt, | |
7b3722fa | 804 | void *tirc, bool inner); |
2d75b2bc | 805 | |
f62b8bb8 AV |
806 | int mlx5e_open_locked(struct net_device *netdev); |
807 | int mlx5e_close_locked(struct net_device *netdev); | |
55c2503d SM |
808 | |
809 | int mlx5e_open_channels(struct mlx5e_priv *priv, | |
810 | struct mlx5e_channels *chs); | |
811 | void mlx5e_close_channels(struct mlx5e_channels *chs); | |
2e20a151 SM |
812 | |
813 | /* Function pointer to be used to modify WH settings while | |
814 | * switching channels | |
815 | */ | |
816 | typedef int (*mlx5e_fp_hw_modify)(struct mlx5e_priv *priv); | |
55c2503d | 817 | void mlx5e_switch_priv_channels(struct mlx5e_priv *priv, |
2e20a151 SM |
818 | struct mlx5e_channels *new_chs, |
819 | mlx5e_fp_hw_modify hw_modify); | |
603f4a45 SM |
820 | void mlx5e_activate_priv_channels(struct mlx5e_priv *priv); |
821 | void mlx5e_deactivate_priv_channels(struct mlx5e_priv *priv); | |
55c2503d | 822 | |
d4b6c488 | 823 | void mlx5e_build_default_indir_rqt(u32 *indirection_rqt, int len, |
85082dba | 824 | int num_channels); |
0088cbbc TG |
825 | void mlx5e_set_tx_cq_mode_params(struct mlx5e_params *params, |
826 | u8 cq_period_mode); | |
9908aa29 TT |
827 | void mlx5e_set_rx_cq_mode_params(struct mlx5e_params *params, |
828 | u8 cq_period_mode); | |
2ccb0a79 | 829 | void mlx5e_set_rq_type(struct mlx5_core_dev *mdev, struct mlx5e_params *params); |
696a97cf | 830 | void mlx5e_init_rq_type_params(struct mlx5_core_dev *mdev, |
2a0f561b | 831 | struct mlx5e_params *params); |
9908aa29 | 832 | |
7b3722fa GP |
833 | static inline bool mlx5e_tunnel_inner_ft_supported(struct mlx5_core_dev *mdev) |
834 | { | |
835 | return (MLX5_CAP_ETH(mdev, tunnel_stateless_gre) && | |
836 | MLX5_CAP_FLOWTABLE_NIC_RX(mdev, ft_field_support.inner_ip_version)); | |
837 | } | |
838 | ||
bf239741 IL |
839 | static inline void mlx5e_sq_fetch_wqe(struct mlx5e_txqsq *sq, |
840 | struct mlx5e_tx_wqe **wqe, | |
841 | u16 *pi) | |
842 | { | |
ddf385e3 | 843 | struct mlx5_wq_cyc *wq = &sq->wq; |
bf239741 | 844 | |
ddf385e3 | 845 | *pi = mlx5_wq_cyc_ctr2ix(wq, sq->pc); |
bf239741 IL |
846 | *wqe = mlx5_wq_cyc_get_wqe(wq, *pi); |
847 | memset(*wqe, 0, sizeof(**wqe)); | |
848 | } | |
849 | ||
864b2d71 SM |
850 | static inline |
851 | struct mlx5e_tx_wqe *mlx5e_post_nop(struct mlx5_wq_cyc *wq, u32 sqn, u16 *pc) | |
f62b8bb8 | 852 | { |
ddf385e3 | 853 | u16 pi = mlx5_wq_cyc_ctr2ix(wq, *pc); |
864b2d71 SM |
854 | struct mlx5e_tx_wqe *wqe = mlx5_wq_cyc_get_wqe(wq, pi); |
855 | struct mlx5_wqe_ctrl_seg *cseg = &wqe->ctrl; | |
856 | ||
857 | memset(cseg, 0, sizeof(*cseg)); | |
858 | ||
859 | cseg->opmod_idx_opcode = cpu_to_be32((*pc << 8) | MLX5_OPCODE_NOP); | |
860 | cseg->qpn_ds = cpu_to_be32((sqn << 8) | 0x01); | |
861 | ||
862 | (*pc)++; | |
863 | ||
864 | return wqe; | |
865 | } | |
866 | ||
867 | static inline | |
868 | void mlx5e_notify_hw(struct mlx5_wq_cyc *wq, u16 pc, | |
869 | void __iomem *uar_map, | |
870 | struct mlx5_wqe_ctrl_seg *ctrl) | |
871 | { | |
872 | ctrl->fm_ce_se = MLX5_WQE_CTRL_CQ_UPDATE; | |
f62b8bb8 AV |
873 | /* ensure wqe is visible to device before updating doorbell record */ |
874 | dma_wmb(); | |
875 | ||
864b2d71 | 876 | *wq->db = cpu_to_be32(pc); |
f62b8bb8 AV |
877 | |
878 | /* ensure doorbell record is visible to device before ringing the | |
879 | * doorbell | |
880 | */ | |
881 | wmb(); | |
f62b8bb8 | 882 | |
864b2d71 | 883 | mlx5_write64((__be32 *)ctrl, uar_map, NULL); |
f62b8bb8 AV |
884 | } |
885 | ||
886 | static inline void mlx5e_cq_arm(struct mlx5e_cq *cq) | |
887 | { | |
888 | struct mlx5_core_cq *mcq; | |
889 | ||
890 | mcq = &cq->mcq; | |
5fe9dec0 | 891 | mlx5_cq_arm(mcq, MLX5_CQ_DB_REQ_NOT, mcq->uar->map, cq->wq.cc); |
f62b8bb8 AV |
892 | } |
893 | ||
894 | extern const struct ethtool_ops mlx5e_ethtool_ops; | |
08fb1dac SM |
895 | #ifdef CONFIG_MLX5_CORE_EN_DCB |
896 | extern const struct dcbnl_rtnl_ops mlx5e_dcbnl_ops; | |
897 | int mlx5e_dcbnl_ieee_setets_core(struct mlx5e_priv *priv, struct ieee_ets *ets); | |
e207b7e9 | 898 | void mlx5e_dcbnl_initialize(struct mlx5e_priv *priv); |
2a5e7a13 HN |
899 | void mlx5e_dcbnl_init_app(struct mlx5e_priv *priv); |
900 | void mlx5e_dcbnl_delete_app(struct mlx5e_priv *priv); | |
08fb1dac SM |
901 | #endif |
902 | ||
724b2aa1 HHZ |
903 | int mlx5e_create_tir(struct mlx5_core_dev *mdev, |
904 | struct mlx5e_tir *tir, u32 *in, int inlen); | |
905 | void mlx5e_destroy_tir(struct mlx5_core_dev *mdev, | |
906 | struct mlx5e_tir *tir); | |
b50d292b HHZ |
907 | int mlx5e_create_mdev_resources(struct mlx5_core_dev *mdev); |
908 | void mlx5e_destroy_mdev_resources(struct mlx5_core_dev *mdev); | |
b676f653 | 909 | int mlx5e_refresh_tirs(struct mlx5e_priv *priv, bool enable_uc_lb); |
1afff42c | 910 | |
bc81b9d3 | 911 | /* common netdev helpers */ |
1462e48d RD |
912 | void mlx5e_create_q_counters(struct mlx5e_priv *priv); |
913 | void mlx5e_destroy_q_counters(struct mlx5e_priv *priv); | |
914 | int mlx5e_open_drop_rq(struct mlx5e_priv *priv, | |
915 | struct mlx5e_rq *drop_rq); | |
916 | void mlx5e_close_drop_rq(struct mlx5e_rq *drop_rq); | |
917 | ||
8f493ffd SM |
918 | int mlx5e_create_indirect_rqt(struct mlx5e_priv *priv); |
919 | ||
46dc933c OG |
920 | int mlx5e_create_indirect_tirs(struct mlx5e_priv *priv, bool inner_ttc); |
921 | void mlx5e_destroy_indirect_tirs(struct mlx5e_priv *priv, bool inner_ttc); | |
8f493ffd | 922 | |
cb67b832 | 923 | int mlx5e_create_direct_rqts(struct mlx5e_priv *priv); |
8f493ffd | 924 | void mlx5e_destroy_direct_rqts(struct mlx5e_priv *priv); |
cb67b832 HHZ |
925 | int mlx5e_create_direct_tirs(struct mlx5e_priv *priv); |
926 | void mlx5e_destroy_direct_tirs(struct mlx5e_priv *priv); | |
8f493ffd SM |
927 | void mlx5e_destroy_rqt(struct mlx5e_priv *priv, struct mlx5e_rqt *rqt); |
928 | ||
5426a0b2 SM |
929 | int mlx5e_create_tis(struct mlx5_core_dev *mdev, int tc, |
930 | u32 underlay_qpn, u32 *tisn); | |
931 | void mlx5e_destroy_tis(struct mlx5_core_dev *mdev, u32 tisn); | |
932 | ||
cb67b832 HHZ |
933 | int mlx5e_create_tises(struct mlx5e_priv *priv); |
934 | void mlx5e_cleanup_nic_tx(struct mlx5e_priv *priv); | |
935 | int mlx5e_close(struct net_device *netdev); | |
936 | int mlx5e_open(struct net_device *netdev); | |
cb67b832 | 937 | |
cdeef2b1 | 938 | void mlx5e_queue_update_stats(struct mlx5e_priv *priv); |
3f6d08d1 OG |
939 | int mlx5e_bits_invert(unsigned long a, int size); |
940 | ||
250a42b6 AN |
941 | typedef int (*change_hw_mtu_cb)(struct mlx5e_priv *priv); |
942 | int mlx5e_change_mtu(struct net_device *netdev, int new_mtu, | |
943 | change_hw_mtu_cb set_mtu_cb); | |
944 | ||
076b0936 ES |
945 | /* ethtool helpers */ |
946 | void mlx5e_ethtool_get_drvinfo(struct mlx5e_priv *priv, | |
947 | struct ethtool_drvinfo *drvinfo); | |
948 | void mlx5e_ethtool_get_strings(struct mlx5e_priv *priv, | |
949 | uint32_t stringset, uint8_t *data); | |
950 | int mlx5e_ethtool_get_sset_count(struct mlx5e_priv *priv, int sset); | |
951 | void mlx5e_ethtool_get_ethtool_stats(struct mlx5e_priv *priv, | |
952 | struct ethtool_stats *stats, u64 *data); | |
953 | void mlx5e_ethtool_get_ringparam(struct mlx5e_priv *priv, | |
954 | struct ethtool_ringparam *param); | |
955 | int mlx5e_ethtool_set_ringparam(struct mlx5e_priv *priv, | |
956 | struct ethtool_ringparam *param); | |
957 | void mlx5e_ethtool_get_channels(struct mlx5e_priv *priv, | |
958 | struct ethtool_channels *ch); | |
959 | int mlx5e_ethtool_set_channels(struct mlx5e_priv *priv, | |
960 | struct ethtool_channels *ch); | |
961 | int mlx5e_ethtool_get_coalesce(struct mlx5e_priv *priv, | |
962 | struct ethtool_coalesce *coal); | |
963 | int mlx5e_ethtool_set_coalesce(struct mlx5e_priv *priv, | |
964 | struct ethtool_coalesce *coal); | |
a5355de8 OG |
965 | u32 mlx5e_ethtool_get_rxfh_key_size(struct mlx5e_priv *priv); |
966 | u32 mlx5e_ethtool_get_rxfh_indir_size(struct mlx5e_priv *priv); | |
3844b07e FD |
967 | int mlx5e_ethtool_get_ts_info(struct mlx5e_priv *priv, |
968 | struct ethtool_ts_info *info); | |
3ffaabec OG |
969 | int mlx5e_ethtool_flash_device(struct mlx5e_priv *priv, |
970 | struct ethtool_flash *flash); | |
076b0936 | 971 | |
2c3b5bee | 972 | /* mlx5e generic netdev management API */ |
519a0bf5 SM |
973 | int mlx5e_netdev_init(struct net_device *netdev, |
974 | struct mlx5e_priv *priv, | |
975 | struct mlx5_core_dev *mdev, | |
976 | const struct mlx5e_profile *profile, | |
977 | void *ppriv); | |
182570b2 | 978 | void mlx5e_netdev_cleanup(struct net_device *netdev, struct mlx5e_priv *priv); |
2c3b5bee SM |
979 | struct net_device* |
980 | mlx5e_create_netdev(struct mlx5_core_dev *mdev, const struct mlx5e_profile *profile, | |
779d986d | 981 | int nch, void *ppriv); |
2c3b5bee SM |
982 | int mlx5e_attach_netdev(struct mlx5e_priv *priv); |
983 | void mlx5e_detach_netdev(struct mlx5e_priv *priv); | |
984 | void mlx5e_destroy_netdev(struct mlx5e_priv *priv); | |
8f493ffd SM |
985 | void mlx5e_build_nic_params(struct mlx5_core_dev *mdev, |
986 | struct mlx5e_params *params, | |
472a1e44 | 987 | u16 max_channels, u16 mtu); |
749359f4 GT |
988 | void mlx5e_build_rq_params(struct mlx5_core_dev *mdev, |
989 | struct mlx5e_params *params); | |
3edc0159 | 990 | void mlx5e_build_rss_params(struct mlx5e_params *params); |
fbcb127e | 991 | u8 mlx5e_params_calculate_tx_min_inline(struct mlx5_core_dev *mdev); |
9a317425 | 992 | void mlx5e_rx_dim_work(struct work_struct *work); |
cbce4f44 | 993 | void mlx5e_tx_dim_work(struct work_struct *work); |
1afff42c | 994 | #endif /* __MLX5_EN_H__ */ |