]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - drivers/net/ethernet/mellanox/mlx4/mlx4.h
mlx4_core: Stash PCI ID driver_data in mlx4_priv structure
[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>
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 ": "
7d4b6bcc
YP
54#define DRV_VERSION "1.1"
55#define DRV_RELDATE "Dec, 2011"
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
63enum {
64 MLX4_FS_L2_HASH = 0,
65 MLX4_FS_L2_L3_L4_HASH,
66};
67
e5395e92
AV
68#define MLX4_NUM_UP 8
69#define MLX4_NUM_TC 8
70#define MLX4_RATELIMIT_UNITS 3 /* 100 Mbps */
71#define MLX4_RATELIMIT_DEFAULT 0xffff
72
73struct mlx4_set_port_prio2tc_context {
74 u8 prio2tc[4];
75};
76
77struct mlx4_port_scheduler_tc_cfg_be {
78 __be16 pg;
79 __be16 bw_precentage;
80 __be16 max_bw_units; /* 3-100Mbps, 4-1Gbps, other values - reserved */
81 __be16 max_bw_value;
82};
83
84struct mlx4_set_port_scheduler_context {
85 struct mlx4_port_scheduler_tc_cfg_be tc[MLX4_NUM_TC];
86};
87
225c7b1f
RD
88enum {
89 MLX4_HCR_BASE = 0x80680,
90 MLX4_HCR_SIZE = 0x0001c,
623ed84b
JM
91 MLX4_CLR_INT_SIZE = 0x00008,
92 MLX4_SLAVE_COMM_BASE = 0x0,
93 MLX4_COMM_PAGESIZE = 0x1000
225c7b1f
RD
94};
95
225c7b1f 96enum {
0ec2c0f8
EE
97 MLX4_MAX_MGM_ENTRY_SIZE = 0x1000,
98 MLX4_MAX_QP_PER_MGM = 4 * (MLX4_MAX_MGM_ENTRY_SIZE / 16 - 2),
99 MLX4_MTT_ENTRY_PER_SEG = 8,
225c7b1f
RD
100};
101
225c7b1f
RD
102enum {
103 MLX4_NUM_PDS = 1 << 15
104};
105
106enum {
107 MLX4_CMPT_TYPE_QP = 0,
108 MLX4_CMPT_TYPE_SRQ = 1,
109 MLX4_CMPT_TYPE_CQ = 2,
110 MLX4_CMPT_TYPE_EQ = 3,
111 MLX4_CMPT_NUM_TYPE
112};
113
114enum {
115 MLX4_CMPT_SHIFT = 24,
116 MLX4_NUM_CMPTS = MLX4_CMPT_NUM_TYPE << MLX4_CMPT_SHIFT
117};
118
623ed84b
JM
119enum mlx4_mr_state {
120 MLX4_MR_DISABLED = 0,
121 MLX4_MR_EN_HW,
122 MLX4_MR_EN_SW
123};
124
125#define MLX4_COMM_TIME 10000
126enum {
127 MLX4_COMM_CMD_RESET,
128 MLX4_COMM_CMD_VHCR0,
129 MLX4_COMM_CMD_VHCR1,
130 MLX4_COMM_CMD_VHCR2,
131 MLX4_COMM_CMD_VHCR_EN,
132 MLX4_COMM_CMD_VHCR_POST,
133 MLX4_COMM_CMD_FLR = 254
134};
135
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
RD
218
219#define mlx4_dbg(mdev, format, arg...) \
0a645e80
JP
220do { \
221 if (mlx4_debug_level) \
222 dev_printk(KERN_DEBUG, &mdev->pdev->dev, format, ##arg); \
223} while (0)
225c7b1f 224
225c7b1f 225#define mlx4_err(mdev, format, arg...) \
0a645e80 226 dev_err(&mdev->pdev->dev, format, ##arg)
225c7b1f 227#define mlx4_info(mdev, format, arg...) \
0a645e80 228 dev_info(&mdev->pdev->dev, format, ##arg)
225c7b1f 229#define mlx4_warn(mdev, format, arg...) \
0a645e80 230 dev_warn(&mdev->pdev->dev, format, ##arg)
225c7b1f 231
0ec2c0f8 232extern int mlx4_log_num_mgm_entry_size;
2b8fb286 233extern int log_mtts_per_seg;
0ec2c0f8 234
623ed84b
JM
235#define MLX4_MAX_NUM_SLAVES (MLX4_MAX_NUM_PF + MLX4_MAX_NUM_VF)
236#define ALL_SLAVES 0xff
237
225c7b1f
RD
238struct mlx4_bitmap {
239 u32 last;
240 u32 top;
241 u32 max;
93fc9e1b 242 u32 reserved_top;
225c7b1f 243 u32 mask;
42d1e017 244 u32 avail;
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
c82e9aa0
EC
269/*
270 * Must be packed because mtt_seg is 64 bits but only aligned to 32 bits.
271 */
272struct mlx4_mpt_entry {
273 __be32 flags;
274 __be32 qpn;
275 __be32 key;
276 __be32 pd_flags;
277 __be64 start;
278 __be64 length;
279 __be32 lkey;
280 __be32 win_cnt;
281 u8 reserved1[3];
282 u8 mtt_rep;
2b8fb286 283 __be64 mtt_addr;
c82e9aa0
EC
284 __be32 mtt_sz;
285 __be32 entity_size;
286 __be32 first_byte_offset;
287} __packed;
288
289/*
290 * Must be packed because start is 64 bits but only aligned to 32 bits.
291 */
292struct mlx4_eq_context {
293 __be32 flags;
294 u16 reserved1[3];
295 __be16 page_offset;
296 u8 log_eq_size;
297 u8 reserved2[4];
298 u8 eq_period;
299 u8 reserved3;
300 u8 eq_max_count;
301 u8 reserved4[3];
302 u8 intr;
303 u8 log_page_size;
304 u8 reserved5[2];
305 u8 mtt_base_addr_h;
306 __be32 mtt_base_addr_l;
307 u32 reserved6[2];
308 __be32 consumer_index;
309 __be32 producer_index;
310 u32 reserved7[4];
311};
312
313struct mlx4_cq_context {
314 __be32 flags;
315 u16 reserved1[3];
316 __be16 page_offset;
317 __be32 logsize_usrpage;
318 __be16 cq_period;
319 __be16 cq_max_count;
320 u8 reserved2[3];
321 u8 comp_eqn;
322 u8 log_page_size;
323 u8 reserved3[2];
324 u8 mtt_base_addr_h;
325 __be32 mtt_base_addr_l;
326 __be32 last_notified_index;
327 __be32 solicit_producer_index;
328 __be32 consumer_index;
329 __be32 producer_index;
330 u32 reserved4[2];
331 __be64 db_rec_addr;
332};
333
334struct mlx4_srq_context {
335 __be32 state_logsize_srqn;
336 u8 logstride;
337 u8 reserved1;
338 __be16 xrcd;
339 __be32 pg_offset_cqn;
340 u32 reserved2;
341 u8 log_page_size;
342 u8 reserved3[2];
343 u8 mtt_base_addr_h;
344 __be32 mtt_base_addr_l;
345 __be32 pd;
346 __be16 limit_watermark;
347 __be16 wqe_cnt;
348 u16 reserved4;
349 __be16 wqe_counter;
350 u32 reserved5;
351 __be64 db_rec_addr;
352};
353
225c7b1f
RD
354struct mlx4_eq {
355 struct mlx4_dev *dev;
356 void __iomem *doorbell;
357 int eqn;
358 u32 cons_index;
359 u16 irq;
360 u16 have_irq;
361 int nent;
362 struct mlx4_buf_list *page_list;
363 struct mlx4_mtt mtt;
364};
365
623ed84b
JM
366struct mlx4_slave_eqe {
367 u8 type;
368 u8 port;
369 u32 param;
370};
371
372struct mlx4_slave_event_eq_info {
803143fb 373 int eqn;
623ed84b 374 u16 token;
623ed84b
JM
375};
376
225c7b1f
RD
377struct mlx4_profile {
378 int num_qp;
379 int rdmarc_per_qp;
380 int num_srq;
381 int num_cq;
382 int num_mcg;
383 int num_mpt;
db5a7a65 384 unsigned num_mtt;
225c7b1f
RD
385};
386
387struct mlx4_fw {
388 u64 clr_int_base;
389 u64 catas_offset;
623ed84b 390 u64 comm_base;
225c7b1f
RD
391 struct mlx4_icm *fw_icm;
392 struct mlx4_icm *aux_icm;
393 u32 catas_size;
394 u16 fw_pages;
395 u8 clr_int_bar;
396 u8 catas_bar;
623ed84b
JM
397 u8 comm_bar;
398};
399
400struct mlx4_comm {
401 u32 slave_write;
402 u32 slave_read;
225c7b1f
RD
403};
404
ffe455ad
EE
405enum {
406 MLX4_MCAST_CONFIG = 0,
407 MLX4_MCAST_DISABLE = 1,
408 MLX4_MCAST_ENABLE = 2,
409};
410
623ed84b
JM
411#define VLAN_FLTR_SIZE 128
412
413struct mlx4_vlan_fltr {
414 __be32 entry[VLAN_FLTR_SIZE];
415};
416
ffe455ad
EE
417struct mlx4_mcast_entry {
418 struct list_head list;
419 u64 addr;
420};
421
b12d93d6
YP
422struct mlx4_promisc_qp {
423 struct list_head list;
424 u32 qpn;
425};
426
427struct mlx4_steer_index {
428 struct list_head list;
429 unsigned int index;
430 struct list_head duplicates;
431};
432
803143fb
MA
433#define MLX4_EVENT_TYPES_NUM 64
434
623ed84b
JM
435struct mlx4_slave_state {
436 u8 comm_toggle;
437 u8 last_cmd;
438 u8 init_port_mask;
439 bool active;
440 u8 function;
441 dma_addr_t vhcr_dma;
442 u16 mtu[MLX4_MAX_PORTS + 1];
443 __be32 ib_cap_mask[MLX4_MAX_PORTS + 1];
444 struct mlx4_slave_eqe eq[MLX4_MFUNC_MAX_EQES];
445 struct list_head mcast_filters[MLX4_MAX_PORTS + 1];
446 struct mlx4_vlan_fltr *vlan_filter[MLX4_MAX_PORTS + 1];
803143fb
MA
447 /* event type to eq number lookup */
448 struct mlx4_slave_event_eq_info event_eq[MLX4_EVENT_TYPES_NUM];
623ed84b
JM
449 u16 eq_pi;
450 u16 eq_ci;
451 spinlock_t lock;
452 /*initialized via the kzalloc*/
453 u8 is_slave_going_down;
454 u32 cookie;
993c401e 455 enum slave_port_state port_state[MLX4_MAX_PORTS + 1];
623ed84b
JM
456};
457
458struct slave_list {
459 struct mutex mutex;
460 struct list_head res_list[MLX4_NUM_OF_RESOURCE_TYPE];
461};
462
463struct mlx4_resource_tracker {
464 spinlock_t lock;
465 /* tree for each resources */
4af1c048 466 struct rb_root res_tree[MLX4_NUM_OF_RESOURCE_TYPE];
623ed84b
JM
467 /* num_of_slave's lists, one per slave */
468 struct slave_list *slave_list;
469};
470
471#define SLAVE_EVENT_EQ_SIZE 128
472struct mlx4_slave_event_eq {
473 u32 eqn;
474 u32 cons;
475 u32 prod;
992e8e6e 476 spinlock_t event_lock;
623ed84b
JM
477 struct mlx4_eqe event_eqe[SLAVE_EVENT_EQ_SIZE];
478};
479
480struct mlx4_master_qp0_state {
481 int proxy_qp0_active;
482 int qp0_active;
483 int port_active;
484};
485
486struct mlx4_mfunc_master_ctx {
487 struct mlx4_slave_state *slave_state;
488 struct mlx4_master_qp0_state qp0_state[MLX4_MAX_PORTS + 1];
489 int init_port_ref[MLX4_MAX_PORTS + 1];
490 u16 max_mtu[MLX4_MAX_PORTS + 1];
491 int disable_mcast_ref[MLX4_MAX_PORTS + 1];
492 struct mlx4_resource_tracker res_tracker;
493 struct workqueue_struct *comm_wq;
494 struct work_struct comm_work;
495 struct work_struct slave_event_work;
496 struct work_struct slave_flr_event_work;
497 spinlock_t slave_state_lock;
f5311ac1 498 __be32 comm_arm_bit_vector[4];
623ed84b
JM
499 struct mlx4_eqe cmd_eqe;
500 struct mlx4_slave_event_eq slave_eq;
501 struct mutex gen_eqe_mutex[MLX4_MFUNC_MAX];
502};
503
504struct mlx4_mfunc {
505 struct mlx4_comm __iomem *comm;
506 struct mlx4_vhcr_cmd *vhcr;
507 dma_addr_t vhcr_dma;
508
509 struct mlx4_mfunc_master_ctx master;
510};
511
225c7b1f
RD
512struct mlx4_cmd {
513 struct pci_pool *pool;
514 void __iomem *hcr;
515 struct mutex hcr_mutex;
f3d4c89e 516 struct mutex slave_cmd_mutex;
225c7b1f
RD
517 struct semaphore poll_sem;
518 struct semaphore event_sem;
519 int max_cmds;
520 spinlock_t context_lock;
521 int free_head;
522 struct mlx4_cmd_context *context;
523 u16 token_mask;
524 u8 use_events;
525 u8 toggle;
623ed84b 526 u8 comm_toggle;
225c7b1f
RD
527};
528
529struct mlx4_uar_table {
530 struct mlx4_bitmap bitmap;
531};
532
533struct mlx4_mr_table {
534 struct mlx4_bitmap mpt_bitmap;
535 struct mlx4_buddy mtt_buddy;
536 u64 mtt_base;
537 u64 mpt_base;
538 struct mlx4_icm_table mtt_table;
539 struct mlx4_icm_table dmpt_table;
540};
541
542struct mlx4_cq_table {
543 struct mlx4_bitmap bitmap;
544 spinlock_t lock;
545 struct radix_tree_root tree;
546 struct mlx4_icm_table table;
547 struct mlx4_icm_table cmpt_table;
548};
549
550struct mlx4_eq_table {
551 struct mlx4_bitmap bitmap;
b8dd786f 552 char *irq_names;
225c7b1f 553 void __iomem *clr_int;
b8dd786f 554 void __iomem **uar_map;
225c7b1f 555 u32 clr_mask;
b8dd786f 556 struct mlx4_eq *eq;
fa0681d2 557 struct mlx4_icm_table table;
225c7b1f
RD
558 struct mlx4_icm_table cmpt_table;
559 int have_irq;
560 u8 inta_pin;
561};
562
563struct mlx4_srq_table {
564 struct mlx4_bitmap bitmap;
565 spinlock_t lock;
566 struct radix_tree_root tree;
567 struct mlx4_icm_table table;
568 struct mlx4_icm_table cmpt_table;
569};
570
571struct mlx4_qp_table {
572 struct mlx4_bitmap bitmap;
573 u32 rdmarc_base;
574 int rdmarc_shift;
575 spinlock_t lock;
576 struct mlx4_icm_table qp_table;
577 struct mlx4_icm_table auxc_table;
578 struct mlx4_icm_table altc_table;
579 struct mlx4_icm_table rdmarc_table;
580 struct mlx4_icm_table cmpt_table;
581};
582
583struct mlx4_mcg_table {
584 struct mutex mutex;
585 struct mlx4_bitmap bitmap;
586 struct mlx4_icm_table table;
587};
588
589struct mlx4_catas_err {
590 u32 __iomem *map;
ee49bd93
JM
591 struct timer_list timer;
592 struct list_head list;
225c7b1f
RD
593};
594
2a2336f8
YP
595#define MLX4_MAX_MAC_NUM 128
596#define MLX4_MAC_TABLE_SIZE (MLX4_MAX_MAC_NUM << 3)
597
598struct mlx4_mac_table {
599 __be64 entries[MLX4_MAX_MAC_NUM];
600 int refs[MLX4_MAX_MAC_NUM];
601 struct mutex mutex;
602 int total;
603 int max;
604};
605
606#define MLX4_MAX_VLAN_NUM 128
607#define MLX4_VLAN_TABLE_SIZE (MLX4_MAX_VLAN_NUM << 2)
608
609struct mlx4_vlan_table {
610 __be32 entries[MLX4_MAX_VLAN_NUM];
611 int refs[MLX4_MAX_VLAN_NUM];
612 struct mutex mutex;
613 int total;
614 int max;
615};
616
ffe455ad
EE
617#define SET_PORT_GEN_ALL_VALID 0x7
618#define SET_PORT_PROMISC_SHIFT 31
619#define SET_PORT_MC_PROMISC_SHIFT 30
620
621enum {
622 MCAST_DIRECT_ONLY = 0,
623 MCAST_DIRECT = 1,
624 MCAST_DEFAULT = 2
625};
626
627
628struct mlx4_set_port_general_context {
629 u8 reserved[3];
630 u8 flags;
631 u16 reserved2;
632 __be16 mtu;
633 u8 pptx;
634 u8 pfctx;
635 u16 reserved3;
636 u8 pprx;
637 u8 pfcrx;
638 u16 reserved4;
639};
640
641struct mlx4_set_port_rqp_calc_context {
642 __be32 base_qpn;
643 u8 rererved;
644 u8 n_mac;
645 u8 n_vlan;
646 u8 n_prio;
647 u8 reserved2[3];
648 u8 mac_miss;
649 u8 intra_no_vlan;
650 u8 no_vlan;
651 u8 intra_vlan_miss;
652 u8 vlan_miss;
653 u8 reserved3[3];
654 u8 no_vlan_prio;
655 __be32 promisc;
656 __be32 mcast;
657};
658
1679200f
YP
659struct mlx4_mac_entry {
660 u64 mac;
0ff1fb65 661 u64 reg_id;
1679200f
YP
662};
663
2a2336f8
YP
664struct mlx4_port_info {
665 struct mlx4_dev *dev;
666 int port;
7ff93f8b
YP
667 char dev_name[16];
668 struct device_attribute port_attr;
669 enum mlx4_port_type tmp_type;
096335b3
OG
670 char dev_mtu_name[16];
671 struct device_attribute port_mtu_attr;
2a2336f8 672 struct mlx4_mac_table mac_table;
1679200f 673 struct radix_tree_root mac_tree;
2a2336f8 674 struct mlx4_vlan_table vlan_table;
1679200f 675 int base_qpn;
2a2336f8
YP
676};
677
27bf91d6
YP
678struct mlx4_sense {
679 struct mlx4_dev *dev;
680 u8 do_sense_port[MLX4_MAX_PORTS + 1];
681 u8 sense_allowed[MLX4_MAX_PORTS + 1];
682 struct delayed_work sense_poll;
683};
684
0b7ca5a9
YP
685struct mlx4_msix_ctl {
686 u64 pool_bm;
730c41d5 687 struct mutex pool_lock;
0b7ca5a9
YP
688};
689
b12d93d6
YP
690struct mlx4_steer {
691 struct list_head promisc_qps[MLX4_NUM_STEERS];
692 struct list_head steer_entries[MLX4_NUM_STEERS];
b12d93d6
YP
693};
694
a8edc3bf
HHZ
695struct mlx4_net_trans_rule_hw_ctrl {
696 __be32 ctrl;
697 __be32 vf_vep_port;
698 __be32 qpn;
699 __be32 reserved;
700};
701
702struct mlx4_net_trans_rule_hw_ib {
703 u8 size;
704 u8 rsvd1;
705 __be16 id;
706 u32 rsvd2;
707 __be32 qpn;
708 __be32 qpn_mask;
709 u8 dst_gid[16];
710 u8 dst_gid_msk[16];
711} __packed;
712
713struct mlx4_net_trans_rule_hw_eth {
714 u8 size;
715 u8 rsvd;
716 __be16 id;
717 u8 rsvd1[6];
718 u8 dst_mac[6];
719 u16 rsvd2;
720 u8 dst_mac_msk[6];
721 u16 rsvd3;
722 u8 src_mac[6];
723 u16 rsvd4;
724 u8 src_mac_msk[6];
725 u8 rsvd5;
726 u8 ether_type_enable;
727 __be16 ether_type;
728 __be16 vlan_id_msk;
729 __be16 vlan_id;
730} __packed;
731
732struct mlx4_net_trans_rule_hw_tcp_udp {
733 u8 size;
734 u8 rsvd;
735 __be16 id;
736 __be16 rsvd1[3];
737 __be16 dst_port;
738 __be16 rsvd2;
739 __be16 dst_port_msk;
740 __be16 rsvd3;
741 __be16 src_port;
742 __be16 rsvd4;
743 __be16 src_port_msk;
744} __packed;
745
746struct mlx4_net_trans_rule_hw_ipv4 {
747 u8 size;
748 u8 rsvd;
749 __be16 id;
750 __be32 rsvd1;
751 __be32 dst_ip;
752 __be32 dst_ip_msk;
753 __be32 src_ip;
754 __be32 src_ip_msk;
755} __packed;
756
757struct _rule_hw {
758 union {
759 struct {
760 u8 size;
761 u8 rsvd;
762 __be16 id;
763 };
764 struct mlx4_net_trans_rule_hw_eth eth;
765 struct mlx4_net_trans_rule_hw_ib ib;
766 struct mlx4_net_trans_rule_hw_ipv4 ipv4;
767 struct mlx4_net_trans_rule_hw_tcp_udp tcp_udp;
768 };
769};
770
839f1243
RD
771enum {
772 MLX4_PCI_DEV_IS_VF = 1 << 0,
773};
774
225c7b1f
RD
775struct mlx4_priv {
776 struct mlx4_dev dev;
777
778 struct list_head dev_list;
779 struct list_head ctx_list;
780 spinlock_t ctx_lock;
781
839f1243
RD
782 int pci_dev_data;
783
6296883c
YP
784 struct list_head pgdir_list;
785 struct mutex pgdir_mutex;
786
225c7b1f
RD
787 struct mlx4_fw fw;
788 struct mlx4_cmd cmd;
623ed84b 789 struct mlx4_mfunc mfunc;
225c7b1f
RD
790
791 struct mlx4_bitmap pd_bitmap;
012a8ff5 792 struct mlx4_bitmap xrcd_bitmap;
225c7b1f
RD
793 struct mlx4_uar_table uar_table;
794 struct mlx4_mr_table mr_table;
795 struct mlx4_cq_table cq_table;
796 struct mlx4_eq_table eq_table;
797 struct mlx4_srq_table srq_table;
798 struct mlx4_qp_table qp_table;
799 struct mlx4_mcg_table mcg_table;
f2a3f6a3 800 struct mlx4_bitmap counters_bitmap;
225c7b1f
RD
801
802 struct mlx4_catas_err catas_err;
803
804 void __iomem *clr_base;
805
806 struct mlx4_uar driver_uar;
807 void __iomem *kar;
2a2336f8 808 struct mlx4_port_info port[MLX4_MAX_PORTS + 1];
27bf91d6 809 struct mlx4_sense sense;
7ff93f8b 810 struct mutex port_mutex;
0b7ca5a9 811 struct mlx4_msix_ctl msix_ctl;
b12d93d6 812 struct mlx4_steer *steer;
c1b43dca
EC
813 struct list_head bf_list;
814 struct mutex bf_mutex;
815 struct io_mapping *bf_mapping;
ea51b377 816 int reserved_mtts;
0ff1fb65 817 int fs_hash_mode;
54679e14 818 u8 virt2phys_pkey[MLX4_MFUNC_MAX][MLX4_MAX_PORTS][MLX4_MAX_PORT_PKEYS];
afa8fd1d 819 __be64 slave_node_guids[MLX4_MFUNC_MAX];
54679e14 820
225c7b1f
RD
821};
822
823static inline struct mlx4_priv *mlx4_priv(struct mlx4_dev *dev)
824{
825 return container_of(dev, struct mlx4_priv, dev);
826}
827
27bf91d6
YP
828#define MLX4_SENSE_RANGE (HZ * 3)
829
830extern struct workqueue_struct *mlx4_wq;
831
225c7b1f
RD
832u32 mlx4_bitmap_alloc(struct mlx4_bitmap *bitmap);
833void mlx4_bitmap_free(struct mlx4_bitmap *bitmap, u32 obj);
a3cdcbfa
YP
834u32 mlx4_bitmap_alloc_range(struct mlx4_bitmap *bitmap, int cnt, int align);
835void mlx4_bitmap_free_range(struct mlx4_bitmap *bitmap, u32 obj, int cnt);
42d1e017 836u32 mlx4_bitmap_avail(struct mlx4_bitmap *bitmap);
93fc9e1b
YP
837int mlx4_bitmap_init(struct mlx4_bitmap *bitmap, u32 num, u32 mask,
838 u32 reserved_bot, u32 resetrved_top);
225c7b1f
RD
839void mlx4_bitmap_cleanup(struct mlx4_bitmap *bitmap);
840
841int mlx4_reset(struct mlx4_dev *dev);
842
b8dd786f
YP
843int mlx4_alloc_eq_table(struct mlx4_dev *dev);
844void mlx4_free_eq_table(struct mlx4_dev *dev);
845
225c7b1f 846int mlx4_init_pd_table(struct mlx4_dev *dev);
012a8ff5 847int mlx4_init_xrcd_table(struct mlx4_dev *dev);
225c7b1f
RD
848int mlx4_init_uar_table(struct mlx4_dev *dev);
849int mlx4_init_mr_table(struct mlx4_dev *dev);
850int mlx4_init_eq_table(struct mlx4_dev *dev);
851int mlx4_init_cq_table(struct mlx4_dev *dev);
852int mlx4_init_qp_table(struct mlx4_dev *dev);
853int mlx4_init_srq_table(struct mlx4_dev *dev);
854int mlx4_init_mcg_table(struct mlx4_dev *dev);
855
856void mlx4_cleanup_pd_table(struct mlx4_dev *dev);
012a8ff5 857void mlx4_cleanup_xrcd_table(struct mlx4_dev *dev);
225c7b1f
RD
858void mlx4_cleanup_uar_table(struct mlx4_dev *dev);
859void mlx4_cleanup_mr_table(struct mlx4_dev *dev);
860void mlx4_cleanup_eq_table(struct mlx4_dev *dev);
861void mlx4_cleanup_cq_table(struct mlx4_dev *dev);
862void mlx4_cleanup_qp_table(struct mlx4_dev *dev);
863void mlx4_cleanup_srq_table(struct mlx4_dev *dev);
864void mlx4_cleanup_mcg_table(struct mlx4_dev *dev);
c82e9aa0
EC
865int __mlx4_qp_alloc_icm(struct mlx4_dev *dev, int qpn);
866void __mlx4_qp_free_icm(struct mlx4_dev *dev, int qpn);
867int __mlx4_cq_alloc_icm(struct mlx4_dev *dev, int *cqn);
868void __mlx4_cq_free_icm(struct mlx4_dev *dev, int cqn);
869int __mlx4_srq_alloc_icm(struct mlx4_dev *dev, int *srqn);
870void __mlx4_srq_free_icm(struct mlx4_dev *dev, int srqn);
871int __mlx4_mr_reserve(struct mlx4_dev *dev);
872void __mlx4_mr_release(struct mlx4_dev *dev, u32 index);
873int __mlx4_mr_alloc_icm(struct mlx4_dev *dev, u32 index);
874void __mlx4_mr_free_icm(struct mlx4_dev *dev, u32 index);
875u32 __mlx4_alloc_mtt_range(struct mlx4_dev *dev, int order);
876void __mlx4_free_mtt_range(struct mlx4_dev *dev, u32 first_seg, int order);
225c7b1f 877
623ed84b
JM
878int mlx4_WRITE_MTT_wrapper(struct mlx4_dev *dev, int slave,
879 struct mlx4_vhcr *vhcr,
880 struct mlx4_cmd_mailbox *inbox,
881 struct mlx4_cmd_mailbox *outbox,
882 struct mlx4_cmd_info *cmd);
883int mlx4_SYNC_TPT_wrapper(struct mlx4_dev *dev, int slave,
884 struct mlx4_vhcr *vhcr,
885 struct mlx4_cmd_mailbox *inbox,
886 struct mlx4_cmd_mailbox *outbox,
887 struct mlx4_cmd_info *cmd);
888int mlx4_SW2HW_MPT_wrapper(struct mlx4_dev *dev, int slave,
889 struct mlx4_vhcr *vhcr,
890 struct mlx4_cmd_mailbox *inbox,
891 struct mlx4_cmd_mailbox *outbox,
892 struct mlx4_cmd_info *cmd);
893int mlx4_HW2SW_MPT_wrapper(struct mlx4_dev *dev, int slave,
894 struct mlx4_vhcr *vhcr,
895 struct mlx4_cmd_mailbox *inbox,
896 struct mlx4_cmd_mailbox *outbox,
897 struct mlx4_cmd_info *cmd);
898int mlx4_QUERY_MPT_wrapper(struct mlx4_dev *dev, int slave,
899 struct mlx4_vhcr *vhcr,
900 struct mlx4_cmd_mailbox *inbox,
901 struct mlx4_cmd_mailbox *outbox,
902 struct mlx4_cmd_info *cmd);
903int mlx4_SW2HW_EQ_wrapper(struct mlx4_dev *dev, int slave,
904 struct mlx4_vhcr *vhcr,
905 struct mlx4_cmd_mailbox *inbox,
906 struct mlx4_cmd_mailbox *outbox,
907 struct mlx4_cmd_info *cmd);
908int mlx4_DMA_wrapper(struct mlx4_dev *dev, int slave,
909 struct mlx4_vhcr *vhcr,
910 struct mlx4_cmd_mailbox *inbox,
911 struct mlx4_cmd_mailbox *outbox,
912 struct mlx4_cmd_info *cmd);
c82e9aa0
EC
913int __mlx4_qp_reserve_range(struct mlx4_dev *dev, int cnt, int align,
914 int *base);
915void __mlx4_qp_release_range(struct mlx4_dev *dev, int base_qpn, int cnt);
916int __mlx4_register_mac(struct mlx4_dev *dev, u8 port, u64 mac);
917void __mlx4_unregister_mac(struct mlx4_dev *dev, u8 port, u64 mac);
918int __mlx4_replace_mac(struct mlx4_dev *dev, u8 port, int qpn, u64 new_mac);
919int __mlx4_write_mtt(struct mlx4_dev *dev, struct mlx4_mtt *mtt,
920 int start_index, int npages, u64 *page_list);
ba062d52
JM
921int __mlx4_counter_alloc(struct mlx4_dev *dev, u32 *idx);
922void __mlx4_counter_free(struct mlx4_dev *dev, u32 idx);
923int __mlx4_xrcd_alloc(struct mlx4_dev *dev, u32 *xrcdn);
924void __mlx4_xrcd_free(struct mlx4_dev *dev, u32 xrcdn);
623ed84b 925
ee49bd93
JM
926void mlx4_start_catas_poll(struct mlx4_dev *dev);
927void mlx4_stop_catas_poll(struct mlx4_dev *dev);
27bf91d6 928void mlx4_catas_init(void);
ee49bd93 929int mlx4_restart_one(struct pci_dev *pdev);
225c7b1f
RD
930int mlx4_register_device(struct mlx4_dev *dev);
931void mlx4_unregister_device(struct mlx4_dev *dev);
00f5ce99
JM
932void mlx4_dispatch_event(struct mlx4_dev *dev, enum mlx4_dev_event type,
933 unsigned long param);
225c7b1f
RD
934
935struct mlx4_dev_cap;
936struct mlx4_init_hca_param;
937
938u64 mlx4_make_profile(struct mlx4_dev *dev,
939 struct mlx4_profile *request,
940 struct mlx4_dev_cap *dev_cap,
941 struct mlx4_init_hca_param *init_hca);
623ed84b
JM
942void mlx4_master_comm_channel(struct work_struct *work);
943void mlx4_gen_slave_eqe(struct work_struct *work);
944void mlx4_master_handle_slave_flr(struct work_struct *work);
945
946int mlx4_ALLOC_RES_wrapper(struct mlx4_dev *dev, int slave,
947 struct mlx4_vhcr *vhcr,
948 struct mlx4_cmd_mailbox *inbox,
949 struct mlx4_cmd_mailbox *outbox,
950 struct mlx4_cmd_info *cmd);
951int mlx4_FREE_RES_wrapper(struct mlx4_dev *dev, int slave,
952 struct mlx4_vhcr *vhcr,
953 struct mlx4_cmd_mailbox *inbox,
954 struct mlx4_cmd_mailbox *outbox,
955 struct mlx4_cmd_info *cmd);
956int mlx4_MAP_EQ_wrapper(struct mlx4_dev *dev, int slave,
957 struct mlx4_vhcr *vhcr, struct mlx4_cmd_mailbox *inbox,
958 struct mlx4_cmd_mailbox *outbox,
959 struct mlx4_cmd_info *cmd);
960int mlx4_COMM_INT_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_HW2SW_EQ_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_QUERY_EQ_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_SW2HW_CQ_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_HW2SW_CQ_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_QUERY_CQ_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);
990int mlx4_MODIFY_CQ_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);
995int mlx4_SW2HW_SRQ_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);
1000int mlx4_HW2SW_SRQ_wrapper(struct mlx4_dev *dev, int slave,
1001 struct mlx4_vhcr *vhcr,
1002 struct mlx4_cmd_mailbox *inbox,
1003 struct mlx4_cmd_mailbox *outbox,
1004 struct mlx4_cmd_info *cmd);
1005int mlx4_QUERY_SRQ_wrapper(struct mlx4_dev *dev, int slave,
1006 struct mlx4_vhcr *vhcr,
1007 struct mlx4_cmd_mailbox *inbox,
1008 struct mlx4_cmd_mailbox *outbox,
1009 struct mlx4_cmd_info *cmd);
1010int mlx4_ARM_SRQ_wrapper(struct mlx4_dev *dev, int slave,
1011 struct mlx4_vhcr *vhcr,
1012 struct mlx4_cmd_mailbox *inbox,
1013 struct mlx4_cmd_mailbox *outbox,
1014 struct mlx4_cmd_info *cmd);
1015int mlx4_GEN_QP_wrapper(struct mlx4_dev *dev, int slave,
1016 struct mlx4_vhcr *vhcr,
1017 struct mlx4_cmd_mailbox *inbox,
1018 struct mlx4_cmd_mailbox *outbox,
1019 struct mlx4_cmd_info *cmd);
1020int mlx4_RST2INIT_QP_wrapper(struct mlx4_dev *dev, int slave,
1021 struct mlx4_vhcr *vhcr,
1022 struct mlx4_cmd_mailbox *inbox,
1023 struct mlx4_cmd_mailbox *outbox,
1024 struct mlx4_cmd_info *cmd);
54679e14
JM
1025int mlx4_INIT2INIT_QP_wrapper(struct mlx4_dev *dev, int slave,
1026 struct mlx4_vhcr *vhcr,
1027 struct mlx4_cmd_mailbox *inbox,
1028 struct mlx4_cmd_mailbox *outbox,
1029 struct mlx4_cmd_info *cmd);
623ed84b
JM
1030int mlx4_INIT2RTR_QP_wrapper(struct mlx4_dev *dev, int slave,
1031 struct mlx4_vhcr *vhcr,
1032 struct mlx4_cmd_mailbox *inbox,
1033 struct mlx4_cmd_mailbox *outbox,
1034 struct mlx4_cmd_info *cmd);
54679e14
JM
1035int mlx4_RTR2RTS_QP_wrapper(struct mlx4_dev *dev, int slave,
1036 struct mlx4_vhcr *vhcr,
1037 struct mlx4_cmd_mailbox *inbox,
1038 struct mlx4_cmd_mailbox *outbox,
1039 struct mlx4_cmd_info *cmd);
1040int mlx4_RTS2RTS_QP_wrapper(struct mlx4_dev *dev, int slave,
1041 struct mlx4_vhcr *vhcr,
1042 struct mlx4_cmd_mailbox *inbox,
1043 struct mlx4_cmd_mailbox *outbox,
1044 struct mlx4_cmd_info *cmd);
1045int mlx4_SQERR2RTS_QP_wrapper(struct mlx4_dev *dev, int slave,
1046 struct mlx4_vhcr *vhcr,
1047 struct mlx4_cmd_mailbox *inbox,
1048 struct mlx4_cmd_mailbox *outbox,
1049 struct mlx4_cmd_info *cmd);
1050int mlx4_2ERR_QP_wrapper(struct mlx4_dev *dev, int slave,
1051 struct mlx4_vhcr *vhcr,
1052 struct mlx4_cmd_mailbox *inbox,
1053 struct mlx4_cmd_mailbox *outbox,
1054 struct mlx4_cmd_info *cmd);
1055int mlx4_RTS2SQD_QP_wrapper(struct mlx4_dev *dev, int slave,
1056 struct mlx4_vhcr *vhcr,
1057 struct mlx4_cmd_mailbox *inbox,
1058 struct mlx4_cmd_mailbox *outbox,
1059 struct mlx4_cmd_info *cmd);
1060int mlx4_SQD2SQD_QP_wrapper(struct mlx4_dev *dev, int slave,
1061 struct mlx4_vhcr *vhcr,
1062 struct mlx4_cmd_mailbox *inbox,
1063 struct mlx4_cmd_mailbox *outbox,
1064 struct mlx4_cmd_info *cmd);
1065int mlx4_SQD2RTS_QP_wrapper(struct mlx4_dev *dev, int slave,
1066 struct mlx4_vhcr *vhcr,
1067 struct mlx4_cmd_mailbox *inbox,
1068 struct mlx4_cmd_mailbox *outbox,
1069 struct mlx4_cmd_info *cmd);
623ed84b
JM
1070int mlx4_2RST_QP_wrapper(struct mlx4_dev *dev, int slave,
1071 struct mlx4_vhcr *vhcr,
1072 struct mlx4_cmd_mailbox *inbox,
1073 struct mlx4_cmd_mailbox *outbox,
1074 struct mlx4_cmd_info *cmd);
54679e14
JM
1075int mlx4_QUERY_QP_wrapper(struct mlx4_dev *dev, int slave,
1076 struct mlx4_vhcr *vhcr,
1077 struct mlx4_cmd_mailbox *inbox,
1078 struct mlx4_cmd_mailbox *outbox,
1079 struct mlx4_cmd_info *cmd);
623ed84b
JM
1080
1081int mlx4_GEN_EQE(struct mlx4_dev *dev, int slave, struct mlx4_eqe *eqe);
225c7b1f 1082
225c7b1f
RD
1083int mlx4_cmd_init(struct mlx4_dev *dev);
1084void mlx4_cmd_cleanup(struct mlx4_dev *dev);
ab9c17a0
JM
1085int mlx4_multi_func_init(struct mlx4_dev *dev);
1086void mlx4_multi_func_cleanup(struct mlx4_dev *dev);
225c7b1f
RD
1087void mlx4_cmd_event(struct mlx4_dev *dev, u16 token, u8 status, u64 out_param);
1088int mlx4_cmd_use_events(struct mlx4_dev *dev);
1089void mlx4_cmd_use_polling(struct mlx4_dev *dev);
1090
ab9c17a0
JM
1091int mlx4_comm_cmd(struct mlx4_dev *dev, u8 cmd, u16 param,
1092 unsigned long timeout);
1093
225c7b1f
RD
1094void mlx4_cq_completion(struct mlx4_dev *dev, u32 cqn);
1095void mlx4_cq_event(struct mlx4_dev *dev, u32 cqn, int event_type);
1096
1097void mlx4_qp_event(struct mlx4_dev *dev, u32 qpn, int event_type);
1098
1099void mlx4_srq_event(struct mlx4_dev *dev, u32 srqn, int event_type);
1100
1101void mlx4_handle_catas_err(struct mlx4_dev *dev);
1102
ab6dc30d
YP
1103int mlx4_SENSE_PORT(struct mlx4_dev *dev, int port,
1104 enum mlx4_port_type *type);
27bf91d6
YP
1105void mlx4_do_sense_ports(struct mlx4_dev *dev,
1106 enum mlx4_port_type *stype,
1107 enum mlx4_port_type *defaults);
1108void mlx4_start_sense(struct mlx4_dev *dev);
1109void mlx4_stop_sense(struct mlx4_dev *dev);
1110void mlx4_sense_init(struct mlx4_dev *dev);
1111int mlx4_check_port_params(struct mlx4_dev *dev,
1112 enum mlx4_port_type *port_type);
1113int mlx4_change_port_types(struct mlx4_dev *dev,
1114 enum mlx4_port_type *port_types);
1115
2a2336f8
YP
1116void mlx4_init_mac_table(struct mlx4_dev *dev, struct mlx4_mac_table *table);
1117void mlx4_init_vlan_table(struct mlx4_dev *dev, struct mlx4_vlan_table *table);
1118
6634961c 1119int mlx4_SET_PORT(struct mlx4_dev *dev, u8 port, int pkey_tbl_sz);
623ed84b
JM
1120/* resource tracker functions*/
1121int mlx4_get_slave_from_resource_id(struct mlx4_dev *dev,
1122 enum mlx4_resource resource_type,
aa1ec3dd 1123 u64 resource_id, int *slave);
623ed84b
JM
1124void mlx4_delete_all_resources_for_slave(struct mlx4_dev *dev, int slave_id);
1125int mlx4_init_resource_tracker(struct mlx4_dev *dev);
1126
b8924951
JM
1127void mlx4_free_resource_tracker(struct mlx4_dev *dev,
1128 enum mlx4_res_tracker_free_type type);
623ed84b 1129
b91cb3eb
JM
1130int mlx4_QUERY_FW_wrapper(struct mlx4_dev *dev, int slave,
1131 struct mlx4_vhcr *vhcr,
1132 struct mlx4_cmd_mailbox *inbox,
1133 struct mlx4_cmd_mailbox *outbox,
1134 struct mlx4_cmd_info *cmd);
623ed84b
JM
1135int mlx4_SET_PORT_wrapper(struct mlx4_dev *dev, int slave,
1136 struct mlx4_vhcr *vhcr,
1137 struct mlx4_cmd_mailbox *inbox,
1138 struct mlx4_cmd_mailbox *outbox,
1139 struct mlx4_cmd_info *cmd);
1140int mlx4_INIT_PORT_wrapper(struct mlx4_dev *dev, int slave,
1141 struct mlx4_vhcr *vhcr,
1142 struct mlx4_cmd_mailbox *inbox,
1143 struct mlx4_cmd_mailbox *outbox,
1144 struct mlx4_cmd_info *cmd);
1145int mlx4_CLOSE_PORT_wrapper(struct mlx4_dev *dev, int slave,
1146 struct mlx4_vhcr *vhcr,
1147 struct mlx4_cmd_mailbox *inbox,
1148 struct mlx4_cmd_mailbox *outbox,
1149 struct mlx4_cmd_info *cmd);
b91cb3eb
JM
1150int mlx4_QUERY_DEV_CAP_wrapper(struct mlx4_dev *dev, int slave,
1151 struct mlx4_vhcr *vhcr,
1152 struct mlx4_cmd_mailbox *inbox,
1153 struct mlx4_cmd_mailbox *outbox,
1154 struct mlx4_cmd_info *cmd);
623ed84b
JM
1155int mlx4_QUERY_PORT_wrapper(struct mlx4_dev *dev, int slave,
1156 struct mlx4_vhcr *vhcr,
1157 struct mlx4_cmd_mailbox *inbox,
1158 struct mlx4_cmd_mailbox *outbox,
1159 struct mlx4_cmd_info *cmd);
9a5aa622 1160int mlx4_get_port_ib_caps(struct mlx4_dev *dev, u8 port, __be32 *caps);
7ff93f8b 1161
6634961c
JM
1162int mlx4_get_slave_pkey_gid_tbl_len(struct mlx4_dev *dev, u8 port,
1163 int *gid_tbl_len, int *pkey_tbl_len);
623ed84b
JM
1164
1165int mlx4_QP_ATTACH_wrapper(struct mlx4_dev *dev, int slave,
1166 struct mlx4_vhcr *vhcr,
1167 struct mlx4_cmd_mailbox *inbox,
1168 struct mlx4_cmd_mailbox *outbox,
1169 struct mlx4_cmd_info *cmd);
1170
1171int mlx4_PROMISC_wrapper(struct mlx4_dev *dev, int slave,
1172 struct mlx4_vhcr *vhcr,
1173 struct mlx4_cmd_mailbox *inbox,
1174 struct mlx4_cmd_mailbox *outbox,
1175 struct mlx4_cmd_info *cmd);
b12d93d6
YP
1176int mlx4_qp_detach_common(struct mlx4_dev *dev, struct mlx4_qp *qp, u8 gid[16],
1177 enum mlx4_protocol prot, enum mlx4_steer_type steer);
1178int mlx4_qp_attach_common(struct mlx4_dev *dev, struct mlx4_qp *qp, u8 gid[16],
1179 int block_mcast_loopback, enum mlx4_protocol prot,
1180 enum mlx4_steer_type steer);
623ed84b
JM
1181int mlx4_SET_MCAST_FLTR_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);
1186int mlx4_SET_VLAN_FLTR_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_common_set_vlan_fltr(struct mlx4_dev *dev, int function,
1192 int port, void *buf);
1193int mlx4_common_dump_eth_stats(struct mlx4_dev *dev, int slave, u32 in_mod,
1194 struct mlx4_cmd_mailbox *outbox);
1195int mlx4_DUMP_ETH_STATS_wrapper(struct mlx4_dev *dev, int slave,
1196 struct mlx4_vhcr *vhcr,
1197 struct mlx4_cmd_mailbox *inbox,
1198 struct mlx4_cmd_mailbox *outbox,
1199 struct mlx4_cmd_info *cmd);
1200int mlx4_PKEY_TABLE_wrapper(struct mlx4_dev *dev, int slave,
1201 struct mlx4_vhcr *vhcr,
1202 struct mlx4_cmd_mailbox *inbox,
1203 struct mlx4_cmd_mailbox *outbox,
1204 struct mlx4_cmd_info *cmd);
1205int mlx4_QUERY_IF_STAT_wrapper(struct mlx4_dev *dev, int slave,
1206 struct mlx4_vhcr *vhcr,
1207 struct mlx4_cmd_mailbox *inbox,
1208 struct mlx4_cmd_mailbox *outbox,
1209 struct mlx4_cmd_info *cmd);
8fcfb4db
HHZ
1210int mlx4_QP_FLOW_STEERING_ATTACH_wrapper(struct mlx4_dev *dev, int slave,
1211 struct mlx4_vhcr *vhcr,
1212 struct mlx4_cmd_mailbox *inbox,
1213 struct mlx4_cmd_mailbox *outbox,
1214 struct mlx4_cmd_info *cmd);
1215int mlx4_QP_FLOW_STEERING_DETACH_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);
f5311ac1 1220
0ec2c0f8
EE
1221int mlx4_get_mgm_entry_size(struct mlx4_dev *dev);
1222int mlx4_get_qp_per_mgm(struct mlx4_dev *dev);
1223
5cc914f1
MA
1224static inline void set_param_l(u64 *arg, u32 val)
1225{
1226 *((u32 *)arg) = val;
1227}
1228
1229static inline void set_param_h(u64 *arg, u32 val)
1230{
1231 *arg = (*arg & 0xffffffff) | ((u64) val << 32);
1232}
1233
1234static inline u32 get_param_l(u64 *arg)
1235{
1236 return (u32) (*arg & 0xffffffff);
1237}
1238
1239static inline u32 get_param_h(u64 *arg)
1240{
1241 return (u32)(*arg >> 32);
1242}
1243
c82e9aa0
EC
1244static inline spinlock_t *mlx4_tlock(struct mlx4_dev *dev)
1245{
1246 return &mlx4_priv(dev)->mfunc.master.res_tracker.lock;
1247}
1248
f5311ac1
JM
1249#define NOT_MASKED_PD_BITS 17
1250
225c7b1f 1251#endif /* MLX4_H */