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