blob: d738454116a088db7a098c88f2ef5fc9b7eb1698 [file] [log] [blame]
Roland Dreier225c7b12007-05-08 18:00:38 -07001/*
2 * Copyright (c) 2004, 2005 Topspin Communications. All rights reserved.
3 * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved.
4 * Copyright (c) 2005, 2006, 2007 Cisco Systems. All rights reserved.
Jack Morgenstein51a379d2008-07-25 10:32:52 -07005 * Copyright (c) 2005, 2006, 2007, 2008 Mellanox Technologies. All rights reserved.
Roland Dreier225c7b12007-05-08 18:00:38 -07006 * Copyright (c) 2004 Voltaire, Inc. All rights reserved.
7 *
8 * This software is available to you under a choice of one of two
9 * licenses. You may choose to be licensed under the terms of the GNU
10 * General Public License (GPL) Version 2, available from the file
11 * COPYING in the main directory of this source tree, or the
12 * OpenIB.org BSD license below:
13 *
14 * Redistribution and use in source and binary forms, with or
15 * without modification, are permitted provided that the following
16 * conditions are met:
17 *
18 * - Redistributions of source code must retain the above
19 * copyright notice, this list of conditions and the following
20 * disclaimer.
21 *
22 * - Redistributions in binary form must reproduce the above
23 * copyright notice, this list of conditions and the following
24 * disclaimer in the documentation and/or other materials
25 * provided with the distribution.
26 *
27 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
28 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
29 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
30 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
31 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
32 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
33 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
34 * SOFTWARE.
35 */
36
37#ifndef MLX4_H
38#define MLX4_H
39
Michael S. Tsirkin525f5f42007-07-09 20:12:20 -070040#include <linux/mutex.h>
Roland Dreier225c7b12007-05-08 18:00:38 -070041#include <linux/radix-tree.h>
Hadar Hen Zion4af1c042012-07-05 04:03:41 +000042#include <linux/rbtree.h>
Jack Morgensteinee49bd92007-07-12 17:50:45 +030043#include <linux/timer.h>
Thomas Gleixner31427882010-01-29 20:39:02 +000044#include <linux/semaphore.h>
Yevgeny Petrilin27bf91d2009-03-18 19:45:11 -070045#include <linux/workqueue.h>
Roland Dreier225c7b12007-05-08 18:00:38 -070046
47#include <linux/mlx4/device.h>
Roland Dreier37608ee2008-04-16 21:01:08 -070048#include <linux/mlx4/driver.h>
Roland Dreier225c7b12007-05-08 18:00:38 -070049#include <linux/mlx4/doorbell.h>
Jack Morgenstein623ed842011-12-13 04:10:33 +000050#include <linux/mlx4/cmd.h>
Roland Dreier225c7b12007-05-08 18:00:38 -070051
52#define DRV_NAME "mlx4_core"
Jack Morgensteinab9c17a2011-12-13 04:18:30 +000053#define PFX DRV_NAME ": "
Yevgeny Petrilin7d4b6bc2011-12-13 04:18:45 +000054#define DRV_VERSION "1.1"
55#define DRV_RELDATE "Dec, 2011"
Roland Dreier225c7b12007-05-08 18:00:38 -070056
Hadar Hen Zion0ff1fb62012-07-05 04:03:46 +000057#define MLX4_FS_UDP_UC_EN (1 << 1)
58#define MLX4_FS_TCP_UC_EN (1 << 2)
59#define MLX4_FS_NUM_OF_L2_ADDR 8
60#define MLX4_FS_MGM_LOG_ENTRY_SIZE 7
61#define MLX4_FS_NUM_MCG (1 << 17)
62
Shani Michaelie4488342013-02-06 16:19:11 +000063#define INIT_HCA_TPT_MW_ENABLE (1 << 7)
64
Amir Vadaie5395e92012-04-04 21:33:25 +000065#define MLX4_NUM_UP 8
66#define MLX4_NUM_TC 8
67#define MLX4_RATELIMIT_UNITS 3 /* 100 Mbps */
68#define MLX4_RATELIMIT_DEFAULT 0xffff
69
70struct mlx4_set_port_prio2tc_context {
71 u8 prio2tc[4];
72};
73
74struct mlx4_port_scheduler_tc_cfg_be {
75 __be16 pg;
76 __be16 bw_precentage;
77 __be16 max_bw_units; /* 3-100Mbps, 4-1Gbps, other values - reserved */
78 __be16 max_bw_value;
79};
80
81struct mlx4_set_port_scheduler_context {
82 struct mlx4_port_scheduler_tc_cfg_be tc[MLX4_NUM_TC];
83};
84
Roland Dreier225c7b12007-05-08 18:00:38 -070085enum {
86 MLX4_HCR_BASE = 0x80680,
87 MLX4_HCR_SIZE = 0x0001c,
Jack Morgenstein623ed842011-12-13 04:10:33 +000088 MLX4_CLR_INT_SIZE = 0x00008,
89 MLX4_SLAVE_COMM_BASE = 0x0,
90 MLX4_COMM_PAGESIZE = 0x1000
Roland Dreier225c7b12007-05-08 18:00:38 -070091};
92
93enum {
Jack Morgenstein3c439b52012-12-06 17:12:00 +000094 MLX4_DEFAULT_MGM_LOG_ENTRY_SIZE = 10,
95 MLX4_MIN_MGM_LOG_ENTRY_SIZE = 7,
96 MLX4_MAX_MGM_LOG_ENTRY_SIZE = 12,
97 MLX4_MAX_QP_PER_MGM = 4 * ((1 << MLX4_MAX_MGM_LOG_ENTRY_SIZE) / 16 - 2),
Eugenia Emantayev0ec2c0f2011-12-13 04:16:02 +000098 MLX4_MTT_ENTRY_PER_SEG = 8,
Roland Dreier225c7b12007-05-08 18:00:38 -070099};
100
101enum {
Roland Dreier225c7b12007-05-08 18:00:38 -0700102 MLX4_NUM_PDS = 1 << 15
103};
104
105enum {
106 MLX4_CMPT_TYPE_QP = 0,
107 MLX4_CMPT_TYPE_SRQ = 1,
108 MLX4_CMPT_TYPE_CQ = 2,
109 MLX4_CMPT_TYPE_EQ = 3,
110 MLX4_CMPT_NUM_TYPE
111};
112
113enum {
114 MLX4_CMPT_SHIFT = 24,
115 MLX4_NUM_CMPTS = MLX4_CMPT_NUM_TYPE << MLX4_CMPT_SHIFT
116};
117
Shani Michaelib20e5192013-02-06 16:19:08 +0000118enum mlx4_mpt_state {
119 MLX4_MPT_DISABLED = 0,
120 MLX4_MPT_EN_HW,
121 MLX4_MPT_EN_SW
Jack Morgenstein623ed842011-12-13 04:10:33 +0000122};
123
124#define MLX4_COMM_TIME 10000
125enum {
126 MLX4_COMM_CMD_RESET,
127 MLX4_COMM_CMD_VHCR0,
128 MLX4_COMM_CMD_VHCR1,
129 MLX4_COMM_CMD_VHCR2,
130 MLX4_COMM_CMD_VHCR_EN,
131 MLX4_COMM_CMD_VHCR_POST,
132 MLX4_COMM_CMD_FLR = 254
133};
134
135/*The flag indicates that the slave should delay the RESET cmd*/
136#define MLX4_DELAY_RESET_SLAVE 0xbbbbbbb
137/*indicates how many retries will be done if we are in the middle of FLR*/
138#define NUM_OF_RESET_RETRIES 10
139#define SLEEP_TIME_IN_RESET (2 * 1000)
140enum mlx4_resource {
141 RES_QP,
142 RES_CQ,
143 RES_SRQ,
144 RES_XRCD,
145 RES_MPT,
146 RES_MTT,
147 RES_MAC,
148 RES_VLAN,
149 RES_EQ,
150 RES_COUNTER,
Hadar Hen Zion1b9c6b02012-07-05 04:03:47 +0000151 RES_FS_RULE,
Jack Morgenstein623ed842011-12-13 04:10:33 +0000152 MLX4_NUM_OF_RESOURCE_TYPE
153};
154
155enum mlx4_alloc_mode {
156 RES_OP_RESERVE,
157 RES_OP_RESERVE_AND_MAP,
158 RES_OP_MAP_ICM,
159};
160
Jack Morgensteinb8924952012-05-15 10:35:02 +0000161enum mlx4_res_tracker_free_type {
162 RES_TR_FREE_ALL,
163 RES_TR_FREE_SLAVES_ONLY,
164 RES_TR_FREE_STRUCTS_ONLY,
165};
Jack Morgenstein623ed842011-12-13 04:10:33 +0000166
167/*
168 *Virtual HCR structures.
169 * mlx4_vhcr is the sw representation, in machine endianess
170 *
171 * mlx4_vhcr_cmd is the formalized structure, the one that is passed
172 * to FW to go through communication channel.
173 * It is big endian, and has the same structure as the physical HCR
174 * used by command interface
175 */
176struct mlx4_vhcr {
177 u64 in_param;
178 u64 out_param;
179 u32 in_modifier;
180 u32 errno;
181 u16 op;
182 u16 token;
183 u8 op_modifier;
184 u8 e_bit;
185};
186
187struct mlx4_vhcr_cmd {
188 __be64 in_param;
189 __be32 in_modifier;
190 __be64 out_param;
191 __be16 token;
192 u16 reserved;
193 u8 status;
194 u8 flags;
195 __be16 opcode;
196};
197
198struct mlx4_cmd_info {
199 u16 opcode;
200 bool has_inbox;
201 bool has_outbox;
202 bool out_is_imm;
203 bool encode_slave_id;
204 int (*verify)(struct mlx4_dev *dev, int slave, struct mlx4_vhcr *vhcr,
205 struct mlx4_cmd_mailbox *inbox);
206 int (*wrapper)(struct mlx4_dev *dev, int slave, struct mlx4_vhcr *vhcr,
207 struct mlx4_cmd_mailbox *inbox,
208 struct mlx4_cmd_mailbox *outbox,
209 struct mlx4_cmd_info *cmd);
210};
211
Roland Dreier225c7b12007-05-08 18:00:38 -0700212#ifdef CONFIG_MLX4_DEBUG
213extern int mlx4_debug_level;
Roland Dreier7b0f5df2008-11-04 11:18:56 -0800214#else /* CONFIG_MLX4_DEBUG */
215#define mlx4_debug_level (0)
216#endif /* CONFIG_MLX4_DEBUG */
Roland Dreier225c7b12007-05-08 18:00:38 -0700217
218#define mlx4_dbg(mdev, format, arg...) \
Joe Perches0a645e82010-07-10 07:22:46 +0000219do { \
220 if (mlx4_debug_level) \
221 dev_printk(KERN_DEBUG, &mdev->pdev->dev, format, ##arg); \
222} while (0)
Roland Dreier225c7b12007-05-08 18:00:38 -0700223
Roland Dreier225c7b12007-05-08 18:00:38 -0700224#define mlx4_err(mdev, format, arg...) \
Joe Perches0a645e82010-07-10 07:22:46 +0000225 dev_err(&mdev->pdev->dev, format, ##arg)
Roland Dreier225c7b12007-05-08 18:00:38 -0700226#define mlx4_info(mdev, format, arg...) \
Joe Perches0a645e82010-07-10 07:22:46 +0000227 dev_info(&mdev->pdev->dev, format, ##arg)
Roland Dreier225c7b12007-05-08 18:00:38 -0700228#define mlx4_warn(mdev, format, arg...) \
Joe Perches0a645e82010-07-10 07:22:46 +0000229 dev_warn(&mdev->pdev->dev, format, ##arg)
Roland Dreier225c7b12007-05-08 18:00:38 -0700230
Eugenia Emantayev0ec2c0f2011-12-13 04:16:02 +0000231extern int mlx4_log_num_mgm_entry_size;
Marcel Apfelbaum2b8fb282011-12-13 04:16:56 +0000232extern int log_mtts_per_seg;
Eugenia Emantayev0ec2c0f2011-12-13 04:16:02 +0000233
Jack Morgenstein623ed842011-12-13 04:10:33 +0000234#define MLX4_MAX_NUM_SLAVES (MLX4_MAX_NUM_PF + MLX4_MAX_NUM_VF)
235#define ALL_SLAVES 0xff
236
Roland Dreier225c7b12007-05-08 18:00:38 -0700237struct mlx4_bitmap {
238 u32 last;
239 u32 top;
240 u32 max;
Yevgeny Petrilin93fc9e12008-10-22 10:25:29 -0700241 u32 reserved_top;
Roland Dreier225c7b12007-05-08 18:00:38 -0700242 u32 mask;
Eli Cohen42d1e012011-03-22 22:38:45 +0000243 u32 avail;
Roland Dreier225c7b12007-05-08 18:00:38 -0700244 spinlock_t lock;
245 unsigned long *table;
246};
247
248struct mlx4_buddy {
249 unsigned long **bits;
Roland Dreiere4044cf2008-07-22 14:19:40 -0700250 unsigned int *num_free;
Yishai Hadas3de819e2012-08-13 08:15:07 +0000251 u32 max_order;
Roland Dreier225c7b12007-05-08 18:00:38 -0700252 spinlock_t lock;
253};
254
255struct mlx4_icm;
256
257struct mlx4_icm_table {
258 u64 virt;
259 int num_icm;
Yishai Hadas3de819e2012-08-13 08:15:07 +0000260 u32 num_obj;
Roland Dreier225c7b12007-05-08 18:00:38 -0700261 int obj_size;
262 int lowmem;
Jack Morgenstein5b0bf5e2007-08-01 12:28:20 +0300263 int coherent;
Roland Dreier225c7b12007-05-08 18:00:38 -0700264 struct mutex mutex;
265 struct mlx4_icm **icm;
266};
267
Shani Michaelicc1ade92013-02-06 16:19:10 +0000268#define MLX4_MPT_FLAG_SW_OWNS (0xfUL << 28)
269#define MLX4_MPT_FLAG_FREE (0x3UL << 28)
270#define MLX4_MPT_FLAG_MIO (1 << 17)
271#define MLX4_MPT_FLAG_BIND_ENABLE (1 << 15)
272#define MLX4_MPT_FLAG_PHYSICAL (1 << 9)
273#define MLX4_MPT_FLAG_REGION (1 << 8)
274
275#define MLX4_MPT_PD_FLAG_FAST_REG (1 << 27)
276#define MLX4_MPT_PD_FLAG_RAE (1 << 28)
277#define MLX4_MPT_PD_FLAG_EN_INV (3 << 24)
278
279#define MLX4_MPT_QP_FLAG_BOUND_QP (1 << 7)
280
281#define MLX4_MPT_STATUS_SW 0xF0
282#define MLX4_MPT_STATUS_HW 0x00
283
Eli Cohenc82e9aa2011-12-13 04:15:24 +0000284/*
285 * Must be packed because mtt_seg is 64 bits but only aligned to 32 bits.
286 */
287struct mlx4_mpt_entry {
288 __be32 flags;
289 __be32 qpn;
290 __be32 key;
291 __be32 pd_flags;
292 __be64 start;
293 __be64 length;
294 __be32 lkey;
295 __be32 win_cnt;
296 u8 reserved1[3];
297 u8 mtt_rep;
Marcel Apfelbaum2b8fb282011-12-13 04:16:56 +0000298 __be64 mtt_addr;
Eli Cohenc82e9aa2011-12-13 04:15:24 +0000299 __be32 mtt_sz;
300 __be32 entity_size;
301 __be32 first_byte_offset;
302} __packed;
303
304/*
305 * Must be packed because start is 64 bits but only aligned to 32 bits.
306 */
307struct mlx4_eq_context {
308 __be32 flags;
309 u16 reserved1[3];
310 __be16 page_offset;
311 u8 log_eq_size;
312 u8 reserved2[4];
313 u8 eq_period;
314 u8 reserved3;
315 u8 eq_max_count;
316 u8 reserved4[3];
317 u8 intr;
318 u8 log_page_size;
319 u8 reserved5[2];
320 u8 mtt_base_addr_h;
321 __be32 mtt_base_addr_l;
322 u32 reserved6[2];
323 __be32 consumer_index;
324 __be32 producer_index;
325 u32 reserved7[4];
326};
327
328struct mlx4_cq_context {
329 __be32 flags;
330 u16 reserved1[3];
331 __be16 page_offset;
332 __be32 logsize_usrpage;
333 __be16 cq_period;
334 __be16 cq_max_count;
335 u8 reserved2[3];
336 u8 comp_eqn;
337 u8 log_page_size;
338 u8 reserved3[2];
339 u8 mtt_base_addr_h;
340 __be32 mtt_base_addr_l;
341 __be32 last_notified_index;
342 __be32 solicit_producer_index;
343 __be32 consumer_index;
344 __be32 producer_index;
345 u32 reserved4[2];
346 __be64 db_rec_addr;
347};
348
349struct mlx4_srq_context {
350 __be32 state_logsize_srqn;
351 u8 logstride;
352 u8 reserved1;
353 __be16 xrcd;
354 __be32 pg_offset_cqn;
355 u32 reserved2;
356 u8 log_page_size;
357 u8 reserved3[2];
358 u8 mtt_base_addr_h;
359 __be32 mtt_base_addr_l;
360 __be32 pd;
361 __be16 limit_watermark;
362 __be16 wqe_cnt;
363 u16 reserved4;
364 __be16 wqe_counter;
365 u32 reserved5;
366 __be64 db_rec_addr;
367};
368
Roland Dreier225c7b12007-05-08 18:00:38 -0700369struct mlx4_eq {
370 struct mlx4_dev *dev;
371 void __iomem *doorbell;
372 int eqn;
373 u32 cons_index;
374 u16 irq;
375 u16 have_irq;
376 int nent;
377 struct mlx4_buf_list *page_list;
378 struct mlx4_mtt mtt;
379};
380
Jack Morgenstein623ed842011-12-13 04:10:33 +0000381struct mlx4_slave_eqe {
382 u8 type;
383 u8 port;
384 u32 param;
385};
386
387struct mlx4_slave_event_eq_info {
Marcel Apfelbaum803143f2012-01-19 09:45:46 +0000388 int eqn;
Jack Morgenstein623ed842011-12-13 04:10:33 +0000389 u16 token;
Jack Morgenstein623ed842011-12-13 04:10:33 +0000390};
391
Roland Dreier225c7b12007-05-08 18:00:38 -0700392struct mlx4_profile {
393 int num_qp;
394 int rdmarc_per_qp;
395 int num_srq;
396 int num_cq;
397 int num_mcg;
398 int num_mpt;
Roland Dreierdb5a7a62012-03-05 10:05:28 -0800399 unsigned num_mtt;
Roland Dreier225c7b12007-05-08 18:00:38 -0700400};
401
402struct mlx4_fw {
403 u64 clr_int_base;
404 u64 catas_offset;
Jack Morgenstein623ed842011-12-13 04:10:33 +0000405 u64 comm_base;
Roland Dreier225c7b12007-05-08 18:00:38 -0700406 struct mlx4_icm *fw_icm;
407 struct mlx4_icm *aux_icm;
408 u32 catas_size;
409 u16 fw_pages;
410 u8 clr_int_bar;
411 u8 catas_bar;
Jack Morgenstein623ed842011-12-13 04:10:33 +0000412 u8 comm_bar;
413};
414
415struct mlx4_comm {
416 u32 slave_write;
417 u32 slave_read;
Roland Dreier225c7b12007-05-08 18:00:38 -0700418};
419
Eugenia Emantayevffe455a2011-12-13 04:16:21 +0000420enum {
421 MLX4_MCAST_CONFIG = 0,
422 MLX4_MCAST_DISABLE = 1,
423 MLX4_MCAST_ENABLE = 2,
424};
425
Jack Morgenstein623ed842011-12-13 04:10:33 +0000426#define VLAN_FLTR_SIZE 128
427
428struct mlx4_vlan_fltr {
429 __be32 entry[VLAN_FLTR_SIZE];
430};
431
Eugenia Emantayevffe455a2011-12-13 04:16:21 +0000432struct mlx4_mcast_entry {
433 struct list_head list;
434 u64 addr;
435};
436
Yevgeny Petrilinb12d93d2011-03-22 22:38:24 +0000437struct mlx4_promisc_qp {
438 struct list_head list;
439 u32 qpn;
440};
441
442struct mlx4_steer_index {
443 struct list_head list;
444 unsigned int index;
445 struct list_head duplicates;
446};
447
Marcel Apfelbaum803143f2012-01-19 09:45:46 +0000448#define MLX4_EVENT_TYPES_NUM 64
449
Jack Morgenstein623ed842011-12-13 04:10:33 +0000450struct mlx4_slave_state {
451 u8 comm_toggle;
452 u8 last_cmd;
453 u8 init_port_mask;
454 bool active;
455 u8 function;
456 dma_addr_t vhcr_dma;
457 u16 mtu[MLX4_MAX_PORTS + 1];
458 __be32 ib_cap_mask[MLX4_MAX_PORTS + 1];
459 struct mlx4_slave_eqe eq[MLX4_MFUNC_MAX_EQES];
460 struct list_head mcast_filters[MLX4_MAX_PORTS + 1];
461 struct mlx4_vlan_fltr *vlan_filter[MLX4_MAX_PORTS + 1];
Marcel Apfelbaum803143f2012-01-19 09:45:46 +0000462 /* event type to eq number lookup */
463 struct mlx4_slave_event_eq_info event_eq[MLX4_EVENT_TYPES_NUM];
Jack Morgenstein623ed842011-12-13 04:10:33 +0000464 u16 eq_pi;
465 u16 eq_ci;
466 spinlock_t lock;
467 /*initialized via the kzalloc*/
468 u8 is_slave_going_down;
469 u32 cookie;
Jack Morgenstein993c4012012-08-03 08:40:48 +0000470 enum slave_port_state port_state[MLX4_MAX_PORTS + 1];
Jack Morgenstein623ed842011-12-13 04:10:33 +0000471};
472
473struct slave_list {
474 struct mutex mutex;
475 struct list_head res_list[MLX4_NUM_OF_RESOURCE_TYPE];
476};
477
478struct mlx4_resource_tracker {
479 spinlock_t lock;
480 /* tree for each resources */
Hadar Hen Zion4af1c042012-07-05 04:03:41 +0000481 struct rb_root res_tree[MLX4_NUM_OF_RESOURCE_TYPE];
Jack Morgenstein623ed842011-12-13 04:10:33 +0000482 /* num_of_slave's lists, one per slave */
483 struct slave_list *slave_list;
484};
485
486#define SLAVE_EVENT_EQ_SIZE 128
487struct mlx4_slave_event_eq {
488 u32 eqn;
489 u32 cons;
490 u32 prod;
Jack Morgenstein992e8e6e2012-08-03 08:40:54 +0000491 spinlock_t event_lock;
Jack Morgenstein623ed842011-12-13 04:10:33 +0000492 struct mlx4_eqe event_eqe[SLAVE_EVENT_EQ_SIZE];
493};
494
495struct mlx4_master_qp0_state {
496 int proxy_qp0_active;
497 int qp0_active;
498 int port_active;
499};
500
501struct mlx4_mfunc_master_ctx {
502 struct mlx4_slave_state *slave_state;
503 struct mlx4_master_qp0_state qp0_state[MLX4_MAX_PORTS + 1];
504 int init_port_ref[MLX4_MAX_PORTS + 1];
505 u16 max_mtu[MLX4_MAX_PORTS + 1];
506 int disable_mcast_ref[MLX4_MAX_PORTS + 1];
507 struct mlx4_resource_tracker res_tracker;
508 struct workqueue_struct *comm_wq;
509 struct work_struct comm_work;
510 struct work_struct slave_event_work;
511 struct work_struct slave_flr_event_work;
512 spinlock_t slave_state_lock;
Jack Morgensteinf5311ac2011-12-13 04:12:13 +0000513 __be32 comm_arm_bit_vector[4];
Jack Morgenstein623ed842011-12-13 04:10:33 +0000514 struct mlx4_eqe cmd_eqe;
515 struct mlx4_slave_event_eq slave_eq;
516 struct mutex gen_eqe_mutex[MLX4_MFUNC_MAX];
517};
518
519struct mlx4_mfunc {
520 struct mlx4_comm __iomem *comm;
521 struct mlx4_vhcr_cmd *vhcr;
522 dma_addr_t vhcr_dma;
523
524 struct mlx4_mfunc_master_ctx master;
525};
526
Roland Dreier225c7b12007-05-08 18:00:38 -0700527struct mlx4_cmd {
528 struct pci_pool *pool;
529 void __iomem *hcr;
530 struct mutex hcr_mutex;
Roland Dreierf3d4c892012-09-25 21:24:07 -0700531 struct mutex slave_cmd_mutex;
Roland Dreier225c7b12007-05-08 18:00:38 -0700532 struct semaphore poll_sem;
533 struct semaphore event_sem;
534 int max_cmds;
535 spinlock_t context_lock;
536 int free_head;
537 struct mlx4_cmd_context *context;
538 u16 token_mask;
539 u8 use_events;
540 u8 toggle;
Jack Morgenstein623ed842011-12-13 04:10:33 +0000541 u8 comm_toggle;
Roland Dreier225c7b12007-05-08 18:00:38 -0700542};
543
544struct mlx4_uar_table {
545 struct mlx4_bitmap bitmap;
546};
547
548struct mlx4_mr_table {
549 struct mlx4_bitmap mpt_bitmap;
550 struct mlx4_buddy mtt_buddy;
551 u64 mtt_base;
552 u64 mpt_base;
553 struct mlx4_icm_table mtt_table;
554 struct mlx4_icm_table dmpt_table;
555};
556
557struct mlx4_cq_table {
558 struct mlx4_bitmap bitmap;
559 spinlock_t lock;
560 struct radix_tree_root tree;
561 struct mlx4_icm_table table;
562 struct mlx4_icm_table cmpt_table;
563};
564
565struct mlx4_eq_table {
566 struct mlx4_bitmap bitmap;
Yevgeny Petrilinb8dd7862008-12-22 07:15:03 -0800567 char *irq_names;
Roland Dreier225c7b12007-05-08 18:00:38 -0700568 void __iomem *clr_int;
Yevgeny Petrilinb8dd7862008-12-22 07:15:03 -0800569 void __iomem **uar_map;
Roland Dreier225c7b12007-05-08 18:00:38 -0700570 u32 clr_mask;
Yevgeny Petrilinb8dd7862008-12-22 07:15:03 -0800571 struct mlx4_eq *eq;
Roland Dreierfa0681d2009-09-05 20:24:49 -0700572 struct mlx4_icm_table table;
Roland Dreier225c7b12007-05-08 18:00:38 -0700573 struct mlx4_icm_table cmpt_table;
574 int have_irq;
575 u8 inta_pin;
576};
577
578struct mlx4_srq_table {
579 struct mlx4_bitmap bitmap;
580 spinlock_t lock;
581 struct radix_tree_root tree;
582 struct mlx4_icm_table table;
583 struct mlx4_icm_table cmpt_table;
584};
585
586struct mlx4_qp_table {
587 struct mlx4_bitmap bitmap;
588 u32 rdmarc_base;
589 int rdmarc_shift;
590 spinlock_t lock;
591 struct mlx4_icm_table qp_table;
592 struct mlx4_icm_table auxc_table;
593 struct mlx4_icm_table altc_table;
594 struct mlx4_icm_table rdmarc_table;
595 struct mlx4_icm_table cmpt_table;
596};
597
598struct mlx4_mcg_table {
599 struct mutex mutex;
600 struct mlx4_bitmap bitmap;
601 struct mlx4_icm_table table;
602};
603
604struct mlx4_catas_err {
605 u32 __iomem *map;
Jack Morgensteinee49bd92007-07-12 17:50:45 +0300606 struct timer_list timer;
607 struct list_head list;
Roland Dreier225c7b12007-05-08 18:00:38 -0700608};
609
Yevgeny Petrilin2a2336f2008-10-22 11:44:46 -0700610#define MLX4_MAX_MAC_NUM 128
611#define MLX4_MAC_TABLE_SIZE (MLX4_MAX_MAC_NUM << 3)
612
613struct mlx4_mac_table {
614 __be64 entries[MLX4_MAX_MAC_NUM];
615 int refs[MLX4_MAX_MAC_NUM];
616 struct mutex mutex;
617 int total;
618 int max;
619};
620
621#define MLX4_MAX_VLAN_NUM 128
622#define MLX4_VLAN_TABLE_SIZE (MLX4_MAX_VLAN_NUM << 2)
623
624struct mlx4_vlan_table {
625 __be32 entries[MLX4_MAX_VLAN_NUM];
626 int refs[MLX4_MAX_VLAN_NUM];
627 struct mutex mutex;
628 int total;
629 int max;
630};
631
Eugenia Emantayevffe455a2011-12-13 04:16:21 +0000632#define SET_PORT_GEN_ALL_VALID 0x7
633#define SET_PORT_PROMISC_SHIFT 31
634#define SET_PORT_MC_PROMISC_SHIFT 30
635
636enum {
637 MCAST_DIRECT_ONLY = 0,
638 MCAST_DIRECT = 1,
639 MCAST_DEFAULT = 2
640};
641
642
643struct mlx4_set_port_general_context {
644 u8 reserved[3];
645 u8 flags;
646 u16 reserved2;
647 __be16 mtu;
648 u8 pptx;
649 u8 pfctx;
650 u16 reserved3;
651 u8 pprx;
652 u8 pfcrx;
653 u16 reserved4;
654};
655
656struct mlx4_set_port_rqp_calc_context {
657 __be32 base_qpn;
658 u8 rererved;
659 u8 n_mac;
660 u8 n_vlan;
661 u8 n_prio;
662 u8 reserved2[3];
663 u8 mac_miss;
664 u8 intra_no_vlan;
665 u8 no_vlan;
666 u8 intra_vlan_miss;
667 u8 vlan_miss;
668 u8 reserved3[3];
669 u8 no_vlan_prio;
670 __be32 promisc;
671 __be32 mcast;
672};
673
Yevgeny Petrilin2a2336f2008-10-22 11:44:46 -0700674struct mlx4_port_info {
675 struct mlx4_dev *dev;
676 int port;
Yevgeny Petrilin7ff93f82008-10-22 15:38:42 -0700677 char dev_name[16];
678 struct device_attribute port_attr;
679 enum mlx4_port_type tmp_type;
Or Gerlitz096335b2012-01-11 19:02:17 +0200680 char dev_mtu_name[16];
681 struct device_attribute port_mtu_attr;
Yevgeny Petrilin2a2336f2008-10-22 11:44:46 -0700682 struct mlx4_mac_table mac_table;
683 struct mlx4_vlan_table vlan_table;
Yevgeny Petrilin16792002011-03-22 22:38:31 +0000684 int base_qpn;
Yevgeny Petrilin2a2336f2008-10-22 11:44:46 -0700685};
686
Yevgeny Petrilin27bf91d2009-03-18 19:45:11 -0700687struct mlx4_sense {
688 struct mlx4_dev *dev;
689 u8 do_sense_port[MLX4_MAX_PORTS + 1];
690 u8 sense_allowed[MLX4_MAX_PORTS + 1];
691 struct delayed_work sense_poll;
692};
693
Yevgeny Petrilin0b7ca5a2011-03-22 22:37:47 +0000694struct mlx4_msix_ctl {
695 u64 pool_bm;
Yevgeny Petrilin730c41d2012-02-21 03:39:32 +0000696 struct mutex pool_lock;
Yevgeny Petrilin0b7ca5a2011-03-22 22:37:47 +0000697};
698
Yevgeny Petrilinb12d93d2011-03-22 22:38:24 +0000699struct mlx4_steer {
700 struct list_head promisc_qps[MLX4_NUM_STEERS];
701 struct list_head steer_entries[MLX4_NUM_STEERS];
Yevgeny Petrilinb12d93d2011-03-22 22:38:24 +0000702};
703
Hadar Hen Ziona8edc3b2012-09-05 22:50:48 +0000704struct mlx4_net_trans_rule_hw_ctrl {
705 __be32 ctrl;
Hadar Hen Zion015465f2013-01-30 23:07:02 +0000706 u8 rsvd1;
707 u8 funcid;
708 u8 vep;
709 u8 port;
Hadar Hen Ziona8edc3b2012-09-05 22:50:48 +0000710 __be32 qpn;
Hadar Hen Zion015465f2013-01-30 23:07:02 +0000711 __be32 rsvd2;
Hadar Hen Ziona8edc3b2012-09-05 22:50:48 +0000712};
713
714struct mlx4_net_trans_rule_hw_ib {
715 u8 size;
716 u8 rsvd1;
717 __be16 id;
718 u32 rsvd2;
719 __be32 qpn;
720 __be32 qpn_mask;
721 u8 dst_gid[16];
722 u8 dst_gid_msk[16];
723} __packed;
724
725struct mlx4_net_trans_rule_hw_eth {
726 u8 size;
727 u8 rsvd;
728 __be16 id;
729 u8 rsvd1[6];
730 u8 dst_mac[6];
731 u16 rsvd2;
732 u8 dst_mac_msk[6];
733 u16 rsvd3;
734 u8 src_mac[6];
735 u16 rsvd4;
736 u8 src_mac_msk[6];
737 u8 rsvd5;
738 u8 ether_type_enable;
739 __be16 ether_type;
740 __be16 vlan_id_msk;
741 __be16 vlan_id;
742} __packed;
743
744struct mlx4_net_trans_rule_hw_tcp_udp {
745 u8 size;
746 u8 rsvd;
747 __be16 id;
748 __be16 rsvd1[3];
749 __be16 dst_port;
750 __be16 rsvd2;
751 __be16 dst_port_msk;
752 __be16 rsvd3;
753 __be16 src_port;
754 __be16 rsvd4;
755 __be16 src_port_msk;
756} __packed;
757
758struct mlx4_net_trans_rule_hw_ipv4 {
759 u8 size;
760 u8 rsvd;
761 __be16 id;
762 __be32 rsvd1;
763 __be32 dst_ip;
764 __be32 dst_ip_msk;
765 __be32 src_ip;
766 __be32 src_ip_msk;
767} __packed;
768
769struct _rule_hw {
770 union {
771 struct {
772 u8 size;
773 u8 rsvd;
774 __be16 id;
775 };
776 struct mlx4_net_trans_rule_hw_eth eth;
777 struct mlx4_net_trans_rule_hw_ib ib;
778 struct mlx4_net_trans_rule_hw_ipv4 ipv4;
779 struct mlx4_net_trans_rule_hw_tcp_udp tcp_udp;
780 };
781};
782
Roland Dreier839f1242012-09-27 09:23:41 -0700783enum {
784 MLX4_PCI_DEV_IS_VF = 1 << 0,
Roland Dreierca3e57a2012-09-27 09:53:05 -0700785 MLX4_PCI_DEV_FORCE_SENSE_PORT = 1 << 1,
Roland Dreier839f1242012-09-27 09:23:41 -0700786};
787
Roland Dreier225c7b12007-05-08 18:00:38 -0700788struct mlx4_priv {
789 struct mlx4_dev dev;
790
791 struct list_head dev_list;
792 struct list_head ctx_list;
793 spinlock_t ctx_lock;
794
Roland Dreier839f1242012-09-27 09:23:41 -0700795 int pci_dev_data;
796
Yevgeny Petrilin62968832008-04-23 11:55:45 -0700797 struct list_head pgdir_list;
798 struct mutex pgdir_mutex;
799
Roland Dreier225c7b12007-05-08 18:00:38 -0700800 struct mlx4_fw fw;
801 struct mlx4_cmd cmd;
Jack Morgenstein623ed842011-12-13 04:10:33 +0000802 struct mlx4_mfunc mfunc;
Roland Dreier225c7b12007-05-08 18:00:38 -0700803
804 struct mlx4_bitmap pd_bitmap;
Sean Hefty012a8ff2011-06-02 09:01:33 -0700805 struct mlx4_bitmap xrcd_bitmap;
Roland Dreier225c7b12007-05-08 18:00:38 -0700806 struct mlx4_uar_table uar_table;
807 struct mlx4_mr_table mr_table;
808 struct mlx4_cq_table cq_table;
809 struct mlx4_eq_table eq_table;
810 struct mlx4_srq_table srq_table;
811 struct mlx4_qp_table qp_table;
812 struct mlx4_mcg_table mcg_table;
Or Gerlitzf2a3f6a2011-06-15 14:47:14 +0000813 struct mlx4_bitmap counters_bitmap;
Roland Dreier225c7b12007-05-08 18:00:38 -0700814
815 struct mlx4_catas_err catas_err;
816
817 void __iomem *clr_base;
818
819 struct mlx4_uar driver_uar;
820 void __iomem *kar;
Yevgeny Petrilin2a2336f2008-10-22 11:44:46 -0700821 struct mlx4_port_info port[MLX4_MAX_PORTS + 1];
Yevgeny Petrilin27bf91d2009-03-18 19:45:11 -0700822 struct mlx4_sense sense;
Yevgeny Petrilin7ff93f82008-10-22 15:38:42 -0700823 struct mutex port_mutex;
Yevgeny Petrilin0b7ca5a2011-03-22 22:37:47 +0000824 struct mlx4_msix_ctl msix_ctl;
Yevgeny Petrilinb12d93d2011-03-22 22:38:24 +0000825 struct mlx4_steer *steer;
Eli Cohenc1b43dc2011-03-22 22:38:41 +0000826 struct list_head bf_list;
827 struct mutex bf_mutex;
828 struct io_mapping *bf_mapping;
Jack Morgensteinea51b372011-12-13 04:13:48 +0000829 int reserved_mtts;
Hadar Hen Zion0ff1fb62012-07-05 04:03:46 +0000830 int fs_hash_mode;
Jack Morgenstein54679e12012-08-03 08:40:43 +0000831 u8 virt2phys_pkey[MLX4_MFUNC_MAX][MLX4_MAX_PORTS][MLX4_MAX_PORT_PKEYS];
Jack Morgensteinafa8fd12012-08-03 08:40:56 +0000832 __be64 slave_node_guids[MLX4_MFUNC_MAX];
Jack Morgenstein54679e12012-08-03 08:40:43 +0000833
Roland Dreier225c7b12007-05-08 18:00:38 -0700834};
835
836static inline struct mlx4_priv *mlx4_priv(struct mlx4_dev *dev)
837{
838 return container_of(dev, struct mlx4_priv, dev);
839}
840
Yevgeny Petrilin27bf91d2009-03-18 19:45:11 -0700841#define MLX4_SENSE_RANGE (HZ * 3)
842
843extern struct workqueue_struct *mlx4_wq;
844
Roland Dreier225c7b12007-05-08 18:00:38 -0700845u32 mlx4_bitmap_alloc(struct mlx4_bitmap *bitmap);
846void mlx4_bitmap_free(struct mlx4_bitmap *bitmap, u32 obj);
Yevgeny Petrilina3cdcbf2008-10-10 12:01:37 -0700847u32 mlx4_bitmap_alloc_range(struct mlx4_bitmap *bitmap, int cnt, int align);
848void mlx4_bitmap_free_range(struct mlx4_bitmap *bitmap, u32 obj, int cnt);
Eli Cohen42d1e012011-03-22 22:38:45 +0000849u32 mlx4_bitmap_avail(struct mlx4_bitmap *bitmap);
Yevgeny Petrilin93fc9e12008-10-22 10:25:29 -0700850int mlx4_bitmap_init(struct mlx4_bitmap *bitmap, u32 num, u32 mask,
851 u32 reserved_bot, u32 resetrved_top);
Roland Dreier225c7b12007-05-08 18:00:38 -0700852void mlx4_bitmap_cleanup(struct mlx4_bitmap *bitmap);
853
854int mlx4_reset(struct mlx4_dev *dev);
855
Yevgeny Petrilinb8dd7862008-12-22 07:15:03 -0800856int mlx4_alloc_eq_table(struct mlx4_dev *dev);
857void mlx4_free_eq_table(struct mlx4_dev *dev);
858
Roland Dreier225c7b12007-05-08 18:00:38 -0700859int mlx4_init_pd_table(struct mlx4_dev *dev);
Sean Hefty012a8ff2011-06-02 09:01:33 -0700860int mlx4_init_xrcd_table(struct mlx4_dev *dev);
Roland Dreier225c7b12007-05-08 18:00:38 -0700861int mlx4_init_uar_table(struct mlx4_dev *dev);
862int mlx4_init_mr_table(struct mlx4_dev *dev);
863int mlx4_init_eq_table(struct mlx4_dev *dev);
864int mlx4_init_cq_table(struct mlx4_dev *dev);
865int mlx4_init_qp_table(struct mlx4_dev *dev);
866int mlx4_init_srq_table(struct mlx4_dev *dev);
867int mlx4_init_mcg_table(struct mlx4_dev *dev);
868
869void mlx4_cleanup_pd_table(struct mlx4_dev *dev);
Sean Hefty012a8ff2011-06-02 09:01:33 -0700870void mlx4_cleanup_xrcd_table(struct mlx4_dev *dev);
Roland Dreier225c7b12007-05-08 18:00:38 -0700871void mlx4_cleanup_uar_table(struct mlx4_dev *dev);
872void mlx4_cleanup_mr_table(struct mlx4_dev *dev);
873void mlx4_cleanup_eq_table(struct mlx4_dev *dev);
874void mlx4_cleanup_cq_table(struct mlx4_dev *dev);
875void mlx4_cleanup_qp_table(struct mlx4_dev *dev);
876void mlx4_cleanup_srq_table(struct mlx4_dev *dev);
877void mlx4_cleanup_mcg_table(struct mlx4_dev *dev);
Eli Cohenc82e9aa2011-12-13 04:15:24 +0000878int __mlx4_qp_alloc_icm(struct mlx4_dev *dev, int qpn);
879void __mlx4_qp_free_icm(struct mlx4_dev *dev, int qpn);
880int __mlx4_cq_alloc_icm(struct mlx4_dev *dev, int *cqn);
881void __mlx4_cq_free_icm(struct mlx4_dev *dev, int cqn);
882int __mlx4_srq_alloc_icm(struct mlx4_dev *dev, int *srqn);
883void __mlx4_srq_free_icm(struct mlx4_dev *dev, int srqn);
Shani Michaelib20e5192013-02-06 16:19:08 +0000884int __mlx4_mpt_reserve(struct mlx4_dev *dev);
885void __mlx4_mpt_release(struct mlx4_dev *dev, u32 index);
886int __mlx4_mpt_alloc_icm(struct mlx4_dev *dev, u32 index);
887void __mlx4_mpt_free_icm(struct mlx4_dev *dev, u32 index);
Eli Cohenc82e9aa2011-12-13 04:15:24 +0000888u32 __mlx4_alloc_mtt_range(struct mlx4_dev *dev, int order);
889void __mlx4_free_mtt_range(struct mlx4_dev *dev, u32 first_seg, int order);
Roland Dreier225c7b12007-05-08 18:00:38 -0700890
Jack Morgenstein623ed842011-12-13 04:10:33 +0000891int mlx4_WRITE_MTT_wrapper(struct mlx4_dev *dev, int slave,
892 struct mlx4_vhcr *vhcr,
893 struct mlx4_cmd_mailbox *inbox,
894 struct mlx4_cmd_mailbox *outbox,
895 struct mlx4_cmd_info *cmd);
896int mlx4_SYNC_TPT_wrapper(struct mlx4_dev *dev, int slave,
897 struct mlx4_vhcr *vhcr,
898 struct mlx4_cmd_mailbox *inbox,
899 struct mlx4_cmd_mailbox *outbox,
900 struct mlx4_cmd_info *cmd);
901int mlx4_SW2HW_MPT_wrapper(struct mlx4_dev *dev, int slave,
902 struct mlx4_vhcr *vhcr,
903 struct mlx4_cmd_mailbox *inbox,
904 struct mlx4_cmd_mailbox *outbox,
905 struct mlx4_cmd_info *cmd);
906int mlx4_HW2SW_MPT_wrapper(struct mlx4_dev *dev, int slave,
907 struct mlx4_vhcr *vhcr,
908 struct mlx4_cmd_mailbox *inbox,
909 struct mlx4_cmd_mailbox *outbox,
910 struct mlx4_cmd_info *cmd);
911int mlx4_QUERY_MPT_wrapper(struct mlx4_dev *dev, int slave,
912 struct mlx4_vhcr *vhcr,
913 struct mlx4_cmd_mailbox *inbox,
914 struct mlx4_cmd_mailbox *outbox,
915 struct mlx4_cmd_info *cmd);
916int mlx4_SW2HW_EQ_wrapper(struct mlx4_dev *dev, int slave,
917 struct mlx4_vhcr *vhcr,
918 struct mlx4_cmd_mailbox *inbox,
919 struct mlx4_cmd_mailbox *outbox,
920 struct mlx4_cmd_info *cmd);
921int mlx4_DMA_wrapper(struct mlx4_dev *dev, int slave,
922 struct mlx4_vhcr *vhcr,
923 struct mlx4_cmd_mailbox *inbox,
924 struct mlx4_cmd_mailbox *outbox,
925 struct mlx4_cmd_info *cmd);
Eli Cohenc82e9aa2011-12-13 04:15:24 +0000926int __mlx4_qp_reserve_range(struct mlx4_dev *dev, int cnt, int align,
927 int *base);
928void __mlx4_qp_release_range(struct mlx4_dev *dev, int base_qpn, int cnt);
929int __mlx4_register_mac(struct mlx4_dev *dev, u8 port, u64 mac);
930void __mlx4_unregister_mac(struct mlx4_dev *dev, u8 port, u64 mac);
Eli Cohenc82e9aa2011-12-13 04:15:24 +0000931int __mlx4_write_mtt(struct mlx4_dev *dev, struct mlx4_mtt *mtt,
932 int start_index, int npages, u64 *page_list);
Jack Morgensteinba062d52012-05-15 10:35:03 +0000933int __mlx4_counter_alloc(struct mlx4_dev *dev, u32 *idx);
934void __mlx4_counter_free(struct mlx4_dev *dev, u32 idx);
935int __mlx4_xrcd_alloc(struct mlx4_dev *dev, u32 *xrcdn);
936void __mlx4_xrcd_free(struct mlx4_dev *dev, u32 xrcdn);
Jack Morgenstein623ed842011-12-13 04:10:33 +0000937
Jack Morgensteinee49bd92007-07-12 17:50:45 +0300938void mlx4_start_catas_poll(struct mlx4_dev *dev);
939void mlx4_stop_catas_poll(struct mlx4_dev *dev);
Yevgeny Petrilin27bf91d2009-03-18 19:45:11 -0700940void mlx4_catas_init(void);
Jack Morgensteinee49bd92007-07-12 17:50:45 +0300941int mlx4_restart_one(struct pci_dev *pdev);
Roland Dreier225c7b12007-05-08 18:00:38 -0700942int mlx4_register_device(struct mlx4_dev *dev);
943void mlx4_unregister_device(struct mlx4_dev *dev);
Jack Morgenstein00f5ce92012-06-19 11:21:40 +0300944void mlx4_dispatch_event(struct mlx4_dev *dev, enum mlx4_dev_event type,
945 unsigned long param);
Roland Dreier225c7b12007-05-08 18:00:38 -0700946
947struct mlx4_dev_cap;
948struct mlx4_init_hca_param;
949
950u64 mlx4_make_profile(struct mlx4_dev *dev,
951 struct mlx4_profile *request,
952 struct mlx4_dev_cap *dev_cap,
953 struct mlx4_init_hca_param *init_hca);
Jack Morgenstein623ed842011-12-13 04:10:33 +0000954void mlx4_master_comm_channel(struct work_struct *work);
955void mlx4_gen_slave_eqe(struct work_struct *work);
956void mlx4_master_handle_slave_flr(struct work_struct *work);
957
958int mlx4_ALLOC_RES_wrapper(struct mlx4_dev *dev, int slave,
959 struct mlx4_vhcr *vhcr,
960 struct mlx4_cmd_mailbox *inbox,
961 struct mlx4_cmd_mailbox *outbox,
962 struct mlx4_cmd_info *cmd);
963int mlx4_FREE_RES_wrapper(struct mlx4_dev *dev, int slave,
964 struct mlx4_vhcr *vhcr,
965 struct mlx4_cmd_mailbox *inbox,
966 struct mlx4_cmd_mailbox *outbox,
967 struct mlx4_cmd_info *cmd);
968int mlx4_MAP_EQ_wrapper(struct mlx4_dev *dev, int slave,
969 struct mlx4_vhcr *vhcr, struct mlx4_cmd_mailbox *inbox,
970 struct mlx4_cmd_mailbox *outbox,
971 struct mlx4_cmd_info *cmd);
972int mlx4_COMM_INT_wrapper(struct mlx4_dev *dev, int slave,
973 struct mlx4_vhcr *vhcr,
974 struct mlx4_cmd_mailbox *inbox,
975 struct mlx4_cmd_mailbox *outbox,
976 struct mlx4_cmd_info *cmd);
977int mlx4_HW2SW_EQ_wrapper(struct mlx4_dev *dev, int slave,
978 struct mlx4_vhcr *vhcr,
979 struct mlx4_cmd_mailbox *inbox,
980 struct mlx4_cmd_mailbox *outbox,
981 struct mlx4_cmd_info *cmd);
982int mlx4_QUERY_EQ_wrapper(struct mlx4_dev *dev, int slave,
983 struct mlx4_vhcr *vhcr,
984 struct mlx4_cmd_mailbox *inbox,
985 struct mlx4_cmd_mailbox *outbox,
986 struct mlx4_cmd_info *cmd);
987int mlx4_SW2HW_CQ_wrapper(struct mlx4_dev *dev, int slave,
988 struct mlx4_vhcr *vhcr,
989 struct mlx4_cmd_mailbox *inbox,
990 struct mlx4_cmd_mailbox *outbox,
991 struct mlx4_cmd_info *cmd);
992int mlx4_HW2SW_CQ_wrapper(struct mlx4_dev *dev, int slave,
993 struct mlx4_vhcr *vhcr,
994 struct mlx4_cmd_mailbox *inbox,
995 struct mlx4_cmd_mailbox *outbox,
996 struct mlx4_cmd_info *cmd);
997int mlx4_QUERY_CQ_wrapper(struct mlx4_dev *dev, int slave,
998 struct mlx4_vhcr *vhcr,
999 struct mlx4_cmd_mailbox *inbox,
1000 struct mlx4_cmd_mailbox *outbox,
1001 struct mlx4_cmd_info *cmd);
1002int mlx4_MODIFY_CQ_wrapper(struct mlx4_dev *dev, int slave,
1003 struct mlx4_vhcr *vhcr,
1004 struct mlx4_cmd_mailbox *inbox,
1005 struct mlx4_cmd_mailbox *outbox,
1006 struct mlx4_cmd_info *cmd);
1007int mlx4_SW2HW_SRQ_wrapper(struct mlx4_dev *dev, int slave,
1008 struct mlx4_vhcr *vhcr,
1009 struct mlx4_cmd_mailbox *inbox,
1010 struct mlx4_cmd_mailbox *outbox,
1011 struct mlx4_cmd_info *cmd);
1012int mlx4_HW2SW_SRQ_wrapper(struct mlx4_dev *dev, int slave,
1013 struct mlx4_vhcr *vhcr,
1014 struct mlx4_cmd_mailbox *inbox,
1015 struct mlx4_cmd_mailbox *outbox,
1016 struct mlx4_cmd_info *cmd);
1017int mlx4_QUERY_SRQ_wrapper(struct mlx4_dev *dev, int slave,
1018 struct mlx4_vhcr *vhcr,
1019 struct mlx4_cmd_mailbox *inbox,
1020 struct mlx4_cmd_mailbox *outbox,
1021 struct mlx4_cmd_info *cmd);
1022int mlx4_ARM_SRQ_wrapper(struct mlx4_dev *dev, int slave,
1023 struct mlx4_vhcr *vhcr,
1024 struct mlx4_cmd_mailbox *inbox,
1025 struct mlx4_cmd_mailbox *outbox,
1026 struct mlx4_cmd_info *cmd);
1027int mlx4_GEN_QP_wrapper(struct mlx4_dev *dev, int slave,
1028 struct mlx4_vhcr *vhcr,
1029 struct mlx4_cmd_mailbox *inbox,
1030 struct mlx4_cmd_mailbox *outbox,
1031 struct mlx4_cmd_info *cmd);
1032int mlx4_RST2INIT_QP_wrapper(struct mlx4_dev *dev, int slave,
1033 struct mlx4_vhcr *vhcr,
1034 struct mlx4_cmd_mailbox *inbox,
1035 struct mlx4_cmd_mailbox *outbox,
1036 struct mlx4_cmd_info *cmd);
Jack Morgenstein54679e12012-08-03 08:40:43 +00001037int mlx4_INIT2INIT_QP_wrapper(struct mlx4_dev *dev, int slave,
1038 struct mlx4_vhcr *vhcr,
1039 struct mlx4_cmd_mailbox *inbox,
1040 struct mlx4_cmd_mailbox *outbox,
1041 struct mlx4_cmd_info *cmd);
Jack Morgenstein623ed842011-12-13 04:10:33 +00001042int mlx4_INIT2RTR_QP_wrapper(struct mlx4_dev *dev, int slave,
1043 struct mlx4_vhcr *vhcr,
1044 struct mlx4_cmd_mailbox *inbox,
1045 struct mlx4_cmd_mailbox *outbox,
1046 struct mlx4_cmd_info *cmd);
Jack Morgenstein54679e12012-08-03 08:40:43 +00001047int mlx4_RTR2RTS_QP_wrapper(struct mlx4_dev *dev, int slave,
1048 struct mlx4_vhcr *vhcr,
1049 struct mlx4_cmd_mailbox *inbox,
1050 struct mlx4_cmd_mailbox *outbox,
1051 struct mlx4_cmd_info *cmd);
1052int mlx4_RTS2RTS_QP_wrapper(struct mlx4_dev *dev, int slave,
1053 struct mlx4_vhcr *vhcr,
1054 struct mlx4_cmd_mailbox *inbox,
1055 struct mlx4_cmd_mailbox *outbox,
1056 struct mlx4_cmd_info *cmd);
1057int mlx4_SQERR2RTS_QP_wrapper(struct mlx4_dev *dev, int slave,
1058 struct mlx4_vhcr *vhcr,
1059 struct mlx4_cmd_mailbox *inbox,
1060 struct mlx4_cmd_mailbox *outbox,
1061 struct mlx4_cmd_info *cmd);
1062int mlx4_2ERR_QP_wrapper(struct mlx4_dev *dev, int slave,
1063 struct mlx4_vhcr *vhcr,
1064 struct mlx4_cmd_mailbox *inbox,
1065 struct mlx4_cmd_mailbox *outbox,
1066 struct mlx4_cmd_info *cmd);
1067int mlx4_RTS2SQD_QP_wrapper(struct mlx4_dev *dev, int slave,
1068 struct mlx4_vhcr *vhcr,
1069 struct mlx4_cmd_mailbox *inbox,
1070 struct mlx4_cmd_mailbox *outbox,
1071 struct mlx4_cmd_info *cmd);
1072int mlx4_SQD2SQD_QP_wrapper(struct mlx4_dev *dev, int slave,
1073 struct mlx4_vhcr *vhcr,
1074 struct mlx4_cmd_mailbox *inbox,
1075 struct mlx4_cmd_mailbox *outbox,
1076 struct mlx4_cmd_info *cmd);
1077int mlx4_SQD2RTS_QP_wrapper(struct mlx4_dev *dev, int slave,
1078 struct mlx4_vhcr *vhcr,
1079 struct mlx4_cmd_mailbox *inbox,
1080 struct mlx4_cmd_mailbox *outbox,
1081 struct mlx4_cmd_info *cmd);
Jack Morgenstein623ed842011-12-13 04:10:33 +00001082int mlx4_2RST_QP_wrapper(struct mlx4_dev *dev, int slave,
1083 struct mlx4_vhcr *vhcr,
1084 struct mlx4_cmd_mailbox *inbox,
1085 struct mlx4_cmd_mailbox *outbox,
1086 struct mlx4_cmd_info *cmd);
Jack Morgenstein54679e12012-08-03 08:40:43 +00001087int mlx4_QUERY_QP_wrapper(struct mlx4_dev *dev, int slave,
1088 struct mlx4_vhcr *vhcr,
1089 struct mlx4_cmd_mailbox *inbox,
1090 struct mlx4_cmd_mailbox *outbox,
1091 struct mlx4_cmd_info *cmd);
Jack Morgenstein623ed842011-12-13 04:10:33 +00001092
1093int mlx4_GEN_EQE(struct mlx4_dev *dev, int slave, struct mlx4_eqe *eqe);
Roland Dreier225c7b12007-05-08 18:00:38 -07001094
Roland Dreier225c7b12007-05-08 18:00:38 -07001095int mlx4_cmd_init(struct mlx4_dev *dev);
1096void mlx4_cmd_cleanup(struct mlx4_dev *dev);
Jack Morgensteinab9c17a2011-12-13 04:18:30 +00001097int mlx4_multi_func_init(struct mlx4_dev *dev);
1098void mlx4_multi_func_cleanup(struct mlx4_dev *dev);
Roland Dreier225c7b12007-05-08 18:00:38 -07001099void mlx4_cmd_event(struct mlx4_dev *dev, u16 token, u8 status, u64 out_param);
1100int mlx4_cmd_use_events(struct mlx4_dev *dev);
1101void mlx4_cmd_use_polling(struct mlx4_dev *dev);
1102
Jack Morgensteinab9c17a2011-12-13 04:18:30 +00001103int mlx4_comm_cmd(struct mlx4_dev *dev, u8 cmd, u16 param,
1104 unsigned long timeout);
1105
Roland Dreier225c7b12007-05-08 18:00:38 -07001106void mlx4_cq_completion(struct mlx4_dev *dev, u32 cqn);
1107void mlx4_cq_event(struct mlx4_dev *dev, u32 cqn, int event_type);
1108
1109void mlx4_qp_event(struct mlx4_dev *dev, u32 qpn, int event_type);
1110
1111void mlx4_srq_event(struct mlx4_dev *dev, u32 srqn, int event_type);
1112
1113void mlx4_handle_catas_err(struct mlx4_dev *dev);
1114
Yevgeny Petrilinab6dc302011-04-06 23:24:42 +00001115int mlx4_SENSE_PORT(struct mlx4_dev *dev, int port,
1116 enum mlx4_port_type *type);
Yevgeny Petrilin27bf91d2009-03-18 19:45:11 -07001117void mlx4_do_sense_ports(struct mlx4_dev *dev,
1118 enum mlx4_port_type *stype,
1119 enum mlx4_port_type *defaults);
1120void mlx4_start_sense(struct mlx4_dev *dev);
1121void mlx4_stop_sense(struct mlx4_dev *dev);
1122void mlx4_sense_init(struct mlx4_dev *dev);
1123int mlx4_check_port_params(struct mlx4_dev *dev,
1124 enum mlx4_port_type *port_type);
1125int mlx4_change_port_types(struct mlx4_dev *dev,
1126 enum mlx4_port_type *port_types);
1127
Yevgeny Petrilin2a2336f2008-10-22 11:44:46 -07001128void mlx4_init_mac_table(struct mlx4_dev *dev, struct mlx4_mac_table *table);
1129void mlx4_init_vlan_table(struct mlx4_dev *dev, struct mlx4_vlan_table *table);
1130
Jack Morgenstein66349612012-06-19 11:21:44 +03001131int mlx4_SET_PORT(struct mlx4_dev *dev, u8 port, int pkey_tbl_sz);
Jack Morgenstein623ed842011-12-13 04:10:33 +00001132/* resource tracker functions*/
1133int mlx4_get_slave_from_resource_id(struct mlx4_dev *dev,
1134 enum mlx4_resource resource_type,
Hadar Hen Zionaa1ec3d2012-07-05 04:03:42 +00001135 u64 resource_id, int *slave);
Jack Morgenstein623ed842011-12-13 04:10:33 +00001136void mlx4_delete_all_resources_for_slave(struct mlx4_dev *dev, int slave_id);
1137int mlx4_init_resource_tracker(struct mlx4_dev *dev);
1138
Jack Morgensteinb8924952012-05-15 10:35:02 +00001139void mlx4_free_resource_tracker(struct mlx4_dev *dev,
1140 enum mlx4_res_tracker_free_type type);
Jack Morgenstein623ed842011-12-13 04:10:33 +00001141
Jack Morgensteinb91cb3e2012-05-30 09:14:53 +00001142int mlx4_QUERY_FW_wrapper(struct mlx4_dev *dev, int slave,
1143 struct mlx4_vhcr *vhcr,
1144 struct mlx4_cmd_mailbox *inbox,
1145 struct mlx4_cmd_mailbox *outbox,
1146 struct mlx4_cmd_info *cmd);
Jack Morgenstein623ed842011-12-13 04:10:33 +00001147int mlx4_SET_PORT_wrapper(struct mlx4_dev *dev, int slave,
1148 struct mlx4_vhcr *vhcr,
1149 struct mlx4_cmd_mailbox *inbox,
1150 struct mlx4_cmd_mailbox *outbox,
1151 struct mlx4_cmd_info *cmd);
1152int mlx4_INIT_PORT_wrapper(struct mlx4_dev *dev, int slave,
1153 struct mlx4_vhcr *vhcr,
1154 struct mlx4_cmd_mailbox *inbox,
1155 struct mlx4_cmd_mailbox *outbox,
1156 struct mlx4_cmd_info *cmd);
1157int mlx4_CLOSE_PORT_wrapper(struct mlx4_dev *dev, int slave,
1158 struct mlx4_vhcr *vhcr,
1159 struct mlx4_cmd_mailbox *inbox,
1160 struct mlx4_cmd_mailbox *outbox,
1161 struct mlx4_cmd_info *cmd);
Jack Morgensteinb91cb3e2012-05-30 09:14:53 +00001162int mlx4_QUERY_DEV_CAP_wrapper(struct mlx4_dev *dev, int slave,
1163 struct mlx4_vhcr *vhcr,
1164 struct mlx4_cmd_mailbox *inbox,
1165 struct mlx4_cmd_mailbox *outbox,
1166 struct mlx4_cmd_info *cmd);
Jack Morgenstein623ed842011-12-13 04:10:33 +00001167int mlx4_QUERY_PORT_wrapper(struct mlx4_dev *dev, int slave,
1168 struct mlx4_vhcr *vhcr,
1169 struct mlx4_cmd_mailbox *inbox,
1170 struct mlx4_cmd_mailbox *outbox,
1171 struct mlx4_cmd_info *cmd);
Jack Morgenstein9a5aa622008-11-28 21:29:46 -08001172int mlx4_get_port_ib_caps(struct mlx4_dev *dev, u8 port, __be32 *caps);
Yevgeny Petrilin7ff93f82008-10-22 15:38:42 -07001173
Jack Morgenstein66349612012-06-19 11:21:44 +03001174int mlx4_get_slave_pkey_gid_tbl_len(struct mlx4_dev *dev, u8 port,
1175 int *gid_tbl_len, int *pkey_tbl_len);
Jack Morgenstein623ed842011-12-13 04:10:33 +00001176
1177int mlx4_QP_ATTACH_wrapper(struct mlx4_dev *dev, int slave,
1178 struct mlx4_vhcr *vhcr,
1179 struct mlx4_cmd_mailbox *inbox,
1180 struct mlx4_cmd_mailbox *outbox,
1181 struct mlx4_cmd_info *cmd);
1182
1183int mlx4_PROMISC_wrapper(struct mlx4_dev *dev, int slave,
1184 struct mlx4_vhcr *vhcr,
1185 struct mlx4_cmd_mailbox *inbox,
1186 struct mlx4_cmd_mailbox *outbox,
1187 struct mlx4_cmd_info *cmd);
Yevgeny Petrilinb12d93d2011-03-22 22:38:24 +00001188int mlx4_qp_detach_common(struct mlx4_dev *dev, struct mlx4_qp *qp, u8 gid[16],
1189 enum mlx4_protocol prot, enum mlx4_steer_type steer);
1190int mlx4_qp_attach_common(struct mlx4_dev *dev, struct mlx4_qp *qp, u8 gid[16],
1191 int block_mcast_loopback, enum mlx4_protocol prot,
1192 enum mlx4_steer_type steer);
Jack Morgenstein623ed842011-12-13 04:10:33 +00001193int mlx4_SET_MCAST_FLTR_wrapper(struct mlx4_dev *dev, int slave,
1194 struct mlx4_vhcr *vhcr,
1195 struct mlx4_cmd_mailbox *inbox,
1196 struct mlx4_cmd_mailbox *outbox,
1197 struct mlx4_cmd_info *cmd);
1198int mlx4_SET_VLAN_FLTR_wrapper(struct mlx4_dev *dev, int slave,
1199 struct mlx4_vhcr *vhcr,
1200 struct mlx4_cmd_mailbox *inbox,
1201 struct mlx4_cmd_mailbox *outbox,
1202 struct mlx4_cmd_info *cmd);
1203int mlx4_common_set_vlan_fltr(struct mlx4_dev *dev, int function,
1204 int port, void *buf);
1205int mlx4_common_dump_eth_stats(struct mlx4_dev *dev, int slave, u32 in_mod,
1206 struct mlx4_cmd_mailbox *outbox);
1207int mlx4_DUMP_ETH_STATS_wrapper(struct mlx4_dev *dev, int slave,
1208 struct mlx4_vhcr *vhcr,
1209 struct mlx4_cmd_mailbox *inbox,
1210 struct mlx4_cmd_mailbox *outbox,
1211 struct mlx4_cmd_info *cmd);
1212int mlx4_PKEY_TABLE_wrapper(struct mlx4_dev *dev, int slave,
1213 struct mlx4_vhcr *vhcr,
1214 struct mlx4_cmd_mailbox *inbox,
1215 struct mlx4_cmd_mailbox *outbox,
1216 struct mlx4_cmd_info *cmd);
1217int mlx4_QUERY_IF_STAT_wrapper(struct mlx4_dev *dev, int slave,
1218 struct mlx4_vhcr *vhcr,
1219 struct mlx4_cmd_mailbox *inbox,
1220 struct mlx4_cmd_mailbox *outbox,
1221 struct mlx4_cmd_info *cmd);
Hadar Hen Zion8fcfb4d2012-07-05 04:03:45 +00001222int mlx4_QP_FLOW_STEERING_ATTACH_wrapper(struct mlx4_dev *dev, int slave,
1223 struct mlx4_vhcr *vhcr,
1224 struct mlx4_cmd_mailbox *inbox,
1225 struct mlx4_cmd_mailbox *outbox,
1226 struct mlx4_cmd_info *cmd);
1227int mlx4_QP_FLOW_STEERING_DETACH_wrapper(struct mlx4_dev *dev, int slave,
1228 struct mlx4_vhcr *vhcr,
1229 struct mlx4_cmd_mailbox *inbox,
1230 struct mlx4_cmd_mailbox *outbox,
1231 struct mlx4_cmd_info *cmd);
Jack Morgensteinf5311ac2011-12-13 04:12:13 +00001232
Eugenia Emantayev0ec2c0f2011-12-13 04:16:02 +00001233int mlx4_get_mgm_entry_size(struct mlx4_dev *dev);
1234int mlx4_get_qp_per_mgm(struct mlx4_dev *dev);
1235
Marcel Apfelbaum5cc914f2011-12-13 04:12:40 +00001236static inline void set_param_l(u64 *arg, u32 val)
1237{
Jack Morgensteine7dbeba2013-03-07 03:46:54 +00001238 *arg = (*arg & 0xffffffff00000000ULL) | (u64) val;
Marcel Apfelbaum5cc914f2011-12-13 04:12:40 +00001239}
1240
1241static inline void set_param_h(u64 *arg, u32 val)
1242{
1243 *arg = (*arg & 0xffffffff) | ((u64) val << 32);
1244}
1245
1246static inline u32 get_param_l(u64 *arg)
1247{
1248 return (u32) (*arg & 0xffffffff);
1249}
1250
1251static inline u32 get_param_h(u64 *arg)
1252{
1253 return (u32)(*arg >> 32);
1254}
1255
Eli Cohenc82e9aa2011-12-13 04:15:24 +00001256static inline spinlock_t *mlx4_tlock(struct mlx4_dev *dev)
1257{
1258 return &mlx4_priv(dev)->mfunc.master.res_tracker.lock;
1259}
1260
Jack Morgensteinf5311ac2011-12-13 04:12:13 +00001261#define NOT_MASKED_PD_BITS 17
1262
Roland Dreier225c7b12007-05-08 18:00:38 -07001263#endif /* MLX4_H */