blob: e8a6c3325b396c6295db60c833309c4e4102e780 [file] [log] [blame]
Amir Vadaif62b8bb82015-05-28 22:28:48 +03001/*
Matthew Finlay1afff422016-02-22 18:17:31 +02002 * Copyright (c) 2015-2016, Mellanox Technologies. All rights reserved.
Amir Vadaif62b8bb82015-05-28 22:28:48 +03003 *
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 */
Matthew Finlay1afff422016-02-22 18:17:31 +020032#ifndef __MLX5_EN_H__
33#define __MLX5_EN_H__
Amir Vadaif62b8bb82015-05-28 22:28:48 +030034
35#include <linux/if_vlan.h>
36#include <linux/etherdevice.h>
Eran Ben Elishaef9814d2015-12-29 14:58:31 +020037#include <linux/timecounter.h>
38#include <linux/net_tstamp.h>
Eran Ben Elisha3d8c38a2015-12-29 14:58:32 +020039#include <linux/ptp_clock_kernel.h>
Amir Vadaif62b8bb82015-05-28 22:28:48 +030040#include <linux/mlx5/driver.h>
41#include <linux/mlx5/qp.h>
42#include <linux/mlx5/cq.h>
Achiad Shochatada68c32016-02-22 18:17:23 +020043#include <linux/mlx5/port.h>
Majd Dibbinyd18a9472015-06-04 19:30:40 +030044#include <linux/mlx5/vport.h>
majd@mellanox.com8d7f9ec2016-01-14 19:12:59 +020045#include <linux/mlx5/transobj.h>
Amir Vadaie8f887a2016-03-08 12:42:36 +020046#include <linux/rhashtable.h>
Amir Vadaif62b8bb82015-05-28 22:28:48 +030047#include "wq.h"
Amir Vadaif62b8bb82015-05-28 22:28:48 +030048#include "mlx5_core.h"
Gal Pressman9218b442016-04-24 22:51:47 +030049#include "en_stats.h"
Amir Vadaif62b8bb82015-05-28 22:28:48 +030050
Maor Gottlieb1cabe6b2016-04-29 01:36:40 +030051#define MLX5_SET_CFG(p, f, v) MLX5_SET(create_flow_group_in, p, f, v)
52
Amir Vadaif62b8bb82015-05-28 22:28:48 +030053#define MLX5E_MAX_NUM_TC 8
54
Achiad Shochate842b102015-08-16 16:04:48 +030055#define MLX5E_PARAMS_MINIMUM_LOG_SQ_SIZE 0x6
Amir Vadaif62b8bb82015-05-28 22:28:48 +030056#define MLX5E_PARAMS_DEFAULT_LOG_SQ_SIZE 0xa
57#define MLX5E_PARAMS_MAXIMUM_LOG_SQ_SIZE 0xd
58
Achiad Shochate842b102015-08-16 16:04:48 +030059#define MLX5E_PARAMS_MINIMUM_LOG_RQ_SIZE 0x1
Amir Vadaif62b8bb82015-05-28 22:28:48 +030060#define MLX5E_PARAMS_DEFAULT_LOG_RQ_SIZE 0xa
61#define MLX5E_PARAMS_MAXIMUM_LOG_RQ_SIZE 0xd
62
Tariq Toukan461017c2016-04-20 22:02:13 +030063#define MLX5E_PARAMS_MINIMUM_LOG_RQ_SIZE_MPW 0x1
64#define MLX5E_PARAMS_DEFAULT_LOG_RQ_SIZE_MPW 0x4
65#define MLX5E_PARAMS_MAXIMUM_LOG_RQ_SIZE_MPW 0x6
66
Tariq Toukan461017c2016-04-20 22:02:13 +030067#define MLX5_MPWRQ_LOG_STRIDE_SIZE 6 /* >= 6, HW restriction */
Tariq Toukand9d9f152016-05-11 00:29:15 +030068#define MLX5_MPWRQ_LOG_STRIDE_SIZE_CQE_COMPRESS 8 /* >= 6, HW restriction */
69#define MLX5_MPWRQ_LOG_WQE_SZ 17
Tariq Toukan461017c2016-04-20 22:02:13 +030070#define MLX5_MPWRQ_WQE_PAGE_ORDER (MLX5_MPWRQ_LOG_WQE_SZ - PAGE_SHIFT > 0 ? \
71 MLX5_MPWRQ_LOG_WQE_SZ - PAGE_SHIFT : 0)
72#define MLX5_MPWRQ_PAGES_PER_WQE BIT(MLX5_MPWRQ_WQE_PAGE_ORDER)
73#define MLX5_MPWRQ_STRIDES_PER_PAGE (MLX5_MPWRQ_NUM_STRIDES >> \
74 MLX5_MPWRQ_WQE_PAGE_ORDER)
Tariq Toukanbc77b242016-04-20 22:02:15 +030075#define MLX5_CHANNEL_MAX_NUM_MTTS (ALIGN(MLX5_MPWRQ_PAGES_PER_WQE, 8) * \
76 BIT(MLX5E_PARAMS_MAXIMUM_LOG_RQ_SIZE_MPW))
77#define MLX5_UMR_ALIGN (2048)
Tariq Toukan461017c2016-04-20 22:02:13 +030078#define MLX5_MPWRQ_SMALL_PACKET_THRESHOLD (128)
79
Achiad Shochatd9a40272015-08-16 16:04:49 +030080#define MLX5E_PARAMS_DEFAULT_LRO_WQE_SZ (64 * 1024)
Amir Vadaif62b8bb82015-05-28 22:28:48 +030081#define MLX5E_PARAMS_DEFAULT_RX_CQ_MODERATION_USEC 0x10
82#define MLX5E_PARAMS_DEFAULT_RX_CQ_MODERATION_PKTS 0x20
83#define MLX5E_PARAMS_DEFAULT_TX_CQ_MODERATION_USEC 0x10
84#define MLX5E_PARAMS_DEFAULT_TX_CQ_MODERATION_PKTS 0x20
85#define MLX5E_PARAMS_DEFAULT_MIN_RX_WQES 0x80
Tariq Toukan461017c2016-04-20 22:02:13 +030086#define MLX5E_PARAMS_DEFAULT_MIN_RX_WQES_MPW 0x2
Amir Vadaif62b8bb82015-05-28 22:28:48 +030087
Achiad Shochat936896e2015-08-16 16:04:46 +030088#define MLX5E_LOG_INDIR_RQT_SIZE 0x7
89#define MLX5E_INDIR_RQT_SIZE BIT(MLX5E_LOG_INDIR_RQT_SIZE)
90#define MLX5E_MAX_NUM_CHANNELS (MLX5E_INDIR_RQT_SIZE >> 1)
Amir Vadaif62b8bb82015-05-28 22:28:48 +030091#define MLX5E_TX_CQ_POLL_BUDGET 128
92#define MLX5E_UPDATE_STATS_INTERVAL 200 /* msecs */
Achiad Shochat88a85f92015-07-23 23:35:59 +030093#define MLX5E_SQ_BF_BUDGET 16
Amir Vadaif62b8bb82015-05-28 22:28:48 +030094
Maor Gottlieb86d722a2015-12-10 17:12:44 +020095#define MLX5E_NUM_MAIN_GROUPS 9
Tariq Toukan2f48af12016-04-20 22:02:12 +030096
Tariq Toukan461017c2016-04-20 22:02:13 +030097static inline u16 mlx5_min_rx_wqes(int wq_type, u32 wq_size)
98{
99 switch (wq_type) {
100 case MLX5_WQ_TYPE_LINKED_LIST_STRIDING_RQ:
101 return min_t(u16, MLX5E_PARAMS_DEFAULT_MIN_RX_WQES_MPW,
102 wq_size / 2);
103 default:
104 return min_t(u16, MLX5E_PARAMS_DEFAULT_MIN_RX_WQES,
105 wq_size / 2);
106 }
107}
108
109static inline int mlx5_min_log_rq_size(int wq_type)
110{
111 switch (wq_type) {
112 case MLX5_WQ_TYPE_LINKED_LIST_STRIDING_RQ:
113 return MLX5E_PARAMS_MINIMUM_LOG_RQ_SIZE_MPW;
114 default:
115 return MLX5E_PARAMS_MINIMUM_LOG_RQ_SIZE;
116 }
117}
118
119static inline int mlx5_max_log_rq_size(int wq_type)
120{
121 switch (wq_type) {
122 case MLX5_WQ_TYPE_LINKED_LIST_STRIDING_RQ:
123 return MLX5E_PARAMS_MAXIMUM_LOG_RQ_SIZE_MPW;
124 default:
125 return MLX5E_PARAMS_MAXIMUM_LOG_RQ_SIZE;
126 }
127}
128
Tariq Toukan2f48af12016-04-20 22:02:12 +0300129struct mlx5e_tx_wqe {
130 struct mlx5_wqe_ctrl_seg ctrl;
131 struct mlx5_wqe_eth_seg eth;
132};
133
134struct mlx5e_rx_wqe {
135 struct mlx5_wqe_srq_next_seg next;
136 struct mlx5_wqe_data_seg data;
137};
Maor Gottlieb86d722a2015-12-10 17:12:44 +0200138
Tariq Toukanbc77b242016-04-20 22:02:15 +0300139struct mlx5e_umr_wqe {
140 struct mlx5_wqe_ctrl_seg ctrl;
141 struct mlx5_wqe_umr_ctrl_seg uctrl;
142 struct mlx5_mkey_seg mkc;
143 struct mlx5_wqe_data_seg data;
144};
145
Saeed Mahameed08fb1da2016-02-22 18:17:26 +0200146#ifdef CONFIG_MLX5_CORE_EN_DCB
147#define MLX5E_MAX_BW_ALLOC 100 /* Max percentage of BW allocation */
148#define MLX5E_MIN_BW_ALLOC 1 /* Min percentage of BW allocation */
149#endif
150
Amir Vadaif62b8bb82015-05-28 22:28:48 +0300151struct mlx5e_params {
152 u8 log_sq_size;
Tariq Toukan461017c2016-04-20 22:02:13 +0300153 u8 rq_wq_type;
Tariq Toukand9d9f152016-05-11 00:29:15 +0300154 u8 mpwqe_log_stride_sz;
155 u8 mpwqe_log_num_strides;
Amir Vadaif62b8bb82015-05-28 22:28:48 +0300156 u8 log_rq_size;
157 u16 num_channels;
Amir Vadaif62b8bb82015-05-28 22:28:48 +0300158 u8 num_tc;
Tariq Toukan7219ab32016-05-11 00:29:14 +0300159 bool rx_cqe_compress_admin;
160 bool rx_cqe_compress;
Amir Vadaif62b8bb82015-05-28 22:28:48 +0300161 u16 rx_cq_moderation_usec;
162 u16 rx_cq_moderation_pkts;
163 u16 tx_cq_moderation_usec;
164 u16 tx_cq_moderation_pkts;
165 u16 min_rx_wqes;
Amir Vadaif62b8bb82015-05-28 22:28:48 +0300166 bool lro_en;
167 u32 lro_wqe_sz;
Achiad Shochat58d52292015-07-23 23:35:58 +0300168 u16 tx_max_inline;
Achiad Shochat2d75b2b2015-08-16 16:04:47 +0300169 u8 rss_hfunc;
170 u8 toeplitz_hash_key[40];
171 u32 indirection_rqt[MLX5E_INDIR_RQT_SIZE];
Gal Pressman36350112016-04-24 22:51:55 +0300172 bool vlan_strip_disable;
Saeed Mahameed08fb1da2016-02-22 18:17:26 +0200173#ifdef CONFIG_MLX5_CORE_EN_DCB
174 struct ieee_ets ets;
175#endif
Amir Vadaif62b8bb82015-05-28 22:28:48 +0300176};
177
Eran Ben Elishaef9814d2015-12-29 14:58:31 +0200178struct mlx5e_tstamp {
179 rwlock_t lock;
180 struct cyclecounter cycles;
181 struct timecounter clock;
182 struct hwtstamp_config hwtstamp_config;
183 u32 nominal_c_mult;
184 unsigned long overflow_period;
185 struct delayed_work overflow_work;
186 struct mlx5_core_dev *mdev;
Eran Ben Elisha3d8c38a2015-12-29 14:58:32 +0200187 struct ptp_clock *ptp;
188 struct ptp_clock_info ptp_info;
Eran Ben Elishaef9814d2015-12-29 14:58:31 +0200189};
190
Amir Vadaif62b8bb82015-05-28 22:28:48 +0300191enum {
192 MLX5E_RQ_STATE_POST_WQES_ENABLE,
Tariq Toukanbc77b242016-04-20 22:02:15 +0300193 MLX5E_RQ_STATE_UMR_WQE_IN_PROGRESS,
Amir Vadaif62b8bb82015-05-28 22:28:48 +0300194};
195
Amir Vadaif62b8bb82015-05-28 22:28:48 +0300196struct mlx5e_cq {
197 /* data path - accessed per cqe */
198 struct mlx5_cqwq wq;
Amir Vadaif62b8bb82015-05-28 22:28:48 +0300199
200 /* data path - accessed per napi poll */
201 struct napi_struct *napi;
202 struct mlx5_core_cq mcq;
203 struct mlx5e_channel *channel;
Achiad Shochat50cfa252015-08-04 14:05:41 +0300204 struct mlx5e_priv *priv;
Amir Vadaif62b8bb82015-05-28 22:28:48 +0300205
Tariq Toukan7219ab32016-05-11 00:29:14 +0300206 /* cqe decompression */
207 struct mlx5_cqe64 title;
208 struct mlx5_mini_cqe8 mini_arr[MLX5_MINI_CQE_ARRAY_SIZE];
209 u8 mini_arr_idx;
210 u16 decmprs_left;
211 u16 decmprs_wqe_counter;
212
Amir Vadaif62b8bb82015-05-28 22:28:48 +0300213 /* control */
214 struct mlx5_wq_ctrl wq_ctrl;
215} ____cacheline_aligned_in_smp;
216
Tariq Toukan2f48af12016-04-20 22:02:12 +0300217struct mlx5e_rq;
218typedef void (*mlx5e_fp_handle_rx_cqe)(struct mlx5e_rq *rq,
219 struct mlx5_cqe64 *cqe);
220typedef int (*mlx5e_fp_alloc_wqe)(struct mlx5e_rq *rq, struct mlx5e_rx_wqe *wqe,
221 u16 ix);
222
Tariq Toukan461017c2016-04-20 22:02:13 +0300223struct mlx5e_dma_info {
224 struct page *page;
225 dma_addr_t addr;
226};
227
Amir Vadaif62b8bb82015-05-28 22:28:48 +0300228struct mlx5e_rq {
229 /* data path */
230 struct mlx5_wq_ll wq;
231 u32 wqe_sz;
232 struct sk_buff **skb;
Tariq Toukan461017c2016-04-20 22:02:13 +0300233 struct mlx5e_mpw_info *wqe_info;
Tariq Toukanbc77b242016-04-20 22:02:15 +0300234 __be32 mkey_be;
235 __be32 umr_mkey_be;
Amir Vadaif62b8bb82015-05-28 22:28:48 +0300236
237 struct device *pdev;
238 struct net_device *netdev;
Eran Ben Elishaef9814d2015-12-29 14:58:31 +0200239 struct mlx5e_tstamp *tstamp;
Amir Vadaif62b8bb82015-05-28 22:28:48 +0300240 struct mlx5e_rq_stats stats;
241 struct mlx5e_cq cq;
Tariq Toukan2f48af12016-04-20 22:02:12 +0300242 mlx5e_fp_handle_rx_cqe handle_rx_cqe;
243 mlx5e_fp_alloc_wqe alloc_wqe;
Amir Vadaif62b8bb82015-05-28 22:28:48 +0300244
245 unsigned long state;
246 int ix;
247
248 /* control */
249 struct mlx5_wq_ctrl wq_ctrl;
Tariq Toukan461017c2016-04-20 22:02:13 +0300250 u8 wq_type;
Tariq Toukand9d9f152016-05-11 00:29:15 +0300251 u32 mpwqe_stride_sz;
252 u32 mpwqe_num_strides;
Amir Vadaif62b8bb82015-05-28 22:28:48 +0300253 u32 rqn;
254 struct mlx5e_channel *channel;
Achiad Shochat50cfa252015-08-04 14:05:41 +0300255 struct mlx5e_priv *priv;
Amir Vadaif62b8bb82015-05-28 22:28:48 +0300256} ____cacheline_aligned_in_smp;
257
Tariq Toukanbc77b242016-04-20 22:02:15 +0300258struct mlx5e_umr_dma_info {
259 __be64 *mtt;
260 __be64 *mtt_no_align;
261 dma_addr_t mtt_addr;
262 struct mlx5e_dma_info *dma_info;
263};
264
265struct mlx5e_mpw_info {
266 union {
267 struct mlx5e_dma_info dma_info;
268 struct mlx5e_umr_dma_info umr;
269 };
270 u16 consumed_strides;
271 u16 skbs_frags[MLX5_MPWRQ_PAGES_PER_WQE];
272
273 void (*dma_pre_sync)(struct device *pdev,
274 struct mlx5e_mpw_info *wi,
275 u32 wqe_offset, u32 len);
Tariq Toukand9d9f152016-05-11 00:29:15 +0300276 void (*add_skb_frag)(struct mlx5e_rq *rq,
Tariq Toukanbc77b242016-04-20 22:02:15 +0300277 struct sk_buff *skb,
278 struct mlx5e_mpw_info *wi,
279 u32 page_idx, u32 frag_offset, u32 len);
280 void (*copy_skb_header)(struct device *pdev,
281 struct sk_buff *skb,
282 struct mlx5e_mpw_info *wi,
283 u32 page_idx, u32 offset,
284 u32 headlen);
285 void (*free_wqe)(struct mlx5e_rq *rq, struct mlx5e_mpw_info *wi);
286};
287
Achiad Shochat34802a42015-12-29 14:58:29 +0200288struct mlx5e_tx_wqe_info {
Amir Vadaif62b8bb82015-05-28 22:28:48 +0300289 u32 num_bytes;
290 u8 num_wqebbs;
291 u8 num_dma;
292};
293
Achiad Shochatd4e28cb2015-11-12 19:35:28 +0200294enum mlx5e_dma_map_type {
295 MLX5E_DMA_MAP_SINGLE,
296 MLX5E_DMA_MAP_PAGE
297};
298
Amir Vadaif62b8bb82015-05-28 22:28:48 +0300299struct mlx5e_sq_dma {
Achiad Shochatd4e28cb2015-11-12 19:35:28 +0200300 dma_addr_t addr;
301 u32 size;
302 enum mlx5e_dma_map_type type;
Amir Vadaif62b8bb82015-05-28 22:28:48 +0300303};
304
305enum {
306 MLX5E_SQ_STATE_WAKE_TXQ_ENABLE,
Moshe Lazer0ba42242016-03-02 00:13:40 +0200307 MLX5E_SQ_STATE_BF_ENABLE,
Amir Vadaif62b8bb82015-05-28 22:28:48 +0300308};
309
Tariq Toukand3c9bc22016-04-20 22:02:14 +0300310struct mlx5e_ico_wqe_info {
311 u8 opcode;
312 u8 num_wqebbs;
313};
314
Amir Vadaif62b8bb82015-05-28 22:28:48 +0300315struct mlx5e_sq {
316 /* data path */
317
318 /* dirtied @completion */
319 u16 cc;
320 u32 dma_fifo_cc;
321
322 /* dirtied @xmit */
323 u16 pc ____cacheline_aligned_in_smp;
324 u32 dma_fifo_pc;
Achiad Shochat88a85f92015-07-23 23:35:59 +0300325 u16 bf_offset;
326 u16 prev_cc;
327 u8 bf_budget;
Amir Vadaif62b8bb82015-05-28 22:28:48 +0300328 struct mlx5e_sq_stats stats;
329
330 struct mlx5e_cq cq;
331
332 /* pointers to per packet info: write@xmit, read@completion */
333 struct sk_buff **skb;
334 struct mlx5e_sq_dma *dma_fifo;
Achiad Shochat34802a42015-12-29 14:58:29 +0200335 struct mlx5e_tx_wqe_info *wqe_info;
Amir Vadaif62b8bb82015-05-28 22:28:48 +0300336
337 /* read only */
338 struct mlx5_wq_cyc wq;
339 u32 dma_fifo_mask;
340 void __iomem *uar_map;
341 struct netdev_queue *txq;
342 u32 sqn;
Achiad Shochat88a85f92015-07-23 23:35:59 +0300343 u16 bf_buf_size;
Saeed Mahameed12be4b22015-06-11 14:47:31 +0300344 u16 max_inline;
345 u16 edge;
Amir Vadaif62b8bb82015-05-28 22:28:48 +0300346 struct device *pdev;
Eran Ben Elishaef9814d2015-12-29 14:58:31 +0200347 struct mlx5e_tstamp *tstamp;
Amir Vadaif62b8bb82015-05-28 22:28:48 +0300348 __be32 mkey_be;
349 unsigned long state;
350
351 /* control path */
352 struct mlx5_wq_ctrl wq_ctrl;
353 struct mlx5_uar uar;
354 struct mlx5e_channel *channel;
355 int tc;
Tariq Toukand3c9bc22016-04-20 22:02:14 +0300356 struct mlx5e_ico_wqe_info *ico_wqe_info;
Amir Vadaif62b8bb82015-05-28 22:28:48 +0300357} ____cacheline_aligned_in_smp;
358
359static inline bool mlx5e_sq_has_room_for(struct mlx5e_sq *sq, u16 n)
360{
361 return (((sq->wq.sz_m1 & (sq->cc - sq->pc)) >= n) ||
362 (sq->cc == sq->pc));
363}
364
365enum channel_flags {
366 MLX5E_CHANNEL_NAPI_SCHED = 1,
367};
368
369struct mlx5e_channel {
370 /* data path */
371 struct mlx5e_rq rq;
372 struct mlx5e_sq sq[MLX5E_MAX_NUM_TC];
Tariq Toukand3c9bc22016-04-20 22:02:14 +0300373 struct mlx5e_sq icosq; /* internal control operations */
Amir Vadaif62b8bb82015-05-28 22:28:48 +0300374 struct napi_struct napi;
375 struct device *pdev;
376 struct net_device *netdev;
377 __be32 mkey_be;
378 u8 num_tc;
379 unsigned long flags;
380
381 /* control */
382 struct mlx5e_priv *priv;
383 int ix;
384 int cpu;
385};
386
387enum mlx5e_traffic_types {
Achiad Shochat5a6f8ae2015-07-23 23:36:00 +0300388 MLX5E_TT_IPV4_TCP,
389 MLX5E_TT_IPV6_TCP,
390 MLX5E_TT_IPV4_UDP,
391 MLX5E_TT_IPV6_UDP,
Achiad Shochata7417492015-07-23 23:36:01 +0300392 MLX5E_TT_IPV4_IPSEC_AH,
393 MLX5E_TT_IPV6_IPSEC_AH,
394 MLX5E_TT_IPV4_IPSEC_ESP,
395 MLX5E_TT_IPV6_IPSEC_ESP,
Achiad Shochat5a6f8ae2015-07-23 23:36:00 +0300396 MLX5E_TT_IPV4,
397 MLX5E_TT_IPV6,
398 MLX5E_TT_ANY,
399 MLX5E_NUM_TT,
Tariq Toukan1da36692016-04-29 01:36:32 +0300400 MLX5E_NUM_INDIR_TIRS = MLX5E_TT_ANY,
Amir Vadaif62b8bb82015-05-28 22:28:48 +0300401};
402
Maor Gottliebacff7972016-04-29 01:36:37 +0300403enum {
404 MLX5E_STATE_ASYNC_EVENTS_ENABLE,
405 MLX5E_STATE_OPENED,
406 MLX5E_STATE_DESTROYING,
407};
408
409struct mlx5e_vxlan_db {
410 spinlock_t lock; /* protect vxlan table */
411 struct radix_tree_root tree;
412};
413
Maor Gottlieb33cfaaa2016-04-29 01:36:38 +0300414struct mlx5e_l2_rule {
Amir Vadaif62b8bb82015-05-28 22:28:48 +0300415 u8 addr[ETH_ALEN + 2];
Maor Gottlieb33cfaaa2016-04-29 01:36:38 +0300416 struct mlx5_flow_rule *rule;
Amir Vadaif62b8bb82015-05-28 22:28:48 +0300417};
418
Maor Gottliebacff7972016-04-29 01:36:37 +0300419struct mlx5e_flow_table {
420 int num_groups;
421 struct mlx5_flow_table *t;
422 struct mlx5_flow_group **g;
423};
424
Maor Gottlieb33cfaaa2016-04-29 01:36:38 +0300425#define MLX5E_L2_ADDR_HASH_SIZE BIT(BITS_PER_BYTE)
Amir Vadaif62b8bb82015-05-28 22:28:48 +0300426
Maor Gottliebacff7972016-04-29 01:36:37 +0300427struct mlx5e_tc_table {
428 struct mlx5_flow_table *t;
429
430 struct rhashtable_params ht_params;
431 struct rhashtable ht;
Amir Vadaif62b8bb82015-05-28 22:28:48 +0300432};
433
Maor Gottliebacff7972016-04-29 01:36:37 +0300434struct mlx5e_vlan_table {
435 struct mlx5e_flow_table ft;
Saeed Mahameedaad9e6e2015-12-01 18:03:17 +0200436 unsigned long active_vlans[BITS_TO_LONGS(VLAN_N_VID)];
Maor Gottlieb86d722a2015-12-10 17:12:44 +0200437 struct mlx5_flow_rule *active_vlans_rule[VLAN_N_VID];
438 struct mlx5_flow_rule *untagged_rule;
439 struct mlx5_flow_rule *any_vlan_rule;
Amir Vadaif62b8bb82015-05-28 22:28:48 +0300440 bool filter_disabled;
441};
442
Maor Gottlieb33cfaaa2016-04-29 01:36:38 +0300443struct mlx5e_l2_table {
444 struct mlx5e_flow_table ft;
445 struct hlist_head netdev_uc[MLX5E_L2_ADDR_HASH_SIZE];
446 struct hlist_head netdev_mc[MLX5E_L2_ADDR_HASH_SIZE];
447 struct mlx5e_l2_rule broadcast;
448 struct mlx5e_l2_rule allmulti;
449 struct mlx5e_l2_rule promisc;
450 bool broadcast_enabled;
451 bool allmulti_enabled;
452 bool promisc_enabled;
453};
454
455/* L3/L4 traffic type classifier */
456struct mlx5e_ttc_table {
457 struct mlx5e_flow_table ft;
458 struct mlx5_flow_rule *rules[MLX5E_NUM_TT];
459};
460
Maor Gottlieb18c908e2016-04-29 01:36:41 +0300461#define ARFS_HASH_SHIFT BITS_PER_BYTE
462#define ARFS_HASH_SIZE BIT(BITS_PER_BYTE)
Maor Gottlieb1cabe6b2016-04-29 01:36:40 +0300463struct arfs_table {
464 struct mlx5e_flow_table ft;
465 struct mlx5_flow_rule *default_rule;
Maor Gottlieb18c908e2016-04-29 01:36:41 +0300466 struct hlist_head rules_hash[ARFS_HASH_SIZE];
Maor Gottlieb1cabe6b2016-04-29 01:36:40 +0300467};
468
469enum arfs_type {
470 ARFS_IPV4_TCP,
471 ARFS_IPV6_TCP,
472 ARFS_IPV4_UDP,
473 ARFS_IPV6_UDP,
474 ARFS_NUM_TYPES,
475};
476
477struct mlx5e_arfs_tables {
478 struct arfs_table arfs_tables[ARFS_NUM_TYPES];
Maor Gottlieb18c908e2016-04-29 01:36:41 +0300479 /* Protect aRFS rules list */
480 spinlock_t arfs_lock;
481 struct list_head rules;
482 int last_filter_id;
483 struct workqueue_struct *wq;
Maor Gottlieb1cabe6b2016-04-29 01:36:40 +0300484};
485
486/* NIC prio FTS */
487enum {
488 MLX5E_VLAN_FT_LEVEL = 0,
489 MLX5E_L2_FT_LEVEL,
490 MLX5E_TTC_FT_LEVEL,
491 MLX5E_ARFS_FT_LEVEL
492};
493
Maor Gottliebacff7972016-04-29 01:36:37 +0300494struct mlx5e_flow_steering {
495 struct mlx5_flow_namespace *ns;
496 struct mlx5e_tc_table tc;
497 struct mlx5e_vlan_table vlan;
Maor Gottlieb33cfaaa2016-04-29 01:36:38 +0300498 struct mlx5e_l2_table l2;
499 struct mlx5e_ttc_table ttc;
Maor Gottlieb1cabe6b2016-04-29 01:36:40 +0300500 struct mlx5e_arfs_tables arfs;
Amir Vadaif62b8bb82015-05-28 22:28:48 +0300501};
502
Tariq Toukan1da36692016-04-29 01:36:32 +0300503struct mlx5e_direct_tir {
504 u32 tirn;
505 u32 rqtn;
506};
507
Maor Gottliebacff7972016-04-29 01:36:37 +0300508enum {
509 MLX5E_TC_PRIO = 0,
510 MLX5E_NIC_PRIO
511};
512
Amir Vadaif62b8bb82015-05-28 22:28:48 +0300513struct mlx5e_priv {
514 /* priv data path fields - start */
Saeed Mahameed03289b82015-06-23 17:14:14 +0300515 struct mlx5e_sq **txq_to_sq_map;
Rana Shahout5283af82015-08-23 16:12:14 +0300516 int channeltc_to_txq_map[MLX5E_MAX_NUM_CHANNELS][MLX5E_MAX_NUM_TC];
Amir Vadaif62b8bb82015-05-28 22:28:48 +0300517 /* priv data path fields - end */
518
519 unsigned long state;
520 struct mutex state_lock; /* Protects Interface state */
521 struct mlx5_uar cq_uar;
522 u32 pdn;
Achiad Shochat3191e05f2015-06-11 14:47:33 +0300523 u32 tdn;
Matan Baraka606b0f2016-02-29 18:05:28 +0200524 struct mlx5_core_mkey mkey;
Tariq Toukanbc77b242016-04-20 22:02:15 +0300525 struct mlx5_core_mkey umr_mkey;
Achiad Shochat50cfa252015-08-04 14:05:41 +0300526 struct mlx5e_rq drop_rq;
Amir Vadaif62b8bb82015-05-28 22:28:48 +0300527
528 struct mlx5e_channel **channel;
529 u32 tisn[MLX5E_MAX_NUM_TC];
Tariq Toukan1da36692016-04-29 01:36:32 +0300530 u32 indir_rqtn;
531 u32 indir_tirn[MLX5E_NUM_INDIR_TIRS];
532 struct mlx5e_direct_tir direct_tir[MLX5E_MAX_NUM_CHANNELS];
Amir Vadaif62b8bb82015-05-28 22:28:48 +0300533
Maor Gottliebacff7972016-04-29 01:36:37 +0300534 struct mlx5e_flow_steering fs;
Matthew Finlayb3f63c32016-02-22 18:17:32 +0200535 struct mlx5e_vxlan_db vxlan;
Amir Vadaif62b8bb82015-05-28 22:28:48 +0300536
537 struct mlx5e_params params;
Matthew Finlay7bb29752016-05-01 22:59:56 +0300538 struct workqueue_struct *wq;
Amir Vadaif62b8bb82015-05-28 22:28:48 +0300539 struct work_struct update_carrier_work;
540 struct work_struct set_rx_mode_work;
541 struct delayed_work update_stats_work;
542
543 struct mlx5_core_dev *mdev;
544 struct net_device *netdev;
545 struct mlx5e_stats stats;
Eran Ben Elishaef9814d2015-12-29 14:58:31 +0200546 struct mlx5e_tstamp tstamp;
Rana Shahout593cf332016-04-20 22:02:10 +0300547 u16 q_counter;
Amir Vadaif62b8bb82015-05-28 22:28:48 +0300548};
549
Amir Vadaif62b8bb82015-05-28 22:28:48 +0300550enum mlx5e_link_mode {
551 MLX5E_1000BASE_CX_SGMII = 0,
552 MLX5E_1000BASE_KX = 1,
553 MLX5E_10GBASE_CX4 = 2,
554 MLX5E_10GBASE_KX4 = 3,
555 MLX5E_10GBASE_KR = 4,
556 MLX5E_20GBASE_KR2 = 5,
557 MLX5E_40GBASE_CR4 = 6,
558 MLX5E_40GBASE_KR4 = 7,
559 MLX5E_56GBASE_R4 = 8,
560 MLX5E_10GBASE_CR = 12,
561 MLX5E_10GBASE_SR = 13,
562 MLX5E_10GBASE_ER = 14,
563 MLX5E_40GBASE_SR4 = 15,
564 MLX5E_40GBASE_LR4 = 16,
565 MLX5E_100GBASE_CR4 = 20,
566 MLX5E_100GBASE_SR4 = 21,
567 MLX5E_100GBASE_KR4 = 22,
568 MLX5E_100GBASE_LR4 = 23,
569 MLX5E_100BASE_TX = 24,
Rana Shahout6e4c2182016-04-22 00:33:01 +0300570 MLX5E_1000BASE_T = 25,
Amir Vadaif62b8bb82015-05-28 22:28:48 +0300571 MLX5E_10GBASE_T = 26,
572 MLX5E_25GBASE_CR = 27,
573 MLX5E_25GBASE_KR = 28,
574 MLX5E_25GBASE_SR = 29,
575 MLX5E_50GBASE_CR2 = 30,
576 MLX5E_50GBASE_KR2 = 31,
577 MLX5E_LINK_MODES_NUMBER,
578};
579
580#define MLX5E_PROT_MASK(link_mode) (1 << link_mode)
581
Saeed Mahameed12be4b22015-06-11 14:47:31 +0300582void mlx5e_send_nop(struct mlx5e_sq *sq, bool notify_hw);
Amir Vadaif62b8bb82015-05-28 22:28:48 +0300583u16 mlx5e_select_queue(struct net_device *dev, struct sk_buff *skb,
584 void *accel_priv, select_queue_fallback_t fallback);
585netdev_tx_t mlx5e_xmit(struct sk_buff *skb, struct net_device *dev);
Amir Vadaif62b8bb82015-05-28 22:28:48 +0300586
587void mlx5e_completion_event(struct mlx5_core_cq *mcq);
588void mlx5e_cq_error_event(struct mlx5_core_cq *mcq, enum mlx5_event event);
589int mlx5e_napi_poll(struct napi_struct *napi, int budget);
Jesper Dangaard Brouer8ec736e2016-03-11 09:44:17 +0100590bool mlx5e_poll_tx_cq(struct mlx5e_cq *cq, int napi_budget);
Eric Dumazet44fb6fb2015-11-18 06:30:56 -0800591int mlx5e_poll_rx_cq(struct mlx5e_cq *cq, int budget);
Tariq Toukan461017c2016-04-20 22:02:13 +0300592
Tariq Toukan2f48af12016-04-20 22:02:12 +0300593void mlx5e_handle_rx_cqe(struct mlx5e_rq *rq, struct mlx5_cqe64 *cqe);
Tariq Toukan461017c2016-04-20 22:02:13 +0300594void mlx5e_handle_rx_cqe_mpwrq(struct mlx5e_rq *rq, struct mlx5_cqe64 *cqe);
Amir Vadaif62b8bb82015-05-28 22:28:48 +0300595bool mlx5e_post_rx_wqes(struct mlx5e_rq *rq);
Tariq Toukan2f48af12016-04-20 22:02:12 +0300596int mlx5e_alloc_rx_wqe(struct mlx5e_rq *rq, struct mlx5e_rx_wqe *wqe, u16 ix);
Tariq Toukan461017c2016-04-20 22:02:13 +0300597int mlx5e_alloc_rx_mpwqe(struct mlx5e_rq *rq, struct mlx5e_rx_wqe *wqe, u16 ix);
Tariq Toukanbc77b242016-04-20 22:02:15 +0300598void mlx5e_post_rx_fragmented_mpwqe(struct mlx5e_rq *rq);
599void mlx5e_complete_rx_linear_mpwqe(struct mlx5e_rq *rq,
600 struct mlx5_cqe64 *cqe,
601 u16 byte_cnt,
602 struct mlx5e_mpw_info *wi,
603 struct sk_buff *skb);
604void mlx5e_complete_rx_fragmented_mpwqe(struct mlx5e_rq *rq,
605 struct mlx5_cqe64 *cqe,
606 u16 byte_cnt,
607 struct mlx5e_mpw_info *wi,
608 struct sk_buff *skb);
609void mlx5e_free_rx_linear_mpwqe(struct mlx5e_rq *rq,
610 struct mlx5e_mpw_info *wi);
611void mlx5e_free_rx_fragmented_mpwqe(struct mlx5e_rq *rq,
612 struct mlx5e_mpw_info *wi);
Amir Vadaif62b8bb82015-05-28 22:28:48 +0300613struct mlx5_cqe64 *mlx5e_get_cqe(struct mlx5e_cq *cq);
614
615void mlx5e_update_stats(struct mlx5e_priv *priv);
616
Maor Gottliebacff7972016-04-29 01:36:37 +0300617int mlx5e_create_flow_steering(struct mlx5e_priv *priv);
618void mlx5e_destroy_flow_steering(struct mlx5e_priv *priv);
Maor Gottlieb33cfaaa2016-04-29 01:36:38 +0300619void mlx5e_init_l2_addr(struct mlx5e_priv *priv);
Maor Gottlieb1cabe6b2016-04-29 01:36:40 +0300620void mlx5e_destroy_flow_table(struct mlx5e_flow_table *ft);
Amir Vadaif62b8bb82015-05-28 22:28:48 +0300621void mlx5e_set_rx_mode_work(struct work_struct *work);
622
Eran Ben Elishaef9814d2015-12-29 14:58:31 +0200623void mlx5e_fill_hwstamp(struct mlx5e_tstamp *clock, u64 timestamp,
624 struct skb_shared_hwtstamps *hwts);
625void mlx5e_timestamp_init(struct mlx5e_priv *priv);
626void mlx5e_timestamp_cleanup(struct mlx5e_priv *priv);
627int mlx5e_hwstamp_set(struct net_device *dev, struct ifreq *ifr);
628int mlx5e_hwstamp_get(struct net_device *dev, struct ifreq *ifr);
Tariq Toukan7219ab32016-05-11 00:29:14 +0300629void mlx5e_modify_rx_cqe_compression(struct mlx5e_priv *priv, bool val);
Eran Ben Elishaef9814d2015-12-29 14:58:31 +0200630
Amir Vadaif62b8bb82015-05-28 22:28:48 +0300631int mlx5e_vlan_rx_add_vid(struct net_device *dev, __always_unused __be16 proto,
632 u16 vid);
633int mlx5e_vlan_rx_kill_vid(struct net_device *dev, __always_unused __be16 proto,
634 u16 vid);
635void mlx5e_enable_vlan_filter(struct mlx5e_priv *priv);
636void mlx5e_disable_vlan_filter(struct mlx5e_priv *priv);
Amir Vadaif62b8bb82015-05-28 22:28:48 +0300637
Gal Pressman36350112016-04-24 22:51:55 +0300638int mlx5e_modify_rqs_vsd(struct mlx5e_priv *priv, bool vsd);
639
Tariq Toukan1da36692016-04-29 01:36:32 +0300640int mlx5e_redirect_rqt(struct mlx5e_priv *priv, u32 rqtn, int sz, int ix);
Tariq Toukanbdfc0282016-02-29 21:17:12 +0200641void mlx5e_build_tir_ctx_hash(void *tirc, struct mlx5e_priv *priv);
Achiad Shochat2d75b2b2015-08-16 16:04:47 +0300642
Amir Vadaif62b8bb82015-05-28 22:28:48 +0300643int mlx5e_open_locked(struct net_device *netdev);
644int mlx5e_close_locked(struct net_device *netdev);
Tariq Toukand8c96602016-04-20 22:02:11 +0300645void mlx5e_build_default_indir_rqt(struct mlx5_core_dev *mdev,
646 u32 *indirection_rqt, int len,
Tariq Toukan85082db2016-02-29 21:17:13 +0200647 int num_channels);
Saeed Mahameedb797a682016-05-11 00:29:16 +0300648int mlx5e_get_max_linkspeed(struct mlx5_core_dev *mdev, u32 *speed);
Amir Vadaif62b8bb82015-05-28 22:28:48 +0300649
650static inline void mlx5e_tx_notify_hw(struct mlx5e_sq *sq,
Tariq Toukanbc77b242016-04-20 22:02:15 +0300651 struct mlx5_wqe_ctrl_seg *ctrl, int bf_sz)
Amir Vadaif62b8bb82015-05-28 22:28:48 +0300652{
Achiad Shochat88a85f92015-07-23 23:35:59 +0300653 u16 ofst = MLX5_BF_OFFSET + sq->bf_offset;
654
Amir Vadaif62b8bb82015-05-28 22:28:48 +0300655 /* ensure wqe is visible to device before updating doorbell record */
656 dma_wmb();
657
658 *sq->wq.db = cpu_to_be32(sq->pc);
659
660 /* ensure doorbell record is visible to device before ringing the
661 * doorbell
662 */
663 wmb();
Moshe Lazer0ba42242016-03-02 00:13:40 +0200664 if (bf_sz)
Tariq Toukanbc77b242016-04-20 22:02:15 +0300665 __iowrite64_copy(sq->uar_map + ofst, ctrl, bf_sz);
Moshe Lazer0ba42242016-03-02 00:13:40 +0200666 else
Tariq Toukanbc77b242016-04-20 22:02:15 +0300667 mlx5_write64((__be32 *)ctrl, sq->uar_map + ofst, NULL);
Moshe Lazer0ba42242016-03-02 00:13:40 +0200668 /* flush the write-combining mapped buffer */
669 wmb();
Amir Vadaif62b8bb82015-05-28 22:28:48 +0300670
671 sq->bf_offset ^= sq->bf_buf_size;
672}
673
674static inline void mlx5e_cq_arm(struct mlx5e_cq *cq)
675{
676 struct mlx5_core_cq *mcq;
677
678 mcq = &cq->mcq;
679 mlx5_cq_arm(mcq, MLX5_CQ_DB_REQ_NOT, mcq->uar->map, NULL, cq->wq.cc);
680}
681
Achiad Shochat3435ab52015-11-03 08:07:21 +0200682static inline int mlx5e_get_max_num_channels(struct mlx5_core_dev *mdev)
683{
684 return min_t(int, mdev->priv.eq_table.num_comp_vectors,
685 MLX5E_MAX_NUM_CHANNELS);
686}
687
Tariq Toukanbc77b242016-04-20 22:02:15 +0300688static inline int mlx5e_get_mtt_octw(int npages)
689{
690 return ALIGN(npages, 8) / 2;
691}
692
Amir Vadaif62b8bb82015-05-28 22:28:48 +0300693extern const struct ethtool_ops mlx5e_ethtool_ops;
Saeed Mahameed08fb1da2016-02-22 18:17:26 +0200694#ifdef CONFIG_MLX5_CORE_EN_DCB
695extern const struct dcbnl_rtnl_ops mlx5e_dcbnl_ops;
696int mlx5e_dcbnl_ieee_setets_core(struct mlx5e_priv *priv, struct ieee_ets *ets);
697#endif
698
Maor Gottlieb1cabe6b2016-04-29 01:36:40 +0300699#ifndef CONFIG_RFS_ACCEL
700static inline int mlx5e_arfs_create_tables(struct mlx5e_priv *priv)
701{
702 return 0;
703}
704
705static inline void mlx5e_arfs_destroy_tables(struct mlx5e_priv *priv) {}
Maor Gottlieb45bf454a2016-04-29 01:36:42 +0300706
707static inline int mlx5e_arfs_enable(struct mlx5e_priv *priv)
708{
709 return -ENOTSUPP;
710}
711
712static inline int mlx5e_arfs_disable(struct mlx5e_priv *priv)
713{
714 return -ENOTSUPP;
715}
Maor Gottlieb1cabe6b2016-04-29 01:36:40 +0300716#else
717int mlx5e_arfs_create_tables(struct mlx5e_priv *priv);
718void mlx5e_arfs_destroy_tables(struct mlx5e_priv *priv);
Maor Gottlieb45bf454a2016-04-29 01:36:42 +0300719int mlx5e_arfs_enable(struct mlx5e_priv *priv);
720int mlx5e_arfs_disable(struct mlx5e_priv *priv);
Maor Gottlieb18c908e2016-04-29 01:36:41 +0300721int mlx5e_rx_flow_steer(struct net_device *dev, const struct sk_buff *skb,
722 u16 rxq_index, u32 flow_id);
Maor Gottlieb1cabe6b2016-04-29 01:36:40 +0300723#endif
724
Achiad Shochat58d52292015-07-23 23:35:58 +0300725u16 mlx5e_get_max_inline_cap(struct mlx5_core_dev *mdev);
Matthew Finlay1afff422016-02-22 18:17:31 +0200726
727#endif /* __MLX5_EN_H__ */