Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2004 Topspin Communications. All rights reserved. |
Roland Dreier | 2a1d9b7 | 2005-08-10 23:03:10 -0700 | [diff] [blame] | 3 | * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -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. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 32 | */ |
| 33 | |
| 34 | #include <linux/module.h> |
| 35 | #include <linux/string.h> |
| 36 | #include <linux/errno.h> |
Ahmed S. Darwish | 9a6b090 | 2007-02-06 18:07:25 +0200 | [diff] [blame] | 37 | #include <linux/kernel.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 38 | #include <linux/slab.h> |
| 39 | #include <linux/init.h> |
Ingo Molnar | 95ed644 | 2006-01-13 14:51:39 -0800 | [diff] [blame] | 40 | #include <linux/mutex.h> |
Yotam Kenneth | 9268f72 | 2015-07-30 17:50:15 +0300 | [diff] [blame] | 41 | #include <linux/netdevice.h> |
Roland Dreier | b2cbae2 | 2011-05-20 11:46:11 -0700 | [diff] [blame] | 42 | #include <rdma/rdma_netlink.h> |
Matan Barak | 03db3a2 | 2015-07-30 18:33:26 +0300 | [diff] [blame] | 43 | #include <rdma/ib_addr.h> |
| 44 | #include <rdma/ib_cache.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 45 | |
| 46 | #include "core_priv.h" |
| 47 | |
| 48 | MODULE_AUTHOR("Roland Dreier"); |
| 49 | MODULE_DESCRIPTION("core kernel InfiniBand API"); |
| 50 | MODULE_LICENSE("Dual BSD/GPL"); |
| 51 | |
| 52 | struct ib_client_data { |
| 53 | struct list_head list; |
| 54 | struct ib_client *client; |
| 55 | void * data; |
Haggai Eran | 7c1eb45 | 2015-07-30 17:50:14 +0300 | [diff] [blame] | 56 | /* The device or client is going down. Do not call client or device |
| 57 | * callbacks other than remove(). */ |
| 58 | bool going_down; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 59 | }; |
| 60 | |
Christoph Hellwig | 14d3a3b | 2015-12-11 11:53:03 -0800 | [diff] [blame] | 61 | struct workqueue_struct *ib_comp_wq; |
Tejun Heo | f062671 | 2010-10-19 15:24:36 +0000 | [diff] [blame] | 62 | struct workqueue_struct *ib_wq; |
| 63 | EXPORT_SYMBOL_GPL(ib_wq); |
| 64 | |
Haggai Eran | 5aa44bb | 2015-07-30 17:50:13 +0300 | [diff] [blame] | 65 | /* The device_list and client_list contain devices and clients after their |
| 66 | * registration has completed, and the devices and clients are removed |
| 67 | * during unregistration. */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 68 | static LIST_HEAD(device_list); |
| 69 | static LIST_HEAD(client_list); |
| 70 | |
| 71 | /* |
Haggai Eran | 5aa44bb | 2015-07-30 17:50:13 +0300 | [diff] [blame] | 72 | * device_mutex and lists_rwsem protect access to both device_list and |
| 73 | * client_list. device_mutex protects writer access by device and client |
| 74 | * registration / de-registration. lists_rwsem protects reader access to |
| 75 | * these lists. Iterators of these lists must lock it for read, while updates |
| 76 | * to the lists must be done with a write lock. A special case is when the |
| 77 | * device_mutex is locked. In this case locking the lists for read access is |
| 78 | * not necessary as the device_mutex implies it. |
Haggai Eran | 7c1eb45 | 2015-07-30 17:50:14 +0300 | [diff] [blame] | 79 | * |
| 80 | * lists_rwsem also protects access to the client data list. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 81 | */ |
Ingo Molnar | 95ed644 | 2006-01-13 14:51:39 -0800 | [diff] [blame] | 82 | static DEFINE_MUTEX(device_mutex); |
Haggai Eran | 5aa44bb | 2015-07-30 17:50:13 +0300 | [diff] [blame] | 83 | static DECLARE_RWSEM(lists_rwsem); |
| 84 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 85 | |
| 86 | static int ib_device_check_mandatory(struct ib_device *device) |
| 87 | { |
| 88 | #define IB_MANDATORY_FUNC(x) { offsetof(struct ib_device, x), #x } |
| 89 | static const struct { |
| 90 | size_t offset; |
| 91 | char *name; |
| 92 | } mandatory_table[] = { |
| 93 | IB_MANDATORY_FUNC(query_device), |
| 94 | IB_MANDATORY_FUNC(query_port), |
| 95 | IB_MANDATORY_FUNC(query_pkey), |
| 96 | IB_MANDATORY_FUNC(query_gid), |
| 97 | IB_MANDATORY_FUNC(alloc_pd), |
| 98 | IB_MANDATORY_FUNC(dealloc_pd), |
| 99 | IB_MANDATORY_FUNC(create_ah), |
| 100 | IB_MANDATORY_FUNC(destroy_ah), |
| 101 | IB_MANDATORY_FUNC(create_qp), |
| 102 | IB_MANDATORY_FUNC(modify_qp), |
| 103 | IB_MANDATORY_FUNC(destroy_qp), |
| 104 | IB_MANDATORY_FUNC(post_send), |
| 105 | IB_MANDATORY_FUNC(post_recv), |
| 106 | IB_MANDATORY_FUNC(create_cq), |
| 107 | IB_MANDATORY_FUNC(destroy_cq), |
| 108 | IB_MANDATORY_FUNC(poll_cq), |
| 109 | IB_MANDATORY_FUNC(req_notify_cq), |
| 110 | IB_MANDATORY_FUNC(get_dma_mr), |
Ira Weiny | 7738613 | 2015-05-13 20:02:58 -0400 | [diff] [blame] | 111 | IB_MANDATORY_FUNC(dereg_mr), |
| 112 | IB_MANDATORY_FUNC(get_port_immutable) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 113 | }; |
| 114 | int i; |
| 115 | |
Ahmed S. Darwish | 9a6b090 | 2007-02-06 18:07:25 +0200 | [diff] [blame] | 116 | for (i = 0; i < ARRAY_SIZE(mandatory_table); ++i) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 117 | if (!*(void **) ((void *) device + mandatory_table[i].offset)) { |
Parav Pandit | aba25a3e | 2016-03-02 00:50:29 +0530 | [diff] [blame] | 118 | pr_warn("Device %s is missing mandatory function %s\n", |
| 119 | device->name, mandatory_table[i].name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 120 | return -EINVAL; |
| 121 | } |
| 122 | } |
| 123 | |
| 124 | return 0; |
| 125 | } |
| 126 | |
| 127 | static struct ib_device *__ib_device_get_by_name(const char *name) |
| 128 | { |
| 129 | struct ib_device *device; |
| 130 | |
| 131 | list_for_each_entry(device, &device_list, core_list) |
| 132 | if (!strncmp(name, device->name, IB_DEVICE_NAME_MAX)) |
| 133 | return device; |
| 134 | |
| 135 | return NULL; |
| 136 | } |
| 137 | |
| 138 | |
| 139 | static int alloc_name(char *name) |
| 140 | { |
Roland Dreier | 65d470b | 2007-10-09 19:59:04 -0700 | [diff] [blame] | 141 | unsigned long *inuse; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 142 | char buf[IB_DEVICE_NAME_MAX]; |
| 143 | struct ib_device *device; |
| 144 | int i; |
| 145 | |
Roland Dreier | 65d470b | 2007-10-09 19:59:04 -0700 | [diff] [blame] | 146 | inuse = (unsigned long *) get_zeroed_page(GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 147 | if (!inuse) |
| 148 | return -ENOMEM; |
| 149 | |
| 150 | list_for_each_entry(device, &device_list, core_list) { |
| 151 | if (!sscanf(device->name, name, &i)) |
| 152 | continue; |
| 153 | if (i < 0 || i >= PAGE_SIZE * 8) |
| 154 | continue; |
| 155 | snprintf(buf, sizeof buf, name, i); |
| 156 | if (!strncmp(buf, device->name, IB_DEVICE_NAME_MAX)) |
| 157 | set_bit(i, inuse); |
| 158 | } |
| 159 | |
| 160 | i = find_first_zero_bit(inuse, PAGE_SIZE * 8); |
| 161 | free_page((unsigned long) inuse); |
| 162 | snprintf(buf, sizeof buf, name, i); |
| 163 | |
| 164 | if (__ib_device_get_by_name(buf)) |
| 165 | return -ENFILE; |
| 166 | |
| 167 | strlcpy(name, buf, IB_DEVICE_NAME_MAX); |
| 168 | return 0; |
| 169 | } |
| 170 | |
Jason Gunthorpe | 55aeed0 | 2015-08-04 15:23:34 -0600 | [diff] [blame] | 171 | static void ib_device_release(struct device *device) |
| 172 | { |
| 173 | struct ib_device *dev = container_of(device, struct ib_device, dev); |
| 174 | |
Matan Barak | 03db3a2 | 2015-07-30 18:33:26 +0300 | [diff] [blame] | 175 | ib_cache_release_one(dev); |
Jason Gunthorpe | 55aeed0 | 2015-08-04 15:23:34 -0600 | [diff] [blame] | 176 | kfree(dev->port_immutable); |
| 177 | kfree(dev); |
| 178 | } |
| 179 | |
| 180 | static int ib_device_uevent(struct device *device, |
| 181 | struct kobj_uevent_env *env) |
| 182 | { |
| 183 | struct ib_device *dev = container_of(device, struct ib_device, dev); |
| 184 | |
| 185 | if (add_uevent_var(env, "NAME=%s", dev->name)) |
| 186 | return -ENOMEM; |
| 187 | |
| 188 | /* |
| 189 | * It would be nice to pass the node GUID with the event... |
| 190 | */ |
| 191 | |
| 192 | return 0; |
| 193 | } |
| 194 | |
| 195 | static struct class ib_class = { |
| 196 | .name = "infiniband", |
| 197 | .dev_release = ib_device_release, |
| 198 | .dev_uevent = ib_device_uevent, |
| 199 | }; |
| 200 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 201 | /** |
| 202 | * ib_alloc_device - allocate an IB device struct |
| 203 | * @size:size of structure to allocate |
| 204 | * |
| 205 | * Low-level drivers should use ib_alloc_device() to allocate &struct |
| 206 | * ib_device. @size is the size of the structure to be allocated, |
| 207 | * including any private data used by the low-level driver. |
| 208 | * ib_dealloc_device() must be used to free structures allocated with |
| 209 | * ib_alloc_device(). |
| 210 | */ |
| 211 | struct ib_device *ib_alloc_device(size_t size) |
| 212 | { |
Jason Gunthorpe | 55aeed0 | 2015-08-04 15:23:34 -0600 | [diff] [blame] | 213 | struct ib_device *device; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 214 | |
Jason Gunthorpe | 55aeed0 | 2015-08-04 15:23:34 -0600 | [diff] [blame] | 215 | if (WARN_ON(size < sizeof(struct ib_device))) |
| 216 | return NULL; |
| 217 | |
| 218 | device = kzalloc(size, GFP_KERNEL); |
| 219 | if (!device) |
| 220 | return NULL; |
| 221 | |
| 222 | device->dev.class = &ib_class; |
| 223 | device_initialize(&device->dev); |
| 224 | |
| 225 | dev_set_drvdata(&device->dev, device); |
| 226 | |
| 227 | INIT_LIST_HEAD(&device->event_handler_list); |
| 228 | spin_lock_init(&device->event_handler_lock); |
| 229 | spin_lock_init(&device->client_data_lock); |
| 230 | INIT_LIST_HEAD(&device->client_data_list); |
| 231 | INIT_LIST_HEAD(&device->port_list); |
| 232 | |
| 233 | return device; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 234 | } |
| 235 | EXPORT_SYMBOL(ib_alloc_device); |
| 236 | |
| 237 | /** |
| 238 | * ib_dealloc_device - free an IB device struct |
| 239 | * @device:structure to free |
| 240 | * |
| 241 | * Free a structure allocated with ib_alloc_device(). |
| 242 | */ |
| 243 | void ib_dealloc_device(struct ib_device *device) |
| 244 | { |
Jason Gunthorpe | 55aeed0 | 2015-08-04 15:23:34 -0600 | [diff] [blame] | 245 | WARN_ON(device->reg_state != IB_DEV_UNREGISTERED && |
| 246 | device->reg_state != IB_DEV_UNINITIALIZED); |
Roland Dreier | 9206dff | 2009-02-25 13:27:46 -0800 | [diff] [blame] | 247 | kobject_put(&device->dev.kobj); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 248 | } |
| 249 | EXPORT_SYMBOL(ib_dealloc_device); |
| 250 | |
| 251 | static int add_client_context(struct ib_device *device, struct ib_client *client) |
| 252 | { |
| 253 | struct ib_client_data *context; |
| 254 | unsigned long flags; |
| 255 | |
| 256 | context = kmalloc(sizeof *context, GFP_KERNEL); |
| 257 | if (!context) { |
Parav Pandit | aba25a3e | 2016-03-02 00:50:29 +0530 | [diff] [blame] | 258 | pr_warn("Couldn't allocate client context for %s/%s\n", |
| 259 | device->name, client->name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 260 | return -ENOMEM; |
| 261 | } |
| 262 | |
| 263 | context->client = client; |
| 264 | context->data = NULL; |
Haggai Eran | 7c1eb45 | 2015-07-30 17:50:14 +0300 | [diff] [blame] | 265 | context->going_down = false; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 266 | |
Haggai Eran | 7c1eb45 | 2015-07-30 17:50:14 +0300 | [diff] [blame] | 267 | down_write(&lists_rwsem); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 268 | spin_lock_irqsave(&device->client_data_lock, flags); |
| 269 | list_add(&context->list, &device->client_data_list); |
| 270 | spin_unlock_irqrestore(&device->client_data_lock, flags); |
Haggai Eran | 7c1eb45 | 2015-07-30 17:50:14 +0300 | [diff] [blame] | 271 | up_write(&lists_rwsem); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 272 | |
| 273 | return 0; |
| 274 | } |
| 275 | |
Ira Weiny | 337877a | 2015-06-06 14:38:29 -0400 | [diff] [blame] | 276 | static int verify_immutable(const struct ib_device *dev, u8 port) |
| 277 | { |
| 278 | return WARN_ON(!rdma_cap_ib_mad(dev, port) && |
| 279 | rdma_max_mad_size(dev, port) != 0); |
| 280 | } |
| 281 | |
Ira Weiny | 7738613 | 2015-05-13 20:02:58 -0400 | [diff] [blame] | 282 | static int read_port_immutable(struct ib_device *device) |
Yosef Etigin | 5eb620c | 2007-05-14 07:26:51 +0300 | [diff] [blame] | 283 | { |
Jason Gunthorpe | 55aeed0 | 2015-08-04 15:23:34 -0600 | [diff] [blame] | 284 | int ret; |
Ira Weiny | 7738613 | 2015-05-13 20:02:58 -0400 | [diff] [blame] | 285 | u8 start_port = rdma_start_port(device); |
| 286 | u8 end_port = rdma_end_port(device); |
| 287 | u8 port; |
Yosef Etigin | 5eb620c | 2007-05-14 07:26:51 +0300 | [diff] [blame] | 288 | |
Ira Weiny | 7738613 | 2015-05-13 20:02:58 -0400 | [diff] [blame] | 289 | /** |
| 290 | * device->port_immutable is indexed directly by the port number to make |
| 291 | * access to this data as efficient as possible. |
| 292 | * |
| 293 | * Therefore port_immutable is declared as a 1 based array with |
| 294 | * potential empty slots at the beginning. |
| 295 | */ |
| 296 | device->port_immutable = kzalloc(sizeof(*device->port_immutable) |
| 297 | * (end_port + 1), |
| 298 | GFP_KERNEL); |
| 299 | if (!device->port_immutable) |
Jason Gunthorpe | 55aeed0 | 2015-08-04 15:23:34 -0600 | [diff] [blame] | 300 | return -ENOMEM; |
Yosef Etigin | 5eb620c | 2007-05-14 07:26:51 +0300 | [diff] [blame] | 301 | |
Ira Weiny | 7738613 | 2015-05-13 20:02:58 -0400 | [diff] [blame] | 302 | for (port = start_port; port <= end_port; ++port) { |
| 303 | ret = device->get_port_immutable(device, port, |
| 304 | &device->port_immutable[port]); |
Yosef Etigin | 5eb620c | 2007-05-14 07:26:51 +0300 | [diff] [blame] | 305 | if (ret) |
Jason Gunthorpe | 55aeed0 | 2015-08-04 15:23:34 -0600 | [diff] [blame] | 306 | return ret; |
Ira Weiny | 337877a | 2015-06-06 14:38:29 -0400 | [diff] [blame] | 307 | |
Jason Gunthorpe | 55aeed0 | 2015-08-04 15:23:34 -0600 | [diff] [blame] | 308 | if (verify_immutable(device, port)) |
| 309 | return -EINVAL; |
Yosef Etigin | 5eb620c | 2007-05-14 07:26:51 +0300 | [diff] [blame] | 310 | } |
Jason Gunthorpe | 55aeed0 | 2015-08-04 15:23:34 -0600 | [diff] [blame] | 311 | return 0; |
Yosef Etigin | 5eb620c | 2007-05-14 07:26:51 +0300 | [diff] [blame] | 312 | } |
| 313 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 314 | /** |
| 315 | * ib_register_device - Register an IB device with IB core |
| 316 | * @device:Device to register |
| 317 | * |
| 318 | * Low-level drivers use ib_register_device() to register their |
| 319 | * devices with the IB core. All registered clients will receive a |
| 320 | * callback for each device that is added. @device must be allocated |
| 321 | * with ib_alloc_device(). |
| 322 | */ |
Ralph Campbell | 9a6edb6 | 2010-05-06 17:03:25 -0700 | [diff] [blame] | 323 | int ib_register_device(struct ib_device *device, |
| 324 | int (*port_callback)(struct ib_device *, |
| 325 | u8, struct kobject *)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 326 | { |
| 327 | int ret; |
Doug Ledford | b8071ad | 2015-08-15 10:16:14 -0400 | [diff] [blame] | 328 | struct ib_client *client; |
Ira Weiny | 3e153a9 | 2015-12-18 10:59:44 +0200 | [diff] [blame] | 329 | struct ib_udata uhw = {.outlen = 0, .inlen = 0}; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 330 | |
Ingo Molnar | 95ed644 | 2006-01-13 14:51:39 -0800 | [diff] [blame] | 331 | mutex_lock(&device_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 332 | |
| 333 | if (strchr(device->name, '%')) { |
| 334 | ret = alloc_name(device->name); |
| 335 | if (ret) |
| 336 | goto out; |
| 337 | } |
| 338 | |
| 339 | if (ib_device_check_mandatory(device)) { |
| 340 | ret = -EINVAL; |
| 341 | goto out; |
| 342 | } |
| 343 | |
Ira Weiny | 7738613 | 2015-05-13 20:02:58 -0400 | [diff] [blame] | 344 | ret = read_port_immutable(device); |
Yosef Etigin | 5eb620c | 2007-05-14 07:26:51 +0300 | [diff] [blame] | 345 | if (ret) { |
Parav Pandit | aba25a3e | 2016-03-02 00:50:29 +0530 | [diff] [blame] | 346 | pr_warn("Couldn't create per port immutable data %s\n", |
| 347 | device->name); |
Yosef Etigin | 5eb620c | 2007-05-14 07:26:51 +0300 | [diff] [blame] | 348 | goto out; |
| 349 | } |
| 350 | |
Matan Barak | 03db3a2 | 2015-07-30 18:33:26 +0300 | [diff] [blame] | 351 | ret = ib_cache_setup_one(device); |
| 352 | if (ret) { |
Parav Pandit | aba25a3e | 2016-03-02 00:50:29 +0530 | [diff] [blame] | 353 | pr_warn("Couldn't set up InfiniBand P_Key/GID cache\n"); |
Matan Barak | 03db3a2 | 2015-07-30 18:33:26 +0300 | [diff] [blame] | 354 | goto out; |
| 355 | } |
| 356 | |
Ira Weiny | 3e153a9 | 2015-12-18 10:59:44 +0200 | [diff] [blame] | 357 | memset(&device->attrs, 0, sizeof(device->attrs)); |
| 358 | ret = device->query_device(device, &device->attrs, &uhw); |
| 359 | if (ret) { |
Parav Pandit | aba25a3e | 2016-03-02 00:50:29 +0530 | [diff] [blame] | 360 | pr_warn("Couldn't query the device attributes\n"); |
Leon Romanovsky | 5adebafb | 2016-02-21 18:12:26 +0200 | [diff] [blame] | 361 | ib_cache_cleanup_one(device); |
Ira Weiny | 3e153a9 | 2015-12-18 10:59:44 +0200 | [diff] [blame] | 362 | goto out; |
| 363 | } |
| 364 | |
Ralph Campbell | 9a6edb6 | 2010-05-06 17:03:25 -0700 | [diff] [blame] | 365 | ret = ib_device_register_sysfs(device, port_callback); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 366 | if (ret) { |
Parav Pandit | aba25a3e | 2016-03-02 00:50:29 +0530 | [diff] [blame] | 367 | pr_warn("Couldn't register device %s with driver model\n", |
| 368 | device->name); |
Matan Barak | 03db3a2 | 2015-07-30 18:33:26 +0300 | [diff] [blame] | 369 | ib_cache_cleanup_one(device); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 370 | goto out; |
| 371 | } |
| 372 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 373 | device->reg_state = IB_DEV_REGISTERED; |
| 374 | |
Doug Ledford | b8071ad | 2015-08-15 10:16:14 -0400 | [diff] [blame] | 375 | list_for_each_entry(client, &client_list, list) |
| 376 | if (client->add && !add_client_context(device, client)) |
| 377 | client->add(device); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 378 | |
Haggai Eran | 5aa44bb | 2015-07-30 17:50:13 +0300 | [diff] [blame] | 379 | down_write(&lists_rwsem); |
| 380 | list_add_tail(&device->core_list, &device_list); |
| 381 | up_write(&lists_rwsem); |
| 382 | out: |
Ingo Molnar | 95ed644 | 2006-01-13 14:51:39 -0800 | [diff] [blame] | 383 | mutex_unlock(&device_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 384 | return ret; |
| 385 | } |
| 386 | EXPORT_SYMBOL(ib_register_device); |
| 387 | |
| 388 | /** |
| 389 | * ib_unregister_device - Unregister an IB device |
| 390 | * @device:Device to unregister |
| 391 | * |
| 392 | * Unregister an IB device. All clients will receive a remove callback. |
| 393 | */ |
| 394 | void ib_unregister_device(struct ib_device *device) |
| 395 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 396 | struct ib_client_data *context, *tmp; |
| 397 | unsigned long flags; |
| 398 | |
Ingo Molnar | 95ed644 | 2006-01-13 14:51:39 -0800 | [diff] [blame] | 399 | mutex_lock(&device_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 400 | |
Haggai Eran | 5aa44bb | 2015-07-30 17:50:13 +0300 | [diff] [blame] | 401 | down_write(&lists_rwsem); |
| 402 | list_del(&device->core_list); |
Haggai Eran | 7c1eb45 | 2015-07-30 17:50:14 +0300 | [diff] [blame] | 403 | spin_lock_irqsave(&device->client_data_lock, flags); |
| 404 | list_for_each_entry_safe(context, tmp, &device->client_data_list, list) |
| 405 | context->going_down = true; |
| 406 | spin_unlock_irqrestore(&device->client_data_lock, flags); |
| 407 | downgrade_write(&lists_rwsem); |
Haggai Eran | 5aa44bb | 2015-07-30 17:50:13 +0300 | [diff] [blame] | 408 | |
Haggai Eran | 7c1eb45 | 2015-07-30 17:50:14 +0300 | [diff] [blame] | 409 | list_for_each_entry_safe(context, tmp, &device->client_data_list, |
| 410 | list) { |
| 411 | if (context->client->remove) |
| 412 | context->client->remove(device, context->data); |
| 413 | } |
| 414 | up_read(&lists_rwsem); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 415 | |
Ingo Molnar | 95ed644 | 2006-01-13 14:51:39 -0800 | [diff] [blame] | 416 | mutex_unlock(&device_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 417 | |
Roland Dreier | 9206dff | 2009-02-25 13:27:46 -0800 | [diff] [blame] | 418 | ib_device_unregister_sysfs(device); |
Matan Barak | 03db3a2 | 2015-07-30 18:33:26 +0300 | [diff] [blame] | 419 | ib_cache_cleanup_one(device); |
Roland Dreier | 9206dff | 2009-02-25 13:27:46 -0800 | [diff] [blame] | 420 | |
Haggai Eran | 7c1eb45 | 2015-07-30 17:50:14 +0300 | [diff] [blame] | 421 | down_write(&lists_rwsem); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 422 | spin_lock_irqsave(&device->client_data_lock, flags); |
| 423 | list_for_each_entry_safe(context, tmp, &device->client_data_list, list) |
| 424 | kfree(context); |
| 425 | spin_unlock_irqrestore(&device->client_data_lock, flags); |
Haggai Eran | 7c1eb45 | 2015-07-30 17:50:14 +0300 | [diff] [blame] | 426 | up_write(&lists_rwsem); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 427 | |
| 428 | device->reg_state = IB_DEV_UNREGISTERED; |
| 429 | } |
| 430 | EXPORT_SYMBOL(ib_unregister_device); |
| 431 | |
| 432 | /** |
| 433 | * ib_register_client - Register an IB client |
| 434 | * @client:Client to register |
| 435 | * |
| 436 | * Upper level users of the IB drivers can use ib_register_client() to |
| 437 | * register callbacks for IB device addition and removal. When an IB |
| 438 | * device is added, each registered client's add method will be called |
| 439 | * (in the order the clients were registered), and when a device is |
| 440 | * removed, each client's remove method will be called (in the reverse |
| 441 | * order that clients were registered). In addition, when |
| 442 | * ib_register_client() is called, the client will receive an add |
| 443 | * callback for all devices already registered. |
| 444 | */ |
| 445 | int ib_register_client(struct ib_client *client) |
| 446 | { |
| 447 | struct ib_device *device; |
| 448 | |
Ingo Molnar | 95ed644 | 2006-01-13 14:51:39 -0800 | [diff] [blame] | 449 | mutex_lock(&device_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 450 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 451 | list_for_each_entry(device, &device_list, core_list) |
| 452 | if (client->add && !add_client_context(device, client)) |
| 453 | client->add(device); |
| 454 | |
Haggai Eran | 5aa44bb | 2015-07-30 17:50:13 +0300 | [diff] [blame] | 455 | down_write(&lists_rwsem); |
| 456 | list_add_tail(&client->list, &client_list); |
| 457 | up_write(&lists_rwsem); |
| 458 | |
Ingo Molnar | 95ed644 | 2006-01-13 14:51:39 -0800 | [diff] [blame] | 459 | mutex_unlock(&device_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 460 | |
| 461 | return 0; |
| 462 | } |
| 463 | EXPORT_SYMBOL(ib_register_client); |
| 464 | |
| 465 | /** |
| 466 | * ib_unregister_client - Unregister an IB client |
| 467 | * @client:Client to unregister |
| 468 | * |
| 469 | * Upper level users use ib_unregister_client() to remove their client |
| 470 | * registration. When ib_unregister_client() is called, the client |
| 471 | * will receive a remove callback for each IB device still registered. |
| 472 | */ |
| 473 | void ib_unregister_client(struct ib_client *client) |
| 474 | { |
| 475 | struct ib_client_data *context, *tmp; |
| 476 | struct ib_device *device; |
| 477 | unsigned long flags; |
| 478 | |
Ingo Molnar | 95ed644 | 2006-01-13 14:51:39 -0800 | [diff] [blame] | 479 | mutex_lock(&device_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 480 | |
Haggai Eran | 5aa44bb | 2015-07-30 17:50:13 +0300 | [diff] [blame] | 481 | down_write(&lists_rwsem); |
| 482 | list_del(&client->list); |
| 483 | up_write(&lists_rwsem); |
| 484 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 485 | list_for_each_entry(device, &device_list, core_list) { |
Haggai Eran | 7c1eb45 | 2015-07-30 17:50:14 +0300 | [diff] [blame] | 486 | struct ib_client_data *found_context = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 487 | |
Haggai Eran | 7c1eb45 | 2015-07-30 17:50:14 +0300 | [diff] [blame] | 488 | down_write(&lists_rwsem); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 489 | spin_lock_irqsave(&device->client_data_lock, flags); |
| 490 | list_for_each_entry_safe(context, tmp, &device->client_data_list, list) |
| 491 | if (context->client == client) { |
Haggai Eran | 7c1eb45 | 2015-07-30 17:50:14 +0300 | [diff] [blame] | 492 | context->going_down = true; |
| 493 | found_context = context; |
| 494 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 495 | } |
| 496 | spin_unlock_irqrestore(&device->client_data_lock, flags); |
Haggai Eran | 7c1eb45 | 2015-07-30 17:50:14 +0300 | [diff] [blame] | 497 | up_write(&lists_rwsem); |
| 498 | |
| 499 | if (client->remove) |
| 500 | client->remove(device, found_context ? |
| 501 | found_context->data : NULL); |
| 502 | |
| 503 | if (!found_context) { |
| 504 | pr_warn("No client context found for %s/%s\n", |
| 505 | device->name, client->name); |
| 506 | continue; |
| 507 | } |
| 508 | |
| 509 | down_write(&lists_rwsem); |
| 510 | spin_lock_irqsave(&device->client_data_lock, flags); |
| 511 | list_del(&found_context->list); |
| 512 | kfree(found_context); |
| 513 | spin_unlock_irqrestore(&device->client_data_lock, flags); |
| 514 | up_write(&lists_rwsem); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 515 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 516 | |
Ingo Molnar | 95ed644 | 2006-01-13 14:51:39 -0800 | [diff] [blame] | 517 | mutex_unlock(&device_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 518 | } |
| 519 | EXPORT_SYMBOL(ib_unregister_client); |
| 520 | |
| 521 | /** |
| 522 | * ib_get_client_data - Get IB client context |
| 523 | * @device:Device to get context for |
| 524 | * @client:Client to get context for |
| 525 | * |
| 526 | * ib_get_client_data() returns client context set with |
| 527 | * ib_set_client_data(). |
| 528 | */ |
| 529 | void *ib_get_client_data(struct ib_device *device, struct ib_client *client) |
| 530 | { |
| 531 | struct ib_client_data *context; |
| 532 | void *ret = NULL; |
| 533 | unsigned long flags; |
| 534 | |
| 535 | spin_lock_irqsave(&device->client_data_lock, flags); |
| 536 | list_for_each_entry(context, &device->client_data_list, list) |
| 537 | if (context->client == client) { |
| 538 | ret = context->data; |
| 539 | break; |
| 540 | } |
| 541 | spin_unlock_irqrestore(&device->client_data_lock, flags); |
| 542 | |
| 543 | return ret; |
| 544 | } |
| 545 | EXPORT_SYMBOL(ib_get_client_data); |
| 546 | |
| 547 | /** |
Krishna Kumar | 9cd330d | 2006-09-22 15:22:58 -0700 | [diff] [blame] | 548 | * ib_set_client_data - Set IB client context |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 549 | * @device:Device to set context for |
| 550 | * @client:Client to set context for |
| 551 | * @data:Context to set |
| 552 | * |
| 553 | * ib_set_client_data() sets client context that can be retrieved with |
| 554 | * ib_get_client_data(). |
| 555 | */ |
| 556 | void ib_set_client_data(struct ib_device *device, struct ib_client *client, |
| 557 | void *data) |
| 558 | { |
| 559 | struct ib_client_data *context; |
| 560 | unsigned long flags; |
| 561 | |
| 562 | spin_lock_irqsave(&device->client_data_lock, flags); |
| 563 | list_for_each_entry(context, &device->client_data_list, list) |
| 564 | if (context->client == client) { |
| 565 | context->data = data; |
| 566 | goto out; |
| 567 | } |
| 568 | |
Parav Pandit | aba25a3e | 2016-03-02 00:50:29 +0530 | [diff] [blame] | 569 | pr_warn("No client context found for %s/%s\n", |
| 570 | device->name, client->name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 571 | |
| 572 | out: |
| 573 | spin_unlock_irqrestore(&device->client_data_lock, flags); |
| 574 | } |
| 575 | EXPORT_SYMBOL(ib_set_client_data); |
| 576 | |
| 577 | /** |
| 578 | * ib_register_event_handler - Register an IB event handler |
| 579 | * @event_handler:Handler to register |
| 580 | * |
| 581 | * ib_register_event_handler() registers an event handler that will be |
| 582 | * called back when asynchronous IB events occur (as defined in |
| 583 | * chapter 11 of the InfiniBand Architecture Specification). This |
| 584 | * callback may occur in interrupt context. |
| 585 | */ |
| 586 | int ib_register_event_handler (struct ib_event_handler *event_handler) |
| 587 | { |
| 588 | unsigned long flags; |
| 589 | |
| 590 | spin_lock_irqsave(&event_handler->device->event_handler_lock, flags); |
| 591 | list_add_tail(&event_handler->list, |
| 592 | &event_handler->device->event_handler_list); |
| 593 | spin_unlock_irqrestore(&event_handler->device->event_handler_lock, flags); |
| 594 | |
| 595 | return 0; |
| 596 | } |
| 597 | EXPORT_SYMBOL(ib_register_event_handler); |
| 598 | |
| 599 | /** |
| 600 | * ib_unregister_event_handler - Unregister an event handler |
| 601 | * @event_handler:Handler to unregister |
| 602 | * |
| 603 | * Unregister an event handler registered with |
| 604 | * ib_register_event_handler(). |
| 605 | */ |
| 606 | int ib_unregister_event_handler(struct ib_event_handler *event_handler) |
| 607 | { |
| 608 | unsigned long flags; |
| 609 | |
| 610 | spin_lock_irqsave(&event_handler->device->event_handler_lock, flags); |
| 611 | list_del(&event_handler->list); |
| 612 | spin_unlock_irqrestore(&event_handler->device->event_handler_lock, flags); |
| 613 | |
| 614 | return 0; |
| 615 | } |
| 616 | EXPORT_SYMBOL(ib_unregister_event_handler); |
| 617 | |
| 618 | /** |
| 619 | * ib_dispatch_event - Dispatch an asynchronous event |
| 620 | * @event:Event to dispatch |
| 621 | * |
| 622 | * Low-level drivers must call ib_dispatch_event() to dispatch the |
| 623 | * event to all registered event handlers when an asynchronous event |
| 624 | * occurs. |
| 625 | */ |
| 626 | void ib_dispatch_event(struct ib_event *event) |
| 627 | { |
| 628 | unsigned long flags; |
| 629 | struct ib_event_handler *handler; |
| 630 | |
| 631 | spin_lock_irqsave(&event->device->event_handler_lock, flags); |
| 632 | |
| 633 | list_for_each_entry(handler, &event->device->event_handler_list, list) |
| 634 | handler->handler(handler, event); |
| 635 | |
| 636 | spin_unlock_irqrestore(&event->device->event_handler_lock, flags); |
| 637 | } |
| 638 | EXPORT_SYMBOL(ib_dispatch_event); |
| 639 | |
| 640 | /** |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 641 | * ib_query_port - Query IB port attributes |
| 642 | * @device:Device to query |
| 643 | * @port_num:Port number to query |
| 644 | * @port_attr:Port attributes |
| 645 | * |
| 646 | * ib_query_port() returns the attributes of a port through the |
| 647 | * @port_attr pointer. |
| 648 | */ |
| 649 | int ib_query_port(struct ib_device *device, |
| 650 | u8 port_num, |
| 651 | struct ib_port_attr *port_attr) |
| 652 | { |
Eli Cohen | fad61ad | 2016-03-11 22:58:36 +0200 | [diff] [blame] | 653 | union ib_gid gid; |
| 654 | int err; |
| 655 | |
Ira Weiny | 0cf18d7 | 2015-05-13 20:02:55 -0400 | [diff] [blame] | 656 | if (port_num < rdma_start_port(device) || port_num > rdma_end_port(device)) |
Roland Dreier | 116c007 | 2005-10-03 09:32:33 -0700 | [diff] [blame] | 657 | return -EINVAL; |
| 658 | |
Eli Cohen | fad61ad | 2016-03-11 22:58:36 +0200 | [diff] [blame] | 659 | memset(port_attr, 0, sizeof(*port_attr)); |
| 660 | err = device->query_port(device, port_num, port_attr); |
| 661 | if (err || port_attr->subnet_prefix) |
| 662 | return err; |
| 663 | |
| 664 | err = ib_query_gid(device, port_num, 0, &gid, NULL); |
| 665 | if (err) |
| 666 | return err; |
| 667 | |
| 668 | port_attr->subnet_prefix = be64_to_cpu(gid.global.subnet_prefix); |
| 669 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 670 | } |
| 671 | EXPORT_SYMBOL(ib_query_port); |
| 672 | |
| 673 | /** |
| 674 | * ib_query_gid - Get GID table entry |
| 675 | * @device:Device to query |
| 676 | * @port_num:Port number to query |
| 677 | * @index:GID table index to query |
| 678 | * @gid:Returned GID |
Matan Barak | 55ee3ab | 2015-10-15 18:38:45 +0300 | [diff] [blame] | 679 | * @attr: Returned GID attributes related to this GID index (only in RoCE). |
| 680 | * NULL means ignore. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 681 | * |
| 682 | * ib_query_gid() fetches the specified GID table entry. |
| 683 | */ |
| 684 | int ib_query_gid(struct ib_device *device, |
Matan Barak | 55ee3ab | 2015-10-15 18:38:45 +0300 | [diff] [blame] | 685 | u8 port_num, int index, union ib_gid *gid, |
| 686 | struct ib_gid_attr *attr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 687 | { |
Matan Barak | 03db3a2 | 2015-07-30 18:33:26 +0300 | [diff] [blame] | 688 | if (rdma_cap_roce_gid_table(device, port_num)) |
Matan Barak | 55ee3ab | 2015-10-15 18:38:45 +0300 | [diff] [blame] | 689 | return ib_get_cached_gid(device, port_num, index, gid, attr); |
| 690 | |
| 691 | if (attr) |
| 692 | return -EINVAL; |
Matan Barak | 03db3a2 | 2015-07-30 18:33:26 +0300 | [diff] [blame] | 693 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 694 | return device->query_gid(device, port_num, index, gid); |
| 695 | } |
| 696 | EXPORT_SYMBOL(ib_query_gid); |
| 697 | |
| 698 | /** |
Matan Barak | 03db3a2 | 2015-07-30 18:33:26 +0300 | [diff] [blame] | 699 | * ib_enum_roce_netdev - enumerate all RoCE ports |
| 700 | * @ib_dev : IB device we want to query |
| 701 | * @filter: Should we call the callback? |
| 702 | * @filter_cookie: Cookie passed to filter |
| 703 | * @cb: Callback to call for each found RoCE ports |
| 704 | * @cookie: Cookie passed back to the callback |
| 705 | * |
| 706 | * Enumerates all of the physical RoCE ports of ib_dev |
| 707 | * which are related to netdevice and calls callback() on each |
| 708 | * device for which filter() function returns non zero. |
| 709 | */ |
| 710 | void ib_enum_roce_netdev(struct ib_device *ib_dev, |
| 711 | roce_netdev_filter filter, |
| 712 | void *filter_cookie, |
| 713 | roce_netdev_callback cb, |
| 714 | void *cookie) |
| 715 | { |
| 716 | u8 port; |
| 717 | |
| 718 | for (port = rdma_start_port(ib_dev); port <= rdma_end_port(ib_dev); |
| 719 | port++) |
| 720 | if (rdma_protocol_roce(ib_dev, port)) { |
| 721 | struct net_device *idev = NULL; |
| 722 | |
| 723 | if (ib_dev->get_netdev) |
| 724 | idev = ib_dev->get_netdev(ib_dev, port); |
| 725 | |
| 726 | if (idev && |
| 727 | idev->reg_state >= NETREG_UNREGISTERED) { |
| 728 | dev_put(idev); |
| 729 | idev = NULL; |
| 730 | } |
| 731 | |
| 732 | if (filter(ib_dev, port, idev, filter_cookie)) |
| 733 | cb(ib_dev, port, idev, cookie); |
| 734 | |
| 735 | if (idev) |
| 736 | dev_put(idev); |
| 737 | } |
| 738 | } |
| 739 | |
| 740 | /** |
| 741 | * ib_enum_all_roce_netdevs - enumerate all RoCE devices |
| 742 | * @filter: Should we call the callback? |
| 743 | * @filter_cookie: Cookie passed to filter |
| 744 | * @cb: Callback to call for each found RoCE ports |
| 745 | * @cookie: Cookie passed back to the callback |
| 746 | * |
| 747 | * Enumerates all RoCE devices' physical ports which are related |
| 748 | * to netdevices and calls callback() on each device for which |
| 749 | * filter() function returns non zero. |
| 750 | */ |
| 751 | void ib_enum_all_roce_netdevs(roce_netdev_filter filter, |
| 752 | void *filter_cookie, |
| 753 | roce_netdev_callback cb, |
| 754 | void *cookie) |
| 755 | { |
| 756 | struct ib_device *dev; |
| 757 | |
| 758 | down_read(&lists_rwsem); |
| 759 | list_for_each_entry(dev, &device_list, core_list) |
| 760 | ib_enum_roce_netdev(dev, filter, filter_cookie, cb, cookie); |
| 761 | up_read(&lists_rwsem); |
| 762 | } |
| 763 | |
| 764 | /** |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 765 | * ib_query_pkey - Get P_Key table entry |
| 766 | * @device:Device to query |
| 767 | * @port_num:Port number to query |
| 768 | * @index:P_Key table index to query |
| 769 | * @pkey:Returned P_Key |
| 770 | * |
| 771 | * ib_query_pkey() fetches the specified P_Key table entry. |
| 772 | */ |
| 773 | int ib_query_pkey(struct ib_device *device, |
| 774 | u8 port_num, u16 index, u16 *pkey) |
| 775 | { |
| 776 | return device->query_pkey(device, port_num, index, pkey); |
| 777 | } |
| 778 | EXPORT_SYMBOL(ib_query_pkey); |
| 779 | |
| 780 | /** |
| 781 | * ib_modify_device - Change IB device attributes |
| 782 | * @device:Device to modify |
| 783 | * @device_modify_mask:Mask of attributes to change |
| 784 | * @device_modify:New attribute values |
| 785 | * |
| 786 | * ib_modify_device() changes a device's attributes as specified by |
| 787 | * the @device_modify_mask and @device_modify structure. |
| 788 | */ |
| 789 | int ib_modify_device(struct ib_device *device, |
| 790 | int device_modify_mask, |
| 791 | struct ib_device_modify *device_modify) |
| 792 | { |
Bart Van Assche | 10e1b54 | 2011-06-18 16:35:42 +0000 | [diff] [blame] | 793 | if (!device->modify_device) |
| 794 | return -ENOSYS; |
| 795 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 796 | return device->modify_device(device, device_modify_mask, |
| 797 | device_modify); |
| 798 | } |
| 799 | EXPORT_SYMBOL(ib_modify_device); |
| 800 | |
| 801 | /** |
| 802 | * ib_modify_port - Modifies the attributes for the specified port. |
| 803 | * @device: The device to modify. |
| 804 | * @port_num: The number of the port to modify. |
| 805 | * @port_modify_mask: Mask used to specify which attributes of the port |
| 806 | * to change. |
| 807 | * @port_modify: New attribute values for the port. |
| 808 | * |
| 809 | * ib_modify_port() changes a port's attributes as specified by the |
| 810 | * @port_modify_mask and @port_modify structure. |
| 811 | */ |
| 812 | int ib_modify_port(struct ib_device *device, |
| 813 | u8 port_num, int port_modify_mask, |
| 814 | struct ib_port_modify *port_modify) |
| 815 | { |
Bart Van Assche | 10e1b54 | 2011-06-18 16:35:42 +0000 | [diff] [blame] | 816 | if (!device->modify_port) |
| 817 | return -ENOSYS; |
| 818 | |
Ira Weiny | 0cf18d7 | 2015-05-13 20:02:55 -0400 | [diff] [blame] | 819 | if (port_num < rdma_start_port(device) || port_num > rdma_end_port(device)) |
Roland Dreier | 116c007 | 2005-10-03 09:32:33 -0700 | [diff] [blame] | 820 | return -EINVAL; |
| 821 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 822 | return device->modify_port(device, port_num, port_modify_mask, |
| 823 | port_modify); |
| 824 | } |
| 825 | EXPORT_SYMBOL(ib_modify_port); |
| 826 | |
Yosef Etigin | 5eb620c | 2007-05-14 07:26:51 +0300 | [diff] [blame] | 827 | /** |
| 828 | * ib_find_gid - Returns the port number and GID table index where |
| 829 | * a specified GID value occurs. |
| 830 | * @device: The device to query. |
| 831 | * @gid: The GID value to search for. |
Matan Barak | b39ffa1 | 2015-12-23 14:56:47 +0200 | [diff] [blame] | 832 | * @gid_type: Type of GID. |
Matan Barak | 55ee3ab | 2015-10-15 18:38:45 +0300 | [diff] [blame] | 833 | * @ndev: The ndev related to the GID to search for. |
Yosef Etigin | 5eb620c | 2007-05-14 07:26:51 +0300 | [diff] [blame] | 834 | * @port_num: The port number of the device where the GID value was found. |
| 835 | * @index: The index into the GID table where the GID was found. This |
| 836 | * parameter may be NULL. |
| 837 | */ |
| 838 | int ib_find_gid(struct ib_device *device, union ib_gid *gid, |
Matan Barak | b39ffa1 | 2015-12-23 14:56:47 +0200 | [diff] [blame] | 839 | enum ib_gid_type gid_type, struct net_device *ndev, |
| 840 | u8 *port_num, u16 *index) |
Yosef Etigin | 5eb620c | 2007-05-14 07:26:51 +0300 | [diff] [blame] | 841 | { |
| 842 | union ib_gid tmp_gid; |
| 843 | int ret, port, i; |
| 844 | |
Ira Weiny | 0cf18d7 | 2015-05-13 20:02:55 -0400 | [diff] [blame] | 845 | for (port = rdma_start_port(device); port <= rdma_end_port(device); ++port) { |
Matan Barak | 03db3a2 | 2015-07-30 18:33:26 +0300 | [diff] [blame] | 846 | if (rdma_cap_roce_gid_table(device, port)) { |
Matan Barak | b39ffa1 | 2015-12-23 14:56:47 +0200 | [diff] [blame] | 847 | if (!ib_find_cached_gid_by_port(device, gid, gid_type, port, |
Matan Barak | d300ec5 | 2015-10-15 18:38:46 +0300 | [diff] [blame] | 848 | ndev, index)) { |
Matan Barak | 03db3a2 | 2015-07-30 18:33:26 +0300 | [diff] [blame] | 849 | *port_num = port; |
| 850 | return 0; |
Dan Carpenter | 98d25af | 2015-08-18 12:22:10 +0300 | [diff] [blame] | 851 | } |
Matan Barak | 03db3a2 | 2015-07-30 18:33:26 +0300 | [diff] [blame] | 852 | } |
| 853 | |
Matan Barak | b39ffa1 | 2015-12-23 14:56:47 +0200 | [diff] [blame] | 854 | if (gid_type != IB_GID_TYPE_IB) |
| 855 | continue; |
| 856 | |
Ira Weiny | 7738613 | 2015-05-13 20:02:58 -0400 | [diff] [blame] | 857 | for (i = 0; i < device->port_immutable[port].gid_tbl_len; ++i) { |
Matan Barak | 55ee3ab | 2015-10-15 18:38:45 +0300 | [diff] [blame] | 858 | ret = ib_query_gid(device, port, i, &tmp_gid, NULL); |
Yosef Etigin | 5eb620c | 2007-05-14 07:26:51 +0300 | [diff] [blame] | 859 | if (ret) |
| 860 | return ret; |
| 861 | if (!memcmp(&tmp_gid, gid, sizeof *gid)) { |
| 862 | *port_num = port; |
| 863 | if (index) |
| 864 | *index = i; |
| 865 | return 0; |
| 866 | } |
| 867 | } |
| 868 | } |
| 869 | |
| 870 | return -ENOENT; |
| 871 | } |
| 872 | EXPORT_SYMBOL(ib_find_gid); |
| 873 | |
| 874 | /** |
| 875 | * ib_find_pkey - Returns the PKey table index where a specified |
| 876 | * PKey value occurs. |
| 877 | * @device: The device to query. |
| 878 | * @port_num: The port number of the device to search for the PKey. |
| 879 | * @pkey: The PKey value to search for. |
| 880 | * @index: The index into the PKey table where the PKey was found. |
| 881 | */ |
| 882 | int ib_find_pkey(struct ib_device *device, |
| 883 | u8 port_num, u16 pkey, u16 *index) |
| 884 | { |
| 885 | int ret, i; |
| 886 | u16 tmp_pkey; |
Jack Morgenstein | ff7166c | 2012-08-03 08:40:38 +0000 | [diff] [blame] | 887 | int partial_ix = -1; |
Yosef Etigin | 5eb620c | 2007-05-14 07:26:51 +0300 | [diff] [blame] | 888 | |
Ira Weiny | 7738613 | 2015-05-13 20:02:58 -0400 | [diff] [blame] | 889 | for (i = 0; i < device->port_immutable[port_num].pkey_tbl_len; ++i) { |
Yosef Etigin | 5eb620c | 2007-05-14 07:26:51 +0300 | [diff] [blame] | 890 | ret = ib_query_pkey(device, port_num, i, &tmp_pkey); |
| 891 | if (ret) |
| 892 | return ret; |
Moni Shoua | 36026ec | 2007-07-23 10:07:42 +0300 | [diff] [blame] | 893 | if ((pkey & 0x7fff) == (tmp_pkey & 0x7fff)) { |
Jack Morgenstein | ff7166c | 2012-08-03 08:40:38 +0000 | [diff] [blame] | 894 | /* if there is full-member pkey take it.*/ |
| 895 | if (tmp_pkey & 0x8000) { |
| 896 | *index = i; |
| 897 | return 0; |
| 898 | } |
| 899 | if (partial_ix < 0) |
| 900 | partial_ix = i; |
Yosef Etigin | 5eb620c | 2007-05-14 07:26:51 +0300 | [diff] [blame] | 901 | } |
| 902 | } |
| 903 | |
Jack Morgenstein | ff7166c | 2012-08-03 08:40:38 +0000 | [diff] [blame] | 904 | /*no full-member, if exists take the limited*/ |
| 905 | if (partial_ix >= 0) { |
| 906 | *index = partial_ix; |
| 907 | return 0; |
| 908 | } |
Yosef Etigin | 5eb620c | 2007-05-14 07:26:51 +0300 | [diff] [blame] | 909 | return -ENOENT; |
| 910 | } |
| 911 | EXPORT_SYMBOL(ib_find_pkey); |
| 912 | |
Yotam Kenneth | 9268f72 | 2015-07-30 17:50:15 +0300 | [diff] [blame] | 913 | /** |
| 914 | * ib_get_net_dev_by_params() - Return the appropriate net_dev |
| 915 | * for a received CM request |
| 916 | * @dev: An RDMA device on which the request has been received. |
| 917 | * @port: Port number on the RDMA device. |
| 918 | * @pkey: The Pkey the request came on. |
| 919 | * @gid: A GID that the net_dev uses to communicate. |
| 920 | * @addr: Contains the IP address that the request specified as its |
| 921 | * destination. |
| 922 | */ |
| 923 | struct net_device *ib_get_net_dev_by_params(struct ib_device *dev, |
| 924 | u8 port, |
| 925 | u16 pkey, |
| 926 | const union ib_gid *gid, |
| 927 | const struct sockaddr *addr) |
| 928 | { |
| 929 | struct net_device *net_dev = NULL; |
| 930 | struct ib_client_data *context; |
| 931 | |
| 932 | if (!rdma_protocol_ib(dev, port)) |
| 933 | return NULL; |
| 934 | |
| 935 | down_read(&lists_rwsem); |
| 936 | |
| 937 | list_for_each_entry(context, &dev->client_data_list, list) { |
| 938 | struct ib_client *client = context->client; |
| 939 | |
| 940 | if (context->going_down) |
| 941 | continue; |
| 942 | |
| 943 | if (client->get_net_dev_by_params) { |
| 944 | net_dev = client->get_net_dev_by_params(dev, port, pkey, |
| 945 | gid, addr, |
| 946 | context->data); |
| 947 | if (net_dev) |
| 948 | break; |
| 949 | } |
| 950 | } |
| 951 | |
| 952 | up_read(&lists_rwsem); |
| 953 | |
| 954 | return net_dev; |
| 955 | } |
| 956 | EXPORT_SYMBOL(ib_get_net_dev_by_params); |
| 957 | |
Mark Bloch | 735c631 | 2016-05-19 17:12:35 +0300 | [diff] [blame] | 958 | static struct ibnl_client_cbs ibnl_ls_cb_table[] = { |
| 959 | [RDMA_NL_LS_OP_RESOLVE] = { |
| 960 | .dump = ib_nl_handle_resolve_resp, |
| 961 | .module = THIS_MODULE }, |
| 962 | [RDMA_NL_LS_OP_SET_TIMEOUT] = { |
| 963 | .dump = ib_nl_handle_set_timeout, |
| 964 | .module = THIS_MODULE }, |
Mark Bloch | ae43f82 | 2016-05-19 17:12:36 +0300 | [diff] [blame^] | 965 | [RDMA_NL_LS_OP_IP_RESOLVE] = { |
| 966 | .dump = ib_nl_handle_ip_res_resp, |
| 967 | .module = THIS_MODULE }, |
Mark Bloch | 735c631 | 2016-05-19 17:12:35 +0300 | [diff] [blame] | 968 | }; |
| 969 | |
| 970 | static int ib_add_ibnl_clients(void) |
| 971 | { |
| 972 | return ibnl_add_client(RDMA_NL_LS, ARRAY_SIZE(ibnl_ls_cb_table), |
| 973 | ibnl_ls_cb_table); |
| 974 | } |
| 975 | |
| 976 | static void ib_remove_ibnl_clients(void) |
| 977 | { |
| 978 | ibnl_remove_client(RDMA_NL_LS); |
| 979 | } |
| 980 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 981 | static int __init ib_core_init(void) |
| 982 | { |
| 983 | int ret; |
| 984 | |
Tejun Heo | f062671 | 2010-10-19 15:24:36 +0000 | [diff] [blame] | 985 | ib_wq = alloc_workqueue("infiniband", 0, 0); |
| 986 | if (!ib_wq) |
| 987 | return -ENOMEM; |
| 988 | |
Christoph Hellwig | 14d3a3b | 2015-12-11 11:53:03 -0800 | [diff] [blame] | 989 | ib_comp_wq = alloc_workqueue("ib-comp-wq", |
| 990 | WQ_UNBOUND | WQ_HIGHPRI | WQ_MEM_RECLAIM, |
| 991 | WQ_UNBOUND_MAX_ACTIVE); |
| 992 | if (!ib_comp_wq) { |
| 993 | ret = -ENOMEM; |
| 994 | goto err; |
| 995 | } |
| 996 | |
Jason Gunthorpe | 55aeed0 | 2015-08-04 15:23:34 -0600 | [diff] [blame] | 997 | ret = class_register(&ib_class); |
Nir Muchtar | fd75c78 | 2011-05-20 11:46:10 -0700 | [diff] [blame] | 998 | if (ret) { |
Parav Pandit | aba25a3e | 2016-03-02 00:50:29 +0530 | [diff] [blame] | 999 | pr_warn("Couldn't create InfiniBand device class\n"); |
Christoph Hellwig | 14d3a3b | 2015-12-11 11:53:03 -0800 | [diff] [blame] | 1000 | goto err_comp; |
Nir Muchtar | fd75c78 | 2011-05-20 11:46:10 -0700 | [diff] [blame] | 1001 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1002 | |
Roland Dreier | b2cbae2 | 2011-05-20 11:46:11 -0700 | [diff] [blame] | 1003 | ret = ibnl_init(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1004 | if (ret) { |
Parav Pandit | aba25a3e | 2016-03-02 00:50:29 +0530 | [diff] [blame] | 1005 | pr_warn("Couldn't init IB netlink interface\n"); |
Nir Muchtar | fd75c78 | 2011-05-20 11:46:10 -0700 | [diff] [blame] | 1006 | goto err_sysfs; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1007 | } |
| 1008 | |
Leon Romanovsky | e3f20f0 | 2016-05-19 17:12:31 +0300 | [diff] [blame] | 1009 | ret = addr_init(); |
| 1010 | if (ret) { |
| 1011 | pr_warn("Could't init IB address resolution\n"); |
| 1012 | goto err_ibnl; |
| 1013 | } |
| 1014 | |
Mark Bloch | 4c2cb42 | 2016-05-19 17:12:32 +0300 | [diff] [blame] | 1015 | ret = ib_mad_init(); |
| 1016 | if (ret) { |
| 1017 | pr_warn("Couldn't init IB MAD\n"); |
| 1018 | goto err_addr; |
| 1019 | } |
| 1020 | |
Mark Bloch | c2e49c9 | 2016-05-19 17:12:33 +0300 | [diff] [blame] | 1021 | ret = ib_sa_init(); |
| 1022 | if (ret) { |
| 1023 | pr_warn("Couldn't init SA\n"); |
| 1024 | goto err_mad; |
| 1025 | } |
| 1026 | |
Mark Bloch | 735c631 | 2016-05-19 17:12:35 +0300 | [diff] [blame] | 1027 | if (ib_add_ibnl_clients()) { |
| 1028 | pr_warn("Couldn't register ibnl clients\n"); |
| 1029 | goto err_sa; |
| 1030 | } |
| 1031 | |
Matan Barak | 03db3a2 | 2015-07-30 18:33:26 +0300 | [diff] [blame] | 1032 | ib_cache_setup(); |
Roland Dreier | b2cbae2 | 2011-05-20 11:46:11 -0700 | [diff] [blame] | 1033 | |
Nir Muchtar | fd75c78 | 2011-05-20 11:46:10 -0700 | [diff] [blame] | 1034 | return 0; |
| 1035 | |
Mark Bloch | 735c631 | 2016-05-19 17:12:35 +0300 | [diff] [blame] | 1036 | err_sa: |
| 1037 | ib_sa_cleanup(); |
Mark Bloch | c2e49c9 | 2016-05-19 17:12:33 +0300 | [diff] [blame] | 1038 | err_mad: |
| 1039 | ib_mad_cleanup(); |
Mark Bloch | 4c2cb42 | 2016-05-19 17:12:32 +0300 | [diff] [blame] | 1040 | err_addr: |
| 1041 | addr_cleanup(); |
Leon Romanovsky | e3f20f0 | 2016-05-19 17:12:31 +0300 | [diff] [blame] | 1042 | err_ibnl: |
| 1043 | ibnl_cleanup(); |
Nir Muchtar | fd75c78 | 2011-05-20 11:46:10 -0700 | [diff] [blame] | 1044 | err_sysfs: |
Jason Gunthorpe | 55aeed0 | 2015-08-04 15:23:34 -0600 | [diff] [blame] | 1045 | class_unregister(&ib_class); |
Christoph Hellwig | 14d3a3b | 2015-12-11 11:53:03 -0800 | [diff] [blame] | 1046 | err_comp: |
| 1047 | destroy_workqueue(ib_comp_wq); |
Nir Muchtar | fd75c78 | 2011-05-20 11:46:10 -0700 | [diff] [blame] | 1048 | err: |
| 1049 | destroy_workqueue(ib_wq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1050 | return ret; |
| 1051 | } |
| 1052 | |
| 1053 | static void __exit ib_core_cleanup(void) |
| 1054 | { |
| 1055 | ib_cache_cleanup(); |
Mark Bloch | 735c631 | 2016-05-19 17:12:35 +0300 | [diff] [blame] | 1056 | ib_remove_ibnl_clients(); |
Mark Bloch | c2e49c9 | 2016-05-19 17:12:33 +0300 | [diff] [blame] | 1057 | ib_sa_cleanup(); |
Mark Bloch | 4c2cb42 | 2016-05-19 17:12:32 +0300 | [diff] [blame] | 1058 | ib_mad_cleanup(); |
Leon Romanovsky | e3f20f0 | 2016-05-19 17:12:31 +0300 | [diff] [blame] | 1059 | addr_cleanup(); |
Roland Dreier | b2cbae2 | 2011-05-20 11:46:11 -0700 | [diff] [blame] | 1060 | ibnl_cleanup(); |
Jason Gunthorpe | 55aeed0 | 2015-08-04 15:23:34 -0600 | [diff] [blame] | 1061 | class_unregister(&ib_class); |
Christoph Hellwig | 14d3a3b | 2015-12-11 11:53:03 -0800 | [diff] [blame] | 1062 | destroy_workqueue(ib_comp_wq); |
Roland Dreier | f7c6a7b | 2007-03-04 16:15:11 -0800 | [diff] [blame] | 1063 | /* Make sure that any pending umem accounting work is done. */ |
Tejun Heo | f062671 | 2010-10-19 15:24:36 +0000 | [diff] [blame] | 1064 | destroy_workqueue(ib_wq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1065 | } |
| 1066 | |
| 1067 | module_init(ib_core_init); |
| 1068 | module_exit(ib_core_cleanup); |