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