Roland Dreier | 225c7b1 | 2007-05-08 18:00:38 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2006, 2007 Cisco Systems, Inc. All rights reserved. |
Jack Morgenstein | 51a379d | 2008-07-25 10:32:52 -0700 | [diff] [blame] | 3 | * Copyright (c) 2007, 2008 Mellanox Technologies. All rights reserved. |
Roland Dreier | 225c7b1 | 2007-05-08 18:00:38 -0700 | [diff] [blame] | 4 | * |
| 5 | * This software is available to you under a choice of one of two |
| 6 | * licenses. You may choose to be licensed under the terms of the GNU |
| 7 | * General Public License (GPL) Version 2, available from the file |
| 8 | * COPYING in the main directory of this source tree, or the |
| 9 | * OpenIB.org BSD license below: |
| 10 | * |
| 11 | * Redistribution and use in source and binary forms, with or |
| 12 | * without modification, are permitted provided that the following |
| 13 | * conditions are met: |
| 14 | * |
| 15 | * - Redistributions of source code must retain the above |
| 16 | * copyright notice, this list of conditions and the following |
| 17 | * disclaimer. |
| 18 | * |
| 19 | * - Redistributions in binary form must reproduce the above |
| 20 | * copyright notice, this list of conditions and the following |
| 21 | * disclaimer in the documentation and/or other materials |
| 22 | * provided with the distribution. |
| 23 | * |
| 24 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, |
| 25 | * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF |
| 26 | * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND |
| 27 | * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS |
| 28 | * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN |
| 29 | * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN |
| 30 | * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE |
| 31 | * SOFTWARE. |
| 32 | */ |
| 33 | |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 34 | #include <linux/slab.h> |
Paul Gortmaker | ee40fa0 | 2011-05-27 16:14:23 -0400 | [diff] [blame] | 35 | #include <linux/export.h> |
Moni Shoua | 53f33ae | 2015-02-03 16:48:33 +0200 | [diff] [blame] | 36 | #include <linux/errno.h> |
Jiri Pirko | 09d4d08 | 2016-02-26 17:32:24 +0100 | [diff] [blame] | 37 | #include <net/devlink.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 38 | |
Roland Dreier | 225c7b1 | 2007-05-08 18:00:38 -0700 | [diff] [blame] | 39 | #include "mlx4.h" |
| 40 | |
| 41 | struct mlx4_device_context { |
| 42 | struct list_head list; |
Moni Shoua | 53f33ae | 2015-02-03 16:48:33 +0200 | [diff] [blame] | 43 | struct list_head bond_list; |
Roland Dreier | 225c7b1 | 2007-05-08 18:00:38 -0700 | [diff] [blame] | 44 | struct mlx4_interface *intf; |
| 45 | void *context; |
| 46 | }; |
| 47 | |
| 48 | static LIST_HEAD(intf_list); |
| 49 | static LIST_HEAD(dev_list); |
| 50 | static DEFINE_MUTEX(intf_mutex); |
| 51 | |
| 52 | static void mlx4_add_device(struct mlx4_interface *intf, struct mlx4_priv *priv) |
| 53 | { |
| 54 | struct mlx4_device_context *dev_ctx; |
| 55 | |
stephen hemminger | 31975e2 | 2017-08-15 10:29:19 -0700 | [diff] [blame] | 56 | dev_ctx = kmalloc(sizeof(*dev_ctx), GFP_KERNEL); |
Roland Dreier | 225c7b1 | 2007-05-08 18:00:38 -0700 | [diff] [blame] | 57 | if (!dev_ctx) |
| 58 | return; |
| 59 | |
| 60 | dev_ctx->intf = intf; |
| 61 | dev_ctx->context = intf->add(&priv->dev); |
| 62 | |
| 63 | if (dev_ctx->context) { |
| 64 | spin_lock_irq(&priv->ctx_lock); |
| 65 | list_add_tail(&dev_ctx->list, &priv->ctx_list); |
| 66 | spin_unlock_irq(&priv->ctx_lock); |
Moni Shoua | 79857cd3 | 2015-07-30 18:33:28 +0300 | [diff] [blame] | 67 | if (intf->activate) |
| 68 | intf->activate(&priv->dev, dev_ctx->context); |
Roland Dreier | 225c7b1 | 2007-05-08 18:00:38 -0700 | [diff] [blame] | 69 | } else |
| 70 | kfree(dev_ctx); |
Moni Shoua | 79857cd3 | 2015-07-30 18:33:28 +0300 | [diff] [blame] | 71 | |
Roland Dreier | 225c7b1 | 2007-05-08 18:00:38 -0700 | [diff] [blame] | 72 | } |
| 73 | |
| 74 | static void mlx4_remove_device(struct mlx4_interface *intf, struct mlx4_priv *priv) |
| 75 | { |
| 76 | struct mlx4_device_context *dev_ctx; |
| 77 | |
| 78 | list_for_each_entry(dev_ctx, &priv->ctx_list, list) |
| 79 | if (dev_ctx->intf == intf) { |
| 80 | spin_lock_irq(&priv->ctx_lock); |
| 81 | list_del(&dev_ctx->list); |
| 82 | spin_unlock_irq(&priv->ctx_lock); |
| 83 | |
| 84 | intf->remove(&priv->dev, dev_ctx->context); |
| 85 | kfree(dev_ctx); |
| 86 | return; |
| 87 | } |
| 88 | } |
| 89 | |
| 90 | int mlx4_register_interface(struct mlx4_interface *intf) |
| 91 | { |
| 92 | struct mlx4_priv *priv; |
| 93 | |
| 94 | if (!intf->add || !intf->remove) |
| 95 | return -EINVAL; |
| 96 | |
| 97 | mutex_lock(&intf_mutex); |
| 98 | |
| 99 | list_add_tail(&intf->list, &intf_list); |
Or Gerlitz | 7254acf | 2015-06-25 11:29:44 +0300 | [diff] [blame] | 100 | list_for_each_entry(priv, &dev_list, dev_list) { |
| 101 | if (mlx4_is_mfunc(&priv->dev) && (intf->flags & MLX4_INTFF_BONDING)) { |
| 102 | mlx4_dbg(&priv->dev, |
| 103 | "SRIOV, disabling HA mode for intf proto %d\n", intf->protocol); |
| 104 | intf->flags &= ~MLX4_INTFF_BONDING; |
| 105 | } |
Roland Dreier | 225c7b1 | 2007-05-08 18:00:38 -0700 | [diff] [blame] | 106 | mlx4_add_device(intf, priv); |
Or Gerlitz | 7254acf | 2015-06-25 11:29:44 +0300 | [diff] [blame] | 107 | } |
Roland Dreier | 225c7b1 | 2007-05-08 18:00:38 -0700 | [diff] [blame] | 108 | |
| 109 | mutex_unlock(&intf_mutex); |
| 110 | |
| 111 | return 0; |
| 112 | } |
| 113 | EXPORT_SYMBOL_GPL(mlx4_register_interface); |
| 114 | |
| 115 | void mlx4_unregister_interface(struct mlx4_interface *intf) |
| 116 | { |
| 117 | struct mlx4_priv *priv; |
| 118 | |
| 119 | mutex_lock(&intf_mutex); |
| 120 | |
| 121 | list_for_each_entry(priv, &dev_list, dev_list) |
| 122 | mlx4_remove_device(intf, priv); |
| 123 | |
| 124 | list_del(&intf->list); |
| 125 | |
| 126 | mutex_unlock(&intf_mutex); |
| 127 | } |
| 128 | EXPORT_SYMBOL_GPL(mlx4_unregister_interface); |
| 129 | |
Moni Shoua | 53f33ae | 2015-02-03 16:48:33 +0200 | [diff] [blame] | 130 | int mlx4_do_bond(struct mlx4_dev *dev, bool enable) |
| 131 | { |
| 132 | struct mlx4_priv *priv = mlx4_priv(dev); |
| 133 | struct mlx4_device_context *dev_ctx = NULL, *temp_dev_ctx; |
| 134 | unsigned long flags; |
| 135 | int ret; |
| 136 | LIST_HEAD(bond_list); |
| 137 | |
| 138 | if (!(dev->caps.flags2 & MLX4_DEV_CAP_FLAG2_PORT_REMAP)) |
Or Gerlitz | 423b3ae | 2017-02-23 12:02:41 +0200 | [diff] [blame] | 139 | return -EOPNOTSUPP; |
Moni Shoua | 53f33ae | 2015-02-03 16:48:33 +0200 | [diff] [blame] | 140 | |
| 141 | ret = mlx4_disable_rx_port_check(dev, enable); |
| 142 | if (ret) { |
| 143 | mlx4_err(dev, "Fail to %s rx port check\n", |
| 144 | enable ? "enable" : "disable"); |
| 145 | return ret; |
| 146 | } |
| 147 | if (enable) { |
| 148 | dev->flags |= MLX4_FLAG_BONDED; |
| 149 | } else { |
Christophe Jaillet | 5d4de16 | 2016-07-02 14:31:05 +0200 | [diff] [blame] | 150 | ret = mlx4_virt2phy_port_map(dev, 1, 2); |
Moni Shoua | 53f33ae | 2015-02-03 16:48:33 +0200 | [diff] [blame] | 151 | if (ret) { |
| 152 | mlx4_err(dev, "Fail to reset port map\n"); |
| 153 | return ret; |
| 154 | } |
| 155 | dev->flags &= ~MLX4_FLAG_BONDED; |
| 156 | } |
| 157 | |
| 158 | spin_lock_irqsave(&priv->ctx_lock, flags); |
| 159 | list_for_each_entry_safe(dev_ctx, temp_dev_ctx, &priv->ctx_list, list) { |
| 160 | if (dev_ctx->intf->flags & MLX4_INTFF_BONDING) { |
| 161 | list_add_tail(&dev_ctx->bond_list, &bond_list); |
| 162 | list_del(&dev_ctx->list); |
| 163 | } |
| 164 | } |
| 165 | spin_unlock_irqrestore(&priv->ctx_lock, flags); |
| 166 | |
| 167 | list_for_each_entry(dev_ctx, &bond_list, bond_list) { |
| 168 | dev_ctx->intf->remove(dev, dev_ctx->context); |
| 169 | dev_ctx->context = dev_ctx->intf->add(dev); |
| 170 | |
| 171 | spin_lock_irqsave(&priv->ctx_lock, flags); |
| 172 | list_add_tail(&dev_ctx->list, &priv->ctx_list); |
| 173 | spin_unlock_irqrestore(&priv->ctx_lock, flags); |
| 174 | |
Colin Ian King | 4f7f56b | 2018-05-22 16:42:51 +0100 | [diff] [blame] | 175 | mlx4_dbg(dev, "Interface for protocol %d restarted with bonded mode %s\n", |
Moni Shoua | 53f33ae | 2015-02-03 16:48:33 +0200 | [diff] [blame] | 176 | dev_ctx->intf->protocol, enable ? |
| 177 | "enabled" : "disabled"); |
| 178 | } |
| 179 | return 0; |
| 180 | } |
| 181 | |
Jack Morgenstein | 00f5ce9 | 2012-06-19 11:21:40 +0300 | [diff] [blame] | 182 | void mlx4_dispatch_event(struct mlx4_dev *dev, enum mlx4_dev_event type, |
| 183 | unsigned long param) |
Roland Dreier | 225c7b1 | 2007-05-08 18:00:38 -0700 | [diff] [blame] | 184 | { |
| 185 | struct mlx4_priv *priv = mlx4_priv(dev); |
| 186 | struct mlx4_device_context *dev_ctx; |
| 187 | unsigned long flags; |
| 188 | |
| 189 | spin_lock_irqsave(&priv->ctx_lock, flags); |
| 190 | |
| 191 | list_for_each_entry(dev_ctx, &priv->ctx_list, list) |
| 192 | if (dev_ctx->intf->event) |
Jack Morgenstein | 00f5ce9 | 2012-06-19 11:21:40 +0300 | [diff] [blame] | 193 | dev_ctx->intf->event(dev, dev_ctx->context, type, param); |
Roland Dreier | 225c7b1 | 2007-05-08 18:00:38 -0700 | [diff] [blame] | 194 | |
| 195 | spin_unlock_irqrestore(&priv->ctx_lock, flags); |
| 196 | } |
| 197 | |
| 198 | int mlx4_register_device(struct mlx4_dev *dev) |
| 199 | { |
| 200 | struct mlx4_priv *priv = mlx4_priv(dev); |
| 201 | struct mlx4_interface *intf; |
| 202 | |
Roland Dreier | 225c7b1 | 2007-05-08 18:00:38 -0700 | [diff] [blame] | 203 | mutex_lock(&intf_mutex); |
| 204 | |
Yishai Hadas | c69453e | 2015-01-25 16:59:40 +0200 | [diff] [blame] | 205 | dev->persist->interface_state |= MLX4_INTERFACE_STATE_UP; |
Roland Dreier | 225c7b1 | 2007-05-08 18:00:38 -0700 | [diff] [blame] | 206 | list_add_tail(&priv->dev_list, &dev_list); |
| 207 | list_for_each_entry(intf, &intf_list, list) |
| 208 | mlx4_add_device(intf, priv); |
| 209 | |
| 210 | mutex_unlock(&intf_mutex); |
Yishai Hadas | 55ad359 | 2015-01-25 16:59:42 +0200 | [diff] [blame] | 211 | mlx4_start_catas_poll(dev); |
Roland Dreier | 225c7b1 | 2007-05-08 18:00:38 -0700 | [diff] [blame] | 212 | |
| 213 | return 0; |
| 214 | } |
| 215 | |
| 216 | void mlx4_unregister_device(struct mlx4_dev *dev) |
| 217 | { |
| 218 | struct mlx4_priv *priv = mlx4_priv(dev); |
| 219 | struct mlx4_interface *intf; |
| 220 | |
Alex Vesker | 9b022a6 | 2016-07-25 15:42:13 +0300 | [diff] [blame] | 221 | if (!(dev->persist->interface_state & MLX4_INTERFACE_STATE_UP)) |
| 222 | return; |
| 223 | |
Yishai Hadas | 55ad359 | 2015-01-25 16:59:42 +0200 | [diff] [blame] | 224 | mlx4_stop_catas_poll(dev); |
Jack Morgenstein | d585df1 | 2017-01-30 15:11:45 +0200 | [diff] [blame] | 225 | if (dev->persist->interface_state & MLX4_INTERFACE_STATE_DELETION && |
| 226 | mlx4_is_slave(dev)) { |
| 227 | /* In mlx4_remove_one on a VF */ |
| 228 | u32 slave_read = |
| 229 | swab32(readl(&mlx4_priv(dev)->mfunc.comm->slave_read)); |
| 230 | |
| 231 | if (mlx4_comm_internal_err(slave_read)) { |
| 232 | mlx4_dbg(dev, "%s: comm channel is down, entering error state.\n", |
| 233 | __func__); |
| 234 | mlx4_enter_error_state(dev->persist); |
| 235 | } |
| 236 | } |
Roland Dreier | 225c7b1 | 2007-05-08 18:00:38 -0700 | [diff] [blame] | 237 | mutex_lock(&intf_mutex); |
| 238 | |
| 239 | list_for_each_entry(intf, &intf_list, list) |
| 240 | mlx4_remove_device(intf, priv); |
| 241 | |
| 242 | list_del(&priv->dev_list); |
Yishai Hadas | c69453e | 2015-01-25 16:59:40 +0200 | [diff] [blame] | 243 | dev->persist->interface_state &= ~MLX4_INTERFACE_STATE_UP; |
Roland Dreier | 225c7b1 | 2007-05-08 18:00:38 -0700 | [diff] [blame] | 244 | |
| 245 | mutex_unlock(&intf_mutex); |
| 246 | } |
Eli Cohen | 33c87f0 | 2010-08-26 14:18:43 +0000 | [diff] [blame] | 247 | |
| 248 | void *mlx4_get_protocol_dev(struct mlx4_dev *dev, enum mlx4_protocol proto, int port) |
| 249 | { |
| 250 | struct mlx4_priv *priv = mlx4_priv(dev); |
| 251 | struct mlx4_device_context *dev_ctx; |
| 252 | unsigned long flags; |
| 253 | void *result = NULL; |
| 254 | |
| 255 | spin_lock_irqsave(&priv->ctx_lock, flags); |
| 256 | |
| 257 | list_for_each_entry(dev_ctx, &priv->ctx_list, list) |
| 258 | if (dev_ctx->intf->protocol == proto && dev_ctx->intf->get_dev) { |
| 259 | result = dev_ctx->intf->get_dev(dev, dev_ctx->context, port); |
| 260 | break; |
| 261 | } |
| 262 | |
| 263 | spin_unlock_irqrestore(&priv->ctx_lock, flags); |
| 264 | |
| 265 | return result; |
| 266 | } |
| 267 | EXPORT_SYMBOL_GPL(mlx4_get_protocol_dev); |
Jiri Pirko | 09d4d08 | 2016-02-26 17:32:24 +0100 | [diff] [blame] | 268 | |
| 269 | struct devlink_port *mlx4_get_devlink_port(struct mlx4_dev *dev, int port) |
| 270 | { |
| 271 | struct mlx4_port_info *info = &mlx4_priv(dev)->port[port]; |
| 272 | |
| 273 | return &info->devlink_port; |
| 274 | } |
| 275 | EXPORT_SYMBOL_GPL(mlx4_get_devlink_port); |