blob: a9a27816991ab444073edbaeb4a47e3400c031af [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Copyright (c) 2004 Topspin Communications. All rights reserved.
Roland Dreier2a1d9b72005-08-10 23:03:10 -07003 * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 *
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 Torvalds1da177e2005-04-16 15:20:36 -070032 */
33
34#include <linux/module.h>
35#include <linux/string.h>
36#include <linux/errno.h>
Ahmed S. Darwish9a6b0902007-02-06 18:07:25 +020037#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070038#include <linux/slab.h>
39#include <linux/init.h>
Ingo Molnar95ed6442006-01-13 14:51:39 -080040#include <linux/mutex.h>
Yotam Kenneth9268f722015-07-30 17:50:15 +030041#include <linux/netdevice.h>
Roland Dreierb2cbae22011-05-20 11:46:11 -070042#include <rdma/rdma_netlink.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070043
44#include "core_priv.h"
45
46MODULE_AUTHOR("Roland Dreier");
47MODULE_DESCRIPTION("core kernel InfiniBand API");
48MODULE_LICENSE("Dual BSD/GPL");
49
50struct ib_client_data {
51 struct list_head list;
52 struct ib_client *client;
53 void * data;
Haggai Eran7c1eb452015-07-30 17:50:14 +030054 /* The device or client is going down. Do not call client or device
55 * callbacks other than remove(). */
56 bool going_down;
Linus Torvalds1da177e2005-04-16 15:20:36 -070057};
58
Tejun Heof0626712010-10-19 15:24:36 +000059struct workqueue_struct *ib_wq;
60EXPORT_SYMBOL_GPL(ib_wq);
61
Haggai Eran5aa44bb2015-07-30 17:50:13 +030062/* The device_list and client_list contain devices and clients after their
63 * registration has completed, and the devices and clients are removed
64 * during unregistration. */
Linus Torvalds1da177e2005-04-16 15:20:36 -070065static LIST_HEAD(device_list);
66static LIST_HEAD(client_list);
67
68/*
Haggai Eran5aa44bb2015-07-30 17:50:13 +030069 * device_mutex and lists_rwsem protect access to both device_list and
70 * client_list. device_mutex protects writer access by device and client
71 * registration / de-registration. lists_rwsem protects reader access to
72 * these lists. Iterators of these lists must lock it for read, while updates
73 * to the lists must be done with a write lock. A special case is when the
74 * device_mutex is locked. In this case locking the lists for read access is
75 * not necessary as the device_mutex implies it.
Haggai Eran7c1eb452015-07-30 17:50:14 +030076 *
77 * lists_rwsem also protects access to the client data list.
Linus Torvalds1da177e2005-04-16 15:20:36 -070078 */
Ingo Molnar95ed6442006-01-13 14:51:39 -080079static DEFINE_MUTEX(device_mutex);
Haggai Eran5aa44bb2015-07-30 17:50:13 +030080static DECLARE_RWSEM(lists_rwsem);
81
Linus Torvalds1da177e2005-04-16 15:20:36 -070082
83static int ib_device_check_mandatory(struct ib_device *device)
84{
85#define IB_MANDATORY_FUNC(x) { offsetof(struct ib_device, x), #x }
86 static const struct {
87 size_t offset;
88 char *name;
89 } mandatory_table[] = {
90 IB_MANDATORY_FUNC(query_device),
91 IB_MANDATORY_FUNC(query_port),
92 IB_MANDATORY_FUNC(query_pkey),
93 IB_MANDATORY_FUNC(query_gid),
94 IB_MANDATORY_FUNC(alloc_pd),
95 IB_MANDATORY_FUNC(dealloc_pd),
96 IB_MANDATORY_FUNC(create_ah),
97 IB_MANDATORY_FUNC(destroy_ah),
98 IB_MANDATORY_FUNC(create_qp),
99 IB_MANDATORY_FUNC(modify_qp),
100 IB_MANDATORY_FUNC(destroy_qp),
101 IB_MANDATORY_FUNC(post_send),
102 IB_MANDATORY_FUNC(post_recv),
103 IB_MANDATORY_FUNC(create_cq),
104 IB_MANDATORY_FUNC(destroy_cq),
105 IB_MANDATORY_FUNC(poll_cq),
106 IB_MANDATORY_FUNC(req_notify_cq),
107 IB_MANDATORY_FUNC(get_dma_mr),
Ira Weiny77386132015-05-13 20:02:58 -0400108 IB_MANDATORY_FUNC(dereg_mr),
109 IB_MANDATORY_FUNC(get_port_immutable)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110 };
111 int i;
112
Ahmed S. Darwish9a6b0902007-02-06 18:07:25 +0200113 for (i = 0; i < ARRAY_SIZE(mandatory_table); ++i) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 if (!*(void **) ((void *) device + mandatory_table[i].offset)) {
115 printk(KERN_WARNING "Device %s is missing mandatory function %s\n",
116 device->name, mandatory_table[i].name);
117 return -EINVAL;
118 }
119 }
120
121 return 0;
122}
123
124static struct ib_device *__ib_device_get_by_name(const char *name)
125{
126 struct ib_device *device;
127
128 list_for_each_entry(device, &device_list, core_list)
129 if (!strncmp(name, device->name, IB_DEVICE_NAME_MAX))
130 return device;
131
132 return NULL;
133}
134
135
136static int alloc_name(char *name)
137{
Roland Dreier65d470b2007-10-09 19:59:04 -0700138 unsigned long *inuse;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 char buf[IB_DEVICE_NAME_MAX];
140 struct ib_device *device;
141 int i;
142
Roland Dreier65d470b2007-10-09 19:59:04 -0700143 inuse = (unsigned long *) get_zeroed_page(GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 if (!inuse)
145 return -ENOMEM;
146
147 list_for_each_entry(device, &device_list, core_list) {
148 if (!sscanf(device->name, name, &i))
149 continue;
150 if (i < 0 || i >= PAGE_SIZE * 8)
151 continue;
152 snprintf(buf, sizeof buf, name, i);
153 if (!strncmp(buf, device->name, IB_DEVICE_NAME_MAX))
154 set_bit(i, inuse);
155 }
156
157 i = find_first_zero_bit(inuse, PAGE_SIZE * 8);
158 free_page((unsigned long) inuse);
159 snprintf(buf, sizeof buf, name, i);
160
161 if (__ib_device_get_by_name(buf))
162 return -ENFILE;
163
164 strlcpy(name, buf, IB_DEVICE_NAME_MAX);
165 return 0;
166}
167
168/**
169 * ib_alloc_device - allocate an IB device struct
170 * @size:size of structure to allocate
171 *
172 * Low-level drivers should use ib_alloc_device() to allocate &struct
173 * ib_device. @size is the size of the structure to be allocated,
174 * including any private data used by the low-level driver.
175 * ib_dealloc_device() must be used to free structures allocated with
176 * ib_alloc_device().
177 */
178struct ib_device *ib_alloc_device(size_t size)
179{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 BUG_ON(size < sizeof (struct ib_device));
181
Roland Dreierde6eb662005-11-02 07:23:14 -0800182 return kzalloc(size, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183}
184EXPORT_SYMBOL(ib_alloc_device);
185
186/**
187 * ib_dealloc_device - free an IB device struct
188 * @device:structure to free
189 *
190 * Free a structure allocated with ib_alloc_device().
191 */
192void ib_dealloc_device(struct ib_device *device)
193{
194 if (device->reg_state == IB_DEV_UNINITIALIZED) {
195 kfree(device);
196 return;
197 }
198
199 BUG_ON(device->reg_state != IB_DEV_UNREGISTERED);
200
Roland Dreier9206dff2009-02-25 13:27:46 -0800201 kobject_put(&device->dev.kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202}
203EXPORT_SYMBOL(ib_dealloc_device);
204
205static int add_client_context(struct ib_device *device, struct ib_client *client)
206{
207 struct ib_client_data *context;
208 unsigned long flags;
209
210 context = kmalloc(sizeof *context, GFP_KERNEL);
211 if (!context) {
212 printk(KERN_WARNING "Couldn't allocate client context for %s/%s\n",
213 device->name, client->name);
214 return -ENOMEM;
215 }
216
217 context->client = client;
218 context->data = NULL;
Haggai Eran7c1eb452015-07-30 17:50:14 +0300219 context->going_down = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220
Haggai Eran7c1eb452015-07-30 17:50:14 +0300221 down_write(&lists_rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 spin_lock_irqsave(&device->client_data_lock, flags);
223 list_add(&context->list, &device->client_data_list);
224 spin_unlock_irqrestore(&device->client_data_lock, flags);
Haggai Eran7c1eb452015-07-30 17:50:14 +0300225 up_write(&lists_rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226
227 return 0;
228}
229
Ira Weiny337877a2015-06-06 14:38:29 -0400230static int verify_immutable(const struct ib_device *dev, u8 port)
231{
232 return WARN_ON(!rdma_cap_ib_mad(dev, port) &&
233 rdma_max_mad_size(dev, port) != 0);
234}
235
Ira Weiny77386132015-05-13 20:02:58 -0400236static int read_port_immutable(struct ib_device *device)
Yosef Etigin5eb620c2007-05-14 07:26:51 +0300237{
Ira Weiny77386132015-05-13 20:02:58 -0400238 int ret = -ENOMEM;
239 u8 start_port = rdma_start_port(device);
240 u8 end_port = rdma_end_port(device);
241 u8 port;
Yosef Etigin5eb620c2007-05-14 07:26:51 +0300242
Ira Weiny77386132015-05-13 20:02:58 -0400243 /**
244 * device->port_immutable is indexed directly by the port number to make
245 * access to this data as efficient as possible.
246 *
247 * Therefore port_immutable is declared as a 1 based array with
248 * potential empty slots at the beginning.
249 */
250 device->port_immutable = kzalloc(sizeof(*device->port_immutable)
251 * (end_port + 1),
252 GFP_KERNEL);
253 if (!device->port_immutable)
Yosef Etigin5eb620c2007-05-14 07:26:51 +0300254 goto err;
255
Ira Weiny77386132015-05-13 20:02:58 -0400256 for (port = start_port; port <= end_port; ++port) {
257 ret = device->get_port_immutable(device, port,
258 &device->port_immutable[port]);
Yosef Etigin5eb620c2007-05-14 07:26:51 +0300259 if (ret)
260 goto err;
Ira Weiny337877a2015-06-06 14:38:29 -0400261
262 if (verify_immutable(device, port)) {
263 ret = -EINVAL;
264 goto err;
265 }
Yosef Etigin5eb620c2007-05-14 07:26:51 +0300266 }
267
268 ret = 0;
269 goto out;
Yosef Etigin5eb620c2007-05-14 07:26:51 +0300270err:
Ira Weiny77386132015-05-13 20:02:58 -0400271 kfree(device->port_immutable);
Yosef Etigin5eb620c2007-05-14 07:26:51 +0300272out:
Yosef Etigin5eb620c2007-05-14 07:26:51 +0300273 return ret;
274}
275
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276/**
277 * ib_register_device - Register an IB device with IB core
278 * @device:Device to register
279 *
280 * Low-level drivers use ib_register_device() to register their
281 * devices with the IB core. All registered clients will receive a
282 * callback for each device that is added. @device must be allocated
283 * with ib_alloc_device().
284 */
Ralph Campbell9a6edb62010-05-06 17:03:25 -0700285int ib_register_device(struct ib_device *device,
286 int (*port_callback)(struct ib_device *,
287 u8, struct kobject *))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288{
289 int ret;
290
Ingo Molnar95ed6442006-01-13 14:51:39 -0800291 mutex_lock(&device_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292
293 if (strchr(device->name, '%')) {
294 ret = alloc_name(device->name);
295 if (ret)
296 goto out;
297 }
298
299 if (ib_device_check_mandatory(device)) {
300 ret = -EINVAL;
301 goto out;
302 }
303
304 INIT_LIST_HEAD(&device->event_handler_list);
305 INIT_LIST_HEAD(&device->client_data_list);
306 spin_lock_init(&device->event_handler_lock);
307 spin_lock_init(&device->client_data_lock);
308
Ira Weiny77386132015-05-13 20:02:58 -0400309 ret = read_port_immutable(device);
Yosef Etigin5eb620c2007-05-14 07:26:51 +0300310 if (ret) {
Ira Weiny77386132015-05-13 20:02:58 -0400311 printk(KERN_WARNING "Couldn't create per port immutable data %s\n",
Yosef Etigin5eb620c2007-05-14 07:26:51 +0300312 device->name);
313 goto out;
314 }
315
Ralph Campbell9a6edb62010-05-06 17:03:25 -0700316 ret = ib_device_register_sysfs(device, port_callback);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 if (ret) {
318 printk(KERN_WARNING "Couldn't register device %s with driver model\n",
319 device->name);
Ira Weiny77386132015-05-13 20:02:58 -0400320 kfree(device->port_immutable);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 goto out;
322 }
323
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 device->reg_state = IB_DEV_REGISTERED;
325
326 {
327 struct ib_client *client;
328
329 list_for_each_entry(client, &client_list, list)
330 if (client->add && !add_client_context(device, client))
331 client->add(device);
332 }
333
Haggai Eran5aa44bb2015-07-30 17:50:13 +0300334 down_write(&lists_rwsem);
335 list_add_tail(&device->core_list, &device_list);
336 up_write(&lists_rwsem);
337out:
Ingo Molnar95ed6442006-01-13 14:51:39 -0800338 mutex_unlock(&device_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 return ret;
340}
341EXPORT_SYMBOL(ib_register_device);
342
343/**
344 * ib_unregister_device - Unregister an IB device
345 * @device:Device to unregister
346 *
347 * Unregister an IB device. All clients will receive a remove callback.
348 */
349void ib_unregister_device(struct ib_device *device)
350{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 struct ib_client_data *context, *tmp;
352 unsigned long flags;
353
Ingo Molnar95ed6442006-01-13 14:51:39 -0800354 mutex_lock(&device_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355
Haggai Eran5aa44bb2015-07-30 17:50:13 +0300356 down_write(&lists_rwsem);
357 list_del(&device->core_list);
Haggai Eran7c1eb452015-07-30 17:50:14 +0300358 spin_lock_irqsave(&device->client_data_lock, flags);
359 list_for_each_entry_safe(context, tmp, &device->client_data_list, list)
360 context->going_down = true;
361 spin_unlock_irqrestore(&device->client_data_lock, flags);
362 downgrade_write(&lists_rwsem);
Haggai Eran5aa44bb2015-07-30 17:50:13 +0300363
Haggai Eran7c1eb452015-07-30 17:50:14 +0300364 list_for_each_entry_safe(context, tmp, &device->client_data_list,
365 list) {
366 if (context->client->remove)
367 context->client->remove(device, context->data);
368 }
369 up_read(&lists_rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370
Ingo Molnar95ed6442006-01-13 14:51:39 -0800371 mutex_unlock(&device_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372
Roland Dreier9206dff2009-02-25 13:27:46 -0800373 ib_device_unregister_sysfs(device);
374
Haggai Eran7c1eb452015-07-30 17:50:14 +0300375 down_write(&lists_rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 spin_lock_irqsave(&device->client_data_lock, flags);
377 list_for_each_entry_safe(context, tmp, &device->client_data_list, list)
378 kfree(context);
379 spin_unlock_irqrestore(&device->client_data_lock, flags);
Haggai Eran7c1eb452015-07-30 17:50:14 +0300380 up_write(&lists_rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381
382 device->reg_state = IB_DEV_UNREGISTERED;
383}
384EXPORT_SYMBOL(ib_unregister_device);
385
386/**
387 * ib_register_client - Register an IB client
388 * @client:Client to register
389 *
390 * Upper level users of the IB drivers can use ib_register_client() to
391 * register callbacks for IB device addition and removal. When an IB
392 * device is added, each registered client's add method will be called
393 * (in the order the clients were registered), and when a device is
394 * removed, each client's remove method will be called (in the reverse
395 * order that clients were registered). In addition, when
396 * ib_register_client() is called, the client will receive an add
397 * callback for all devices already registered.
398 */
399int ib_register_client(struct ib_client *client)
400{
401 struct ib_device *device;
402
Ingo Molnar95ed6442006-01-13 14:51:39 -0800403 mutex_lock(&device_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 list_for_each_entry(device, &device_list, core_list)
406 if (client->add && !add_client_context(device, client))
407 client->add(device);
408
Haggai Eran5aa44bb2015-07-30 17:50:13 +0300409 down_write(&lists_rwsem);
410 list_add_tail(&client->list, &client_list);
411 up_write(&lists_rwsem);
412
Ingo Molnar95ed6442006-01-13 14:51:39 -0800413 mutex_unlock(&device_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414
415 return 0;
416}
417EXPORT_SYMBOL(ib_register_client);
418
419/**
420 * ib_unregister_client - Unregister an IB client
421 * @client:Client to unregister
422 *
423 * Upper level users use ib_unregister_client() to remove their client
424 * registration. When ib_unregister_client() is called, the client
425 * will receive a remove callback for each IB device still registered.
426 */
427void ib_unregister_client(struct ib_client *client)
428{
429 struct ib_client_data *context, *tmp;
430 struct ib_device *device;
431 unsigned long flags;
432
Ingo Molnar95ed6442006-01-13 14:51:39 -0800433 mutex_lock(&device_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434
Haggai Eran5aa44bb2015-07-30 17:50:13 +0300435 down_write(&lists_rwsem);
436 list_del(&client->list);
437 up_write(&lists_rwsem);
438
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 list_for_each_entry(device, &device_list, core_list) {
Haggai Eran7c1eb452015-07-30 17:50:14 +0300440 struct ib_client_data *found_context = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441
Haggai Eran7c1eb452015-07-30 17:50:14 +0300442 down_write(&lists_rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 spin_lock_irqsave(&device->client_data_lock, flags);
444 list_for_each_entry_safe(context, tmp, &device->client_data_list, list)
445 if (context->client == client) {
Haggai Eran7c1eb452015-07-30 17:50:14 +0300446 context->going_down = true;
447 found_context = context;
448 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 }
450 spin_unlock_irqrestore(&device->client_data_lock, flags);
Haggai Eran7c1eb452015-07-30 17:50:14 +0300451 up_write(&lists_rwsem);
452
453 if (client->remove)
454 client->remove(device, found_context ?
455 found_context->data : NULL);
456
457 if (!found_context) {
458 pr_warn("No client context found for %s/%s\n",
459 device->name, client->name);
460 continue;
461 }
462
463 down_write(&lists_rwsem);
464 spin_lock_irqsave(&device->client_data_lock, flags);
465 list_del(&found_context->list);
466 kfree(found_context);
467 spin_unlock_irqrestore(&device->client_data_lock, flags);
468 up_write(&lists_rwsem);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470
Ingo Molnar95ed6442006-01-13 14:51:39 -0800471 mutex_unlock(&device_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472}
473EXPORT_SYMBOL(ib_unregister_client);
474
475/**
476 * ib_get_client_data - Get IB client context
477 * @device:Device to get context for
478 * @client:Client to get context for
479 *
480 * ib_get_client_data() returns client context set with
481 * ib_set_client_data().
482 */
483void *ib_get_client_data(struct ib_device *device, struct ib_client *client)
484{
485 struct ib_client_data *context;
486 void *ret = NULL;
487 unsigned long flags;
488
489 spin_lock_irqsave(&device->client_data_lock, flags);
490 list_for_each_entry(context, &device->client_data_list, list)
491 if (context->client == client) {
492 ret = context->data;
493 break;
494 }
495 spin_unlock_irqrestore(&device->client_data_lock, flags);
496
497 return ret;
498}
499EXPORT_SYMBOL(ib_get_client_data);
500
501/**
Krishna Kumar9cd330d2006-09-22 15:22:58 -0700502 * ib_set_client_data - Set IB client context
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 * @device:Device to set context for
504 * @client:Client to set context for
505 * @data:Context to set
506 *
507 * ib_set_client_data() sets client context that can be retrieved with
508 * ib_get_client_data().
509 */
510void ib_set_client_data(struct ib_device *device, struct ib_client *client,
511 void *data)
512{
513 struct ib_client_data *context;
514 unsigned long flags;
515
516 spin_lock_irqsave(&device->client_data_lock, flags);
517 list_for_each_entry(context, &device->client_data_list, list)
518 if (context->client == client) {
519 context->data = data;
520 goto out;
521 }
522
523 printk(KERN_WARNING "No client context found for %s/%s\n",
524 device->name, client->name);
525
526out:
527 spin_unlock_irqrestore(&device->client_data_lock, flags);
528}
529EXPORT_SYMBOL(ib_set_client_data);
530
531/**
532 * ib_register_event_handler - Register an IB event handler
533 * @event_handler:Handler to register
534 *
535 * ib_register_event_handler() registers an event handler that will be
536 * called back when asynchronous IB events occur (as defined in
537 * chapter 11 of the InfiniBand Architecture Specification). This
538 * callback may occur in interrupt context.
539 */
540int ib_register_event_handler (struct ib_event_handler *event_handler)
541{
542 unsigned long flags;
543
544 spin_lock_irqsave(&event_handler->device->event_handler_lock, flags);
545 list_add_tail(&event_handler->list,
546 &event_handler->device->event_handler_list);
547 spin_unlock_irqrestore(&event_handler->device->event_handler_lock, flags);
548
549 return 0;
550}
551EXPORT_SYMBOL(ib_register_event_handler);
552
553/**
554 * ib_unregister_event_handler - Unregister an event handler
555 * @event_handler:Handler to unregister
556 *
557 * Unregister an event handler registered with
558 * ib_register_event_handler().
559 */
560int ib_unregister_event_handler(struct ib_event_handler *event_handler)
561{
562 unsigned long flags;
563
564 spin_lock_irqsave(&event_handler->device->event_handler_lock, flags);
565 list_del(&event_handler->list);
566 spin_unlock_irqrestore(&event_handler->device->event_handler_lock, flags);
567
568 return 0;
569}
570EXPORT_SYMBOL(ib_unregister_event_handler);
571
572/**
573 * ib_dispatch_event - Dispatch an asynchronous event
574 * @event:Event to dispatch
575 *
576 * Low-level drivers must call ib_dispatch_event() to dispatch the
577 * event to all registered event handlers when an asynchronous event
578 * occurs.
579 */
580void ib_dispatch_event(struct ib_event *event)
581{
582 unsigned long flags;
583 struct ib_event_handler *handler;
584
585 spin_lock_irqsave(&event->device->event_handler_lock, flags);
586
587 list_for_each_entry(handler, &event->device->event_handler_list, list)
588 handler->handler(handler, event);
589
590 spin_unlock_irqrestore(&event->device->event_handler_lock, flags);
591}
592EXPORT_SYMBOL(ib_dispatch_event);
593
594/**
595 * ib_query_device - Query IB device attributes
596 * @device:Device to query
597 * @device_attr:Device attributes
598 *
599 * ib_query_device() returns the attributes of a device through the
600 * @device_attr pointer.
601 */
602int ib_query_device(struct ib_device *device,
603 struct ib_device_attr *device_attr)
604{
Matan Barak2528e332015-06-11 16:35:25 +0300605 struct ib_udata uhw = {.outlen = 0, .inlen = 0};
606
Matan Barak24306dc2015-06-11 16:35:24 +0300607 memset(device_attr, 0, sizeof(*device_attr));
608
Matan Barak2528e332015-06-11 16:35:25 +0300609 return device->query_device(device, device_attr, &uhw);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610}
611EXPORT_SYMBOL(ib_query_device);
612
613/**
614 * ib_query_port - Query IB port attributes
615 * @device:Device to query
616 * @port_num:Port number to query
617 * @port_attr:Port attributes
618 *
619 * ib_query_port() returns the attributes of a port through the
620 * @port_attr pointer.
621 */
622int ib_query_port(struct ib_device *device,
623 u8 port_num,
624 struct ib_port_attr *port_attr)
625{
Ira Weiny0cf18d72015-05-13 20:02:55 -0400626 if (port_num < rdma_start_port(device) || port_num > rdma_end_port(device))
Roland Dreier116c0072005-10-03 09:32:33 -0700627 return -EINVAL;
628
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629 return device->query_port(device, port_num, port_attr);
630}
631EXPORT_SYMBOL(ib_query_port);
632
633/**
634 * ib_query_gid - Get GID table entry
635 * @device:Device to query
636 * @port_num:Port number to query
637 * @index:GID table index to query
638 * @gid:Returned GID
639 *
640 * ib_query_gid() fetches the specified GID table entry.
641 */
642int ib_query_gid(struct ib_device *device,
643 u8 port_num, int index, union ib_gid *gid)
644{
645 return device->query_gid(device, port_num, index, gid);
646}
647EXPORT_SYMBOL(ib_query_gid);
648
649/**
650 * ib_query_pkey - Get P_Key table entry
651 * @device:Device to query
652 * @port_num:Port number to query
653 * @index:P_Key table index to query
654 * @pkey:Returned P_Key
655 *
656 * ib_query_pkey() fetches the specified P_Key table entry.
657 */
658int ib_query_pkey(struct ib_device *device,
659 u8 port_num, u16 index, u16 *pkey)
660{
661 return device->query_pkey(device, port_num, index, pkey);
662}
663EXPORT_SYMBOL(ib_query_pkey);
664
665/**
666 * ib_modify_device - Change IB device attributes
667 * @device:Device to modify
668 * @device_modify_mask:Mask of attributes to change
669 * @device_modify:New attribute values
670 *
671 * ib_modify_device() changes a device's attributes as specified by
672 * the @device_modify_mask and @device_modify structure.
673 */
674int ib_modify_device(struct ib_device *device,
675 int device_modify_mask,
676 struct ib_device_modify *device_modify)
677{
Bart Van Assche10e1b542011-06-18 16:35:42 +0000678 if (!device->modify_device)
679 return -ENOSYS;
680
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681 return device->modify_device(device, device_modify_mask,
682 device_modify);
683}
684EXPORT_SYMBOL(ib_modify_device);
685
686/**
687 * ib_modify_port - Modifies the attributes for the specified port.
688 * @device: The device to modify.
689 * @port_num: The number of the port to modify.
690 * @port_modify_mask: Mask used to specify which attributes of the port
691 * to change.
692 * @port_modify: New attribute values for the port.
693 *
694 * ib_modify_port() changes a port's attributes as specified by the
695 * @port_modify_mask and @port_modify structure.
696 */
697int ib_modify_port(struct ib_device *device,
698 u8 port_num, int port_modify_mask,
699 struct ib_port_modify *port_modify)
700{
Bart Van Assche10e1b542011-06-18 16:35:42 +0000701 if (!device->modify_port)
702 return -ENOSYS;
703
Ira Weiny0cf18d72015-05-13 20:02:55 -0400704 if (port_num < rdma_start_port(device) || port_num > rdma_end_port(device))
Roland Dreier116c0072005-10-03 09:32:33 -0700705 return -EINVAL;
706
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707 return device->modify_port(device, port_num, port_modify_mask,
708 port_modify);
709}
710EXPORT_SYMBOL(ib_modify_port);
711
Yosef Etigin5eb620c2007-05-14 07:26:51 +0300712/**
713 * ib_find_gid - Returns the port number and GID table index where
714 * a specified GID value occurs.
715 * @device: The device to query.
716 * @gid: The GID value to search for.
717 * @port_num: The port number of the device where the GID value was found.
718 * @index: The index into the GID table where the GID was found. This
719 * parameter may be NULL.
720 */
721int ib_find_gid(struct ib_device *device, union ib_gid *gid,
722 u8 *port_num, u16 *index)
723{
724 union ib_gid tmp_gid;
725 int ret, port, i;
726
Ira Weiny0cf18d72015-05-13 20:02:55 -0400727 for (port = rdma_start_port(device); port <= rdma_end_port(device); ++port) {
Ira Weiny77386132015-05-13 20:02:58 -0400728 for (i = 0; i < device->port_immutable[port].gid_tbl_len; ++i) {
Yosef Etigin5eb620c2007-05-14 07:26:51 +0300729 ret = ib_query_gid(device, port, i, &tmp_gid);
730 if (ret)
731 return ret;
732 if (!memcmp(&tmp_gid, gid, sizeof *gid)) {
733 *port_num = port;
734 if (index)
735 *index = i;
736 return 0;
737 }
738 }
739 }
740
741 return -ENOENT;
742}
743EXPORT_SYMBOL(ib_find_gid);
744
745/**
746 * ib_find_pkey - Returns the PKey table index where a specified
747 * PKey value occurs.
748 * @device: The device to query.
749 * @port_num: The port number of the device to search for the PKey.
750 * @pkey: The PKey value to search for.
751 * @index: The index into the PKey table where the PKey was found.
752 */
753int ib_find_pkey(struct ib_device *device,
754 u8 port_num, u16 pkey, u16 *index)
755{
756 int ret, i;
757 u16 tmp_pkey;
Jack Morgensteinff7166c2012-08-03 08:40:38 +0000758 int partial_ix = -1;
Yosef Etigin5eb620c2007-05-14 07:26:51 +0300759
Ira Weiny77386132015-05-13 20:02:58 -0400760 for (i = 0; i < device->port_immutable[port_num].pkey_tbl_len; ++i) {
Yosef Etigin5eb620c2007-05-14 07:26:51 +0300761 ret = ib_query_pkey(device, port_num, i, &tmp_pkey);
762 if (ret)
763 return ret;
Moni Shoua36026ec2007-07-23 10:07:42 +0300764 if ((pkey & 0x7fff) == (tmp_pkey & 0x7fff)) {
Jack Morgensteinff7166c2012-08-03 08:40:38 +0000765 /* if there is full-member pkey take it.*/
766 if (tmp_pkey & 0x8000) {
767 *index = i;
768 return 0;
769 }
770 if (partial_ix < 0)
771 partial_ix = i;
Yosef Etigin5eb620c2007-05-14 07:26:51 +0300772 }
773 }
774
Jack Morgensteinff7166c2012-08-03 08:40:38 +0000775 /*no full-member, if exists take the limited*/
776 if (partial_ix >= 0) {
777 *index = partial_ix;
778 return 0;
779 }
Yosef Etigin5eb620c2007-05-14 07:26:51 +0300780 return -ENOENT;
781}
782EXPORT_SYMBOL(ib_find_pkey);
783
Yotam Kenneth9268f722015-07-30 17:50:15 +0300784/**
785 * ib_get_net_dev_by_params() - Return the appropriate net_dev
786 * for a received CM request
787 * @dev: An RDMA device on which the request has been received.
788 * @port: Port number on the RDMA device.
789 * @pkey: The Pkey the request came on.
790 * @gid: A GID that the net_dev uses to communicate.
791 * @addr: Contains the IP address that the request specified as its
792 * destination.
793 */
794struct net_device *ib_get_net_dev_by_params(struct ib_device *dev,
795 u8 port,
796 u16 pkey,
797 const union ib_gid *gid,
798 const struct sockaddr *addr)
799{
800 struct net_device *net_dev = NULL;
801 struct ib_client_data *context;
802
803 if (!rdma_protocol_ib(dev, port))
804 return NULL;
805
806 down_read(&lists_rwsem);
807
808 list_for_each_entry(context, &dev->client_data_list, list) {
809 struct ib_client *client = context->client;
810
811 if (context->going_down)
812 continue;
813
814 if (client->get_net_dev_by_params) {
815 net_dev = client->get_net_dev_by_params(dev, port, pkey,
816 gid, addr,
817 context->data);
818 if (net_dev)
819 break;
820 }
821 }
822
823 up_read(&lists_rwsem);
824
825 return net_dev;
826}
827EXPORT_SYMBOL(ib_get_net_dev_by_params);
828
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829static int __init ib_core_init(void)
830{
831 int ret;
832
Tejun Heof0626712010-10-19 15:24:36 +0000833 ib_wq = alloc_workqueue("infiniband", 0, 0);
834 if (!ib_wq)
835 return -ENOMEM;
836
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837 ret = ib_sysfs_setup();
Nir Muchtarfd75c782011-05-20 11:46:10 -0700838 if (ret) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839 printk(KERN_WARNING "Couldn't create InfiniBand device class\n");
Nir Muchtarfd75c782011-05-20 11:46:10 -0700840 goto err;
841 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842
Roland Dreierb2cbae22011-05-20 11:46:11 -0700843 ret = ibnl_init();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844 if (ret) {
Roland Dreierb2cbae22011-05-20 11:46:11 -0700845 printk(KERN_WARNING "Couldn't init IB netlink interface\n");
Nir Muchtarfd75c782011-05-20 11:46:10 -0700846 goto err_sysfs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847 }
848
Roland Dreierb2cbae22011-05-20 11:46:11 -0700849 ret = ib_cache_setup();
850 if (ret) {
851 printk(KERN_WARNING "Couldn't set up InfiniBand P_Key/GID cache\n");
852 goto err_nl;
853 }
854
Nir Muchtarfd75c782011-05-20 11:46:10 -0700855 return 0;
856
Roland Dreierb2cbae22011-05-20 11:46:11 -0700857err_nl:
858 ibnl_cleanup();
859
Nir Muchtarfd75c782011-05-20 11:46:10 -0700860err_sysfs:
861 ib_sysfs_cleanup();
862
863err:
864 destroy_workqueue(ib_wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865 return ret;
866}
867
868static void __exit ib_core_cleanup(void)
869{
870 ib_cache_cleanup();
Roland Dreierb2cbae22011-05-20 11:46:11 -0700871 ibnl_cleanup();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872 ib_sysfs_cleanup();
Roland Dreierf7c6a7b2007-03-04 16:15:11 -0800873 /* Make sure that any pending umem accounting work is done. */
Tejun Heof0626712010-10-19 15:24:36 +0000874 destroy_workqueue(ib_wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875}
876
877module_init(ib_core_init);
878module_exit(ib_core_cleanup);