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> |
Jack Morgenstein | ee49bd9 | 2007-07-12 17:50:45 +0300 | [diff] [blame] | 42 | #include <linux/timer.h> |
Thomas Gleixner | 3142788 | 2010-01-29 20:39:02 +0000 | [diff] [blame] | 43 | #include <linux/semaphore.h> |
Yevgeny Petrilin | 27bf91d | 2009-03-18 19:45:11 -0700 | [diff] [blame] | 44 | #include <linux/workqueue.h> |
Roland Dreier | 225c7b1 | 2007-05-08 18:00:38 -0700 | [diff] [blame] | 45 | |
| 46 | #include <linux/mlx4/device.h> |
Roland Dreier | 37608ee | 2008-04-16 21:01:08 -0700 | [diff] [blame] | 47 | #include <linux/mlx4/driver.h> |
Roland Dreier | 225c7b1 | 2007-05-08 18:00:38 -0700 | [diff] [blame] | 48 | #include <linux/mlx4/doorbell.h> |
| 49 | |
| 50 | #define DRV_NAME "mlx4_core" |
Roland Dreier | 225c7b1 | 2007-05-08 18:00:38 -0700 | [diff] [blame] | 51 | #define DRV_VERSION "0.01" |
| 52 | #define DRV_RELDATE "May 1, 2007" |
| 53 | |
| 54 | enum { |
| 55 | MLX4_HCR_BASE = 0x80680, |
| 56 | MLX4_HCR_SIZE = 0x0001c, |
| 57 | MLX4_CLR_INT_SIZE = 0x00008 |
| 58 | }; |
| 59 | |
| 60 | enum { |
Jack Morgenstein | e57ac0c | 2007-10-02 09:40:13 +0200 | [diff] [blame] | 61 | MLX4_MGM_ENTRY_SIZE = 0x100, |
Roland Dreier | 225c7b1 | 2007-05-08 18:00:38 -0700 | [diff] [blame] | 62 | MLX4_QP_PER_MGM = 4 * (MLX4_MGM_ENTRY_SIZE / 16 - 2), |
| 63 | MLX4_MTT_ENTRY_PER_SEG = 8 |
| 64 | }; |
| 65 | |
| 66 | enum { |
Roland Dreier | 225c7b1 | 2007-05-08 18:00:38 -0700 | [diff] [blame] | 67 | MLX4_NUM_PDS = 1 << 15 |
| 68 | }; |
| 69 | |
| 70 | enum { |
| 71 | MLX4_CMPT_TYPE_QP = 0, |
| 72 | MLX4_CMPT_TYPE_SRQ = 1, |
| 73 | MLX4_CMPT_TYPE_CQ = 2, |
| 74 | MLX4_CMPT_TYPE_EQ = 3, |
| 75 | MLX4_CMPT_NUM_TYPE |
| 76 | }; |
| 77 | |
| 78 | enum { |
| 79 | MLX4_CMPT_SHIFT = 24, |
| 80 | MLX4_NUM_CMPTS = MLX4_CMPT_NUM_TYPE << MLX4_CMPT_SHIFT |
| 81 | }; |
| 82 | |
| 83 | #ifdef CONFIG_MLX4_DEBUG |
| 84 | extern int mlx4_debug_level; |
Roland Dreier | 7b0f5df | 2008-11-04 11:18:56 -0800 | [diff] [blame] | 85 | #else /* CONFIG_MLX4_DEBUG */ |
| 86 | #define mlx4_debug_level (0) |
| 87 | #endif /* CONFIG_MLX4_DEBUG */ |
Roland Dreier | 225c7b1 | 2007-05-08 18:00:38 -0700 | [diff] [blame] | 88 | |
| 89 | #define mlx4_dbg(mdev, format, arg...) \ |
Joe Perches | 0a645e8 | 2010-07-10 07:22:46 +0000 | [diff] [blame] | 90 | do { \ |
| 91 | if (mlx4_debug_level) \ |
| 92 | dev_printk(KERN_DEBUG, &mdev->pdev->dev, format, ##arg); \ |
| 93 | } while (0) |
Roland Dreier | 225c7b1 | 2007-05-08 18:00:38 -0700 | [diff] [blame] | 94 | |
Roland Dreier | 225c7b1 | 2007-05-08 18:00:38 -0700 | [diff] [blame] | 95 | #define mlx4_err(mdev, format, arg...) \ |
Joe Perches | 0a645e8 | 2010-07-10 07:22:46 +0000 | [diff] [blame] | 96 | dev_err(&mdev->pdev->dev, format, ##arg) |
Roland Dreier | 225c7b1 | 2007-05-08 18:00:38 -0700 | [diff] [blame] | 97 | #define mlx4_info(mdev, format, arg...) \ |
Joe Perches | 0a645e8 | 2010-07-10 07:22:46 +0000 | [diff] [blame] | 98 | dev_info(&mdev->pdev->dev, format, ##arg) |
Roland Dreier | 225c7b1 | 2007-05-08 18:00:38 -0700 | [diff] [blame] | 99 | #define mlx4_warn(mdev, format, arg...) \ |
Joe Perches | 0a645e8 | 2010-07-10 07:22:46 +0000 | [diff] [blame] | 100 | dev_warn(&mdev->pdev->dev, format, ##arg) |
Roland Dreier | 225c7b1 | 2007-05-08 18:00:38 -0700 | [diff] [blame] | 101 | |
| 102 | struct mlx4_bitmap { |
| 103 | u32 last; |
| 104 | u32 top; |
| 105 | u32 max; |
Yevgeny Petrilin | 93fc9e1 | 2008-10-22 10:25:29 -0700 | [diff] [blame] | 106 | u32 reserved_top; |
Roland Dreier | 225c7b1 | 2007-05-08 18:00:38 -0700 | [diff] [blame] | 107 | u32 mask; |
Eli Cohen | 42d1e01 | 2011-03-22 22:38:45 +0000 | [diff] [blame] | 108 | u32 avail; |
Roland Dreier | 225c7b1 | 2007-05-08 18:00:38 -0700 | [diff] [blame] | 109 | spinlock_t lock; |
| 110 | unsigned long *table; |
| 111 | }; |
| 112 | |
| 113 | struct mlx4_buddy { |
| 114 | unsigned long **bits; |
Roland Dreier | e4044cf | 2008-07-22 14:19:40 -0700 | [diff] [blame] | 115 | unsigned int *num_free; |
Roland Dreier | 225c7b1 | 2007-05-08 18:00:38 -0700 | [diff] [blame] | 116 | int max_order; |
| 117 | spinlock_t lock; |
| 118 | }; |
| 119 | |
| 120 | struct mlx4_icm; |
| 121 | |
| 122 | struct mlx4_icm_table { |
| 123 | u64 virt; |
| 124 | int num_icm; |
| 125 | int num_obj; |
| 126 | int obj_size; |
| 127 | int lowmem; |
Jack Morgenstein | 5b0bf5e | 2007-08-01 12:28:20 +0300 | [diff] [blame] | 128 | int coherent; |
Roland Dreier | 225c7b1 | 2007-05-08 18:00:38 -0700 | [diff] [blame] | 129 | struct mutex mutex; |
| 130 | struct mlx4_icm **icm; |
| 131 | }; |
| 132 | |
| 133 | struct mlx4_eq { |
| 134 | struct mlx4_dev *dev; |
| 135 | void __iomem *doorbell; |
| 136 | int eqn; |
| 137 | u32 cons_index; |
| 138 | u16 irq; |
| 139 | u16 have_irq; |
| 140 | int nent; |
| 141 | struct mlx4_buf_list *page_list; |
| 142 | struct mlx4_mtt mtt; |
| 143 | }; |
| 144 | |
| 145 | struct mlx4_profile { |
| 146 | int num_qp; |
| 147 | int rdmarc_per_qp; |
| 148 | int num_srq; |
| 149 | int num_cq; |
| 150 | int num_mcg; |
| 151 | int num_mpt; |
| 152 | int num_mtt; |
| 153 | }; |
| 154 | |
| 155 | struct mlx4_fw { |
| 156 | u64 clr_int_base; |
| 157 | u64 catas_offset; |
| 158 | struct mlx4_icm *fw_icm; |
| 159 | struct mlx4_icm *aux_icm; |
| 160 | u32 catas_size; |
| 161 | u16 fw_pages; |
| 162 | u8 clr_int_bar; |
| 163 | u8 catas_bar; |
| 164 | }; |
| 165 | |
Yevgeny Petrilin | b12d93d | 2011-03-22 22:38:24 +0000 | [diff] [blame] | 166 | #define MGM_QPN_MASK 0x00FFFFFF |
| 167 | #define MGM_BLCK_LB_BIT 30 |
| 168 | |
| 169 | struct mlx4_promisc_qp { |
| 170 | struct list_head list; |
| 171 | u32 qpn; |
| 172 | }; |
| 173 | |
| 174 | struct mlx4_steer_index { |
| 175 | struct list_head list; |
| 176 | unsigned int index; |
| 177 | struct list_head duplicates; |
| 178 | }; |
| 179 | |
| 180 | struct mlx4_mgm { |
| 181 | __be32 next_gid_index; |
| 182 | __be32 members_count; |
| 183 | u32 reserved[2]; |
| 184 | u8 gid[16]; |
| 185 | __be32 qp[MLX4_QP_PER_MGM]; |
| 186 | }; |
Roland Dreier | 225c7b1 | 2007-05-08 18:00:38 -0700 | [diff] [blame] | 187 | struct mlx4_cmd { |
| 188 | struct pci_pool *pool; |
| 189 | void __iomem *hcr; |
| 190 | struct mutex hcr_mutex; |
| 191 | struct semaphore poll_sem; |
| 192 | struct semaphore event_sem; |
| 193 | int max_cmds; |
| 194 | spinlock_t context_lock; |
| 195 | int free_head; |
| 196 | struct mlx4_cmd_context *context; |
| 197 | u16 token_mask; |
| 198 | u8 use_events; |
| 199 | u8 toggle; |
| 200 | }; |
| 201 | |
| 202 | struct mlx4_uar_table { |
| 203 | struct mlx4_bitmap bitmap; |
| 204 | }; |
| 205 | |
| 206 | struct mlx4_mr_table { |
| 207 | struct mlx4_bitmap mpt_bitmap; |
| 208 | struct mlx4_buddy mtt_buddy; |
| 209 | u64 mtt_base; |
| 210 | u64 mpt_base; |
| 211 | struct mlx4_icm_table mtt_table; |
| 212 | struct mlx4_icm_table dmpt_table; |
| 213 | }; |
| 214 | |
| 215 | struct mlx4_cq_table { |
| 216 | struct mlx4_bitmap bitmap; |
| 217 | spinlock_t lock; |
| 218 | struct radix_tree_root tree; |
| 219 | struct mlx4_icm_table table; |
| 220 | struct mlx4_icm_table cmpt_table; |
| 221 | }; |
| 222 | |
| 223 | struct mlx4_eq_table { |
| 224 | struct mlx4_bitmap bitmap; |
Yevgeny Petrilin | b8dd786 | 2008-12-22 07:15:03 -0800 | [diff] [blame] | 225 | char *irq_names; |
Roland Dreier | 225c7b1 | 2007-05-08 18:00:38 -0700 | [diff] [blame] | 226 | void __iomem *clr_int; |
Yevgeny Petrilin | b8dd786 | 2008-12-22 07:15:03 -0800 | [diff] [blame] | 227 | void __iomem **uar_map; |
Roland Dreier | 225c7b1 | 2007-05-08 18:00:38 -0700 | [diff] [blame] | 228 | u32 clr_mask; |
Yevgeny Petrilin | b8dd786 | 2008-12-22 07:15:03 -0800 | [diff] [blame] | 229 | struct mlx4_eq *eq; |
Roland Dreier | fa0681d | 2009-09-05 20:24:49 -0700 | [diff] [blame] | 230 | struct mlx4_icm_table table; |
Roland Dreier | 225c7b1 | 2007-05-08 18:00:38 -0700 | [diff] [blame] | 231 | struct mlx4_icm_table cmpt_table; |
| 232 | int have_irq; |
| 233 | u8 inta_pin; |
| 234 | }; |
| 235 | |
| 236 | struct mlx4_srq_table { |
| 237 | struct mlx4_bitmap bitmap; |
| 238 | spinlock_t lock; |
| 239 | struct radix_tree_root tree; |
| 240 | struct mlx4_icm_table table; |
| 241 | struct mlx4_icm_table cmpt_table; |
| 242 | }; |
| 243 | |
| 244 | struct mlx4_qp_table { |
| 245 | struct mlx4_bitmap bitmap; |
| 246 | u32 rdmarc_base; |
| 247 | int rdmarc_shift; |
| 248 | spinlock_t lock; |
| 249 | struct mlx4_icm_table qp_table; |
| 250 | struct mlx4_icm_table auxc_table; |
| 251 | struct mlx4_icm_table altc_table; |
| 252 | struct mlx4_icm_table rdmarc_table; |
| 253 | struct mlx4_icm_table cmpt_table; |
| 254 | }; |
| 255 | |
| 256 | struct mlx4_mcg_table { |
| 257 | struct mutex mutex; |
| 258 | struct mlx4_bitmap bitmap; |
| 259 | struct mlx4_icm_table table; |
| 260 | }; |
| 261 | |
| 262 | struct mlx4_catas_err { |
| 263 | u32 __iomem *map; |
Jack Morgenstein | ee49bd9 | 2007-07-12 17:50:45 +0300 | [diff] [blame] | 264 | struct timer_list timer; |
| 265 | struct list_head list; |
Roland Dreier | 225c7b1 | 2007-05-08 18:00:38 -0700 | [diff] [blame] | 266 | }; |
| 267 | |
Yevgeny Petrilin | 2a2336f | 2008-10-22 11:44:46 -0700 | [diff] [blame] | 268 | #define MLX4_MAX_MAC_NUM 128 |
| 269 | #define MLX4_MAC_TABLE_SIZE (MLX4_MAX_MAC_NUM << 3) |
| 270 | |
| 271 | struct mlx4_mac_table { |
| 272 | __be64 entries[MLX4_MAX_MAC_NUM]; |
| 273 | int refs[MLX4_MAX_MAC_NUM]; |
| 274 | struct mutex mutex; |
| 275 | int total; |
| 276 | int max; |
| 277 | }; |
| 278 | |
| 279 | #define MLX4_MAX_VLAN_NUM 128 |
| 280 | #define MLX4_VLAN_TABLE_SIZE (MLX4_MAX_VLAN_NUM << 2) |
| 281 | |
| 282 | struct mlx4_vlan_table { |
| 283 | __be32 entries[MLX4_MAX_VLAN_NUM]; |
| 284 | int refs[MLX4_MAX_VLAN_NUM]; |
| 285 | struct mutex mutex; |
| 286 | int total; |
| 287 | int max; |
| 288 | }; |
| 289 | |
Yevgeny Petrilin | 1679200 | 2011-03-22 22:38:31 +0000 | [diff] [blame] | 290 | struct mlx4_mac_entry { |
| 291 | u64 mac; |
| 292 | }; |
| 293 | |
Yevgeny Petrilin | 2a2336f | 2008-10-22 11:44:46 -0700 | [diff] [blame] | 294 | struct mlx4_port_info { |
| 295 | struct mlx4_dev *dev; |
| 296 | int port; |
Yevgeny Petrilin | 7ff93f8 | 2008-10-22 15:38:42 -0700 | [diff] [blame] | 297 | char dev_name[16]; |
| 298 | struct device_attribute port_attr; |
| 299 | enum mlx4_port_type tmp_type; |
Yevgeny Petrilin | 2a2336f | 2008-10-22 11:44:46 -0700 | [diff] [blame] | 300 | struct mlx4_mac_table mac_table; |
Yevgeny Petrilin | 1679200 | 2011-03-22 22:38:31 +0000 | [diff] [blame] | 301 | struct radix_tree_root mac_tree; |
Yevgeny Petrilin | 2a2336f | 2008-10-22 11:44:46 -0700 | [diff] [blame] | 302 | struct mlx4_vlan_table vlan_table; |
Yevgeny Petrilin | 1679200 | 2011-03-22 22:38:31 +0000 | [diff] [blame] | 303 | int base_qpn; |
Yevgeny Petrilin | 2a2336f | 2008-10-22 11:44:46 -0700 | [diff] [blame] | 304 | }; |
| 305 | |
Yevgeny Petrilin | 27bf91d | 2009-03-18 19:45:11 -0700 | [diff] [blame] | 306 | struct mlx4_sense { |
| 307 | struct mlx4_dev *dev; |
| 308 | u8 do_sense_port[MLX4_MAX_PORTS + 1]; |
| 309 | u8 sense_allowed[MLX4_MAX_PORTS + 1]; |
| 310 | struct delayed_work sense_poll; |
| 311 | }; |
| 312 | |
Yevgeny Petrilin | 0b7ca5a | 2011-03-22 22:37:47 +0000 | [diff] [blame] | 313 | struct mlx4_msix_ctl { |
| 314 | u64 pool_bm; |
| 315 | spinlock_t pool_lock; |
| 316 | }; |
| 317 | |
Yevgeny Petrilin | b12d93d | 2011-03-22 22:38:24 +0000 | [diff] [blame] | 318 | struct mlx4_steer { |
| 319 | struct list_head promisc_qps[MLX4_NUM_STEERS]; |
| 320 | struct list_head steer_entries[MLX4_NUM_STEERS]; |
| 321 | struct list_head high_prios; |
| 322 | }; |
| 323 | |
Roland Dreier | 225c7b1 | 2007-05-08 18:00:38 -0700 | [diff] [blame] | 324 | struct mlx4_priv { |
| 325 | struct mlx4_dev dev; |
| 326 | |
| 327 | struct list_head dev_list; |
| 328 | struct list_head ctx_list; |
| 329 | spinlock_t ctx_lock; |
| 330 | |
Yevgeny Petrilin | 6296883 | 2008-04-23 11:55:45 -0700 | [diff] [blame] | 331 | struct list_head pgdir_list; |
| 332 | struct mutex pgdir_mutex; |
| 333 | |
Roland Dreier | 225c7b1 | 2007-05-08 18:00:38 -0700 | [diff] [blame] | 334 | struct mlx4_fw fw; |
| 335 | struct mlx4_cmd cmd; |
| 336 | |
| 337 | struct mlx4_bitmap pd_bitmap; |
| 338 | struct mlx4_uar_table uar_table; |
| 339 | struct mlx4_mr_table mr_table; |
| 340 | struct mlx4_cq_table cq_table; |
| 341 | struct mlx4_eq_table eq_table; |
| 342 | struct mlx4_srq_table srq_table; |
| 343 | struct mlx4_qp_table qp_table; |
| 344 | struct mlx4_mcg_table mcg_table; |
| 345 | |
| 346 | struct mlx4_catas_err catas_err; |
| 347 | |
| 348 | void __iomem *clr_base; |
| 349 | |
| 350 | struct mlx4_uar driver_uar; |
| 351 | void __iomem *kar; |
Yevgeny Petrilin | 2a2336f | 2008-10-22 11:44:46 -0700 | [diff] [blame] | 352 | struct mlx4_port_info port[MLX4_MAX_PORTS + 1]; |
Yevgeny Petrilin | 27bf91d | 2009-03-18 19:45:11 -0700 | [diff] [blame] | 353 | struct mlx4_sense sense; |
Yevgeny Petrilin | 7ff93f8 | 2008-10-22 15:38:42 -0700 | [diff] [blame] | 354 | struct mutex port_mutex; |
Yevgeny Petrilin | 0b7ca5a | 2011-03-22 22:37:47 +0000 | [diff] [blame] | 355 | struct mlx4_msix_ctl msix_ctl; |
Yevgeny Petrilin | b12d93d | 2011-03-22 22:38:24 +0000 | [diff] [blame] | 356 | struct mlx4_steer *steer; |
Eli Cohen | c1b43dc | 2011-03-22 22:38:41 +0000 | [diff] [blame] | 357 | struct list_head bf_list; |
| 358 | struct mutex bf_mutex; |
| 359 | struct io_mapping *bf_mapping; |
Roland Dreier | 225c7b1 | 2007-05-08 18:00:38 -0700 | [diff] [blame] | 360 | }; |
| 361 | |
| 362 | static inline struct mlx4_priv *mlx4_priv(struct mlx4_dev *dev) |
| 363 | { |
| 364 | return container_of(dev, struct mlx4_priv, dev); |
| 365 | } |
| 366 | |
Yevgeny Petrilin | 27bf91d | 2009-03-18 19:45:11 -0700 | [diff] [blame] | 367 | #define MLX4_SENSE_RANGE (HZ * 3) |
| 368 | |
| 369 | extern struct workqueue_struct *mlx4_wq; |
| 370 | |
Roland Dreier | 225c7b1 | 2007-05-08 18:00:38 -0700 | [diff] [blame] | 371 | u32 mlx4_bitmap_alloc(struct mlx4_bitmap *bitmap); |
| 372 | void mlx4_bitmap_free(struct mlx4_bitmap *bitmap, u32 obj); |
Yevgeny Petrilin | a3cdcbf | 2008-10-10 12:01:37 -0700 | [diff] [blame] | 373 | u32 mlx4_bitmap_alloc_range(struct mlx4_bitmap *bitmap, int cnt, int align); |
| 374 | void mlx4_bitmap_free_range(struct mlx4_bitmap *bitmap, u32 obj, int cnt); |
Eli Cohen | 42d1e01 | 2011-03-22 22:38:45 +0000 | [diff] [blame] | 375 | u32 mlx4_bitmap_avail(struct mlx4_bitmap *bitmap); |
Yevgeny Petrilin | 93fc9e1 | 2008-10-22 10:25:29 -0700 | [diff] [blame] | 376 | int mlx4_bitmap_init(struct mlx4_bitmap *bitmap, u32 num, u32 mask, |
| 377 | u32 reserved_bot, u32 resetrved_top); |
Roland Dreier | 225c7b1 | 2007-05-08 18:00:38 -0700 | [diff] [blame] | 378 | void mlx4_bitmap_cleanup(struct mlx4_bitmap *bitmap); |
| 379 | |
| 380 | int mlx4_reset(struct mlx4_dev *dev); |
| 381 | |
Yevgeny Petrilin | b8dd786 | 2008-12-22 07:15:03 -0800 | [diff] [blame] | 382 | int mlx4_alloc_eq_table(struct mlx4_dev *dev); |
| 383 | void mlx4_free_eq_table(struct mlx4_dev *dev); |
| 384 | |
Roland Dreier | 225c7b1 | 2007-05-08 18:00:38 -0700 | [diff] [blame] | 385 | int mlx4_init_pd_table(struct mlx4_dev *dev); |
| 386 | int mlx4_init_uar_table(struct mlx4_dev *dev); |
| 387 | int mlx4_init_mr_table(struct mlx4_dev *dev); |
| 388 | int mlx4_init_eq_table(struct mlx4_dev *dev); |
| 389 | int mlx4_init_cq_table(struct mlx4_dev *dev); |
| 390 | int mlx4_init_qp_table(struct mlx4_dev *dev); |
| 391 | int mlx4_init_srq_table(struct mlx4_dev *dev); |
| 392 | int mlx4_init_mcg_table(struct mlx4_dev *dev); |
| 393 | |
| 394 | void mlx4_cleanup_pd_table(struct mlx4_dev *dev); |
| 395 | void mlx4_cleanup_uar_table(struct mlx4_dev *dev); |
| 396 | void mlx4_cleanup_mr_table(struct mlx4_dev *dev); |
| 397 | void mlx4_cleanup_eq_table(struct mlx4_dev *dev); |
| 398 | void mlx4_cleanup_cq_table(struct mlx4_dev *dev); |
| 399 | void mlx4_cleanup_qp_table(struct mlx4_dev *dev); |
| 400 | void mlx4_cleanup_srq_table(struct mlx4_dev *dev); |
| 401 | void mlx4_cleanup_mcg_table(struct mlx4_dev *dev); |
| 402 | |
Jack Morgenstein | ee49bd9 | 2007-07-12 17:50:45 +0300 | [diff] [blame] | 403 | void mlx4_start_catas_poll(struct mlx4_dev *dev); |
| 404 | void mlx4_stop_catas_poll(struct mlx4_dev *dev); |
Yevgeny Petrilin | 27bf91d | 2009-03-18 19:45:11 -0700 | [diff] [blame] | 405 | void mlx4_catas_init(void); |
Jack Morgenstein | ee49bd9 | 2007-07-12 17:50:45 +0300 | [diff] [blame] | 406 | int mlx4_restart_one(struct pci_dev *pdev); |
Roland Dreier | 225c7b1 | 2007-05-08 18:00:38 -0700 | [diff] [blame] | 407 | int mlx4_register_device(struct mlx4_dev *dev); |
| 408 | void mlx4_unregister_device(struct mlx4_dev *dev); |
Roland Dreier | 37608ee | 2008-04-16 21:01:08 -0700 | [diff] [blame] | 409 | void mlx4_dispatch_event(struct mlx4_dev *dev, enum mlx4_dev_event type, int port); |
Roland Dreier | 225c7b1 | 2007-05-08 18:00:38 -0700 | [diff] [blame] | 410 | |
| 411 | struct mlx4_dev_cap; |
| 412 | struct mlx4_init_hca_param; |
| 413 | |
| 414 | u64 mlx4_make_profile(struct mlx4_dev *dev, |
| 415 | struct mlx4_profile *request, |
| 416 | struct mlx4_dev_cap *dev_cap, |
| 417 | struct mlx4_init_hca_param *init_hca); |
| 418 | |
Roland Dreier | 225c7b1 | 2007-05-08 18:00:38 -0700 | [diff] [blame] | 419 | int mlx4_cmd_init(struct mlx4_dev *dev); |
| 420 | void mlx4_cmd_cleanup(struct mlx4_dev *dev); |
| 421 | void mlx4_cmd_event(struct mlx4_dev *dev, u16 token, u8 status, u64 out_param); |
| 422 | int mlx4_cmd_use_events(struct mlx4_dev *dev); |
| 423 | void mlx4_cmd_use_polling(struct mlx4_dev *dev); |
| 424 | |
| 425 | void mlx4_cq_completion(struct mlx4_dev *dev, u32 cqn); |
| 426 | void mlx4_cq_event(struct mlx4_dev *dev, u32 cqn, int event_type); |
| 427 | |
| 428 | void mlx4_qp_event(struct mlx4_dev *dev, u32 qpn, int event_type); |
| 429 | |
| 430 | void mlx4_srq_event(struct mlx4_dev *dev, u32 srqn, int event_type); |
| 431 | |
| 432 | void mlx4_handle_catas_err(struct mlx4_dev *dev); |
| 433 | |
Yevgeny Petrilin | ab6dc30 | 2011-04-06 23:24:42 +0000 | [diff] [blame] | 434 | int mlx4_SENSE_PORT(struct mlx4_dev *dev, int port, |
| 435 | enum mlx4_port_type *type); |
Yevgeny Petrilin | 27bf91d | 2009-03-18 19:45:11 -0700 | [diff] [blame] | 436 | void mlx4_do_sense_ports(struct mlx4_dev *dev, |
| 437 | enum mlx4_port_type *stype, |
| 438 | enum mlx4_port_type *defaults); |
| 439 | void mlx4_start_sense(struct mlx4_dev *dev); |
| 440 | void mlx4_stop_sense(struct mlx4_dev *dev); |
| 441 | void mlx4_sense_init(struct mlx4_dev *dev); |
| 442 | int mlx4_check_port_params(struct mlx4_dev *dev, |
| 443 | enum mlx4_port_type *port_type); |
| 444 | int mlx4_change_port_types(struct mlx4_dev *dev, |
| 445 | enum mlx4_port_type *port_types); |
| 446 | |
Yevgeny Petrilin | 2a2336f | 2008-10-22 11:44:46 -0700 | [diff] [blame] | 447 | void mlx4_init_mac_table(struct mlx4_dev *dev, struct mlx4_mac_table *table); |
| 448 | void mlx4_init_vlan_table(struct mlx4_dev *dev, struct mlx4_vlan_table *table); |
| 449 | |
Yevgeny Petrilin | 7ff93f8 | 2008-10-22 15:38:42 -0700 | [diff] [blame] | 450 | int mlx4_SET_PORT(struct mlx4_dev *dev, u8 port); |
Jack Morgenstein | 9a5aa62 | 2008-11-28 21:29:46 -0800 | [diff] [blame] | 451 | 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] | 452 | |
Yevgeny Petrilin | b12d93d | 2011-03-22 22:38:24 +0000 | [diff] [blame] | 453 | int mlx4_qp_detach_common(struct mlx4_dev *dev, struct mlx4_qp *qp, u8 gid[16], |
| 454 | enum mlx4_protocol prot, enum mlx4_steer_type steer); |
| 455 | int mlx4_qp_attach_common(struct mlx4_dev *dev, struct mlx4_qp *qp, u8 gid[16], |
| 456 | int block_mcast_loopback, enum mlx4_protocol prot, |
| 457 | enum mlx4_steer_type steer); |
Roland Dreier | 225c7b1 | 2007-05-08 18:00:38 -0700 | [diff] [blame] | 458 | #endif /* MLX4_H */ |