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