emac: aggregation of v1-2 PLB errors for IER register
[deliverable/linux.git] / drivers / net / ethernet / mellanox / mlx4 / mlx4.h
CommitLineData
225c7b1f
RD
1/*
2 * Copyright (c) 2004, 2005 Topspin Communications. All rights reserved.
3 * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved.
4 * Copyright (c) 2005, 2006, 2007 Cisco Systems. All rights reserved.
51a379d0 5 * Copyright (c) 2005, 2006, 2007, 2008 Mellanox Technologies. All rights reserved.
225c7b1f
RD
6 * Copyright (c) 2004 Voltaire, Inc. All rights reserved.
7 *
8 * This software is available to you under a choice of one of two
9 * licenses. You may choose to be licensed under the terms of the GNU
10 * General Public License (GPL) Version 2, available from the file
11 * COPYING in the main directory of this source tree, or the
12 * OpenIB.org BSD license below:
13 *
14 * Redistribution and use in source and binary forms, with or
15 * without modification, are permitted provided that the following
16 * conditions are met:
17 *
18 * - Redistributions of source code must retain the above
19 * copyright notice, this list of conditions and the following
20 * disclaimer.
21 *
22 * - Redistributions in binary form must reproduce the above
23 * copyright notice, this list of conditions and the following
24 * disclaimer in the documentation and/or other materials
25 * provided with the distribution.
26 *
27 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
28 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
29 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
30 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
31 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
32 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
33 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
34 * SOFTWARE.
35 */
36
37#ifndef MLX4_H
38#define MLX4_H
39
525f5f44 40#include <linux/mutex.h>
225c7b1f 41#include <linux/radix-tree.h>
4af1c048 42#include <linux/rbtree.h>
ee49bd93 43#include <linux/timer.h>
3142788b 44#include <linux/semaphore.h>
27bf91d6 45#include <linux/workqueue.h>
225c7b1f
RD
46
47#include <linux/mlx4/device.h>
37608eea 48#include <linux/mlx4/driver.h>
225c7b1f 49#include <linux/mlx4/doorbell.h>
623ed84b 50#include <linux/mlx4/cmd.h>
225c7b1f
RD
51
52#define DRV_NAME "mlx4_core"
ab9c17a0 53#define PFX DRV_NAME ": "
169a1d85
AV
54#define DRV_VERSION "2.2-1"
55#define DRV_RELDATE "Feb, 2014"
225c7b1f 56
0ff1fb65
HHZ
57#define MLX4_FS_UDP_UC_EN (1 << 1)
58#define MLX4_FS_TCP_UC_EN (1 << 2)
59#define MLX4_FS_NUM_OF_L2_ADDR 8
60#define MLX4_FS_MGM_LOG_ENTRY_SIZE 7
61#define MLX4_FS_NUM_MCG (1 << 17)
62
e448834e
SM
63#define INIT_HCA_TPT_MW_ENABLE (1 << 7)
64
e5395e92
AV
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
70struct mlx4_set_port_prio2tc_context {
71 u8 prio2tc[4];
72};
73
74struct 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
81struct mlx4_set_port_scheduler_context {
82 struct mlx4_port_scheduler_tc_cfg_be tc[MLX4_NUM_TC];
83};
84
225c7b1f
RD
85enum {
86 MLX4_HCR_BASE = 0x80680,
87 MLX4_HCR_SIZE = 0x0001c,
623ed84b
JM
88 MLX4_CLR_INT_SIZE = 0x00008,
89 MLX4_SLAVE_COMM_BASE = 0x0,
ddd8a6c1
EE
90 MLX4_COMM_PAGESIZE = 0x1000,
91 MLX4_CLOCK_SIZE = 0x00008
225c7b1f
RD
92};
93
225c7b1f 94enum {
3c439b55
JM
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),
0ec2c0f8 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
b20e519a
SM
119enum mlx4_mpt_state {
120 MLX4_MPT_DISABLED = 0,
121 MLX4_MPT_EN_HW,
122 MLX4_MPT_EN_SW
623ed84b
JM
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
cc1ade94
SM
269#define MLX4_MPT_FLAG_SW_OWNS (0xfUL << 28)
270#define MLX4_MPT_FLAG_FREE (0x3UL << 28)
271#define MLX4_MPT_FLAG_MIO (1 << 17)
272#define MLX4_MPT_FLAG_BIND_ENABLE (1 << 15)
273#define MLX4_MPT_FLAG_PHYSICAL (1 << 9)
274#define MLX4_MPT_FLAG_REGION (1 << 8)
275
276#define MLX4_MPT_PD_FLAG_FAST_REG (1 << 27)
277#define MLX4_MPT_PD_FLAG_RAE (1 << 28)
278#define MLX4_MPT_PD_FLAG_EN_INV (3 << 24)
279
280#define MLX4_MPT_QP_FLAG_BOUND_QP (1 << 7)
281
282#define MLX4_MPT_STATUS_SW 0xF0
283#define MLX4_MPT_STATUS_HW 0x00
284
c82e9aa0
EC
285/*
286 * Must be packed because mtt_seg is 64 bits but only aligned to 32 bits.
287 */
288struct mlx4_mpt_entry {
289 __be32 flags;
290 __be32 qpn;
291 __be32 key;
292 __be32 pd_flags;
293 __be64 start;
294 __be64 length;
295 __be32 lkey;
296 __be32 win_cnt;
297 u8 reserved1[3];
298 u8 mtt_rep;
2b8fb286 299 __be64 mtt_addr;
c82e9aa0
EC
300 __be32 mtt_sz;
301 __be32 entity_size;
302 __be32 first_byte_offset;
303} __packed;
304
305/*
306 * Must be packed because start is 64 bits but only aligned to 32 bits.
307 */
308struct mlx4_eq_context {
309 __be32 flags;
310 u16 reserved1[3];
311 __be16 page_offset;
312 u8 log_eq_size;
313 u8 reserved2[4];
314 u8 eq_period;
315 u8 reserved3;
316 u8 eq_max_count;
317 u8 reserved4[3];
318 u8 intr;
319 u8 log_page_size;
320 u8 reserved5[2];
321 u8 mtt_base_addr_h;
322 __be32 mtt_base_addr_l;
323 u32 reserved6[2];
324 __be32 consumer_index;
325 __be32 producer_index;
326 u32 reserved7[4];
327};
328
329struct mlx4_cq_context {
330 __be32 flags;
331 u16 reserved1[3];
332 __be16 page_offset;
333 __be32 logsize_usrpage;
334 __be16 cq_period;
335 __be16 cq_max_count;
336 u8 reserved2[3];
337 u8 comp_eqn;
338 u8 log_page_size;
339 u8 reserved3[2];
340 u8 mtt_base_addr_h;
341 __be32 mtt_base_addr_l;
342 __be32 last_notified_index;
343 __be32 solicit_producer_index;
344 __be32 consumer_index;
345 __be32 producer_index;
346 u32 reserved4[2];
347 __be64 db_rec_addr;
348};
349
350struct mlx4_srq_context {
351 __be32 state_logsize_srqn;
352 u8 logstride;
353 u8 reserved1;
354 __be16 xrcd;
355 __be32 pg_offset_cqn;
356 u32 reserved2;
357 u8 log_page_size;
358 u8 reserved3[2];
359 u8 mtt_base_addr_h;
360 __be32 mtt_base_addr_l;
361 __be32 pd;
362 __be16 limit_watermark;
363 __be16 wqe_cnt;
364 u16 reserved4;
365 __be16 wqe_counter;
366 u32 reserved5;
367 __be64 db_rec_addr;
368};
369
225c7b1f
RD
370struct mlx4_eq {
371 struct mlx4_dev *dev;
372 void __iomem *doorbell;
373 int eqn;
374 u32 cons_index;
375 u16 irq;
376 u16 have_irq;
377 int nent;
378 struct mlx4_buf_list *page_list;
379 struct mlx4_mtt mtt;
380};
381
623ed84b
JM
382struct mlx4_slave_eqe {
383 u8 type;
384 u8 port;
385 u32 param;
386};
387
388struct mlx4_slave_event_eq_info {
803143fb 389 int eqn;
623ed84b 390 u16 token;
623ed84b
JM
391};
392
225c7b1f
RD
393struct mlx4_profile {
394 int num_qp;
395 int rdmarc_per_qp;
396 int num_srq;
397 int num_cq;
398 int num_mcg;
399 int num_mpt;
db5a7a65 400 unsigned num_mtt;
225c7b1f
RD
401};
402
403struct mlx4_fw {
404 u64 clr_int_base;
405 u64 catas_offset;
623ed84b 406 u64 comm_base;
ddd8a6c1 407 u64 clock_offset;
225c7b1f
RD
408 struct mlx4_icm *fw_icm;
409 struct mlx4_icm *aux_icm;
410 u32 catas_size;
411 u16 fw_pages;
412 u8 clr_int_bar;
413 u8 catas_bar;
623ed84b 414 u8 comm_bar;
ddd8a6c1 415 u8 clock_bar;
623ed84b
JM
416};
417
418struct mlx4_comm {
419 u32 slave_write;
420 u32 slave_read;
225c7b1f
RD
421};
422
ffe455ad
EE
423enum {
424 MLX4_MCAST_CONFIG = 0,
425 MLX4_MCAST_DISABLE = 1,
426 MLX4_MCAST_ENABLE = 2,
427};
428
623ed84b
JM
429#define VLAN_FLTR_SIZE 128
430
431struct mlx4_vlan_fltr {
432 __be32 entry[VLAN_FLTR_SIZE];
433};
434
ffe455ad
EE
435struct mlx4_mcast_entry {
436 struct list_head list;
437 u64 addr;
438};
439
b12d93d6
YP
440struct mlx4_promisc_qp {
441 struct list_head list;
442 u32 qpn;
443};
444
445struct mlx4_steer_index {
446 struct list_head list;
447 unsigned int index;
448 struct list_head duplicates;
449};
450
803143fb
MA
451#define MLX4_EVENT_TYPES_NUM 64
452
623ed84b
JM
453struct mlx4_slave_state {
454 u8 comm_toggle;
455 u8 last_cmd;
456 u8 init_port_mask;
457 bool active;
2c957ff2 458 bool old_vlan_api;
623ed84b
JM
459 u8 function;
460 dma_addr_t vhcr_dma;
461 u16 mtu[MLX4_MAX_PORTS + 1];
462 __be32 ib_cap_mask[MLX4_MAX_PORTS + 1];
463 struct mlx4_slave_eqe eq[MLX4_MFUNC_MAX_EQES];
464 struct list_head mcast_filters[MLX4_MAX_PORTS + 1];
465 struct mlx4_vlan_fltr *vlan_filter[MLX4_MAX_PORTS + 1];
803143fb
MA
466 /* event type to eq number lookup */
467 struct mlx4_slave_event_eq_info event_eq[MLX4_EVENT_TYPES_NUM];
623ed84b
JM
468 u16 eq_pi;
469 u16 eq_ci;
470 spinlock_t lock;
471 /*initialized via the kzalloc*/
472 u8 is_slave_going_down;
473 u32 cookie;
993c401e 474 enum slave_port_state port_state[MLX4_MAX_PORTS + 1];
623ed84b
JM
475};
476
0eb62b93
RE
477#define MLX4_VGT 4095
478#define NO_INDX (-1)
479
480struct mlx4_vport_state {
481 u64 mac;
482 u16 default_vlan;
483 u8 default_qos;
484 u32 tx_rate;
485 bool spoofchk;
948e306d 486 u32 link_state;
0eb62b93
RE
487};
488
489struct mlx4_vf_admin_state {
490 struct mlx4_vport_state vport[MLX4_MAX_PORTS + 1];
491};
492
493struct mlx4_vport_oper_state {
494 struct mlx4_vport_state state;
495 int mac_idx;
496 int vlan_idx;
497};
498struct mlx4_vf_oper_state {
499 struct mlx4_vport_oper_state vport[MLX4_MAX_PORTS + 1];
500};
501
623ed84b
JM
502struct slave_list {
503 struct mutex mutex;
504 struct list_head res_list[MLX4_NUM_OF_RESOURCE_TYPE];
505};
506
5a0d0a61 507struct resource_allocator {
146f3ef4 508 spinlock_t alloc_lock; /* protect quotas */
5a0d0a61
JM
509 union {
510 int res_reserved;
511 int res_port_rsvd[MLX4_MAX_PORTS];
512 };
513 union {
514 int res_free;
515 int res_port_free[MLX4_MAX_PORTS];
516 };
517 int *quota;
518 int *allocated;
519 int *guaranteed;
520};
521
623ed84b
JM
522struct mlx4_resource_tracker {
523 spinlock_t lock;
524 /* tree for each resources */
4af1c048 525 struct rb_root res_tree[MLX4_NUM_OF_RESOURCE_TYPE];
623ed84b
JM
526 /* num_of_slave's lists, one per slave */
527 struct slave_list *slave_list;
5a0d0a61 528 struct resource_allocator res_alloc[MLX4_NUM_OF_RESOURCE_TYPE];
623ed84b
JM
529};
530
531#define SLAVE_EVENT_EQ_SIZE 128
532struct mlx4_slave_event_eq {
533 u32 eqn;
534 u32 cons;
535 u32 prod;
992e8e6e 536 spinlock_t event_lock;
623ed84b
JM
537 struct mlx4_eqe event_eqe[SLAVE_EVENT_EQ_SIZE];
538};
539
540struct mlx4_master_qp0_state {
541 int proxy_qp0_active;
542 int qp0_active;
543 int port_active;
544};
545
546struct mlx4_mfunc_master_ctx {
547 struct mlx4_slave_state *slave_state;
0eb62b93
RE
548 struct mlx4_vf_admin_state *vf_admin;
549 struct mlx4_vf_oper_state *vf_oper;
623ed84b
JM
550 struct mlx4_master_qp0_state qp0_state[MLX4_MAX_PORTS + 1];
551 int init_port_ref[MLX4_MAX_PORTS + 1];
552 u16 max_mtu[MLX4_MAX_PORTS + 1];
553 int disable_mcast_ref[MLX4_MAX_PORTS + 1];
554 struct mlx4_resource_tracker res_tracker;
555 struct workqueue_struct *comm_wq;
556 struct work_struct comm_work;
557 struct work_struct slave_event_work;
558 struct work_struct slave_flr_event_work;
559 spinlock_t slave_state_lock;
f5311ac1 560 __be32 comm_arm_bit_vector[4];
623ed84b
JM
561 struct mlx4_eqe cmd_eqe;
562 struct mlx4_slave_event_eq slave_eq;
563 struct mutex gen_eqe_mutex[MLX4_MFUNC_MAX];
564};
565
566struct mlx4_mfunc {
567 struct mlx4_comm __iomem *comm;
568 struct mlx4_vhcr_cmd *vhcr;
569 dma_addr_t vhcr_dma;
570
571 struct mlx4_mfunc_master_ctx master;
572};
573
fe6f700d
YP
574#define MGM_QPN_MASK 0x00FFFFFF
575#define MGM_BLCK_LB_BIT 30
576
577struct mlx4_mgm {
578 __be32 next_gid_index;
579 __be32 members_count;
580 u32 reserved[2];
581 u8 gid[16];
582 __be32 qp[MLX4_MAX_QP_PER_MGM];
583};
584
225c7b1f
RD
585struct mlx4_cmd {
586 struct pci_pool *pool;
587 void __iomem *hcr;
588 struct mutex hcr_mutex;
f3d4c89e 589 struct mutex slave_cmd_mutex;
225c7b1f
RD
590 struct semaphore poll_sem;
591 struct semaphore event_sem;
592 int max_cmds;
593 spinlock_t context_lock;
594 int free_head;
595 struct mlx4_cmd_context *context;
596 u16 token_mask;
597 u8 use_events;
598 u8 toggle;
623ed84b 599 u8 comm_toggle;
225c7b1f
RD
600};
601
b01978ca
JM
602enum {
603 MLX4_VF_IMMED_VLAN_FLAG_VLAN = 1 << 0,
604 MLX4_VF_IMMED_VLAN_FLAG_QOS = 1 << 1,
0a6eac24 605 MLX4_VF_IMMED_VLAN_FLAG_LINK_DISABLE = 1 << 2,
b01978ca
JM
606};
607struct mlx4_vf_immed_vlan_work {
608 struct work_struct work;
609 struct mlx4_priv *priv;
610 int flags;
611 int slave;
612 int vlan_ix;
613 int orig_vlan_ix;
614 u8 port;
615 u8 qos;
616 u16 vlan_id;
617 u16 orig_vlan_id;
618};
619
620
225c7b1f
RD
621struct mlx4_uar_table {
622 struct mlx4_bitmap bitmap;
623};
624
625struct mlx4_mr_table {
626 struct mlx4_bitmap mpt_bitmap;
627 struct mlx4_buddy mtt_buddy;
628 u64 mtt_base;
629 u64 mpt_base;
630 struct mlx4_icm_table mtt_table;
631 struct mlx4_icm_table dmpt_table;
632};
633
634struct mlx4_cq_table {
635 struct mlx4_bitmap bitmap;
636 spinlock_t lock;
637 struct radix_tree_root tree;
638 struct mlx4_icm_table table;
639 struct mlx4_icm_table cmpt_table;
640};
641
642struct mlx4_eq_table {
643 struct mlx4_bitmap bitmap;
b8dd786f 644 char *irq_names;
225c7b1f 645 void __iomem *clr_int;
b8dd786f 646 void __iomem **uar_map;
225c7b1f 647 u32 clr_mask;
b8dd786f 648 struct mlx4_eq *eq;
fa0681d2 649 struct mlx4_icm_table table;
225c7b1f
RD
650 struct mlx4_icm_table cmpt_table;
651 int have_irq;
652 u8 inta_pin;
653};
654
655struct mlx4_srq_table {
656 struct mlx4_bitmap bitmap;
657 spinlock_t lock;
658 struct radix_tree_root tree;
659 struct mlx4_icm_table table;
660 struct mlx4_icm_table cmpt_table;
661};
662
663struct mlx4_qp_table {
664 struct mlx4_bitmap bitmap;
665 u32 rdmarc_base;
666 int rdmarc_shift;
667 spinlock_t lock;
668 struct mlx4_icm_table qp_table;
669 struct mlx4_icm_table auxc_table;
670 struct mlx4_icm_table altc_table;
671 struct mlx4_icm_table rdmarc_table;
672 struct mlx4_icm_table cmpt_table;
673};
674
675struct mlx4_mcg_table {
676 struct mutex mutex;
677 struct mlx4_bitmap bitmap;
678 struct mlx4_icm_table table;
679};
680
681struct mlx4_catas_err {
682 u32 __iomem *map;
ee49bd93
JM
683 struct timer_list timer;
684 struct list_head list;
225c7b1f
RD
685};
686
2a2336f8
YP
687#define MLX4_MAX_MAC_NUM 128
688#define MLX4_MAC_TABLE_SIZE (MLX4_MAX_MAC_NUM << 3)
689
690struct mlx4_mac_table {
691 __be64 entries[MLX4_MAX_MAC_NUM];
692 int refs[MLX4_MAX_MAC_NUM];
693 struct mutex mutex;
694 int total;
695 int max;
696};
697
698#define MLX4_MAX_VLAN_NUM 128
699#define MLX4_VLAN_TABLE_SIZE (MLX4_MAX_VLAN_NUM << 2)
700
701struct mlx4_vlan_table {
702 __be32 entries[MLX4_MAX_VLAN_NUM];
703 int refs[MLX4_MAX_VLAN_NUM];
704 struct mutex mutex;
705 int total;
706 int max;
707};
708
ffe455ad
EE
709#define SET_PORT_GEN_ALL_VALID 0x7
710#define SET_PORT_PROMISC_SHIFT 31
711#define SET_PORT_MC_PROMISC_SHIFT 30
712
713enum {
714 MCAST_DIRECT_ONLY = 0,
715 MCAST_DIRECT = 1,
716 MCAST_DEFAULT = 2
717};
718
719
720struct mlx4_set_port_general_context {
721 u8 reserved[3];
722 u8 flags;
723 u16 reserved2;
724 __be16 mtu;
725 u8 pptx;
726 u8 pfctx;
727 u16 reserved3;
728 u8 pprx;
729 u8 pfcrx;
730 u16 reserved4;
731};
732
733struct mlx4_set_port_rqp_calc_context {
734 __be32 base_qpn;
735 u8 rererved;
736 u8 n_mac;
737 u8 n_vlan;
738 u8 n_prio;
739 u8 reserved2[3];
740 u8 mac_miss;
741 u8 intra_no_vlan;
742 u8 no_vlan;
743 u8 intra_vlan_miss;
744 u8 vlan_miss;
745 u8 reserved3[3];
746 u8 no_vlan_prio;
747 __be32 promisc;
748 __be32 mcast;
749};
750
2a2336f8
YP
751struct mlx4_port_info {
752 struct mlx4_dev *dev;
753 int port;
7ff93f8b
YP
754 char dev_name[16];
755 struct device_attribute port_attr;
756 enum mlx4_port_type tmp_type;
096335b3
OG
757 char dev_mtu_name[16];
758 struct device_attribute port_mtu_attr;
2a2336f8
YP
759 struct mlx4_mac_table mac_table;
760 struct mlx4_vlan_table vlan_table;
1679200f 761 int base_qpn;
2a2336f8
YP
762};
763
27bf91d6
YP
764struct mlx4_sense {
765 struct mlx4_dev *dev;
766 u8 do_sense_port[MLX4_MAX_PORTS + 1];
767 u8 sense_allowed[MLX4_MAX_PORTS + 1];
768 struct delayed_work sense_poll;
769};
770
0b7ca5a9
YP
771struct mlx4_msix_ctl {
772 u64 pool_bm;
730c41d5 773 struct mutex pool_lock;
0b7ca5a9
YP
774};
775
b12d93d6
YP
776struct mlx4_steer {
777 struct list_head promisc_qps[MLX4_NUM_STEERS];
778 struct list_head steer_entries[MLX4_NUM_STEERS];
b12d93d6
YP
779};
780
839f1243
RD
781enum {
782 MLX4_PCI_DEV_IS_VF = 1 << 0,
ca3e57a5 783 MLX4_PCI_DEV_FORCE_SENSE_PORT = 1 << 1,
839f1243
RD
784};
785
7c6d74d2
JM
786enum {
787 MLX4_NO_RR = 0,
788 MLX4_USE_RR = 1,
789};
790
6ee51a4e
JM
791struct mlx4_roce_gid_entry {
792 u8 raw[16];
793};
794
225c7b1f
RD
795struct mlx4_priv {
796 struct mlx4_dev dev;
797
798 struct list_head dev_list;
799 struct list_head ctx_list;
800 spinlock_t ctx_lock;
801
839f1243 802 int pci_dev_data;
befdf897 803 int removed;
839f1243 804
6296883c
YP
805 struct list_head pgdir_list;
806 struct mutex pgdir_mutex;
807
225c7b1f
RD
808 struct mlx4_fw fw;
809 struct mlx4_cmd cmd;
623ed84b 810 struct mlx4_mfunc mfunc;
225c7b1f
RD
811
812 struct mlx4_bitmap pd_bitmap;
012a8ff5 813 struct mlx4_bitmap xrcd_bitmap;
225c7b1f
RD
814 struct mlx4_uar_table uar_table;
815 struct mlx4_mr_table mr_table;
816 struct mlx4_cq_table cq_table;
817 struct mlx4_eq_table eq_table;
818 struct mlx4_srq_table srq_table;
819 struct mlx4_qp_table qp_table;
820 struct mlx4_mcg_table mcg_table;
f2a3f6a3 821 struct mlx4_bitmap counters_bitmap;
225c7b1f
RD
822
823 struct mlx4_catas_err catas_err;
824
825 void __iomem *clr_base;
826
827 struct mlx4_uar driver_uar;
828 void __iomem *kar;
2a2336f8 829 struct mlx4_port_info port[MLX4_MAX_PORTS + 1];
27bf91d6 830 struct mlx4_sense sense;
7ff93f8b 831 struct mutex port_mutex;
0b7ca5a9 832 struct mlx4_msix_ctl msix_ctl;
b12d93d6 833 struct mlx4_steer *steer;
c1b43dca
EC
834 struct list_head bf_list;
835 struct mutex bf_mutex;
836 struct io_mapping *bf_mapping;
ddd8a6c1 837 void __iomem *clock_mapping;
ea51b377 838 int reserved_mtts;
0ff1fb65 839 int fs_hash_mode;
54679e14 840 u8 virt2phys_pkey[MLX4_MFUNC_MAX][MLX4_MAX_PORTS][MLX4_MAX_PORT_PKEYS];
afa8fd1d 841 __be64 slave_node_guids[MLX4_MFUNC_MAX];
6ee51a4e 842 struct mlx4_roce_gid_entry roce_gids[MLX4_MAX_PORTS][MLX4_ROCE_MAX_GIDS];
54679e14 843
fe6f700d
YP
844 atomic_t opreq_count;
845 struct work_struct opreq_task;
225c7b1f
RD
846};
847
848static inline struct mlx4_priv *mlx4_priv(struct mlx4_dev *dev)
849{
850 return container_of(dev, struct mlx4_priv, dev);
851}
852
27bf91d6
YP
853#define MLX4_SENSE_RANGE (HZ * 3)
854
855extern struct workqueue_struct *mlx4_wq;
856
225c7b1f 857u32 mlx4_bitmap_alloc(struct mlx4_bitmap *bitmap);
7c6d74d2 858void mlx4_bitmap_free(struct mlx4_bitmap *bitmap, u32 obj, int use_rr);
a3cdcbfa 859u32 mlx4_bitmap_alloc_range(struct mlx4_bitmap *bitmap, int cnt, int align);
7c6d74d2
JM
860void mlx4_bitmap_free_range(struct mlx4_bitmap *bitmap, u32 obj, int cnt,
861 int use_rr);
42d1e017 862u32 mlx4_bitmap_avail(struct mlx4_bitmap *bitmap);
93fc9e1b
YP
863int mlx4_bitmap_init(struct mlx4_bitmap *bitmap, u32 num, u32 mask,
864 u32 reserved_bot, u32 resetrved_top);
225c7b1f
RD
865void mlx4_bitmap_cleanup(struct mlx4_bitmap *bitmap);
866
867int mlx4_reset(struct mlx4_dev *dev);
868
b8dd786f
YP
869int mlx4_alloc_eq_table(struct mlx4_dev *dev);
870void mlx4_free_eq_table(struct mlx4_dev *dev);
871
225c7b1f 872int mlx4_init_pd_table(struct mlx4_dev *dev);
012a8ff5 873int mlx4_init_xrcd_table(struct mlx4_dev *dev);
225c7b1f
RD
874int mlx4_init_uar_table(struct mlx4_dev *dev);
875int mlx4_init_mr_table(struct mlx4_dev *dev);
876int mlx4_init_eq_table(struct mlx4_dev *dev);
877int mlx4_init_cq_table(struct mlx4_dev *dev);
878int mlx4_init_qp_table(struct mlx4_dev *dev);
879int mlx4_init_srq_table(struct mlx4_dev *dev);
880int mlx4_init_mcg_table(struct mlx4_dev *dev);
881
882void mlx4_cleanup_pd_table(struct mlx4_dev *dev);
012a8ff5 883void mlx4_cleanup_xrcd_table(struct mlx4_dev *dev);
225c7b1f
RD
884void mlx4_cleanup_uar_table(struct mlx4_dev *dev);
885void mlx4_cleanup_mr_table(struct mlx4_dev *dev);
886void mlx4_cleanup_eq_table(struct mlx4_dev *dev);
887void mlx4_cleanup_cq_table(struct mlx4_dev *dev);
888void mlx4_cleanup_qp_table(struct mlx4_dev *dev);
889void mlx4_cleanup_srq_table(struct mlx4_dev *dev);
890void mlx4_cleanup_mcg_table(struct mlx4_dev *dev);
c82e9aa0
EC
891int __mlx4_qp_alloc_icm(struct mlx4_dev *dev, int qpn);
892void __mlx4_qp_free_icm(struct mlx4_dev *dev, int qpn);
893int __mlx4_cq_alloc_icm(struct mlx4_dev *dev, int *cqn);
894void __mlx4_cq_free_icm(struct mlx4_dev *dev, int cqn);
895int __mlx4_srq_alloc_icm(struct mlx4_dev *dev, int *srqn);
896void __mlx4_srq_free_icm(struct mlx4_dev *dev, int srqn);
b20e519a
SM
897int __mlx4_mpt_reserve(struct mlx4_dev *dev);
898void __mlx4_mpt_release(struct mlx4_dev *dev, u32 index);
899int __mlx4_mpt_alloc_icm(struct mlx4_dev *dev, u32 index);
900void __mlx4_mpt_free_icm(struct mlx4_dev *dev, u32 index);
c82e9aa0
EC
901u32 __mlx4_alloc_mtt_range(struct mlx4_dev *dev, int order);
902void __mlx4_free_mtt_range(struct mlx4_dev *dev, u32 first_seg, int order);
225c7b1f 903
623ed84b
JM
904int mlx4_WRITE_MTT_wrapper(struct mlx4_dev *dev, int slave,
905 struct mlx4_vhcr *vhcr,
906 struct mlx4_cmd_mailbox *inbox,
907 struct mlx4_cmd_mailbox *outbox,
908 struct mlx4_cmd_info *cmd);
909int mlx4_SYNC_TPT_wrapper(struct mlx4_dev *dev, int slave,
910 struct mlx4_vhcr *vhcr,
911 struct mlx4_cmd_mailbox *inbox,
912 struct mlx4_cmd_mailbox *outbox,
913 struct mlx4_cmd_info *cmd);
914int mlx4_SW2HW_MPT_wrapper(struct mlx4_dev *dev, int slave,
915 struct mlx4_vhcr *vhcr,
916 struct mlx4_cmd_mailbox *inbox,
917 struct mlx4_cmd_mailbox *outbox,
918 struct mlx4_cmd_info *cmd);
919int mlx4_HW2SW_MPT_wrapper(struct mlx4_dev *dev, int slave,
920 struct mlx4_vhcr *vhcr,
921 struct mlx4_cmd_mailbox *inbox,
922 struct mlx4_cmd_mailbox *outbox,
923 struct mlx4_cmd_info *cmd);
924int mlx4_QUERY_MPT_wrapper(struct mlx4_dev *dev, int slave,
925 struct mlx4_vhcr *vhcr,
926 struct mlx4_cmd_mailbox *inbox,
927 struct mlx4_cmd_mailbox *outbox,
928 struct mlx4_cmd_info *cmd);
929int mlx4_SW2HW_EQ_wrapper(struct mlx4_dev *dev, int slave,
930 struct mlx4_vhcr *vhcr,
931 struct mlx4_cmd_mailbox *inbox,
932 struct mlx4_cmd_mailbox *outbox,
933 struct mlx4_cmd_info *cmd);
934int mlx4_DMA_wrapper(struct mlx4_dev *dev, int slave,
935 struct mlx4_vhcr *vhcr,
936 struct mlx4_cmd_mailbox *inbox,
937 struct mlx4_cmd_mailbox *outbox,
938 struct mlx4_cmd_info *cmd);
c82e9aa0
EC
939int __mlx4_qp_reserve_range(struct mlx4_dev *dev, int cnt, int align,
940 int *base);
941void __mlx4_qp_release_range(struct mlx4_dev *dev, int base_qpn, int cnt);
942int __mlx4_register_mac(struct mlx4_dev *dev, u8 port, u64 mac);
943void __mlx4_unregister_mac(struct mlx4_dev *dev, u8 port, u64 mac);
c82e9aa0
EC
944int __mlx4_write_mtt(struct mlx4_dev *dev, struct mlx4_mtt *mtt,
945 int start_index, int npages, u64 *page_list);
ba062d52
JM
946int __mlx4_counter_alloc(struct mlx4_dev *dev, u32 *idx);
947void __mlx4_counter_free(struct mlx4_dev *dev, u32 idx);
948int __mlx4_xrcd_alloc(struct mlx4_dev *dev, u32 *xrcdn);
949void __mlx4_xrcd_free(struct mlx4_dev *dev, u32 xrcdn);
623ed84b 950
ee49bd93
JM
951void mlx4_start_catas_poll(struct mlx4_dev *dev);
952void mlx4_stop_catas_poll(struct mlx4_dev *dev);
27bf91d6 953void mlx4_catas_init(void);
ee49bd93 954int mlx4_restart_one(struct pci_dev *pdev);
225c7b1f
RD
955int mlx4_register_device(struct mlx4_dev *dev);
956void mlx4_unregister_device(struct mlx4_dev *dev);
00f5ce99
JM
957void mlx4_dispatch_event(struct mlx4_dev *dev, enum mlx4_dev_event type,
958 unsigned long param);
225c7b1f
RD
959
960struct mlx4_dev_cap;
961struct mlx4_init_hca_param;
962
963u64 mlx4_make_profile(struct mlx4_dev *dev,
964 struct mlx4_profile *request,
965 struct mlx4_dev_cap *dev_cap,
966 struct mlx4_init_hca_param *init_hca);
623ed84b
JM
967void mlx4_master_comm_channel(struct work_struct *work);
968void mlx4_gen_slave_eqe(struct work_struct *work);
969void mlx4_master_handle_slave_flr(struct work_struct *work);
970
971int mlx4_ALLOC_RES_wrapper(struct mlx4_dev *dev, int slave,
972 struct mlx4_vhcr *vhcr,
973 struct mlx4_cmd_mailbox *inbox,
974 struct mlx4_cmd_mailbox *outbox,
975 struct mlx4_cmd_info *cmd);
976int mlx4_FREE_RES_wrapper(struct mlx4_dev *dev, int slave,
977 struct mlx4_vhcr *vhcr,
978 struct mlx4_cmd_mailbox *inbox,
979 struct mlx4_cmd_mailbox *outbox,
980 struct mlx4_cmd_info *cmd);
981int mlx4_MAP_EQ_wrapper(struct mlx4_dev *dev, int slave,
982 struct mlx4_vhcr *vhcr, struct mlx4_cmd_mailbox *inbox,
983 struct mlx4_cmd_mailbox *outbox,
984 struct mlx4_cmd_info *cmd);
985int mlx4_COMM_INT_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_HW2SW_EQ_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_QUERY_EQ_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_SW2HW_CQ_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_HW2SW_CQ_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_QUERY_CQ_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_MODIFY_CQ_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_SW2HW_SRQ_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);
1025int mlx4_HW2SW_SRQ_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);
1030int mlx4_QUERY_SRQ_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);
1035int mlx4_ARM_SRQ_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_GEN_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_RST2INIT_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);
54679e14
JM
1050int mlx4_INIT2INIT_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);
623ed84b
JM
1055int mlx4_INIT2RTR_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);
54679e14
JM
1060int mlx4_RTR2RTS_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_RTS2RTS_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);
1070int mlx4_SQERR2RTS_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);
1075int mlx4_2ERR_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);
1080int mlx4_RTS2SQD_QP_wrapper(struct mlx4_dev *dev, int slave,
1081 struct mlx4_vhcr *vhcr,
1082 struct mlx4_cmd_mailbox *inbox,
1083 struct mlx4_cmd_mailbox *outbox,
1084 struct mlx4_cmd_info *cmd);
1085int mlx4_SQD2SQD_QP_wrapper(struct mlx4_dev *dev, int slave,
1086 struct mlx4_vhcr *vhcr,
1087 struct mlx4_cmd_mailbox *inbox,
1088 struct mlx4_cmd_mailbox *outbox,
1089 struct mlx4_cmd_info *cmd);
1090int mlx4_SQD2RTS_QP_wrapper(struct mlx4_dev *dev, int slave,
1091 struct mlx4_vhcr *vhcr,
1092 struct mlx4_cmd_mailbox *inbox,
1093 struct mlx4_cmd_mailbox *outbox,
1094 struct mlx4_cmd_info *cmd);
623ed84b
JM
1095int mlx4_2RST_QP_wrapper(struct mlx4_dev *dev, int slave,
1096 struct mlx4_vhcr *vhcr,
1097 struct mlx4_cmd_mailbox *inbox,
1098 struct mlx4_cmd_mailbox *outbox,
1099 struct mlx4_cmd_info *cmd);
54679e14
JM
1100int mlx4_QUERY_QP_wrapper(struct mlx4_dev *dev, int slave,
1101 struct mlx4_vhcr *vhcr,
1102 struct mlx4_cmd_mailbox *inbox,
1103 struct mlx4_cmd_mailbox *outbox,
1104 struct mlx4_cmd_info *cmd);
623ed84b
JM
1105
1106int mlx4_GEN_EQE(struct mlx4_dev *dev, int slave, struct mlx4_eqe *eqe);
225c7b1f 1107
225c7b1f
RD
1108int mlx4_cmd_init(struct mlx4_dev *dev);
1109void mlx4_cmd_cleanup(struct mlx4_dev *dev);
ab9c17a0
JM
1110int mlx4_multi_func_init(struct mlx4_dev *dev);
1111void mlx4_multi_func_cleanup(struct mlx4_dev *dev);
225c7b1f
RD
1112void mlx4_cmd_event(struct mlx4_dev *dev, u16 token, u8 status, u64 out_param);
1113int mlx4_cmd_use_events(struct mlx4_dev *dev);
1114void mlx4_cmd_use_polling(struct mlx4_dev *dev);
1115
ab9c17a0
JM
1116int mlx4_comm_cmd(struct mlx4_dev *dev, u8 cmd, u16 param,
1117 unsigned long timeout);
1118
225c7b1f
RD
1119void mlx4_cq_completion(struct mlx4_dev *dev, u32 cqn);
1120void mlx4_cq_event(struct mlx4_dev *dev, u32 cqn, int event_type);
1121
1122void mlx4_qp_event(struct mlx4_dev *dev, u32 qpn, int event_type);
1123
1124void mlx4_srq_event(struct mlx4_dev *dev, u32 srqn, int event_type);
1125
1126void mlx4_handle_catas_err(struct mlx4_dev *dev);
1127
ab6dc30d
YP
1128int mlx4_SENSE_PORT(struct mlx4_dev *dev, int port,
1129 enum mlx4_port_type *type);
27bf91d6
YP
1130void mlx4_do_sense_ports(struct mlx4_dev *dev,
1131 enum mlx4_port_type *stype,
1132 enum mlx4_port_type *defaults);
1133void mlx4_start_sense(struct mlx4_dev *dev);
1134void mlx4_stop_sense(struct mlx4_dev *dev);
1135void mlx4_sense_init(struct mlx4_dev *dev);
1136int mlx4_check_port_params(struct mlx4_dev *dev,
1137 enum mlx4_port_type *port_type);
1138int mlx4_change_port_types(struct mlx4_dev *dev,
1139 enum mlx4_port_type *port_types);
1140
2a2336f8
YP
1141void mlx4_init_mac_table(struct mlx4_dev *dev, struct mlx4_mac_table *table);
1142void mlx4_init_vlan_table(struct mlx4_dev *dev, struct mlx4_vlan_table *table);
2009d005 1143void __mlx4_unregister_vlan(struct mlx4_dev *dev, u8 port, u16 vlan);
3f7fb021 1144int __mlx4_register_vlan(struct mlx4_dev *dev, u8 port, u16 vlan, int *index);
2a2336f8 1145
6634961c 1146int mlx4_SET_PORT(struct mlx4_dev *dev, u8 port, int pkey_tbl_sz);
623ed84b
JM
1147/* resource tracker functions*/
1148int mlx4_get_slave_from_resource_id(struct mlx4_dev *dev,
1149 enum mlx4_resource resource_type,
aa1ec3dd 1150 u64 resource_id, int *slave);
623ed84b
JM
1151void mlx4_delete_all_resources_for_slave(struct mlx4_dev *dev, int slave_id);
1152int mlx4_init_resource_tracker(struct mlx4_dev *dev);
1153
b8924951
JM
1154void mlx4_free_resource_tracker(struct mlx4_dev *dev,
1155 enum mlx4_res_tracker_free_type type);
623ed84b 1156
b91cb3eb
JM
1157int mlx4_QUERY_FW_wrapper(struct mlx4_dev *dev, int slave,
1158 struct mlx4_vhcr *vhcr,
1159 struct mlx4_cmd_mailbox *inbox,
1160 struct mlx4_cmd_mailbox *outbox,
1161 struct mlx4_cmd_info *cmd);
623ed84b
JM
1162int mlx4_SET_PORT_wrapper(struct mlx4_dev *dev, int slave,
1163 struct mlx4_vhcr *vhcr,
1164 struct mlx4_cmd_mailbox *inbox,
1165 struct mlx4_cmd_mailbox *outbox,
1166 struct mlx4_cmd_info *cmd);
1167int mlx4_INIT_PORT_wrapper(struct mlx4_dev *dev, int slave,
1168 struct mlx4_vhcr *vhcr,
1169 struct mlx4_cmd_mailbox *inbox,
1170 struct mlx4_cmd_mailbox *outbox,
1171 struct mlx4_cmd_info *cmd);
1172int mlx4_CLOSE_PORT_wrapper(struct mlx4_dev *dev, int slave,
1173 struct mlx4_vhcr *vhcr,
1174 struct mlx4_cmd_mailbox *inbox,
1175 struct mlx4_cmd_mailbox *outbox,
1176 struct mlx4_cmd_info *cmd);
b91cb3eb
JM
1177int mlx4_QUERY_DEV_CAP_wrapper(struct mlx4_dev *dev, int slave,
1178 struct mlx4_vhcr *vhcr,
1179 struct mlx4_cmd_mailbox *inbox,
1180 struct mlx4_cmd_mailbox *outbox,
1181 struct mlx4_cmd_info *cmd);
623ed84b
JM
1182int mlx4_QUERY_PORT_wrapper(struct mlx4_dev *dev, int slave,
1183 struct mlx4_vhcr *vhcr,
1184 struct mlx4_cmd_mailbox *inbox,
1185 struct mlx4_cmd_mailbox *outbox,
1186 struct mlx4_cmd_info *cmd);
9a5aa622 1187int mlx4_get_port_ib_caps(struct mlx4_dev *dev, u8 port, __be32 *caps);
7ff93f8b 1188
6634961c
JM
1189int mlx4_get_slave_pkey_gid_tbl_len(struct mlx4_dev *dev, u8 port,
1190 int *gid_tbl_len, int *pkey_tbl_len);
623ed84b
JM
1191
1192int mlx4_QP_ATTACH_wrapper(struct mlx4_dev *dev, int slave,
1193 struct mlx4_vhcr *vhcr,
1194 struct mlx4_cmd_mailbox *inbox,
1195 struct mlx4_cmd_mailbox *outbox,
1196 struct mlx4_cmd_info *cmd);
1197
ce8d9e0d
MB
1198int mlx4_UPDATE_QP_wrapper(struct mlx4_dev *dev, int slave,
1199 struct mlx4_vhcr *vhcr,
1200 struct mlx4_cmd_mailbox *inbox,
1201 struct mlx4_cmd_mailbox *outbox,
1202 struct mlx4_cmd_info *cmd);
1203
623ed84b
JM
1204int mlx4_PROMISC_wrapper(struct mlx4_dev *dev, int slave,
1205 struct mlx4_vhcr *vhcr,
1206 struct mlx4_cmd_mailbox *inbox,
1207 struct mlx4_cmd_mailbox *outbox,
1208 struct mlx4_cmd_info *cmd);
b12d93d6
YP
1209int mlx4_qp_detach_common(struct mlx4_dev *dev, struct mlx4_qp *qp, u8 gid[16],
1210 enum mlx4_protocol prot, enum mlx4_steer_type steer);
1211int mlx4_qp_attach_common(struct mlx4_dev *dev, struct mlx4_qp *qp, u8 gid[16],
1212 int block_mcast_loopback, enum mlx4_protocol prot,
1213 enum mlx4_steer_type steer);
fd91c49f
HHZ
1214int mlx4_trans_to_dmfs_attach(struct mlx4_dev *dev, struct mlx4_qp *qp,
1215 u8 gid[16], u8 port,
1216 int block_mcast_loopback,
1217 enum mlx4_protocol prot, u64 *reg_id);
623ed84b
JM
1218int mlx4_SET_MCAST_FLTR_wrapper(struct mlx4_dev *dev, int slave,
1219 struct mlx4_vhcr *vhcr,
1220 struct mlx4_cmd_mailbox *inbox,
1221 struct mlx4_cmd_mailbox *outbox,
1222 struct mlx4_cmd_info *cmd);
1223int mlx4_SET_VLAN_FLTR_wrapper(struct mlx4_dev *dev, int slave,
1224 struct mlx4_vhcr *vhcr,
1225 struct mlx4_cmd_mailbox *inbox,
1226 struct mlx4_cmd_mailbox *outbox,
1227 struct mlx4_cmd_info *cmd);
1228int mlx4_common_set_vlan_fltr(struct mlx4_dev *dev, int function,
1229 int port, void *buf);
1230int mlx4_common_dump_eth_stats(struct mlx4_dev *dev, int slave, u32 in_mod,
1231 struct mlx4_cmd_mailbox *outbox);
1232int mlx4_DUMP_ETH_STATS_wrapper(struct mlx4_dev *dev, int slave,
1233 struct mlx4_vhcr *vhcr,
1234 struct mlx4_cmd_mailbox *inbox,
1235 struct mlx4_cmd_mailbox *outbox,
1236 struct mlx4_cmd_info *cmd);
1237int mlx4_PKEY_TABLE_wrapper(struct mlx4_dev *dev, int slave,
1238 struct mlx4_vhcr *vhcr,
1239 struct mlx4_cmd_mailbox *inbox,
1240 struct mlx4_cmd_mailbox *outbox,
1241 struct mlx4_cmd_info *cmd);
1242int mlx4_QUERY_IF_STAT_wrapper(struct mlx4_dev *dev, int slave,
1243 struct mlx4_vhcr *vhcr,
1244 struct mlx4_cmd_mailbox *inbox,
1245 struct mlx4_cmd_mailbox *outbox,
1246 struct mlx4_cmd_info *cmd);
8fcfb4db
HHZ
1247int mlx4_QP_FLOW_STEERING_ATTACH_wrapper(struct mlx4_dev *dev, int slave,
1248 struct mlx4_vhcr *vhcr,
1249 struct mlx4_cmd_mailbox *inbox,
1250 struct mlx4_cmd_mailbox *outbox,
1251 struct mlx4_cmd_info *cmd);
1252int mlx4_QP_FLOW_STEERING_DETACH_wrapper(struct mlx4_dev *dev, int slave,
1253 struct mlx4_vhcr *vhcr,
1254 struct mlx4_cmd_mailbox *inbox,
1255 struct mlx4_cmd_mailbox *outbox,
1256 struct mlx4_cmd_info *cmd);
f5311ac1 1257
0ec2c0f8
EE
1258int mlx4_get_mgm_entry_size(struct mlx4_dev *dev);
1259int mlx4_get_qp_per_mgm(struct mlx4_dev *dev);
1260
5cc914f1
MA
1261static inline void set_param_l(u64 *arg, u32 val)
1262{
e7dbeba8 1263 *arg = (*arg & 0xffffffff00000000ULL) | (u64) val;
5cc914f1
MA
1264}
1265
1266static inline void set_param_h(u64 *arg, u32 val)
1267{
1268 *arg = (*arg & 0xffffffff) | ((u64) val << 32);
1269}
1270
1271static inline u32 get_param_l(u64 *arg)
1272{
1273 return (u32) (*arg & 0xffffffff);
1274}
1275
1276static inline u32 get_param_h(u64 *arg)
1277{
1278 return (u32)(*arg >> 32);
1279}
1280
c82e9aa0
EC
1281static inline spinlock_t *mlx4_tlock(struct mlx4_dev *dev)
1282{
1283 return &mlx4_priv(dev)->mfunc.master.res_tracker.lock;
1284}
1285
f5311ac1
JM
1286#define NOT_MASKED_PD_BITS 17
1287
b01978ca
JM
1288void mlx4_vf_immed_vlan_work_handler(struct work_struct *_work);
1289
5a0d0a61
JM
1290void mlx4_init_quotas(struct mlx4_dev *dev);
1291
449fc488 1292int mlx4_get_slave_num_gids(struct mlx4_dev *dev, int slave, int port);
f74462ac
MB
1293/* Returns the VF index of slave */
1294int mlx4_get_vf_indx(struct mlx4_dev *dev, int slave);
b6ffaeff 1295
225c7b1f 1296#endif /* MLX4_H */
This page took 0.740209 seconds and 5 git commands to generate.