blob: 30616cd0140d573573f5f334b937522a9a7c0974 [file] [log] [blame]
Roland Dreier225c7b12007-05-08 18:00:38 -07001/*
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.
Jack Morgenstein51a379d2008-07-25 10:32:52 -07005 * Copyright (c) 2005, 2006, 2007, 2008 Mellanox Technologies. All rights reserved.
Roland Dreier225c7b12007-05-08 18:00:38 -07006 * 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
Michael S. Tsirkin525f5f42007-07-09 20:12:20 -070040#include <linux/mutex.h>
Roland Dreier225c7b12007-05-08 18:00:38 -070041#include <linux/radix-tree.h>
Hadar Hen Zion4af1c042012-07-05 04:03:41 +000042#include <linux/rbtree.h>
Jack Morgensteinee49bd92007-07-12 17:50:45 +030043#include <linux/timer.h>
Thomas Gleixner31427882010-01-29 20:39:02 +000044#include <linux/semaphore.h>
Yevgeny Petrilin27bf91d2009-03-18 19:45:11 -070045#include <linux/workqueue.h>
Matan Barak3dca0f422014-12-11 10:57:53 +020046#include <linux/interrupt.h>
47#include <linux/spinlock.h>
Jiri Pirko09d4d082016-02-26 17:32:24 +010048#include <net/devlink.h>
Jack Morgensteina7e1f042016-09-20 14:39:42 +030049#include <linux/rwsem.h>
Roland Dreier225c7b12007-05-08 18:00:38 -070050
51#include <linux/mlx4/device.h>
Roland Dreier37608ee2008-04-16 21:01:08 -070052#include <linux/mlx4/driver.h>
Roland Dreier225c7b12007-05-08 18:00:38 -070053#include <linux/mlx4/doorbell.h>
Jack Morgenstein623ed842011-12-13 04:10:33 +000054#include <linux/mlx4/cmd.h>
Ido Shamay666672d2015-04-02 16:31:14 +030055#include "fw_qos.h"
Roland Dreier225c7b12007-05-08 18:00:38 -070056
57#define DRV_NAME "mlx4_core"
Jack Morgensteinab9c17a2011-12-13 04:18:30 +000058#define PFX DRV_NAME ": "
Tariq Toukancea2a6d2017-06-07 16:26:13 +030059#define DRV_VERSION "4.0-0"
Roland Dreier225c7b12007-05-08 18:00:38 -070060
Hadar Hen Zion0ff1fb62012-07-05 04:03:46 +000061#define MLX4_FS_UDP_UC_EN (1 << 1)
62#define MLX4_FS_TCP_UC_EN (1 << 2)
63#define MLX4_FS_NUM_OF_L2_ADDR 8
64#define MLX4_FS_MGM_LOG_ENTRY_SIZE 7
65#define MLX4_FS_NUM_MCG (1 << 17)
66
Shani Michaelie4488342013-02-06 16:19:11 +000067#define INIT_HCA_TPT_MW_ENABLE (1 << 7)
68
Eran Ben Elishab72ca7e2015-06-15 17:58:57 +030069#define MLX4_QUERY_IF_STAT_RESET BIT(31)
70
Roland Dreier225c7b12007-05-08 18:00:38 -070071enum {
72 MLX4_HCR_BASE = 0x80680,
73 MLX4_HCR_SIZE = 0x0001c,
Jack Morgenstein623ed842011-12-13 04:10:33 +000074 MLX4_CLR_INT_SIZE = 0x00008,
75 MLX4_SLAVE_COMM_BASE = 0x0,
Eugenia Emantayevddd8a6c2013-04-23 06:06:48 +000076 MLX4_COMM_PAGESIZE = 0x1000,
Yishai Hadas55ad3592015-01-25 16:59:42 +020077 MLX4_CLOCK_SIZE = 0x00008,
78 MLX4_COMM_CHAN_CAPS = 0x8,
79 MLX4_COMM_CHAN_FLAGS = 0xc
Roland Dreier225c7b12007-05-08 18:00:38 -070080};
81
82enum {
Jack Morgenstein3c439b52012-12-06 17:12:00 +000083 MLX4_DEFAULT_MGM_LOG_ENTRY_SIZE = 10,
84 MLX4_MIN_MGM_LOG_ENTRY_SIZE = 7,
85 MLX4_MAX_MGM_LOG_ENTRY_SIZE = 12,
86 MLX4_MAX_QP_PER_MGM = 4 * ((1 << MLX4_MAX_MGM_LOG_ENTRY_SIZE) / 16 - 2),
Eugenia Emantayev0ec2c0f2011-12-13 04:16:02 +000087 MLX4_MTT_ENTRY_PER_SEG = 8,
Roland Dreier225c7b12007-05-08 18:00:38 -070088};
89
90enum {
Roland Dreier225c7b12007-05-08 18:00:38 -070091 MLX4_NUM_PDS = 1 << 15
92};
93
94enum {
95 MLX4_CMPT_TYPE_QP = 0,
96 MLX4_CMPT_TYPE_SRQ = 1,
97 MLX4_CMPT_TYPE_CQ = 2,
98 MLX4_CMPT_TYPE_EQ = 3,
99 MLX4_CMPT_NUM_TYPE
100};
101
102enum {
103 MLX4_CMPT_SHIFT = 24,
104 MLX4_NUM_CMPTS = MLX4_CMPT_NUM_TYPE << MLX4_CMPT_SHIFT
105};
106
Shani Michaelib20e5192013-02-06 16:19:08 +0000107enum mlx4_mpt_state {
108 MLX4_MPT_DISABLED = 0,
109 MLX4_MPT_EN_HW,
110 MLX4_MPT_EN_SW
Jack Morgenstein623ed842011-12-13 04:10:33 +0000111};
112
113#define MLX4_COMM_TIME 10000
Yishai Hadas55ad3592015-01-25 16:59:42 +0200114#define MLX4_COMM_OFFLINE_TIME_OUT 30000
Yishai Hadas0cd93022015-01-25 16:59:43 +0200115#define MLX4_COMM_CMD_NA_OP 0x0
116
Yishai Hadas55ad3592015-01-25 16:59:42 +0200117
Jack Morgenstein623ed842011-12-13 04:10:33 +0000118enum {
119 MLX4_COMM_CMD_RESET,
120 MLX4_COMM_CMD_VHCR0,
121 MLX4_COMM_CMD_VHCR1,
122 MLX4_COMM_CMD_VHCR2,
123 MLX4_COMM_CMD_VHCR_EN,
124 MLX4_COMM_CMD_VHCR_POST,
125 MLX4_COMM_CMD_FLR = 254
126};
127
Jack Morgenstein99ec41d2014-05-29 16:31:03 +0300128enum {
129 MLX4_VF_SMI_DISABLED,
130 MLX4_VF_SMI_ENABLED
131};
132
Jack Morgenstein623ed842011-12-13 04:10:33 +0000133/*The flag indicates that the slave should delay the RESET cmd*/
134#define MLX4_DELAY_RESET_SLAVE 0xbbbbbbb
135/*indicates how many retries will be done if we are in the middle of FLR*/
136#define NUM_OF_RESET_RETRIES 10
137#define SLEEP_TIME_IN_RESET (2 * 1000)
138enum mlx4_resource {
139 RES_QP,
140 RES_CQ,
141 RES_SRQ,
142 RES_XRCD,
143 RES_MPT,
144 RES_MTT,
145 RES_MAC,
146 RES_VLAN,
Jack Morgensteinaa0c08f2016-10-27 16:27:13 +0300147 RES_NPORT_ID,
Jack Morgenstein623ed842011-12-13 04:10:33 +0000148 RES_COUNTER,
Hadar Hen Zion1b9c6b02012-07-05 04:03:47 +0000149 RES_FS_RULE,
Jack Morgensteinaa0c08f2016-10-27 16:27:13 +0300150 RES_EQ,
Jack Morgenstein623ed842011-12-13 04:10:33 +0000151 MLX4_NUM_OF_RESOURCE_TYPE
152};
153
154enum mlx4_alloc_mode {
155 RES_OP_RESERVE,
156 RES_OP_RESERVE_AND_MAP,
157 RES_OP_MAP_ICM,
158};
159
Jack Morgensteinb8924952012-05-15 10:35:02 +0000160enum mlx4_res_tracker_free_type {
161 RES_TR_FREE_ALL,
162 RES_TR_FREE_SLAVES_ONLY,
163 RES_TR_FREE_STRUCTS_ONLY,
164};
Jack Morgenstein623ed842011-12-13 04:10:33 +0000165
166/*
167 *Virtual HCR structures.
Joe Perchesdbedd442015-03-06 20:49:12 -0800168 * mlx4_vhcr is the sw representation, in machine endianness
Jack Morgenstein623ed842011-12-13 04:10:33 +0000169 *
170 * mlx4_vhcr_cmd is the formalized structure, the one that is passed
171 * to FW to go through communication channel.
172 * It is big endian, and has the same structure as the physical HCR
173 * used by command interface
174 */
175struct mlx4_vhcr {
176 u64 in_param;
177 u64 out_param;
178 u32 in_modifier;
179 u32 errno;
180 u16 op;
181 u16 token;
182 u8 op_modifier;
183 u8 e_bit;
184};
185
186struct mlx4_vhcr_cmd {
187 __be64 in_param;
188 __be32 in_modifier;
Jack Morgensteindc7d5002015-01-27 15:58:04 +0200189 u32 reserved1;
Jack Morgenstein623ed842011-12-13 04:10:33 +0000190 __be64 out_param;
191 __be16 token;
192 u16 reserved;
193 u8 status;
194 u8 flags;
195 __be16 opcode;
196};
197
198struct mlx4_cmd_info {
199 u16 opcode;
200 bool has_inbox;
201 bool has_outbox;
202 bool out_is_imm;
203 bool encode_slave_id;
204 int (*verify)(struct mlx4_dev *dev, int slave, struct mlx4_vhcr *vhcr,
205 struct mlx4_cmd_mailbox *inbox);
206 int (*wrapper)(struct mlx4_dev *dev, int slave, struct mlx4_vhcr *vhcr,
207 struct mlx4_cmd_mailbox *inbox,
208 struct mlx4_cmd_mailbox *outbox,
209 struct mlx4_cmd_info *cmd);
210};
211
Roland Dreier225c7b12007-05-08 18:00:38 -0700212#ifdef CONFIG_MLX4_DEBUG
213extern int mlx4_debug_level;
Roland Dreier7b0f5df2008-11-04 11:18:56 -0800214#else /* CONFIG_MLX4_DEBUG */
215#define mlx4_debug_level (0)
216#endif /* CONFIG_MLX4_DEBUG */
Roland Dreier225c7b12007-05-08 18:00:38 -0700217
Joe Perches1a91de22014-05-07 12:52:57 -0700218#define mlx4_dbg(mdev, format, ...) \
Joe Perches0a645e82010-07-10 07:22:46 +0000219do { \
220 if (mlx4_debug_level) \
Yishai Hadas872bf2f2015-01-25 16:59:35 +0200221 dev_printk(KERN_DEBUG, \
222 &(mdev)->persist->pdev->dev, format, \
Joe Perches1a91de22014-05-07 12:52:57 -0700223 ##__VA_ARGS__); \
Joe Perches0a645e82010-07-10 07:22:46 +0000224} while (0)
Roland Dreier225c7b12007-05-08 18:00:38 -0700225
Joe Perches1a91de22014-05-07 12:52:57 -0700226#define mlx4_err(mdev, format, ...) \
Yishai Hadas872bf2f2015-01-25 16:59:35 +0200227 dev_err(&(mdev)->persist->pdev->dev, format, ##__VA_ARGS__)
Joe Perches1a91de22014-05-07 12:52:57 -0700228#define mlx4_info(mdev, format, ...) \
Yishai Hadas872bf2f2015-01-25 16:59:35 +0200229 dev_info(&(mdev)->persist->pdev->dev, format, ##__VA_ARGS__)
Joe Perches1a91de22014-05-07 12:52:57 -0700230#define mlx4_warn(mdev, format, ...) \
Yishai Hadas872bf2f2015-01-25 16:59:35 +0200231 dev_warn(&(mdev)->persist->pdev->dev, format, ##__VA_ARGS__)
Roland Dreier225c7b12007-05-08 18:00:38 -0700232
Marcel Apfelbaum2b8fb282011-12-13 04:16:56 +0000233extern int log_mtts_per_seg;
Yishai Hadasf5aef5a2015-01-25 16:59:39 +0200234extern int mlx4_internal_err_reset;
Eugenia Emantayev0ec2c0f2011-12-13 04:16:02 +0000235
Jack Morgenstein5a2e87b2015-02-02 15:18:42 +0200236#define MLX4_MAX_NUM_SLAVES (min(MLX4_MAX_NUM_PF + MLX4_MAX_NUM_VF, \
237 MLX4_MFUNC_MAX))
Jack Morgenstein623ed842011-12-13 04:10:33 +0000238#define ALL_SLAVES 0xff
239
Roland Dreier225c7b12007-05-08 18:00:38 -0700240struct mlx4_bitmap {
241 u32 last;
242 u32 top;
243 u32 max;
Yevgeny Petrilin93fc9e12008-10-22 10:25:29 -0700244 u32 reserved_top;
Roland Dreier225c7b12007-05-08 18:00:38 -0700245 u32 mask;
Eli Cohen42d1e012011-03-22 22:38:45 +0000246 u32 avail;
Matan Barak7a893992014-12-11 10:57:56 +0200247 u32 effective_len;
Roland Dreier225c7b12007-05-08 18:00:38 -0700248 spinlock_t lock;
249 unsigned long *table;
250};
251
252struct mlx4_buddy {
253 unsigned long **bits;
Roland Dreiere4044cf2008-07-22 14:19:40 -0700254 unsigned int *num_free;
Yishai Hadas3de819e2012-08-13 08:15:07 +0000255 u32 max_order;
Roland Dreier225c7b12007-05-08 18:00:38 -0700256 spinlock_t lock;
257};
258
259struct mlx4_icm;
260
261struct mlx4_icm_table {
262 u64 virt;
263 int num_icm;
Yishai Hadas3de819e2012-08-13 08:15:07 +0000264 u32 num_obj;
Roland Dreier225c7b12007-05-08 18:00:38 -0700265 int obj_size;
266 int lowmem;
Jack Morgenstein5b0bf5e2007-08-01 12:28:20 +0300267 int coherent;
Roland Dreier225c7b12007-05-08 18:00:38 -0700268 struct mutex mutex;
269 struct mlx4_icm **icm;
270};
271
Shani Michaelicc1ade92013-02-06 16:19:10 +0000272#define MLX4_MPT_FLAG_SW_OWNS (0xfUL << 28)
273#define MLX4_MPT_FLAG_FREE (0x3UL << 28)
274#define MLX4_MPT_FLAG_MIO (1 << 17)
275#define MLX4_MPT_FLAG_BIND_ENABLE (1 << 15)
276#define MLX4_MPT_FLAG_PHYSICAL (1 << 9)
277#define MLX4_MPT_FLAG_REGION (1 << 8)
278
Matan Barake6306642014-07-31 11:01:29 +0300279#define MLX4_MPT_PD_MASK (0x1FFFFUL)
280#define MLX4_MPT_PD_VF_MASK (0xFE0000UL)
Shani Michaelicc1ade92013-02-06 16:19:10 +0000281#define MLX4_MPT_PD_FLAG_FAST_REG (1 << 27)
282#define MLX4_MPT_PD_FLAG_RAE (1 << 28)
283#define MLX4_MPT_PD_FLAG_EN_INV (3 << 24)
284
285#define MLX4_MPT_QP_FLAG_BOUND_QP (1 << 7)
286
287#define MLX4_MPT_STATUS_SW 0xF0
288#define MLX4_MPT_STATUS_HW 0x00
289
Ido Shamay77507aa2014-09-18 11:50:59 +0300290#define MLX4_CQE_SIZE_MASK_STRIDE 0x3
291#define MLX4_EQE_SIZE_MASK_STRIDE 0x30
292
Matan Barakc66fa192015-05-31 09:30:16 +0300293#define MLX4_EQ_ASYNC 0
294#define MLX4_EQ_TO_CQ_VECTOR(vector) ((vector) - \
295 !!((int)(vector) >= MLX4_EQ_ASYNC))
296#define MLX4_CQ_TO_EQ_VECTOR(vector) ((vector) + \
297 !!((int)(vector) >= MLX4_EQ_ASYNC))
298
Eli Cohenc82e9aa2011-12-13 04:15:24 +0000299/*
300 * Must be packed because mtt_seg is 64 bits but only aligned to 32 bits.
301 */
302struct mlx4_mpt_entry {
303 __be32 flags;
304 __be32 qpn;
305 __be32 key;
306 __be32 pd_flags;
307 __be64 start;
308 __be64 length;
309 __be32 lkey;
310 __be32 win_cnt;
311 u8 reserved1[3];
312 u8 mtt_rep;
Marcel Apfelbaum2b8fb282011-12-13 04:16:56 +0000313 __be64 mtt_addr;
Eli Cohenc82e9aa2011-12-13 04:15:24 +0000314 __be32 mtt_sz;
315 __be32 entity_size;
316 __be32 first_byte_offset;
317} __packed;
318
319/*
320 * Must be packed because start is 64 bits but only aligned to 32 bits.
321 */
322struct mlx4_eq_context {
323 __be32 flags;
324 u16 reserved1[3];
325 __be16 page_offset;
326 u8 log_eq_size;
327 u8 reserved2[4];
328 u8 eq_period;
329 u8 reserved3;
330 u8 eq_max_count;
331 u8 reserved4[3];
332 u8 intr;
333 u8 log_page_size;
334 u8 reserved5[2];
335 u8 mtt_base_addr_h;
336 __be32 mtt_base_addr_l;
337 u32 reserved6[2];
338 __be32 consumer_index;
339 __be32 producer_index;
340 u32 reserved7[4];
341};
342
343struct mlx4_cq_context {
344 __be32 flags;
345 u16 reserved1[3];
346 __be16 page_offset;
347 __be32 logsize_usrpage;
348 __be16 cq_period;
349 __be16 cq_max_count;
350 u8 reserved2[3];
351 u8 comp_eqn;
352 u8 log_page_size;
353 u8 reserved3[2];
354 u8 mtt_base_addr_h;
355 __be32 mtt_base_addr_l;
356 __be32 last_notified_index;
357 __be32 solicit_producer_index;
358 __be32 consumer_index;
359 __be32 producer_index;
360 u32 reserved4[2];
361 __be64 db_rec_addr;
362};
363
364struct mlx4_srq_context {
365 __be32 state_logsize_srqn;
366 u8 logstride;
367 u8 reserved1;
368 __be16 xrcd;
369 __be32 pg_offset_cqn;
370 u32 reserved2;
371 u8 log_page_size;
372 u8 reserved3[2];
373 u8 mtt_base_addr_h;
374 __be32 mtt_base_addr_l;
375 __be32 pd;
376 __be16 limit_watermark;
377 __be16 wqe_cnt;
378 u16 reserved4;
379 __be16 wqe_counter;
380 u32 reserved5;
381 __be64 db_rec_addr;
382};
383
Matan Barak3dca0f422014-12-11 10:57:53 +0200384struct mlx4_eq_tasklet {
385 struct list_head list;
386 struct list_head process_list;
387 struct tasklet_struct task;
388 /* lock on completion tasklet list */
389 spinlock_t lock;
390};
391
Roland Dreier225c7b12007-05-08 18:00:38 -0700392struct mlx4_eq {
393 struct mlx4_dev *dev;
394 void __iomem *doorbell;
395 int eqn;
396 u32 cons_index;
397 u16 irq;
398 u16 have_irq;
399 int nent;
400 struct mlx4_buf_list *page_list;
401 struct mlx4_mtt mtt;
Matan Barak3dca0f422014-12-11 10:57:53 +0200402 struct mlx4_eq_tasklet tasklet_ctx;
Matan Barakc66fa192015-05-31 09:30:16 +0300403 struct mlx4_active_ports actv_ports;
404 u32 ref_count;
Ido Shamayde161802015-05-31 09:30:17 +0300405 cpumask_var_t affinity_mask;
Roland Dreier225c7b12007-05-08 18:00:38 -0700406};
407
Jack Morgenstein623ed842011-12-13 04:10:33 +0000408struct mlx4_slave_eqe {
409 u8 type;
410 u8 port;
411 u32 param;
412};
413
414struct mlx4_slave_event_eq_info {
Marcel Apfelbaum803143f2012-01-19 09:45:46 +0000415 int eqn;
Jack Morgenstein623ed842011-12-13 04:10:33 +0000416 u16 token;
Jack Morgenstein623ed842011-12-13 04:10:33 +0000417};
418
Roland Dreier225c7b12007-05-08 18:00:38 -0700419struct mlx4_profile {
420 int num_qp;
421 int rdmarc_per_qp;
422 int num_srq;
423 int num_cq;
424 int num_mcg;
425 int num_mpt;
Roland Dreierdb5a7a62012-03-05 10:05:28 -0800426 unsigned num_mtt;
Roland Dreier225c7b12007-05-08 18:00:38 -0700427};
428
429struct mlx4_fw {
430 u64 clr_int_base;
431 u64 catas_offset;
Jack Morgenstein623ed842011-12-13 04:10:33 +0000432 u64 comm_base;
Eugenia Emantayevddd8a6c2013-04-23 06:06:48 +0000433 u64 clock_offset;
Roland Dreier225c7b12007-05-08 18:00:38 -0700434 struct mlx4_icm *fw_icm;
435 struct mlx4_icm *aux_icm;
436 u32 catas_size;
437 u16 fw_pages;
438 u8 clr_int_bar;
439 u8 catas_bar;
Jack Morgenstein623ed842011-12-13 04:10:33 +0000440 u8 comm_bar;
Eugenia Emantayevddd8a6c2013-04-23 06:06:48 +0000441 u8 clock_bar;
Jack Morgenstein623ed842011-12-13 04:10:33 +0000442};
443
444struct mlx4_comm {
445 u32 slave_write;
446 u32 slave_read;
Roland Dreier225c7b12007-05-08 18:00:38 -0700447};
448
Eugenia Emantayevffe455a2011-12-13 04:16:21 +0000449enum {
450 MLX4_MCAST_CONFIG = 0,
451 MLX4_MCAST_DISABLE = 1,
452 MLX4_MCAST_ENABLE = 2,
453};
454
Jack Morgenstein623ed842011-12-13 04:10:33 +0000455#define VLAN_FLTR_SIZE 128
456
457struct mlx4_vlan_fltr {
458 __be32 entry[VLAN_FLTR_SIZE];
459};
460
Eugenia Emantayevffe455a2011-12-13 04:16:21 +0000461struct mlx4_mcast_entry {
462 struct list_head list;
463 u64 addr;
464};
465
Yevgeny Petrilinb12d93d2011-03-22 22:38:24 +0000466struct mlx4_promisc_qp {
467 struct list_head list;
468 u32 qpn;
469};
470
471struct mlx4_steer_index {
472 struct list_head list;
473 unsigned int index;
474 struct list_head duplicates;
475};
476
Marcel Apfelbaum803143f2012-01-19 09:45:46 +0000477#define MLX4_EVENT_TYPES_NUM 64
478
Jack Morgenstein623ed842011-12-13 04:10:33 +0000479struct mlx4_slave_state {
480 u8 comm_toggle;
481 u8 last_cmd;
482 u8 init_port_mask;
483 bool active;
Jack Morgenstein2c957ff2013-11-03 10:03:21 +0200484 bool old_vlan_api;
Moshe Shemeshb42959d2016-09-22 12:11:16 +0300485 bool vst_qinq_supported;
Jack Morgenstein623ed842011-12-13 04:10:33 +0000486 u8 function;
487 dma_addr_t vhcr_dma;
Shaker Daibes40fb4fc2017-01-29 18:56:18 +0200488 u16 user_mtu[MLX4_MAX_PORTS + 1];
Jack Morgenstein623ed842011-12-13 04:10:33 +0000489 u16 mtu[MLX4_MAX_PORTS + 1];
490 __be32 ib_cap_mask[MLX4_MAX_PORTS + 1];
491 struct mlx4_slave_eqe eq[MLX4_MFUNC_MAX_EQES];
492 struct list_head mcast_filters[MLX4_MAX_PORTS + 1];
493 struct mlx4_vlan_fltr *vlan_filter[MLX4_MAX_PORTS + 1];
Marcel Apfelbaum803143f2012-01-19 09:45:46 +0000494 /* event type to eq number lookup */
495 struct mlx4_slave_event_eq_info event_eq[MLX4_EVENT_TYPES_NUM];
Jack Morgenstein623ed842011-12-13 04:10:33 +0000496 u16 eq_pi;
497 u16 eq_ci;
498 spinlock_t lock;
499 /*initialized via the kzalloc*/
500 u8 is_slave_going_down;
501 u32 cookie;
Jack Morgenstein993c4012012-08-03 08:40:48 +0000502 enum slave_port_state port_state[MLX4_MAX_PORTS + 1];
Jack Morgenstein623ed842011-12-13 04:10:33 +0000503};
504
Rony Efraim0eb62b92013-04-25 05:22:26 +0000505#define MLX4_VGT 4095
506#define NO_INDX (-1)
507
508struct mlx4_vport_state {
509 u64 mac;
510 u16 default_vlan;
511 u8 default_qos;
Moshe Shemesh7c3d21c2016-09-22 12:11:13 +0300512 __be16 vlan_proto;
Rony Efraim0eb62b92013-04-25 05:22:26 +0000513 u32 tx_rate;
514 bool spoofchk;
Rony Efraim948e3062013-06-13 13:19:11 +0300515 u32 link_state;
Ido Shamay08068cd2015-04-02 16:31:15 +0300516 u8 qos_vport;
Yishai Hadas773af942015-03-03 10:54:48 +0200517 __be64 guid;
Rony Efraim0eb62b92013-04-25 05:22:26 +0000518};
519
520struct mlx4_vf_admin_state {
521 struct mlx4_vport_state vport[MLX4_MAX_PORTS + 1];
Jack Morgenstein99ec41d2014-05-29 16:31:03 +0300522 u8 enable_smi[MLX4_MAX_PORTS + 1];
Rony Efraim0eb62b92013-04-25 05:22:26 +0000523};
524
525struct mlx4_vport_oper_state {
526 struct mlx4_vport_state state;
527 int mac_idx;
528 int vlan_idx;
529};
Jack Morgenstein99ec41d2014-05-29 16:31:03 +0300530
Rony Efraim0eb62b92013-04-25 05:22:26 +0000531struct mlx4_vf_oper_state {
532 struct mlx4_vport_oper_state vport[MLX4_MAX_PORTS + 1];
Jack Morgenstein99ec41d2014-05-29 16:31:03 +0300533 u8 smi_enabled[MLX4_MAX_PORTS + 1];
Rony Efraim0eb62b92013-04-25 05:22:26 +0000534};
535
Jack Morgenstein623ed842011-12-13 04:10:33 +0000536struct slave_list {
537 struct mutex mutex;
538 struct list_head res_list[MLX4_NUM_OF_RESOURCE_TYPE];
539};
540
Jack Morgenstein5a0d0a62013-11-03 10:03:23 +0200541struct resource_allocator {
Jack Morgenstein146f3ef2013-11-03 10:03:25 +0200542 spinlock_t alloc_lock; /* protect quotas */
Jack Morgenstein5a0d0a62013-11-03 10:03:23 +0200543 union {
544 int res_reserved;
545 int res_port_rsvd[MLX4_MAX_PORTS];
546 };
547 union {
548 int res_free;
549 int res_port_free[MLX4_MAX_PORTS];
550 };
551 int *quota;
552 int *allocated;
553 int *guaranteed;
554};
555
Jack Morgenstein623ed842011-12-13 04:10:33 +0000556struct mlx4_resource_tracker {
557 spinlock_t lock;
558 /* tree for each resources */
Hadar Hen Zion4af1c042012-07-05 04:03:41 +0000559 struct rb_root res_tree[MLX4_NUM_OF_RESOURCE_TYPE];
Jack Morgenstein623ed842011-12-13 04:10:33 +0000560 /* num_of_slave's lists, one per slave */
561 struct slave_list *slave_list;
Jack Morgenstein5a0d0a62013-11-03 10:03:23 +0200562 struct resource_allocator res_alloc[MLX4_NUM_OF_RESOURCE_TYPE];
Jack Morgenstein623ed842011-12-13 04:10:33 +0000563};
564
565#define SLAVE_EVENT_EQ_SIZE 128
566struct mlx4_slave_event_eq {
567 u32 eqn;
568 u32 cons;
569 u32 prod;
Jack Morgenstein992e8e6e2012-08-03 08:40:54 +0000570 spinlock_t event_lock;
Jack Morgenstein623ed842011-12-13 04:10:33 +0000571 struct mlx4_eqe event_eqe[SLAVE_EVENT_EQ_SIZE];
572};
573
Ido Shamay666672d2015-04-02 16:31:14 +0300574struct mlx4_qos_manager {
575 int num_of_qos_vfs;
576 DECLARE_BITMAP(priority_bm, MLX4_NUM_UP);
577};
578
Jack Morgenstein623ed842011-12-13 04:10:33 +0000579struct mlx4_master_qp0_state {
580 int proxy_qp0_active;
581 int qp0_active;
582 int port_active;
583};
584
585struct mlx4_mfunc_master_ctx {
586 struct mlx4_slave_state *slave_state;
Rony Efraim0eb62b92013-04-25 05:22:26 +0000587 struct mlx4_vf_admin_state *vf_admin;
588 struct mlx4_vf_oper_state *vf_oper;
Jack Morgenstein623ed842011-12-13 04:10:33 +0000589 struct mlx4_master_qp0_state qp0_state[MLX4_MAX_PORTS + 1];
590 int init_port_ref[MLX4_MAX_PORTS + 1];
591 u16 max_mtu[MLX4_MAX_PORTS + 1];
Shaker Daibes40fb4fc2017-01-29 18:56:18 +0200592 u16 max_user_mtu[MLX4_MAX_PORTS + 1];
Eugenia Emantayev2a500092016-04-20 16:01:17 +0300593 u8 pptx;
594 u8 pprx;
Jack Morgenstein623ed842011-12-13 04:10:33 +0000595 int disable_mcast_ref[MLX4_MAX_PORTS + 1];
596 struct mlx4_resource_tracker res_tracker;
597 struct workqueue_struct *comm_wq;
598 struct work_struct comm_work;
599 struct work_struct slave_event_work;
600 struct work_struct slave_flr_event_work;
601 spinlock_t slave_state_lock;
Jack Morgensteinf5311ac2011-12-13 04:12:13 +0000602 __be32 comm_arm_bit_vector[4];
Jack Morgenstein623ed842011-12-13 04:10:33 +0000603 struct mlx4_eqe cmd_eqe;
604 struct mlx4_slave_event_eq slave_eq;
605 struct mutex gen_eqe_mutex[MLX4_MFUNC_MAX];
Ido Shamay666672d2015-04-02 16:31:14 +0300606 struct mlx4_qos_manager qos_ctl[MLX4_MAX_PORTS + 1];
Jack Morgenstein623ed842011-12-13 04:10:33 +0000607};
608
609struct mlx4_mfunc {
610 struct mlx4_comm __iomem *comm;
611 struct mlx4_vhcr_cmd *vhcr;
612 dma_addr_t vhcr_dma;
613
614 struct mlx4_mfunc_master_ctx master;
615};
616
Yevgeny Petrilinfe6f7002013-07-28 18:54:21 +0300617#define MGM_QPN_MASK 0x00FFFFFF
618#define MGM_BLCK_LB_BIT 30
619
620struct mlx4_mgm {
621 __be32 next_gid_index;
622 __be32 members_count;
623 u32 reserved[2];
624 u8 gid[16];
625 __be32 qp[MLX4_MAX_QP_PER_MGM];
626};
627
Roland Dreier225c7b12007-05-08 18:00:38 -0700628struct mlx4_cmd {
629 struct pci_pool *pool;
630 void __iomem *hcr;
Roland Dreierf3d4c892012-09-25 21:24:07 -0700631 struct mutex slave_cmd_mutex;
Roland Dreier225c7b12007-05-08 18:00:38 -0700632 struct semaphore poll_sem;
633 struct semaphore event_sem;
Jack Morgensteina7e1f042016-09-20 14:39:42 +0300634 struct rw_semaphore switch_sem;
Roland Dreier225c7b12007-05-08 18:00:38 -0700635 int max_cmds;
636 spinlock_t context_lock;
637 int free_head;
638 struct mlx4_cmd_context *context;
639 u16 token_mask;
640 u8 use_events;
641 u8 toggle;
Jack Morgenstein623ed842011-12-13 04:10:33 +0000642 u8 comm_toggle;
Matan Barakffc39f62014-11-13 14:45:29 +0200643 u8 initialized;
Roland Dreier225c7b12007-05-08 18:00:38 -0700644};
645
Jack Morgensteinb01978c2013-06-27 19:05:21 +0300646enum {
647 MLX4_VF_IMMED_VLAN_FLAG_VLAN = 1 << 0,
648 MLX4_VF_IMMED_VLAN_FLAG_QOS = 1 << 1,
Rony Efraim0a6eac22013-06-27 19:05:22 +0300649 MLX4_VF_IMMED_VLAN_FLAG_LINK_DISABLE = 1 << 2,
Jack Morgensteinb01978c2013-06-27 19:05:21 +0300650};
651struct mlx4_vf_immed_vlan_work {
652 struct work_struct work;
653 struct mlx4_priv *priv;
654 int flags;
655 int slave;
656 int vlan_ix;
657 int orig_vlan_ix;
658 u8 port;
659 u8 qos;
Ido Shamay08068cd2015-04-02 16:31:15 +0300660 u8 qos_vport;
Jack Morgensteinb01978c2013-06-27 19:05:21 +0300661 u16 vlan_id;
662 u16 orig_vlan_id;
Moshe Shemesh7c3d21c2016-09-22 12:11:13 +0300663 __be16 vlan_proto;
Jack Morgensteinb01978c2013-06-27 19:05:21 +0300664};
665
666
Roland Dreier225c7b12007-05-08 18:00:38 -0700667struct mlx4_uar_table {
668 struct mlx4_bitmap bitmap;
669};
670
671struct mlx4_mr_table {
672 struct mlx4_bitmap mpt_bitmap;
673 struct mlx4_buddy mtt_buddy;
674 u64 mtt_base;
675 u64 mpt_base;
676 struct mlx4_icm_table mtt_table;
677 struct mlx4_icm_table dmpt_table;
678};
679
680struct mlx4_cq_table {
681 struct mlx4_bitmap bitmap;
682 spinlock_t lock;
683 struct radix_tree_root tree;
684 struct mlx4_icm_table table;
685 struct mlx4_icm_table cmpt_table;
686};
687
688struct mlx4_eq_table {
689 struct mlx4_bitmap bitmap;
Yevgeny Petrilinb8dd7862008-12-22 07:15:03 -0800690 char *irq_names;
Roland Dreier225c7b12007-05-08 18:00:38 -0700691 void __iomem *clr_int;
Yevgeny Petrilinb8dd7862008-12-22 07:15:03 -0800692 void __iomem **uar_map;
Roland Dreier225c7b12007-05-08 18:00:38 -0700693 u32 clr_mask;
Yevgeny Petrilinb8dd7862008-12-22 07:15:03 -0800694 struct mlx4_eq *eq;
Roland Dreierfa0681d2009-09-05 20:24:49 -0700695 struct mlx4_icm_table table;
Roland Dreier225c7b12007-05-08 18:00:38 -0700696 struct mlx4_icm_table cmpt_table;
697 int have_irq;
698 u8 inta_pin;
699};
700
701struct mlx4_srq_table {
702 struct mlx4_bitmap bitmap;
703 spinlock_t lock;
704 struct radix_tree_root tree;
705 struct mlx4_icm_table table;
706 struct mlx4_icm_table cmpt_table;
707};
708
Matan Barakd57febe2014-12-11 10:57:57 +0200709enum mlx4_qp_table_zones {
710 MLX4_QP_TABLE_ZONE_GENERAL,
711 MLX4_QP_TABLE_ZONE_RSS,
712 MLX4_QP_TABLE_ZONE_RAW_ETH,
713 MLX4_QP_TABLE_ZONE_NUM
714};
715
Roland Dreier225c7b12007-05-08 18:00:38 -0700716struct mlx4_qp_table {
Matan Barakd57febe2014-12-11 10:57:57 +0200717 struct mlx4_bitmap *bitmap_gen;
718 struct mlx4_zone_allocator *zones;
719 u32 zones_uids[MLX4_QP_TABLE_ZONE_NUM];
Roland Dreier225c7b12007-05-08 18:00:38 -0700720 u32 rdmarc_base;
721 int rdmarc_shift;
722 spinlock_t lock;
723 struct mlx4_icm_table qp_table;
724 struct mlx4_icm_table auxc_table;
725 struct mlx4_icm_table altc_table;
726 struct mlx4_icm_table rdmarc_table;
727 struct mlx4_icm_table cmpt_table;
728};
729
730struct mlx4_mcg_table {
731 struct mutex mutex;
732 struct mlx4_bitmap bitmap;
733 struct mlx4_icm_table table;
734};
735
736struct mlx4_catas_err {
737 u32 __iomem *map;
Jack Morgensteinee49bd92007-07-12 17:50:45 +0300738 struct timer_list timer;
739 struct list_head list;
Roland Dreier225c7b12007-05-08 18:00:38 -0700740};
741
Yevgeny Petrilin2a2336f2008-10-22 11:44:46 -0700742#define MLX4_MAX_MAC_NUM 128
743#define MLX4_MAC_TABLE_SIZE (MLX4_MAX_MAC_NUM << 3)
744
745struct mlx4_mac_table {
746 __be64 entries[MLX4_MAX_MAC_NUM];
747 int refs[MLX4_MAX_MAC_NUM];
Moni Shoua5f613852015-12-06 18:07:41 +0200748 bool is_dup[MLX4_MAX_MAC_NUM];
Yevgeny Petrilin2a2336f2008-10-22 11:44:46 -0700749 struct mutex mutex;
750 int total;
751 int max;
752};
753
Jack Morgenstein111c6092014-05-27 09:26:38 +0300754#define MLX4_ROCE_GID_ENTRY_SIZE 16
755
756struct mlx4_roce_gid_entry {
757 u8 raw[MLX4_ROCE_GID_ENTRY_SIZE];
758};
759
760struct mlx4_roce_gid_table {
761 struct mlx4_roce_gid_entry roce_gids[MLX4_ROCE_MAX_GIDS];
762 struct mutex mutex;
763};
764
Yevgeny Petrilin2a2336f2008-10-22 11:44:46 -0700765#define MLX4_MAX_VLAN_NUM 128
766#define MLX4_VLAN_TABLE_SIZE (MLX4_MAX_VLAN_NUM << 2)
767
768struct mlx4_vlan_table {
769 __be32 entries[MLX4_MAX_VLAN_NUM];
770 int refs[MLX4_MAX_VLAN_NUM];
Moni Shoua5f613852015-12-06 18:07:41 +0200771 int is_dup[MLX4_MAX_VLAN_NUM];
Yevgeny Petrilin2a2336f2008-10-22 11:44:46 -0700772 struct mutex mutex;
773 int total;
774 int max;
775};
776
Shaker Daibes1f8176f2017-01-29 18:56:20 +0200777#define SET_PORT_GEN_ALL_VALID (MLX4_FLAG_V_MTU_MASK | \
778 MLX4_FLAG_V_PPRX_MASK | \
779 MLX4_FLAG_V_PPTX_MASK)
Eugenia Emantayevffe455a2011-12-13 04:16:21 +0000780#define SET_PORT_PROMISC_SHIFT 31
781#define SET_PORT_MC_PROMISC_SHIFT 30
782
783enum {
784 MCAST_DIRECT_ONLY = 0,
785 MCAST_DIRECT = 1,
786 MCAST_DEFAULT = 2
787};
788
789
790struct mlx4_set_port_general_context {
Muhammad Mahajna78500b82015-04-02 16:31:22 +0300791 u16 reserved1;
Shaker Daibes40fb4fc2017-01-29 18:56:18 +0200792 u8 flags2;
Eugenia Emantayevffe455a2011-12-13 04:16:21 +0000793 u8 flags;
Moni Shoua1da494c2016-01-14 17:50:34 +0200794 union {
795 u8 ignore_fcs;
796 u8 roce_mode;
797 };
Muhammad Mahajna78500b82015-04-02 16:31:22 +0300798 u8 reserved2;
Eugenia Emantayevffe455a2011-12-13 04:16:21 +0000799 __be16 mtu;
800 u8 pptx;
801 u8 pfctx;
802 u16 reserved3;
803 u8 pprx;
804 u8 pfcrx;
805 u16 reserved4;
Hadar Hen Zion77fc29c2015-07-27 14:46:31 +0300806 u32 reserved5;
807 u8 phv_en;
Shaker Daibes40fb4fc2017-01-29 18:56:18 +0200808 u8 reserved6[5];
809 __be16 user_mtu;
Eugenia Emantayevffe455a2011-12-13 04:16:21 +0000810};
811
812struct mlx4_set_port_rqp_calc_context {
813 __be32 base_qpn;
814 u8 rererved;
815 u8 n_mac;
816 u8 n_vlan;
817 u8 n_prio;
818 u8 reserved2[3];
819 u8 mac_miss;
820 u8 intra_no_vlan;
821 u8 no_vlan;
822 u8 intra_vlan_miss;
823 u8 vlan_miss;
824 u8 reserved3[3];
825 u8 no_vlan_prio;
826 __be32 promisc;
827 __be32 mcast;
828};
829
Yevgeny Petrilin2a2336f2008-10-22 11:44:46 -0700830struct mlx4_port_info {
831 struct mlx4_dev *dev;
832 int port;
Yevgeny Petrilin7ff93f82008-10-22 15:38:42 -0700833 char dev_name[16];
834 struct device_attribute port_attr;
835 enum mlx4_port_type tmp_type;
Or Gerlitz096335b2012-01-11 19:02:17 +0200836 char dev_mtu_name[16];
837 struct device_attribute port_mtu_attr;
Yevgeny Petrilin2a2336f2008-10-22 11:44:46 -0700838 struct mlx4_mac_table mac_table;
839 struct mlx4_vlan_table vlan_table;
Jack Morgenstein111c6092014-05-27 09:26:38 +0300840 struct mlx4_roce_gid_table gid_table;
Yevgeny Petrilin16792002011-03-22 22:38:31 +0000841 int base_qpn;
Matan Barakc66fa192015-05-31 09:30:16 +0300842 struct cpu_rmap *rmap;
Jiri Pirko09d4d082016-02-26 17:32:24 +0100843 struct devlink_port devlink_port;
Yevgeny Petrilin2a2336f2008-10-22 11:44:46 -0700844};
845
Yevgeny Petrilin27bf91d2009-03-18 19:45:11 -0700846struct mlx4_sense {
847 struct mlx4_dev *dev;
848 u8 do_sense_port[MLX4_MAX_PORTS + 1];
849 u8 sense_allowed[MLX4_MAX_PORTS + 1];
850 struct delayed_work sense_poll;
851};
852
Yevgeny Petrilin0b7ca5a2011-03-22 22:37:47 +0000853struct mlx4_msix_ctl {
Matan Barakc66fa192015-05-31 09:30:16 +0300854 DECLARE_BITMAP(pool_bm, MAX_MSIX);
Yevgeny Petrilin730c41d2012-02-21 03:39:32 +0000855 struct mutex pool_lock;
Yevgeny Petrilin0b7ca5a2011-03-22 22:37:47 +0000856};
857
Yevgeny Petrilinb12d93d2011-03-22 22:38:24 +0000858struct mlx4_steer {
859 struct list_head promisc_qps[MLX4_NUM_STEERS];
860 struct list_head steer_entries[MLX4_NUM_STEERS];
Yevgeny Petrilinb12d93d2011-03-22 22:38:24 +0000861};
862
Roland Dreier839f1242012-09-27 09:23:41 -0700863enum {
864 MLX4_PCI_DEV_IS_VF = 1 << 0,
Roland Dreierca3e57a2012-09-27 09:53:05 -0700865 MLX4_PCI_DEV_FORCE_SENSE_PORT = 1 << 1,
Roland Dreier839f1242012-09-27 09:23:41 -0700866};
867
Jack Morgenstein7c6d74d2013-12-08 16:50:17 +0200868enum {
869 MLX4_NO_RR = 0,
870 MLX4_USE_RR = 1,
871};
872
Roland Dreier225c7b12007-05-08 18:00:38 -0700873struct mlx4_priv {
874 struct mlx4_dev dev;
875
876 struct list_head dev_list;
877 struct list_head ctx_list;
878 spinlock_t ctx_lock;
879
Roland Dreier839f1242012-09-27 09:23:41 -0700880 int pci_dev_data;
Wei Yangbefdf892014-04-14 09:51:19 +0800881 int removed;
Roland Dreier839f1242012-09-27 09:23:41 -0700882
Yevgeny Petrilin62968832008-04-23 11:55:45 -0700883 struct list_head pgdir_list;
884 struct mutex pgdir_mutex;
885
Roland Dreier225c7b12007-05-08 18:00:38 -0700886 struct mlx4_fw fw;
887 struct mlx4_cmd cmd;
Jack Morgenstein623ed842011-12-13 04:10:33 +0000888 struct mlx4_mfunc mfunc;
Roland Dreier225c7b12007-05-08 18:00:38 -0700889
890 struct mlx4_bitmap pd_bitmap;
Sean Hefty012a8ff2011-06-02 09:01:33 -0700891 struct mlx4_bitmap xrcd_bitmap;
Roland Dreier225c7b12007-05-08 18:00:38 -0700892 struct mlx4_uar_table uar_table;
893 struct mlx4_mr_table mr_table;
894 struct mlx4_cq_table cq_table;
895 struct mlx4_eq_table eq_table;
896 struct mlx4_srq_table srq_table;
897 struct mlx4_qp_table qp_table;
898 struct mlx4_mcg_table mcg_table;
Or Gerlitzf2a3f6a2011-06-15 14:47:14 +0000899 struct mlx4_bitmap counters_bitmap;
Eran Ben Elisha6de5f7f2015-06-15 17:59:02 +0300900 int def_counter[MLX4_MAX_PORTS];
Roland Dreier225c7b12007-05-08 18:00:38 -0700901
902 struct mlx4_catas_err catas_err;
903
904 void __iomem *clr_base;
905
906 struct mlx4_uar driver_uar;
907 void __iomem *kar;
Yevgeny Petrilin2a2336f2008-10-22 11:44:46 -0700908 struct mlx4_port_info port[MLX4_MAX_PORTS + 1];
Yevgeny Petrilin27bf91d2009-03-18 19:45:11 -0700909 struct mlx4_sense sense;
Yevgeny Petrilin7ff93f82008-10-22 15:38:42 -0700910 struct mutex port_mutex;
Yevgeny Petrilin0b7ca5a2011-03-22 22:37:47 +0000911 struct mlx4_msix_ctl msix_ctl;
Yevgeny Petrilinb12d93d2011-03-22 22:38:24 +0000912 struct mlx4_steer *steer;
Eli Cohenc1b43dc2011-03-22 22:38:41 +0000913 struct list_head bf_list;
914 struct mutex bf_mutex;
915 struct io_mapping *bf_mapping;
Eugenia Emantayevddd8a6c2013-04-23 06:06:48 +0000916 void __iomem *clock_mapping;
Jack Morgensteinea51b372011-12-13 04:13:48 +0000917 int reserved_mtts;
Hadar Hen Zion0ff1fb62012-07-05 04:03:46 +0000918 int fs_hash_mode;
Jack Morgenstein54679e12012-08-03 08:40:43 +0000919 u8 virt2phys_pkey[MLX4_MFUNC_MAX][MLX4_MAX_PORTS][MLX4_MAX_PORT_PKEYS];
Moni Shoua53f33ae2015-02-03 16:48:33 +0200920 struct mlx4_port_map v2p; /* cached port mapping configuration */
921 struct mutex bond_mutex; /* for bond mode */
Jack Morgensteinafa8fd12012-08-03 08:40:56 +0000922 __be64 slave_node_guids[MLX4_MFUNC_MAX];
Jack Morgenstein54679e12012-08-03 08:40:43 +0000923
Yevgeny Petrilinfe6f7002013-07-28 18:54:21 +0300924 atomic_t opreq_count;
925 struct work_struct opreq_task;
Roland Dreier225c7b12007-05-08 18:00:38 -0700926};
927
928static inline struct mlx4_priv *mlx4_priv(struct mlx4_dev *dev)
929{
930 return container_of(dev, struct mlx4_priv, dev);
931}
932
Yevgeny Petrilin27bf91d2009-03-18 19:45:11 -0700933#define MLX4_SENSE_RANGE (HZ * 3)
934
935extern struct workqueue_struct *mlx4_wq;
936
Roland Dreier225c7b12007-05-08 18:00:38 -0700937u32 mlx4_bitmap_alloc(struct mlx4_bitmap *bitmap);
Jack Morgenstein7c6d74d2013-12-08 16:50:17 +0200938void mlx4_bitmap_free(struct mlx4_bitmap *bitmap, u32 obj, int use_rr);
Eugenia Emantayevddae0342014-12-11 10:57:54 +0200939u32 mlx4_bitmap_alloc_range(struct mlx4_bitmap *bitmap, int cnt,
940 int align, u32 skip_mask);
Jack Morgenstein7c6d74d2013-12-08 16:50:17 +0200941void mlx4_bitmap_free_range(struct mlx4_bitmap *bitmap, u32 obj, int cnt,
942 int use_rr);
Eli Cohen42d1e012011-03-22 22:38:45 +0000943u32 mlx4_bitmap_avail(struct mlx4_bitmap *bitmap);
Yevgeny Petrilin93fc9e12008-10-22 10:25:29 -0700944int mlx4_bitmap_init(struct mlx4_bitmap *bitmap, u32 num, u32 mask,
945 u32 reserved_bot, u32 resetrved_top);
Roland Dreier225c7b12007-05-08 18:00:38 -0700946void mlx4_bitmap_cleanup(struct mlx4_bitmap *bitmap);
947
948int mlx4_reset(struct mlx4_dev *dev);
949
Yevgeny Petrilinb8dd7862008-12-22 07:15:03 -0800950int mlx4_alloc_eq_table(struct mlx4_dev *dev);
951void mlx4_free_eq_table(struct mlx4_dev *dev);
952
Roland Dreier225c7b12007-05-08 18:00:38 -0700953int mlx4_init_pd_table(struct mlx4_dev *dev);
Sean Hefty012a8ff2011-06-02 09:01:33 -0700954int mlx4_init_xrcd_table(struct mlx4_dev *dev);
Roland Dreier225c7b12007-05-08 18:00:38 -0700955int mlx4_init_uar_table(struct mlx4_dev *dev);
956int mlx4_init_mr_table(struct mlx4_dev *dev);
957int mlx4_init_eq_table(struct mlx4_dev *dev);
958int mlx4_init_cq_table(struct mlx4_dev *dev);
959int mlx4_init_qp_table(struct mlx4_dev *dev);
960int mlx4_init_srq_table(struct mlx4_dev *dev);
961int mlx4_init_mcg_table(struct mlx4_dev *dev);
962
963void mlx4_cleanup_pd_table(struct mlx4_dev *dev);
Sean Hefty012a8ff2011-06-02 09:01:33 -0700964void mlx4_cleanup_xrcd_table(struct mlx4_dev *dev);
Roland Dreier225c7b12007-05-08 18:00:38 -0700965void mlx4_cleanup_uar_table(struct mlx4_dev *dev);
966void mlx4_cleanup_mr_table(struct mlx4_dev *dev);
967void mlx4_cleanup_eq_table(struct mlx4_dev *dev);
968void mlx4_cleanup_cq_table(struct mlx4_dev *dev);
969void mlx4_cleanup_qp_table(struct mlx4_dev *dev);
970void mlx4_cleanup_srq_table(struct mlx4_dev *dev);
971void mlx4_cleanup_mcg_table(struct mlx4_dev *dev);
Jiri Kosina40f22872014-05-11 15:15:12 +0300972int __mlx4_qp_alloc_icm(struct mlx4_dev *dev, int qpn, gfp_t gfp);
Eli Cohenc82e9aa2011-12-13 04:15:24 +0000973void __mlx4_qp_free_icm(struct mlx4_dev *dev, int qpn);
974int __mlx4_cq_alloc_icm(struct mlx4_dev *dev, int *cqn);
975void __mlx4_cq_free_icm(struct mlx4_dev *dev, int cqn);
976int __mlx4_srq_alloc_icm(struct mlx4_dev *dev, int *srqn);
977void __mlx4_srq_free_icm(struct mlx4_dev *dev, int srqn);
Shani Michaelib20e5192013-02-06 16:19:08 +0000978int __mlx4_mpt_reserve(struct mlx4_dev *dev);
979void __mlx4_mpt_release(struct mlx4_dev *dev, u32 index);
Jiri Kosina40f22872014-05-11 15:15:12 +0300980int __mlx4_mpt_alloc_icm(struct mlx4_dev *dev, u32 index, gfp_t gfp);
Shani Michaelib20e5192013-02-06 16:19:08 +0000981void __mlx4_mpt_free_icm(struct mlx4_dev *dev, u32 index);
Eli Cohenc82e9aa2011-12-13 04:15:24 +0000982u32 __mlx4_alloc_mtt_range(struct mlx4_dev *dev, int order);
983void __mlx4_free_mtt_range(struct mlx4_dev *dev, u32 first_seg, int order);
Roland Dreier225c7b12007-05-08 18:00:38 -0700984
Jack Morgenstein623ed842011-12-13 04:10:33 +0000985int mlx4_WRITE_MTT_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_SYNC_TPT_wrapper(struct mlx4_dev *dev, int slave,
991 struct mlx4_vhcr *vhcr,
992 struct mlx4_cmd_mailbox *inbox,
993 struct mlx4_cmd_mailbox *outbox,
994 struct mlx4_cmd_info *cmd);
995int mlx4_SW2HW_MPT_wrapper(struct mlx4_dev *dev, int slave,
996 struct mlx4_vhcr *vhcr,
997 struct mlx4_cmd_mailbox *inbox,
998 struct mlx4_cmd_mailbox *outbox,
999 struct mlx4_cmd_info *cmd);
1000int mlx4_HW2SW_MPT_wrapper(struct mlx4_dev *dev, int slave,
1001 struct mlx4_vhcr *vhcr,
1002 struct mlx4_cmd_mailbox *inbox,
1003 struct mlx4_cmd_mailbox *outbox,
1004 struct mlx4_cmd_info *cmd);
1005int mlx4_QUERY_MPT_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_SW2HW_EQ_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);
Matan Barakd475c952014-11-02 16:26:17 +02001015int mlx4_CONFIG_DEV_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);
Jack Morgenstein623ed842011-12-13 04:10:33 +00001020int mlx4_DMA_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);
Eli Cohenc82e9aa2011-12-13 04:15:24 +00001025int __mlx4_qp_reserve_range(struct mlx4_dev *dev, int cnt, int align,
Eugenia Emantayevddae0342014-12-11 10:57:54 +02001026 int *base, u8 flags);
Eli Cohenc82e9aa2011-12-13 04:15:24 +00001027void __mlx4_qp_release_range(struct mlx4_dev *dev, int base_qpn, int cnt);
1028int __mlx4_register_mac(struct mlx4_dev *dev, u8 port, u64 mac);
1029void __mlx4_unregister_mac(struct mlx4_dev *dev, u8 port, u64 mac);
Eli Cohenc82e9aa2011-12-13 04:15:24 +00001030int __mlx4_write_mtt(struct mlx4_dev *dev, struct mlx4_mtt *mtt,
1031 int start_index, int npages, u64 *page_list);
Jack Morgensteinba062d52012-05-15 10:35:03 +00001032int __mlx4_counter_alloc(struct mlx4_dev *dev, u32 *idx);
1033void __mlx4_counter_free(struct mlx4_dev *dev, u32 idx);
Eran Ben Elisha62a89052015-06-15 17:59:08 +03001034int mlx4_calc_vf_counters(struct mlx4_dev *dev, int slave, int port,
1035 struct mlx4_counter *data);
Jack Morgensteinba062d52012-05-15 10:35:03 +00001036int __mlx4_xrcd_alloc(struct mlx4_dev *dev, u32 *xrcdn);
1037void __mlx4_xrcd_free(struct mlx4_dev *dev, u32 xrcdn);
Jack Morgenstein623ed842011-12-13 04:10:33 +00001038
Jack Morgensteinee49bd92007-07-12 17:50:45 +03001039void mlx4_start_catas_poll(struct mlx4_dev *dev);
1040void mlx4_stop_catas_poll(struct mlx4_dev *dev);
Yishai Hadasad9a0bf2015-01-25 16:59:37 +02001041int mlx4_catas_init(struct mlx4_dev *dev);
1042void mlx4_catas_end(struct mlx4_dev *dev);
Jack Morgensteinee49bd92007-07-12 17:50:45 +03001043int mlx4_restart_one(struct pci_dev *pdev);
Roland Dreier225c7b12007-05-08 18:00:38 -07001044int mlx4_register_device(struct mlx4_dev *dev);
1045void mlx4_unregister_device(struct mlx4_dev *dev);
Jack Morgenstein00f5ce92012-06-19 11:21:40 +03001046void mlx4_dispatch_event(struct mlx4_dev *dev, enum mlx4_dev_event type,
1047 unsigned long param);
Roland Dreier225c7b12007-05-08 18:00:38 -07001048
1049struct mlx4_dev_cap;
1050struct mlx4_init_hca_param;
1051
1052u64 mlx4_make_profile(struct mlx4_dev *dev,
1053 struct mlx4_profile *request,
1054 struct mlx4_dev_cap *dev_cap,
1055 struct mlx4_init_hca_param *init_hca);
Jack Morgenstein623ed842011-12-13 04:10:33 +00001056void mlx4_master_comm_channel(struct work_struct *work);
1057void mlx4_gen_slave_eqe(struct work_struct *work);
1058void mlx4_master_handle_slave_flr(struct work_struct *work);
1059
1060int mlx4_ALLOC_RES_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_FREE_RES_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_MAP_EQ_wrapper(struct mlx4_dev *dev, int slave,
1071 struct mlx4_vhcr *vhcr, struct mlx4_cmd_mailbox *inbox,
1072 struct mlx4_cmd_mailbox *outbox,
1073 struct mlx4_cmd_info *cmd);
1074int mlx4_COMM_INT_wrapper(struct mlx4_dev *dev, int slave,
1075 struct mlx4_vhcr *vhcr,
1076 struct mlx4_cmd_mailbox *inbox,
1077 struct mlx4_cmd_mailbox *outbox,
1078 struct mlx4_cmd_info *cmd);
1079int mlx4_HW2SW_EQ_wrapper(struct mlx4_dev *dev, int slave,
1080 struct mlx4_vhcr *vhcr,
1081 struct mlx4_cmd_mailbox *inbox,
1082 struct mlx4_cmd_mailbox *outbox,
1083 struct mlx4_cmd_info *cmd);
1084int mlx4_QUERY_EQ_wrapper(struct mlx4_dev *dev, int slave,
1085 struct mlx4_vhcr *vhcr,
1086 struct mlx4_cmd_mailbox *inbox,
1087 struct mlx4_cmd_mailbox *outbox,
1088 struct mlx4_cmd_info *cmd);
1089int mlx4_SW2HW_CQ_wrapper(struct mlx4_dev *dev, int slave,
1090 struct mlx4_vhcr *vhcr,
1091 struct mlx4_cmd_mailbox *inbox,
1092 struct mlx4_cmd_mailbox *outbox,
1093 struct mlx4_cmd_info *cmd);
1094int mlx4_HW2SW_CQ_wrapper(struct mlx4_dev *dev, int slave,
1095 struct mlx4_vhcr *vhcr,
1096 struct mlx4_cmd_mailbox *inbox,
1097 struct mlx4_cmd_mailbox *outbox,
1098 struct mlx4_cmd_info *cmd);
1099int mlx4_QUERY_CQ_wrapper(struct mlx4_dev *dev, int slave,
1100 struct mlx4_vhcr *vhcr,
1101 struct mlx4_cmd_mailbox *inbox,
1102 struct mlx4_cmd_mailbox *outbox,
1103 struct mlx4_cmd_info *cmd);
1104int mlx4_MODIFY_CQ_wrapper(struct mlx4_dev *dev, int slave,
1105 struct mlx4_vhcr *vhcr,
1106 struct mlx4_cmd_mailbox *inbox,
1107 struct mlx4_cmd_mailbox *outbox,
1108 struct mlx4_cmd_info *cmd);
1109int mlx4_SW2HW_SRQ_wrapper(struct mlx4_dev *dev, int slave,
1110 struct mlx4_vhcr *vhcr,
1111 struct mlx4_cmd_mailbox *inbox,
1112 struct mlx4_cmd_mailbox *outbox,
1113 struct mlx4_cmd_info *cmd);
1114int mlx4_HW2SW_SRQ_wrapper(struct mlx4_dev *dev, int slave,
1115 struct mlx4_vhcr *vhcr,
1116 struct mlx4_cmd_mailbox *inbox,
1117 struct mlx4_cmd_mailbox *outbox,
1118 struct mlx4_cmd_info *cmd);
1119int mlx4_QUERY_SRQ_wrapper(struct mlx4_dev *dev, int slave,
1120 struct mlx4_vhcr *vhcr,
1121 struct mlx4_cmd_mailbox *inbox,
1122 struct mlx4_cmd_mailbox *outbox,
1123 struct mlx4_cmd_info *cmd);
1124int mlx4_ARM_SRQ_wrapper(struct mlx4_dev *dev, int slave,
1125 struct mlx4_vhcr *vhcr,
1126 struct mlx4_cmd_mailbox *inbox,
1127 struct mlx4_cmd_mailbox *outbox,
1128 struct mlx4_cmd_info *cmd);
1129int mlx4_GEN_QP_wrapper(struct mlx4_dev *dev, int slave,
1130 struct mlx4_vhcr *vhcr,
1131 struct mlx4_cmd_mailbox *inbox,
1132 struct mlx4_cmd_mailbox *outbox,
1133 struct mlx4_cmd_info *cmd);
1134int mlx4_RST2INIT_QP_wrapper(struct mlx4_dev *dev, int slave,
1135 struct mlx4_vhcr *vhcr,
1136 struct mlx4_cmd_mailbox *inbox,
1137 struct mlx4_cmd_mailbox *outbox,
1138 struct mlx4_cmd_info *cmd);
Jack Morgenstein54679e12012-08-03 08:40:43 +00001139int mlx4_INIT2INIT_QP_wrapper(struct mlx4_dev *dev, int slave,
1140 struct mlx4_vhcr *vhcr,
1141 struct mlx4_cmd_mailbox *inbox,
1142 struct mlx4_cmd_mailbox *outbox,
1143 struct mlx4_cmd_info *cmd);
Jack Morgenstein623ed842011-12-13 04:10:33 +00001144int mlx4_INIT2RTR_QP_wrapper(struct mlx4_dev *dev, int slave,
1145 struct mlx4_vhcr *vhcr,
1146 struct mlx4_cmd_mailbox *inbox,
1147 struct mlx4_cmd_mailbox *outbox,
1148 struct mlx4_cmd_info *cmd);
Jack Morgenstein54679e12012-08-03 08:40:43 +00001149int mlx4_RTR2RTS_QP_wrapper(struct mlx4_dev *dev, int slave,
1150 struct mlx4_vhcr *vhcr,
1151 struct mlx4_cmd_mailbox *inbox,
1152 struct mlx4_cmd_mailbox *outbox,
1153 struct mlx4_cmd_info *cmd);
1154int mlx4_RTS2RTS_QP_wrapper(struct mlx4_dev *dev, int slave,
1155 struct mlx4_vhcr *vhcr,
1156 struct mlx4_cmd_mailbox *inbox,
1157 struct mlx4_cmd_mailbox *outbox,
1158 struct mlx4_cmd_info *cmd);
1159int mlx4_SQERR2RTS_QP_wrapper(struct mlx4_dev *dev, int slave,
1160 struct mlx4_vhcr *vhcr,
1161 struct mlx4_cmd_mailbox *inbox,
1162 struct mlx4_cmd_mailbox *outbox,
1163 struct mlx4_cmd_info *cmd);
1164int mlx4_2ERR_QP_wrapper(struct mlx4_dev *dev, int slave,
1165 struct mlx4_vhcr *vhcr,
1166 struct mlx4_cmd_mailbox *inbox,
1167 struct mlx4_cmd_mailbox *outbox,
1168 struct mlx4_cmd_info *cmd);
1169int mlx4_RTS2SQD_QP_wrapper(struct mlx4_dev *dev, int slave,
1170 struct mlx4_vhcr *vhcr,
1171 struct mlx4_cmd_mailbox *inbox,
1172 struct mlx4_cmd_mailbox *outbox,
1173 struct mlx4_cmd_info *cmd);
1174int mlx4_SQD2SQD_QP_wrapper(struct mlx4_dev *dev, int slave,
1175 struct mlx4_vhcr *vhcr,
1176 struct mlx4_cmd_mailbox *inbox,
1177 struct mlx4_cmd_mailbox *outbox,
1178 struct mlx4_cmd_info *cmd);
1179int mlx4_SQD2RTS_QP_wrapper(struct mlx4_dev *dev, int slave,
1180 struct mlx4_vhcr *vhcr,
1181 struct mlx4_cmd_mailbox *inbox,
1182 struct mlx4_cmd_mailbox *outbox,
1183 struct mlx4_cmd_info *cmd);
Jack Morgenstein623ed842011-12-13 04:10:33 +00001184int mlx4_2RST_QP_wrapper(struct mlx4_dev *dev, int slave,
1185 struct mlx4_vhcr *vhcr,
1186 struct mlx4_cmd_mailbox *inbox,
1187 struct mlx4_cmd_mailbox *outbox,
1188 struct mlx4_cmd_info *cmd);
Jack Morgenstein54679e12012-08-03 08:40:43 +00001189int mlx4_QUERY_QP_wrapper(struct mlx4_dev *dev, int slave,
1190 struct mlx4_vhcr *vhcr,
1191 struct mlx4_cmd_mailbox *inbox,
1192 struct mlx4_cmd_mailbox *outbox,
1193 struct mlx4_cmd_info *cmd);
Jack Morgenstein623ed842011-12-13 04:10:33 +00001194
1195int mlx4_GEN_EQE(struct mlx4_dev *dev, int slave, struct mlx4_eqe *eqe);
Roland Dreier225c7b12007-05-08 18:00:38 -07001196
Matan Barakffc39f62014-11-13 14:45:29 +02001197enum {
1198 MLX4_CMD_CLEANUP_STRUCT = 1UL << 0,
1199 MLX4_CMD_CLEANUP_POOL = 1UL << 1,
1200 MLX4_CMD_CLEANUP_HCR = 1UL << 2,
1201 MLX4_CMD_CLEANUP_VHCR = 1UL << 3,
1202 MLX4_CMD_CLEANUP_ALL = (MLX4_CMD_CLEANUP_VHCR << 1) - 1
1203};
1204
Roland Dreier225c7b12007-05-08 18:00:38 -07001205int mlx4_cmd_init(struct mlx4_dev *dev);
Matan Barakffc39f62014-11-13 14:45:29 +02001206void mlx4_cmd_cleanup(struct mlx4_dev *dev, int cleanup_mask);
Jack Morgensteinab9c17a2011-12-13 04:18:30 +00001207int mlx4_multi_func_init(struct mlx4_dev *dev);
Yishai Hadas55ad3592015-01-25 16:59:42 +02001208int mlx4_ARM_COMM_CHANNEL(struct mlx4_dev *dev);
Jack Morgensteinab9c17a2011-12-13 04:18:30 +00001209void mlx4_multi_func_cleanup(struct mlx4_dev *dev);
Roland Dreier225c7b12007-05-08 18:00:38 -07001210void mlx4_cmd_event(struct mlx4_dev *dev, u16 token, u8 status, u64 out_param);
1211int mlx4_cmd_use_events(struct mlx4_dev *dev);
1212void mlx4_cmd_use_polling(struct mlx4_dev *dev);
1213
Jack Morgensteinab9c17a2011-12-13 04:18:30 +00001214int mlx4_comm_cmd(struct mlx4_dev *dev, u8 cmd, u16 param,
Yishai Hadas0cd93022015-01-25 16:59:43 +02001215 u16 op, unsigned long timeout);
Jack Morgensteinab9c17a2011-12-13 04:18:30 +00001216
Matan Barak3dca0f422014-12-11 10:57:53 +02001217void mlx4_cq_tasklet_cb(unsigned long data);
Roland Dreier225c7b12007-05-08 18:00:38 -07001218void mlx4_cq_completion(struct mlx4_dev *dev, u32 cqn);
1219void mlx4_cq_event(struct mlx4_dev *dev, u32 cqn, int event_type);
1220
1221void mlx4_qp_event(struct mlx4_dev *dev, u32 qpn, int event_type);
1222
1223void mlx4_srq_event(struct mlx4_dev *dev, u32 srqn, int event_type);
1224
Yishai Hadasf6bc11e2015-01-25 16:59:38 +02001225void mlx4_enter_error_state(struct mlx4_dev_persistent *persist);
Jack Morgensteind585df12017-01-30 15:11:45 +02001226int mlx4_comm_internal_err(u32 slave_read);
Roland Dreier225c7b12007-05-08 18:00:38 -07001227
Yevgeny Petrilinab6dc302011-04-06 23:24:42 +00001228int mlx4_SENSE_PORT(struct mlx4_dev *dev, int port,
1229 enum mlx4_port_type *type);
Yevgeny Petrilin27bf91d2009-03-18 19:45:11 -07001230void mlx4_do_sense_ports(struct mlx4_dev *dev,
1231 enum mlx4_port_type *stype,
1232 enum mlx4_port_type *defaults);
1233void mlx4_start_sense(struct mlx4_dev *dev);
1234void mlx4_stop_sense(struct mlx4_dev *dev);
1235void mlx4_sense_init(struct mlx4_dev *dev);
1236int mlx4_check_port_params(struct mlx4_dev *dev,
1237 enum mlx4_port_type *port_type);
1238int mlx4_change_port_types(struct mlx4_dev *dev,
1239 enum mlx4_port_type *port_types);
1240
Yevgeny Petrilin2a2336f2008-10-22 11:44:46 -07001241void mlx4_init_mac_table(struct mlx4_dev *dev, struct mlx4_mac_table *table);
1242void mlx4_init_vlan_table(struct mlx4_dev *dev, struct mlx4_vlan_table *table);
Jack Morgenstein111c6092014-05-27 09:26:38 +03001243void mlx4_init_roce_gid_table(struct mlx4_dev *dev,
1244 struct mlx4_roce_gid_table *table);
Jack Morgenstein2009d002013-11-03 10:03:19 +02001245void __mlx4_unregister_vlan(struct mlx4_dev *dev, u8 port, u16 vlan);
Rony Efraim3f7fb022013-04-25 05:22:28 +00001246int __mlx4_register_vlan(struct mlx4_dev *dev, u8 port, u16 vlan, int *index);
Moni Shoua5f613852015-12-06 18:07:41 +02001247int mlx4_bond_vlan_table(struct mlx4_dev *dev);
1248int mlx4_unbond_vlan_table(struct mlx4_dev *dev);
1249int mlx4_bond_mac_table(struct mlx4_dev *dev);
1250int mlx4_unbond_mac_table(struct mlx4_dev *dev);
Yevgeny Petrilin2a2336f2008-10-22 11:44:46 -07001251
Jack Morgenstein66349612012-06-19 11:21:44 +03001252int mlx4_SET_PORT(struct mlx4_dev *dev, u8 port, int pkey_tbl_sz);
Jack Morgenstein623ed842011-12-13 04:10:33 +00001253/* resource tracker functions*/
1254int mlx4_get_slave_from_resource_id(struct mlx4_dev *dev,
1255 enum mlx4_resource resource_type,
Hadar Hen Zionaa1ec3d2012-07-05 04:03:42 +00001256 u64 resource_id, int *slave);
Jack Morgenstein623ed842011-12-13 04:10:33 +00001257void mlx4_delete_all_resources_for_slave(struct mlx4_dev *dev, int slave_id);
Jack Morgenstein111c6092014-05-27 09:26:38 +03001258void mlx4_reset_roce_gids(struct mlx4_dev *dev, int slave);
Jack Morgenstein623ed842011-12-13 04:10:33 +00001259int mlx4_init_resource_tracker(struct mlx4_dev *dev);
1260
Jack Morgensteinb8924952012-05-15 10:35:02 +00001261void mlx4_free_resource_tracker(struct mlx4_dev *dev,
1262 enum mlx4_res_tracker_free_type type);
Jack Morgenstein623ed842011-12-13 04:10:33 +00001263
Jack Morgensteinb91cb3e2012-05-30 09:14:53 +00001264int mlx4_QUERY_FW_wrapper(struct mlx4_dev *dev, int slave,
1265 struct mlx4_vhcr *vhcr,
1266 struct mlx4_cmd_mailbox *inbox,
1267 struct mlx4_cmd_mailbox *outbox,
1268 struct mlx4_cmd_info *cmd);
Jack Morgenstein623ed842011-12-13 04:10:33 +00001269int mlx4_SET_PORT_wrapper(struct mlx4_dev *dev, int slave,
1270 struct mlx4_vhcr *vhcr,
1271 struct mlx4_cmd_mailbox *inbox,
1272 struct mlx4_cmd_mailbox *outbox,
1273 struct mlx4_cmd_info *cmd);
1274int mlx4_INIT_PORT_wrapper(struct mlx4_dev *dev, int slave,
1275 struct mlx4_vhcr *vhcr,
1276 struct mlx4_cmd_mailbox *inbox,
1277 struct mlx4_cmd_mailbox *outbox,
1278 struct mlx4_cmd_info *cmd);
1279int mlx4_CLOSE_PORT_wrapper(struct mlx4_dev *dev, int slave,
1280 struct mlx4_vhcr *vhcr,
1281 struct mlx4_cmd_mailbox *inbox,
1282 struct mlx4_cmd_mailbox *outbox,
1283 struct mlx4_cmd_info *cmd);
Jack Morgensteinb91cb3e2012-05-30 09:14:53 +00001284int mlx4_QUERY_DEV_CAP_wrapper(struct mlx4_dev *dev, int slave,
1285 struct mlx4_vhcr *vhcr,
1286 struct mlx4_cmd_mailbox *inbox,
1287 struct mlx4_cmd_mailbox *outbox,
1288 struct mlx4_cmd_info *cmd);
Jack Morgenstein623ed842011-12-13 04:10:33 +00001289int mlx4_QUERY_PORT_wrapper(struct mlx4_dev *dev, int slave,
1290 struct mlx4_vhcr *vhcr,
1291 struct mlx4_cmd_mailbox *inbox,
1292 struct mlx4_cmd_mailbox *outbox,
1293 struct mlx4_cmd_info *cmd);
Jack Morgenstein9a5aa622008-11-28 21:29:46 -08001294int mlx4_get_port_ib_caps(struct mlx4_dev *dev, u8 port, __be32 *caps);
Yevgeny Petrilin7ff93f82008-10-22 15:38:42 -07001295
Jack Morgenstein66349612012-06-19 11:21:44 +03001296int mlx4_get_slave_pkey_gid_tbl_len(struct mlx4_dev *dev, u8 port,
1297 int *gid_tbl_len, int *pkey_tbl_len);
Jack Morgenstein623ed842011-12-13 04:10:33 +00001298
1299int mlx4_QP_ATTACH_wrapper(struct mlx4_dev *dev, int slave,
1300 struct mlx4_vhcr *vhcr,
1301 struct mlx4_cmd_mailbox *inbox,
1302 struct mlx4_cmd_mailbox *outbox,
1303 struct mlx4_cmd_info *cmd);
1304
Matan Barakce8d9e02014-05-15 15:29:27 +03001305int mlx4_UPDATE_QP_wrapper(struct mlx4_dev *dev, int slave,
1306 struct mlx4_vhcr *vhcr,
1307 struct mlx4_cmd_mailbox *inbox,
1308 struct mlx4_cmd_mailbox *outbox,
1309 struct mlx4_cmd_info *cmd);
1310
Jack Morgenstein623ed842011-12-13 04:10:33 +00001311int mlx4_PROMISC_wrapper(struct mlx4_dev *dev, int slave,
1312 struct mlx4_vhcr *vhcr,
1313 struct mlx4_cmd_mailbox *inbox,
1314 struct mlx4_cmd_mailbox *outbox,
1315 struct mlx4_cmd_info *cmd);
Yevgeny Petrilinb12d93d2011-03-22 22:38:24 +00001316int mlx4_qp_detach_common(struct mlx4_dev *dev, struct mlx4_qp *qp, u8 gid[16],
1317 enum mlx4_protocol prot, enum mlx4_steer_type steer);
1318int mlx4_qp_attach_common(struct mlx4_dev *dev, struct mlx4_qp *qp, u8 gid[16],
1319 int block_mcast_loopback, enum mlx4_protocol prot,
1320 enum mlx4_steer_type steer);
Hadar Hen Zionfd91c492013-04-11 01:56:40 +00001321int mlx4_trans_to_dmfs_attach(struct mlx4_dev *dev, struct mlx4_qp *qp,
1322 u8 gid[16], u8 port,
1323 int block_mcast_loopback,
1324 enum mlx4_protocol prot, u64 *reg_id);
Jack Morgenstein623ed842011-12-13 04:10:33 +00001325int mlx4_SET_MCAST_FLTR_wrapper(struct mlx4_dev *dev, int slave,
1326 struct mlx4_vhcr *vhcr,
1327 struct mlx4_cmd_mailbox *inbox,
1328 struct mlx4_cmd_mailbox *outbox,
1329 struct mlx4_cmd_info *cmd);
1330int mlx4_SET_VLAN_FLTR_wrapper(struct mlx4_dev *dev, int slave,
1331 struct mlx4_vhcr *vhcr,
1332 struct mlx4_cmd_mailbox *inbox,
1333 struct mlx4_cmd_mailbox *outbox,
1334 struct mlx4_cmd_info *cmd);
1335int mlx4_common_set_vlan_fltr(struct mlx4_dev *dev, int function,
1336 int port, void *buf);
Jack Morgenstein623ed842011-12-13 04:10:33 +00001337int mlx4_DUMP_ETH_STATS_wrapper(struct mlx4_dev *dev, int slave,
1338 struct mlx4_vhcr *vhcr,
1339 struct mlx4_cmd_mailbox *inbox,
1340 struct mlx4_cmd_mailbox *outbox,
1341 struct mlx4_cmd_info *cmd);
1342int mlx4_PKEY_TABLE_wrapper(struct mlx4_dev *dev, int slave,
1343 struct mlx4_vhcr *vhcr,
1344 struct mlx4_cmd_mailbox *inbox,
1345 struct mlx4_cmd_mailbox *outbox,
1346 struct mlx4_cmd_info *cmd);
1347int mlx4_QUERY_IF_STAT_wrapper(struct mlx4_dev *dev, int slave,
1348 struct mlx4_vhcr *vhcr,
1349 struct mlx4_cmd_mailbox *inbox,
1350 struct mlx4_cmd_mailbox *outbox,
1351 struct mlx4_cmd_info *cmd);
Hadar Hen Zion8fcfb4d2012-07-05 04:03:45 +00001352int mlx4_QP_FLOW_STEERING_ATTACH_wrapper(struct mlx4_dev *dev, int slave,
1353 struct mlx4_vhcr *vhcr,
1354 struct mlx4_cmd_mailbox *inbox,
1355 struct mlx4_cmd_mailbox *outbox,
1356 struct mlx4_cmd_info *cmd);
1357int mlx4_QP_FLOW_STEERING_DETACH_wrapper(struct mlx4_dev *dev, int slave,
1358 struct mlx4_vhcr *vhcr,
1359 struct mlx4_cmd_mailbox *inbox,
1360 struct mlx4_cmd_mailbox *outbox,
1361 struct mlx4_cmd_info *cmd);
Saeed Mahameed6e806692014-11-02 16:26:13 +02001362int mlx4_ACCESS_REG_wrapper(struct mlx4_dev *dev, int slave,
1363 struct mlx4_vhcr *vhcr,
1364 struct mlx4_cmd_mailbox *inbox,
1365 struct mlx4_cmd_mailbox *outbox,
1366 struct mlx4_cmd_info *cmd);
Jack Morgensteinf5311ac2011-12-13 04:12:13 +00001367
Eugenia Emantayev0ec2c0f2011-12-13 04:16:02 +00001368int mlx4_get_mgm_entry_size(struct mlx4_dev *dev);
1369int mlx4_get_qp_per_mgm(struct mlx4_dev *dev);
1370
Marcel Apfelbaum5cc914f2011-12-13 04:12:40 +00001371static inline void set_param_l(u64 *arg, u32 val)
1372{
Jack Morgensteine7dbeba2013-03-07 03:46:54 +00001373 *arg = (*arg & 0xffffffff00000000ULL) | (u64) val;
Marcel Apfelbaum5cc914f2011-12-13 04:12:40 +00001374}
1375
1376static inline void set_param_h(u64 *arg, u32 val)
1377{
1378 *arg = (*arg & 0xffffffff) | ((u64) val << 32);
1379}
1380
1381static inline u32 get_param_l(u64 *arg)
1382{
1383 return (u32) (*arg & 0xffffffff);
1384}
1385
1386static inline u32 get_param_h(u64 *arg)
1387{
1388 return (u32)(*arg >> 32);
1389}
1390
Eli Cohenc82e9aa2011-12-13 04:15:24 +00001391static inline spinlock_t *mlx4_tlock(struct mlx4_dev *dev)
1392{
1393 return &mlx4_priv(dev)->mfunc.master.res_tracker.lock;
1394}
1395
Jack Morgensteinf5311ac2011-12-13 04:12:13 +00001396#define NOT_MASKED_PD_BITS 17
1397
Jack Morgensteinb01978c2013-06-27 19:05:21 +03001398void mlx4_vf_immed_vlan_work_handler(struct work_struct *_work);
1399
Jack Morgenstein5a0d0a62013-11-03 10:03:23 +02001400void mlx4_init_quotas(struct mlx4_dev *dev);
1401
Jack Morgenstein2b3ddf22015-10-14 17:43:48 +03001402/* for VFs, replace zero MACs with randomly-generated MACs at driver start */
1403void mlx4_replace_zero_macs(struct mlx4_dev *dev);
Matan Barak449fc482014-03-19 18:11:52 +02001404int mlx4_get_slave_num_gids(struct mlx4_dev *dev, int slave, int port);
Matan Barakf74462a2014-03-19 18:11:51 +02001405/* Returns the VF index of slave */
1406int mlx4_get_vf_indx(struct mlx4_dev *dev, int slave);
Jack Morgenstein114840c2014-06-01 11:53:50 +03001407int mlx4_config_mad_demux(struct mlx4_dev *dev);
Moni Shoua53f33ae2015-02-03 16:48:33 +02001408int mlx4_do_bond(struct mlx4_dev *dev, bool enable);
Moni Shoua78efed22015-12-06 18:07:40 +02001409int mlx4_bond_fs_rules(struct mlx4_dev *dev);
1410int mlx4_unbond_fs_rules(struct mlx4_dev *dev);
Jack Morgensteinb6ffaef2014-03-12 12:00:39 +02001411
Matan Barak7a893992014-12-11 10:57:56 +02001412enum mlx4_zone_flags {
1413 MLX4_ZONE_ALLOW_ALLOC_FROM_LOWER_PRIO = 1UL << 0,
1414 MLX4_ZONE_ALLOW_ALLOC_FROM_EQ_PRIO = 1UL << 1,
1415 MLX4_ZONE_FALLBACK_TO_HIGHER_PRIO = 1UL << 2,
1416 MLX4_ZONE_USE_RR = 1UL << 3,
1417};
1418
1419enum mlx4_zone_alloc_flags {
1420 /* No two objects could overlap between zones. UID
1421 * could be left unused. If this flag is given and
1422 * two overlapped zones are used, an object will be free'd
1423 * from the smallest possible matching zone.
1424 */
1425 MLX4_ZONE_ALLOC_FLAGS_NO_OVERLAP = 1UL << 0,
1426};
1427
1428struct mlx4_zone_allocator;
1429
1430/* Create a new zone allocator */
1431struct mlx4_zone_allocator *mlx4_zone_allocator_create(enum mlx4_zone_alloc_flags flags);
1432
1433/* Attach a mlx4_bitmap <bitmap> of priority <priority> to the zone allocator
1434 * <zone_alloc>. Allocating an object from this zone adds an offset <offset>.
1435 * Similarly, when searching for an object to free, this offset it taken into
1436 * account. The use_rr mlx4_ib parameter for allocating objects from this <bitmap>
1437 * is given through the MLX4_ZONE_USE_RR flag in <flags>.
1438 * When an allocation fails, <zone_alloc> tries to allocate from other zones
1439 * according to the policy set by <flags>. <puid> is the unique identifier
1440 * received to this zone.
1441 */
1442int mlx4_zone_add_one(struct mlx4_zone_allocator *zone_alloc,
1443 struct mlx4_bitmap *bitmap,
1444 u32 flags,
1445 int priority,
1446 int offset,
1447 u32 *puid);
1448
1449/* Remove bitmap indicated by <uid> from <zone_alloc> */
1450int mlx4_zone_remove_one(struct mlx4_zone_allocator *zone_alloc, u32 uid);
1451
1452/* Delete the zone allocator <zone_alloc. This function doesn't destroy
1453 * the attached bitmaps.
1454 */
1455void mlx4_zone_allocator_destroy(struct mlx4_zone_allocator *zone_alloc);
1456
1457/* Allocate <count> objects with align <align> and skip_mask <skip_mask>
1458 * from the mlx4_bitmap whose uid is <uid>. The bitmap which we actually
1459 * allocated from is returned in <puid>. If the allocation fails, a negative
1460 * number is returned. Otherwise, the offset of the first object is returned.
1461 */
1462u32 mlx4_zone_alloc_entries(struct mlx4_zone_allocator *zones, u32 uid, int count,
1463 int align, u32 skip_mask, u32 *puid);
1464
1465/* Free <count> objects, start from <obj> of the uid <uid> from zone_allocator
1466 * <zones>.
1467 */
1468u32 mlx4_zone_free_entries(struct mlx4_zone_allocator *zones,
1469 u32 uid, u32 obj, u32 count);
1470
1471/* If <zones> was allocated with MLX4_ZONE_ALLOC_FLAGS_NO_OVERLAP, instead of
1472 * specifying the uid when freeing an object, zone allocator could figure it by
1473 * itself. Other parameters are similar to mlx4_zone_free.
1474 */
1475u32 mlx4_zone_free_entries_unique(struct mlx4_zone_allocator *zones, u32 obj, u32 count);
1476
1477/* Returns a pointer to mlx4_bitmap that was attached to <zones> with <uid> */
1478struct mlx4_bitmap *mlx4_zone_get_bitmap(struct mlx4_zone_allocator *zones, u32 uid);
1479
Roland Dreier225c7b12007-05-08 18:00:38 -07001480#endif /* MLX4_H */