blob: 334ec483480ba657da74487a03c15c2f011f1257 [file] [log] [blame]
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -07001/*
2 * Copyright (c) 2007 Mellanox Technologies. All rights reserved.
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 *
32 */
33
34#ifndef _MLX4_EN_H_
35#define _MLX4_EN_H_
36
Jiri Pirkof1b553f2011-07-20 04:54:22 +000037#include <linux/bitops.h>
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -070038#include <linux/compiler.h>
39#include <linux/list.h>
40#include <linux/mutex.h>
41#include <linux/netdevice.h>
Jiri Pirkof1b553f2011-07-20 04:54:22 +000042#include <linux/if_vlan.h>
Amir Vadai564c2742012-04-04 21:33:26 +000043#ifdef CONFIG_MLX4_EN_DCB
44#include <linux/dcbnl.h>
45#endif
Amir Vadai1eb8c692012-07-18 22:33:52 +000046#include <linux/cpu_rmap.h>
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -070047
48#include <linux/mlx4/device.h>
49#include <linux/mlx4/qp.h>
50#include <linux/mlx4/cq.h>
51#include <linux/mlx4/srq.h>
52#include <linux/mlx4/doorbell.h>
Yevgeny Petriline7c1c2c42010-08-24 03:46:18 +000053#include <linux/mlx4/cmd.h>
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -070054
55#include "en_port.h"
56
57#define DRV_NAME "mlx4_en"
Yevgeny Petrilin6edf91d2011-12-13 04:19:34 +000058#define DRV_VERSION "2.0"
59#define DRV_RELDATE "Dec 2011"
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -070060
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -070061#define MLX4_EN_MSG_LEVEL (NETIF_MSG_LINK | NETIF_MSG_IFDOWN)
62
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -070063/*
64 * Device constants
65 */
66
67
68#define MLX4_EN_PAGE_SHIFT 12
69#define MLX4_EN_PAGE_SIZE (1 << MLX4_EN_PAGE_SHIFT)
Amir Vadaid3179662012-12-02 03:49:23 +000070#define DEF_RX_RINGS 16
71#define MAX_RX_RINGS 128
Yevgeny Petrilin1fb98762011-03-22 22:37:52 +000072#define MIN_RX_RINGS 4
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -070073#define TXBB_SIZE 64
74#define HEADROOM (2048 / TXBB_SIZE + 1)
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -070075#define STAMP_STRIDE 64
76#define STAMP_DWORDS (STAMP_STRIDE / 4)
77#define STAMP_SHIFT 31
78#define STAMP_VAL 0x7fffffff
79#define STATS_DELAY (HZ / 4)
Hadar Hen Zion82067282012-07-05 04:03:49 +000080#define MAX_NUM_OF_FS_RULES 256
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -070081
Amir Vadai1eb8c692012-07-18 22:33:52 +000082#define MLX4_EN_FILTER_HASH_SHIFT 4
83#define MLX4_EN_FILTER_EXPIRY_QUOTA 60
84
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -070085/* Typical TSO descriptor with 16 gather entries is 352 bytes... */
86#define MAX_DESC_SIZE 512
87#define MAX_DESC_TXBBS (MAX_DESC_SIZE / TXBB_SIZE)
88
89/*
90 * OS related constants and tunables
91 */
92
93#define MLX4_EN_WATCHDOG_TIMEOUT (15 * HZ)
94
Thadeu Lima de Souza Cascardo117980c2012-04-04 09:40:40 +000095/* Use the maximum between 16384 and a single page */
96#define MLX4_EN_ALLOC_SIZE PAGE_ALIGN(16384)
97#define MLX4_EN_ALLOC_ORDER get_order(MLX4_EN_ALLOC_SIZE)
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -070098
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -070099/* Receive fragment sizes; we use at most 4 fragments (for 9600 byte MTU
100 * and 4K allocations) */
101enum {
102 FRAG_SZ0 = 512 - NET_IP_ALIGN,
103 FRAG_SZ1 = 1024,
104 FRAG_SZ2 = 4096,
105 FRAG_SZ3 = MLX4_EN_ALLOC_SIZE
106};
107#define MLX4_EN_MAX_RX_FRAGS 4
108
Yevgeny Petrilinbd531e32009-01-08 10:57:37 -0800109/* Maximum ring sizes */
110#define MLX4_EN_MAX_TX_SIZE 8192
111#define MLX4_EN_MAX_RX_SIZE 8192
112
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +0000113/* Minimum ring size for our page-allocation scheme to work */
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700114#define MLX4_EN_MIN_RX_SIZE (MLX4_EN_ALLOC_SIZE / SMP_CACHE_BYTES)
115#define MLX4_EN_MIN_TX_SIZE (4096 / TXBB_SIZE)
116
Yevgeny Petrilinf813cad2009-06-01 23:24:07 +0000117#define MLX4_EN_SMALL_PKT_SIZE 64
Amir Vadaibc6a4742012-05-17 00:58:10 +0000118#define MLX4_EN_MAX_TX_RING_P_UP 32
Amir Vadai564c2742012-04-04 21:33:26 +0000119#define MLX4_EN_NUM_UP 8
Yevgeny Petrilinf813cad2009-06-01 23:24:07 +0000120#define MLX4_EN_DEF_TX_RING_SIZE 512
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700121#define MLX4_EN_DEF_RX_RING_SIZE 1024
Amir Vadaid3179662012-12-02 03:49:23 +0000122#define MAX_TX_RINGS (MLX4_EN_MAX_TX_RING_P_UP * \
123 MLX4_EN_NUM_UP)
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700124
Yevgeny Petrilin3db36fb2009-06-01 23:23:13 +0000125/* Target number of packets to coalesce with interrupt moderation */
126#define MLX4_EN_RX_COAL_TARGET 44
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700127#define MLX4_EN_RX_COAL_TIME 0x10
128
Yevgeny Petriline22979d2012-04-23 02:18:39 +0000129#define MLX4_EN_TX_COAL_PKTS 16
Eric Dumazetecfd2ce2012-11-05 16:20:42 +0000130#define MLX4_EN_TX_COAL_TIME 0x10
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700131
132#define MLX4_EN_RX_RATE_LOW 400000
133#define MLX4_EN_RX_COAL_TIME_LOW 0
134#define MLX4_EN_RX_RATE_HIGH 450000
135#define MLX4_EN_RX_COAL_TIME_HIGH 128
136#define MLX4_EN_RX_SIZE_THRESH 1024
137#define MLX4_EN_RX_RATE_THRESH (1000000 / MLX4_EN_RX_COAL_TIME_HIGH)
138#define MLX4_EN_SAMPLE_INTERVAL 0
Yevgeny Petrilin46afd0f2011-03-22 22:37:36 +0000139#define MLX4_EN_AVG_PKT_SMALL 256
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700140
141#define MLX4_EN_AUTO_CONF 0xffff
142
143#define MLX4_EN_DEF_RX_PAUSE 1
144#define MLX4_EN_DEF_TX_PAUSE 1
145
André Goddard Rosaaf901ca2009-11-14 13:09:05 -0200146/* Interval between successive polls in the Tx routine when polling is used
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700147 instead of interrupts (in per-core Tx rings) - should be power of 2 */
148#define MLX4_EN_TX_POLL_MODER 16
149#define MLX4_EN_TX_POLL_TIMEOUT (HZ / 4)
150
151#define ETH_LLC_SNAP_SIZE 8
152
153#define SMALL_PACKET_SIZE (256 - NET_IP_ALIGN)
154#define HEADER_COPY_SIZE (128 - NET_IP_ALIGN)
Yevgeny Petriline7c1c2c42010-08-24 03:46:18 +0000155#define MLX4_LOOPBACK_TEST_PAYLOAD (HEADER_COPY_SIZE - ETH_HLEN)
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700156
157#define MLX4_EN_MIN_MTU 46
158#define ETH_BCAST 0xffffffffffffULL
159
Yevgeny Petriline7c1c2c42010-08-24 03:46:18 +0000160#define MLX4_EN_LOOPBACK_RETRIES 5
161#define MLX4_EN_LOOPBACK_TIMEOUT 100
162
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700163#ifdef MLX4_EN_PERF_STAT
164/* Number of samples to 'average' */
165#define AVG_SIZE 128
166#define AVG_FACTOR 1024
167#define NUM_PERF_STATS NUM_PERF_COUNTERS
168
169#define INC_PERF_COUNTER(cnt) (++(cnt))
170#define ADD_PERF_COUNTER(cnt, add) ((cnt) += (add))
171#define AVG_PERF_COUNTER(cnt, sample) \
172 ((cnt) = ((cnt) * (AVG_SIZE - 1) + (sample) * AVG_FACTOR) / AVG_SIZE)
173#define GET_PERF_COUNTER(cnt) (cnt)
174#define GET_AVG_PERF_COUNTER(cnt) ((cnt) / AVG_FACTOR)
175
176#else
177
178#define NUM_PERF_STATS 0
179#define INC_PERF_COUNTER(cnt) do {} while (0)
180#define ADD_PERF_COUNTER(cnt, add) do {} while (0)
181#define AVG_PERF_COUNTER(cnt, sample) do {} while (0)
182#define GET_PERF_COUNTER(cnt) (0)
183#define GET_AVG_PERF_COUNTER(cnt) (0)
184#endif /* MLX4_EN_PERF_STAT */
185
186/*
187 * Configurables
188 */
189
190enum cq_type {
191 RX = 0,
192 TX = 1,
193};
194
195
196/*
197 * Useful macros
198 */
199#define ROUNDUP_LOG2(x) ilog2(roundup_pow_of_two(x))
200#define XNOR(x, y) (!(x) == !(y))
201#define ILLEGAL_MAC(addr) (addr == 0xffffffffffffULL || addr == 0x0)
202
203
204struct mlx4_en_tx_info {
205 struct sk_buff *skb;
206 u32 nr_txbb;
Yevgeny Petrilin5b263f52012-04-23 02:18:50 +0000207 u32 nr_bytes;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700208 u8 linear;
209 u8 data_offset;
Yevgeny Petrilin41efea52009-01-08 10:57:15 -0800210 u8 inl;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700211};
212
213
214#define MLX4_EN_BIT_DESC_OWN 0x80000000
215#define CTRL_SIZE sizeof(struct mlx4_wqe_ctrl_seg)
216#define MLX4_EN_MEMTYPE_PAD 0x100
217#define DS_SIZE sizeof(struct mlx4_wqe_data_seg)
218
219
220struct mlx4_en_tx_desc {
221 struct mlx4_wqe_ctrl_seg ctrl;
222 union {
223 struct mlx4_wqe_data_seg data; /* at least one data segment */
224 struct mlx4_wqe_lso_seg lso;
225 struct mlx4_wqe_inline_seg inl;
226 };
227};
228
229#define MLX4_EN_USE_SRQ 0x01000000
230
Yevgeny Petrilin725c8992011-03-22 22:38:07 +0000231#define MLX4_EN_CX3_LOW_ID 0x1000
232#define MLX4_EN_CX3_HIGH_ID 0x1005
233
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700234struct mlx4_en_rx_alloc {
235 struct page *page;
Thadeu Lima de Souza Cascardo4cce66c2012-07-16 07:01:53 +0000236 dma_addr_t dma;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700237 u16 offset;
238};
239
240struct mlx4_en_tx_ring {
241 struct mlx4_hwq_resources wqres;
242 u32 size ; /* number of TXBBs */
243 u32 size_mask;
244 u16 stride;
245 u16 cqn; /* index of port CQ associated with this ring */
246 u32 prod;
247 u32 cons;
248 u32 buf_size;
249 u32 doorbell_qpn;
250 void *buf;
251 u16 poll_cnt;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700252 struct mlx4_en_tx_info *tx_info;
253 u8 *bounce_buf;
254 u32 last_nr_txbb;
255 struct mlx4_qp qp;
256 struct mlx4_qp_context context;
257 int qpn;
258 enum mlx4_qp_state qp_state;
259 struct mlx4_srq dummy;
260 unsigned long bytes;
261 unsigned long packets;
Yevgeny Petrilinad043782011-10-18 01:50:56 +0000262 unsigned long tx_csum;
Yevgeny Petrilin87a5c382011-03-22 22:38:52 +0000263 struct mlx4_bf bf;
264 bool bf_enabled;
Yevgeny Petrilin5b263f52012-04-23 02:18:50 +0000265 struct netdev_queue *tx_queue;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700266};
267
268struct mlx4_en_rx_desc {
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700269 /* actual number of entries depends on rx ring stride */
270 struct mlx4_wqe_data_seg data[0];
271};
272
273struct mlx4_en_rx_ring {
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700274 struct mlx4_hwq_resources wqres;
275 struct mlx4_en_rx_alloc page_alloc[MLX4_EN_MAX_RX_FRAGS];
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700276 u32 size ; /* number of Rx descs*/
277 u32 actual_size;
278 u32 size_mask;
279 u16 stride;
280 u16 log_stride;
281 u16 cqn; /* index of port CQ associated with this ring */
282 u32 prod;
283 u32 cons;
284 u32 buf_size;
Yevgeny Petrilin4a5f4dd2011-11-14 14:25:36 -0500285 u8 fcs_del;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700286 void *buf;
287 void *rx_info;
288 unsigned long bytes;
289 unsigned long packets;
Yevgeny Petrilinad043782011-10-18 01:50:56 +0000290 unsigned long csum_ok;
291 unsigned long csum_none;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700292};
293
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700294struct mlx4_en_cq {
295 struct mlx4_cq mcq;
296 struct mlx4_hwq_resources wqres;
297 int ring;
298 spinlock_t lock;
299 struct net_device *dev;
300 struct napi_struct napi;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700301 int size;
302 int buf_size;
303 unsigned vector;
304 enum cq_type is_tx;
305 u16 moder_time;
306 u16 moder_cnt;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700307 struct mlx4_cqe *buf;
308#define MLX4_EN_OPCODE_ERROR 0x1e
309};
310
311struct mlx4_en_port_profile {
312 u32 flags;
313 u32 tx_ring_num;
314 u32 rx_ring_num;
315 u32 tx_ring_size;
316 u32 rx_ring_size;
Yevgeny Petrilind53b93f2008-11-05 04:48:36 +0000317 u8 rx_pause;
318 u8 rx_ppp;
319 u8 tx_pause;
320 u8 tx_ppp;
Yevgeny Petrilin93d3e362012-01-17 22:54:55 +0000321 int rss_rings;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700322};
323
324struct mlx4_en_profile {
325 int rss_xor;
Yevgeny Petrilin05339432010-08-24 03:46:42 +0000326 int udp_rss;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700327 u8 rss_mask;
328 u32 active_ports;
329 u32 small_pkt_int;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700330 u8 no_reset;
Amir Vadaibc6a4742012-05-17 00:58:10 +0000331 u8 num_tx_rings_p_up;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700332 struct mlx4_en_port_profile prof[MLX4_MAX_PORTS + 1];
333};
334
335struct mlx4_en_dev {
336 struct mlx4_dev *dev;
337 struct pci_dev *pdev;
338 struct mutex state_lock;
339 struct net_device *pndev[MLX4_MAX_PORTS + 1];
340 u32 port_cnt;
341 bool device_up;
342 struct mlx4_en_profile profile;
343 u32 LSO_support;
344 struct workqueue_struct *workqueue;
345 struct device *dma_device;
346 void __iomem *uar_map;
347 struct mlx4_uar priv_uar;
348 struct mlx4_mr mr;
349 u32 priv_pdn;
350 spinlock_t uar_lock;
Yevgeny Petrilind7e1a482010-08-24 03:46:38 +0000351 u8 mac_removed[MLX4_MAX_PORTS + 1];
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700352};
353
354
355struct mlx4_en_rss_map {
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700356 int base_qpn;
Yevgeny Petrilinb6b912e2009-08-06 19:27:51 -0700357 struct mlx4_qp qps[MAX_RX_RINGS];
358 enum mlx4_qp_state state[MAX_RX_RINGS];
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700359 struct mlx4_qp indir_qp;
360 enum mlx4_qp_state indir_state;
361};
362
Yevgeny Petriline7c1c2c42010-08-24 03:46:18 +0000363struct mlx4_en_port_state {
364 int link_state;
365 int link_speed;
366 int transciver;
367};
368
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700369struct mlx4_en_pkt_stats {
370 unsigned long broadcast;
371 unsigned long rx_prio[8];
372 unsigned long tx_prio[8];
373#define NUM_PKT_STATS 17
374};
375
376struct mlx4_en_port_stats {
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700377 unsigned long tso_packets;
378 unsigned long queue_stopped;
379 unsigned long wake_queue;
380 unsigned long tx_timeout;
381 unsigned long rx_alloc_failed;
382 unsigned long rx_chksum_good;
383 unsigned long rx_chksum_none;
384 unsigned long tx_chksum_offload;
Yevgeny Petrilind61702f2010-09-05 22:20:24 +0000385#define NUM_PORT_STATS 8
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700386};
387
388struct mlx4_en_perf_stats {
389 u32 tx_poll;
390 u64 tx_pktsz_avg;
391 u32 inflight_avg;
392 u16 tx_coal_avg;
393 u16 rx_coal_avg;
394 u32 napi_quota;
395#define NUM_PERF_COUNTERS 6
396};
397
Yevgeny Petrilin6d199932012-07-05 04:03:43 +0000398enum mlx4_en_mclist_act {
399 MCLIST_NONE,
400 MCLIST_REM,
401 MCLIST_ADD,
402};
403
404struct mlx4_en_mc_list {
405 struct list_head list;
406 enum mlx4_en_mclist_act action;
407 u8 addr[ETH_ALEN];
Hadar Hen Zion0ff1fb62012-07-05 04:03:46 +0000408 u64 reg_id;
Yevgeny Petrilin6d199932012-07-05 04:03:43 +0000409};
410
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700411struct mlx4_en_frag_info {
412 u16 frag_size;
413 u16 frag_prefix_size;
414 u16 frag_stride;
415 u16 frag_align;
416 u16 last_offset;
417
418};
419
Amir Vadai564c2742012-04-04 21:33:26 +0000420#ifdef CONFIG_MLX4_EN_DCB
421/* Minimal TC BW - setting to 0 will block traffic */
422#define MLX4_EN_BW_MIN 1
423#define MLX4_EN_BW_MAX 100 /* Utilize 100% of the line */
424
425#define MLX4_EN_TC_ETS 7
426
427#endif
428
Hadar Hen Zion82067282012-07-05 04:03:49 +0000429struct ethtool_flow_id {
430 struct ethtool_rx_flow_spec flow_spec;
431 u64 id;
432};
433
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700434struct mlx4_en_priv {
435 struct mlx4_en_dev *mdev;
436 struct mlx4_en_port_profile *prof;
437 struct net_device *dev;
Jiri Pirkof1b553f2011-07-20 04:54:22 +0000438 unsigned long active_vlans[BITS_TO_LONGS(VLAN_N_VID)];
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700439 struct net_device_stats stats;
440 struct net_device_stats ret_stats;
Yevgeny Petriline7c1c2c42010-08-24 03:46:18 +0000441 struct mlx4_en_port_state port_state;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700442 spinlock_t stats_lock;
Hadar Hen Zion82067282012-07-05 04:03:49 +0000443 struct ethtool_flow_id ethtool_rules[MAX_NUM_OF_FS_RULES];
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700444
Alexander Guller6b4d8d92011-10-09 05:38:23 +0000445 unsigned long last_moder_packets[MAX_RX_RINGS];
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700446 unsigned long last_moder_tx_packets;
Alexander Guller6b4d8d92011-10-09 05:38:23 +0000447 unsigned long last_moder_bytes[MAX_RX_RINGS];
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700448 unsigned long last_moder_jiffies;
Alexander Guller6b4d8d92011-10-09 05:38:23 +0000449 int last_moder_time[MAX_RX_RINGS];
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700450 u16 rx_usecs;
451 u16 rx_frames;
452 u16 tx_usecs;
453 u16 tx_frames;
454 u32 pkt_rate_low;
455 u16 rx_usecs_low;
456 u32 pkt_rate_high;
457 u16 rx_usecs_high;
458 u16 sample_interval;
459 u16 adaptive_rx_coal;
460 u32 msg_enable;
Yevgeny Petriline7c1c2c42010-08-24 03:46:18 +0000461 u32 loopback_ok;
462 u32 validate_loopback;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700463
464 struct mlx4_hwq_resources res;
465 int link_state;
466 int last_link_state;
467 bool port_up;
468 int port;
469 int registered;
470 int allocated;
471 int stride;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700472 u64 mac;
473 int mac_index;
474 unsigned max_mtu;
475 int base_qpn;
476
477 struct mlx4_en_rss_map rss_map;
Or Gerlitz4ef2a432012-03-06 04:03:41 +0000478 __be32 ctrl_flags;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700479 u32 flags;
480#define MLX4_EN_FLAG_PROMISC 0x1
Yevgeny Petrilin16792002011-03-22 22:38:31 +0000481#define MLX4_EN_FLAG_MC_PROMISC 0x2
Amir Vadaid3179662012-12-02 03:49:23 +0000482 u8 num_tx_rings_p_up;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700483 u32 tx_ring_num;
484 u32 rx_ring_num;
485 u32 rx_skb_size;
486 struct mlx4_en_frag_info frag_info[MLX4_EN_MAX_RX_FRAGS];
487 u16 num_frags;
488 u16 log_rx_info;
489
Amir Vadaibc6a4742012-05-17 00:58:10 +0000490 struct mlx4_en_tx_ring *tx_ring;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700491 struct mlx4_en_rx_ring rx_ring[MAX_RX_RINGS];
Amir Vadaibc6a4742012-05-17 00:58:10 +0000492 struct mlx4_en_cq *tx_cq;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700493 struct mlx4_en_cq rx_cq[MAX_RX_RINGS];
Hadar Hen Zioncabdc8ee2012-07-05 04:03:50 +0000494 struct mlx4_qp drop_qp;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700495 struct work_struct mcast_task;
496 struct work_struct mac_task;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700497 struct work_struct watchdog_task;
498 struct work_struct linkstate_task;
499 struct delayed_work stats_task;
500 struct mlx4_en_perf_stats pstats;
501 struct mlx4_en_pkt_stats pkstats;
502 struct mlx4_en_port_stats port_stats;
Eugenia Emantayev93ece0c2012-01-19 09:45:05 +0000503 u64 stats_bitmap;
Yevgeny Petrilin6d199932012-07-05 04:03:43 +0000504 struct list_head mc_list;
505 struct list_head curr_list;
Hadar Hen Zion0ff1fb62012-07-05 04:03:46 +0000506 u64 broadcast_id;
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700507 struct mlx4_en_stat_out_mbox hw_stats;
Eli Cohen4c3eb3c2010-08-26 17:19:22 +0300508 int vids[128];
Yevgeny Petrilin14c07b12011-03-22 22:37:59 +0000509 bool wol;
Yevgeny Petrilinebf8c9a2012-03-06 04:03:34 +0000510 struct device *ddev;
Yevgeny Petrilin044ca2a2012-06-25 00:24:13 +0000511 int base_tx_qpn;
Amir Vadai564c2742012-04-04 21:33:26 +0000512
513#ifdef CONFIG_MLX4_EN_DCB
514 struct ieee_ets ets;
Amir Vadai109d2442012-04-04 21:33:31 +0000515 u16 maxrate[IEEE_8021QAZ_MAX_TCS];
Amir Vadai564c2742012-04-04 21:33:26 +0000516#endif
Amir Vadai1eb8c692012-07-18 22:33:52 +0000517#ifdef CONFIG_RFS_ACCEL
518 spinlock_t filters_lock;
519 int last_filter_id;
520 struct list_head filters;
521 struct hlist_head filter_hash[1 << MLX4_EN_FILTER_HASH_SHIFT];
522#endif
523
Yevgeny Petrilin14c07b12011-03-22 22:37:59 +0000524};
525
526enum mlx4_en_wol {
527 MLX4_EN_WOL_MAGIC = (1ULL << 61),
528 MLX4_EN_WOL_ENABLED = (1ULL << 62),
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700529};
530
Or Gerlitz0d9fdaa2011-11-26 19:55:06 +0000531#define MLX4_EN_WOL_DO_MODIFY (1ULL << 63)
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700532
533void mlx4_en_destroy_netdev(struct net_device *dev);
534int mlx4_en_init_netdev(struct mlx4_en_dev *mdev, int port,
535 struct mlx4_en_port_profile *prof);
536
Yevgeny Petrilin18cc42a2008-12-29 18:39:20 -0800537int mlx4_en_start_port(struct net_device *dev);
538void mlx4_en_stop_port(struct net_device *dev);
539
Alexander Gullerfe0af032011-10-09 05:26:46 +0000540void mlx4_en_free_resources(struct mlx4_en_priv *priv);
Yevgeny Petrilin18cc42a2008-12-29 18:39:20 -0800541int mlx4_en_alloc_resources(struct mlx4_en_priv *priv);
542
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700543int mlx4_en_create_cq(struct mlx4_en_priv *priv, struct mlx4_en_cq *cq,
544 int entries, int ring, enum cq_type mode);
Alexander Gullerfe0af032011-10-09 05:26:46 +0000545void mlx4_en_destroy_cq(struct mlx4_en_priv *priv, struct mlx4_en_cq *cq);
Alexander Guller76532d02011-10-09 05:26:31 +0000546int mlx4_en_activate_cq(struct mlx4_en_priv *priv, struct mlx4_en_cq *cq,
547 int cq_idx);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700548void mlx4_en_deactivate_cq(struct mlx4_en_priv *priv, struct mlx4_en_cq *cq);
549int mlx4_en_set_cq_moder(struct mlx4_en_priv *priv, struct mlx4_en_cq *cq);
550int mlx4_en_arm_cq(struct mlx4_en_priv *priv, struct mlx4_en_cq *cq);
551
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700552void mlx4_en_tx_irq(struct mlx4_cq *mcq);
Yevgeny Petrilinf813cad2009-06-01 23:24:07 +0000553u16 mlx4_en_select_queue(struct net_device *dev, struct sk_buff *skb);
Stephen Hemminger613573252009-08-31 19:50:58 +0000554netdev_tx_t mlx4_en_xmit(struct sk_buff *skb, struct net_device *dev);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700555
556int mlx4_en_create_tx_ring(struct mlx4_en_priv *priv, struct mlx4_en_tx_ring *ring,
Yevgeny Petrilin87a5c382011-03-22 22:38:52 +0000557 int qpn, u32 size, u16 stride);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700558void mlx4_en_destroy_tx_ring(struct mlx4_en_priv *priv, struct mlx4_en_tx_ring *ring);
559int mlx4_en_activate_tx_ring(struct mlx4_en_priv *priv,
560 struct mlx4_en_tx_ring *ring,
Amir Vadai0e98b522012-04-04 21:33:24 +0000561 int cq, int user_prio);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700562void mlx4_en_deactivate_tx_ring(struct mlx4_en_priv *priv,
563 struct mlx4_en_tx_ring *ring);
564
565int mlx4_en_create_rx_ring(struct mlx4_en_priv *priv,
566 struct mlx4_en_rx_ring *ring,
567 u32 size, u16 stride);
568void mlx4_en_destroy_rx_ring(struct mlx4_en_priv *priv,
Thadeu Lima de Souza Cascardo68355f72012-02-06 08:39:49 +0000569 struct mlx4_en_rx_ring *ring,
570 u32 size, u16 stride);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700571int mlx4_en_activate_rx_rings(struct mlx4_en_priv *priv);
572void mlx4_en_deactivate_rx_ring(struct mlx4_en_priv *priv,
573 struct mlx4_en_rx_ring *ring);
574int mlx4_en_process_rx_cq(struct net_device *dev,
575 struct mlx4_en_cq *cq,
576 int budget);
577int mlx4_en_poll_rx_cq(struct napi_struct *napi, int budget);
578void mlx4_en_fill_qp_context(struct mlx4_en_priv *priv, int size, int stride,
Amir Vadai0e98b522012-04-04 21:33:24 +0000579 int is_tx, int rss, int qpn, int cqn, int user_prio,
580 struct mlx4_qp_context *context);
Yevgeny Petrilin966508f2009-04-20 04:30:03 +0000581void mlx4_en_sqp_event(struct mlx4_qp *qp, enum mlx4_event event);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700582int mlx4_en_map_buffer(struct mlx4_buf *buf);
583void mlx4_en_unmap_buffer(struct mlx4_buf *buf);
584
585void mlx4_en_calc_rx_buf(struct net_device *dev);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700586int mlx4_en_config_rss_steer(struct mlx4_en_priv *priv);
587void mlx4_en_release_rss_steer(struct mlx4_en_priv *priv);
Hadar Hen Zioncabdc8ee2012-07-05 04:03:50 +0000588int mlx4_en_create_drop_qp(struct mlx4_en_priv *priv);
589void mlx4_en_destroy_drop_qp(struct mlx4_en_priv *priv);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700590int mlx4_en_free_tx_buf(struct net_device *dev, struct mlx4_en_tx_ring *ring);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700591void mlx4_en_rx_irq(struct mlx4_cq *mcq);
592
593int mlx4_SET_MCAST_FLTR(struct mlx4_dev *dev, u8 port, u64 mac, u64 clear, u8 mode);
Jiri Pirkof1b553f2011-07-20 04:54:22 +0000594int mlx4_SET_VLAN_FLTR(struct mlx4_dev *dev, struct mlx4_en_priv *priv);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700595
596int mlx4_en_DUMP_ETH_STATS(struct mlx4_en_dev *mdev, u8 port, u8 reset);
Yevgeny Petriline7c1c2c42010-08-24 03:46:18 +0000597int mlx4_en_QUERY_PORT(struct mlx4_en_dev *mdev, u8 port);
598
Amir Vadai564c2742012-04-04 21:33:26 +0000599#ifdef CONFIG_MLX4_EN_DCB
600extern const struct dcbnl_rtnl_ops mlx4_en_dcbnl_ops;
601#endif
602
Amir Vadaid3179662012-12-02 03:49:23 +0000603int mlx4_en_setup_tc(struct net_device *dev, u8 up);
604
Amir Vadai1eb8c692012-07-18 22:33:52 +0000605#ifdef CONFIG_RFS_ACCEL
606void mlx4_en_cleanup_filters(struct mlx4_en_priv *priv,
607 struct mlx4_en_rx_ring *rx_ring);
608#endif
609
Yevgeny Petriline7c1c2c42010-08-24 03:46:18 +0000610#define MLX4_EN_NUM_SELF_TEST 5
611void mlx4_en_ex_selftest(struct net_device *dev, u32 *flags, u64 *buf);
612u64 mlx4_en_mac_to_u64(u8 *addr);
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700613
614/*
615 * Globals
616 */
617extern const struct ethtool_ops mlx4_en_ethtool_ops;
Joe Perches0a645e82010-07-10 07:22:46 +0000618
619
620
621/*
622 * printk / logging functions
623 */
624
Joe Perchesb9075fa2011-10-31 17:11:33 -0700625__printf(3, 4)
Joe Perches0a645e82010-07-10 07:22:46 +0000626int en_print(const char *level, const struct mlx4_en_priv *priv,
Joe Perchesb9075fa2011-10-31 17:11:33 -0700627 const char *format, ...);
Joe Perches0a645e82010-07-10 07:22:46 +0000628
629#define en_dbg(mlevel, priv, format, arg...) \
630do { \
631 if (NETIF_MSG_##mlevel & priv->msg_enable) \
632 en_print(KERN_DEBUG, priv, format, ##arg); \
633} while (0)
634#define en_warn(priv, format, arg...) \
635 en_print(KERN_WARNING, priv, format, ##arg)
636#define en_err(priv, format, arg...) \
637 en_print(KERN_ERR, priv, format, ##arg)
Yevgeny Petriline5cc44b2010-08-24 03:46:01 +0000638#define en_info(priv, format, arg...) \
639 en_print(KERN_INFO, priv, format, ## arg)
Joe Perches0a645e82010-07-10 07:22:46 +0000640
641#define mlx4_err(mdev, format, arg...) \
642 pr_err("%s %s: " format, DRV_NAME, \
643 dev_name(&mdev->pdev->dev), ##arg)
644#define mlx4_info(mdev, format, arg...) \
645 pr_info("%s %s: " format, DRV_NAME, \
646 dev_name(&mdev->pdev->dev), ##arg)
647#define mlx4_warn(mdev, format, arg...) \
648 pr_warning("%s %s: " format, DRV_NAME, \
649 dev_name(&mdev->pdev->dev), ##arg)
650
Yevgeny Petrilinc27a02c2008-10-22 15:47:49 -0700651#endif