]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - drivers/infiniband/core/device.c
IB/core: added support to use rdma cgroup controller
[mirror_ubuntu-bionic-kernel.git] / drivers / infiniband / core / device.c
CommitLineData
1da177e4
LT
1/*
2 * Copyright (c) 2004 Topspin Communications. All rights reserved.
2a1d9b7f 3 * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved.
1da177e4
LT
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.
1da177e4
LT
32 */
33
34#include <linux/module.h>
35#include <linux/string.h>
36#include <linux/errno.h>
9a6b090c 37#include <linux/kernel.h>
1da177e4
LT
38#include <linux/slab.h>
39#include <linux/init.h>
95ed644f 40#include <linux/mutex.h>
9268f72d 41#include <linux/netdevice.h>
b2cbae2c 42#include <rdma/rdma_netlink.h>
03db3a2d
MB
43#include <rdma/ib_addr.h>
44#include <rdma/ib_cache.h>
1da177e4
LT
45
46#include "core_priv.h"
47
48MODULE_AUTHOR("Roland Dreier");
49MODULE_DESCRIPTION("core kernel InfiniBand API");
50MODULE_LICENSE("Dual BSD/GPL");
51
52struct ib_client_data {
53 struct list_head list;
54 struct ib_client *client;
55 void * data;
7c1eb45a
HE
56 /* The device or client is going down. Do not call client or device
57 * callbacks other than remove(). */
58 bool going_down;
1da177e4
LT
59};
60
14d3a3b2 61struct workqueue_struct *ib_comp_wq;
f0626710
TH
62struct workqueue_struct *ib_wq;
63EXPORT_SYMBOL_GPL(ib_wq);
64
5aa44bb9
HE
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. */
1da177e4
LT
68static LIST_HEAD(device_list);
69static LIST_HEAD(client_list);
70
71/*
5aa44bb9
HE
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.
7c1eb45a
HE
79 *
80 * lists_rwsem also protects access to the client data list.
1da177e4 81 */
95ed644f 82static DEFINE_MUTEX(device_mutex);
5aa44bb9
HE
83static DECLARE_RWSEM(lists_rwsem);
84
1da177e4
LT
85
86static 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),
7738613e
IW
111 IB_MANDATORY_FUNC(dereg_mr),
112 IB_MANDATORY_FUNC(get_port_immutable)
1da177e4
LT
113 };
114 int i;
115
9a6b090c 116 for (i = 0; i < ARRAY_SIZE(mandatory_table); ++i) {
1da177e4 117 if (!*(void **) ((void *) device + mandatory_table[i].offset)) {
aba25a3e
PP
118 pr_warn("Device %s is missing mandatory function %s\n",
119 device->name, mandatory_table[i].name);
1da177e4
LT
120 return -EINVAL;
121 }
122 }
123
124 return 0;
125}
126
127static 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
139static int alloc_name(char *name)
140{
65d470b3 141 unsigned long *inuse;
1da177e4
LT
142 char buf[IB_DEVICE_NAME_MAX];
143 struct ib_device *device;
144 int i;
145
65d470b3 146 inuse = (unsigned long *) get_zeroed_page(GFP_KERNEL);
1da177e4
LT
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
55aeed06
JG
171static void ib_device_release(struct device *device)
172{
173 struct ib_device *dev = container_of(device, struct ib_device, dev);
174
03db3a2d 175 ib_cache_release_one(dev);
55aeed06
JG
176 kfree(dev->port_immutable);
177 kfree(dev);
178}
179
180static 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
195static struct class ib_class = {
196 .name = "infiniband",
197 .dev_release = ib_device_release,
198 .dev_uevent = ib_device_uevent,
199};
200
1da177e4
LT
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 */
211struct ib_device *ib_alloc_device(size_t size)
212{
55aeed06
JG
213 struct ib_device *device;
214
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);
1da177e4 232
55aeed06 233 return device;
1da177e4
LT
234}
235EXPORT_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 */
243void ib_dealloc_device(struct ib_device *device)
244{
55aeed06
JG
245 WARN_ON(device->reg_state != IB_DEV_UNREGISTERED &&
246 device->reg_state != IB_DEV_UNINITIALIZED);
9206dff1 247 kobject_put(&device->dev.kobj);
1da177e4
LT
248}
249EXPORT_SYMBOL(ib_dealloc_device);
250
251static 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);
a0b3455f 257 if (!context)
1da177e4 258 return -ENOMEM;
1da177e4
LT
259
260 context->client = client;
261 context->data = NULL;
7c1eb45a 262 context->going_down = false;
1da177e4 263
7c1eb45a 264 down_write(&lists_rwsem);
1da177e4
LT
265 spin_lock_irqsave(&device->client_data_lock, flags);
266 list_add(&context->list, &device->client_data_list);
267 spin_unlock_irqrestore(&device->client_data_lock, flags);
7c1eb45a 268 up_write(&lists_rwsem);
1da177e4
LT
269
270 return 0;
271}
272
337877a4
IW
273static int verify_immutable(const struct ib_device *dev, u8 port)
274{
275 return WARN_ON(!rdma_cap_ib_mad(dev, port) &&
276 rdma_max_mad_size(dev, port) != 0);
277}
278
7738613e 279static int read_port_immutable(struct ib_device *device)
5eb620c8 280{
55aeed06 281 int ret;
7738613e
IW
282 u8 start_port = rdma_start_port(device);
283 u8 end_port = rdma_end_port(device);
284 u8 port;
285
286 /**
287 * device->port_immutable is indexed directly by the port number to make
288 * access to this data as efficient as possible.
289 *
290 * Therefore port_immutable is declared as a 1 based array with
291 * potential empty slots at the beginning.
292 */
293 device->port_immutable = kzalloc(sizeof(*device->port_immutable)
294 * (end_port + 1),
295 GFP_KERNEL);
296 if (!device->port_immutable)
55aeed06 297 return -ENOMEM;
5eb620c8 298
7738613e
IW
299 for (port = start_port; port <= end_port; ++port) {
300 ret = device->get_port_immutable(device, port,
301 &device->port_immutable[port]);
5eb620c8 302 if (ret)
55aeed06 303 return ret;
337877a4 304
55aeed06
JG
305 if (verify_immutable(device, port))
306 return -EINVAL;
5eb620c8 307 }
55aeed06 308 return 0;
5eb620c8
YE
309}
310
5fa76c20
IW
311void ib_get_device_fw_str(struct ib_device *dev, char *str, size_t str_len)
312{
313 if (dev->get_dev_fw_str)
314 dev->get_dev_fw_str(dev, str, str_len);
315 else
316 str[0] = '\0';
317}
318EXPORT_SYMBOL(ib_get_device_fw_str);
319
1da177e4
LT
320/**
321 * ib_register_device - Register an IB device with IB core
322 * @device:Device to register
323 *
324 * Low-level drivers use ib_register_device() to register their
325 * devices with the IB core. All registered clients will receive a
326 * callback for each device that is added. @device must be allocated
327 * with ib_alloc_device().
328 */
9a6edb60
RC
329int ib_register_device(struct ib_device *device,
330 int (*port_callback)(struct ib_device *,
331 u8, struct kobject *))
1da177e4
LT
332{
333 int ret;
b8071ad8 334 struct ib_client *client;
3e153a93 335 struct ib_udata uhw = {.outlen = 0, .inlen = 0};
1da177e4 336
95ed644f 337 mutex_lock(&device_mutex);
1da177e4
LT
338
339 if (strchr(device->name, '%')) {
340 ret = alloc_name(device->name);
341 if (ret)
342 goto out;
343 }
344
345 if (ib_device_check_mandatory(device)) {
346 ret = -EINVAL;
347 goto out;
348 }
349
7738613e 350 ret = read_port_immutable(device);
5eb620c8 351 if (ret) {
aba25a3e
PP
352 pr_warn("Couldn't create per port immutable data %s\n",
353 device->name);
5eb620c8
YE
354 goto out;
355 }
356
03db3a2d
MB
357 ret = ib_cache_setup_one(device);
358 if (ret) {
aba25a3e 359 pr_warn("Couldn't set up InfiniBand P_Key/GID cache\n");
03db3a2d
MB
360 goto out;
361 }
362
43579b5f
PP
363 ret = ib_device_register_rdmacg(device);
364 if (ret) {
365 pr_warn("Couldn't register device with rdma cgroup\n");
366 ib_cache_cleanup_one(device);
367 goto out;
368 }
369
3e153a93
IW
370 memset(&device->attrs, 0, sizeof(device->attrs));
371 ret = device->query_device(device, &device->attrs, &uhw);
372 if (ret) {
aba25a3e 373 pr_warn("Couldn't query the device attributes\n");
43579b5f 374 ib_device_unregister_rdmacg(device);
5adebafb 375 ib_cache_cleanup_one(device);
3e153a93
IW
376 goto out;
377 }
378
9a6edb60 379 ret = ib_device_register_sysfs(device, port_callback);
1da177e4 380 if (ret) {
aba25a3e
PP
381 pr_warn("Couldn't register device %s with driver model\n",
382 device->name);
43579b5f 383 ib_device_unregister_rdmacg(device);
03db3a2d 384 ib_cache_cleanup_one(device);
1da177e4
LT
385 goto out;
386 }
387
1da177e4
LT
388 device->reg_state = IB_DEV_REGISTERED;
389
b8071ad8
DL
390 list_for_each_entry(client, &client_list, list)
391 if (client->add && !add_client_context(device, client))
392 client->add(device);
1da177e4 393
5aa44bb9
HE
394 down_write(&lists_rwsem);
395 list_add_tail(&device->core_list, &device_list);
396 up_write(&lists_rwsem);
397out:
95ed644f 398 mutex_unlock(&device_mutex);
1da177e4
LT
399 return ret;
400}
401EXPORT_SYMBOL(ib_register_device);
402
403/**
404 * ib_unregister_device - Unregister an IB device
405 * @device:Device to unregister
406 *
407 * Unregister an IB device. All clients will receive a remove callback.
408 */
409void ib_unregister_device(struct ib_device *device)
410{
1da177e4
LT
411 struct ib_client_data *context, *tmp;
412 unsigned long flags;
413
95ed644f 414 mutex_lock(&device_mutex);
1da177e4 415
5aa44bb9
HE
416 down_write(&lists_rwsem);
417 list_del(&device->core_list);
7c1eb45a
HE
418 spin_lock_irqsave(&device->client_data_lock, flags);
419 list_for_each_entry_safe(context, tmp, &device->client_data_list, list)
420 context->going_down = true;
421 spin_unlock_irqrestore(&device->client_data_lock, flags);
422 downgrade_write(&lists_rwsem);
5aa44bb9 423
7c1eb45a
HE
424 list_for_each_entry_safe(context, tmp, &device->client_data_list,
425 list) {
426 if (context->client->remove)
427 context->client->remove(device, context->data);
428 }
429 up_read(&lists_rwsem);
1da177e4 430
95ed644f 431 mutex_unlock(&device_mutex);
1da177e4 432
43579b5f 433 ib_device_unregister_rdmacg(device);
9206dff1 434 ib_device_unregister_sysfs(device);
03db3a2d 435 ib_cache_cleanup_one(device);
9206dff1 436
7c1eb45a 437 down_write(&lists_rwsem);
1da177e4
LT
438 spin_lock_irqsave(&device->client_data_lock, flags);
439 list_for_each_entry_safe(context, tmp, &device->client_data_list, list)
440 kfree(context);
441 spin_unlock_irqrestore(&device->client_data_lock, flags);
7c1eb45a 442 up_write(&lists_rwsem);
1da177e4
LT
443
444 device->reg_state = IB_DEV_UNREGISTERED;
445}
446EXPORT_SYMBOL(ib_unregister_device);
447
448/**
449 * ib_register_client - Register an IB client
450 * @client:Client to register
451 *
452 * Upper level users of the IB drivers can use ib_register_client() to
453 * register callbacks for IB device addition and removal. When an IB
454 * device is added, each registered client's add method will be called
455 * (in the order the clients were registered), and when a device is
456 * removed, each client's remove method will be called (in the reverse
457 * order that clients were registered). In addition, when
458 * ib_register_client() is called, the client will receive an add
459 * callback for all devices already registered.
460 */
461int ib_register_client(struct ib_client *client)
462{
463 struct ib_device *device;
464
95ed644f 465 mutex_lock(&device_mutex);
1da177e4 466
1da177e4
LT
467 list_for_each_entry(device, &device_list, core_list)
468 if (client->add && !add_client_context(device, client))
469 client->add(device);
470
5aa44bb9
HE
471 down_write(&lists_rwsem);
472 list_add_tail(&client->list, &client_list);
473 up_write(&lists_rwsem);
474
95ed644f 475 mutex_unlock(&device_mutex);
1da177e4
LT
476
477 return 0;
478}
479EXPORT_SYMBOL(ib_register_client);
480
481/**
482 * ib_unregister_client - Unregister an IB client
483 * @client:Client to unregister
484 *
485 * Upper level users use ib_unregister_client() to remove their client
486 * registration. When ib_unregister_client() is called, the client
487 * will receive a remove callback for each IB device still registered.
488 */
489void ib_unregister_client(struct ib_client *client)
490{
491 struct ib_client_data *context, *tmp;
492 struct ib_device *device;
493 unsigned long flags;
494
95ed644f 495 mutex_lock(&device_mutex);
1da177e4 496
5aa44bb9
HE
497 down_write(&lists_rwsem);
498 list_del(&client->list);
499 up_write(&lists_rwsem);
500
1da177e4 501 list_for_each_entry(device, &device_list, core_list) {
7c1eb45a 502 struct ib_client_data *found_context = NULL;
1da177e4 503
7c1eb45a 504 down_write(&lists_rwsem);
1da177e4
LT
505 spin_lock_irqsave(&device->client_data_lock, flags);
506 list_for_each_entry_safe(context, tmp, &device->client_data_list, list)
507 if (context->client == client) {
7c1eb45a
HE
508 context->going_down = true;
509 found_context = context;
510 break;
1da177e4
LT
511 }
512 spin_unlock_irqrestore(&device->client_data_lock, flags);
7c1eb45a
HE
513 up_write(&lists_rwsem);
514
515 if (client->remove)
516 client->remove(device, found_context ?
517 found_context->data : NULL);
518
519 if (!found_context) {
520 pr_warn("No client context found for %s/%s\n",
521 device->name, client->name);
522 continue;
523 }
524
525 down_write(&lists_rwsem);
526 spin_lock_irqsave(&device->client_data_lock, flags);
527 list_del(&found_context->list);
528 kfree(found_context);
529 spin_unlock_irqrestore(&device->client_data_lock, flags);
530 up_write(&lists_rwsem);
1da177e4 531 }
1da177e4 532
95ed644f 533 mutex_unlock(&device_mutex);
1da177e4
LT
534}
535EXPORT_SYMBOL(ib_unregister_client);
536
537/**
538 * ib_get_client_data - Get IB client context
539 * @device:Device to get context for
540 * @client:Client to get context for
541 *
542 * ib_get_client_data() returns client context set with
543 * ib_set_client_data().
544 */
545void *ib_get_client_data(struct ib_device *device, struct ib_client *client)
546{
547 struct ib_client_data *context;
548 void *ret = NULL;
549 unsigned long flags;
550
551 spin_lock_irqsave(&device->client_data_lock, flags);
552 list_for_each_entry(context, &device->client_data_list, list)
553 if (context->client == client) {
554 ret = context->data;
555 break;
556 }
557 spin_unlock_irqrestore(&device->client_data_lock, flags);
558
559 return ret;
560}
561EXPORT_SYMBOL(ib_get_client_data);
562
563/**
9cd330d3 564 * ib_set_client_data - Set IB client context
1da177e4
LT
565 * @device:Device to set context for
566 * @client:Client to set context for
567 * @data:Context to set
568 *
569 * ib_set_client_data() sets client context that can be retrieved with
570 * ib_get_client_data().
571 */
572void ib_set_client_data(struct ib_device *device, struct ib_client *client,
573 void *data)
574{
575 struct ib_client_data *context;
576 unsigned long flags;
577
578 spin_lock_irqsave(&device->client_data_lock, flags);
579 list_for_each_entry(context, &device->client_data_list, list)
580 if (context->client == client) {
581 context->data = data;
582 goto out;
583 }
584
aba25a3e
PP
585 pr_warn("No client context found for %s/%s\n",
586 device->name, client->name);
1da177e4
LT
587
588out:
589 spin_unlock_irqrestore(&device->client_data_lock, flags);
590}
591EXPORT_SYMBOL(ib_set_client_data);
592
593/**
594 * ib_register_event_handler - Register an IB event handler
595 * @event_handler:Handler to register
596 *
597 * ib_register_event_handler() registers an event handler that will be
598 * called back when asynchronous IB events occur (as defined in
599 * chapter 11 of the InfiniBand Architecture Specification). This
600 * callback may occur in interrupt context.
601 */
602int ib_register_event_handler (struct ib_event_handler *event_handler)
603{
604 unsigned long flags;
605
606 spin_lock_irqsave(&event_handler->device->event_handler_lock, flags);
607 list_add_tail(&event_handler->list,
608 &event_handler->device->event_handler_list);
609 spin_unlock_irqrestore(&event_handler->device->event_handler_lock, flags);
610
611 return 0;
612}
613EXPORT_SYMBOL(ib_register_event_handler);
614
615/**
616 * ib_unregister_event_handler - Unregister an event handler
617 * @event_handler:Handler to unregister
618 *
619 * Unregister an event handler registered with
620 * ib_register_event_handler().
621 */
622int ib_unregister_event_handler(struct ib_event_handler *event_handler)
623{
624 unsigned long flags;
625
626 spin_lock_irqsave(&event_handler->device->event_handler_lock, flags);
627 list_del(&event_handler->list);
628 spin_unlock_irqrestore(&event_handler->device->event_handler_lock, flags);
629
630 return 0;
631}
632EXPORT_SYMBOL(ib_unregister_event_handler);
633
634/**
635 * ib_dispatch_event - Dispatch an asynchronous event
636 * @event:Event to dispatch
637 *
638 * Low-level drivers must call ib_dispatch_event() to dispatch the
639 * event to all registered event handlers when an asynchronous event
640 * occurs.
641 */
642void ib_dispatch_event(struct ib_event *event)
643{
644 unsigned long flags;
645 struct ib_event_handler *handler;
646
647 spin_lock_irqsave(&event->device->event_handler_lock, flags);
648
649 list_for_each_entry(handler, &event->device->event_handler_list, list)
650 handler->handler(handler, event);
651
652 spin_unlock_irqrestore(&event->device->event_handler_lock, flags);
653}
654EXPORT_SYMBOL(ib_dispatch_event);
655
1da177e4
LT
656/**
657 * ib_query_port - Query IB port attributes
658 * @device:Device to query
659 * @port_num:Port number to query
660 * @port_attr:Port attributes
661 *
662 * ib_query_port() returns the attributes of a port through the
663 * @port_attr pointer.
664 */
665int ib_query_port(struct ib_device *device,
666 u8 port_num,
667 struct ib_port_attr *port_attr)
668{
fad61ad4
EC
669 union ib_gid gid;
670 int err;
671
0cf18d77 672 if (port_num < rdma_start_port(device) || port_num > rdma_end_port(device))
116c0074
RD
673 return -EINVAL;
674
fad61ad4
EC
675 memset(port_attr, 0, sizeof(*port_attr));
676 err = device->query_port(device, port_num, port_attr);
677 if (err || port_attr->subnet_prefix)
678 return err;
679
d7012467
EC
680 if (rdma_port_get_link_layer(device, port_num) != IB_LINK_LAYER_INFINIBAND)
681 return 0;
682
fad61ad4
EC
683 err = ib_query_gid(device, port_num, 0, &gid, NULL);
684 if (err)
685 return err;
686
687 port_attr->subnet_prefix = be64_to_cpu(gid.global.subnet_prefix);
688 return 0;
1da177e4
LT
689}
690EXPORT_SYMBOL(ib_query_port);
691
692/**
693 * ib_query_gid - Get GID table entry
694 * @device:Device to query
695 * @port_num:Port number to query
696 * @index:GID table index to query
697 * @gid:Returned GID
55ee3ab2
MB
698 * @attr: Returned GID attributes related to this GID index (only in RoCE).
699 * NULL means ignore.
1da177e4
LT
700 *
701 * ib_query_gid() fetches the specified GID table entry.
702 */
703int ib_query_gid(struct ib_device *device,
55ee3ab2
MB
704 u8 port_num, int index, union ib_gid *gid,
705 struct ib_gid_attr *attr)
1da177e4 706{
03db3a2d 707 if (rdma_cap_roce_gid_table(device, port_num))
55ee3ab2
MB
708 return ib_get_cached_gid(device, port_num, index, gid, attr);
709
710 if (attr)
711 return -EINVAL;
03db3a2d 712
1da177e4
LT
713 return device->query_gid(device, port_num, index, gid);
714}
715EXPORT_SYMBOL(ib_query_gid);
716
03db3a2d
MB
717/**
718 * ib_enum_roce_netdev - enumerate all RoCE ports
719 * @ib_dev : IB device we want to query
720 * @filter: Should we call the callback?
721 * @filter_cookie: Cookie passed to filter
722 * @cb: Callback to call for each found RoCE ports
723 * @cookie: Cookie passed back to the callback
724 *
725 * Enumerates all of the physical RoCE ports of ib_dev
726 * which are related to netdevice and calls callback() on each
727 * device for which filter() function returns non zero.
728 */
729void ib_enum_roce_netdev(struct ib_device *ib_dev,
730 roce_netdev_filter filter,
731 void *filter_cookie,
732 roce_netdev_callback cb,
733 void *cookie)
734{
735 u8 port;
736
737 for (port = rdma_start_port(ib_dev); port <= rdma_end_port(ib_dev);
738 port++)
739 if (rdma_protocol_roce(ib_dev, port)) {
740 struct net_device *idev = NULL;
741
742 if (ib_dev->get_netdev)
743 idev = ib_dev->get_netdev(ib_dev, port);
744
745 if (idev &&
746 idev->reg_state >= NETREG_UNREGISTERED) {
747 dev_put(idev);
748 idev = NULL;
749 }
750
751 if (filter(ib_dev, port, idev, filter_cookie))
752 cb(ib_dev, port, idev, cookie);
753
754 if (idev)
755 dev_put(idev);
756 }
757}
758
759/**
760 * ib_enum_all_roce_netdevs - enumerate all RoCE devices
761 * @filter: Should we call the callback?
762 * @filter_cookie: Cookie passed to filter
763 * @cb: Callback to call for each found RoCE ports
764 * @cookie: Cookie passed back to the callback
765 *
766 * Enumerates all RoCE devices' physical ports which are related
767 * to netdevices and calls callback() on each device for which
768 * filter() function returns non zero.
769 */
770void ib_enum_all_roce_netdevs(roce_netdev_filter filter,
771 void *filter_cookie,
772 roce_netdev_callback cb,
773 void *cookie)
774{
775 struct ib_device *dev;
776
777 down_read(&lists_rwsem);
778 list_for_each_entry(dev, &device_list, core_list)
779 ib_enum_roce_netdev(dev, filter, filter_cookie, cb, cookie);
780 up_read(&lists_rwsem);
781}
782
1da177e4
LT
783/**
784 * ib_query_pkey - Get P_Key table entry
785 * @device:Device to query
786 * @port_num:Port number to query
787 * @index:P_Key table index to query
788 * @pkey:Returned P_Key
789 *
790 * ib_query_pkey() fetches the specified P_Key table entry.
791 */
792int ib_query_pkey(struct ib_device *device,
793 u8 port_num, u16 index, u16 *pkey)
794{
795 return device->query_pkey(device, port_num, index, pkey);
796}
797EXPORT_SYMBOL(ib_query_pkey);
798
799/**
800 * ib_modify_device - Change IB device attributes
801 * @device:Device to modify
802 * @device_modify_mask:Mask of attributes to change
803 * @device_modify:New attribute values
804 *
805 * ib_modify_device() changes a device's attributes as specified by
806 * the @device_modify_mask and @device_modify structure.
807 */
808int ib_modify_device(struct ib_device *device,
809 int device_modify_mask,
810 struct ib_device_modify *device_modify)
811{
10e1b54b
BVA
812 if (!device->modify_device)
813 return -ENOSYS;
814
1da177e4
LT
815 return device->modify_device(device, device_modify_mask,
816 device_modify);
817}
818EXPORT_SYMBOL(ib_modify_device);
819
820/**
821 * ib_modify_port - Modifies the attributes for the specified port.
822 * @device: The device to modify.
823 * @port_num: The number of the port to modify.
824 * @port_modify_mask: Mask used to specify which attributes of the port
825 * to change.
826 * @port_modify: New attribute values for the port.
827 *
828 * ib_modify_port() changes a port's attributes as specified by the
829 * @port_modify_mask and @port_modify structure.
830 */
831int ib_modify_port(struct ib_device *device,
832 u8 port_num, int port_modify_mask,
833 struct ib_port_modify *port_modify)
834{
10e1b54b
BVA
835 if (!device->modify_port)
836 return -ENOSYS;
837
0cf18d77 838 if (port_num < rdma_start_port(device) || port_num > rdma_end_port(device))
116c0074
RD
839 return -EINVAL;
840
1da177e4
LT
841 return device->modify_port(device, port_num, port_modify_mask,
842 port_modify);
843}
844EXPORT_SYMBOL(ib_modify_port);
845
5eb620c8
YE
846/**
847 * ib_find_gid - Returns the port number and GID table index where
848 * a specified GID value occurs.
849 * @device: The device to query.
850 * @gid: The GID value to search for.
b39ffa1d 851 * @gid_type: Type of GID.
55ee3ab2 852 * @ndev: The ndev related to the GID to search for.
5eb620c8
YE
853 * @port_num: The port number of the device where the GID value was found.
854 * @index: The index into the GID table where the GID was found. This
855 * parameter may be NULL.
856 */
857int ib_find_gid(struct ib_device *device, union ib_gid *gid,
b39ffa1d
MB
858 enum ib_gid_type gid_type, struct net_device *ndev,
859 u8 *port_num, u16 *index)
5eb620c8
YE
860{
861 union ib_gid tmp_gid;
862 int ret, port, i;
863
0cf18d77 864 for (port = rdma_start_port(device); port <= rdma_end_port(device); ++port) {
03db3a2d 865 if (rdma_cap_roce_gid_table(device, port)) {
b39ffa1d 866 if (!ib_find_cached_gid_by_port(device, gid, gid_type, port,
d300ec52 867 ndev, index)) {
03db3a2d
MB
868 *port_num = port;
869 return 0;
98d25afa 870 }
03db3a2d
MB
871 }
872
b39ffa1d
MB
873 if (gid_type != IB_GID_TYPE_IB)
874 continue;
875
7738613e 876 for (i = 0; i < device->port_immutable[port].gid_tbl_len; ++i) {
55ee3ab2 877 ret = ib_query_gid(device, port, i, &tmp_gid, NULL);
5eb620c8
YE
878 if (ret)
879 return ret;
880 if (!memcmp(&tmp_gid, gid, sizeof *gid)) {
881 *port_num = port;
882 if (index)
883 *index = i;
884 return 0;
885 }
886 }
887 }
888
889 return -ENOENT;
890}
891EXPORT_SYMBOL(ib_find_gid);
892
893/**
894 * ib_find_pkey - Returns the PKey table index where a specified
895 * PKey value occurs.
896 * @device: The device to query.
897 * @port_num: The port number of the device to search for the PKey.
898 * @pkey: The PKey value to search for.
899 * @index: The index into the PKey table where the PKey was found.
900 */
901int ib_find_pkey(struct ib_device *device,
902 u8 port_num, u16 pkey, u16 *index)
903{
904 int ret, i;
905 u16 tmp_pkey;
ff7166c4 906 int partial_ix = -1;
5eb620c8 907
7738613e 908 for (i = 0; i < device->port_immutable[port_num].pkey_tbl_len; ++i) {
5eb620c8
YE
909 ret = ib_query_pkey(device, port_num, i, &tmp_pkey);
910 if (ret)
911 return ret;
36026ecc 912 if ((pkey & 0x7fff) == (tmp_pkey & 0x7fff)) {
ff7166c4
JM
913 /* if there is full-member pkey take it.*/
914 if (tmp_pkey & 0x8000) {
915 *index = i;
916 return 0;
917 }
918 if (partial_ix < 0)
919 partial_ix = i;
5eb620c8
YE
920 }
921 }
922
ff7166c4
JM
923 /*no full-member, if exists take the limited*/
924 if (partial_ix >= 0) {
925 *index = partial_ix;
926 return 0;
927 }
5eb620c8
YE
928 return -ENOENT;
929}
930EXPORT_SYMBOL(ib_find_pkey);
931
9268f72d
YK
932/**
933 * ib_get_net_dev_by_params() - Return the appropriate net_dev
934 * for a received CM request
935 * @dev: An RDMA device on which the request has been received.
936 * @port: Port number on the RDMA device.
937 * @pkey: The Pkey the request came on.
938 * @gid: A GID that the net_dev uses to communicate.
939 * @addr: Contains the IP address that the request specified as its
940 * destination.
941 */
942struct net_device *ib_get_net_dev_by_params(struct ib_device *dev,
943 u8 port,
944 u16 pkey,
945 const union ib_gid *gid,
946 const struct sockaddr *addr)
947{
948 struct net_device *net_dev = NULL;
949 struct ib_client_data *context;
950
951 if (!rdma_protocol_ib(dev, port))
952 return NULL;
953
954 down_read(&lists_rwsem);
955
956 list_for_each_entry(context, &dev->client_data_list, list) {
957 struct ib_client *client = context->client;
958
959 if (context->going_down)
960 continue;
961
962 if (client->get_net_dev_by_params) {
963 net_dev = client->get_net_dev_by_params(dev, port, pkey,
964 gid, addr,
965 context->data);
966 if (net_dev)
967 break;
968 }
969 }
970
971 up_read(&lists_rwsem);
972
973 return net_dev;
974}
975EXPORT_SYMBOL(ib_get_net_dev_by_params);
976
735c631a
MB
977static struct ibnl_client_cbs ibnl_ls_cb_table[] = {
978 [RDMA_NL_LS_OP_RESOLVE] = {
979 .dump = ib_nl_handle_resolve_resp,
980 .module = THIS_MODULE },
981 [RDMA_NL_LS_OP_SET_TIMEOUT] = {
982 .dump = ib_nl_handle_set_timeout,
983 .module = THIS_MODULE },
ae43f828
MB
984 [RDMA_NL_LS_OP_IP_RESOLVE] = {
985 .dump = ib_nl_handle_ip_res_resp,
986 .module = THIS_MODULE },
735c631a
MB
987};
988
989static int ib_add_ibnl_clients(void)
990{
991 return ibnl_add_client(RDMA_NL_LS, ARRAY_SIZE(ibnl_ls_cb_table),
992 ibnl_ls_cb_table);
993}
994
995static void ib_remove_ibnl_clients(void)
996{
997 ibnl_remove_client(RDMA_NL_LS);
998}
999
1da177e4
LT
1000static int __init ib_core_init(void)
1001{
1002 int ret;
1003
f0626710
TH
1004 ib_wq = alloc_workqueue("infiniband", 0, 0);
1005 if (!ib_wq)
1006 return -ENOMEM;
1007
14d3a3b2
CH
1008 ib_comp_wq = alloc_workqueue("ib-comp-wq",
1009 WQ_UNBOUND | WQ_HIGHPRI | WQ_MEM_RECLAIM,
1010 WQ_UNBOUND_MAX_ACTIVE);
1011 if (!ib_comp_wq) {
1012 ret = -ENOMEM;
1013 goto err;
1014 }
1015
55aeed06 1016 ret = class_register(&ib_class);
fd75c789 1017 if (ret) {
aba25a3e 1018 pr_warn("Couldn't create InfiniBand device class\n");
14d3a3b2 1019 goto err_comp;
fd75c789 1020 }
1da177e4 1021
b2cbae2c
RD
1022 ret = ibnl_init();
1023 if (ret) {
aba25a3e 1024 pr_warn("Couldn't init IB netlink interface\n");
b2cbae2c
RD
1025 goto err_sysfs;
1026 }
1027
e3f20f02
LR
1028 ret = addr_init();
1029 if (ret) {
1030 pr_warn("Could't init IB address resolution\n");
1031 goto err_ibnl;
1032 }
1033
4c2cb422
MB
1034 ret = ib_mad_init();
1035 if (ret) {
1036 pr_warn("Couldn't init IB MAD\n");
1037 goto err_addr;
1038 }
1039
c2e49c92
MB
1040 ret = ib_sa_init();
1041 if (ret) {
1042 pr_warn("Couldn't init SA\n");
1043 goto err_mad;
1044 }
1045
da1f857b
DC
1046 ret = ib_add_ibnl_clients();
1047 if (ret) {
735c631a
MB
1048 pr_warn("Couldn't register ibnl clients\n");
1049 goto err_sa;
1050 }
1051
03db3a2d 1052 ib_cache_setup();
1da177e4 1053
fd75c789
NM
1054 return 0;
1055
735c631a
MB
1056err_sa:
1057 ib_sa_cleanup();
c2e49c92
MB
1058err_mad:
1059 ib_mad_cleanup();
4c2cb422
MB
1060err_addr:
1061 addr_cleanup();
e3f20f02
LR
1062err_ibnl:
1063 ibnl_cleanup();
fd75c789 1064err_sysfs:
55aeed06 1065 class_unregister(&ib_class);
14d3a3b2
CH
1066err_comp:
1067 destroy_workqueue(ib_comp_wq);
fd75c789
NM
1068err:
1069 destroy_workqueue(ib_wq);
1da177e4
LT
1070 return ret;
1071}
1072
1073static void __exit ib_core_cleanup(void)
1074{
1075 ib_cache_cleanup();
735c631a 1076 ib_remove_ibnl_clients();
c2e49c92 1077 ib_sa_cleanup();
4c2cb422 1078 ib_mad_cleanup();
e3f20f02 1079 addr_cleanup();
b2cbae2c 1080 ibnl_cleanup();
55aeed06 1081 class_unregister(&ib_class);
14d3a3b2 1082 destroy_workqueue(ib_comp_wq);
f7c6a7b5 1083 /* Make sure that any pending umem accounting work is done. */
f0626710 1084 destroy_workqueue(ib_wq);
1da177e4
LT
1085}
1086
1087module_init(ib_core_init);
1088module_exit(ib_core_cleanup);