Roland Dreier | 225c7b1 | 2007-05-08 18:00:38 -0700 | [diff] [blame] | 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. |
Jack Morgenstein | 51a379d | 2008-07-25 10:32:52 -0700 | [diff] [blame] | 5 | * Copyright (c) 2005, 2006, 2007, 2008 Mellanox Technologies. All rights reserved. |
Roland Dreier | 225c7b1 | 2007-05-08 18:00:38 -0700 | [diff] [blame] | 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 | |
Michael S. Tsirkin | 525f5f4 | 2007-07-09 20:12:20 -0700 | [diff] [blame] | 40 | #include <linux/mutex.h> |
Roland Dreier | 225c7b1 | 2007-05-08 18:00:38 -0700 | [diff] [blame] | 41 | #include <linux/radix-tree.h> |
Hadar Hen Zion | 4af1c04 | 2012-07-05 04:03:41 +0000 | [diff] [blame] | 42 | #include <linux/rbtree.h> |
Jack Morgenstein | ee49bd9 | 2007-07-12 17:50:45 +0300 | [diff] [blame] | 43 | #include <linux/timer.h> |
Thomas Gleixner | 3142788 | 2010-01-29 20:39:02 +0000 | [diff] [blame] | 44 | #include <linux/semaphore.h> |
Yevgeny Petrilin | 27bf91d | 2009-03-18 19:45:11 -0700 | [diff] [blame] | 45 | #include <linux/workqueue.h> |
Matan Barak | 3dca0f42 | 2014-12-11 10:57:53 +0200 | [diff] [blame] | 46 | #include <linux/interrupt.h> |
| 47 | #include <linux/spinlock.h> |
Roland Dreier | 225c7b1 | 2007-05-08 18:00:38 -0700 | [diff] [blame] | 48 | |
| 49 | #include <linux/mlx4/device.h> |
Roland Dreier | 37608ee | 2008-04-16 21:01:08 -0700 | [diff] [blame] | 50 | #include <linux/mlx4/driver.h> |
Roland Dreier | 225c7b1 | 2007-05-08 18:00:38 -0700 | [diff] [blame] | 51 | #include <linux/mlx4/doorbell.h> |
Jack Morgenstein | 623ed84 | 2011-12-13 04:10:33 +0000 | [diff] [blame] | 52 | #include <linux/mlx4/cmd.h> |
Roland Dreier | 225c7b1 | 2007-05-08 18:00:38 -0700 | [diff] [blame] | 53 | |
| 54 | #define DRV_NAME "mlx4_core" |
Jack Morgenstein | ab9c17a | 2011-12-13 04:18:30 +0000 | [diff] [blame] | 55 | #define PFX DRV_NAME ": " |
Amir Vadai | 169a1d8 | 2014-02-19 17:47:31 +0200 | [diff] [blame] | 56 | #define DRV_VERSION "2.2-1" |
| 57 | #define DRV_RELDATE "Feb, 2014" |
Roland Dreier | 225c7b1 | 2007-05-08 18:00:38 -0700 | [diff] [blame] | 58 | |
Hadar Hen Zion | 0ff1fb6 | 2012-07-05 04:03:46 +0000 | [diff] [blame] | 59 | #define MLX4_FS_UDP_UC_EN (1 << 1) |
| 60 | #define MLX4_FS_TCP_UC_EN (1 << 2) |
| 61 | #define MLX4_FS_NUM_OF_L2_ADDR 8 |
| 62 | #define MLX4_FS_MGM_LOG_ENTRY_SIZE 7 |
| 63 | #define MLX4_FS_NUM_MCG (1 << 17) |
| 64 | |
Shani Michaeli | e448834 | 2013-02-06 16:19:11 +0000 | [diff] [blame] | 65 | #define INIT_HCA_TPT_MW_ENABLE (1 << 7) |
| 66 | |
Amir Vadai | e5395e9 | 2012-04-04 21:33:25 +0000 | [diff] [blame] | 67 | struct mlx4_set_port_prio2tc_context { |
| 68 | u8 prio2tc[4]; |
| 69 | }; |
| 70 | |
| 71 | struct mlx4_port_scheduler_tc_cfg_be { |
| 72 | __be16 pg; |
| 73 | __be16 bw_precentage; |
| 74 | __be16 max_bw_units; /* 3-100Mbps, 4-1Gbps, other values - reserved */ |
| 75 | __be16 max_bw_value; |
| 76 | }; |
| 77 | |
| 78 | struct mlx4_set_port_scheduler_context { |
| 79 | struct mlx4_port_scheduler_tc_cfg_be tc[MLX4_NUM_TC]; |
| 80 | }; |
| 81 | |
Roland Dreier | 225c7b1 | 2007-05-08 18:00:38 -0700 | [diff] [blame] | 82 | enum { |
| 83 | MLX4_HCR_BASE = 0x80680, |
| 84 | MLX4_HCR_SIZE = 0x0001c, |
Jack Morgenstein | 623ed84 | 2011-12-13 04:10:33 +0000 | [diff] [blame] | 85 | MLX4_CLR_INT_SIZE = 0x00008, |
| 86 | MLX4_SLAVE_COMM_BASE = 0x0, |
Eugenia Emantayev | ddd8a6c | 2013-04-23 06:06:48 +0000 | [diff] [blame] | 87 | MLX4_COMM_PAGESIZE = 0x1000, |
Yishai Hadas | 55ad359 | 2015-01-25 16:59:42 +0200 | [diff] [blame] | 88 | MLX4_CLOCK_SIZE = 0x00008, |
| 89 | MLX4_COMM_CHAN_CAPS = 0x8, |
| 90 | MLX4_COMM_CHAN_FLAGS = 0xc |
Roland Dreier | 225c7b1 | 2007-05-08 18:00:38 -0700 | [diff] [blame] | 91 | }; |
| 92 | |
| 93 | enum { |
Jack Morgenstein | 3c439b5 | 2012-12-06 17:12:00 +0000 | [diff] [blame] | 94 | MLX4_DEFAULT_MGM_LOG_ENTRY_SIZE = 10, |
| 95 | MLX4_MIN_MGM_LOG_ENTRY_SIZE = 7, |
| 96 | MLX4_MAX_MGM_LOG_ENTRY_SIZE = 12, |
| 97 | MLX4_MAX_QP_PER_MGM = 4 * ((1 << MLX4_MAX_MGM_LOG_ENTRY_SIZE) / 16 - 2), |
Eugenia Emantayev | 0ec2c0f | 2011-12-13 04:16:02 +0000 | [diff] [blame] | 98 | MLX4_MTT_ENTRY_PER_SEG = 8, |
Roland Dreier | 225c7b1 | 2007-05-08 18:00:38 -0700 | [diff] [blame] | 99 | }; |
| 100 | |
| 101 | enum { |
Roland Dreier | 225c7b1 | 2007-05-08 18:00:38 -0700 | [diff] [blame] | 102 | MLX4_NUM_PDS = 1 << 15 |
| 103 | }; |
| 104 | |
| 105 | enum { |
| 106 | MLX4_CMPT_TYPE_QP = 0, |
| 107 | MLX4_CMPT_TYPE_SRQ = 1, |
| 108 | MLX4_CMPT_TYPE_CQ = 2, |
| 109 | MLX4_CMPT_TYPE_EQ = 3, |
| 110 | MLX4_CMPT_NUM_TYPE |
| 111 | }; |
| 112 | |
| 113 | enum { |
| 114 | MLX4_CMPT_SHIFT = 24, |
| 115 | MLX4_NUM_CMPTS = MLX4_CMPT_NUM_TYPE << MLX4_CMPT_SHIFT |
| 116 | }; |
| 117 | |
Shani Michaeli | b20e519 | 2013-02-06 16:19:08 +0000 | [diff] [blame] | 118 | enum mlx4_mpt_state { |
| 119 | MLX4_MPT_DISABLED = 0, |
| 120 | MLX4_MPT_EN_HW, |
| 121 | MLX4_MPT_EN_SW |
Jack Morgenstein | 623ed84 | 2011-12-13 04:10:33 +0000 | [diff] [blame] | 122 | }; |
| 123 | |
| 124 | #define MLX4_COMM_TIME 10000 |
Yishai Hadas | 55ad359 | 2015-01-25 16:59:42 +0200 | [diff] [blame] | 125 | #define MLX4_COMM_OFFLINE_TIME_OUT 30000 |
Yishai Hadas | 0cd9302 | 2015-01-25 16:59:43 +0200 | [diff] [blame] | 126 | #define MLX4_COMM_CMD_NA_OP 0x0 |
| 127 | |
Yishai Hadas | 55ad359 | 2015-01-25 16:59:42 +0200 | [diff] [blame] | 128 | |
Jack Morgenstein | 623ed84 | 2011-12-13 04:10:33 +0000 | [diff] [blame] | 129 | enum { |
| 130 | MLX4_COMM_CMD_RESET, |
| 131 | MLX4_COMM_CMD_VHCR0, |
| 132 | MLX4_COMM_CMD_VHCR1, |
| 133 | MLX4_COMM_CMD_VHCR2, |
| 134 | MLX4_COMM_CMD_VHCR_EN, |
| 135 | MLX4_COMM_CMD_VHCR_POST, |
| 136 | MLX4_COMM_CMD_FLR = 254 |
| 137 | }; |
| 138 | |
Jack Morgenstein | 99ec41d | 2014-05-29 16:31:03 +0300 | [diff] [blame] | 139 | enum { |
| 140 | MLX4_VF_SMI_DISABLED, |
| 141 | MLX4_VF_SMI_ENABLED |
| 142 | }; |
| 143 | |
Jack Morgenstein | 623ed84 | 2011-12-13 04:10:33 +0000 | [diff] [blame] | 144 | /*The flag indicates that the slave should delay the RESET cmd*/ |
| 145 | #define MLX4_DELAY_RESET_SLAVE 0xbbbbbbb |
| 146 | /*indicates how many retries will be done if we are in the middle of FLR*/ |
| 147 | #define NUM_OF_RESET_RETRIES 10 |
| 148 | #define SLEEP_TIME_IN_RESET (2 * 1000) |
| 149 | enum mlx4_resource { |
| 150 | RES_QP, |
| 151 | RES_CQ, |
| 152 | RES_SRQ, |
| 153 | RES_XRCD, |
| 154 | RES_MPT, |
| 155 | RES_MTT, |
| 156 | RES_MAC, |
| 157 | RES_VLAN, |
| 158 | RES_EQ, |
| 159 | RES_COUNTER, |
Hadar Hen Zion | 1b9c6b0 | 2012-07-05 04:03:47 +0000 | [diff] [blame] | 160 | RES_FS_RULE, |
Jack Morgenstein | 623ed84 | 2011-12-13 04:10:33 +0000 | [diff] [blame] | 161 | MLX4_NUM_OF_RESOURCE_TYPE |
| 162 | }; |
| 163 | |
| 164 | enum mlx4_alloc_mode { |
| 165 | RES_OP_RESERVE, |
| 166 | RES_OP_RESERVE_AND_MAP, |
| 167 | RES_OP_MAP_ICM, |
| 168 | }; |
| 169 | |
Jack Morgenstein | b892495 | 2012-05-15 10:35:02 +0000 | [diff] [blame] | 170 | enum mlx4_res_tracker_free_type { |
| 171 | RES_TR_FREE_ALL, |
| 172 | RES_TR_FREE_SLAVES_ONLY, |
| 173 | RES_TR_FREE_STRUCTS_ONLY, |
| 174 | }; |
Jack Morgenstein | 623ed84 | 2011-12-13 04:10:33 +0000 | [diff] [blame] | 175 | |
| 176 | /* |
| 177 | *Virtual HCR structures. |
| 178 | * mlx4_vhcr is the sw representation, in machine endianess |
| 179 | * |
| 180 | * mlx4_vhcr_cmd is the formalized structure, the one that is passed |
| 181 | * to FW to go through communication channel. |
| 182 | * It is big endian, and has the same structure as the physical HCR |
| 183 | * used by command interface |
| 184 | */ |
| 185 | struct mlx4_vhcr { |
| 186 | u64 in_param; |
| 187 | u64 out_param; |
| 188 | u32 in_modifier; |
| 189 | u32 errno; |
| 190 | u16 op; |
| 191 | u16 token; |
| 192 | u8 op_modifier; |
| 193 | u8 e_bit; |
| 194 | }; |
| 195 | |
| 196 | struct mlx4_vhcr_cmd { |
| 197 | __be64 in_param; |
| 198 | __be32 in_modifier; |
Jack Morgenstein | dc7d500 | 2015-01-27 15:58:04 +0200 | [diff] [blame] | 199 | u32 reserved1; |
Jack Morgenstein | 623ed84 | 2011-12-13 04:10:33 +0000 | [diff] [blame] | 200 | __be64 out_param; |
| 201 | __be16 token; |
| 202 | u16 reserved; |
| 203 | u8 status; |
| 204 | u8 flags; |
| 205 | __be16 opcode; |
| 206 | }; |
| 207 | |
| 208 | struct mlx4_cmd_info { |
| 209 | u16 opcode; |
| 210 | bool has_inbox; |
| 211 | bool has_outbox; |
| 212 | bool out_is_imm; |
| 213 | bool encode_slave_id; |
| 214 | int (*verify)(struct mlx4_dev *dev, int slave, struct mlx4_vhcr *vhcr, |
| 215 | struct mlx4_cmd_mailbox *inbox); |
| 216 | int (*wrapper)(struct mlx4_dev *dev, int slave, struct mlx4_vhcr *vhcr, |
| 217 | struct mlx4_cmd_mailbox *inbox, |
| 218 | struct mlx4_cmd_mailbox *outbox, |
| 219 | struct mlx4_cmd_info *cmd); |
| 220 | }; |
| 221 | |
Roland Dreier | 225c7b1 | 2007-05-08 18:00:38 -0700 | [diff] [blame] | 222 | #ifdef CONFIG_MLX4_DEBUG |
| 223 | extern int mlx4_debug_level; |
Roland Dreier | 7b0f5df | 2008-11-04 11:18:56 -0800 | [diff] [blame] | 224 | #else /* CONFIG_MLX4_DEBUG */ |
| 225 | #define mlx4_debug_level (0) |
| 226 | #endif /* CONFIG_MLX4_DEBUG */ |
Roland Dreier | 225c7b1 | 2007-05-08 18:00:38 -0700 | [diff] [blame] | 227 | |
Joe Perches | 1a91de2 | 2014-05-07 12:52:57 -0700 | [diff] [blame] | 228 | #define mlx4_dbg(mdev, format, ...) \ |
Joe Perches | 0a645e8 | 2010-07-10 07:22:46 +0000 | [diff] [blame] | 229 | do { \ |
| 230 | if (mlx4_debug_level) \ |
Yishai Hadas | 872bf2f | 2015-01-25 16:59:35 +0200 | [diff] [blame] | 231 | dev_printk(KERN_DEBUG, \ |
| 232 | &(mdev)->persist->pdev->dev, format, \ |
Joe Perches | 1a91de2 | 2014-05-07 12:52:57 -0700 | [diff] [blame] | 233 | ##__VA_ARGS__); \ |
Joe Perches | 0a645e8 | 2010-07-10 07:22:46 +0000 | [diff] [blame] | 234 | } while (0) |
Roland Dreier | 225c7b1 | 2007-05-08 18:00:38 -0700 | [diff] [blame] | 235 | |
Joe Perches | 1a91de2 | 2014-05-07 12:52:57 -0700 | [diff] [blame] | 236 | #define mlx4_err(mdev, format, ...) \ |
Yishai Hadas | 872bf2f | 2015-01-25 16:59:35 +0200 | [diff] [blame] | 237 | dev_err(&(mdev)->persist->pdev->dev, format, ##__VA_ARGS__) |
Joe Perches | 1a91de2 | 2014-05-07 12:52:57 -0700 | [diff] [blame] | 238 | #define mlx4_info(mdev, format, ...) \ |
Yishai Hadas | 872bf2f | 2015-01-25 16:59:35 +0200 | [diff] [blame] | 239 | dev_info(&(mdev)->persist->pdev->dev, format, ##__VA_ARGS__) |
Joe Perches | 1a91de2 | 2014-05-07 12:52:57 -0700 | [diff] [blame] | 240 | #define mlx4_warn(mdev, format, ...) \ |
Yishai Hadas | 872bf2f | 2015-01-25 16:59:35 +0200 | [diff] [blame] | 241 | dev_warn(&(mdev)->persist->pdev->dev, format, ##__VA_ARGS__) |
Roland Dreier | 225c7b1 | 2007-05-08 18:00:38 -0700 | [diff] [blame] | 242 | |
Eugenia Emantayev | 0ec2c0f | 2011-12-13 04:16:02 +0000 | [diff] [blame] | 243 | extern int mlx4_log_num_mgm_entry_size; |
Marcel Apfelbaum | 2b8fb28 | 2011-12-13 04:16:56 +0000 | [diff] [blame] | 244 | extern int log_mtts_per_seg; |
Yishai Hadas | f5aef5a | 2015-01-25 16:59:39 +0200 | [diff] [blame] | 245 | extern int mlx4_internal_err_reset; |
Eugenia Emantayev | 0ec2c0f | 2011-12-13 04:16:02 +0000 | [diff] [blame] | 246 | |
Jack Morgenstein | 5a2e87b | 2015-02-02 15:18:42 +0200 | [diff] [blame] | 247 | #define MLX4_MAX_NUM_SLAVES (min(MLX4_MAX_NUM_PF + MLX4_MAX_NUM_VF, \ |
| 248 | MLX4_MFUNC_MAX)) |
Jack Morgenstein | 623ed84 | 2011-12-13 04:10:33 +0000 | [diff] [blame] | 249 | #define ALL_SLAVES 0xff |
| 250 | |
Roland Dreier | 225c7b1 | 2007-05-08 18:00:38 -0700 | [diff] [blame] | 251 | struct mlx4_bitmap { |
| 252 | u32 last; |
| 253 | u32 top; |
| 254 | u32 max; |
Yevgeny Petrilin | 93fc9e1 | 2008-10-22 10:25:29 -0700 | [diff] [blame] | 255 | u32 reserved_top; |
Roland Dreier | 225c7b1 | 2007-05-08 18:00:38 -0700 | [diff] [blame] | 256 | u32 mask; |
Eli Cohen | 42d1e01 | 2011-03-22 22:38:45 +0000 | [diff] [blame] | 257 | u32 avail; |
Matan Barak | 7a89399 | 2014-12-11 10:57:56 +0200 | [diff] [blame] | 258 | u32 effective_len; |
Roland Dreier | 225c7b1 | 2007-05-08 18:00:38 -0700 | [diff] [blame] | 259 | spinlock_t lock; |
| 260 | unsigned long *table; |
| 261 | }; |
| 262 | |
| 263 | struct mlx4_buddy { |
| 264 | unsigned long **bits; |
Roland Dreier | e4044cf | 2008-07-22 14:19:40 -0700 | [diff] [blame] | 265 | unsigned int *num_free; |
Yishai Hadas | 3de819e | 2012-08-13 08:15:07 +0000 | [diff] [blame] | 266 | u32 max_order; |
Roland Dreier | 225c7b1 | 2007-05-08 18:00:38 -0700 | [diff] [blame] | 267 | spinlock_t lock; |
| 268 | }; |
| 269 | |
| 270 | struct mlx4_icm; |
| 271 | |
| 272 | struct mlx4_icm_table { |
| 273 | u64 virt; |
| 274 | int num_icm; |
Yishai Hadas | 3de819e | 2012-08-13 08:15:07 +0000 | [diff] [blame] | 275 | u32 num_obj; |
Roland Dreier | 225c7b1 | 2007-05-08 18:00:38 -0700 | [diff] [blame] | 276 | int obj_size; |
| 277 | int lowmem; |
Jack Morgenstein | 5b0bf5e | 2007-08-01 12:28:20 +0300 | [diff] [blame] | 278 | int coherent; |
Roland Dreier | 225c7b1 | 2007-05-08 18:00:38 -0700 | [diff] [blame] | 279 | struct mutex mutex; |
| 280 | struct mlx4_icm **icm; |
| 281 | }; |
| 282 | |
Shani Michaeli | cc1ade9 | 2013-02-06 16:19:10 +0000 | [diff] [blame] | 283 | #define MLX4_MPT_FLAG_SW_OWNS (0xfUL << 28) |
| 284 | #define MLX4_MPT_FLAG_FREE (0x3UL << 28) |
| 285 | #define MLX4_MPT_FLAG_MIO (1 << 17) |
| 286 | #define MLX4_MPT_FLAG_BIND_ENABLE (1 << 15) |
| 287 | #define MLX4_MPT_FLAG_PHYSICAL (1 << 9) |
| 288 | #define MLX4_MPT_FLAG_REGION (1 << 8) |
| 289 | |
Matan Barak | e630664 | 2014-07-31 11:01:29 +0300 | [diff] [blame] | 290 | #define MLX4_MPT_PD_MASK (0x1FFFFUL) |
| 291 | #define MLX4_MPT_PD_VF_MASK (0xFE0000UL) |
Shani Michaeli | cc1ade9 | 2013-02-06 16:19:10 +0000 | [diff] [blame] | 292 | #define MLX4_MPT_PD_FLAG_FAST_REG (1 << 27) |
| 293 | #define MLX4_MPT_PD_FLAG_RAE (1 << 28) |
| 294 | #define MLX4_MPT_PD_FLAG_EN_INV (3 << 24) |
| 295 | |
| 296 | #define MLX4_MPT_QP_FLAG_BOUND_QP (1 << 7) |
| 297 | |
| 298 | #define MLX4_MPT_STATUS_SW 0xF0 |
| 299 | #define MLX4_MPT_STATUS_HW 0x00 |
| 300 | |
Ido Shamay | 77507aa | 2014-09-18 11:50:59 +0300 | [diff] [blame] | 301 | #define MLX4_CQE_SIZE_MASK_STRIDE 0x3 |
| 302 | #define MLX4_EQE_SIZE_MASK_STRIDE 0x30 |
| 303 | |
Eli Cohen | c82e9aa | 2011-12-13 04:15:24 +0000 | [diff] [blame] | 304 | /* |
| 305 | * Must be packed because mtt_seg is 64 bits but only aligned to 32 bits. |
| 306 | */ |
| 307 | struct mlx4_mpt_entry { |
| 308 | __be32 flags; |
| 309 | __be32 qpn; |
| 310 | __be32 key; |
| 311 | __be32 pd_flags; |
| 312 | __be64 start; |
| 313 | __be64 length; |
| 314 | __be32 lkey; |
| 315 | __be32 win_cnt; |
| 316 | u8 reserved1[3]; |
| 317 | u8 mtt_rep; |
Marcel Apfelbaum | 2b8fb28 | 2011-12-13 04:16:56 +0000 | [diff] [blame] | 318 | __be64 mtt_addr; |
Eli Cohen | c82e9aa | 2011-12-13 04:15:24 +0000 | [diff] [blame] | 319 | __be32 mtt_sz; |
| 320 | __be32 entity_size; |
| 321 | __be32 first_byte_offset; |
| 322 | } __packed; |
| 323 | |
| 324 | /* |
| 325 | * Must be packed because start is 64 bits but only aligned to 32 bits. |
| 326 | */ |
| 327 | struct mlx4_eq_context { |
| 328 | __be32 flags; |
| 329 | u16 reserved1[3]; |
| 330 | __be16 page_offset; |
| 331 | u8 log_eq_size; |
| 332 | u8 reserved2[4]; |
| 333 | u8 eq_period; |
| 334 | u8 reserved3; |
| 335 | u8 eq_max_count; |
| 336 | u8 reserved4[3]; |
| 337 | u8 intr; |
| 338 | u8 log_page_size; |
| 339 | u8 reserved5[2]; |
| 340 | u8 mtt_base_addr_h; |
| 341 | __be32 mtt_base_addr_l; |
| 342 | u32 reserved6[2]; |
| 343 | __be32 consumer_index; |
| 344 | __be32 producer_index; |
| 345 | u32 reserved7[4]; |
| 346 | }; |
| 347 | |
| 348 | struct mlx4_cq_context { |
| 349 | __be32 flags; |
| 350 | u16 reserved1[3]; |
| 351 | __be16 page_offset; |
| 352 | __be32 logsize_usrpage; |
| 353 | __be16 cq_period; |
| 354 | __be16 cq_max_count; |
| 355 | u8 reserved2[3]; |
| 356 | u8 comp_eqn; |
| 357 | u8 log_page_size; |
| 358 | u8 reserved3[2]; |
| 359 | u8 mtt_base_addr_h; |
| 360 | __be32 mtt_base_addr_l; |
| 361 | __be32 last_notified_index; |
| 362 | __be32 solicit_producer_index; |
| 363 | __be32 consumer_index; |
| 364 | __be32 producer_index; |
| 365 | u32 reserved4[2]; |
| 366 | __be64 db_rec_addr; |
| 367 | }; |
| 368 | |
| 369 | struct mlx4_srq_context { |
| 370 | __be32 state_logsize_srqn; |
| 371 | u8 logstride; |
| 372 | u8 reserved1; |
| 373 | __be16 xrcd; |
| 374 | __be32 pg_offset_cqn; |
| 375 | u32 reserved2; |
| 376 | u8 log_page_size; |
| 377 | u8 reserved3[2]; |
| 378 | u8 mtt_base_addr_h; |
| 379 | __be32 mtt_base_addr_l; |
| 380 | __be32 pd; |
| 381 | __be16 limit_watermark; |
| 382 | __be16 wqe_cnt; |
| 383 | u16 reserved4; |
| 384 | __be16 wqe_counter; |
| 385 | u32 reserved5; |
| 386 | __be64 db_rec_addr; |
| 387 | }; |
| 388 | |
Matan Barak | 3dca0f42 | 2014-12-11 10:57:53 +0200 | [diff] [blame] | 389 | struct mlx4_eq_tasklet { |
| 390 | struct list_head list; |
| 391 | struct list_head process_list; |
| 392 | struct tasklet_struct task; |
| 393 | /* lock on completion tasklet list */ |
| 394 | spinlock_t lock; |
| 395 | }; |
| 396 | |
Roland Dreier | 225c7b1 | 2007-05-08 18:00:38 -0700 | [diff] [blame] | 397 | struct mlx4_eq { |
| 398 | struct mlx4_dev *dev; |
| 399 | void __iomem *doorbell; |
| 400 | int eqn; |
| 401 | u32 cons_index; |
| 402 | u16 irq; |
| 403 | u16 have_irq; |
| 404 | int nent; |
| 405 | struct mlx4_buf_list *page_list; |
| 406 | struct mlx4_mtt mtt; |
Matan Barak | 3dca0f42 | 2014-12-11 10:57:53 +0200 | [diff] [blame] | 407 | struct mlx4_eq_tasklet tasklet_ctx; |
Roland Dreier | 225c7b1 | 2007-05-08 18:00:38 -0700 | [diff] [blame] | 408 | }; |
| 409 | |
Jack Morgenstein | 623ed84 | 2011-12-13 04:10:33 +0000 | [diff] [blame] | 410 | struct mlx4_slave_eqe { |
| 411 | u8 type; |
| 412 | u8 port; |
| 413 | u32 param; |
| 414 | }; |
| 415 | |
| 416 | struct mlx4_slave_event_eq_info { |
Marcel Apfelbaum | 803143f | 2012-01-19 09:45:46 +0000 | [diff] [blame] | 417 | int eqn; |
Jack Morgenstein | 623ed84 | 2011-12-13 04:10:33 +0000 | [diff] [blame] | 418 | u16 token; |
Jack Morgenstein | 623ed84 | 2011-12-13 04:10:33 +0000 | [diff] [blame] | 419 | }; |
| 420 | |
Roland Dreier | 225c7b1 | 2007-05-08 18:00:38 -0700 | [diff] [blame] | 421 | struct mlx4_profile { |
| 422 | int num_qp; |
| 423 | int rdmarc_per_qp; |
| 424 | int num_srq; |
| 425 | int num_cq; |
| 426 | int num_mcg; |
| 427 | int num_mpt; |
Roland Dreier | db5a7a6 | 2012-03-05 10:05:28 -0800 | [diff] [blame] | 428 | unsigned num_mtt; |
Roland Dreier | 225c7b1 | 2007-05-08 18:00:38 -0700 | [diff] [blame] | 429 | }; |
| 430 | |
| 431 | struct mlx4_fw { |
| 432 | u64 clr_int_base; |
| 433 | u64 catas_offset; |
Jack Morgenstein | 623ed84 | 2011-12-13 04:10:33 +0000 | [diff] [blame] | 434 | u64 comm_base; |
Eugenia Emantayev | ddd8a6c | 2013-04-23 06:06:48 +0000 | [diff] [blame] | 435 | u64 clock_offset; |
Roland Dreier | 225c7b1 | 2007-05-08 18:00:38 -0700 | [diff] [blame] | 436 | struct mlx4_icm *fw_icm; |
| 437 | struct mlx4_icm *aux_icm; |
| 438 | u32 catas_size; |
| 439 | u16 fw_pages; |
| 440 | u8 clr_int_bar; |
| 441 | u8 catas_bar; |
Jack Morgenstein | 623ed84 | 2011-12-13 04:10:33 +0000 | [diff] [blame] | 442 | u8 comm_bar; |
Eugenia Emantayev | ddd8a6c | 2013-04-23 06:06:48 +0000 | [diff] [blame] | 443 | u8 clock_bar; |
Jack Morgenstein | 623ed84 | 2011-12-13 04:10:33 +0000 | [diff] [blame] | 444 | }; |
| 445 | |
| 446 | struct mlx4_comm { |
| 447 | u32 slave_write; |
| 448 | u32 slave_read; |
Roland Dreier | 225c7b1 | 2007-05-08 18:00:38 -0700 | [diff] [blame] | 449 | }; |
| 450 | |
Eugenia Emantayev | ffe455a | 2011-12-13 04:16:21 +0000 | [diff] [blame] | 451 | enum { |
| 452 | MLX4_MCAST_CONFIG = 0, |
| 453 | MLX4_MCAST_DISABLE = 1, |
| 454 | MLX4_MCAST_ENABLE = 2, |
| 455 | }; |
| 456 | |
Jack Morgenstein | 623ed84 | 2011-12-13 04:10:33 +0000 | [diff] [blame] | 457 | #define VLAN_FLTR_SIZE 128 |
| 458 | |
| 459 | struct mlx4_vlan_fltr { |
| 460 | __be32 entry[VLAN_FLTR_SIZE]; |
| 461 | }; |
| 462 | |
Eugenia Emantayev | ffe455a | 2011-12-13 04:16:21 +0000 | [diff] [blame] | 463 | struct mlx4_mcast_entry { |
| 464 | struct list_head list; |
| 465 | u64 addr; |
| 466 | }; |
| 467 | |
Yevgeny Petrilin | b12d93d | 2011-03-22 22:38:24 +0000 | [diff] [blame] | 468 | struct mlx4_promisc_qp { |
| 469 | struct list_head list; |
| 470 | u32 qpn; |
| 471 | }; |
| 472 | |
| 473 | struct mlx4_steer_index { |
| 474 | struct list_head list; |
| 475 | unsigned int index; |
| 476 | struct list_head duplicates; |
| 477 | }; |
| 478 | |
Marcel Apfelbaum | 803143f | 2012-01-19 09:45:46 +0000 | [diff] [blame] | 479 | #define MLX4_EVENT_TYPES_NUM 64 |
| 480 | |
Jack Morgenstein | 623ed84 | 2011-12-13 04:10:33 +0000 | [diff] [blame] | 481 | struct mlx4_slave_state { |
| 482 | u8 comm_toggle; |
| 483 | u8 last_cmd; |
| 484 | u8 init_port_mask; |
| 485 | bool active; |
Jack Morgenstein | 2c957ff | 2013-11-03 10:03:21 +0200 | [diff] [blame] | 486 | bool old_vlan_api; |
Jack Morgenstein | 623ed84 | 2011-12-13 04:10:33 +0000 | [diff] [blame] | 487 | u8 function; |
| 488 | dma_addr_t vhcr_dma; |
| 489 | 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 Apfelbaum | 803143f | 2012-01-19 09:45:46 +0000 | [diff] [blame] | 494 | /* event type to eq number lookup */ |
| 495 | struct mlx4_slave_event_eq_info event_eq[MLX4_EVENT_TYPES_NUM]; |
Jack Morgenstein | 623ed84 | 2011-12-13 04:10:33 +0000 | [diff] [blame] | 496 | 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 Morgenstein | 993c401 | 2012-08-03 08:40:48 +0000 | [diff] [blame] | 502 | enum slave_port_state port_state[MLX4_MAX_PORTS + 1]; |
Jack Morgenstein | 623ed84 | 2011-12-13 04:10:33 +0000 | [diff] [blame] | 503 | }; |
| 504 | |
Rony Efraim | 0eb62b9 | 2013-04-25 05:22:26 +0000 | [diff] [blame] | 505 | #define MLX4_VGT 4095 |
| 506 | #define NO_INDX (-1) |
| 507 | |
| 508 | struct mlx4_vport_state { |
| 509 | u64 mac; |
| 510 | u16 default_vlan; |
| 511 | u8 default_qos; |
| 512 | u32 tx_rate; |
| 513 | bool spoofchk; |
Rony Efraim | 948e306d7 | 2013-06-13 13:19:11 +0300 | [diff] [blame] | 514 | u32 link_state; |
Rony Efraim | 0eb62b9 | 2013-04-25 05:22:26 +0000 | [diff] [blame] | 515 | }; |
| 516 | |
| 517 | struct mlx4_vf_admin_state { |
| 518 | struct mlx4_vport_state vport[MLX4_MAX_PORTS + 1]; |
Jack Morgenstein | 99ec41d | 2014-05-29 16:31:03 +0300 | [diff] [blame] | 519 | u8 enable_smi[MLX4_MAX_PORTS + 1]; |
Rony Efraim | 0eb62b9 | 2013-04-25 05:22:26 +0000 | [diff] [blame] | 520 | }; |
| 521 | |
| 522 | struct mlx4_vport_oper_state { |
| 523 | struct mlx4_vport_state state; |
| 524 | int mac_idx; |
| 525 | int vlan_idx; |
| 526 | }; |
Jack Morgenstein | 99ec41d | 2014-05-29 16:31:03 +0300 | [diff] [blame] | 527 | |
Rony Efraim | 0eb62b9 | 2013-04-25 05:22:26 +0000 | [diff] [blame] | 528 | struct mlx4_vf_oper_state { |
| 529 | struct mlx4_vport_oper_state vport[MLX4_MAX_PORTS + 1]; |
Jack Morgenstein | 99ec41d | 2014-05-29 16:31:03 +0300 | [diff] [blame] | 530 | u8 smi_enabled[MLX4_MAX_PORTS + 1]; |
Rony Efraim | 0eb62b9 | 2013-04-25 05:22:26 +0000 | [diff] [blame] | 531 | }; |
| 532 | |
Jack Morgenstein | 623ed84 | 2011-12-13 04:10:33 +0000 | [diff] [blame] | 533 | struct slave_list { |
| 534 | struct mutex mutex; |
| 535 | struct list_head res_list[MLX4_NUM_OF_RESOURCE_TYPE]; |
| 536 | }; |
| 537 | |
Jack Morgenstein | 5a0d0a6 | 2013-11-03 10:03:23 +0200 | [diff] [blame] | 538 | struct resource_allocator { |
Jack Morgenstein | 146f3ef | 2013-11-03 10:03:25 +0200 | [diff] [blame] | 539 | spinlock_t alloc_lock; /* protect quotas */ |
Jack Morgenstein | 5a0d0a6 | 2013-11-03 10:03:23 +0200 | [diff] [blame] | 540 | union { |
| 541 | int res_reserved; |
| 542 | int res_port_rsvd[MLX4_MAX_PORTS]; |
| 543 | }; |
| 544 | union { |
| 545 | int res_free; |
| 546 | int res_port_free[MLX4_MAX_PORTS]; |
| 547 | }; |
| 548 | int *quota; |
| 549 | int *allocated; |
| 550 | int *guaranteed; |
| 551 | }; |
| 552 | |
Jack Morgenstein | 623ed84 | 2011-12-13 04:10:33 +0000 | [diff] [blame] | 553 | struct mlx4_resource_tracker { |
| 554 | spinlock_t lock; |
| 555 | /* tree for each resources */ |
Hadar Hen Zion | 4af1c04 | 2012-07-05 04:03:41 +0000 | [diff] [blame] | 556 | struct rb_root res_tree[MLX4_NUM_OF_RESOURCE_TYPE]; |
Jack Morgenstein | 623ed84 | 2011-12-13 04:10:33 +0000 | [diff] [blame] | 557 | /* num_of_slave's lists, one per slave */ |
| 558 | struct slave_list *slave_list; |
Jack Morgenstein | 5a0d0a6 | 2013-11-03 10:03:23 +0200 | [diff] [blame] | 559 | struct resource_allocator res_alloc[MLX4_NUM_OF_RESOURCE_TYPE]; |
Jack Morgenstein | 623ed84 | 2011-12-13 04:10:33 +0000 | [diff] [blame] | 560 | }; |
| 561 | |
| 562 | #define SLAVE_EVENT_EQ_SIZE 128 |
| 563 | struct mlx4_slave_event_eq { |
| 564 | u32 eqn; |
| 565 | u32 cons; |
| 566 | u32 prod; |
Jack Morgenstein | 992e8e6e | 2012-08-03 08:40:54 +0000 | [diff] [blame] | 567 | spinlock_t event_lock; |
Jack Morgenstein | 623ed84 | 2011-12-13 04:10:33 +0000 | [diff] [blame] | 568 | struct mlx4_eqe event_eqe[SLAVE_EVENT_EQ_SIZE]; |
| 569 | }; |
| 570 | |
| 571 | struct mlx4_master_qp0_state { |
| 572 | int proxy_qp0_active; |
| 573 | int qp0_active; |
| 574 | int port_active; |
| 575 | }; |
| 576 | |
| 577 | struct mlx4_mfunc_master_ctx { |
| 578 | struct mlx4_slave_state *slave_state; |
Rony Efraim | 0eb62b9 | 2013-04-25 05:22:26 +0000 | [diff] [blame] | 579 | struct mlx4_vf_admin_state *vf_admin; |
| 580 | struct mlx4_vf_oper_state *vf_oper; |
Jack Morgenstein | 623ed84 | 2011-12-13 04:10:33 +0000 | [diff] [blame] | 581 | struct mlx4_master_qp0_state qp0_state[MLX4_MAX_PORTS + 1]; |
| 582 | int init_port_ref[MLX4_MAX_PORTS + 1]; |
| 583 | u16 max_mtu[MLX4_MAX_PORTS + 1]; |
| 584 | int disable_mcast_ref[MLX4_MAX_PORTS + 1]; |
| 585 | struct mlx4_resource_tracker res_tracker; |
| 586 | struct workqueue_struct *comm_wq; |
| 587 | struct work_struct comm_work; |
| 588 | struct work_struct slave_event_work; |
| 589 | struct work_struct slave_flr_event_work; |
| 590 | spinlock_t slave_state_lock; |
Jack Morgenstein | f5311ac | 2011-12-13 04:12:13 +0000 | [diff] [blame] | 591 | __be32 comm_arm_bit_vector[4]; |
Jack Morgenstein | 623ed84 | 2011-12-13 04:10:33 +0000 | [diff] [blame] | 592 | struct mlx4_eqe cmd_eqe; |
| 593 | struct mlx4_slave_event_eq slave_eq; |
| 594 | struct mutex gen_eqe_mutex[MLX4_MFUNC_MAX]; |
| 595 | }; |
| 596 | |
| 597 | struct mlx4_mfunc { |
| 598 | struct mlx4_comm __iomem *comm; |
| 599 | struct mlx4_vhcr_cmd *vhcr; |
| 600 | dma_addr_t vhcr_dma; |
| 601 | |
| 602 | struct mlx4_mfunc_master_ctx master; |
| 603 | }; |
| 604 | |
Yevgeny Petrilin | fe6f700 | 2013-07-28 18:54:21 +0300 | [diff] [blame] | 605 | #define MGM_QPN_MASK 0x00FFFFFF |
| 606 | #define MGM_BLCK_LB_BIT 30 |
| 607 | |
| 608 | struct mlx4_mgm { |
| 609 | __be32 next_gid_index; |
| 610 | __be32 members_count; |
| 611 | u32 reserved[2]; |
| 612 | u8 gid[16]; |
| 613 | __be32 qp[MLX4_MAX_QP_PER_MGM]; |
| 614 | }; |
| 615 | |
Roland Dreier | 225c7b1 | 2007-05-08 18:00:38 -0700 | [diff] [blame] | 616 | struct mlx4_cmd { |
| 617 | struct pci_pool *pool; |
| 618 | void __iomem *hcr; |
Roland Dreier | f3d4c89 | 2012-09-25 21:24:07 -0700 | [diff] [blame] | 619 | struct mutex slave_cmd_mutex; |
Roland Dreier | 225c7b1 | 2007-05-08 18:00:38 -0700 | [diff] [blame] | 620 | struct semaphore poll_sem; |
| 621 | struct semaphore event_sem; |
| 622 | int max_cmds; |
| 623 | spinlock_t context_lock; |
| 624 | int free_head; |
| 625 | struct mlx4_cmd_context *context; |
| 626 | u16 token_mask; |
| 627 | u8 use_events; |
| 628 | u8 toggle; |
Jack Morgenstein | 623ed84 | 2011-12-13 04:10:33 +0000 | [diff] [blame] | 629 | u8 comm_toggle; |
Matan Barak | ffc39f6 | 2014-11-13 14:45:29 +0200 | [diff] [blame] | 630 | u8 initialized; |
Roland Dreier | 225c7b1 | 2007-05-08 18:00:38 -0700 | [diff] [blame] | 631 | }; |
| 632 | |
Jack Morgenstein | b01978c | 2013-06-27 19:05:21 +0300 | [diff] [blame] | 633 | enum { |
| 634 | MLX4_VF_IMMED_VLAN_FLAG_VLAN = 1 << 0, |
| 635 | MLX4_VF_IMMED_VLAN_FLAG_QOS = 1 << 1, |
Rony Efraim | 0a6eac2 | 2013-06-27 19:05:22 +0300 | [diff] [blame] | 636 | MLX4_VF_IMMED_VLAN_FLAG_LINK_DISABLE = 1 << 2, |
Jack Morgenstein | b01978c | 2013-06-27 19:05:21 +0300 | [diff] [blame] | 637 | }; |
| 638 | struct mlx4_vf_immed_vlan_work { |
| 639 | struct work_struct work; |
| 640 | struct mlx4_priv *priv; |
| 641 | int flags; |
| 642 | int slave; |
| 643 | int vlan_ix; |
| 644 | int orig_vlan_ix; |
| 645 | u8 port; |
| 646 | u8 qos; |
| 647 | u16 vlan_id; |
| 648 | u16 orig_vlan_id; |
| 649 | }; |
| 650 | |
| 651 | |
Roland Dreier | 225c7b1 | 2007-05-08 18:00:38 -0700 | [diff] [blame] | 652 | struct mlx4_uar_table { |
| 653 | struct mlx4_bitmap bitmap; |
| 654 | }; |
| 655 | |
| 656 | struct mlx4_mr_table { |
| 657 | struct mlx4_bitmap mpt_bitmap; |
| 658 | struct mlx4_buddy mtt_buddy; |
| 659 | u64 mtt_base; |
| 660 | u64 mpt_base; |
| 661 | struct mlx4_icm_table mtt_table; |
| 662 | struct mlx4_icm_table dmpt_table; |
| 663 | }; |
| 664 | |
| 665 | struct mlx4_cq_table { |
| 666 | struct mlx4_bitmap bitmap; |
| 667 | spinlock_t lock; |
| 668 | struct radix_tree_root tree; |
| 669 | struct mlx4_icm_table table; |
| 670 | struct mlx4_icm_table cmpt_table; |
| 671 | }; |
| 672 | |
| 673 | struct mlx4_eq_table { |
| 674 | struct mlx4_bitmap bitmap; |
Yevgeny Petrilin | b8dd786 | 2008-12-22 07:15:03 -0800 | [diff] [blame] | 675 | char *irq_names; |
Roland Dreier | 225c7b1 | 2007-05-08 18:00:38 -0700 | [diff] [blame] | 676 | void __iomem *clr_int; |
Yevgeny Petrilin | b8dd786 | 2008-12-22 07:15:03 -0800 | [diff] [blame] | 677 | void __iomem **uar_map; |
Roland Dreier | 225c7b1 | 2007-05-08 18:00:38 -0700 | [diff] [blame] | 678 | u32 clr_mask; |
Yevgeny Petrilin | b8dd786 | 2008-12-22 07:15:03 -0800 | [diff] [blame] | 679 | struct mlx4_eq *eq; |
Roland Dreier | fa0681d | 2009-09-05 20:24:49 -0700 | [diff] [blame] | 680 | struct mlx4_icm_table table; |
Roland Dreier | 225c7b1 | 2007-05-08 18:00:38 -0700 | [diff] [blame] | 681 | struct mlx4_icm_table cmpt_table; |
| 682 | int have_irq; |
| 683 | u8 inta_pin; |
| 684 | }; |
| 685 | |
| 686 | struct mlx4_srq_table { |
| 687 | struct mlx4_bitmap bitmap; |
| 688 | spinlock_t lock; |
| 689 | struct radix_tree_root tree; |
| 690 | struct mlx4_icm_table table; |
| 691 | struct mlx4_icm_table cmpt_table; |
| 692 | }; |
| 693 | |
Matan Barak | d57febe | 2014-12-11 10:57:57 +0200 | [diff] [blame] | 694 | enum mlx4_qp_table_zones { |
| 695 | MLX4_QP_TABLE_ZONE_GENERAL, |
| 696 | MLX4_QP_TABLE_ZONE_RSS, |
| 697 | MLX4_QP_TABLE_ZONE_RAW_ETH, |
| 698 | MLX4_QP_TABLE_ZONE_NUM |
| 699 | }; |
| 700 | |
Roland Dreier | 225c7b1 | 2007-05-08 18:00:38 -0700 | [diff] [blame] | 701 | struct mlx4_qp_table { |
Matan Barak | d57febe | 2014-12-11 10:57:57 +0200 | [diff] [blame] | 702 | struct mlx4_bitmap *bitmap_gen; |
| 703 | struct mlx4_zone_allocator *zones; |
| 704 | u32 zones_uids[MLX4_QP_TABLE_ZONE_NUM]; |
Roland Dreier | 225c7b1 | 2007-05-08 18:00:38 -0700 | [diff] [blame] | 705 | u32 rdmarc_base; |
| 706 | int rdmarc_shift; |
| 707 | spinlock_t lock; |
| 708 | struct mlx4_icm_table qp_table; |
| 709 | struct mlx4_icm_table auxc_table; |
| 710 | struct mlx4_icm_table altc_table; |
| 711 | struct mlx4_icm_table rdmarc_table; |
| 712 | struct mlx4_icm_table cmpt_table; |
| 713 | }; |
| 714 | |
| 715 | struct mlx4_mcg_table { |
| 716 | struct mutex mutex; |
| 717 | struct mlx4_bitmap bitmap; |
| 718 | struct mlx4_icm_table table; |
| 719 | }; |
| 720 | |
| 721 | struct mlx4_catas_err { |
| 722 | u32 __iomem *map; |
Jack Morgenstein | ee49bd9 | 2007-07-12 17:50:45 +0300 | [diff] [blame] | 723 | struct timer_list timer; |
| 724 | struct list_head list; |
Roland Dreier | 225c7b1 | 2007-05-08 18:00:38 -0700 | [diff] [blame] | 725 | }; |
| 726 | |
Yevgeny Petrilin | 2a2336f | 2008-10-22 11:44:46 -0700 | [diff] [blame] | 727 | #define MLX4_MAX_MAC_NUM 128 |
| 728 | #define MLX4_MAC_TABLE_SIZE (MLX4_MAX_MAC_NUM << 3) |
| 729 | |
| 730 | struct mlx4_mac_table { |
| 731 | __be64 entries[MLX4_MAX_MAC_NUM]; |
| 732 | int refs[MLX4_MAX_MAC_NUM]; |
| 733 | struct mutex mutex; |
| 734 | int total; |
| 735 | int max; |
| 736 | }; |
| 737 | |
Jack Morgenstein | 111c609 | 2014-05-27 09:26:38 +0300 | [diff] [blame] | 738 | #define MLX4_ROCE_GID_ENTRY_SIZE 16 |
| 739 | |
| 740 | struct mlx4_roce_gid_entry { |
| 741 | u8 raw[MLX4_ROCE_GID_ENTRY_SIZE]; |
| 742 | }; |
| 743 | |
| 744 | struct mlx4_roce_gid_table { |
| 745 | struct mlx4_roce_gid_entry roce_gids[MLX4_ROCE_MAX_GIDS]; |
| 746 | struct mutex mutex; |
| 747 | }; |
| 748 | |
Yevgeny Petrilin | 2a2336f | 2008-10-22 11:44:46 -0700 | [diff] [blame] | 749 | #define MLX4_MAX_VLAN_NUM 128 |
| 750 | #define MLX4_VLAN_TABLE_SIZE (MLX4_MAX_VLAN_NUM << 2) |
| 751 | |
| 752 | struct mlx4_vlan_table { |
| 753 | __be32 entries[MLX4_MAX_VLAN_NUM]; |
| 754 | int refs[MLX4_MAX_VLAN_NUM]; |
| 755 | struct mutex mutex; |
| 756 | int total; |
| 757 | int max; |
| 758 | }; |
| 759 | |
Eugenia Emantayev | ffe455a | 2011-12-13 04:16:21 +0000 | [diff] [blame] | 760 | #define SET_PORT_GEN_ALL_VALID 0x7 |
| 761 | #define SET_PORT_PROMISC_SHIFT 31 |
| 762 | #define SET_PORT_MC_PROMISC_SHIFT 30 |
| 763 | |
| 764 | enum { |
| 765 | MCAST_DIRECT_ONLY = 0, |
| 766 | MCAST_DIRECT = 1, |
| 767 | MCAST_DEFAULT = 2 |
| 768 | }; |
| 769 | |
| 770 | |
| 771 | struct mlx4_set_port_general_context { |
| 772 | u8 reserved[3]; |
| 773 | u8 flags; |
| 774 | u16 reserved2; |
| 775 | __be16 mtu; |
| 776 | u8 pptx; |
| 777 | u8 pfctx; |
| 778 | u16 reserved3; |
| 779 | u8 pprx; |
| 780 | u8 pfcrx; |
| 781 | u16 reserved4; |
| 782 | }; |
| 783 | |
| 784 | struct mlx4_set_port_rqp_calc_context { |
| 785 | __be32 base_qpn; |
| 786 | u8 rererved; |
| 787 | u8 n_mac; |
| 788 | u8 n_vlan; |
| 789 | u8 n_prio; |
| 790 | u8 reserved2[3]; |
| 791 | u8 mac_miss; |
| 792 | u8 intra_no_vlan; |
| 793 | u8 no_vlan; |
| 794 | u8 intra_vlan_miss; |
| 795 | u8 vlan_miss; |
| 796 | u8 reserved3[3]; |
| 797 | u8 no_vlan_prio; |
| 798 | __be32 promisc; |
| 799 | __be32 mcast; |
| 800 | }; |
| 801 | |
Yevgeny Petrilin | 2a2336f | 2008-10-22 11:44:46 -0700 | [diff] [blame] | 802 | struct mlx4_port_info { |
| 803 | struct mlx4_dev *dev; |
| 804 | int port; |
Yevgeny Petrilin | 7ff93f8 | 2008-10-22 15:38:42 -0700 | [diff] [blame] | 805 | char dev_name[16]; |
| 806 | struct device_attribute port_attr; |
| 807 | enum mlx4_port_type tmp_type; |
Or Gerlitz | 096335b | 2012-01-11 19:02:17 +0200 | [diff] [blame] | 808 | char dev_mtu_name[16]; |
| 809 | struct device_attribute port_mtu_attr; |
Yevgeny Petrilin | 2a2336f | 2008-10-22 11:44:46 -0700 | [diff] [blame] | 810 | struct mlx4_mac_table mac_table; |
| 811 | struct mlx4_vlan_table vlan_table; |
Jack Morgenstein | 111c609 | 2014-05-27 09:26:38 +0300 | [diff] [blame] | 812 | struct mlx4_roce_gid_table gid_table; |
Yevgeny Petrilin | 1679200 | 2011-03-22 22:38:31 +0000 | [diff] [blame] | 813 | int base_qpn; |
Yevgeny Petrilin | 2a2336f | 2008-10-22 11:44:46 -0700 | [diff] [blame] | 814 | }; |
| 815 | |
Yevgeny Petrilin | 27bf91d | 2009-03-18 19:45:11 -0700 | [diff] [blame] | 816 | struct mlx4_sense { |
| 817 | struct mlx4_dev *dev; |
| 818 | u8 do_sense_port[MLX4_MAX_PORTS + 1]; |
| 819 | u8 sense_allowed[MLX4_MAX_PORTS + 1]; |
| 820 | struct delayed_work sense_poll; |
| 821 | }; |
| 822 | |
Yevgeny Petrilin | 0b7ca5a | 2011-03-22 22:37:47 +0000 | [diff] [blame] | 823 | struct mlx4_msix_ctl { |
| 824 | u64 pool_bm; |
Yevgeny Petrilin | 730c41d | 2012-02-21 03:39:32 +0000 | [diff] [blame] | 825 | struct mutex pool_lock; |
Yevgeny Petrilin | 0b7ca5a | 2011-03-22 22:37:47 +0000 | [diff] [blame] | 826 | }; |
| 827 | |
Yevgeny Petrilin | b12d93d | 2011-03-22 22:38:24 +0000 | [diff] [blame] | 828 | struct mlx4_steer { |
| 829 | struct list_head promisc_qps[MLX4_NUM_STEERS]; |
| 830 | struct list_head steer_entries[MLX4_NUM_STEERS]; |
Yevgeny Petrilin | b12d93d | 2011-03-22 22:38:24 +0000 | [diff] [blame] | 831 | }; |
| 832 | |
Roland Dreier | 839f124 | 2012-09-27 09:23:41 -0700 | [diff] [blame] | 833 | enum { |
| 834 | MLX4_PCI_DEV_IS_VF = 1 << 0, |
Roland Dreier | ca3e57a | 2012-09-27 09:53:05 -0700 | [diff] [blame] | 835 | MLX4_PCI_DEV_FORCE_SENSE_PORT = 1 << 1, |
Roland Dreier | 839f124 | 2012-09-27 09:23:41 -0700 | [diff] [blame] | 836 | }; |
| 837 | |
Jack Morgenstein | 7c6d74d | 2013-12-08 16:50:17 +0200 | [diff] [blame] | 838 | enum { |
| 839 | MLX4_NO_RR = 0, |
| 840 | MLX4_USE_RR = 1, |
| 841 | }; |
| 842 | |
Roland Dreier | 225c7b1 | 2007-05-08 18:00:38 -0700 | [diff] [blame] | 843 | struct mlx4_priv { |
| 844 | struct mlx4_dev dev; |
| 845 | |
| 846 | struct list_head dev_list; |
| 847 | struct list_head ctx_list; |
| 848 | spinlock_t ctx_lock; |
| 849 | |
Roland Dreier | 839f124 | 2012-09-27 09:23:41 -0700 | [diff] [blame] | 850 | int pci_dev_data; |
Wei Yang | befdf89 | 2014-04-14 09:51:19 +0800 | [diff] [blame] | 851 | int removed; |
Roland Dreier | 839f124 | 2012-09-27 09:23:41 -0700 | [diff] [blame] | 852 | |
Yevgeny Petrilin | 6296883 | 2008-04-23 11:55:45 -0700 | [diff] [blame] | 853 | struct list_head pgdir_list; |
| 854 | struct mutex pgdir_mutex; |
| 855 | |
Roland Dreier | 225c7b1 | 2007-05-08 18:00:38 -0700 | [diff] [blame] | 856 | struct mlx4_fw fw; |
| 857 | struct mlx4_cmd cmd; |
Jack Morgenstein | 623ed84 | 2011-12-13 04:10:33 +0000 | [diff] [blame] | 858 | struct mlx4_mfunc mfunc; |
Roland Dreier | 225c7b1 | 2007-05-08 18:00:38 -0700 | [diff] [blame] | 859 | |
| 860 | struct mlx4_bitmap pd_bitmap; |
Sean Hefty | 012a8ff | 2011-06-02 09:01:33 -0700 | [diff] [blame] | 861 | struct mlx4_bitmap xrcd_bitmap; |
Roland Dreier | 225c7b1 | 2007-05-08 18:00:38 -0700 | [diff] [blame] | 862 | struct mlx4_uar_table uar_table; |
| 863 | struct mlx4_mr_table mr_table; |
| 864 | struct mlx4_cq_table cq_table; |
| 865 | struct mlx4_eq_table eq_table; |
| 866 | struct mlx4_srq_table srq_table; |
| 867 | struct mlx4_qp_table qp_table; |
| 868 | struct mlx4_mcg_table mcg_table; |
Or Gerlitz | f2a3f6a | 2011-06-15 14:47:14 +0000 | [diff] [blame] | 869 | struct mlx4_bitmap counters_bitmap; |
Roland Dreier | 225c7b1 | 2007-05-08 18:00:38 -0700 | [diff] [blame] | 870 | |
| 871 | struct mlx4_catas_err catas_err; |
| 872 | |
| 873 | void __iomem *clr_base; |
| 874 | |
| 875 | struct mlx4_uar driver_uar; |
| 876 | void __iomem *kar; |
Yevgeny Petrilin | 2a2336f | 2008-10-22 11:44:46 -0700 | [diff] [blame] | 877 | struct mlx4_port_info port[MLX4_MAX_PORTS + 1]; |
Yevgeny Petrilin | 27bf91d | 2009-03-18 19:45:11 -0700 | [diff] [blame] | 878 | struct mlx4_sense sense; |
Yevgeny Petrilin | 7ff93f8 | 2008-10-22 15:38:42 -0700 | [diff] [blame] | 879 | struct mutex port_mutex; |
Yevgeny Petrilin | 0b7ca5a | 2011-03-22 22:37:47 +0000 | [diff] [blame] | 880 | struct mlx4_msix_ctl msix_ctl; |
Yevgeny Petrilin | b12d93d | 2011-03-22 22:38:24 +0000 | [diff] [blame] | 881 | struct mlx4_steer *steer; |
Eli Cohen | c1b43dc | 2011-03-22 22:38:41 +0000 | [diff] [blame] | 882 | struct list_head bf_list; |
| 883 | struct mutex bf_mutex; |
| 884 | struct io_mapping *bf_mapping; |
Eugenia Emantayev | ddd8a6c | 2013-04-23 06:06:48 +0000 | [diff] [blame] | 885 | void __iomem *clock_mapping; |
Jack Morgenstein | ea51b37 | 2011-12-13 04:13:48 +0000 | [diff] [blame] | 886 | int reserved_mtts; |
Hadar Hen Zion | 0ff1fb6 | 2012-07-05 04:03:46 +0000 | [diff] [blame] | 887 | int fs_hash_mode; |
Jack Morgenstein | 54679e1 | 2012-08-03 08:40:43 +0000 | [diff] [blame] | 888 | u8 virt2phys_pkey[MLX4_MFUNC_MAX][MLX4_MAX_PORTS][MLX4_MAX_PORT_PKEYS]; |
Moni Shoua | 53f33ae | 2015-02-03 16:48:33 +0200 | [diff] [blame] | 889 | struct mlx4_port_map v2p; /* cached port mapping configuration */ |
| 890 | struct mutex bond_mutex; /* for bond mode */ |
Jack Morgenstein | afa8fd1 | 2012-08-03 08:40:56 +0000 | [diff] [blame] | 891 | __be64 slave_node_guids[MLX4_MFUNC_MAX]; |
Jack Morgenstein | 54679e1 | 2012-08-03 08:40:43 +0000 | [diff] [blame] | 892 | |
Yevgeny Petrilin | fe6f700 | 2013-07-28 18:54:21 +0300 | [diff] [blame] | 893 | atomic_t opreq_count; |
| 894 | struct work_struct opreq_task; |
Roland Dreier | 225c7b1 | 2007-05-08 18:00:38 -0700 | [diff] [blame] | 895 | }; |
| 896 | |
| 897 | static inline struct mlx4_priv *mlx4_priv(struct mlx4_dev *dev) |
| 898 | { |
| 899 | return container_of(dev, struct mlx4_priv, dev); |
| 900 | } |
| 901 | |
Yevgeny Petrilin | 27bf91d | 2009-03-18 19:45:11 -0700 | [diff] [blame] | 902 | #define MLX4_SENSE_RANGE (HZ * 3) |
| 903 | |
| 904 | extern struct workqueue_struct *mlx4_wq; |
| 905 | |
Roland Dreier | 225c7b1 | 2007-05-08 18:00:38 -0700 | [diff] [blame] | 906 | u32 mlx4_bitmap_alloc(struct mlx4_bitmap *bitmap); |
Jack Morgenstein | 7c6d74d | 2013-12-08 16:50:17 +0200 | [diff] [blame] | 907 | void mlx4_bitmap_free(struct mlx4_bitmap *bitmap, u32 obj, int use_rr); |
Eugenia Emantayev | ddae034 | 2014-12-11 10:57:54 +0200 | [diff] [blame] | 908 | u32 mlx4_bitmap_alloc_range(struct mlx4_bitmap *bitmap, int cnt, |
| 909 | int align, u32 skip_mask); |
Jack Morgenstein | 7c6d74d | 2013-12-08 16:50:17 +0200 | [diff] [blame] | 910 | void mlx4_bitmap_free_range(struct mlx4_bitmap *bitmap, u32 obj, int cnt, |
| 911 | int use_rr); |
Eli Cohen | 42d1e01 | 2011-03-22 22:38:45 +0000 | [diff] [blame] | 912 | u32 mlx4_bitmap_avail(struct mlx4_bitmap *bitmap); |
Yevgeny Petrilin | 93fc9e1 | 2008-10-22 10:25:29 -0700 | [diff] [blame] | 913 | int mlx4_bitmap_init(struct mlx4_bitmap *bitmap, u32 num, u32 mask, |
| 914 | u32 reserved_bot, u32 resetrved_top); |
Roland Dreier | 225c7b1 | 2007-05-08 18:00:38 -0700 | [diff] [blame] | 915 | void mlx4_bitmap_cleanup(struct mlx4_bitmap *bitmap); |
| 916 | |
| 917 | int mlx4_reset(struct mlx4_dev *dev); |
| 918 | |
Yevgeny Petrilin | b8dd786 | 2008-12-22 07:15:03 -0800 | [diff] [blame] | 919 | int mlx4_alloc_eq_table(struct mlx4_dev *dev); |
| 920 | void mlx4_free_eq_table(struct mlx4_dev *dev); |
| 921 | |
Roland Dreier | 225c7b1 | 2007-05-08 18:00:38 -0700 | [diff] [blame] | 922 | int mlx4_init_pd_table(struct mlx4_dev *dev); |
Sean Hefty | 012a8ff | 2011-06-02 09:01:33 -0700 | [diff] [blame] | 923 | int mlx4_init_xrcd_table(struct mlx4_dev *dev); |
Roland Dreier | 225c7b1 | 2007-05-08 18:00:38 -0700 | [diff] [blame] | 924 | int mlx4_init_uar_table(struct mlx4_dev *dev); |
| 925 | int mlx4_init_mr_table(struct mlx4_dev *dev); |
| 926 | int mlx4_init_eq_table(struct mlx4_dev *dev); |
| 927 | int mlx4_init_cq_table(struct mlx4_dev *dev); |
| 928 | int mlx4_init_qp_table(struct mlx4_dev *dev); |
| 929 | int mlx4_init_srq_table(struct mlx4_dev *dev); |
| 930 | int mlx4_init_mcg_table(struct mlx4_dev *dev); |
| 931 | |
| 932 | void mlx4_cleanup_pd_table(struct mlx4_dev *dev); |
Sean Hefty | 012a8ff | 2011-06-02 09:01:33 -0700 | [diff] [blame] | 933 | void mlx4_cleanup_xrcd_table(struct mlx4_dev *dev); |
Roland Dreier | 225c7b1 | 2007-05-08 18:00:38 -0700 | [diff] [blame] | 934 | void mlx4_cleanup_uar_table(struct mlx4_dev *dev); |
| 935 | void mlx4_cleanup_mr_table(struct mlx4_dev *dev); |
| 936 | void mlx4_cleanup_eq_table(struct mlx4_dev *dev); |
| 937 | void mlx4_cleanup_cq_table(struct mlx4_dev *dev); |
| 938 | void mlx4_cleanup_qp_table(struct mlx4_dev *dev); |
| 939 | void mlx4_cleanup_srq_table(struct mlx4_dev *dev); |
| 940 | void mlx4_cleanup_mcg_table(struct mlx4_dev *dev); |
Jiri Kosina | 40f2287 | 2014-05-11 15:15:12 +0300 | [diff] [blame] | 941 | int __mlx4_qp_alloc_icm(struct mlx4_dev *dev, int qpn, gfp_t gfp); |
Eli Cohen | c82e9aa | 2011-12-13 04:15:24 +0000 | [diff] [blame] | 942 | void __mlx4_qp_free_icm(struct mlx4_dev *dev, int qpn); |
| 943 | int __mlx4_cq_alloc_icm(struct mlx4_dev *dev, int *cqn); |
| 944 | void __mlx4_cq_free_icm(struct mlx4_dev *dev, int cqn); |
| 945 | int __mlx4_srq_alloc_icm(struct mlx4_dev *dev, int *srqn); |
| 946 | void __mlx4_srq_free_icm(struct mlx4_dev *dev, int srqn); |
Shani Michaeli | b20e519 | 2013-02-06 16:19:08 +0000 | [diff] [blame] | 947 | int __mlx4_mpt_reserve(struct mlx4_dev *dev); |
| 948 | void __mlx4_mpt_release(struct mlx4_dev *dev, u32 index); |
Jiri Kosina | 40f2287 | 2014-05-11 15:15:12 +0300 | [diff] [blame] | 949 | int __mlx4_mpt_alloc_icm(struct mlx4_dev *dev, u32 index, gfp_t gfp); |
Shani Michaeli | b20e519 | 2013-02-06 16:19:08 +0000 | [diff] [blame] | 950 | void __mlx4_mpt_free_icm(struct mlx4_dev *dev, u32 index); |
Eli Cohen | c82e9aa | 2011-12-13 04:15:24 +0000 | [diff] [blame] | 951 | u32 __mlx4_alloc_mtt_range(struct mlx4_dev *dev, int order); |
| 952 | void __mlx4_free_mtt_range(struct mlx4_dev *dev, u32 first_seg, int order); |
Roland Dreier | 225c7b1 | 2007-05-08 18:00:38 -0700 | [diff] [blame] | 953 | |
Jack Morgenstein | 623ed84 | 2011-12-13 04:10:33 +0000 | [diff] [blame] | 954 | int mlx4_WRITE_MTT_wrapper(struct mlx4_dev *dev, int slave, |
| 955 | struct mlx4_vhcr *vhcr, |
| 956 | struct mlx4_cmd_mailbox *inbox, |
| 957 | struct mlx4_cmd_mailbox *outbox, |
| 958 | struct mlx4_cmd_info *cmd); |
| 959 | int mlx4_SYNC_TPT_wrapper(struct mlx4_dev *dev, int slave, |
| 960 | struct mlx4_vhcr *vhcr, |
| 961 | struct mlx4_cmd_mailbox *inbox, |
| 962 | struct mlx4_cmd_mailbox *outbox, |
| 963 | struct mlx4_cmd_info *cmd); |
| 964 | int mlx4_SW2HW_MPT_wrapper(struct mlx4_dev *dev, int slave, |
| 965 | struct mlx4_vhcr *vhcr, |
| 966 | struct mlx4_cmd_mailbox *inbox, |
| 967 | struct mlx4_cmd_mailbox *outbox, |
| 968 | struct mlx4_cmd_info *cmd); |
| 969 | int mlx4_HW2SW_MPT_wrapper(struct mlx4_dev *dev, int slave, |
| 970 | struct mlx4_vhcr *vhcr, |
| 971 | struct mlx4_cmd_mailbox *inbox, |
| 972 | struct mlx4_cmd_mailbox *outbox, |
| 973 | struct mlx4_cmd_info *cmd); |
| 974 | int mlx4_QUERY_MPT_wrapper(struct mlx4_dev *dev, int slave, |
| 975 | struct mlx4_vhcr *vhcr, |
| 976 | struct mlx4_cmd_mailbox *inbox, |
| 977 | struct mlx4_cmd_mailbox *outbox, |
| 978 | struct mlx4_cmd_info *cmd); |
| 979 | int mlx4_SW2HW_EQ_wrapper(struct mlx4_dev *dev, int slave, |
| 980 | struct mlx4_vhcr *vhcr, |
| 981 | struct mlx4_cmd_mailbox *inbox, |
| 982 | struct mlx4_cmd_mailbox *outbox, |
| 983 | struct mlx4_cmd_info *cmd); |
Matan Barak | d475c95 | 2014-11-02 16:26:17 +0200 | [diff] [blame] | 984 | int mlx4_CONFIG_DEV_wrapper(struct mlx4_dev *dev, int slave, |
| 985 | struct mlx4_vhcr *vhcr, |
| 986 | struct mlx4_cmd_mailbox *inbox, |
| 987 | struct mlx4_cmd_mailbox *outbox, |
| 988 | struct mlx4_cmd_info *cmd); |
Jack Morgenstein | 623ed84 | 2011-12-13 04:10:33 +0000 | [diff] [blame] | 989 | int mlx4_DMA_wrapper(struct mlx4_dev *dev, int slave, |
| 990 | struct mlx4_vhcr *vhcr, |
| 991 | struct mlx4_cmd_mailbox *inbox, |
| 992 | struct mlx4_cmd_mailbox *outbox, |
| 993 | struct mlx4_cmd_info *cmd); |
Eli Cohen | c82e9aa | 2011-12-13 04:15:24 +0000 | [diff] [blame] | 994 | int __mlx4_qp_reserve_range(struct mlx4_dev *dev, int cnt, int align, |
Eugenia Emantayev | ddae034 | 2014-12-11 10:57:54 +0200 | [diff] [blame] | 995 | int *base, u8 flags); |
Eli Cohen | c82e9aa | 2011-12-13 04:15:24 +0000 | [diff] [blame] | 996 | void __mlx4_qp_release_range(struct mlx4_dev *dev, int base_qpn, int cnt); |
| 997 | int __mlx4_register_mac(struct mlx4_dev *dev, u8 port, u64 mac); |
| 998 | void __mlx4_unregister_mac(struct mlx4_dev *dev, u8 port, u64 mac); |
Eli Cohen | c82e9aa | 2011-12-13 04:15:24 +0000 | [diff] [blame] | 999 | int __mlx4_write_mtt(struct mlx4_dev *dev, struct mlx4_mtt *mtt, |
| 1000 | int start_index, int npages, u64 *page_list); |
Jack Morgenstein | ba062d5 | 2012-05-15 10:35:03 +0000 | [diff] [blame] | 1001 | int __mlx4_counter_alloc(struct mlx4_dev *dev, u32 *idx); |
| 1002 | void __mlx4_counter_free(struct mlx4_dev *dev, u32 idx); |
| 1003 | int __mlx4_xrcd_alloc(struct mlx4_dev *dev, u32 *xrcdn); |
| 1004 | void __mlx4_xrcd_free(struct mlx4_dev *dev, u32 xrcdn); |
Jack Morgenstein | 623ed84 | 2011-12-13 04:10:33 +0000 | [diff] [blame] | 1005 | |
Jack Morgenstein | ee49bd9 | 2007-07-12 17:50:45 +0300 | [diff] [blame] | 1006 | void mlx4_start_catas_poll(struct mlx4_dev *dev); |
| 1007 | void mlx4_stop_catas_poll(struct mlx4_dev *dev); |
Yishai Hadas | ad9a0bf | 2015-01-25 16:59:37 +0200 | [diff] [blame] | 1008 | int mlx4_catas_init(struct mlx4_dev *dev); |
| 1009 | void mlx4_catas_end(struct mlx4_dev *dev); |
Jack Morgenstein | ee49bd9 | 2007-07-12 17:50:45 +0300 | [diff] [blame] | 1010 | int mlx4_restart_one(struct pci_dev *pdev); |
Roland Dreier | 225c7b1 | 2007-05-08 18:00:38 -0700 | [diff] [blame] | 1011 | int mlx4_register_device(struct mlx4_dev *dev); |
| 1012 | void mlx4_unregister_device(struct mlx4_dev *dev); |
Jack Morgenstein | 00f5ce9 | 2012-06-19 11:21:40 +0300 | [diff] [blame] | 1013 | void mlx4_dispatch_event(struct mlx4_dev *dev, enum mlx4_dev_event type, |
| 1014 | unsigned long param); |
Roland Dreier | 225c7b1 | 2007-05-08 18:00:38 -0700 | [diff] [blame] | 1015 | |
| 1016 | struct mlx4_dev_cap; |
| 1017 | struct mlx4_init_hca_param; |
| 1018 | |
| 1019 | u64 mlx4_make_profile(struct mlx4_dev *dev, |
| 1020 | struct mlx4_profile *request, |
| 1021 | struct mlx4_dev_cap *dev_cap, |
| 1022 | struct mlx4_init_hca_param *init_hca); |
Jack Morgenstein | 623ed84 | 2011-12-13 04:10:33 +0000 | [diff] [blame] | 1023 | void mlx4_master_comm_channel(struct work_struct *work); |
| 1024 | void mlx4_gen_slave_eqe(struct work_struct *work); |
| 1025 | void mlx4_master_handle_slave_flr(struct work_struct *work); |
| 1026 | |
| 1027 | int mlx4_ALLOC_RES_wrapper(struct mlx4_dev *dev, int slave, |
| 1028 | struct mlx4_vhcr *vhcr, |
| 1029 | struct mlx4_cmd_mailbox *inbox, |
| 1030 | struct mlx4_cmd_mailbox *outbox, |
| 1031 | struct mlx4_cmd_info *cmd); |
| 1032 | int mlx4_FREE_RES_wrapper(struct mlx4_dev *dev, int slave, |
| 1033 | struct mlx4_vhcr *vhcr, |
| 1034 | struct mlx4_cmd_mailbox *inbox, |
| 1035 | struct mlx4_cmd_mailbox *outbox, |
| 1036 | struct mlx4_cmd_info *cmd); |
| 1037 | int mlx4_MAP_EQ_wrapper(struct mlx4_dev *dev, int slave, |
| 1038 | struct mlx4_vhcr *vhcr, struct mlx4_cmd_mailbox *inbox, |
| 1039 | struct mlx4_cmd_mailbox *outbox, |
| 1040 | struct mlx4_cmd_info *cmd); |
| 1041 | int mlx4_COMM_INT_wrapper(struct mlx4_dev *dev, int slave, |
| 1042 | struct mlx4_vhcr *vhcr, |
| 1043 | struct mlx4_cmd_mailbox *inbox, |
| 1044 | struct mlx4_cmd_mailbox *outbox, |
| 1045 | struct mlx4_cmd_info *cmd); |
| 1046 | int mlx4_HW2SW_EQ_wrapper(struct mlx4_dev *dev, int slave, |
| 1047 | struct mlx4_vhcr *vhcr, |
| 1048 | struct mlx4_cmd_mailbox *inbox, |
| 1049 | struct mlx4_cmd_mailbox *outbox, |
| 1050 | struct mlx4_cmd_info *cmd); |
| 1051 | int mlx4_QUERY_EQ_wrapper(struct mlx4_dev *dev, int slave, |
| 1052 | struct mlx4_vhcr *vhcr, |
| 1053 | struct mlx4_cmd_mailbox *inbox, |
| 1054 | struct mlx4_cmd_mailbox *outbox, |
| 1055 | struct mlx4_cmd_info *cmd); |
| 1056 | int mlx4_SW2HW_CQ_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); |
| 1061 | int mlx4_HW2SW_CQ_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); |
| 1066 | int mlx4_QUERY_CQ_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); |
| 1071 | int mlx4_MODIFY_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); |
| 1076 | int mlx4_SW2HW_SRQ_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); |
| 1081 | int mlx4_HW2SW_SRQ_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); |
| 1086 | int mlx4_QUERY_SRQ_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); |
| 1091 | int mlx4_ARM_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); |
| 1096 | int mlx4_GEN_QP_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); |
| 1101 | int mlx4_RST2INIT_QP_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); |
Jack Morgenstein | 54679e1 | 2012-08-03 08:40:43 +0000 | [diff] [blame] | 1106 | int mlx4_INIT2INIT_QP_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); |
Jack Morgenstein | 623ed84 | 2011-12-13 04:10:33 +0000 | [diff] [blame] | 1111 | int mlx4_INIT2RTR_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); |
Jack Morgenstein | 54679e1 | 2012-08-03 08:40:43 +0000 | [diff] [blame] | 1116 | int mlx4_RTR2RTS_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); |
| 1121 | int mlx4_RTS2RTS_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); |
| 1126 | int mlx4_SQERR2RTS_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); |
| 1131 | int mlx4_2ERR_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); |
| 1136 | int mlx4_RTS2SQD_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); |
| 1141 | int mlx4_SQD2SQD_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); |
| 1146 | int mlx4_SQD2RTS_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); |
Jack Morgenstein | 623ed84 | 2011-12-13 04:10:33 +0000 | [diff] [blame] | 1151 | int mlx4_2RST_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); |
Jack Morgenstein | 54679e1 | 2012-08-03 08:40:43 +0000 | [diff] [blame] | 1156 | int mlx4_QUERY_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); |
Jack Morgenstein | 623ed84 | 2011-12-13 04:10:33 +0000 | [diff] [blame] | 1161 | |
| 1162 | int mlx4_GEN_EQE(struct mlx4_dev *dev, int slave, struct mlx4_eqe *eqe); |
Roland Dreier | 225c7b1 | 2007-05-08 18:00:38 -0700 | [diff] [blame] | 1163 | |
Matan Barak | ffc39f6 | 2014-11-13 14:45:29 +0200 | [diff] [blame] | 1164 | enum { |
| 1165 | MLX4_CMD_CLEANUP_STRUCT = 1UL << 0, |
| 1166 | MLX4_CMD_CLEANUP_POOL = 1UL << 1, |
| 1167 | MLX4_CMD_CLEANUP_HCR = 1UL << 2, |
| 1168 | MLX4_CMD_CLEANUP_VHCR = 1UL << 3, |
| 1169 | MLX4_CMD_CLEANUP_ALL = (MLX4_CMD_CLEANUP_VHCR << 1) - 1 |
| 1170 | }; |
| 1171 | |
Roland Dreier | 225c7b1 | 2007-05-08 18:00:38 -0700 | [diff] [blame] | 1172 | int mlx4_cmd_init(struct mlx4_dev *dev); |
Matan Barak | ffc39f6 | 2014-11-13 14:45:29 +0200 | [diff] [blame] | 1173 | void mlx4_cmd_cleanup(struct mlx4_dev *dev, int cleanup_mask); |
Jack Morgenstein | ab9c17a | 2011-12-13 04:18:30 +0000 | [diff] [blame] | 1174 | int mlx4_multi_func_init(struct mlx4_dev *dev); |
Yishai Hadas | 55ad359 | 2015-01-25 16:59:42 +0200 | [diff] [blame] | 1175 | int mlx4_ARM_COMM_CHANNEL(struct mlx4_dev *dev); |
Jack Morgenstein | ab9c17a | 2011-12-13 04:18:30 +0000 | [diff] [blame] | 1176 | void mlx4_multi_func_cleanup(struct mlx4_dev *dev); |
Roland Dreier | 225c7b1 | 2007-05-08 18:00:38 -0700 | [diff] [blame] | 1177 | void mlx4_cmd_event(struct mlx4_dev *dev, u16 token, u8 status, u64 out_param); |
| 1178 | int mlx4_cmd_use_events(struct mlx4_dev *dev); |
| 1179 | void mlx4_cmd_use_polling(struct mlx4_dev *dev); |
| 1180 | |
Jack Morgenstein | ab9c17a | 2011-12-13 04:18:30 +0000 | [diff] [blame] | 1181 | int mlx4_comm_cmd(struct mlx4_dev *dev, u8 cmd, u16 param, |
Yishai Hadas | 0cd9302 | 2015-01-25 16:59:43 +0200 | [diff] [blame] | 1182 | u16 op, unsigned long timeout); |
Jack Morgenstein | ab9c17a | 2011-12-13 04:18:30 +0000 | [diff] [blame] | 1183 | |
Matan Barak | 3dca0f42 | 2014-12-11 10:57:53 +0200 | [diff] [blame] | 1184 | void mlx4_cq_tasklet_cb(unsigned long data); |
Roland Dreier | 225c7b1 | 2007-05-08 18:00:38 -0700 | [diff] [blame] | 1185 | void mlx4_cq_completion(struct mlx4_dev *dev, u32 cqn); |
| 1186 | void mlx4_cq_event(struct mlx4_dev *dev, u32 cqn, int event_type); |
| 1187 | |
| 1188 | void mlx4_qp_event(struct mlx4_dev *dev, u32 qpn, int event_type); |
| 1189 | |
| 1190 | void mlx4_srq_event(struct mlx4_dev *dev, u32 srqn, int event_type); |
| 1191 | |
Yishai Hadas | f6bc11e | 2015-01-25 16:59:38 +0200 | [diff] [blame] | 1192 | void mlx4_enter_error_state(struct mlx4_dev_persistent *persist); |
Roland Dreier | 225c7b1 | 2007-05-08 18:00:38 -0700 | [diff] [blame] | 1193 | |
Yevgeny Petrilin | ab6dc30 | 2011-04-06 23:24:42 +0000 | [diff] [blame] | 1194 | int mlx4_SENSE_PORT(struct mlx4_dev *dev, int port, |
| 1195 | enum mlx4_port_type *type); |
Yevgeny Petrilin | 27bf91d | 2009-03-18 19:45:11 -0700 | [diff] [blame] | 1196 | void mlx4_do_sense_ports(struct mlx4_dev *dev, |
| 1197 | enum mlx4_port_type *stype, |
| 1198 | enum mlx4_port_type *defaults); |
| 1199 | void mlx4_start_sense(struct mlx4_dev *dev); |
| 1200 | void mlx4_stop_sense(struct mlx4_dev *dev); |
| 1201 | void mlx4_sense_init(struct mlx4_dev *dev); |
| 1202 | int mlx4_check_port_params(struct mlx4_dev *dev, |
| 1203 | enum mlx4_port_type *port_type); |
| 1204 | int mlx4_change_port_types(struct mlx4_dev *dev, |
| 1205 | enum mlx4_port_type *port_types); |
| 1206 | |
Yevgeny Petrilin | 2a2336f | 2008-10-22 11:44:46 -0700 | [diff] [blame] | 1207 | void mlx4_init_mac_table(struct mlx4_dev *dev, struct mlx4_mac_table *table); |
| 1208 | void mlx4_init_vlan_table(struct mlx4_dev *dev, struct mlx4_vlan_table *table); |
Jack Morgenstein | 111c609 | 2014-05-27 09:26:38 +0300 | [diff] [blame] | 1209 | void mlx4_init_roce_gid_table(struct mlx4_dev *dev, |
| 1210 | struct mlx4_roce_gid_table *table); |
Jack Morgenstein | 2009d00 | 2013-11-03 10:03:19 +0200 | [diff] [blame] | 1211 | void __mlx4_unregister_vlan(struct mlx4_dev *dev, u8 port, u16 vlan); |
Rony Efraim | 3f7fb02 | 2013-04-25 05:22:28 +0000 | [diff] [blame] | 1212 | int __mlx4_register_vlan(struct mlx4_dev *dev, u8 port, u16 vlan, int *index); |
Yevgeny Petrilin | 2a2336f | 2008-10-22 11:44:46 -0700 | [diff] [blame] | 1213 | |
Jack Morgenstein | 6634961 | 2012-06-19 11:21:44 +0300 | [diff] [blame] | 1214 | int mlx4_SET_PORT(struct mlx4_dev *dev, u8 port, int pkey_tbl_sz); |
Jack Morgenstein | 623ed84 | 2011-12-13 04:10:33 +0000 | [diff] [blame] | 1215 | /* resource tracker functions*/ |
| 1216 | int mlx4_get_slave_from_resource_id(struct mlx4_dev *dev, |
| 1217 | enum mlx4_resource resource_type, |
Hadar Hen Zion | aa1ec3d | 2012-07-05 04:03:42 +0000 | [diff] [blame] | 1218 | u64 resource_id, int *slave); |
Jack Morgenstein | 623ed84 | 2011-12-13 04:10:33 +0000 | [diff] [blame] | 1219 | void mlx4_delete_all_resources_for_slave(struct mlx4_dev *dev, int slave_id); |
Jack Morgenstein | 111c609 | 2014-05-27 09:26:38 +0300 | [diff] [blame] | 1220 | void mlx4_reset_roce_gids(struct mlx4_dev *dev, int slave); |
Jack Morgenstein | 623ed84 | 2011-12-13 04:10:33 +0000 | [diff] [blame] | 1221 | int mlx4_init_resource_tracker(struct mlx4_dev *dev); |
| 1222 | |
Jack Morgenstein | b892495 | 2012-05-15 10:35:02 +0000 | [diff] [blame] | 1223 | void mlx4_free_resource_tracker(struct mlx4_dev *dev, |
| 1224 | enum mlx4_res_tracker_free_type type); |
Jack Morgenstein | 623ed84 | 2011-12-13 04:10:33 +0000 | [diff] [blame] | 1225 | |
Jack Morgenstein | b91cb3e | 2012-05-30 09:14:53 +0000 | [diff] [blame] | 1226 | int mlx4_QUERY_FW_wrapper(struct mlx4_dev *dev, int slave, |
| 1227 | struct mlx4_vhcr *vhcr, |
| 1228 | struct mlx4_cmd_mailbox *inbox, |
| 1229 | struct mlx4_cmd_mailbox *outbox, |
| 1230 | struct mlx4_cmd_info *cmd); |
Jack Morgenstein | 623ed84 | 2011-12-13 04:10:33 +0000 | [diff] [blame] | 1231 | int mlx4_SET_PORT_wrapper(struct mlx4_dev *dev, int slave, |
| 1232 | struct mlx4_vhcr *vhcr, |
| 1233 | struct mlx4_cmd_mailbox *inbox, |
| 1234 | struct mlx4_cmd_mailbox *outbox, |
| 1235 | struct mlx4_cmd_info *cmd); |
| 1236 | int mlx4_INIT_PORT_wrapper(struct mlx4_dev *dev, int slave, |
| 1237 | struct mlx4_vhcr *vhcr, |
| 1238 | struct mlx4_cmd_mailbox *inbox, |
| 1239 | struct mlx4_cmd_mailbox *outbox, |
| 1240 | struct mlx4_cmd_info *cmd); |
| 1241 | int mlx4_CLOSE_PORT_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); |
Jack Morgenstein | b91cb3e | 2012-05-30 09:14:53 +0000 | [diff] [blame] | 1246 | int mlx4_QUERY_DEV_CAP_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); |
Jack Morgenstein | 623ed84 | 2011-12-13 04:10:33 +0000 | [diff] [blame] | 1251 | int mlx4_QUERY_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); |
Jack Morgenstein | 9a5aa62 | 2008-11-28 21:29:46 -0800 | [diff] [blame] | 1256 | int mlx4_get_port_ib_caps(struct mlx4_dev *dev, u8 port, __be32 *caps); |
Yevgeny Petrilin | 7ff93f8 | 2008-10-22 15:38:42 -0700 | [diff] [blame] | 1257 | |
Jack Morgenstein | 6634961 | 2012-06-19 11:21:44 +0300 | [diff] [blame] | 1258 | int mlx4_get_slave_pkey_gid_tbl_len(struct mlx4_dev *dev, u8 port, |
| 1259 | int *gid_tbl_len, int *pkey_tbl_len); |
Jack Morgenstein | 623ed84 | 2011-12-13 04:10:33 +0000 | [diff] [blame] | 1260 | |
| 1261 | int mlx4_QP_ATTACH_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); |
| 1266 | |
Matan Barak | ce8d9e0 | 2014-05-15 15:29:27 +0300 | [diff] [blame] | 1267 | int mlx4_UPDATE_QP_wrapper(struct mlx4_dev *dev, int slave, |
| 1268 | struct mlx4_vhcr *vhcr, |
| 1269 | struct mlx4_cmd_mailbox *inbox, |
| 1270 | struct mlx4_cmd_mailbox *outbox, |
| 1271 | struct mlx4_cmd_info *cmd); |
| 1272 | |
Jack Morgenstein | 623ed84 | 2011-12-13 04:10:33 +0000 | [diff] [blame] | 1273 | int mlx4_PROMISC_wrapper(struct mlx4_dev *dev, int slave, |
| 1274 | struct mlx4_vhcr *vhcr, |
| 1275 | struct mlx4_cmd_mailbox *inbox, |
| 1276 | struct mlx4_cmd_mailbox *outbox, |
| 1277 | struct mlx4_cmd_info *cmd); |
Yevgeny Petrilin | b12d93d | 2011-03-22 22:38:24 +0000 | [diff] [blame] | 1278 | int mlx4_qp_detach_common(struct mlx4_dev *dev, struct mlx4_qp *qp, u8 gid[16], |
| 1279 | enum mlx4_protocol prot, enum mlx4_steer_type steer); |
| 1280 | int mlx4_qp_attach_common(struct mlx4_dev *dev, struct mlx4_qp *qp, u8 gid[16], |
| 1281 | int block_mcast_loopback, enum mlx4_protocol prot, |
| 1282 | enum mlx4_steer_type steer); |
Hadar Hen Zion | fd91c49 | 2013-04-11 01:56:40 +0000 | [diff] [blame] | 1283 | int mlx4_trans_to_dmfs_attach(struct mlx4_dev *dev, struct mlx4_qp *qp, |
| 1284 | u8 gid[16], u8 port, |
| 1285 | int block_mcast_loopback, |
| 1286 | enum mlx4_protocol prot, u64 *reg_id); |
Jack Morgenstein | 623ed84 | 2011-12-13 04:10:33 +0000 | [diff] [blame] | 1287 | int mlx4_SET_MCAST_FLTR_wrapper(struct mlx4_dev *dev, int slave, |
| 1288 | struct mlx4_vhcr *vhcr, |
| 1289 | struct mlx4_cmd_mailbox *inbox, |
| 1290 | struct mlx4_cmd_mailbox *outbox, |
| 1291 | struct mlx4_cmd_info *cmd); |
| 1292 | int mlx4_SET_VLAN_FLTR_wrapper(struct mlx4_dev *dev, int slave, |
| 1293 | struct mlx4_vhcr *vhcr, |
| 1294 | struct mlx4_cmd_mailbox *inbox, |
| 1295 | struct mlx4_cmd_mailbox *outbox, |
| 1296 | struct mlx4_cmd_info *cmd); |
| 1297 | int mlx4_common_set_vlan_fltr(struct mlx4_dev *dev, int function, |
| 1298 | int port, void *buf); |
| 1299 | int mlx4_common_dump_eth_stats(struct mlx4_dev *dev, int slave, u32 in_mod, |
| 1300 | struct mlx4_cmd_mailbox *outbox); |
| 1301 | int mlx4_DUMP_ETH_STATS_wrapper(struct mlx4_dev *dev, int slave, |
| 1302 | struct mlx4_vhcr *vhcr, |
| 1303 | struct mlx4_cmd_mailbox *inbox, |
| 1304 | struct mlx4_cmd_mailbox *outbox, |
| 1305 | struct mlx4_cmd_info *cmd); |
| 1306 | int mlx4_PKEY_TABLE_wrapper(struct mlx4_dev *dev, int slave, |
| 1307 | struct mlx4_vhcr *vhcr, |
| 1308 | struct mlx4_cmd_mailbox *inbox, |
| 1309 | struct mlx4_cmd_mailbox *outbox, |
| 1310 | struct mlx4_cmd_info *cmd); |
| 1311 | int mlx4_QUERY_IF_STAT_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); |
Hadar Hen Zion | 8fcfb4d | 2012-07-05 04:03:45 +0000 | [diff] [blame] | 1316 | int mlx4_QP_FLOW_STEERING_ATTACH_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); |
| 1321 | int mlx4_QP_FLOW_STEERING_DETACH_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); |
Saeed Mahameed | 6e80669 | 2014-11-02 16:26:13 +0200 | [diff] [blame] | 1326 | int mlx4_ACCESS_REG_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); |
Jack Morgenstein | f5311ac | 2011-12-13 04:12:13 +0000 | [diff] [blame] | 1331 | |
Eugenia Emantayev | 0ec2c0f | 2011-12-13 04:16:02 +0000 | [diff] [blame] | 1332 | int mlx4_get_mgm_entry_size(struct mlx4_dev *dev); |
| 1333 | int mlx4_get_qp_per_mgm(struct mlx4_dev *dev); |
| 1334 | |
Marcel Apfelbaum | 5cc914f | 2011-12-13 04:12:40 +0000 | [diff] [blame] | 1335 | static inline void set_param_l(u64 *arg, u32 val) |
| 1336 | { |
Jack Morgenstein | e7dbeba | 2013-03-07 03:46:54 +0000 | [diff] [blame] | 1337 | *arg = (*arg & 0xffffffff00000000ULL) | (u64) val; |
Marcel Apfelbaum | 5cc914f | 2011-12-13 04:12:40 +0000 | [diff] [blame] | 1338 | } |
| 1339 | |
| 1340 | static inline void set_param_h(u64 *arg, u32 val) |
| 1341 | { |
| 1342 | *arg = (*arg & 0xffffffff) | ((u64) val << 32); |
| 1343 | } |
| 1344 | |
| 1345 | static inline u32 get_param_l(u64 *arg) |
| 1346 | { |
| 1347 | return (u32) (*arg & 0xffffffff); |
| 1348 | } |
| 1349 | |
| 1350 | static inline u32 get_param_h(u64 *arg) |
| 1351 | { |
| 1352 | return (u32)(*arg >> 32); |
| 1353 | } |
| 1354 | |
Eli Cohen | c82e9aa | 2011-12-13 04:15:24 +0000 | [diff] [blame] | 1355 | static inline spinlock_t *mlx4_tlock(struct mlx4_dev *dev) |
| 1356 | { |
| 1357 | return &mlx4_priv(dev)->mfunc.master.res_tracker.lock; |
| 1358 | } |
| 1359 | |
Jack Morgenstein | f5311ac | 2011-12-13 04:12:13 +0000 | [diff] [blame] | 1360 | #define NOT_MASKED_PD_BITS 17 |
| 1361 | |
Jack Morgenstein | b01978c | 2013-06-27 19:05:21 +0300 | [diff] [blame] | 1362 | void mlx4_vf_immed_vlan_work_handler(struct work_struct *_work); |
| 1363 | |
Jack Morgenstein | 5a0d0a6 | 2013-11-03 10:03:23 +0200 | [diff] [blame] | 1364 | void mlx4_init_quotas(struct mlx4_dev *dev); |
| 1365 | |
Matan Barak | 449fc48 | 2014-03-19 18:11:52 +0200 | [diff] [blame] | 1366 | int mlx4_get_slave_num_gids(struct mlx4_dev *dev, int slave, int port); |
Matan Barak | f74462a | 2014-03-19 18:11:51 +0200 | [diff] [blame] | 1367 | /* Returns the VF index of slave */ |
| 1368 | int mlx4_get_vf_indx(struct mlx4_dev *dev, int slave); |
Jack Morgenstein | 114840c | 2014-06-01 11:53:50 +0300 | [diff] [blame] | 1369 | int mlx4_config_mad_demux(struct mlx4_dev *dev); |
Moni Shoua | 53f33ae | 2015-02-03 16:48:33 +0200 | [diff] [blame] | 1370 | int mlx4_do_bond(struct mlx4_dev *dev, bool enable); |
Jack Morgenstein | b6ffaef | 2014-03-12 12:00:39 +0200 | [diff] [blame] | 1371 | |
Matan Barak | 7a89399 | 2014-12-11 10:57:56 +0200 | [diff] [blame] | 1372 | enum mlx4_zone_flags { |
| 1373 | MLX4_ZONE_ALLOW_ALLOC_FROM_LOWER_PRIO = 1UL << 0, |
| 1374 | MLX4_ZONE_ALLOW_ALLOC_FROM_EQ_PRIO = 1UL << 1, |
| 1375 | MLX4_ZONE_FALLBACK_TO_HIGHER_PRIO = 1UL << 2, |
| 1376 | MLX4_ZONE_USE_RR = 1UL << 3, |
| 1377 | }; |
| 1378 | |
| 1379 | enum mlx4_zone_alloc_flags { |
| 1380 | /* No two objects could overlap between zones. UID |
| 1381 | * could be left unused. If this flag is given and |
| 1382 | * two overlapped zones are used, an object will be free'd |
| 1383 | * from the smallest possible matching zone. |
| 1384 | */ |
| 1385 | MLX4_ZONE_ALLOC_FLAGS_NO_OVERLAP = 1UL << 0, |
| 1386 | }; |
| 1387 | |
| 1388 | struct mlx4_zone_allocator; |
| 1389 | |
| 1390 | /* Create a new zone allocator */ |
| 1391 | struct mlx4_zone_allocator *mlx4_zone_allocator_create(enum mlx4_zone_alloc_flags flags); |
| 1392 | |
| 1393 | /* Attach a mlx4_bitmap <bitmap> of priority <priority> to the zone allocator |
| 1394 | * <zone_alloc>. Allocating an object from this zone adds an offset <offset>. |
| 1395 | * Similarly, when searching for an object to free, this offset it taken into |
| 1396 | * account. The use_rr mlx4_ib parameter for allocating objects from this <bitmap> |
| 1397 | * is given through the MLX4_ZONE_USE_RR flag in <flags>. |
| 1398 | * When an allocation fails, <zone_alloc> tries to allocate from other zones |
| 1399 | * according to the policy set by <flags>. <puid> is the unique identifier |
| 1400 | * received to this zone. |
| 1401 | */ |
| 1402 | int mlx4_zone_add_one(struct mlx4_zone_allocator *zone_alloc, |
| 1403 | struct mlx4_bitmap *bitmap, |
| 1404 | u32 flags, |
| 1405 | int priority, |
| 1406 | int offset, |
| 1407 | u32 *puid); |
| 1408 | |
| 1409 | /* Remove bitmap indicated by <uid> from <zone_alloc> */ |
| 1410 | int mlx4_zone_remove_one(struct mlx4_zone_allocator *zone_alloc, u32 uid); |
| 1411 | |
| 1412 | /* Delete the zone allocator <zone_alloc. This function doesn't destroy |
| 1413 | * the attached bitmaps. |
| 1414 | */ |
| 1415 | void mlx4_zone_allocator_destroy(struct mlx4_zone_allocator *zone_alloc); |
| 1416 | |
| 1417 | /* Allocate <count> objects with align <align> and skip_mask <skip_mask> |
| 1418 | * from the mlx4_bitmap whose uid is <uid>. The bitmap which we actually |
| 1419 | * allocated from is returned in <puid>. If the allocation fails, a negative |
| 1420 | * number is returned. Otherwise, the offset of the first object is returned. |
| 1421 | */ |
| 1422 | u32 mlx4_zone_alloc_entries(struct mlx4_zone_allocator *zones, u32 uid, int count, |
| 1423 | int align, u32 skip_mask, u32 *puid); |
| 1424 | |
| 1425 | /* Free <count> objects, start from <obj> of the uid <uid> from zone_allocator |
| 1426 | * <zones>. |
| 1427 | */ |
| 1428 | u32 mlx4_zone_free_entries(struct mlx4_zone_allocator *zones, |
| 1429 | u32 uid, u32 obj, u32 count); |
| 1430 | |
| 1431 | /* If <zones> was allocated with MLX4_ZONE_ALLOC_FLAGS_NO_OVERLAP, instead of |
| 1432 | * specifying the uid when freeing an object, zone allocator could figure it by |
| 1433 | * itself. Other parameters are similar to mlx4_zone_free. |
| 1434 | */ |
| 1435 | u32 mlx4_zone_free_entries_unique(struct mlx4_zone_allocator *zones, u32 obj, u32 count); |
| 1436 | |
| 1437 | /* Returns a pointer to mlx4_bitmap that was attached to <zones> with <uid> */ |
| 1438 | struct mlx4_bitmap *mlx4_zone_get_bitmap(struct mlx4_zone_allocator *zones, u32 uid); |
| 1439 | |
Roland Dreier | 225c7b1 | 2007-05-08 18:00:38 -0700 | [diff] [blame] | 1440 | #endif /* MLX4_H */ |