]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - drivers/net/ethernet/mellanox/mlx4/mlx4.h
net/mlx4_core: Handle AER flow properly
[mirror_ubuntu-artful-kernel.git] / drivers / net / ethernet / mellanox / mlx4 / mlx4.h
CommitLineData
225c7b1f
RD
1/*
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.
51a379d0 5 * Copyright (c) 2005, 2006, 2007, 2008 Mellanox Technologies. All rights reserved.
225c7b1f
RD
6 * 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
525f5f44 40#include <linux/mutex.h>
225c7b1f 41#include <linux/radix-tree.h>
4af1c048 42#include <linux/rbtree.h>
ee49bd93 43#include <linux/timer.h>
3142788b 44#include <linux/semaphore.h>
27bf91d6 45#include <linux/workqueue.h>
3dca0f42
MB
46#include <linux/interrupt.h>
47#include <linux/spinlock.h>
225c7b1f
RD
48
49#include <linux/mlx4/device.h>
37608eea 50#include <linux/mlx4/driver.h>
225c7b1f 51#include <linux/mlx4/doorbell.h>
623ed84b 52#include <linux/mlx4/cmd.h>
225c7b1f
RD
53
54#define DRV_NAME "mlx4_core"
ab9c17a0 55#define PFX DRV_NAME ": "
169a1d85
AV
56#define DRV_VERSION "2.2-1"
57#define DRV_RELDATE "Feb, 2014"
225c7b1f 58
0ff1fb65
HHZ
59#define MLX4_FS_UDP_UC_EN (1 << 1)
60#define MLX4_FS_TCP_UC_EN (1 << 2)
61#define MLX4_FS_NUM_OF_L2_ADDR 8
62#define MLX4_FS_MGM_LOG_ENTRY_SIZE 7
63#define MLX4_FS_NUM_MCG (1 << 17)
64
e448834e
SM
65#define INIT_HCA_TPT_MW_ENABLE (1 << 7)
66
e5395e92
AV
67struct mlx4_set_port_prio2tc_context {
68 u8 prio2tc[4];
69};
70
71struct mlx4_port_scheduler_tc_cfg_be {
72 __be16 pg;
73 __be16 bw_precentage;
74 __be16 max_bw_units; /* 3-100Mbps, 4-1Gbps, other values - reserved */
75 __be16 max_bw_value;
76};
77
78struct mlx4_set_port_scheduler_context {
79 struct mlx4_port_scheduler_tc_cfg_be tc[MLX4_NUM_TC];
80};
81
225c7b1f
RD
82enum {
83 MLX4_HCR_BASE = 0x80680,
84 MLX4_HCR_SIZE = 0x0001c,
623ed84b
JM
85 MLX4_CLR_INT_SIZE = 0x00008,
86 MLX4_SLAVE_COMM_BASE = 0x0,
ddd8a6c1
EE
87 MLX4_COMM_PAGESIZE = 0x1000,
88 MLX4_CLOCK_SIZE = 0x00008
225c7b1f
RD
89};
90
225c7b1f 91enum {
3c439b55
JM
92 MLX4_DEFAULT_MGM_LOG_ENTRY_SIZE = 10,
93 MLX4_MIN_MGM_LOG_ENTRY_SIZE = 7,
94 MLX4_MAX_MGM_LOG_ENTRY_SIZE = 12,
95 MLX4_MAX_QP_PER_MGM = 4 * ((1 << MLX4_MAX_MGM_LOG_ENTRY_SIZE) / 16 - 2),
0ec2c0f8 96 MLX4_MTT_ENTRY_PER_SEG = 8,
225c7b1f
RD
97};
98
225c7b1f
RD
99enum {
100 MLX4_NUM_PDS = 1 << 15
101};
102
103enum {
104 MLX4_CMPT_TYPE_QP = 0,
105 MLX4_CMPT_TYPE_SRQ = 1,
106 MLX4_CMPT_TYPE_CQ = 2,
107 MLX4_CMPT_TYPE_EQ = 3,
108 MLX4_CMPT_NUM_TYPE
109};
110
111enum {
112 MLX4_CMPT_SHIFT = 24,
113 MLX4_NUM_CMPTS = MLX4_CMPT_NUM_TYPE << MLX4_CMPT_SHIFT
114};
115
b20e519a
SM
116enum mlx4_mpt_state {
117 MLX4_MPT_DISABLED = 0,
118 MLX4_MPT_EN_HW,
119 MLX4_MPT_EN_SW
623ed84b
JM
120};
121
122#define MLX4_COMM_TIME 10000
123enum {
124 MLX4_COMM_CMD_RESET,
125 MLX4_COMM_CMD_VHCR0,
126 MLX4_COMM_CMD_VHCR1,
127 MLX4_COMM_CMD_VHCR2,
128 MLX4_COMM_CMD_VHCR_EN,
129 MLX4_COMM_CMD_VHCR_POST,
130 MLX4_COMM_CMD_FLR = 254
131};
132
99ec41d0
JM
133enum {
134 MLX4_VF_SMI_DISABLED,
135 MLX4_VF_SMI_ENABLED
136};
137
623ed84b
JM
138/*The flag indicates that the slave should delay the RESET cmd*/
139#define MLX4_DELAY_RESET_SLAVE 0xbbbbbbb
140/*indicates how many retries will be done if we are in the middle of FLR*/
141#define NUM_OF_RESET_RETRIES 10
142#define SLEEP_TIME_IN_RESET (2 * 1000)
143enum mlx4_resource {
144 RES_QP,
145 RES_CQ,
146 RES_SRQ,
147 RES_XRCD,
148 RES_MPT,
149 RES_MTT,
150 RES_MAC,
151 RES_VLAN,
152 RES_EQ,
153 RES_COUNTER,
1b9c6b06 154 RES_FS_RULE,
623ed84b
JM
155 MLX4_NUM_OF_RESOURCE_TYPE
156};
157
158enum mlx4_alloc_mode {
159 RES_OP_RESERVE,
160 RES_OP_RESERVE_AND_MAP,
161 RES_OP_MAP_ICM,
162};
163
b8924951
JM
164enum mlx4_res_tracker_free_type {
165 RES_TR_FREE_ALL,
166 RES_TR_FREE_SLAVES_ONLY,
167 RES_TR_FREE_STRUCTS_ONLY,
168};
623ed84b
JM
169
170/*
171 *Virtual HCR structures.
172 * mlx4_vhcr is the sw representation, in machine endianess
173 *
174 * mlx4_vhcr_cmd is the formalized structure, the one that is passed
175 * to FW to go through communication channel.
176 * It is big endian, and has the same structure as the physical HCR
177 * used by command interface
178 */
179struct mlx4_vhcr {
180 u64 in_param;
181 u64 out_param;
182 u32 in_modifier;
183 u32 errno;
184 u16 op;
185 u16 token;
186 u8 op_modifier;
187 u8 e_bit;
188};
189
190struct mlx4_vhcr_cmd {
191 __be64 in_param;
192 __be32 in_modifier;
193 __be64 out_param;
194 __be16 token;
195 u16 reserved;
196 u8 status;
197 u8 flags;
198 __be16 opcode;
199};
200
201struct mlx4_cmd_info {
202 u16 opcode;
203 bool has_inbox;
204 bool has_outbox;
205 bool out_is_imm;
206 bool encode_slave_id;
207 int (*verify)(struct mlx4_dev *dev, int slave, struct mlx4_vhcr *vhcr,
208 struct mlx4_cmd_mailbox *inbox);
209 int (*wrapper)(struct mlx4_dev *dev, int slave, struct mlx4_vhcr *vhcr,
210 struct mlx4_cmd_mailbox *inbox,
211 struct mlx4_cmd_mailbox *outbox,
212 struct mlx4_cmd_info *cmd);
213};
214
225c7b1f
RD
215#ifdef CONFIG_MLX4_DEBUG
216extern int mlx4_debug_level;
7b0f5df4
RD
217#else /* CONFIG_MLX4_DEBUG */
218#define mlx4_debug_level (0)
219#endif /* CONFIG_MLX4_DEBUG */
225c7b1f 220
1a91de28 221#define mlx4_dbg(mdev, format, ...) \
0a645e80
JP
222do { \
223 if (mlx4_debug_level) \
872bf2fb
YH
224 dev_printk(KERN_DEBUG, \
225 &(mdev)->persist->pdev->dev, format, \
1a91de28 226 ##__VA_ARGS__); \
0a645e80 227} while (0)
225c7b1f 228
1a91de28 229#define mlx4_err(mdev, format, ...) \
872bf2fb 230 dev_err(&(mdev)->persist->pdev->dev, format, ##__VA_ARGS__)
1a91de28 231#define mlx4_info(mdev, format, ...) \
872bf2fb 232 dev_info(&(mdev)->persist->pdev->dev, format, ##__VA_ARGS__)
1a91de28 233#define mlx4_warn(mdev, format, ...) \
872bf2fb 234 dev_warn(&(mdev)->persist->pdev->dev, format, ##__VA_ARGS__)
225c7b1f 235
0ec2c0f8 236extern int mlx4_log_num_mgm_entry_size;
2b8fb286 237extern int log_mtts_per_seg;
f5aef5aa 238extern int mlx4_internal_err_reset;
0ec2c0f8 239
623ed84b
JM
240#define MLX4_MAX_NUM_SLAVES (MLX4_MAX_NUM_PF + MLX4_MAX_NUM_VF)
241#define ALL_SLAVES 0xff
242
225c7b1f
RD
243struct mlx4_bitmap {
244 u32 last;
245 u32 top;
246 u32 max;
93fc9e1b 247 u32 reserved_top;
225c7b1f 248 u32 mask;
42d1e017 249 u32 avail;
7a89399f 250 u32 effective_len;
225c7b1f
RD
251 spinlock_t lock;
252 unsigned long *table;
253};
254
255struct mlx4_buddy {
256 unsigned long **bits;
e4044cfc 257 unsigned int *num_free;
3de819e6 258 u32 max_order;
225c7b1f
RD
259 spinlock_t lock;
260};
261
262struct mlx4_icm;
263
264struct mlx4_icm_table {
265 u64 virt;
266 int num_icm;
3de819e6 267 u32 num_obj;
225c7b1f
RD
268 int obj_size;
269 int lowmem;
5b0bf5e2 270 int coherent;
225c7b1f
RD
271 struct mutex mutex;
272 struct mlx4_icm **icm;
273};
274
cc1ade94
SM
275#define MLX4_MPT_FLAG_SW_OWNS (0xfUL << 28)
276#define MLX4_MPT_FLAG_FREE (0x3UL << 28)
277#define MLX4_MPT_FLAG_MIO (1 << 17)
278#define MLX4_MPT_FLAG_BIND_ENABLE (1 << 15)
279#define MLX4_MPT_FLAG_PHYSICAL (1 << 9)
280#define MLX4_MPT_FLAG_REGION (1 << 8)
281
e630664c
MB
282#define MLX4_MPT_PD_MASK (0x1FFFFUL)
283#define MLX4_MPT_PD_VF_MASK (0xFE0000UL)
cc1ade94
SM
284#define MLX4_MPT_PD_FLAG_FAST_REG (1 << 27)
285#define MLX4_MPT_PD_FLAG_RAE (1 << 28)
286#define MLX4_MPT_PD_FLAG_EN_INV (3 << 24)
287
288#define MLX4_MPT_QP_FLAG_BOUND_QP (1 << 7)
289
290#define MLX4_MPT_STATUS_SW 0xF0
291#define MLX4_MPT_STATUS_HW 0x00
292
77507aa2
IS
293#define MLX4_CQE_SIZE_MASK_STRIDE 0x3
294#define MLX4_EQE_SIZE_MASK_STRIDE 0x30
295
c82e9aa0
EC
296/*
297 * Must be packed because mtt_seg is 64 bits but only aligned to 32 bits.
298 */
299struct mlx4_mpt_entry {
300 __be32 flags;
301 __be32 qpn;
302 __be32 key;
303 __be32 pd_flags;
304 __be64 start;
305 __be64 length;
306 __be32 lkey;
307 __be32 win_cnt;
308 u8 reserved1[3];
309 u8 mtt_rep;
2b8fb286 310 __be64 mtt_addr;
c82e9aa0
EC
311 __be32 mtt_sz;
312 __be32 entity_size;
313 __be32 first_byte_offset;
314} __packed;
315
316/*
317 * Must be packed because start is 64 bits but only aligned to 32 bits.
318 */
319struct mlx4_eq_context {
320 __be32 flags;
321 u16 reserved1[3];
322 __be16 page_offset;
323 u8 log_eq_size;
324 u8 reserved2[4];
325 u8 eq_period;
326 u8 reserved3;
327 u8 eq_max_count;
328 u8 reserved4[3];
329 u8 intr;
330 u8 log_page_size;
331 u8 reserved5[2];
332 u8 mtt_base_addr_h;
333 __be32 mtt_base_addr_l;
334 u32 reserved6[2];
335 __be32 consumer_index;
336 __be32 producer_index;
337 u32 reserved7[4];
338};
339
340struct mlx4_cq_context {
341 __be32 flags;
342 u16 reserved1[3];
343 __be16 page_offset;
344 __be32 logsize_usrpage;
345 __be16 cq_period;
346 __be16 cq_max_count;
347 u8 reserved2[3];
348 u8 comp_eqn;
349 u8 log_page_size;
350 u8 reserved3[2];
351 u8 mtt_base_addr_h;
352 __be32 mtt_base_addr_l;
353 __be32 last_notified_index;
354 __be32 solicit_producer_index;
355 __be32 consumer_index;
356 __be32 producer_index;
357 u32 reserved4[2];
358 __be64 db_rec_addr;
359};
360
361struct mlx4_srq_context {
362 __be32 state_logsize_srqn;
363 u8 logstride;
364 u8 reserved1;
365 __be16 xrcd;
366 __be32 pg_offset_cqn;
367 u32 reserved2;
368 u8 log_page_size;
369 u8 reserved3[2];
370 u8 mtt_base_addr_h;
371 __be32 mtt_base_addr_l;
372 __be32 pd;
373 __be16 limit_watermark;
374 __be16 wqe_cnt;
375 u16 reserved4;
376 __be16 wqe_counter;
377 u32 reserved5;
378 __be64 db_rec_addr;
379};
380
3dca0f42
MB
381struct mlx4_eq_tasklet {
382 struct list_head list;
383 struct list_head process_list;
384 struct tasklet_struct task;
385 /* lock on completion tasklet list */
386 spinlock_t lock;
387};
388
225c7b1f
RD
389struct mlx4_eq {
390 struct mlx4_dev *dev;
391 void __iomem *doorbell;
392 int eqn;
393 u32 cons_index;
394 u16 irq;
395 u16 have_irq;
396 int nent;
397 struct mlx4_buf_list *page_list;
398 struct mlx4_mtt mtt;
3dca0f42 399 struct mlx4_eq_tasklet tasklet_ctx;
225c7b1f
RD
400};
401
623ed84b
JM
402struct mlx4_slave_eqe {
403 u8 type;
404 u8 port;
405 u32 param;
406};
407
408struct mlx4_slave_event_eq_info {
803143fb 409 int eqn;
623ed84b 410 u16 token;
623ed84b
JM
411};
412
225c7b1f
RD
413struct mlx4_profile {
414 int num_qp;
415 int rdmarc_per_qp;
416 int num_srq;
417 int num_cq;
418 int num_mcg;
419 int num_mpt;
db5a7a65 420 unsigned num_mtt;
225c7b1f
RD
421};
422
423struct mlx4_fw {
424 u64 clr_int_base;
425 u64 catas_offset;
623ed84b 426 u64 comm_base;
ddd8a6c1 427 u64 clock_offset;
225c7b1f
RD
428 struct mlx4_icm *fw_icm;
429 struct mlx4_icm *aux_icm;
430 u32 catas_size;
431 u16 fw_pages;
432 u8 clr_int_bar;
433 u8 catas_bar;
623ed84b 434 u8 comm_bar;
ddd8a6c1 435 u8 clock_bar;
623ed84b
JM
436};
437
438struct mlx4_comm {
439 u32 slave_write;
440 u32 slave_read;
225c7b1f
RD
441};
442
ffe455ad
EE
443enum {
444 MLX4_MCAST_CONFIG = 0,
445 MLX4_MCAST_DISABLE = 1,
446 MLX4_MCAST_ENABLE = 2,
447};
448
623ed84b
JM
449#define VLAN_FLTR_SIZE 128
450
451struct mlx4_vlan_fltr {
452 __be32 entry[VLAN_FLTR_SIZE];
453};
454
ffe455ad
EE
455struct mlx4_mcast_entry {
456 struct list_head list;
457 u64 addr;
458};
459
b12d93d6
YP
460struct mlx4_promisc_qp {
461 struct list_head list;
462 u32 qpn;
463};
464
465struct mlx4_steer_index {
466 struct list_head list;
467 unsigned int index;
468 struct list_head duplicates;
469};
470
803143fb
MA
471#define MLX4_EVENT_TYPES_NUM 64
472
623ed84b
JM
473struct mlx4_slave_state {
474 u8 comm_toggle;
475 u8 last_cmd;
476 u8 init_port_mask;
477 bool active;
2c957ff2 478 bool old_vlan_api;
623ed84b
JM
479 u8 function;
480 dma_addr_t vhcr_dma;
481 u16 mtu[MLX4_MAX_PORTS + 1];
482 __be32 ib_cap_mask[MLX4_MAX_PORTS + 1];
483 struct mlx4_slave_eqe eq[MLX4_MFUNC_MAX_EQES];
484 struct list_head mcast_filters[MLX4_MAX_PORTS + 1];
485 struct mlx4_vlan_fltr *vlan_filter[MLX4_MAX_PORTS + 1];
803143fb
MA
486 /* event type to eq number lookup */
487 struct mlx4_slave_event_eq_info event_eq[MLX4_EVENT_TYPES_NUM];
623ed84b
JM
488 u16 eq_pi;
489 u16 eq_ci;
490 spinlock_t lock;
491 /*initialized via the kzalloc*/
492 u8 is_slave_going_down;
493 u32 cookie;
993c401e 494 enum slave_port_state port_state[MLX4_MAX_PORTS + 1];
623ed84b
JM
495};
496
0eb62b93
RE
497#define MLX4_VGT 4095
498#define NO_INDX (-1)
499
500struct mlx4_vport_state {
501 u64 mac;
502 u16 default_vlan;
503 u8 default_qos;
504 u32 tx_rate;
505 bool spoofchk;
948e306d 506 u32 link_state;
0eb62b93
RE
507};
508
509struct mlx4_vf_admin_state {
510 struct mlx4_vport_state vport[MLX4_MAX_PORTS + 1];
99ec41d0 511 u8 enable_smi[MLX4_MAX_PORTS + 1];
0eb62b93
RE
512};
513
514struct mlx4_vport_oper_state {
515 struct mlx4_vport_state state;
516 int mac_idx;
517 int vlan_idx;
518};
99ec41d0 519
0eb62b93
RE
520struct mlx4_vf_oper_state {
521 struct mlx4_vport_oper_state vport[MLX4_MAX_PORTS + 1];
99ec41d0 522 u8 smi_enabled[MLX4_MAX_PORTS + 1];
0eb62b93
RE
523};
524
623ed84b
JM
525struct slave_list {
526 struct mutex mutex;
527 struct list_head res_list[MLX4_NUM_OF_RESOURCE_TYPE];
528};
529
5a0d0a61 530struct resource_allocator {
146f3ef4 531 spinlock_t alloc_lock; /* protect quotas */
5a0d0a61
JM
532 union {
533 int res_reserved;
534 int res_port_rsvd[MLX4_MAX_PORTS];
535 };
536 union {
537 int res_free;
538 int res_port_free[MLX4_MAX_PORTS];
539 };
540 int *quota;
541 int *allocated;
542 int *guaranteed;
543};
544
623ed84b
JM
545struct mlx4_resource_tracker {
546 spinlock_t lock;
547 /* tree for each resources */
4af1c048 548 struct rb_root res_tree[MLX4_NUM_OF_RESOURCE_TYPE];
623ed84b
JM
549 /* num_of_slave's lists, one per slave */
550 struct slave_list *slave_list;
5a0d0a61 551 struct resource_allocator res_alloc[MLX4_NUM_OF_RESOURCE_TYPE];
623ed84b
JM
552};
553
554#define SLAVE_EVENT_EQ_SIZE 128
555struct mlx4_slave_event_eq {
556 u32 eqn;
557 u32 cons;
558 u32 prod;
992e8e6e 559 spinlock_t event_lock;
623ed84b
JM
560 struct mlx4_eqe event_eqe[SLAVE_EVENT_EQ_SIZE];
561};
562
563struct mlx4_master_qp0_state {
564 int proxy_qp0_active;
565 int qp0_active;
566 int port_active;
567};
568
569struct mlx4_mfunc_master_ctx {
570 struct mlx4_slave_state *slave_state;
0eb62b93
RE
571 struct mlx4_vf_admin_state *vf_admin;
572 struct mlx4_vf_oper_state *vf_oper;
623ed84b
JM
573 struct mlx4_master_qp0_state qp0_state[MLX4_MAX_PORTS + 1];
574 int init_port_ref[MLX4_MAX_PORTS + 1];
575 u16 max_mtu[MLX4_MAX_PORTS + 1];
576 int disable_mcast_ref[MLX4_MAX_PORTS + 1];
577 struct mlx4_resource_tracker res_tracker;
578 struct workqueue_struct *comm_wq;
579 struct work_struct comm_work;
580 struct work_struct slave_event_work;
581 struct work_struct slave_flr_event_work;
582 spinlock_t slave_state_lock;
f5311ac1 583 __be32 comm_arm_bit_vector[4];
623ed84b
JM
584 struct mlx4_eqe cmd_eqe;
585 struct mlx4_slave_event_eq slave_eq;
586 struct mutex gen_eqe_mutex[MLX4_MFUNC_MAX];
587};
588
589struct mlx4_mfunc {
590 struct mlx4_comm __iomem *comm;
591 struct mlx4_vhcr_cmd *vhcr;
592 dma_addr_t vhcr_dma;
593
594 struct mlx4_mfunc_master_ctx master;
595};
596
fe6f700d
YP
597#define MGM_QPN_MASK 0x00FFFFFF
598#define MGM_BLCK_LB_BIT 30
599
600struct mlx4_mgm {
601 __be32 next_gid_index;
602 __be32 members_count;
603 u32 reserved[2];
604 u8 gid[16];
605 __be32 qp[MLX4_MAX_QP_PER_MGM];
606};
607
225c7b1f
RD
608struct mlx4_cmd {
609 struct pci_pool *pool;
610 void __iomem *hcr;
f3d4c89e 611 struct mutex slave_cmd_mutex;
225c7b1f
RD
612 struct semaphore poll_sem;
613 struct semaphore event_sem;
614 int max_cmds;
615 spinlock_t context_lock;
616 int free_head;
617 struct mlx4_cmd_context *context;
618 u16 token_mask;
619 u8 use_events;
620 u8 toggle;
623ed84b 621 u8 comm_toggle;
ffc39f6d 622 u8 initialized;
225c7b1f
RD
623};
624
b01978ca
JM
625enum {
626 MLX4_VF_IMMED_VLAN_FLAG_VLAN = 1 << 0,
627 MLX4_VF_IMMED_VLAN_FLAG_QOS = 1 << 1,
0a6eac24 628 MLX4_VF_IMMED_VLAN_FLAG_LINK_DISABLE = 1 << 2,
b01978ca
JM
629};
630struct mlx4_vf_immed_vlan_work {
631 struct work_struct work;
632 struct mlx4_priv *priv;
633 int flags;
634 int slave;
635 int vlan_ix;
636 int orig_vlan_ix;
637 u8 port;
638 u8 qos;
639 u16 vlan_id;
640 u16 orig_vlan_id;
641};
642
643
225c7b1f
RD
644struct mlx4_uar_table {
645 struct mlx4_bitmap bitmap;
646};
647
648struct mlx4_mr_table {
649 struct mlx4_bitmap mpt_bitmap;
650 struct mlx4_buddy mtt_buddy;
651 u64 mtt_base;
652 u64 mpt_base;
653 struct mlx4_icm_table mtt_table;
654 struct mlx4_icm_table dmpt_table;
655};
656
657struct mlx4_cq_table {
658 struct mlx4_bitmap bitmap;
659 spinlock_t lock;
660 struct radix_tree_root tree;
661 struct mlx4_icm_table table;
662 struct mlx4_icm_table cmpt_table;
663};
664
665struct mlx4_eq_table {
666 struct mlx4_bitmap bitmap;
b8dd786f 667 char *irq_names;
225c7b1f 668 void __iomem *clr_int;
b8dd786f 669 void __iomem **uar_map;
225c7b1f 670 u32 clr_mask;
b8dd786f 671 struct mlx4_eq *eq;
fa0681d2 672 struct mlx4_icm_table table;
225c7b1f
RD
673 struct mlx4_icm_table cmpt_table;
674 int have_irq;
675 u8 inta_pin;
676};
677
678struct mlx4_srq_table {
679 struct mlx4_bitmap bitmap;
680 spinlock_t lock;
681 struct radix_tree_root tree;
682 struct mlx4_icm_table table;
683 struct mlx4_icm_table cmpt_table;
684};
685
d57febe1
MB
686enum mlx4_qp_table_zones {
687 MLX4_QP_TABLE_ZONE_GENERAL,
688 MLX4_QP_TABLE_ZONE_RSS,
689 MLX4_QP_TABLE_ZONE_RAW_ETH,
690 MLX4_QP_TABLE_ZONE_NUM
691};
692
225c7b1f 693struct mlx4_qp_table {
d57febe1
MB
694 struct mlx4_bitmap *bitmap_gen;
695 struct mlx4_zone_allocator *zones;
696 u32 zones_uids[MLX4_QP_TABLE_ZONE_NUM];
225c7b1f
RD
697 u32 rdmarc_base;
698 int rdmarc_shift;
699 spinlock_t lock;
700 struct mlx4_icm_table qp_table;
701 struct mlx4_icm_table auxc_table;
702 struct mlx4_icm_table altc_table;
703 struct mlx4_icm_table rdmarc_table;
704 struct mlx4_icm_table cmpt_table;
705};
706
707struct mlx4_mcg_table {
708 struct mutex mutex;
709 struct mlx4_bitmap bitmap;
710 struct mlx4_icm_table table;
711};
712
713struct mlx4_catas_err {
714 u32 __iomem *map;
ee49bd93
JM
715 struct timer_list timer;
716 struct list_head list;
225c7b1f
RD
717};
718
2a2336f8
YP
719#define MLX4_MAX_MAC_NUM 128
720#define MLX4_MAC_TABLE_SIZE (MLX4_MAX_MAC_NUM << 3)
721
722struct mlx4_mac_table {
723 __be64 entries[MLX4_MAX_MAC_NUM];
724 int refs[MLX4_MAX_MAC_NUM];
725 struct mutex mutex;
726 int total;
727 int max;
728};
729
111c6094
JM
730#define MLX4_ROCE_GID_ENTRY_SIZE 16
731
732struct mlx4_roce_gid_entry {
733 u8 raw[MLX4_ROCE_GID_ENTRY_SIZE];
734};
735
736struct mlx4_roce_gid_table {
737 struct mlx4_roce_gid_entry roce_gids[MLX4_ROCE_MAX_GIDS];
738 struct mutex mutex;
739};
740
2a2336f8
YP
741#define MLX4_MAX_VLAN_NUM 128
742#define MLX4_VLAN_TABLE_SIZE (MLX4_MAX_VLAN_NUM << 2)
743
744struct mlx4_vlan_table {
745 __be32 entries[MLX4_MAX_VLAN_NUM];
746 int refs[MLX4_MAX_VLAN_NUM];
747 struct mutex mutex;
748 int total;
749 int max;
750};
751
ffe455ad
EE
752#define SET_PORT_GEN_ALL_VALID 0x7
753#define SET_PORT_PROMISC_SHIFT 31
754#define SET_PORT_MC_PROMISC_SHIFT 30
755
756enum {
757 MCAST_DIRECT_ONLY = 0,
758 MCAST_DIRECT = 1,
759 MCAST_DEFAULT = 2
760};
761
762
763struct mlx4_set_port_general_context {
764 u8 reserved[3];
765 u8 flags;
766 u16 reserved2;
767 __be16 mtu;
768 u8 pptx;
769 u8 pfctx;
770 u16 reserved3;
771 u8 pprx;
772 u8 pfcrx;
773 u16 reserved4;
774};
775
776struct mlx4_set_port_rqp_calc_context {
777 __be32 base_qpn;
778 u8 rererved;
779 u8 n_mac;
780 u8 n_vlan;
781 u8 n_prio;
782 u8 reserved2[3];
783 u8 mac_miss;
784 u8 intra_no_vlan;
785 u8 no_vlan;
786 u8 intra_vlan_miss;
787 u8 vlan_miss;
788 u8 reserved3[3];
789 u8 no_vlan_prio;
790 __be32 promisc;
791 __be32 mcast;
792};
793
2a2336f8
YP
794struct mlx4_port_info {
795 struct mlx4_dev *dev;
796 int port;
7ff93f8b
YP
797 char dev_name[16];
798 struct device_attribute port_attr;
799 enum mlx4_port_type tmp_type;
096335b3
OG
800 char dev_mtu_name[16];
801 struct device_attribute port_mtu_attr;
2a2336f8
YP
802 struct mlx4_mac_table mac_table;
803 struct mlx4_vlan_table vlan_table;
111c6094 804 struct mlx4_roce_gid_table gid_table;
1679200f 805 int base_qpn;
2a2336f8
YP
806};
807
27bf91d6
YP
808struct mlx4_sense {
809 struct mlx4_dev *dev;
810 u8 do_sense_port[MLX4_MAX_PORTS + 1];
811 u8 sense_allowed[MLX4_MAX_PORTS + 1];
812 struct delayed_work sense_poll;
813};
814
0b7ca5a9
YP
815struct mlx4_msix_ctl {
816 u64 pool_bm;
730c41d5 817 struct mutex pool_lock;
0b7ca5a9
YP
818};
819
b12d93d6
YP
820struct mlx4_steer {
821 struct list_head promisc_qps[MLX4_NUM_STEERS];
822 struct list_head steer_entries[MLX4_NUM_STEERS];
b12d93d6
YP
823};
824
839f1243
RD
825enum {
826 MLX4_PCI_DEV_IS_VF = 1 << 0,
ca3e57a5 827 MLX4_PCI_DEV_FORCE_SENSE_PORT = 1 << 1,
839f1243
RD
828};
829
7c6d74d2
JM
830enum {
831 MLX4_NO_RR = 0,
832 MLX4_USE_RR = 1,
833};
834
225c7b1f
RD
835struct mlx4_priv {
836 struct mlx4_dev dev;
837
838 struct list_head dev_list;
839 struct list_head ctx_list;
840 spinlock_t ctx_lock;
841
839f1243 842 int pci_dev_data;
befdf897 843 int removed;
839f1243 844
6296883c
YP
845 struct list_head pgdir_list;
846 struct mutex pgdir_mutex;
847
225c7b1f
RD
848 struct mlx4_fw fw;
849 struct mlx4_cmd cmd;
623ed84b 850 struct mlx4_mfunc mfunc;
225c7b1f
RD
851
852 struct mlx4_bitmap pd_bitmap;
012a8ff5 853 struct mlx4_bitmap xrcd_bitmap;
225c7b1f
RD
854 struct mlx4_uar_table uar_table;
855 struct mlx4_mr_table mr_table;
856 struct mlx4_cq_table cq_table;
857 struct mlx4_eq_table eq_table;
858 struct mlx4_srq_table srq_table;
859 struct mlx4_qp_table qp_table;
860 struct mlx4_mcg_table mcg_table;
f2a3f6a3 861 struct mlx4_bitmap counters_bitmap;
225c7b1f
RD
862
863 struct mlx4_catas_err catas_err;
864
865 void __iomem *clr_base;
866
867 struct mlx4_uar driver_uar;
868 void __iomem *kar;
2a2336f8 869 struct mlx4_port_info port[MLX4_MAX_PORTS + 1];
27bf91d6 870 struct mlx4_sense sense;
7ff93f8b 871 struct mutex port_mutex;
0b7ca5a9 872 struct mlx4_msix_ctl msix_ctl;
b12d93d6 873 struct mlx4_steer *steer;
c1b43dca
EC
874 struct list_head bf_list;
875 struct mutex bf_mutex;
876 struct io_mapping *bf_mapping;
ddd8a6c1 877 void __iomem *clock_mapping;
ea51b377 878 int reserved_mtts;
0ff1fb65 879 int fs_hash_mode;
54679e14 880 u8 virt2phys_pkey[MLX4_MFUNC_MAX][MLX4_MAX_PORTS][MLX4_MAX_PORT_PKEYS];
afa8fd1d 881 __be64 slave_node_guids[MLX4_MFUNC_MAX];
54679e14 882
fe6f700d
YP
883 atomic_t opreq_count;
884 struct work_struct opreq_task;
225c7b1f
RD
885};
886
887static inline struct mlx4_priv *mlx4_priv(struct mlx4_dev *dev)
888{
889 return container_of(dev, struct mlx4_priv, dev);
890}
891
27bf91d6
YP
892#define MLX4_SENSE_RANGE (HZ * 3)
893
894extern struct workqueue_struct *mlx4_wq;
895
225c7b1f 896u32 mlx4_bitmap_alloc(struct mlx4_bitmap *bitmap);
7c6d74d2 897void mlx4_bitmap_free(struct mlx4_bitmap *bitmap, u32 obj, int use_rr);
ddae0349
EE
898u32 mlx4_bitmap_alloc_range(struct mlx4_bitmap *bitmap, int cnt,
899 int align, u32 skip_mask);
7c6d74d2
JM
900void mlx4_bitmap_free_range(struct mlx4_bitmap *bitmap, u32 obj, int cnt,
901 int use_rr);
42d1e017 902u32 mlx4_bitmap_avail(struct mlx4_bitmap *bitmap);
93fc9e1b
YP
903int mlx4_bitmap_init(struct mlx4_bitmap *bitmap, u32 num, u32 mask,
904 u32 reserved_bot, u32 resetrved_top);
225c7b1f
RD
905void mlx4_bitmap_cleanup(struct mlx4_bitmap *bitmap);
906
907int mlx4_reset(struct mlx4_dev *dev);
908
b8dd786f
YP
909int mlx4_alloc_eq_table(struct mlx4_dev *dev);
910void mlx4_free_eq_table(struct mlx4_dev *dev);
911
225c7b1f 912int mlx4_init_pd_table(struct mlx4_dev *dev);
012a8ff5 913int mlx4_init_xrcd_table(struct mlx4_dev *dev);
225c7b1f
RD
914int mlx4_init_uar_table(struct mlx4_dev *dev);
915int mlx4_init_mr_table(struct mlx4_dev *dev);
916int mlx4_init_eq_table(struct mlx4_dev *dev);
917int mlx4_init_cq_table(struct mlx4_dev *dev);
918int mlx4_init_qp_table(struct mlx4_dev *dev);
919int mlx4_init_srq_table(struct mlx4_dev *dev);
920int mlx4_init_mcg_table(struct mlx4_dev *dev);
921
922void mlx4_cleanup_pd_table(struct mlx4_dev *dev);
012a8ff5 923void mlx4_cleanup_xrcd_table(struct mlx4_dev *dev);
225c7b1f
RD
924void mlx4_cleanup_uar_table(struct mlx4_dev *dev);
925void mlx4_cleanup_mr_table(struct mlx4_dev *dev);
926void mlx4_cleanup_eq_table(struct mlx4_dev *dev);
927void mlx4_cleanup_cq_table(struct mlx4_dev *dev);
928void mlx4_cleanup_qp_table(struct mlx4_dev *dev);
929void mlx4_cleanup_srq_table(struct mlx4_dev *dev);
930void mlx4_cleanup_mcg_table(struct mlx4_dev *dev);
40f2287b 931int __mlx4_qp_alloc_icm(struct mlx4_dev *dev, int qpn, gfp_t gfp);
c82e9aa0
EC
932void __mlx4_qp_free_icm(struct mlx4_dev *dev, int qpn);
933int __mlx4_cq_alloc_icm(struct mlx4_dev *dev, int *cqn);
934void __mlx4_cq_free_icm(struct mlx4_dev *dev, int cqn);
935int __mlx4_srq_alloc_icm(struct mlx4_dev *dev, int *srqn);
936void __mlx4_srq_free_icm(struct mlx4_dev *dev, int srqn);
b20e519a
SM
937int __mlx4_mpt_reserve(struct mlx4_dev *dev);
938void __mlx4_mpt_release(struct mlx4_dev *dev, u32 index);
40f2287b 939int __mlx4_mpt_alloc_icm(struct mlx4_dev *dev, u32 index, gfp_t gfp);
b20e519a 940void __mlx4_mpt_free_icm(struct mlx4_dev *dev, u32 index);
c82e9aa0
EC
941u32 __mlx4_alloc_mtt_range(struct mlx4_dev *dev, int order);
942void __mlx4_free_mtt_range(struct mlx4_dev *dev, u32 first_seg, int order);
225c7b1f 943
623ed84b
JM
944int mlx4_WRITE_MTT_wrapper(struct mlx4_dev *dev, int slave,
945 struct mlx4_vhcr *vhcr,
946 struct mlx4_cmd_mailbox *inbox,
947 struct mlx4_cmd_mailbox *outbox,
948 struct mlx4_cmd_info *cmd);
949int mlx4_SYNC_TPT_wrapper(struct mlx4_dev *dev, int slave,
950 struct mlx4_vhcr *vhcr,
951 struct mlx4_cmd_mailbox *inbox,
952 struct mlx4_cmd_mailbox *outbox,
953 struct mlx4_cmd_info *cmd);
954int mlx4_SW2HW_MPT_wrapper(struct mlx4_dev *dev, int slave,
955 struct mlx4_vhcr *vhcr,
956 struct mlx4_cmd_mailbox *inbox,
957 struct mlx4_cmd_mailbox *outbox,
958 struct mlx4_cmd_info *cmd);
959int mlx4_HW2SW_MPT_wrapper(struct mlx4_dev *dev, int slave,
960 struct mlx4_vhcr *vhcr,
961 struct mlx4_cmd_mailbox *inbox,
962 struct mlx4_cmd_mailbox *outbox,
963 struct mlx4_cmd_info *cmd);
964int mlx4_QUERY_MPT_wrapper(struct mlx4_dev *dev, int slave,
965 struct mlx4_vhcr *vhcr,
966 struct mlx4_cmd_mailbox *inbox,
967 struct mlx4_cmd_mailbox *outbox,
968 struct mlx4_cmd_info *cmd);
969int mlx4_SW2HW_EQ_wrapper(struct mlx4_dev *dev, int slave,
970 struct mlx4_vhcr *vhcr,
971 struct mlx4_cmd_mailbox *inbox,
972 struct mlx4_cmd_mailbox *outbox,
973 struct mlx4_cmd_info *cmd);
d475c95b
MB
974int mlx4_CONFIG_DEV_wrapper(struct mlx4_dev *dev, int slave,
975 struct mlx4_vhcr *vhcr,
976 struct mlx4_cmd_mailbox *inbox,
977 struct mlx4_cmd_mailbox *outbox,
978 struct mlx4_cmd_info *cmd);
623ed84b
JM
979int mlx4_DMA_wrapper(struct mlx4_dev *dev, int slave,
980 struct mlx4_vhcr *vhcr,
981 struct mlx4_cmd_mailbox *inbox,
982 struct mlx4_cmd_mailbox *outbox,
983 struct mlx4_cmd_info *cmd);
c82e9aa0 984int __mlx4_qp_reserve_range(struct mlx4_dev *dev, int cnt, int align,
ddae0349 985 int *base, u8 flags);
c82e9aa0
EC
986void __mlx4_qp_release_range(struct mlx4_dev *dev, int base_qpn, int cnt);
987int __mlx4_register_mac(struct mlx4_dev *dev, u8 port, u64 mac);
988void __mlx4_unregister_mac(struct mlx4_dev *dev, u8 port, u64 mac);
c82e9aa0
EC
989int __mlx4_write_mtt(struct mlx4_dev *dev, struct mlx4_mtt *mtt,
990 int start_index, int npages, u64 *page_list);
ba062d52
JM
991int __mlx4_counter_alloc(struct mlx4_dev *dev, u32 *idx);
992void __mlx4_counter_free(struct mlx4_dev *dev, u32 idx);
993int __mlx4_xrcd_alloc(struct mlx4_dev *dev, u32 *xrcdn);
994void __mlx4_xrcd_free(struct mlx4_dev *dev, u32 xrcdn);
623ed84b 995
ee49bd93
JM
996void mlx4_start_catas_poll(struct mlx4_dev *dev);
997void mlx4_stop_catas_poll(struct mlx4_dev *dev);
ad9a0bf0
YH
998int mlx4_catas_init(struct mlx4_dev *dev);
999void mlx4_catas_end(struct mlx4_dev *dev);
ee49bd93 1000int mlx4_restart_one(struct pci_dev *pdev);
225c7b1f
RD
1001int mlx4_register_device(struct mlx4_dev *dev);
1002void mlx4_unregister_device(struct mlx4_dev *dev);
00f5ce99
JM
1003void mlx4_dispatch_event(struct mlx4_dev *dev, enum mlx4_dev_event type,
1004 unsigned long param);
225c7b1f
RD
1005
1006struct mlx4_dev_cap;
1007struct mlx4_init_hca_param;
1008
1009u64 mlx4_make_profile(struct mlx4_dev *dev,
1010 struct mlx4_profile *request,
1011 struct mlx4_dev_cap *dev_cap,
1012 struct mlx4_init_hca_param *init_hca);
623ed84b
JM
1013void mlx4_master_comm_channel(struct work_struct *work);
1014void mlx4_gen_slave_eqe(struct work_struct *work);
1015void mlx4_master_handle_slave_flr(struct work_struct *work);
1016
1017int mlx4_ALLOC_RES_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_FREE_RES_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_MAP_EQ_wrapper(struct mlx4_dev *dev, int slave,
1028 struct mlx4_vhcr *vhcr, struct mlx4_cmd_mailbox *inbox,
1029 struct mlx4_cmd_mailbox *outbox,
1030 struct mlx4_cmd_info *cmd);
1031int mlx4_COMM_INT_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_HW2SW_EQ_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_QUERY_EQ_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);
1046int mlx4_SW2HW_CQ_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);
1051int mlx4_HW2SW_CQ_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);
1056int mlx4_QUERY_CQ_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_MODIFY_CQ_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_SW2HW_SRQ_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_HW2SW_SRQ_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_QUERY_SRQ_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_ARM_SRQ_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_GEN_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);
1091int mlx4_RST2INIT_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);
54679e14
JM
1096int mlx4_INIT2INIT_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);
623ed84b
JM
1101int mlx4_INIT2RTR_QP_wrapper(struct mlx4_dev *dev, int slave,
1102 struct mlx4_vhcr *vhcr,
1103 struct mlx4_cmd_mailbox *inbox,
1104 struct mlx4_cmd_mailbox *outbox,
1105 struct mlx4_cmd_info *cmd);
54679e14
JM
1106int mlx4_RTR2RTS_QP_wrapper(struct mlx4_dev *dev, int slave,
1107 struct mlx4_vhcr *vhcr,
1108 struct mlx4_cmd_mailbox *inbox,
1109 struct mlx4_cmd_mailbox *outbox,
1110 struct mlx4_cmd_info *cmd);
1111int mlx4_RTS2RTS_QP_wrapper(struct mlx4_dev *dev, int slave,
1112 struct mlx4_vhcr *vhcr,
1113 struct mlx4_cmd_mailbox *inbox,
1114 struct mlx4_cmd_mailbox *outbox,
1115 struct mlx4_cmd_info *cmd);
1116int mlx4_SQERR2RTS_QP_wrapper(struct mlx4_dev *dev, int slave,
1117 struct mlx4_vhcr *vhcr,
1118 struct mlx4_cmd_mailbox *inbox,
1119 struct mlx4_cmd_mailbox *outbox,
1120 struct mlx4_cmd_info *cmd);
1121int mlx4_2ERR_QP_wrapper(struct mlx4_dev *dev, int slave,
1122 struct mlx4_vhcr *vhcr,
1123 struct mlx4_cmd_mailbox *inbox,
1124 struct mlx4_cmd_mailbox *outbox,
1125 struct mlx4_cmd_info *cmd);
1126int mlx4_RTS2SQD_QP_wrapper(struct mlx4_dev *dev, int slave,
1127 struct mlx4_vhcr *vhcr,
1128 struct mlx4_cmd_mailbox *inbox,
1129 struct mlx4_cmd_mailbox *outbox,
1130 struct mlx4_cmd_info *cmd);
1131int mlx4_SQD2SQD_QP_wrapper(struct mlx4_dev *dev, int slave,
1132 struct mlx4_vhcr *vhcr,
1133 struct mlx4_cmd_mailbox *inbox,
1134 struct mlx4_cmd_mailbox *outbox,
1135 struct mlx4_cmd_info *cmd);
1136int mlx4_SQD2RTS_QP_wrapper(struct mlx4_dev *dev, int slave,
1137 struct mlx4_vhcr *vhcr,
1138 struct mlx4_cmd_mailbox *inbox,
1139 struct mlx4_cmd_mailbox *outbox,
1140 struct mlx4_cmd_info *cmd);
623ed84b
JM
1141int mlx4_2RST_QP_wrapper(struct mlx4_dev *dev, int slave,
1142 struct mlx4_vhcr *vhcr,
1143 struct mlx4_cmd_mailbox *inbox,
1144 struct mlx4_cmd_mailbox *outbox,
1145 struct mlx4_cmd_info *cmd);
54679e14
JM
1146int mlx4_QUERY_QP_wrapper(struct mlx4_dev *dev, int slave,
1147 struct mlx4_vhcr *vhcr,
1148 struct mlx4_cmd_mailbox *inbox,
1149 struct mlx4_cmd_mailbox *outbox,
1150 struct mlx4_cmd_info *cmd);
623ed84b
JM
1151
1152int mlx4_GEN_EQE(struct mlx4_dev *dev, int slave, struct mlx4_eqe *eqe);
225c7b1f 1153
ffc39f6d
MB
1154enum {
1155 MLX4_CMD_CLEANUP_STRUCT = 1UL << 0,
1156 MLX4_CMD_CLEANUP_POOL = 1UL << 1,
1157 MLX4_CMD_CLEANUP_HCR = 1UL << 2,
1158 MLX4_CMD_CLEANUP_VHCR = 1UL << 3,
1159 MLX4_CMD_CLEANUP_ALL = (MLX4_CMD_CLEANUP_VHCR << 1) - 1
1160};
1161
225c7b1f 1162int mlx4_cmd_init(struct mlx4_dev *dev);
ffc39f6d 1163void mlx4_cmd_cleanup(struct mlx4_dev *dev, int cleanup_mask);
ab9c17a0
JM
1164int mlx4_multi_func_init(struct mlx4_dev *dev);
1165void mlx4_multi_func_cleanup(struct mlx4_dev *dev);
225c7b1f
RD
1166void mlx4_cmd_event(struct mlx4_dev *dev, u16 token, u8 status, u64 out_param);
1167int mlx4_cmd_use_events(struct mlx4_dev *dev);
1168void mlx4_cmd_use_polling(struct mlx4_dev *dev);
1169
ab9c17a0
JM
1170int mlx4_comm_cmd(struct mlx4_dev *dev, u8 cmd, u16 param,
1171 unsigned long timeout);
1172
3dca0f42 1173void mlx4_cq_tasklet_cb(unsigned long data);
225c7b1f
RD
1174void mlx4_cq_completion(struct mlx4_dev *dev, u32 cqn);
1175void mlx4_cq_event(struct mlx4_dev *dev, u32 cqn, int event_type);
1176
1177void mlx4_qp_event(struct mlx4_dev *dev, u32 qpn, int event_type);
1178
1179void mlx4_srq_event(struct mlx4_dev *dev, u32 srqn, int event_type);
1180
f6bc11e4 1181void mlx4_enter_error_state(struct mlx4_dev_persistent *persist);
225c7b1f 1182
ab6dc30d
YP
1183int mlx4_SENSE_PORT(struct mlx4_dev *dev, int port,
1184 enum mlx4_port_type *type);
27bf91d6
YP
1185void mlx4_do_sense_ports(struct mlx4_dev *dev,
1186 enum mlx4_port_type *stype,
1187 enum mlx4_port_type *defaults);
1188void mlx4_start_sense(struct mlx4_dev *dev);
1189void mlx4_stop_sense(struct mlx4_dev *dev);
1190void mlx4_sense_init(struct mlx4_dev *dev);
1191int mlx4_check_port_params(struct mlx4_dev *dev,
1192 enum mlx4_port_type *port_type);
1193int mlx4_change_port_types(struct mlx4_dev *dev,
1194 enum mlx4_port_type *port_types);
1195
2a2336f8
YP
1196void mlx4_init_mac_table(struct mlx4_dev *dev, struct mlx4_mac_table *table);
1197void mlx4_init_vlan_table(struct mlx4_dev *dev, struct mlx4_vlan_table *table);
111c6094
JM
1198void mlx4_init_roce_gid_table(struct mlx4_dev *dev,
1199 struct mlx4_roce_gid_table *table);
2009d005 1200void __mlx4_unregister_vlan(struct mlx4_dev *dev, u8 port, u16 vlan);
3f7fb021 1201int __mlx4_register_vlan(struct mlx4_dev *dev, u8 port, u16 vlan, int *index);
2a2336f8 1202
6634961c 1203int mlx4_SET_PORT(struct mlx4_dev *dev, u8 port, int pkey_tbl_sz);
623ed84b
JM
1204/* resource tracker functions*/
1205int mlx4_get_slave_from_resource_id(struct mlx4_dev *dev,
1206 enum mlx4_resource resource_type,
aa1ec3dd 1207 u64 resource_id, int *slave);
623ed84b 1208void mlx4_delete_all_resources_for_slave(struct mlx4_dev *dev, int slave_id);
111c6094 1209void mlx4_reset_roce_gids(struct mlx4_dev *dev, int slave);
623ed84b
JM
1210int mlx4_init_resource_tracker(struct mlx4_dev *dev);
1211
b8924951
JM
1212void mlx4_free_resource_tracker(struct mlx4_dev *dev,
1213 enum mlx4_res_tracker_free_type type);
623ed84b 1214
b91cb3eb
JM
1215int mlx4_QUERY_FW_wrapper(struct mlx4_dev *dev, int slave,
1216 struct mlx4_vhcr *vhcr,
1217 struct mlx4_cmd_mailbox *inbox,
1218 struct mlx4_cmd_mailbox *outbox,
1219 struct mlx4_cmd_info *cmd);
623ed84b
JM
1220int mlx4_SET_PORT_wrapper(struct mlx4_dev *dev, int slave,
1221 struct mlx4_vhcr *vhcr,
1222 struct mlx4_cmd_mailbox *inbox,
1223 struct mlx4_cmd_mailbox *outbox,
1224 struct mlx4_cmd_info *cmd);
1225int mlx4_INIT_PORT_wrapper(struct mlx4_dev *dev, int slave,
1226 struct mlx4_vhcr *vhcr,
1227 struct mlx4_cmd_mailbox *inbox,
1228 struct mlx4_cmd_mailbox *outbox,
1229 struct mlx4_cmd_info *cmd);
1230int mlx4_CLOSE_PORT_wrapper(struct mlx4_dev *dev, int slave,
1231 struct mlx4_vhcr *vhcr,
1232 struct mlx4_cmd_mailbox *inbox,
1233 struct mlx4_cmd_mailbox *outbox,
1234 struct mlx4_cmd_info *cmd);
b91cb3eb
JM
1235int mlx4_QUERY_DEV_CAP_wrapper(struct mlx4_dev *dev, int slave,
1236 struct mlx4_vhcr *vhcr,
1237 struct mlx4_cmd_mailbox *inbox,
1238 struct mlx4_cmd_mailbox *outbox,
1239 struct mlx4_cmd_info *cmd);
623ed84b
JM
1240int mlx4_QUERY_PORT_wrapper(struct mlx4_dev *dev, int slave,
1241 struct mlx4_vhcr *vhcr,
1242 struct mlx4_cmd_mailbox *inbox,
1243 struct mlx4_cmd_mailbox *outbox,
1244 struct mlx4_cmd_info *cmd);
9a5aa622 1245int mlx4_get_port_ib_caps(struct mlx4_dev *dev, u8 port, __be32 *caps);
7ff93f8b 1246
6634961c
JM
1247int mlx4_get_slave_pkey_gid_tbl_len(struct mlx4_dev *dev, u8 port,
1248 int *gid_tbl_len, int *pkey_tbl_len);
623ed84b
JM
1249
1250int mlx4_QP_ATTACH_wrapper(struct mlx4_dev *dev, int slave,
1251 struct mlx4_vhcr *vhcr,
1252 struct mlx4_cmd_mailbox *inbox,
1253 struct mlx4_cmd_mailbox *outbox,
1254 struct mlx4_cmd_info *cmd);
1255
ce8d9e0d
MB
1256int mlx4_UPDATE_QP_wrapper(struct mlx4_dev *dev, int slave,
1257 struct mlx4_vhcr *vhcr,
1258 struct mlx4_cmd_mailbox *inbox,
1259 struct mlx4_cmd_mailbox *outbox,
1260 struct mlx4_cmd_info *cmd);
1261
623ed84b
JM
1262int mlx4_PROMISC_wrapper(struct mlx4_dev *dev, int slave,
1263 struct mlx4_vhcr *vhcr,
1264 struct mlx4_cmd_mailbox *inbox,
1265 struct mlx4_cmd_mailbox *outbox,
1266 struct mlx4_cmd_info *cmd);
b12d93d6
YP
1267int mlx4_qp_detach_common(struct mlx4_dev *dev, struct mlx4_qp *qp, u8 gid[16],
1268 enum mlx4_protocol prot, enum mlx4_steer_type steer);
1269int mlx4_qp_attach_common(struct mlx4_dev *dev, struct mlx4_qp *qp, u8 gid[16],
1270 int block_mcast_loopback, enum mlx4_protocol prot,
1271 enum mlx4_steer_type steer);
fd91c49f
HHZ
1272int mlx4_trans_to_dmfs_attach(struct mlx4_dev *dev, struct mlx4_qp *qp,
1273 u8 gid[16], u8 port,
1274 int block_mcast_loopback,
1275 enum mlx4_protocol prot, u64 *reg_id);
623ed84b
JM
1276int mlx4_SET_MCAST_FLTR_wrapper(struct mlx4_dev *dev, int slave,
1277 struct mlx4_vhcr *vhcr,
1278 struct mlx4_cmd_mailbox *inbox,
1279 struct mlx4_cmd_mailbox *outbox,
1280 struct mlx4_cmd_info *cmd);
1281int mlx4_SET_VLAN_FLTR_wrapper(struct mlx4_dev *dev, int slave,
1282 struct mlx4_vhcr *vhcr,
1283 struct mlx4_cmd_mailbox *inbox,
1284 struct mlx4_cmd_mailbox *outbox,
1285 struct mlx4_cmd_info *cmd);
1286int mlx4_common_set_vlan_fltr(struct mlx4_dev *dev, int function,
1287 int port, void *buf);
1288int mlx4_common_dump_eth_stats(struct mlx4_dev *dev, int slave, u32 in_mod,
1289 struct mlx4_cmd_mailbox *outbox);
1290int mlx4_DUMP_ETH_STATS_wrapper(struct mlx4_dev *dev, int slave,
1291 struct mlx4_vhcr *vhcr,
1292 struct mlx4_cmd_mailbox *inbox,
1293 struct mlx4_cmd_mailbox *outbox,
1294 struct mlx4_cmd_info *cmd);
1295int mlx4_PKEY_TABLE_wrapper(struct mlx4_dev *dev, int slave,
1296 struct mlx4_vhcr *vhcr,
1297 struct mlx4_cmd_mailbox *inbox,
1298 struct mlx4_cmd_mailbox *outbox,
1299 struct mlx4_cmd_info *cmd);
1300int mlx4_QUERY_IF_STAT_wrapper(struct mlx4_dev *dev, int slave,
1301 struct mlx4_vhcr *vhcr,
1302 struct mlx4_cmd_mailbox *inbox,
1303 struct mlx4_cmd_mailbox *outbox,
1304 struct mlx4_cmd_info *cmd);
8fcfb4db
HHZ
1305int mlx4_QP_FLOW_STEERING_ATTACH_wrapper(struct mlx4_dev *dev, int slave,
1306 struct mlx4_vhcr *vhcr,
1307 struct mlx4_cmd_mailbox *inbox,
1308 struct mlx4_cmd_mailbox *outbox,
1309 struct mlx4_cmd_info *cmd);
1310int mlx4_QP_FLOW_STEERING_DETACH_wrapper(struct mlx4_dev *dev, int slave,
1311 struct mlx4_vhcr *vhcr,
1312 struct mlx4_cmd_mailbox *inbox,
1313 struct mlx4_cmd_mailbox *outbox,
1314 struct mlx4_cmd_info *cmd);
6e806699
SM
1315int mlx4_ACCESS_REG_wrapper(struct mlx4_dev *dev, int slave,
1316 struct mlx4_vhcr *vhcr,
1317 struct mlx4_cmd_mailbox *inbox,
1318 struct mlx4_cmd_mailbox *outbox,
1319 struct mlx4_cmd_info *cmd);
f5311ac1 1320
0ec2c0f8
EE
1321int mlx4_get_mgm_entry_size(struct mlx4_dev *dev);
1322int mlx4_get_qp_per_mgm(struct mlx4_dev *dev);
1323
5cc914f1
MA
1324static inline void set_param_l(u64 *arg, u32 val)
1325{
e7dbeba8 1326 *arg = (*arg & 0xffffffff00000000ULL) | (u64) val;
5cc914f1
MA
1327}
1328
1329static inline void set_param_h(u64 *arg, u32 val)
1330{
1331 *arg = (*arg & 0xffffffff) | ((u64) val << 32);
1332}
1333
1334static inline u32 get_param_l(u64 *arg)
1335{
1336 return (u32) (*arg & 0xffffffff);
1337}
1338
1339static inline u32 get_param_h(u64 *arg)
1340{
1341 return (u32)(*arg >> 32);
1342}
1343
c82e9aa0
EC
1344static inline spinlock_t *mlx4_tlock(struct mlx4_dev *dev)
1345{
1346 return &mlx4_priv(dev)->mfunc.master.res_tracker.lock;
1347}
1348
f5311ac1
JM
1349#define NOT_MASKED_PD_BITS 17
1350
b01978ca
JM
1351void mlx4_vf_immed_vlan_work_handler(struct work_struct *_work);
1352
5a0d0a61
JM
1353void mlx4_init_quotas(struct mlx4_dev *dev);
1354
449fc488 1355int mlx4_get_slave_num_gids(struct mlx4_dev *dev, int slave, int port);
f74462ac
MB
1356/* Returns the VF index of slave */
1357int mlx4_get_vf_indx(struct mlx4_dev *dev, int slave);
114840c3 1358int mlx4_config_mad_demux(struct mlx4_dev *dev);
b6ffaeff 1359
7a89399f
MB
1360enum mlx4_zone_flags {
1361 MLX4_ZONE_ALLOW_ALLOC_FROM_LOWER_PRIO = 1UL << 0,
1362 MLX4_ZONE_ALLOW_ALLOC_FROM_EQ_PRIO = 1UL << 1,
1363 MLX4_ZONE_FALLBACK_TO_HIGHER_PRIO = 1UL << 2,
1364 MLX4_ZONE_USE_RR = 1UL << 3,
1365};
1366
1367enum mlx4_zone_alloc_flags {
1368 /* No two objects could overlap between zones. UID
1369 * could be left unused. If this flag is given and
1370 * two overlapped zones are used, an object will be free'd
1371 * from the smallest possible matching zone.
1372 */
1373 MLX4_ZONE_ALLOC_FLAGS_NO_OVERLAP = 1UL << 0,
1374};
1375
1376struct mlx4_zone_allocator;
1377
1378/* Create a new zone allocator */
1379struct mlx4_zone_allocator *mlx4_zone_allocator_create(enum mlx4_zone_alloc_flags flags);
1380
1381/* Attach a mlx4_bitmap <bitmap> of priority <priority> to the zone allocator
1382 * <zone_alloc>. Allocating an object from this zone adds an offset <offset>.
1383 * Similarly, when searching for an object to free, this offset it taken into
1384 * account. The use_rr mlx4_ib parameter for allocating objects from this <bitmap>
1385 * is given through the MLX4_ZONE_USE_RR flag in <flags>.
1386 * When an allocation fails, <zone_alloc> tries to allocate from other zones
1387 * according to the policy set by <flags>. <puid> is the unique identifier
1388 * received to this zone.
1389 */
1390int mlx4_zone_add_one(struct mlx4_zone_allocator *zone_alloc,
1391 struct mlx4_bitmap *bitmap,
1392 u32 flags,
1393 int priority,
1394 int offset,
1395 u32 *puid);
1396
1397/* Remove bitmap indicated by <uid> from <zone_alloc> */
1398int mlx4_zone_remove_one(struct mlx4_zone_allocator *zone_alloc, u32 uid);
1399
1400/* Delete the zone allocator <zone_alloc. This function doesn't destroy
1401 * the attached bitmaps.
1402 */
1403void mlx4_zone_allocator_destroy(struct mlx4_zone_allocator *zone_alloc);
1404
1405/* Allocate <count> objects with align <align> and skip_mask <skip_mask>
1406 * from the mlx4_bitmap whose uid is <uid>. The bitmap which we actually
1407 * allocated from is returned in <puid>. If the allocation fails, a negative
1408 * number is returned. Otherwise, the offset of the first object is returned.
1409 */
1410u32 mlx4_zone_alloc_entries(struct mlx4_zone_allocator *zones, u32 uid, int count,
1411 int align, u32 skip_mask, u32 *puid);
1412
1413/* Free <count> objects, start from <obj> of the uid <uid> from zone_allocator
1414 * <zones>.
1415 */
1416u32 mlx4_zone_free_entries(struct mlx4_zone_allocator *zones,
1417 u32 uid, u32 obj, u32 count);
1418
1419/* If <zones> was allocated with MLX4_ZONE_ALLOC_FLAGS_NO_OVERLAP, instead of
1420 * specifying the uid when freeing an object, zone allocator could figure it by
1421 * itself. Other parameters are similar to mlx4_zone_free.
1422 */
1423u32 mlx4_zone_free_entries_unique(struct mlx4_zone_allocator *zones, u32 obj, u32 count);
1424
1425/* Returns a pointer to mlx4_bitmap that was attached to <zones> with <uid> */
1426struct mlx4_bitmap *mlx4_zone_get_bitmap(struct mlx4_zone_allocator *zones, u32 uid);
1427
225c7b1f 1428#endif /* MLX4_H */