blob: 8b75d5ef0940b9758cea7d1ec1235867d990276f [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
Hadar Hen Zion0ff1fb62012-07-05 04:03:46 +000065enum {
66 MLX4_FS_L2_HASH = 0,
67 MLX4_FS_L2_L3_L4_HASH,
68};
69
Amir Vadaie5395e92012-04-04 21:33:25 +000070#define MLX4_NUM_UP 8
71#define MLX4_NUM_TC 8
72#define MLX4_RATELIMIT_UNITS 3 /* 100 Mbps */
73#define MLX4_RATELIMIT_DEFAULT 0xffff
74
75struct mlx4_set_port_prio2tc_context {
76 u8 prio2tc[4];
77};
78
79struct mlx4_port_scheduler_tc_cfg_be {
80 __be16 pg;
81 __be16 bw_precentage;
82 __be16 max_bw_units; /* 3-100Mbps, 4-1Gbps, other values - reserved */
83 __be16 max_bw_value;
84};
85
86struct mlx4_set_port_scheduler_context {
87 struct mlx4_port_scheduler_tc_cfg_be tc[MLX4_NUM_TC];
88};
89
Roland Dreier225c7b12007-05-08 18:00:38 -070090enum {
91 MLX4_HCR_BASE = 0x80680,
92 MLX4_HCR_SIZE = 0x0001c,
Jack Morgenstein623ed842011-12-13 04:10:33 +000093 MLX4_CLR_INT_SIZE = 0x00008,
94 MLX4_SLAVE_COMM_BASE = 0x0,
95 MLX4_COMM_PAGESIZE = 0x1000
Roland Dreier225c7b12007-05-08 18:00:38 -070096};
97
98enum {
Jack Morgenstein3c439b52012-12-06 17:12:00 +000099 MLX4_DEFAULT_MGM_LOG_ENTRY_SIZE = 10,
100 MLX4_MIN_MGM_LOG_ENTRY_SIZE = 7,
101 MLX4_MAX_MGM_LOG_ENTRY_SIZE = 12,
102 MLX4_MAX_QP_PER_MGM = 4 * ((1 << MLX4_MAX_MGM_LOG_ENTRY_SIZE) / 16 - 2),
Eugenia Emantayev0ec2c0f2011-12-13 04:16:02 +0000103 MLX4_MTT_ENTRY_PER_SEG = 8,
Roland Dreier225c7b12007-05-08 18:00:38 -0700104};
105
106enum {
Roland Dreier225c7b12007-05-08 18:00:38 -0700107 MLX4_NUM_PDS = 1 << 15
108};
109
110enum {
111 MLX4_CMPT_TYPE_QP = 0,
112 MLX4_CMPT_TYPE_SRQ = 1,
113 MLX4_CMPT_TYPE_CQ = 2,
114 MLX4_CMPT_TYPE_EQ = 3,
115 MLX4_CMPT_NUM_TYPE
116};
117
118enum {
119 MLX4_CMPT_SHIFT = 24,
120 MLX4_NUM_CMPTS = MLX4_CMPT_NUM_TYPE << MLX4_CMPT_SHIFT
121};
122
Shani Michaelib20e5192013-02-06 16:19:08 +0000123enum mlx4_mpt_state {
124 MLX4_MPT_DISABLED = 0,
125 MLX4_MPT_EN_HW,
126 MLX4_MPT_EN_SW
Jack Morgenstein623ed842011-12-13 04:10:33 +0000127};
128
129#define MLX4_COMM_TIME 10000
130enum {
131 MLX4_COMM_CMD_RESET,
132 MLX4_COMM_CMD_VHCR0,
133 MLX4_COMM_CMD_VHCR1,
134 MLX4_COMM_CMD_VHCR2,
135 MLX4_COMM_CMD_VHCR_EN,
136 MLX4_COMM_CMD_VHCR_POST,
137 MLX4_COMM_CMD_FLR = 254
138};
139
140/*The flag indicates that the slave should delay the RESET cmd*/
141#define MLX4_DELAY_RESET_SLAVE 0xbbbbbbb
142/*indicates how many retries will be done if we are in the middle of FLR*/
143#define NUM_OF_RESET_RETRIES 10
144#define SLEEP_TIME_IN_RESET (2 * 1000)
145enum mlx4_resource {
146 RES_QP,
147 RES_CQ,
148 RES_SRQ,
149 RES_XRCD,
150 RES_MPT,
151 RES_MTT,
152 RES_MAC,
153 RES_VLAN,
154 RES_EQ,
155 RES_COUNTER,
Hadar Hen Zion1b9c6b02012-07-05 04:03:47 +0000156 RES_FS_RULE,
Jack Morgenstein623ed842011-12-13 04:10:33 +0000157 MLX4_NUM_OF_RESOURCE_TYPE
158};
159
160enum mlx4_alloc_mode {
161 RES_OP_RESERVE,
162 RES_OP_RESERVE_AND_MAP,
163 RES_OP_MAP_ICM,
164};
165
Jack Morgensteinb8924952012-05-15 10:35:02 +0000166enum mlx4_res_tracker_free_type {
167 RES_TR_FREE_ALL,
168 RES_TR_FREE_SLAVES_ONLY,
169 RES_TR_FREE_STRUCTS_ONLY,
170};
Jack Morgenstein623ed842011-12-13 04:10:33 +0000171
172/*
173 *Virtual HCR structures.
174 * mlx4_vhcr is the sw representation, in machine endianess
175 *
176 * mlx4_vhcr_cmd is the formalized structure, the one that is passed
177 * to FW to go through communication channel.
178 * It is big endian, and has the same structure as the physical HCR
179 * used by command interface
180 */
181struct mlx4_vhcr {
182 u64 in_param;
183 u64 out_param;
184 u32 in_modifier;
185 u32 errno;
186 u16 op;
187 u16 token;
188 u8 op_modifier;
189 u8 e_bit;
190};
191
192struct mlx4_vhcr_cmd {
193 __be64 in_param;
194 __be32 in_modifier;
195 __be64 out_param;
196 __be16 token;
197 u16 reserved;
198 u8 status;
199 u8 flags;
200 __be16 opcode;
201};
202
203struct mlx4_cmd_info {
204 u16 opcode;
205 bool has_inbox;
206 bool has_outbox;
207 bool out_is_imm;
208 bool encode_slave_id;
209 int (*verify)(struct mlx4_dev *dev, int slave, struct mlx4_vhcr *vhcr,
210 struct mlx4_cmd_mailbox *inbox);
211 int (*wrapper)(struct mlx4_dev *dev, int slave, struct mlx4_vhcr *vhcr,
212 struct mlx4_cmd_mailbox *inbox,
213 struct mlx4_cmd_mailbox *outbox,
214 struct mlx4_cmd_info *cmd);
215};
216
Roland Dreier225c7b12007-05-08 18:00:38 -0700217#ifdef CONFIG_MLX4_DEBUG
218extern int mlx4_debug_level;
Roland Dreier7b0f5df2008-11-04 11:18:56 -0800219#else /* CONFIG_MLX4_DEBUG */
220#define mlx4_debug_level (0)
221#endif /* CONFIG_MLX4_DEBUG */
Roland Dreier225c7b12007-05-08 18:00:38 -0700222
223#define mlx4_dbg(mdev, format, arg...) \
Joe Perches0a645e82010-07-10 07:22:46 +0000224do { \
225 if (mlx4_debug_level) \
226 dev_printk(KERN_DEBUG, &mdev->pdev->dev, format, ##arg); \
227} while (0)
Roland Dreier225c7b12007-05-08 18:00:38 -0700228
Roland Dreier225c7b12007-05-08 18:00:38 -0700229#define mlx4_err(mdev, format, arg...) \
Joe Perches0a645e82010-07-10 07:22:46 +0000230 dev_err(&mdev->pdev->dev, format, ##arg)
Roland Dreier225c7b12007-05-08 18:00:38 -0700231#define mlx4_info(mdev, format, arg...) \
Joe Perches0a645e82010-07-10 07:22:46 +0000232 dev_info(&mdev->pdev->dev, format, ##arg)
Roland Dreier225c7b12007-05-08 18:00:38 -0700233#define mlx4_warn(mdev, format, arg...) \
Joe Perches0a645e82010-07-10 07:22:46 +0000234 dev_warn(&mdev->pdev->dev, format, ##arg)
Roland Dreier225c7b12007-05-08 18:00:38 -0700235
Eugenia Emantayev0ec2c0f2011-12-13 04:16:02 +0000236extern int mlx4_log_num_mgm_entry_size;
Marcel Apfelbaum2b8fb282011-12-13 04:16:56 +0000237extern int log_mtts_per_seg;
Eugenia Emantayev0ec2c0f2011-12-13 04:16:02 +0000238
Jack Morgenstein623ed842011-12-13 04:10:33 +0000239#define MLX4_MAX_NUM_SLAVES (MLX4_MAX_NUM_PF + MLX4_MAX_NUM_VF)
240#define ALL_SLAVES 0xff
241
Roland Dreier225c7b12007-05-08 18:00:38 -0700242struct mlx4_bitmap {
243 u32 last;
244 u32 top;
245 u32 max;
Yevgeny Petrilin93fc9e12008-10-22 10:25:29 -0700246 u32 reserved_top;
Roland Dreier225c7b12007-05-08 18:00:38 -0700247 u32 mask;
Eli Cohen42d1e012011-03-22 22:38:45 +0000248 u32 avail;
Roland Dreier225c7b12007-05-08 18:00:38 -0700249 spinlock_t lock;
250 unsigned long *table;
251};
252
253struct mlx4_buddy {
254 unsigned long **bits;
Roland Dreiere4044cf2008-07-22 14:19:40 -0700255 unsigned int *num_free;
Yishai Hadas3de819e2012-08-13 08:15:07 +0000256 u32 max_order;
Roland Dreier225c7b12007-05-08 18:00:38 -0700257 spinlock_t lock;
258};
259
260struct mlx4_icm;
261
262struct mlx4_icm_table {
263 u64 virt;
264 int num_icm;
Yishai Hadas3de819e2012-08-13 08:15:07 +0000265 u32 num_obj;
Roland Dreier225c7b12007-05-08 18:00:38 -0700266 int obj_size;
267 int lowmem;
Jack Morgenstein5b0bf5e2007-08-01 12:28:20 +0300268 int coherent;
Roland Dreier225c7b12007-05-08 18:00:38 -0700269 struct mutex mutex;
270 struct mlx4_icm **icm;
271};
272
Shani Michaelicc1ade92013-02-06 16:19:10 +0000273#define MLX4_MPT_FLAG_SW_OWNS (0xfUL << 28)
274#define MLX4_MPT_FLAG_FREE (0x3UL << 28)
275#define MLX4_MPT_FLAG_MIO (1 << 17)
276#define MLX4_MPT_FLAG_BIND_ENABLE (1 << 15)
277#define MLX4_MPT_FLAG_PHYSICAL (1 << 9)
278#define MLX4_MPT_FLAG_REGION (1 << 8)
279
280#define MLX4_MPT_PD_FLAG_FAST_REG (1 << 27)
281#define MLX4_MPT_PD_FLAG_RAE (1 << 28)
282#define MLX4_MPT_PD_FLAG_EN_INV (3 << 24)
283
284#define MLX4_MPT_QP_FLAG_BOUND_QP (1 << 7)
285
286#define MLX4_MPT_STATUS_SW 0xF0
287#define MLX4_MPT_STATUS_HW 0x00
288
Eli Cohenc82e9aa2011-12-13 04:15:24 +0000289/*
290 * Must be packed because mtt_seg is 64 bits but only aligned to 32 bits.
291 */
292struct mlx4_mpt_entry {
293 __be32 flags;
294 __be32 qpn;
295 __be32 key;
296 __be32 pd_flags;
297 __be64 start;
298 __be64 length;
299 __be32 lkey;
300 __be32 win_cnt;
301 u8 reserved1[3];
302 u8 mtt_rep;
Marcel Apfelbaum2b8fb282011-12-13 04:16:56 +0000303 __be64 mtt_addr;
Eli Cohenc82e9aa2011-12-13 04:15:24 +0000304 __be32 mtt_sz;
305 __be32 entity_size;
306 __be32 first_byte_offset;
307} __packed;
308
309/*
310 * Must be packed because start is 64 bits but only aligned to 32 bits.
311 */
312struct mlx4_eq_context {
313 __be32 flags;
314 u16 reserved1[3];
315 __be16 page_offset;
316 u8 log_eq_size;
317 u8 reserved2[4];
318 u8 eq_period;
319 u8 reserved3;
320 u8 eq_max_count;
321 u8 reserved4[3];
322 u8 intr;
323 u8 log_page_size;
324 u8 reserved5[2];
325 u8 mtt_base_addr_h;
326 __be32 mtt_base_addr_l;
327 u32 reserved6[2];
328 __be32 consumer_index;
329 __be32 producer_index;
330 u32 reserved7[4];
331};
332
333struct mlx4_cq_context {
334 __be32 flags;
335 u16 reserved1[3];
336 __be16 page_offset;
337 __be32 logsize_usrpage;
338 __be16 cq_period;
339 __be16 cq_max_count;
340 u8 reserved2[3];
341 u8 comp_eqn;
342 u8 log_page_size;
343 u8 reserved3[2];
344 u8 mtt_base_addr_h;
345 __be32 mtt_base_addr_l;
346 __be32 last_notified_index;
347 __be32 solicit_producer_index;
348 __be32 consumer_index;
349 __be32 producer_index;
350 u32 reserved4[2];
351 __be64 db_rec_addr;
352};
353
354struct mlx4_srq_context {
355 __be32 state_logsize_srqn;
356 u8 logstride;
357 u8 reserved1;
358 __be16 xrcd;
359 __be32 pg_offset_cqn;
360 u32 reserved2;
361 u8 log_page_size;
362 u8 reserved3[2];
363 u8 mtt_base_addr_h;
364 __be32 mtt_base_addr_l;
365 __be32 pd;
366 __be16 limit_watermark;
367 __be16 wqe_cnt;
368 u16 reserved4;
369 __be16 wqe_counter;
370 u32 reserved5;
371 __be64 db_rec_addr;
372};
373
Roland Dreier225c7b12007-05-08 18:00:38 -0700374struct mlx4_eq {
375 struct mlx4_dev *dev;
376 void __iomem *doorbell;
377 int eqn;
378 u32 cons_index;
379 u16 irq;
380 u16 have_irq;
381 int nent;
382 struct mlx4_buf_list *page_list;
383 struct mlx4_mtt mtt;
384};
385
Jack Morgenstein623ed842011-12-13 04:10:33 +0000386struct mlx4_slave_eqe {
387 u8 type;
388 u8 port;
389 u32 param;
390};
391
392struct mlx4_slave_event_eq_info {
Marcel Apfelbaum803143f2012-01-19 09:45:46 +0000393 int eqn;
Jack Morgenstein623ed842011-12-13 04:10:33 +0000394 u16 token;
Jack Morgenstein623ed842011-12-13 04:10:33 +0000395};
396
Roland Dreier225c7b12007-05-08 18:00:38 -0700397struct mlx4_profile {
398 int num_qp;
399 int rdmarc_per_qp;
400 int num_srq;
401 int num_cq;
402 int num_mcg;
403 int num_mpt;
Roland Dreierdb5a7a62012-03-05 10:05:28 -0800404 unsigned num_mtt;
Roland Dreier225c7b12007-05-08 18:00:38 -0700405};
406
407struct mlx4_fw {
408 u64 clr_int_base;
409 u64 catas_offset;
Jack Morgenstein623ed842011-12-13 04:10:33 +0000410 u64 comm_base;
Roland Dreier225c7b12007-05-08 18:00:38 -0700411 struct mlx4_icm *fw_icm;
412 struct mlx4_icm *aux_icm;
413 u32 catas_size;
414 u16 fw_pages;
415 u8 clr_int_bar;
416 u8 catas_bar;
Jack Morgenstein623ed842011-12-13 04:10:33 +0000417 u8 comm_bar;
418};
419
420struct mlx4_comm {
421 u32 slave_write;
422 u32 slave_read;
Roland Dreier225c7b12007-05-08 18:00:38 -0700423};
424
Eugenia Emantayevffe455a2011-12-13 04:16:21 +0000425enum {
426 MLX4_MCAST_CONFIG = 0,
427 MLX4_MCAST_DISABLE = 1,
428 MLX4_MCAST_ENABLE = 2,
429};
430
Jack Morgenstein623ed842011-12-13 04:10:33 +0000431#define VLAN_FLTR_SIZE 128
432
433struct mlx4_vlan_fltr {
434 __be32 entry[VLAN_FLTR_SIZE];
435};
436
Eugenia Emantayevffe455a2011-12-13 04:16:21 +0000437struct mlx4_mcast_entry {
438 struct list_head list;
439 u64 addr;
440};
441
Yevgeny Petrilinb12d93d2011-03-22 22:38:24 +0000442struct mlx4_promisc_qp {
443 struct list_head list;
444 u32 qpn;
445};
446
447struct mlx4_steer_index {
448 struct list_head list;
449 unsigned int index;
450 struct list_head duplicates;
451};
452
Marcel Apfelbaum803143f2012-01-19 09:45:46 +0000453#define MLX4_EVENT_TYPES_NUM 64
454
Jack Morgenstein623ed842011-12-13 04:10:33 +0000455struct mlx4_slave_state {
456 u8 comm_toggle;
457 u8 last_cmd;
458 u8 init_port_mask;
459 bool active;
460 u8 function;
461 dma_addr_t vhcr_dma;
462 u16 mtu[MLX4_MAX_PORTS + 1];
463 __be32 ib_cap_mask[MLX4_MAX_PORTS + 1];
464 struct mlx4_slave_eqe eq[MLX4_MFUNC_MAX_EQES];
465 struct list_head mcast_filters[MLX4_MAX_PORTS + 1];
466 struct mlx4_vlan_fltr *vlan_filter[MLX4_MAX_PORTS + 1];
Marcel Apfelbaum803143f2012-01-19 09:45:46 +0000467 /* event type to eq number lookup */
468 struct mlx4_slave_event_eq_info event_eq[MLX4_EVENT_TYPES_NUM];
Jack Morgenstein623ed842011-12-13 04:10:33 +0000469 u16 eq_pi;
470 u16 eq_ci;
471 spinlock_t lock;
472 /*initialized via the kzalloc*/
473 u8 is_slave_going_down;
474 u32 cookie;
Jack Morgenstein993c4012012-08-03 08:40:48 +0000475 enum slave_port_state port_state[MLX4_MAX_PORTS + 1];
Jack Morgenstein623ed842011-12-13 04:10:33 +0000476};
477
478struct slave_list {
479 struct mutex mutex;
480 struct list_head res_list[MLX4_NUM_OF_RESOURCE_TYPE];
481};
482
483struct mlx4_resource_tracker {
484 spinlock_t lock;
485 /* tree for each resources */
Hadar Hen Zion4af1c042012-07-05 04:03:41 +0000486 struct rb_root res_tree[MLX4_NUM_OF_RESOURCE_TYPE];
Jack Morgenstein623ed842011-12-13 04:10:33 +0000487 /* num_of_slave's lists, one per slave */
488 struct slave_list *slave_list;
489};
490
491#define SLAVE_EVENT_EQ_SIZE 128
492struct mlx4_slave_event_eq {
493 u32 eqn;
494 u32 cons;
495 u32 prod;
Jack Morgenstein992e8e6e2012-08-03 08:40:54 +0000496 spinlock_t event_lock;
Jack Morgenstein623ed842011-12-13 04:10:33 +0000497 struct mlx4_eqe event_eqe[SLAVE_EVENT_EQ_SIZE];
498};
499
500struct mlx4_master_qp0_state {
501 int proxy_qp0_active;
502 int qp0_active;
503 int port_active;
504};
505
506struct mlx4_mfunc_master_ctx {
507 struct mlx4_slave_state *slave_state;
508 struct mlx4_master_qp0_state qp0_state[MLX4_MAX_PORTS + 1];
509 int init_port_ref[MLX4_MAX_PORTS + 1];
510 u16 max_mtu[MLX4_MAX_PORTS + 1];
511 int disable_mcast_ref[MLX4_MAX_PORTS + 1];
512 struct mlx4_resource_tracker res_tracker;
513 struct workqueue_struct *comm_wq;
514 struct work_struct comm_work;
515 struct work_struct slave_event_work;
516 struct work_struct slave_flr_event_work;
517 spinlock_t slave_state_lock;
Jack Morgensteinf5311ac2011-12-13 04:12:13 +0000518 __be32 comm_arm_bit_vector[4];
Jack Morgenstein623ed842011-12-13 04:10:33 +0000519 struct mlx4_eqe cmd_eqe;
520 struct mlx4_slave_event_eq slave_eq;
521 struct mutex gen_eqe_mutex[MLX4_MFUNC_MAX];
522};
523
524struct mlx4_mfunc {
525 struct mlx4_comm __iomem *comm;
526 struct mlx4_vhcr_cmd *vhcr;
527 dma_addr_t vhcr_dma;
528
529 struct mlx4_mfunc_master_ctx master;
530};
531
Roland Dreier225c7b12007-05-08 18:00:38 -0700532struct mlx4_cmd {
533 struct pci_pool *pool;
534 void __iomem *hcr;
535 struct mutex hcr_mutex;
Roland Dreierf3d4c892012-09-25 21:24:07 -0700536 struct mutex slave_cmd_mutex;
Roland Dreier225c7b12007-05-08 18:00:38 -0700537 struct semaphore poll_sem;
538 struct semaphore event_sem;
539 int max_cmds;
540 spinlock_t context_lock;
541 int free_head;
542 struct mlx4_cmd_context *context;
543 u16 token_mask;
544 u8 use_events;
545 u8 toggle;
Jack Morgenstein623ed842011-12-13 04:10:33 +0000546 u8 comm_toggle;
Roland Dreier225c7b12007-05-08 18:00:38 -0700547};
548
549struct mlx4_uar_table {
550 struct mlx4_bitmap bitmap;
551};
552
553struct mlx4_mr_table {
554 struct mlx4_bitmap mpt_bitmap;
555 struct mlx4_buddy mtt_buddy;
556 u64 mtt_base;
557 u64 mpt_base;
558 struct mlx4_icm_table mtt_table;
559 struct mlx4_icm_table dmpt_table;
560};
561
562struct mlx4_cq_table {
563 struct mlx4_bitmap bitmap;
564 spinlock_t lock;
565 struct radix_tree_root tree;
566 struct mlx4_icm_table table;
567 struct mlx4_icm_table cmpt_table;
568};
569
570struct mlx4_eq_table {
571 struct mlx4_bitmap bitmap;
Yevgeny Petrilinb8dd7862008-12-22 07:15:03 -0800572 char *irq_names;
Roland Dreier225c7b12007-05-08 18:00:38 -0700573 void __iomem *clr_int;
Yevgeny Petrilinb8dd7862008-12-22 07:15:03 -0800574 void __iomem **uar_map;
Roland Dreier225c7b12007-05-08 18:00:38 -0700575 u32 clr_mask;
Yevgeny Petrilinb8dd7862008-12-22 07:15:03 -0800576 struct mlx4_eq *eq;
Roland Dreierfa0681d2009-09-05 20:24:49 -0700577 struct mlx4_icm_table table;
Roland Dreier225c7b12007-05-08 18:00:38 -0700578 struct mlx4_icm_table cmpt_table;
579 int have_irq;
580 u8 inta_pin;
581};
582
583struct mlx4_srq_table {
584 struct mlx4_bitmap bitmap;
585 spinlock_t lock;
586 struct radix_tree_root tree;
587 struct mlx4_icm_table table;
588 struct mlx4_icm_table cmpt_table;
589};
590
591struct mlx4_qp_table {
592 struct mlx4_bitmap bitmap;
593 u32 rdmarc_base;
594 int rdmarc_shift;
595 spinlock_t lock;
596 struct mlx4_icm_table qp_table;
597 struct mlx4_icm_table auxc_table;
598 struct mlx4_icm_table altc_table;
599 struct mlx4_icm_table rdmarc_table;
600 struct mlx4_icm_table cmpt_table;
601};
602
603struct mlx4_mcg_table {
604 struct mutex mutex;
605 struct mlx4_bitmap bitmap;
606 struct mlx4_icm_table table;
607};
608
609struct mlx4_catas_err {
610 u32 __iomem *map;
Jack Morgensteinee49bd92007-07-12 17:50:45 +0300611 struct timer_list timer;
612 struct list_head list;
Roland Dreier225c7b12007-05-08 18:00:38 -0700613};
614
Yevgeny Petrilin2a2336f2008-10-22 11:44:46 -0700615#define MLX4_MAX_MAC_NUM 128
616#define MLX4_MAC_TABLE_SIZE (MLX4_MAX_MAC_NUM << 3)
617
618struct mlx4_mac_table {
619 __be64 entries[MLX4_MAX_MAC_NUM];
620 int refs[MLX4_MAX_MAC_NUM];
621 struct mutex mutex;
622 int total;
623 int max;
624};
625
626#define MLX4_MAX_VLAN_NUM 128
627#define MLX4_VLAN_TABLE_SIZE (MLX4_MAX_VLAN_NUM << 2)
628
629struct mlx4_vlan_table {
630 __be32 entries[MLX4_MAX_VLAN_NUM];
631 int refs[MLX4_MAX_VLAN_NUM];
632 struct mutex mutex;
633 int total;
634 int max;
635};
636
Eugenia Emantayevffe455a2011-12-13 04:16:21 +0000637#define SET_PORT_GEN_ALL_VALID 0x7
638#define SET_PORT_PROMISC_SHIFT 31
639#define SET_PORT_MC_PROMISC_SHIFT 30
640
641enum {
642 MCAST_DIRECT_ONLY = 0,
643 MCAST_DIRECT = 1,
644 MCAST_DEFAULT = 2
645};
646
647
648struct mlx4_set_port_general_context {
649 u8 reserved[3];
650 u8 flags;
651 u16 reserved2;
652 __be16 mtu;
653 u8 pptx;
654 u8 pfctx;
655 u16 reserved3;
656 u8 pprx;
657 u8 pfcrx;
658 u16 reserved4;
659};
660
661struct mlx4_set_port_rqp_calc_context {
662 __be32 base_qpn;
663 u8 rererved;
664 u8 n_mac;
665 u8 n_vlan;
666 u8 n_prio;
667 u8 reserved2[3];
668 u8 mac_miss;
669 u8 intra_no_vlan;
670 u8 no_vlan;
671 u8 intra_vlan_miss;
672 u8 vlan_miss;
673 u8 reserved3[3];
674 u8 no_vlan_prio;
675 __be32 promisc;
676 __be32 mcast;
677};
678
Yevgeny Petrilin16792002011-03-22 22:38:31 +0000679struct mlx4_mac_entry {
680 u64 mac;
Hadar Hen Zion0ff1fb62012-07-05 04:03:46 +0000681 u64 reg_id;
Yevgeny Petrilin16792002011-03-22 22:38:31 +0000682};
683
Yevgeny Petrilin2a2336f2008-10-22 11:44:46 -0700684struct mlx4_port_info {
685 struct mlx4_dev *dev;
686 int port;
Yevgeny Petrilin7ff93f82008-10-22 15:38:42 -0700687 char dev_name[16];
688 struct device_attribute port_attr;
689 enum mlx4_port_type tmp_type;
Or Gerlitz096335b2012-01-11 19:02:17 +0200690 char dev_mtu_name[16];
691 struct device_attribute port_mtu_attr;
Yevgeny Petrilin2a2336f2008-10-22 11:44:46 -0700692 struct mlx4_mac_table mac_table;
Yevgeny Petrilin16792002011-03-22 22:38:31 +0000693 struct radix_tree_root mac_tree;
Yevgeny Petrilin2a2336f2008-10-22 11:44:46 -0700694 struct mlx4_vlan_table vlan_table;
Yevgeny Petrilin16792002011-03-22 22:38:31 +0000695 int base_qpn;
Yevgeny Petrilin2a2336f2008-10-22 11:44:46 -0700696};
697
Yevgeny Petrilin27bf91d2009-03-18 19:45:11 -0700698struct mlx4_sense {
699 struct mlx4_dev *dev;
700 u8 do_sense_port[MLX4_MAX_PORTS + 1];
701 u8 sense_allowed[MLX4_MAX_PORTS + 1];
702 struct delayed_work sense_poll;
703};
704
Yevgeny Petrilin0b7ca5a2011-03-22 22:37:47 +0000705struct mlx4_msix_ctl {
706 u64 pool_bm;
Yevgeny Petrilin730c41d2012-02-21 03:39:32 +0000707 struct mutex pool_lock;
Yevgeny Petrilin0b7ca5a2011-03-22 22:37:47 +0000708};
709
Yevgeny Petrilinb12d93d2011-03-22 22:38:24 +0000710struct mlx4_steer {
711 struct list_head promisc_qps[MLX4_NUM_STEERS];
712 struct list_head steer_entries[MLX4_NUM_STEERS];
Yevgeny Petrilinb12d93d2011-03-22 22:38:24 +0000713};
714
Hadar Hen Ziona8edc3b2012-09-05 22:50:48 +0000715struct mlx4_net_trans_rule_hw_ctrl {
716 __be32 ctrl;
717 __be32 vf_vep_port;
718 __be32 qpn;
719 __be32 reserved;
720};
721
722struct mlx4_net_trans_rule_hw_ib {
723 u8 size;
724 u8 rsvd1;
725 __be16 id;
726 u32 rsvd2;
727 __be32 qpn;
728 __be32 qpn_mask;
729 u8 dst_gid[16];
730 u8 dst_gid_msk[16];
731} __packed;
732
733struct mlx4_net_trans_rule_hw_eth {
734 u8 size;
735 u8 rsvd;
736 __be16 id;
737 u8 rsvd1[6];
738 u8 dst_mac[6];
739 u16 rsvd2;
740 u8 dst_mac_msk[6];
741 u16 rsvd3;
742 u8 src_mac[6];
743 u16 rsvd4;
744 u8 src_mac_msk[6];
745 u8 rsvd5;
746 u8 ether_type_enable;
747 __be16 ether_type;
748 __be16 vlan_id_msk;
749 __be16 vlan_id;
750} __packed;
751
752struct mlx4_net_trans_rule_hw_tcp_udp {
753 u8 size;
754 u8 rsvd;
755 __be16 id;
756 __be16 rsvd1[3];
757 __be16 dst_port;
758 __be16 rsvd2;
759 __be16 dst_port_msk;
760 __be16 rsvd3;
761 __be16 src_port;
762 __be16 rsvd4;
763 __be16 src_port_msk;
764} __packed;
765
766struct mlx4_net_trans_rule_hw_ipv4 {
767 u8 size;
768 u8 rsvd;
769 __be16 id;
770 __be32 rsvd1;
771 __be32 dst_ip;
772 __be32 dst_ip_msk;
773 __be32 src_ip;
774 __be32 src_ip_msk;
775} __packed;
776
777struct _rule_hw {
778 union {
779 struct {
780 u8 size;
781 u8 rsvd;
782 __be16 id;
783 };
784 struct mlx4_net_trans_rule_hw_eth eth;
785 struct mlx4_net_trans_rule_hw_ib ib;
786 struct mlx4_net_trans_rule_hw_ipv4 ipv4;
787 struct mlx4_net_trans_rule_hw_tcp_udp tcp_udp;
788 };
789};
790
Roland Dreier839f1242012-09-27 09:23:41 -0700791enum {
792 MLX4_PCI_DEV_IS_VF = 1 << 0,
Roland Dreierca3e57a2012-09-27 09:53:05 -0700793 MLX4_PCI_DEV_FORCE_SENSE_PORT = 1 << 1,
Roland Dreier839f1242012-09-27 09:23:41 -0700794};
795
Roland Dreier225c7b12007-05-08 18:00:38 -0700796struct mlx4_priv {
797 struct mlx4_dev dev;
798
799 struct list_head dev_list;
800 struct list_head ctx_list;
801 spinlock_t ctx_lock;
802
Roland Dreier839f1242012-09-27 09:23:41 -0700803 int pci_dev_data;
804
Yevgeny Petrilin62968832008-04-23 11:55:45 -0700805 struct list_head pgdir_list;
806 struct mutex pgdir_mutex;
807
Roland Dreier225c7b12007-05-08 18:00:38 -0700808 struct mlx4_fw fw;
809 struct mlx4_cmd cmd;
Jack Morgenstein623ed842011-12-13 04:10:33 +0000810 struct mlx4_mfunc mfunc;
Roland Dreier225c7b12007-05-08 18:00:38 -0700811
812 struct mlx4_bitmap pd_bitmap;
Sean Hefty012a8ff2011-06-02 09:01:33 -0700813 struct mlx4_bitmap xrcd_bitmap;
Roland Dreier225c7b12007-05-08 18:00:38 -0700814 struct mlx4_uar_table uar_table;
815 struct mlx4_mr_table mr_table;
816 struct mlx4_cq_table cq_table;
817 struct mlx4_eq_table eq_table;
818 struct mlx4_srq_table srq_table;
819 struct mlx4_qp_table qp_table;
820 struct mlx4_mcg_table mcg_table;
Or Gerlitzf2a3f6a2011-06-15 14:47:14 +0000821 struct mlx4_bitmap counters_bitmap;
Roland Dreier225c7b12007-05-08 18:00:38 -0700822
823 struct mlx4_catas_err catas_err;
824
825 void __iomem *clr_base;
826
827 struct mlx4_uar driver_uar;
828 void __iomem *kar;
Yevgeny Petrilin2a2336f2008-10-22 11:44:46 -0700829 struct mlx4_port_info port[MLX4_MAX_PORTS + 1];
Yevgeny Petrilin27bf91d2009-03-18 19:45:11 -0700830 struct mlx4_sense sense;
Yevgeny Petrilin7ff93f82008-10-22 15:38:42 -0700831 struct mutex port_mutex;
Yevgeny Petrilin0b7ca5a2011-03-22 22:37:47 +0000832 struct mlx4_msix_ctl msix_ctl;
Yevgeny Petrilinb12d93d2011-03-22 22:38:24 +0000833 struct mlx4_steer *steer;
Eli Cohenc1b43dc2011-03-22 22:38:41 +0000834 struct list_head bf_list;
835 struct mutex bf_mutex;
836 struct io_mapping *bf_mapping;
Jack Morgensteinea51b372011-12-13 04:13:48 +0000837 int reserved_mtts;
Hadar Hen Zion0ff1fb62012-07-05 04:03:46 +0000838 int fs_hash_mode;
Jack Morgenstein54679e12012-08-03 08:40:43 +0000839 u8 virt2phys_pkey[MLX4_MFUNC_MAX][MLX4_MAX_PORTS][MLX4_MAX_PORT_PKEYS];
Jack Morgensteinafa8fd12012-08-03 08:40:56 +0000840 __be64 slave_node_guids[MLX4_MFUNC_MAX];
Jack Morgenstein54679e12012-08-03 08:40:43 +0000841
Roland Dreier225c7b12007-05-08 18:00:38 -0700842};
843
844static inline struct mlx4_priv *mlx4_priv(struct mlx4_dev *dev)
845{
846 return container_of(dev, struct mlx4_priv, dev);
847}
848
Yevgeny Petrilin27bf91d2009-03-18 19:45:11 -0700849#define MLX4_SENSE_RANGE (HZ * 3)
850
851extern struct workqueue_struct *mlx4_wq;
852
Roland Dreier225c7b12007-05-08 18:00:38 -0700853u32 mlx4_bitmap_alloc(struct mlx4_bitmap *bitmap);
854void mlx4_bitmap_free(struct mlx4_bitmap *bitmap, u32 obj);
Yevgeny Petrilina3cdcbf2008-10-10 12:01:37 -0700855u32 mlx4_bitmap_alloc_range(struct mlx4_bitmap *bitmap, int cnt, int align);
856void mlx4_bitmap_free_range(struct mlx4_bitmap *bitmap, u32 obj, int cnt);
Eli Cohen42d1e012011-03-22 22:38:45 +0000857u32 mlx4_bitmap_avail(struct mlx4_bitmap *bitmap);
Yevgeny Petrilin93fc9e12008-10-22 10:25:29 -0700858int mlx4_bitmap_init(struct mlx4_bitmap *bitmap, u32 num, u32 mask,
859 u32 reserved_bot, u32 resetrved_top);
Roland Dreier225c7b12007-05-08 18:00:38 -0700860void mlx4_bitmap_cleanup(struct mlx4_bitmap *bitmap);
861
862int mlx4_reset(struct mlx4_dev *dev);
863
Yevgeny Petrilinb8dd7862008-12-22 07:15:03 -0800864int mlx4_alloc_eq_table(struct mlx4_dev *dev);
865void mlx4_free_eq_table(struct mlx4_dev *dev);
866
Roland Dreier225c7b12007-05-08 18:00:38 -0700867int mlx4_init_pd_table(struct mlx4_dev *dev);
Sean Hefty012a8ff2011-06-02 09:01:33 -0700868int mlx4_init_xrcd_table(struct mlx4_dev *dev);
Roland Dreier225c7b12007-05-08 18:00:38 -0700869int mlx4_init_uar_table(struct mlx4_dev *dev);
870int mlx4_init_mr_table(struct mlx4_dev *dev);
871int mlx4_init_eq_table(struct mlx4_dev *dev);
872int mlx4_init_cq_table(struct mlx4_dev *dev);
873int mlx4_init_qp_table(struct mlx4_dev *dev);
874int mlx4_init_srq_table(struct mlx4_dev *dev);
875int mlx4_init_mcg_table(struct mlx4_dev *dev);
876
877void mlx4_cleanup_pd_table(struct mlx4_dev *dev);
Sean Hefty012a8ff2011-06-02 09:01:33 -0700878void mlx4_cleanup_xrcd_table(struct mlx4_dev *dev);
Roland Dreier225c7b12007-05-08 18:00:38 -0700879void mlx4_cleanup_uar_table(struct mlx4_dev *dev);
880void mlx4_cleanup_mr_table(struct mlx4_dev *dev);
881void mlx4_cleanup_eq_table(struct mlx4_dev *dev);
882void mlx4_cleanup_cq_table(struct mlx4_dev *dev);
883void mlx4_cleanup_qp_table(struct mlx4_dev *dev);
884void mlx4_cleanup_srq_table(struct mlx4_dev *dev);
885void mlx4_cleanup_mcg_table(struct mlx4_dev *dev);
Eli Cohenc82e9aa2011-12-13 04:15:24 +0000886int __mlx4_qp_alloc_icm(struct mlx4_dev *dev, int qpn);
887void __mlx4_qp_free_icm(struct mlx4_dev *dev, int qpn);
888int __mlx4_cq_alloc_icm(struct mlx4_dev *dev, int *cqn);
889void __mlx4_cq_free_icm(struct mlx4_dev *dev, int cqn);
890int __mlx4_srq_alloc_icm(struct mlx4_dev *dev, int *srqn);
891void __mlx4_srq_free_icm(struct mlx4_dev *dev, int srqn);
Shani Michaelib20e5192013-02-06 16:19:08 +0000892int __mlx4_mpt_reserve(struct mlx4_dev *dev);
893void __mlx4_mpt_release(struct mlx4_dev *dev, u32 index);
894int __mlx4_mpt_alloc_icm(struct mlx4_dev *dev, u32 index);
895void __mlx4_mpt_free_icm(struct mlx4_dev *dev, u32 index);
Eli Cohenc82e9aa2011-12-13 04:15:24 +0000896u32 __mlx4_alloc_mtt_range(struct mlx4_dev *dev, int order);
897void __mlx4_free_mtt_range(struct mlx4_dev *dev, u32 first_seg, int order);
Roland Dreier225c7b12007-05-08 18:00:38 -0700898
Jack Morgenstein623ed842011-12-13 04:10:33 +0000899int mlx4_WRITE_MTT_wrapper(struct mlx4_dev *dev, int slave,
900 struct mlx4_vhcr *vhcr,
901 struct mlx4_cmd_mailbox *inbox,
902 struct mlx4_cmd_mailbox *outbox,
903 struct mlx4_cmd_info *cmd);
904int mlx4_SYNC_TPT_wrapper(struct mlx4_dev *dev, int slave,
905 struct mlx4_vhcr *vhcr,
906 struct mlx4_cmd_mailbox *inbox,
907 struct mlx4_cmd_mailbox *outbox,
908 struct mlx4_cmd_info *cmd);
909int mlx4_SW2HW_MPT_wrapper(struct mlx4_dev *dev, int slave,
910 struct mlx4_vhcr *vhcr,
911 struct mlx4_cmd_mailbox *inbox,
912 struct mlx4_cmd_mailbox *outbox,
913 struct mlx4_cmd_info *cmd);
914int mlx4_HW2SW_MPT_wrapper(struct mlx4_dev *dev, int slave,
915 struct mlx4_vhcr *vhcr,
916 struct mlx4_cmd_mailbox *inbox,
917 struct mlx4_cmd_mailbox *outbox,
918 struct mlx4_cmd_info *cmd);
919int mlx4_QUERY_MPT_wrapper(struct mlx4_dev *dev, int slave,
920 struct mlx4_vhcr *vhcr,
921 struct mlx4_cmd_mailbox *inbox,
922 struct mlx4_cmd_mailbox *outbox,
923 struct mlx4_cmd_info *cmd);
924int mlx4_SW2HW_EQ_wrapper(struct mlx4_dev *dev, int slave,
925 struct mlx4_vhcr *vhcr,
926 struct mlx4_cmd_mailbox *inbox,
927 struct mlx4_cmd_mailbox *outbox,
928 struct mlx4_cmd_info *cmd);
929int mlx4_DMA_wrapper(struct mlx4_dev *dev, int slave,
930 struct mlx4_vhcr *vhcr,
931 struct mlx4_cmd_mailbox *inbox,
932 struct mlx4_cmd_mailbox *outbox,
933 struct mlx4_cmd_info *cmd);
Eli Cohenc82e9aa2011-12-13 04:15:24 +0000934int __mlx4_qp_reserve_range(struct mlx4_dev *dev, int cnt, int align,
935 int *base);
936void __mlx4_qp_release_range(struct mlx4_dev *dev, int base_qpn, int cnt);
937int __mlx4_register_mac(struct mlx4_dev *dev, u8 port, u64 mac);
938void __mlx4_unregister_mac(struct mlx4_dev *dev, u8 port, u64 mac);
939int __mlx4_replace_mac(struct mlx4_dev *dev, u8 port, int qpn, u64 new_mac);
940int __mlx4_write_mtt(struct mlx4_dev *dev, struct mlx4_mtt *mtt,
941 int start_index, int npages, u64 *page_list);
Jack Morgensteinba062d52012-05-15 10:35:03 +0000942int __mlx4_counter_alloc(struct mlx4_dev *dev, u32 *idx);
943void __mlx4_counter_free(struct mlx4_dev *dev, u32 idx);
944int __mlx4_xrcd_alloc(struct mlx4_dev *dev, u32 *xrcdn);
945void __mlx4_xrcd_free(struct mlx4_dev *dev, u32 xrcdn);
Jack Morgenstein623ed842011-12-13 04:10:33 +0000946
Jack Morgensteinee49bd92007-07-12 17:50:45 +0300947void mlx4_start_catas_poll(struct mlx4_dev *dev);
948void mlx4_stop_catas_poll(struct mlx4_dev *dev);
Yevgeny Petrilin27bf91d2009-03-18 19:45:11 -0700949void mlx4_catas_init(void);
Jack Morgensteinee49bd92007-07-12 17:50:45 +0300950int mlx4_restart_one(struct pci_dev *pdev);
Roland Dreier225c7b12007-05-08 18:00:38 -0700951int mlx4_register_device(struct mlx4_dev *dev);
952void mlx4_unregister_device(struct mlx4_dev *dev);
Jack Morgenstein00f5ce92012-06-19 11:21:40 +0300953void mlx4_dispatch_event(struct mlx4_dev *dev, enum mlx4_dev_event type,
954 unsigned long param);
Roland Dreier225c7b12007-05-08 18:00:38 -0700955
956struct mlx4_dev_cap;
957struct mlx4_init_hca_param;
958
959u64 mlx4_make_profile(struct mlx4_dev *dev,
960 struct mlx4_profile *request,
961 struct mlx4_dev_cap *dev_cap,
962 struct mlx4_init_hca_param *init_hca);
Jack Morgenstein623ed842011-12-13 04:10:33 +0000963void mlx4_master_comm_channel(struct work_struct *work);
964void mlx4_gen_slave_eqe(struct work_struct *work);
965void mlx4_master_handle_slave_flr(struct work_struct *work);
966
967int mlx4_ALLOC_RES_wrapper(struct mlx4_dev *dev, int slave,
968 struct mlx4_vhcr *vhcr,
969 struct mlx4_cmd_mailbox *inbox,
970 struct mlx4_cmd_mailbox *outbox,
971 struct mlx4_cmd_info *cmd);
972int mlx4_FREE_RES_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_MAP_EQ_wrapper(struct mlx4_dev *dev, int slave,
978 struct mlx4_vhcr *vhcr, struct mlx4_cmd_mailbox *inbox,
979 struct mlx4_cmd_mailbox *outbox,
980 struct mlx4_cmd_info *cmd);
981int mlx4_COMM_INT_wrapper(struct mlx4_dev *dev, int slave,
982 struct mlx4_vhcr *vhcr,
983 struct mlx4_cmd_mailbox *inbox,
984 struct mlx4_cmd_mailbox *outbox,
985 struct mlx4_cmd_info *cmd);
986int mlx4_HW2SW_EQ_wrapper(struct mlx4_dev *dev, int slave,
987 struct mlx4_vhcr *vhcr,
988 struct mlx4_cmd_mailbox *inbox,
989 struct mlx4_cmd_mailbox *outbox,
990 struct mlx4_cmd_info *cmd);
991int mlx4_QUERY_EQ_wrapper(struct mlx4_dev *dev, int slave,
992 struct mlx4_vhcr *vhcr,
993 struct mlx4_cmd_mailbox *inbox,
994 struct mlx4_cmd_mailbox *outbox,
995 struct mlx4_cmd_info *cmd);
996int mlx4_SW2HW_CQ_wrapper(struct mlx4_dev *dev, int slave,
997 struct mlx4_vhcr *vhcr,
998 struct mlx4_cmd_mailbox *inbox,
999 struct mlx4_cmd_mailbox *outbox,
1000 struct mlx4_cmd_info *cmd);
1001int mlx4_HW2SW_CQ_wrapper(struct mlx4_dev *dev, int slave,
1002 struct mlx4_vhcr *vhcr,
1003 struct mlx4_cmd_mailbox *inbox,
1004 struct mlx4_cmd_mailbox *outbox,
1005 struct mlx4_cmd_info *cmd);
1006int mlx4_QUERY_CQ_wrapper(struct mlx4_dev *dev, int slave,
1007 struct mlx4_vhcr *vhcr,
1008 struct mlx4_cmd_mailbox *inbox,
1009 struct mlx4_cmd_mailbox *outbox,
1010 struct mlx4_cmd_info *cmd);
1011int mlx4_MODIFY_CQ_wrapper(struct mlx4_dev *dev, int slave,
1012 struct mlx4_vhcr *vhcr,
1013 struct mlx4_cmd_mailbox *inbox,
1014 struct mlx4_cmd_mailbox *outbox,
1015 struct mlx4_cmd_info *cmd);
1016int mlx4_SW2HW_SRQ_wrapper(struct mlx4_dev *dev, int slave,
1017 struct mlx4_vhcr *vhcr,
1018 struct mlx4_cmd_mailbox *inbox,
1019 struct mlx4_cmd_mailbox *outbox,
1020 struct mlx4_cmd_info *cmd);
1021int mlx4_HW2SW_SRQ_wrapper(struct mlx4_dev *dev, int slave,
1022 struct mlx4_vhcr *vhcr,
1023 struct mlx4_cmd_mailbox *inbox,
1024 struct mlx4_cmd_mailbox *outbox,
1025 struct mlx4_cmd_info *cmd);
1026int mlx4_QUERY_SRQ_wrapper(struct mlx4_dev *dev, int slave,
1027 struct mlx4_vhcr *vhcr,
1028 struct mlx4_cmd_mailbox *inbox,
1029 struct mlx4_cmd_mailbox *outbox,
1030 struct mlx4_cmd_info *cmd);
1031int mlx4_ARM_SRQ_wrapper(struct mlx4_dev *dev, int slave,
1032 struct mlx4_vhcr *vhcr,
1033 struct mlx4_cmd_mailbox *inbox,
1034 struct mlx4_cmd_mailbox *outbox,
1035 struct mlx4_cmd_info *cmd);
1036int mlx4_GEN_QP_wrapper(struct mlx4_dev *dev, int slave,
1037 struct mlx4_vhcr *vhcr,
1038 struct mlx4_cmd_mailbox *inbox,
1039 struct mlx4_cmd_mailbox *outbox,
1040 struct mlx4_cmd_info *cmd);
1041int mlx4_RST2INIT_QP_wrapper(struct mlx4_dev *dev, int slave,
1042 struct mlx4_vhcr *vhcr,
1043 struct mlx4_cmd_mailbox *inbox,
1044 struct mlx4_cmd_mailbox *outbox,
1045 struct mlx4_cmd_info *cmd);
Jack Morgenstein54679e12012-08-03 08:40:43 +00001046int mlx4_INIT2INIT_QP_wrapper(struct mlx4_dev *dev, int slave,
1047 struct mlx4_vhcr *vhcr,
1048 struct mlx4_cmd_mailbox *inbox,
1049 struct mlx4_cmd_mailbox *outbox,
1050 struct mlx4_cmd_info *cmd);
Jack Morgenstein623ed842011-12-13 04:10:33 +00001051int mlx4_INIT2RTR_QP_wrapper(struct mlx4_dev *dev, int slave,
1052 struct mlx4_vhcr *vhcr,
1053 struct mlx4_cmd_mailbox *inbox,
1054 struct mlx4_cmd_mailbox *outbox,
1055 struct mlx4_cmd_info *cmd);
Jack Morgenstein54679e12012-08-03 08:40:43 +00001056int mlx4_RTR2RTS_QP_wrapper(struct mlx4_dev *dev, int slave,
1057 struct mlx4_vhcr *vhcr,
1058 struct mlx4_cmd_mailbox *inbox,
1059 struct mlx4_cmd_mailbox *outbox,
1060 struct mlx4_cmd_info *cmd);
1061int mlx4_RTS2RTS_QP_wrapper(struct mlx4_dev *dev, int slave,
1062 struct mlx4_vhcr *vhcr,
1063 struct mlx4_cmd_mailbox *inbox,
1064 struct mlx4_cmd_mailbox *outbox,
1065 struct mlx4_cmd_info *cmd);
1066int mlx4_SQERR2RTS_QP_wrapper(struct mlx4_dev *dev, int slave,
1067 struct mlx4_vhcr *vhcr,
1068 struct mlx4_cmd_mailbox *inbox,
1069 struct mlx4_cmd_mailbox *outbox,
1070 struct mlx4_cmd_info *cmd);
1071int mlx4_2ERR_QP_wrapper(struct mlx4_dev *dev, int slave,
1072 struct mlx4_vhcr *vhcr,
1073 struct mlx4_cmd_mailbox *inbox,
1074 struct mlx4_cmd_mailbox *outbox,
1075 struct mlx4_cmd_info *cmd);
1076int mlx4_RTS2SQD_QP_wrapper(struct mlx4_dev *dev, int slave,
1077 struct mlx4_vhcr *vhcr,
1078 struct mlx4_cmd_mailbox *inbox,
1079 struct mlx4_cmd_mailbox *outbox,
1080 struct mlx4_cmd_info *cmd);
1081int mlx4_SQD2SQD_QP_wrapper(struct mlx4_dev *dev, int slave,
1082 struct mlx4_vhcr *vhcr,
1083 struct mlx4_cmd_mailbox *inbox,
1084 struct mlx4_cmd_mailbox *outbox,
1085 struct mlx4_cmd_info *cmd);
1086int mlx4_SQD2RTS_QP_wrapper(struct mlx4_dev *dev, int slave,
1087 struct mlx4_vhcr *vhcr,
1088 struct mlx4_cmd_mailbox *inbox,
1089 struct mlx4_cmd_mailbox *outbox,
1090 struct mlx4_cmd_info *cmd);
Jack Morgenstein623ed842011-12-13 04:10:33 +00001091int mlx4_2RST_QP_wrapper(struct mlx4_dev *dev, int slave,
1092 struct mlx4_vhcr *vhcr,
1093 struct mlx4_cmd_mailbox *inbox,
1094 struct mlx4_cmd_mailbox *outbox,
1095 struct mlx4_cmd_info *cmd);
Jack Morgenstein54679e12012-08-03 08:40:43 +00001096int mlx4_QUERY_QP_wrapper(struct mlx4_dev *dev, int slave,
1097 struct mlx4_vhcr *vhcr,
1098 struct mlx4_cmd_mailbox *inbox,
1099 struct mlx4_cmd_mailbox *outbox,
1100 struct mlx4_cmd_info *cmd);
Jack Morgenstein623ed842011-12-13 04:10:33 +00001101
1102int mlx4_GEN_EQE(struct mlx4_dev *dev, int slave, struct mlx4_eqe *eqe);
Roland Dreier225c7b12007-05-08 18:00:38 -07001103
Roland Dreier225c7b12007-05-08 18:00:38 -07001104int mlx4_cmd_init(struct mlx4_dev *dev);
1105void mlx4_cmd_cleanup(struct mlx4_dev *dev);
Jack Morgensteinab9c17a2011-12-13 04:18:30 +00001106int mlx4_multi_func_init(struct mlx4_dev *dev);
1107void mlx4_multi_func_cleanup(struct mlx4_dev *dev);
Roland Dreier225c7b12007-05-08 18:00:38 -07001108void mlx4_cmd_event(struct mlx4_dev *dev, u16 token, u8 status, u64 out_param);
1109int mlx4_cmd_use_events(struct mlx4_dev *dev);
1110void mlx4_cmd_use_polling(struct mlx4_dev *dev);
1111
Jack Morgensteinab9c17a2011-12-13 04:18:30 +00001112int mlx4_comm_cmd(struct mlx4_dev *dev, u8 cmd, u16 param,
1113 unsigned long timeout);
1114
Roland Dreier225c7b12007-05-08 18:00:38 -07001115void mlx4_cq_completion(struct mlx4_dev *dev, u32 cqn);
1116void mlx4_cq_event(struct mlx4_dev *dev, u32 cqn, int event_type);
1117
1118void mlx4_qp_event(struct mlx4_dev *dev, u32 qpn, int event_type);
1119
1120void mlx4_srq_event(struct mlx4_dev *dev, u32 srqn, int event_type);
1121
1122void mlx4_handle_catas_err(struct mlx4_dev *dev);
1123
Yevgeny Petrilinab6dc302011-04-06 23:24:42 +00001124int mlx4_SENSE_PORT(struct mlx4_dev *dev, int port,
1125 enum mlx4_port_type *type);
Yevgeny Petrilin27bf91d2009-03-18 19:45:11 -07001126void mlx4_do_sense_ports(struct mlx4_dev *dev,
1127 enum mlx4_port_type *stype,
1128 enum mlx4_port_type *defaults);
1129void mlx4_start_sense(struct mlx4_dev *dev);
1130void mlx4_stop_sense(struct mlx4_dev *dev);
1131void mlx4_sense_init(struct mlx4_dev *dev);
1132int mlx4_check_port_params(struct mlx4_dev *dev,
1133 enum mlx4_port_type *port_type);
1134int mlx4_change_port_types(struct mlx4_dev *dev,
1135 enum mlx4_port_type *port_types);
1136
Yevgeny Petrilin2a2336f2008-10-22 11:44:46 -07001137void mlx4_init_mac_table(struct mlx4_dev *dev, struct mlx4_mac_table *table);
1138void mlx4_init_vlan_table(struct mlx4_dev *dev, struct mlx4_vlan_table *table);
1139
Jack Morgenstein66349612012-06-19 11:21:44 +03001140int mlx4_SET_PORT(struct mlx4_dev *dev, u8 port, int pkey_tbl_sz);
Jack Morgenstein623ed842011-12-13 04:10:33 +00001141/* resource tracker functions*/
1142int mlx4_get_slave_from_resource_id(struct mlx4_dev *dev,
1143 enum mlx4_resource resource_type,
Hadar Hen Zionaa1ec3d2012-07-05 04:03:42 +00001144 u64 resource_id, int *slave);
Jack Morgenstein623ed842011-12-13 04:10:33 +00001145void mlx4_delete_all_resources_for_slave(struct mlx4_dev *dev, int slave_id);
1146int mlx4_init_resource_tracker(struct mlx4_dev *dev);
1147
Jack Morgensteinb8924952012-05-15 10:35:02 +00001148void mlx4_free_resource_tracker(struct mlx4_dev *dev,
1149 enum mlx4_res_tracker_free_type type);
Jack Morgenstein623ed842011-12-13 04:10:33 +00001150
Jack Morgensteinb91cb3e2012-05-30 09:14:53 +00001151int mlx4_QUERY_FW_wrapper(struct mlx4_dev *dev, int slave,
1152 struct mlx4_vhcr *vhcr,
1153 struct mlx4_cmd_mailbox *inbox,
1154 struct mlx4_cmd_mailbox *outbox,
1155 struct mlx4_cmd_info *cmd);
Jack Morgenstein623ed842011-12-13 04:10:33 +00001156int mlx4_SET_PORT_wrapper(struct mlx4_dev *dev, int slave,
1157 struct mlx4_vhcr *vhcr,
1158 struct mlx4_cmd_mailbox *inbox,
1159 struct mlx4_cmd_mailbox *outbox,
1160 struct mlx4_cmd_info *cmd);
1161int mlx4_INIT_PORT_wrapper(struct mlx4_dev *dev, int slave,
1162 struct mlx4_vhcr *vhcr,
1163 struct mlx4_cmd_mailbox *inbox,
1164 struct mlx4_cmd_mailbox *outbox,
1165 struct mlx4_cmd_info *cmd);
1166int mlx4_CLOSE_PORT_wrapper(struct mlx4_dev *dev, int slave,
1167 struct mlx4_vhcr *vhcr,
1168 struct mlx4_cmd_mailbox *inbox,
1169 struct mlx4_cmd_mailbox *outbox,
1170 struct mlx4_cmd_info *cmd);
Jack Morgensteinb91cb3e2012-05-30 09:14:53 +00001171int mlx4_QUERY_DEV_CAP_wrapper(struct mlx4_dev *dev, int slave,
1172 struct mlx4_vhcr *vhcr,
1173 struct mlx4_cmd_mailbox *inbox,
1174 struct mlx4_cmd_mailbox *outbox,
1175 struct mlx4_cmd_info *cmd);
Jack Morgenstein623ed842011-12-13 04:10:33 +00001176int mlx4_QUERY_PORT_wrapper(struct mlx4_dev *dev, int slave,
1177 struct mlx4_vhcr *vhcr,
1178 struct mlx4_cmd_mailbox *inbox,
1179 struct mlx4_cmd_mailbox *outbox,
1180 struct mlx4_cmd_info *cmd);
Jack Morgenstein9a5aa622008-11-28 21:29:46 -08001181int mlx4_get_port_ib_caps(struct mlx4_dev *dev, u8 port, __be32 *caps);
Yevgeny Petrilin7ff93f82008-10-22 15:38:42 -07001182
Jack Morgenstein66349612012-06-19 11:21:44 +03001183int mlx4_get_slave_pkey_gid_tbl_len(struct mlx4_dev *dev, u8 port,
1184 int *gid_tbl_len, int *pkey_tbl_len);
Jack Morgenstein623ed842011-12-13 04:10:33 +00001185
1186int mlx4_QP_ATTACH_wrapper(struct mlx4_dev *dev, int slave,
1187 struct mlx4_vhcr *vhcr,
1188 struct mlx4_cmd_mailbox *inbox,
1189 struct mlx4_cmd_mailbox *outbox,
1190 struct mlx4_cmd_info *cmd);
1191
1192int mlx4_PROMISC_wrapper(struct mlx4_dev *dev, int slave,
1193 struct mlx4_vhcr *vhcr,
1194 struct mlx4_cmd_mailbox *inbox,
1195 struct mlx4_cmd_mailbox *outbox,
1196 struct mlx4_cmd_info *cmd);
Yevgeny Petrilinb12d93d2011-03-22 22:38:24 +00001197int mlx4_qp_detach_common(struct mlx4_dev *dev, struct mlx4_qp *qp, u8 gid[16],
1198 enum mlx4_protocol prot, enum mlx4_steer_type steer);
1199int mlx4_qp_attach_common(struct mlx4_dev *dev, struct mlx4_qp *qp, u8 gid[16],
1200 int block_mcast_loopback, enum mlx4_protocol prot,
1201 enum mlx4_steer_type steer);
Jack Morgenstein623ed842011-12-13 04:10:33 +00001202int mlx4_SET_MCAST_FLTR_wrapper(struct mlx4_dev *dev, int slave,
1203 struct mlx4_vhcr *vhcr,
1204 struct mlx4_cmd_mailbox *inbox,
1205 struct mlx4_cmd_mailbox *outbox,
1206 struct mlx4_cmd_info *cmd);
1207int mlx4_SET_VLAN_FLTR_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_common_set_vlan_fltr(struct mlx4_dev *dev, int function,
1213 int port, void *buf);
1214int mlx4_common_dump_eth_stats(struct mlx4_dev *dev, int slave, u32 in_mod,
1215 struct mlx4_cmd_mailbox *outbox);
1216int mlx4_DUMP_ETH_STATS_wrapper(struct mlx4_dev *dev, int slave,
1217 struct mlx4_vhcr *vhcr,
1218 struct mlx4_cmd_mailbox *inbox,
1219 struct mlx4_cmd_mailbox *outbox,
1220 struct mlx4_cmd_info *cmd);
1221int mlx4_PKEY_TABLE_wrapper(struct mlx4_dev *dev, int slave,
1222 struct mlx4_vhcr *vhcr,
1223 struct mlx4_cmd_mailbox *inbox,
1224 struct mlx4_cmd_mailbox *outbox,
1225 struct mlx4_cmd_info *cmd);
1226int mlx4_QUERY_IF_STAT_wrapper(struct mlx4_dev *dev, int slave,
1227 struct mlx4_vhcr *vhcr,
1228 struct mlx4_cmd_mailbox *inbox,
1229 struct mlx4_cmd_mailbox *outbox,
1230 struct mlx4_cmd_info *cmd);
Hadar Hen Zion8fcfb4d2012-07-05 04:03:45 +00001231int mlx4_QP_FLOW_STEERING_ATTACH_wrapper(struct mlx4_dev *dev, int slave,
1232 struct mlx4_vhcr *vhcr,
1233 struct mlx4_cmd_mailbox *inbox,
1234 struct mlx4_cmd_mailbox *outbox,
1235 struct mlx4_cmd_info *cmd);
1236int mlx4_QP_FLOW_STEERING_DETACH_wrapper(struct mlx4_dev *dev, int slave,
1237 struct mlx4_vhcr *vhcr,
1238 struct mlx4_cmd_mailbox *inbox,
1239 struct mlx4_cmd_mailbox *outbox,
1240 struct mlx4_cmd_info *cmd);
Jack Morgensteinf5311ac2011-12-13 04:12:13 +00001241
Eugenia Emantayev0ec2c0f2011-12-13 04:16:02 +00001242int mlx4_get_mgm_entry_size(struct mlx4_dev *dev);
1243int mlx4_get_qp_per_mgm(struct mlx4_dev *dev);
1244
Marcel Apfelbaum5cc914f2011-12-13 04:12:40 +00001245static inline void set_param_l(u64 *arg, u32 val)
1246{
1247 *((u32 *)arg) = val;
1248}
1249
1250static inline void set_param_h(u64 *arg, u32 val)
1251{
1252 *arg = (*arg & 0xffffffff) | ((u64) val << 32);
1253}
1254
1255static inline u32 get_param_l(u64 *arg)
1256{
1257 return (u32) (*arg & 0xffffffff);
1258}
1259
1260static inline u32 get_param_h(u64 *arg)
1261{
1262 return (u32)(*arg >> 32);
1263}
1264
Eli Cohenc82e9aa2011-12-13 04:15:24 +00001265static inline spinlock_t *mlx4_tlock(struct mlx4_dev *dev)
1266{
1267 return &mlx4_priv(dev)->mfunc.master.res_tracker.lock;
1268}
1269
Jack Morgensteinf5311ac2011-12-13 04:12:13 +00001270#define NOT_MASKED_PD_BITS 17
1271
Roland Dreier225c7b12007-05-08 18:00:38 -07001272#endif /* MLX4_H */