Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/net
[sfrench/cifs-2.6.git] / drivers / net / ethernet / mellanox / mlx4 / mlx4.h
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.
5  * Copyright (c) 2005, 2006, 2007, 2008 Mellanox Technologies. All rights reserved.
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
40 #include <linux/mutex.h>
41 #include <linux/radix-tree.h>
42 #include <linux/rbtree.h>
43 #include <linux/timer.h>
44 #include <linux/semaphore.h>
45 #include <linux/workqueue.h>
46
47 #include <linux/mlx4/device.h>
48 #include <linux/mlx4/driver.h>
49 #include <linux/mlx4/doorbell.h>
50 #include <linux/mlx4/cmd.h>
51
52 #define DRV_NAME        "mlx4_core"
53 #define PFX             DRV_NAME ": "
54 #define DRV_VERSION     "2.2-1"
55 #define DRV_RELDATE     "Feb, 2014"
56
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
63 #define INIT_HCA_TPT_MW_ENABLE          (1 << 7)
64
65 #define MLX4_NUM_UP             8
66 #define MLX4_NUM_TC             8
67 #define MLX4_RATELIMIT_UNITS 3 /* 100 Mbps */
68 #define MLX4_RATELIMIT_DEFAULT 0xffff
69
70 struct mlx4_set_port_prio2tc_context {
71         u8 prio2tc[4];
72 };
73
74 struct mlx4_port_scheduler_tc_cfg_be {
75         __be16 pg;
76         __be16 bw_precentage;
77         __be16 max_bw_units; /* 3-100Mbps, 4-1Gbps, other values - reserved */
78         __be16 max_bw_value;
79 };
80
81 struct mlx4_set_port_scheduler_context {
82         struct mlx4_port_scheduler_tc_cfg_be tc[MLX4_NUM_TC];
83 };
84
85 enum {
86         MLX4_HCR_BASE           = 0x80680,
87         MLX4_HCR_SIZE           = 0x0001c,
88         MLX4_CLR_INT_SIZE       = 0x00008,
89         MLX4_SLAVE_COMM_BASE    = 0x0,
90         MLX4_COMM_PAGESIZE      = 0x1000,
91         MLX4_CLOCK_SIZE         = 0x00008
92 };
93
94 enum {
95         MLX4_DEFAULT_MGM_LOG_ENTRY_SIZE = 10,
96         MLX4_MIN_MGM_LOG_ENTRY_SIZE = 7,
97         MLX4_MAX_MGM_LOG_ENTRY_SIZE = 12,
98         MLX4_MAX_QP_PER_MGM = 4 * ((1 << MLX4_MAX_MGM_LOG_ENTRY_SIZE) / 16 - 2),
99         MLX4_MTT_ENTRY_PER_SEG  = 8,
100 };
101
102 enum {
103         MLX4_NUM_PDS            = 1 << 15
104 };
105
106 enum {
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
114 enum {
115         MLX4_CMPT_SHIFT         = 24,
116         MLX4_NUM_CMPTS          = MLX4_CMPT_NUM_TYPE << MLX4_CMPT_SHIFT
117 };
118
119 enum mlx4_mpt_state {
120         MLX4_MPT_DISABLED = 0,
121         MLX4_MPT_EN_HW,
122         MLX4_MPT_EN_SW
123 };
124
125 #define MLX4_COMM_TIME          10000
126 enum {
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)
141 enum 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,
152         RES_FS_RULE,
153         MLX4_NUM_OF_RESOURCE_TYPE
154 };
155
156 enum mlx4_alloc_mode {
157         RES_OP_RESERVE,
158         RES_OP_RESERVE_AND_MAP,
159         RES_OP_MAP_ICM,
160 };
161
162 enum mlx4_res_tracker_free_type {
163         RES_TR_FREE_ALL,
164         RES_TR_FREE_SLAVES_ONLY,
165         RES_TR_FREE_STRUCTS_ONLY,
166 };
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  */
177 struct 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
188 struct 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
199 struct 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
213 #ifdef CONFIG_MLX4_DEBUG
214 extern int mlx4_debug_level;
215 #else /* CONFIG_MLX4_DEBUG */
216 #define mlx4_debug_level        (0)
217 #endif /* CONFIG_MLX4_DEBUG */
218
219 #define mlx4_dbg(mdev, format, ...)                                     \
220 do {                                                                    \
221         if (mlx4_debug_level)                                           \
222                 dev_printk(KERN_DEBUG, &(mdev)->pdev->dev, format,      \
223                            ##__VA_ARGS__);                              \
224 } while (0)
225
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__)
232
233 extern int mlx4_log_num_mgm_entry_size;
234 extern int log_mtts_per_seg;
235
236 #define MLX4_MAX_NUM_SLAVES     (MLX4_MAX_NUM_PF + MLX4_MAX_NUM_VF)
237 #define ALL_SLAVES 0xff
238
239 struct mlx4_bitmap {
240         u32                     last;
241         u32                     top;
242         u32                     max;
243         u32                     reserved_top;
244         u32                     mask;
245         u32                     avail;
246         spinlock_t              lock;
247         unsigned long          *table;
248 };
249
250 struct mlx4_buddy {
251         unsigned long         **bits;
252         unsigned int           *num_free;
253         u32                     max_order;
254         spinlock_t              lock;
255 };
256
257 struct mlx4_icm;
258
259 struct mlx4_icm_table {
260         u64                     virt;
261         int                     num_icm;
262         u32                     num_obj;
263         int                     obj_size;
264         int                     lowmem;
265         int                     coherent;
266         struct mutex            mutex;
267         struct mlx4_icm       **icm;
268 };
269
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
277 #define MLX4_MPT_PD_FLAG_FAST_REG   (1 << 27)
278 #define MLX4_MPT_PD_FLAG_RAE        (1 << 28)
279 #define MLX4_MPT_PD_FLAG_EN_INV     (3 << 24)
280
281 #define MLX4_MPT_QP_FLAG_BOUND_QP   (1 << 7)
282
283 #define MLX4_MPT_STATUS_SW              0xF0
284 #define MLX4_MPT_STATUS_HW              0x00
285
286 /*
287  * Must be packed because mtt_seg is 64 bits but only aligned to 32 bits.
288  */
289 struct mlx4_mpt_entry {
290         __be32 flags;
291         __be32 qpn;
292         __be32 key;
293         __be32 pd_flags;
294         __be64 start;
295         __be64 length;
296         __be32 lkey;
297         __be32 win_cnt;
298         u8      reserved1[3];
299         u8      mtt_rep;
300         __be64 mtt_addr;
301         __be32 mtt_sz;
302         __be32 entity_size;
303         __be32 first_byte_offset;
304 } __packed;
305
306 /*
307  * Must be packed because start is 64 bits but only aligned to 32 bits.
308  */
309 struct mlx4_eq_context {
310         __be32                  flags;
311         u16                     reserved1[3];
312         __be16                  page_offset;
313         u8                      log_eq_size;
314         u8                      reserved2[4];
315         u8                      eq_period;
316         u8                      reserved3;
317         u8                      eq_max_count;
318         u8                      reserved4[3];
319         u8                      intr;
320         u8                      log_page_size;
321         u8                      reserved5[2];
322         u8                      mtt_base_addr_h;
323         __be32                  mtt_base_addr_l;
324         u32                     reserved6[2];
325         __be32                  consumer_index;
326         __be32                  producer_index;
327         u32                     reserved7[4];
328 };
329
330 struct mlx4_cq_context {
331         __be32                  flags;
332         u16                     reserved1[3];
333         __be16                  page_offset;
334         __be32                  logsize_usrpage;
335         __be16                  cq_period;
336         __be16                  cq_max_count;
337         u8                      reserved2[3];
338         u8                      comp_eqn;
339         u8                      log_page_size;
340         u8                      reserved3[2];
341         u8                      mtt_base_addr_h;
342         __be32                  mtt_base_addr_l;
343         __be32                  last_notified_index;
344         __be32                  solicit_producer_index;
345         __be32                  consumer_index;
346         __be32                  producer_index;
347         u32                     reserved4[2];
348         __be64                  db_rec_addr;
349 };
350
351 struct mlx4_srq_context {
352         __be32                  state_logsize_srqn;
353         u8                      logstride;
354         u8                      reserved1;
355         __be16                  xrcd;
356         __be32                  pg_offset_cqn;
357         u32                     reserved2;
358         u8                      log_page_size;
359         u8                      reserved3[2];
360         u8                      mtt_base_addr_h;
361         __be32                  mtt_base_addr_l;
362         __be32                  pd;
363         __be16                  limit_watermark;
364         __be16                  wqe_cnt;
365         u16                     reserved4;
366         __be16                  wqe_counter;
367         u32                     reserved5;
368         __be64                  db_rec_addr;
369 };
370
371 struct mlx4_eq {
372         struct mlx4_dev        *dev;
373         void __iomem           *doorbell;
374         int                     eqn;
375         u32                     cons_index;
376         u16                     irq;
377         u16                     have_irq;
378         int                     nent;
379         struct mlx4_buf_list   *page_list;
380         struct mlx4_mtt         mtt;
381 };
382
383 struct mlx4_slave_eqe {
384         u8 type;
385         u8 port;
386         u32 param;
387 };
388
389 struct mlx4_slave_event_eq_info {
390         int eqn;
391         u16 token;
392 };
393
394 struct mlx4_profile {
395         int                     num_qp;
396         int                     rdmarc_per_qp;
397         int                     num_srq;
398         int                     num_cq;
399         int                     num_mcg;
400         int                     num_mpt;
401         unsigned                num_mtt;
402 };
403
404 struct mlx4_fw {
405         u64                     clr_int_base;
406         u64                     catas_offset;
407         u64                     comm_base;
408         u64                     clock_offset;
409         struct mlx4_icm        *fw_icm;
410         struct mlx4_icm        *aux_icm;
411         u32                     catas_size;
412         u16                     fw_pages;
413         u8                      clr_int_bar;
414         u8                      catas_bar;
415         u8                      comm_bar;
416         u8                      clock_bar;
417 };
418
419 struct mlx4_comm {
420         u32                     slave_write;
421         u32                     slave_read;
422 };
423
424 enum {
425         MLX4_MCAST_CONFIG       = 0,
426         MLX4_MCAST_DISABLE      = 1,
427         MLX4_MCAST_ENABLE       = 2,
428 };
429
430 #define VLAN_FLTR_SIZE  128
431
432 struct mlx4_vlan_fltr {
433         __be32 entry[VLAN_FLTR_SIZE];
434 };
435
436 struct mlx4_mcast_entry {
437         struct list_head list;
438         u64 addr;
439 };
440
441 struct mlx4_promisc_qp {
442         struct list_head list;
443         u32 qpn;
444 };
445
446 struct mlx4_steer_index {
447         struct list_head list;
448         unsigned int index;
449         struct list_head duplicates;
450 };
451
452 #define MLX4_EVENT_TYPES_NUM 64
453
454 struct mlx4_slave_state {
455         u8 comm_toggle;
456         u8 last_cmd;
457         u8 init_port_mask;
458         bool active;
459         bool old_vlan_api;
460         u8 function;
461         dma_addr_t vhcr_dma;
462         u16 mtu[MLX4_MAX_PORTS + 1];
463         __be32 ib_cap_mask[MLX4_MAX_PORTS + 1];
464         struct mlx4_slave_eqe eq[MLX4_MFUNC_MAX_EQES];
465         struct list_head mcast_filters[MLX4_MAX_PORTS + 1];
466         struct mlx4_vlan_fltr *vlan_filter[MLX4_MAX_PORTS + 1];
467         /* event type to eq number lookup */
468         struct mlx4_slave_event_eq_info event_eq[MLX4_EVENT_TYPES_NUM];
469         u16 eq_pi;
470         u16 eq_ci;
471         spinlock_t lock;
472         /*initialized via the kzalloc*/
473         u8 is_slave_going_down;
474         u32 cookie;
475         enum slave_port_state port_state[MLX4_MAX_PORTS + 1];
476 };
477
478 #define MLX4_VGT 4095
479 #define NO_INDX  (-1)
480
481 struct mlx4_vport_state {
482         u64 mac;
483         u16 default_vlan;
484         u8  default_qos;
485         u32 tx_rate;
486         bool spoofchk;
487         u32 link_state;
488 };
489
490 struct mlx4_vf_admin_state {
491         struct mlx4_vport_state vport[MLX4_MAX_PORTS + 1];
492 };
493
494 struct mlx4_vport_oper_state {
495         struct mlx4_vport_state state;
496         int mac_idx;
497         int vlan_idx;
498 };
499 struct mlx4_vf_oper_state {
500         struct mlx4_vport_oper_state vport[MLX4_MAX_PORTS + 1];
501 };
502
503 struct slave_list {
504         struct mutex mutex;
505         struct list_head res_list[MLX4_NUM_OF_RESOURCE_TYPE];
506 };
507
508 struct resource_allocator {
509         spinlock_t alloc_lock; /* protect quotas */
510         union {
511                 int res_reserved;
512                 int res_port_rsvd[MLX4_MAX_PORTS];
513         };
514         union {
515                 int res_free;
516                 int res_port_free[MLX4_MAX_PORTS];
517         };
518         int *quota;
519         int *allocated;
520         int *guaranteed;
521 };
522
523 struct mlx4_resource_tracker {
524         spinlock_t lock;
525         /* tree for each resources */
526         struct rb_root res_tree[MLX4_NUM_OF_RESOURCE_TYPE];
527         /* num_of_slave's lists, one per slave */
528         struct slave_list *slave_list;
529         struct resource_allocator res_alloc[MLX4_NUM_OF_RESOURCE_TYPE];
530 };
531
532 #define SLAVE_EVENT_EQ_SIZE     128
533 struct mlx4_slave_event_eq {
534         u32 eqn;
535         u32 cons;
536         u32 prod;
537         spinlock_t event_lock;
538         struct mlx4_eqe event_eqe[SLAVE_EVENT_EQ_SIZE];
539 };
540
541 struct mlx4_master_qp0_state {
542         int proxy_qp0_active;
543         int qp0_active;
544         int port_active;
545 };
546
547 struct mlx4_mfunc_master_ctx {
548         struct mlx4_slave_state *slave_state;
549         struct mlx4_vf_admin_state *vf_admin;
550         struct mlx4_vf_oper_state *vf_oper;
551         struct mlx4_master_qp0_state qp0_state[MLX4_MAX_PORTS + 1];
552         int                     init_port_ref[MLX4_MAX_PORTS + 1];
553         u16                     max_mtu[MLX4_MAX_PORTS + 1];
554         int                     disable_mcast_ref[MLX4_MAX_PORTS + 1];
555         struct mlx4_resource_tracker res_tracker;
556         struct workqueue_struct *comm_wq;
557         struct work_struct      comm_work;
558         struct work_struct      slave_event_work;
559         struct work_struct      slave_flr_event_work;
560         spinlock_t              slave_state_lock;
561         __be32                  comm_arm_bit_vector[4];
562         struct mlx4_eqe         cmd_eqe;
563         struct mlx4_slave_event_eq slave_eq;
564         struct mutex            gen_eqe_mutex[MLX4_MFUNC_MAX];
565 };
566
567 struct mlx4_mfunc {
568         struct mlx4_comm __iomem       *comm;
569         struct mlx4_vhcr_cmd           *vhcr;
570         dma_addr_t                      vhcr_dma;
571
572         struct mlx4_mfunc_master_ctx    master;
573 };
574
575 #define MGM_QPN_MASK       0x00FFFFFF
576 #define MGM_BLCK_LB_BIT    30
577
578 struct mlx4_mgm {
579         __be32                  next_gid_index;
580         __be32                  members_count;
581         u32                     reserved[2];
582         u8                      gid[16];
583         __be32                  qp[MLX4_MAX_QP_PER_MGM];
584 };
585
586 struct mlx4_cmd {
587         struct pci_pool        *pool;
588         void __iomem           *hcr;
589         struct mutex            hcr_mutex;
590         struct mutex            slave_cmd_mutex;
591         struct semaphore        poll_sem;
592         struct semaphore        event_sem;
593         int                     max_cmds;
594         spinlock_t              context_lock;
595         int                     free_head;
596         struct mlx4_cmd_context *context;
597         u16                     token_mask;
598         u8                      use_events;
599         u8                      toggle;
600         u8                      comm_toggle;
601 };
602
603 enum {
604         MLX4_VF_IMMED_VLAN_FLAG_VLAN = 1 << 0,
605         MLX4_VF_IMMED_VLAN_FLAG_QOS = 1 << 1,
606         MLX4_VF_IMMED_VLAN_FLAG_LINK_DISABLE = 1 << 2,
607 };
608 struct mlx4_vf_immed_vlan_work {
609         struct work_struct      work;
610         struct mlx4_priv        *priv;
611         int                     flags;
612         int                     slave;
613         int                     vlan_ix;
614         int                     orig_vlan_ix;
615         u8                      port;
616         u8                      qos;
617         u16                     vlan_id;
618         u16                     orig_vlan_id;
619 };
620
621
622 struct mlx4_uar_table {
623         struct mlx4_bitmap      bitmap;
624 };
625
626 struct mlx4_mr_table {
627         struct mlx4_bitmap      mpt_bitmap;
628         struct mlx4_buddy       mtt_buddy;
629         u64                     mtt_base;
630         u64                     mpt_base;
631         struct mlx4_icm_table   mtt_table;
632         struct mlx4_icm_table   dmpt_table;
633 };
634
635 struct mlx4_cq_table {
636         struct mlx4_bitmap      bitmap;
637         spinlock_t              lock;
638         struct radix_tree_root  tree;
639         struct mlx4_icm_table   table;
640         struct mlx4_icm_table   cmpt_table;
641 };
642
643 struct mlx4_eq_table {
644         struct mlx4_bitmap      bitmap;
645         char                   *irq_names;
646         void __iomem           *clr_int;
647         void __iomem          **uar_map;
648         u32                     clr_mask;
649         struct mlx4_eq         *eq;
650         struct mlx4_icm_table   table;
651         struct mlx4_icm_table   cmpt_table;
652         int                     have_irq;
653         u8                      inta_pin;
654 };
655
656 struct mlx4_srq_table {
657         struct mlx4_bitmap      bitmap;
658         spinlock_t              lock;
659         struct radix_tree_root  tree;
660         struct mlx4_icm_table   table;
661         struct mlx4_icm_table   cmpt_table;
662 };
663
664 struct mlx4_qp_table {
665         struct mlx4_bitmap      bitmap;
666         u32                     rdmarc_base;
667         int                     rdmarc_shift;
668         spinlock_t              lock;
669         struct mlx4_icm_table   qp_table;
670         struct mlx4_icm_table   auxc_table;
671         struct mlx4_icm_table   altc_table;
672         struct mlx4_icm_table   rdmarc_table;
673         struct mlx4_icm_table   cmpt_table;
674 };
675
676 struct mlx4_mcg_table {
677         struct mutex            mutex;
678         struct mlx4_bitmap      bitmap;
679         struct mlx4_icm_table   table;
680 };
681
682 struct mlx4_catas_err {
683         u32 __iomem            *map;
684         struct timer_list       timer;
685         struct list_head        list;
686 };
687
688 #define MLX4_MAX_MAC_NUM        128
689 #define MLX4_MAC_TABLE_SIZE     (MLX4_MAX_MAC_NUM << 3)
690
691 struct mlx4_mac_table {
692         __be64                  entries[MLX4_MAX_MAC_NUM];
693         int                     refs[MLX4_MAX_MAC_NUM];
694         struct mutex            mutex;
695         int                     total;
696         int                     max;
697 };
698
699 #define MLX4_ROCE_GID_ENTRY_SIZE        16
700
701 struct mlx4_roce_gid_entry {
702         u8 raw[MLX4_ROCE_GID_ENTRY_SIZE];
703 };
704
705 struct mlx4_roce_gid_table {
706         struct mlx4_roce_gid_entry      roce_gids[MLX4_ROCE_MAX_GIDS];
707         struct mutex                    mutex;
708 };
709
710 #define MLX4_MAX_VLAN_NUM       128
711 #define MLX4_VLAN_TABLE_SIZE    (MLX4_MAX_VLAN_NUM << 2)
712
713 struct mlx4_vlan_table {
714         __be32                  entries[MLX4_MAX_VLAN_NUM];
715         int                     refs[MLX4_MAX_VLAN_NUM];
716         struct mutex            mutex;
717         int                     total;
718         int                     max;
719 };
720
721 #define SET_PORT_GEN_ALL_VALID          0x7
722 #define SET_PORT_PROMISC_SHIFT          31
723 #define SET_PORT_MC_PROMISC_SHIFT       30
724
725 enum {
726         MCAST_DIRECT_ONLY       = 0,
727         MCAST_DIRECT            = 1,
728         MCAST_DEFAULT           = 2
729 };
730
731
732 struct mlx4_set_port_general_context {
733         u8 reserved[3];
734         u8 flags;
735         u16 reserved2;
736         __be16 mtu;
737         u8 pptx;
738         u8 pfctx;
739         u16 reserved3;
740         u8 pprx;
741         u8 pfcrx;
742         u16 reserved4;
743 };
744
745 struct mlx4_set_port_rqp_calc_context {
746         __be32 base_qpn;
747         u8 rererved;
748         u8 n_mac;
749         u8 n_vlan;
750         u8 n_prio;
751         u8 reserved2[3];
752         u8 mac_miss;
753         u8 intra_no_vlan;
754         u8 no_vlan;
755         u8 intra_vlan_miss;
756         u8 vlan_miss;
757         u8 reserved3[3];
758         u8 no_vlan_prio;
759         __be32 promisc;
760         __be32 mcast;
761 };
762
763 struct mlx4_port_info {
764         struct mlx4_dev        *dev;
765         int                     port;
766         char                    dev_name[16];
767         struct device_attribute port_attr;
768         enum mlx4_port_type     tmp_type;
769         char                    dev_mtu_name[16];
770         struct device_attribute port_mtu_attr;
771         struct mlx4_mac_table   mac_table;
772         struct mlx4_vlan_table  vlan_table;
773         struct mlx4_roce_gid_table gid_table;
774         int                     base_qpn;
775 };
776
777 struct mlx4_sense {
778         struct mlx4_dev         *dev;
779         u8                      do_sense_port[MLX4_MAX_PORTS + 1];
780         u8                      sense_allowed[MLX4_MAX_PORTS + 1];
781         struct delayed_work     sense_poll;
782 };
783
784 struct mlx4_msix_ctl {
785         u64             pool_bm;
786         struct mutex    pool_lock;
787 };
788
789 struct mlx4_steer {
790         struct list_head promisc_qps[MLX4_NUM_STEERS];
791         struct list_head steer_entries[MLX4_NUM_STEERS];
792 };
793
794 enum {
795         MLX4_PCI_DEV_IS_VF              = 1 << 0,
796         MLX4_PCI_DEV_FORCE_SENSE_PORT   = 1 << 1,
797 };
798
799 enum {
800         MLX4_NO_RR      = 0,
801         MLX4_USE_RR     = 1,
802 };
803
804 struct mlx4_priv {
805         struct mlx4_dev         dev;
806
807         struct list_head        dev_list;
808         struct list_head        ctx_list;
809         spinlock_t              ctx_lock;
810
811         int                     pci_dev_data;
812         int                     removed;
813
814         struct list_head        pgdir_list;
815         struct mutex            pgdir_mutex;
816
817         struct mlx4_fw          fw;
818         struct mlx4_cmd         cmd;
819         struct mlx4_mfunc       mfunc;
820
821         struct mlx4_bitmap      pd_bitmap;
822         struct mlx4_bitmap      xrcd_bitmap;
823         struct mlx4_uar_table   uar_table;
824         struct mlx4_mr_table    mr_table;
825         struct mlx4_cq_table    cq_table;
826         struct mlx4_eq_table    eq_table;
827         struct mlx4_srq_table   srq_table;
828         struct mlx4_qp_table    qp_table;
829         struct mlx4_mcg_table   mcg_table;
830         struct mlx4_bitmap      counters_bitmap;
831
832         struct mlx4_catas_err   catas_err;
833
834         void __iomem           *clr_base;
835
836         struct mlx4_uar         driver_uar;
837         void __iomem           *kar;
838         struct mlx4_port_info   port[MLX4_MAX_PORTS + 1];
839         struct mlx4_sense       sense;
840         struct mutex            port_mutex;
841         struct mlx4_msix_ctl    msix_ctl;
842         struct mlx4_steer       *steer;
843         struct list_head        bf_list;
844         struct mutex            bf_mutex;
845         struct io_mapping       *bf_mapping;
846         void __iomem            *clock_mapping;
847         int                     reserved_mtts;
848         int                     fs_hash_mode;
849         u8 virt2phys_pkey[MLX4_MFUNC_MAX][MLX4_MAX_PORTS][MLX4_MAX_PORT_PKEYS];
850         __be64                  slave_node_guids[MLX4_MFUNC_MAX];
851
852         atomic_t                opreq_count;
853         struct work_struct      opreq_task;
854 };
855
856 static inline struct mlx4_priv *mlx4_priv(struct mlx4_dev *dev)
857 {
858         return container_of(dev, struct mlx4_priv, dev);
859 }
860
861 #define MLX4_SENSE_RANGE        (HZ * 3)
862
863 extern struct workqueue_struct *mlx4_wq;
864
865 u32 mlx4_bitmap_alloc(struct mlx4_bitmap *bitmap);
866 void mlx4_bitmap_free(struct mlx4_bitmap *bitmap, u32 obj, int use_rr);
867 u32 mlx4_bitmap_alloc_range(struct mlx4_bitmap *bitmap, int cnt, int align);
868 void mlx4_bitmap_free_range(struct mlx4_bitmap *bitmap, u32 obj, int cnt,
869                             int use_rr);
870 u32 mlx4_bitmap_avail(struct mlx4_bitmap *bitmap);
871 int mlx4_bitmap_init(struct mlx4_bitmap *bitmap, u32 num, u32 mask,
872                      u32 reserved_bot, u32 resetrved_top);
873 void mlx4_bitmap_cleanup(struct mlx4_bitmap *bitmap);
874
875 int mlx4_reset(struct mlx4_dev *dev);
876
877 int mlx4_alloc_eq_table(struct mlx4_dev *dev);
878 void mlx4_free_eq_table(struct mlx4_dev *dev);
879
880 int mlx4_init_pd_table(struct mlx4_dev *dev);
881 int mlx4_init_xrcd_table(struct mlx4_dev *dev);
882 int mlx4_init_uar_table(struct mlx4_dev *dev);
883 int mlx4_init_mr_table(struct mlx4_dev *dev);
884 int mlx4_init_eq_table(struct mlx4_dev *dev);
885 int mlx4_init_cq_table(struct mlx4_dev *dev);
886 int mlx4_init_qp_table(struct mlx4_dev *dev);
887 int mlx4_init_srq_table(struct mlx4_dev *dev);
888 int mlx4_init_mcg_table(struct mlx4_dev *dev);
889
890 void mlx4_cleanup_pd_table(struct mlx4_dev *dev);
891 void mlx4_cleanup_xrcd_table(struct mlx4_dev *dev);
892 void mlx4_cleanup_uar_table(struct mlx4_dev *dev);
893 void mlx4_cleanup_mr_table(struct mlx4_dev *dev);
894 void mlx4_cleanup_eq_table(struct mlx4_dev *dev);
895 void mlx4_cleanup_cq_table(struct mlx4_dev *dev);
896 void mlx4_cleanup_qp_table(struct mlx4_dev *dev);
897 void mlx4_cleanup_srq_table(struct mlx4_dev *dev);
898 void mlx4_cleanup_mcg_table(struct mlx4_dev *dev);
899 int __mlx4_qp_alloc_icm(struct mlx4_dev *dev, int qpn);
900 void __mlx4_qp_free_icm(struct mlx4_dev *dev, int qpn);
901 int __mlx4_cq_alloc_icm(struct mlx4_dev *dev, int *cqn);
902 void __mlx4_cq_free_icm(struct mlx4_dev *dev, int cqn);
903 int __mlx4_srq_alloc_icm(struct mlx4_dev *dev, int *srqn);
904 void __mlx4_srq_free_icm(struct mlx4_dev *dev, int srqn);
905 int __mlx4_mpt_reserve(struct mlx4_dev *dev);
906 void __mlx4_mpt_release(struct mlx4_dev *dev, u32 index);
907 int __mlx4_mpt_alloc_icm(struct mlx4_dev *dev, u32 index);
908 void __mlx4_mpt_free_icm(struct mlx4_dev *dev, u32 index);
909 u32 __mlx4_alloc_mtt_range(struct mlx4_dev *dev, int order);
910 void __mlx4_free_mtt_range(struct mlx4_dev *dev, u32 first_seg, int order);
911
912 int mlx4_WRITE_MTT_wrapper(struct mlx4_dev *dev, int slave,
913                            struct mlx4_vhcr *vhcr,
914                            struct mlx4_cmd_mailbox *inbox,
915                            struct mlx4_cmd_mailbox *outbox,
916                            struct mlx4_cmd_info *cmd);
917 int mlx4_SYNC_TPT_wrapper(struct mlx4_dev *dev, int slave,
918                            struct mlx4_vhcr *vhcr,
919                            struct mlx4_cmd_mailbox *inbox,
920                            struct mlx4_cmd_mailbox *outbox,
921                            struct mlx4_cmd_info *cmd);
922 int mlx4_SW2HW_MPT_wrapper(struct mlx4_dev *dev, int slave,
923                            struct mlx4_vhcr *vhcr,
924                            struct mlx4_cmd_mailbox *inbox,
925                            struct mlx4_cmd_mailbox *outbox,
926                            struct mlx4_cmd_info *cmd);
927 int mlx4_HW2SW_MPT_wrapper(struct mlx4_dev *dev, int slave,
928                            struct mlx4_vhcr *vhcr,
929                            struct mlx4_cmd_mailbox *inbox,
930                            struct mlx4_cmd_mailbox *outbox,
931                            struct mlx4_cmd_info *cmd);
932 int mlx4_QUERY_MPT_wrapper(struct mlx4_dev *dev, int slave,
933                            struct mlx4_vhcr *vhcr,
934                            struct mlx4_cmd_mailbox *inbox,
935                            struct mlx4_cmd_mailbox *outbox,
936                            struct mlx4_cmd_info *cmd);
937 int mlx4_SW2HW_EQ_wrapper(struct mlx4_dev *dev, int slave,
938                           struct mlx4_vhcr *vhcr,
939                           struct mlx4_cmd_mailbox *inbox,
940                           struct mlx4_cmd_mailbox *outbox,
941                           struct mlx4_cmd_info *cmd);
942 int mlx4_DMA_wrapper(struct mlx4_dev *dev, int slave,
943                      struct mlx4_vhcr *vhcr,
944                      struct mlx4_cmd_mailbox *inbox,
945                      struct mlx4_cmd_mailbox *outbox,
946                      struct mlx4_cmd_info *cmd);
947 int __mlx4_qp_reserve_range(struct mlx4_dev *dev, int cnt, int align,
948                             int *base);
949 void __mlx4_qp_release_range(struct mlx4_dev *dev, int base_qpn, int cnt);
950 int __mlx4_register_mac(struct mlx4_dev *dev, u8 port, u64 mac);
951 void __mlx4_unregister_mac(struct mlx4_dev *dev, u8 port, u64 mac);
952 int __mlx4_write_mtt(struct mlx4_dev *dev, struct mlx4_mtt *mtt,
953                      int start_index, int npages, u64 *page_list);
954 int __mlx4_counter_alloc(struct mlx4_dev *dev, u32 *idx);
955 void __mlx4_counter_free(struct mlx4_dev *dev, u32 idx);
956 int __mlx4_xrcd_alloc(struct mlx4_dev *dev, u32 *xrcdn);
957 void __mlx4_xrcd_free(struct mlx4_dev *dev, u32 xrcdn);
958
959 void mlx4_start_catas_poll(struct mlx4_dev *dev);
960 void mlx4_stop_catas_poll(struct mlx4_dev *dev);
961 void mlx4_catas_init(void);
962 int mlx4_restart_one(struct pci_dev *pdev);
963 int mlx4_register_device(struct mlx4_dev *dev);
964 void mlx4_unregister_device(struct mlx4_dev *dev);
965 void mlx4_dispatch_event(struct mlx4_dev *dev, enum mlx4_dev_event type,
966                          unsigned long param);
967
968 struct mlx4_dev_cap;
969 struct mlx4_init_hca_param;
970
971 u64 mlx4_make_profile(struct mlx4_dev *dev,
972                       struct mlx4_profile *request,
973                       struct mlx4_dev_cap *dev_cap,
974                       struct mlx4_init_hca_param *init_hca);
975 void mlx4_master_comm_channel(struct work_struct *work);
976 void mlx4_gen_slave_eqe(struct work_struct *work);
977 void mlx4_master_handle_slave_flr(struct work_struct *work);
978
979 int mlx4_ALLOC_RES_wrapper(struct mlx4_dev *dev, int slave,
980                            struct mlx4_vhcr *vhcr,
981                            struct mlx4_cmd_mailbox *inbox,
982                            struct mlx4_cmd_mailbox *outbox,
983                            struct mlx4_cmd_info *cmd);
984 int mlx4_FREE_RES_wrapper(struct mlx4_dev *dev, int slave,
985                           struct mlx4_vhcr *vhcr,
986                           struct mlx4_cmd_mailbox *inbox,
987                           struct mlx4_cmd_mailbox *outbox,
988                           struct mlx4_cmd_info *cmd);
989 int mlx4_MAP_EQ_wrapper(struct mlx4_dev *dev, int slave,
990                         struct mlx4_vhcr *vhcr, struct mlx4_cmd_mailbox *inbox,
991                         struct mlx4_cmd_mailbox *outbox,
992                         struct mlx4_cmd_info *cmd);
993 int mlx4_COMM_INT_wrapper(struct mlx4_dev *dev, int slave,
994                           struct mlx4_vhcr *vhcr,
995                           struct mlx4_cmd_mailbox *inbox,
996                           struct mlx4_cmd_mailbox *outbox,
997                           struct mlx4_cmd_info *cmd);
998 int mlx4_HW2SW_EQ_wrapper(struct mlx4_dev *dev, int slave,
999                             struct mlx4_vhcr *vhcr,
1000                             struct mlx4_cmd_mailbox *inbox,
1001                             struct mlx4_cmd_mailbox *outbox,
1002                           struct mlx4_cmd_info *cmd);
1003 int mlx4_QUERY_EQ_wrapper(struct mlx4_dev *dev, int slave,
1004                           struct mlx4_vhcr *vhcr,
1005                           struct mlx4_cmd_mailbox *inbox,
1006                           struct mlx4_cmd_mailbox *outbox,
1007                           struct mlx4_cmd_info *cmd);
1008 int mlx4_SW2HW_CQ_wrapper(struct mlx4_dev *dev, int slave,
1009                           struct mlx4_vhcr *vhcr,
1010                           struct mlx4_cmd_mailbox *inbox,
1011                           struct mlx4_cmd_mailbox *outbox,
1012                           struct mlx4_cmd_info *cmd);
1013 int mlx4_HW2SW_CQ_wrapper(struct mlx4_dev *dev, int slave,
1014                           struct mlx4_vhcr *vhcr,
1015                           struct mlx4_cmd_mailbox *inbox,
1016                           struct mlx4_cmd_mailbox *outbox,
1017                           struct mlx4_cmd_info *cmd);
1018 int mlx4_QUERY_CQ_wrapper(struct mlx4_dev *dev, int slave,
1019                           struct mlx4_vhcr *vhcr,
1020                           struct mlx4_cmd_mailbox *inbox,
1021                           struct mlx4_cmd_mailbox *outbox,
1022                           struct mlx4_cmd_info *cmd);
1023 int mlx4_MODIFY_CQ_wrapper(struct mlx4_dev *dev, int slave,
1024                           struct mlx4_vhcr *vhcr,
1025                           struct mlx4_cmd_mailbox *inbox,
1026                           struct mlx4_cmd_mailbox *outbox,
1027                            struct mlx4_cmd_info *cmd);
1028 int mlx4_SW2HW_SRQ_wrapper(struct mlx4_dev *dev, int slave,
1029                            struct mlx4_vhcr *vhcr,
1030                            struct mlx4_cmd_mailbox *inbox,
1031                            struct mlx4_cmd_mailbox *outbox,
1032                            struct mlx4_cmd_info *cmd);
1033 int mlx4_HW2SW_SRQ_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);
1038 int mlx4_QUERY_SRQ_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);
1043 int mlx4_ARM_SRQ_wrapper(struct mlx4_dev *dev, int slave,
1044                          struct mlx4_vhcr *vhcr,
1045                          struct mlx4_cmd_mailbox *inbox,
1046                          struct mlx4_cmd_mailbox *outbox,
1047                          struct mlx4_cmd_info *cmd);
1048 int mlx4_GEN_QP_wrapper(struct mlx4_dev *dev, int slave,
1049                         struct mlx4_vhcr *vhcr,
1050                         struct mlx4_cmd_mailbox *inbox,
1051                         struct mlx4_cmd_mailbox *outbox,
1052                         struct mlx4_cmd_info *cmd);
1053 int mlx4_RST2INIT_QP_wrapper(struct mlx4_dev *dev, int slave,
1054                              struct mlx4_vhcr *vhcr,
1055                              struct mlx4_cmd_mailbox *inbox,
1056                              struct mlx4_cmd_mailbox *outbox,
1057                              struct mlx4_cmd_info *cmd);
1058 int mlx4_INIT2INIT_QP_wrapper(struct mlx4_dev *dev, int slave,
1059                               struct mlx4_vhcr *vhcr,
1060                               struct mlx4_cmd_mailbox *inbox,
1061                               struct mlx4_cmd_mailbox *outbox,
1062                               struct mlx4_cmd_info *cmd);
1063 int mlx4_INIT2RTR_QP_wrapper(struct mlx4_dev *dev, int slave,
1064                              struct mlx4_vhcr *vhcr,
1065                              struct mlx4_cmd_mailbox *inbox,
1066                              struct mlx4_cmd_mailbox *outbox,
1067                              struct mlx4_cmd_info *cmd);
1068 int mlx4_RTR2RTS_QP_wrapper(struct mlx4_dev *dev, int slave,
1069                             struct mlx4_vhcr *vhcr,
1070                             struct mlx4_cmd_mailbox *inbox,
1071                             struct mlx4_cmd_mailbox *outbox,
1072                             struct mlx4_cmd_info *cmd);
1073 int mlx4_RTS2RTS_QP_wrapper(struct mlx4_dev *dev, int slave,
1074                             struct mlx4_vhcr *vhcr,
1075                             struct mlx4_cmd_mailbox *inbox,
1076                             struct mlx4_cmd_mailbox *outbox,
1077                             struct mlx4_cmd_info *cmd);
1078 int mlx4_SQERR2RTS_QP_wrapper(struct mlx4_dev *dev, int slave,
1079                               struct mlx4_vhcr *vhcr,
1080                               struct mlx4_cmd_mailbox *inbox,
1081                               struct mlx4_cmd_mailbox *outbox,
1082                               struct mlx4_cmd_info *cmd);
1083 int mlx4_2ERR_QP_wrapper(struct mlx4_dev *dev, int slave,
1084                          struct mlx4_vhcr *vhcr,
1085                          struct mlx4_cmd_mailbox *inbox,
1086                          struct mlx4_cmd_mailbox *outbox,
1087                          struct mlx4_cmd_info *cmd);
1088 int mlx4_RTS2SQD_QP_wrapper(struct mlx4_dev *dev, int slave,
1089                             struct mlx4_vhcr *vhcr,
1090                             struct mlx4_cmd_mailbox *inbox,
1091                             struct mlx4_cmd_mailbox *outbox,
1092                             struct mlx4_cmd_info *cmd);
1093 int mlx4_SQD2SQD_QP_wrapper(struct mlx4_dev *dev, int slave,
1094                             struct mlx4_vhcr *vhcr,
1095                             struct mlx4_cmd_mailbox *inbox,
1096                             struct mlx4_cmd_mailbox *outbox,
1097                             struct mlx4_cmd_info *cmd);
1098 int mlx4_SQD2RTS_QP_wrapper(struct mlx4_dev *dev, int slave,
1099                             struct mlx4_vhcr *vhcr,
1100                             struct mlx4_cmd_mailbox *inbox,
1101                             struct mlx4_cmd_mailbox *outbox,
1102                             struct mlx4_cmd_info *cmd);
1103 int mlx4_2RST_QP_wrapper(struct mlx4_dev *dev, int slave,
1104                          struct mlx4_vhcr *vhcr,
1105                          struct mlx4_cmd_mailbox *inbox,
1106                          struct mlx4_cmd_mailbox *outbox,
1107                          struct mlx4_cmd_info *cmd);
1108 int mlx4_QUERY_QP_wrapper(struct mlx4_dev *dev, int slave,
1109                           struct mlx4_vhcr *vhcr,
1110                           struct mlx4_cmd_mailbox *inbox,
1111                           struct mlx4_cmd_mailbox *outbox,
1112                           struct mlx4_cmd_info *cmd);
1113
1114 int mlx4_GEN_EQE(struct mlx4_dev *dev, int slave, struct mlx4_eqe *eqe);
1115
1116 int mlx4_cmd_init(struct mlx4_dev *dev);
1117 void mlx4_cmd_cleanup(struct mlx4_dev *dev);
1118 int mlx4_multi_func_init(struct mlx4_dev *dev);
1119 void mlx4_multi_func_cleanup(struct mlx4_dev *dev);
1120 void mlx4_cmd_event(struct mlx4_dev *dev, u16 token, u8 status, u64 out_param);
1121 int mlx4_cmd_use_events(struct mlx4_dev *dev);
1122 void mlx4_cmd_use_polling(struct mlx4_dev *dev);
1123
1124 int mlx4_comm_cmd(struct mlx4_dev *dev, u8 cmd, u16 param,
1125                   unsigned long timeout);
1126
1127 void mlx4_cq_completion(struct mlx4_dev *dev, u32 cqn);
1128 void mlx4_cq_event(struct mlx4_dev *dev, u32 cqn, int event_type);
1129
1130 void mlx4_qp_event(struct mlx4_dev *dev, u32 qpn, int event_type);
1131
1132 void mlx4_srq_event(struct mlx4_dev *dev, u32 srqn, int event_type);
1133
1134 void mlx4_handle_catas_err(struct mlx4_dev *dev);
1135
1136 int mlx4_SENSE_PORT(struct mlx4_dev *dev, int port,
1137                     enum mlx4_port_type *type);
1138 void mlx4_do_sense_ports(struct mlx4_dev *dev,
1139                          enum mlx4_port_type *stype,
1140                          enum mlx4_port_type *defaults);
1141 void mlx4_start_sense(struct mlx4_dev *dev);
1142 void mlx4_stop_sense(struct mlx4_dev *dev);
1143 void mlx4_sense_init(struct mlx4_dev *dev);
1144 int mlx4_check_port_params(struct mlx4_dev *dev,
1145                            enum mlx4_port_type *port_type);
1146 int mlx4_change_port_types(struct mlx4_dev *dev,
1147                            enum mlx4_port_type *port_types);
1148
1149 void mlx4_init_mac_table(struct mlx4_dev *dev, struct mlx4_mac_table *table);
1150 void mlx4_init_vlan_table(struct mlx4_dev *dev, struct mlx4_vlan_table *table);
1151 void mlx4_init_roce_gid_table(struct mlx4_dev *dev,
1152                               struct mlx4_roce_gid_table *table);
1153 void __mlx4_unregister_vlan(struct mlx4_dev *dev, u8 port, u16 vlan);
1154 int __mlx4_register_vlan(struct mlx4_dev *dev, u8 port, u16 vlan, int *index);
1155
1156 int mlx4_SET_PORT(struct mlx4_dev *dev, u8 port, int pkey_tbl_sz);
1157 /* resource tracker functions*/
1158 int mlx4_get_slave_from_resource_id(struct mlx4_dev *dev,
1159                                     enum mlx4_resource resource_type,
1160                                     u64 resource_id, int *slave);
1161 void mlx4_delete_all_resources_for_slave(struct mlx4_dev *dev, int slave_id);
1162 void mlx4_reset_roce_gids(struct mlx4_dev *dev, int slave);
1163 int mlx4_init_resource_tracker(struct mlx4_dev *dev);
1164
1165 void mlx4_free_resource_tracker(struct mlx4_dev *dev,
1166                                 enum mlx4_res_tracker_free_type type);
1167
1168 int mlx4_QUERY_FW_wrapper(struct mlx4_dev *dev, int slave,
1169                           struct mlx4_vhcr *vhcr,
1170                           struct mlx4_cmd_mailbox *inbox,
1171                           struct mlx4_cmd_mailbox *outbox,
1172                           struct mlx4_cmd_info *cmd);
1173 int mlx4_SET_PORT_wrapper(struct mlx4_dev *dev, int slave,
1174                           struct mlx4_vhcr *vhcr,
1175                           struct mlx4_cmd_mailbox *inbox,
1176                           struct mlx4_cmd_mailbox *outbox,
1177                           struct mlx4_cmd_info *cmd);
1178 int mlx4_INIT_PORT_wrapper(struct mlx4_dev *dev, int slave,
1179                            struct mlx4_vhcr *vhcr,
1180                            struct mlx4_cmd_mailbox *inbox,
1181                            struct mlx4_cmd_mailbox *outbox,
1182                            struct mlx4_cmd_info *cmd);
1183 int mlx4_CLOSE_PORT_wrapper(struct mlx4_dev *dev, int slave,
1184                             struct mlx4_vhcr *vhcr,
1185                             struct mlx4_cmd_mailbox *inbox,
1186                             struct mlx4_cmd_mailbox *outbox,
1187                             struct mlx4_cmd_info *cmd);
1188 int mlx4_QUERY_DEV_CAP_wrapper(struct mlx4_dev *dev, int slave,
1189                                struct mlx4_vhcr *vhcr,
1190                                struct mlx4_cmd_mailbox *inbox,
1191                                struct mlx4_cmd_mailbox *outbox,
1192                                struct mlx4_cmd_info *cmd);
1193 int mlx4_QUERY_PORT_wrapper(struct mlx4_dev *dev, int slave,
1194                             struct mlx4_vhcr *vhcr,
1195                             struct mlx4_cmd_mailbox *inbox,
1196                             struct mlx4_cmd_mailbox *outbox,
1197                             struct mlx4_cmd_info *cmd);
1198 int mlx4_get_port_ib_caps(struct mlx4_dev *dev, u8 port, __be32 *caps);
1199
1200 int mlx4_get_slave_pkey_gid_tbl_len(struct mlx4_dev *dev, u8 port,
1201                                     int *gid_tbl_len, int *pkey_tbl_len);
1202
1203 int mlx4_QP_ATTACH_wrapper(struct mlx4_dev *dev, int slave,
1204                            struct mlx4_vhcr *vhcr,
1205                            struct mlx4_cmd_mailbox *inbox,
1206                            struct mlx4_cmd_mailbox *outbox,
1207                            struct mlx4_cmd_info *cmd);
1208
1209 int mlx4_UPDATE_QP_wrapper(struct mlx4_dev *dev, int slave,
1210                            struct mlx4_vhcr *vhcr,
1211                            struct mlx4_cmd_mailbox *inbox,
1212                            struct mlx4_cmd_mailbox *outbox,
1213                            struct mlx4_cmd_info *cmd);
1214
1215 int mlx4_PROMISC_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);
1220 int mlx4_qp_detach_common(struct mlx4_dev *dev, struct mlx4_qp *qp, u8 gid[16],
1221                           enum mlx4_protocol prot, enum mlx4_steer_type steer);
1222 int mlx4_qp_attach_common(struct mlx4_dev *dev, struct mlx4_qp *qp, u8 gid[16],
1223                           int block_mcast_loopback, enum mlx4_protocol prot,
1224                           enum mlx4_steer_type steer);
1225 int mlx4_trans_to_dmfs_attach(struct mlx4_dev *dev, struct mlx4_qp *qp,
1226                               u8 gid[16], u8 port,
1227                               int block_mcast_loopback,
1228                               enum mlx4_protocol prot, u64 *reg_id);
1229 int mlx4_SET_MCAST_FLTR_wrapper(struct mlx4_dev *dev, int slave,
1230                                 struct mlx4_vhcr *vhcr,
1231                                 struct mlx4_cmd_mailbox *inbox,
1232                                 struct mlx4_cmd_mailbox *outbox,
1233                                 struct mlx4_cmd_info *cmd);
1234 int mlx4_SET_VLAN_FLTR_wrapper(struct mlx4_dev *dev, int slave,
1235                                struct mlx4_vhcr *vhcr,
1236                                struct mlx4_cmd_mailbox *inbox,
1237                                struct mlx4_cmd_mailbox *outbox,
1238                                struct mlx4_cmd_info *cmd);
1239 int mlx4_common_set_vlan_fltr(struct mlx4_dev *dev, int function,
1240                                      int port, void *buf);
1241 int mlx4_common_dump_eth_stats(struct mlx4_dev *dev, int slave, u32 in_mod,
1242                                 struct mlx4_cmd_mailbox *outbox);
1243 int mlx4_DUMP_ETH_STATS_wrapper(struct mlx4_dev *dev, int slave,
1244                                    struct mlx4_vhcr *vhcr,
1245                                    struct mlx4_cmd_mailbox *inbox,
1246                                    struct mlx4_cmd_mailbox *outbox,
1247                                 struct mlx4_cmd_info *cmd);
1248 int mlx4_PKEY_TABLE_wrapper(struct mlx4_dev *dev, int slave,
1249                             struct mlx4_vhcr *vhcr,
1250                             struct mlx4_cmd_mailbox *inbox,
1251                             struct mlx4_cmd_mailbox *outbox,
1252                             struct mlx4_cmd_info *cmd);
1253 int mlx4_QUERY_IF_STAT_wrapper(struct mlx4_dev *dev, int slave,
1254                                struct mlx4_vhcr *vhcr,
1255                                struct mlx4_cmd_mailbox *inbox,
1256                                struct mlx4_cmd_mailbox *outbox,
1257                                struct mlx4_cmd_info *cmd);
1258 int mlx4_QP_FLOW_STEERING_ATTACH_wrapper(struct mlx4_dev *dev, int slave,
1259                                          struct mlx4_vhcr *vhcr,
1260                                          struct mlx4_cmd_mailbox *inbox,
1261                                          struct mlx4_cmd_mailbox *outbox,
1262                                          struct mlx4_cmd_info *cmd);
1263 int mlx4_QP_FLOW_STEERING_DETACH_wrapper(struct mlx4_dev *dev, int slave,
1264                                          struct mlx4_vhcr *vhcr,
1265                                          struct mlx4_cmd_mailbox *inbox,
1266                                          struct mlx4_cmd_mailbox *outbox,
1267                                          struct mlx4_cmd_info *cmd);
1268
1269 int mlx4_get_mgm_entry_size(struct mlx4_dev *dev);
1270 int mlx4_get_qp_per_mgm(struct mlx4_dev *dev);
1271
1272 static inline void set_param_l(u64 *arg, u32 val)
1273 {
1274         *arg = (*arg & 0xffffffff00000000ULL) | (u64) val;
1275 }
1276
1277 static inline void set_param_h(u64 *arg, u32 val)
1278 {
1279         *arg = (*arg & 0xffffffff) | ((u64) val << 32);
1280 }
1281
1282 static inline u32 get_param_l(u64 *arg)
1283 {
1284         return (u32) (*arg & 0xffffffff);
1285 }
1286
1287 static inline u32 get_param_h(u64 *arg)
1288 {
1289         return (u32)(*arg >> 32);
1290 }
1291
1292 static inline spinlock_t *mlx4_tlock(struct mlx4_dev *dev)
1293 {
1294         return &mlx4_priv(dev)->mfunc.master.res_tracker.lock;
1295 }
1296
1297 #define NOT_MASKED_PD_BITS 17
1298
1299 void mlx4_vf_immed_vlan_work_handler(struct work_struct *_work);
1300
1301 void mlx4_init_quotas(struct mlx4_dev *dev);
1302
1303 int mlx4_get_slave_num_gids(struct mlx4_dev *dev, int slave, int port);
1304 /* Returns the VF index of slave */
1305 int mlx4_get_vf_indx(struct mlx4_dev *dev, int slave);
1306
1307 #endif /* MLX4_H */