blob: 46a7a3febc12ee178d83d795c6b91faac5ef16c2 [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070041
42#include "core_priv.h"
43
44MODULE_AUTHOR("Roland Dreier");
45MODULE_DESCRIPTION("core kernel InfiniBand API");
46MODULE_LICENSE("Dual BSD/GPL");
47
48struct ib_client_data {
49 struct list_head list;
50 struct ib_client *client;
51 void * data;
52};
53
Tejun Heof0626712010-10-19 15:24:36 +000054struct workqueue_struct *ib_wq;
55EXPORT_SYMBOL_GPL(ib_wq);
56
Linus Torvalds1da177e2005-04-16 15:20:36 -070057static LIST_HEAD(device_list);
58static LIST_HEAD(client_list);
59
60/*
Ingo Molnar95ed6442006-01-13 14:51:39 -080061 * device_mutex protects access to both device_list and client_list.
Linus Torvalds1da177e2005-04-16 15:20:36 -070062 * There's no real point to using multiple locks or something fancier
63 * like an rwsem: we always access both lists, and we're always
64 * modifying one list or the other list. In any case this is not a
65 * hot path so there's no point in trying to optimize.
66 */
Ingo Molnar95ed6442006-01-13 14:51:39 -080067static DEFINE_MUTEX(device_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070068
69static int ib_device_check_mandatory(struct ib_device *device)
70{
71#define IB_MANDATORY_FUNC(x) { offsetof(struct ib_device, x), #x }
72 static const struct {
73 size_t offset;
74 char *name;
75 } mandatory_table[] = {
76 IB_MANDATORY_FUNC(query_device),
77 IB_MANDATORY_FUNC(query_port),
78 IB_MANDATORY_FUNC(query_pkey),
79 IB_MANDATORY_FUNC(query_gid),
80 IB_MANDATORY_FUNC(alloc_pd),
81 IB_MANDATORY_FUNC(dealloc_pd),
82 IB_MANDATORY_FUNC(create_ah),
83 IB_MANDATORY_FUNC(destroy_ah),
84 IB_MANDATORY_FUNC(create_qp),
85 IB_MANDATORY_FUNC(modify_qp),
86 IB_MANDATORY_FUNC(destroy_qp),
87 IB_MANDATORY_FUNC(post_send),
88 IB_MANDATORY_FUNC(post_recv),
89 IB_MANDATORY_FUNC(create_cq),
90 IB_MANDATORY_FUNC(destroy_cq),
91 IB_MANDATORY_FUNC(poll_cq),
92 IB_MANDATORY_FUNC(req_notify_cq),
93 IB_MANDATORY_FUNC(get_dma_mr),
94 IB_MANDATORY_FUNC(dereg_mr)
95 };
96 int i;
97
Ahmed S. Darwish9a6b0902007-02-06 18:07:25 +020098 for (i = 0; i < ARRAY_SIZE(mandatory_table); ++i) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070099 if (!*(void **) ((void *) device + mandatory_table[i].offset)) {
100 printk(KERN_WARNING "Device %s is missing mandatory function %s\n",
101 device->name, mandatory_table[i].name);
102 return -EINVAL;
103 }
104 }
105
106 return 0;
107}
108
109static struct ib_device *__ib_device_get_by_name(const char *name)
110{
111 struct ib_device *device;
112
113 list_for_each_entry(device, &device_list, core_list)
114 if (!strncmp(name, device->name, IB_DEVICE_NAME_MAX))
115 return device;
116
117 return NULL;
118}
119
120
121static int alloc_name(char *name)
122{
Roland Dreier65d470b2007-10-09 19:59:04 -0700123 unsigned long *inuse;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124 char buf[IB_DEVICE_NAME_MAX];
125 struct ib_device *device;
126 int i;
127
Roland Dreier65d470b2007-10-09 19:59:04 -0700128 inuse = (unsigned long *) get_zeroed_page(GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 if (!inuse)
130 return -ENOMEM;
131
132 list_for_each_entry(device, &device_list, core_list) {
133 if (!sscanf(device->name, name, &i))
134 continue;
135 if (i < 0 || i >= PAGE_SIZE * 8)
136 continue;
137 snprintf(buf, sizeof buf, name, i);
138 if (!strncmp(buf, device->name, IB_DEVICE_NAME_MAX))
139 set_bit(i, inuse);
140 }
141
142 i = find_first_zero_bit(inuse, PAGE_SIZE * 8);
143 free_page((unsigned long) inuse);
144 snprintf(buf, sizeof buf, name, i);
145
146 if (__ib_device_get_by_name(buf))
147 return -ENFILE;
148
149 strlcpy(name, buf, IB_DEVICE_NAME_MAX);
150 return 0;
151}
152
Yosef Etigin5eb620c2007-05-14 07:26:51 +0300153static int start_port(struct ib_device *device)
154{
155 return (device->node_type == RDMA_NODE_IB_SWITCH) ? 0 : 1;
156}
157
158
159static int end_port(struct ib_device *device)
160{
161 return (device->node_type == RDMA_NODE_IB_SWITCH) ?
162 0 : device->phys_port_cnt;
163}
164
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165/**
166 * ib_alloc_device - allocate an IB device struct
167 * @size:size of structure to allocate
168 *
169 * Low-level drivers should use ib_alloc_device() to allocate &struct
170 * ib_device. @size is the size of the structure to be allocated,
171 * including any private data used by the low-level driver.
172 * ib_dealloc_device() must be used to free structures allocated with
173 * ib_alloc_device().
174 */
175struct ib_device *ib_alloc_device(size_t size)
176{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 BUG_ON(size < sizeof (struct ib_device));
178
Roland Dreierde6eb662005-11-02 07:23:14 -0800179 return kzalloc(size, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180}
181EXPORT_SYMBOL(ib_alloc_device);
182
183/**
184 * ib_dealloc_device - free an IB device struct
185 * @device:structure to free
186 *
187 * Free a structure allocated with ib_alloc_device().
188 */
189void ib_dealloc_device(struct ib_device *device)
190{
191 if (device->reg_state == IB_DEV_UNINITIALIZED) {
192 kfree(device);
193 return;
194 }
195
196 BUG_ON(device->reg_state != IB_DEV_UNREGISTERED);
197
Roland Dreier9206dff2009-02-25 13:27:46 -0800198 kobject_put(&device->dev.kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199}
200EXPORT_SYMBOL(ib_dealloc_device);
201
202static int add_client_context(struct ib_device *device, struct ib_client *client)
203{
204 struct ib_client_data *context;
205 unsigned long flags;
206
207 context = kmalloc(sizeof *context, GFP_KERNEL);
208 if (!context) {
209 printk(KERN_WARNING "Couldn't allocate client context for %s/%s\n",
210 device->name, client->name);
211 return -ENOMEM;
212 }
213
214 context->client = client;
215 context->data = NULL;
216
217 spin_lock_irqsave(&device->client_data_lock, flags);
218 list_add(&context->list, &device->client_data_list);
219 spin_unlock_irqrestore(&device->client_data_lock, flags);
220
221 return 0;
222}
223
Yosef Etigin5eb620c2007-05-14 07:26:51 +0300224static int read_port_table_lengths(struct ib_device *device)
225{
226 struct ib_port_attr *tprops = NULL;
227 int num_ports, ret = -ENOMEM;
228 u8 port_index;
229
230 tprops = kmalloc(sizeof *tprops, GFP_KERNEL);
231 if (!tprops)
232 goto out;
233
234 num_ports = end_port(device) - start_port(device) + 1;
235
236 device->pkey_tbl_len = kmalloc(sizeof *device->pkey_tbl_len * num_ports,
237 GFP_KERNEL);
238 device->gid_tbl_len = kmalloc(sizeof *device->gid_tbl_len * num_ports,
239 GFP_KERNEL);
240 if (!device->pkey_tbl_len || !device->gid_tbl_len)
241 goto err;
242
243 for (port_index = 0; port_index < num_ports; ++port_index) {
244 ret = ib_query_port(device, port_index + start_port(device),
245 tprops);
246 if (ret)
247 goto err;
248 device->pkey_tbl_len[port_index] = tprops->pkey_tbl_len;
249 device->gid_tbl_len[port_index] = tprops->gid_tbl_len;
250 }
251
252 ret = 0;
253 goto out;
254
255err:
256 kfree(device->gid_tbl_len);
257 kfree(device->pkey_tbl_len);
258out:
259 kfree(tprops);
260 return ret;
261}
262
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263/**
264 * ib_register_device - Register an IB device with IB core
265 * @device:Device to register
266 *
267 * Low-level drivers use ib_register_device() to register their
268 * devices with the IB core. All registered clients will receive a
269 * callback for each device that is added. @device must be allocated
270 * with ib_alloc_device().
271 */
Ralph Campbell9a6edb62010-05-06 17:03:25 -0700272int ib_register_device(struct ib_device *device,
273 int (*port_callback)(struct ib_device *,
274 u8, struct kobject *))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275{
276 int ret;
277
Ingo Molnar95ed6442006-01-13 14:51:39 -0800278 mutex_lock(&device_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279
280 if (strchr(device->name, '%')) {
281 ret = alloc_name(device->name);
282 if (ret)
283 goto out;
284 }
285
286 if (ib_device_check_mandatory(device)) {
287 ret = -EINVAL;
288 goto out;
289 }
290
291 INIT_LIST_HEAD(&device->event_handler_list);
292 INIT_LIST_HEAD(&device->client_data_list);
293 spin_lock_init(&device->event_handler_lock);
294 spin_lock_init(&device->client_data_lock);
295
Yosef Etigin5eb620c2007-05-14 07:26:51 +0300296 ret = read_port_table_lengths(device);
297 if (ret) {
298 printk(KERN_WARNING "Couldn't create table lengths cache for device %s\n",
299 device->name);
300 goto out;
301 }
302
Ralph Campbell9a6edb62010-05-06 17:03:25 -0700303 ret = ib_device_register_sysfs(device, port_callback);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304 if (ret) {
305 printk(KERN_WARNING "Couldn't register device %s with driver model\n",
306 device->name);
Yosef Etigin5eb620c2007-05-14 07:26:51 +0300307 kfree(device->gid_tbl_len);
308 kfree(device->pkey_tbl_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 goto out;
310 }
311
312 list_add_tail(&device->core_list, &device_list);
313
314 device->reg_state = IB_DEV_REGISTERED;
315
316 {
317 struct ib_client *client;
318
319 list_for_each_entry(client, &client_list, list)
320 if (client->add && !add_client_context(device, client))
321 client->add(device);
322 }
323
324 out:
Ingo Molnar95ed6442006-01-13 14:51:39 -0800325 mutex_unlock(&device_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 return ret;
327}
328EXPORT_SYMBOL(ib_register_device);
329
330/**
331 * ib_unregister_device - Unregister an IB device
332 * @device:Device to unregister
333 *
334 * Unregister an IB device. All clients will receive a remove callback.
335 */
336void ib_unregister_device(struct ib_device *device)
337{
338 struct ib_client *client;
339 struct ib_client_data *context, *tmp;
340 unsigned long flags;
341
Ingo Molnar95ed6442006-01-13 14:51:39 -0800342 mutex_lock(&device_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343
344 list_for_each_entry_reverse(client, &client_list, list)
345 if (client->remove)
346 client->remove(device);
347
348 list_del(&device->core_list);
349
Yosef Etigin5eb620c2007-05-14 07:26:51 +0300350 kfree(device->gid_tbl_len);
351 kfree(device->pkey_tbl_len);
352
Ingo Molnar95ed6442006-01-13 14:51:39 -0800353 mutex_unlock(&device_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354
Roland Dreier9206dff2009-02-25 13:27:46 -0800355 ib_device_unregister_sysfs(device);
356
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 spin_lock_irqsave(&device->client_data_lock, flags);
358 list_for_each_entry_safe(context, tmp, &device->client_data_list, list)
359 kfree(context);
360 spin_unlock_irqrestore(&device->client_data_lock, flags);
361
362 device->reg_state = IB_DEV_UNREGISTERED;
363}
364EXPORT_SYMBOL(ib_unregister_device);
365
366/**
367 * ib_register_client - Register an IB client
368 * @client:Client to register
369 *
370 * Upper level users of the IB drivers can use ib_register_client() to
371 * register callbacks for IB device addition and removal. When an IB
372 * device is added, each registered client's add method will be called
373 * (in the order the clients were registered), and when a device is
374 * removed, each client's remove method will be called (in the reverse
375 * order that clients were registered). In addition, when
376 * ib_register_client() is called, the client will receive an add
377 * callback for all devices already registered.
378 */
379int ib_register_client(struct ib_client *client)
380{
381 struct ib_device *device;
382
Ingo Molnar95ed6442006-01-13 14:51:39 -0800383 mutex_lock(&device_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384
385 list_add_tail(&client->list, &client_list);
386 list_for_each_entry(device, &device_list, core_list)
387 if (client->add && !add_client_context(device, client))
388 client->add(device);
389
Ingo Molnar95ed6442006-01-13 14:51:39 -0800390 mutex_unlock(&device_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391
392 return 0;
393}
394EXPORT_SYMBOL(ib_register_client);
395
396/**
397 * ib_unregister_client - Unregister an IB client
398 * @client:Client to unregister
399 *
400 * Upper level users use ib_unregister_client() to remove their client
401 * registration. When ib_unregister_client() is called, the client
402 * will receive a remove callback for each IB device still registered.
403 */
404void ib_unregister_client(struct ib_client *client)
405{
406 struct ib_client_data *context, *tmp;
407 struct ib_device *device;
408 unsigned long flags;
409
Ingo Molnar95ed6442006-01-13 14:51:39 -0800410 mutex_lock(&device_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411
412 list_for_each_entry(device, &device_list, core_list) {
413 if (client->remove)
414 client->remove(device);
415
416 spin_lock_irqsave(&device->client_data_lock, flags);
417 list_for_each_entry_safe(context, tmp, &device->client_data_list, list)
418 if (context->client == client) {
419 list_del(&context->list);
420 kfree(context);
421 }
422 spin_unlock_irqrestore(&device->client_data_lock, flags);
423 }
424 list_del(&client->list);
425
Ingo Molnar95ed6442006-01-13 14:51:39 -0800426 mutex_unlock(&device_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427}
428EXPORT_SYMBOL(ib_unregister_client);
429
430/**
431 * ib_get_client_data - Get IB client context
432 * @device:Device to get context for
433 * @client:Client to get context for
434 *
435 * ib_get_client_data() returns client context set with
436 * ib_set_client_data().
437 */
438void *ib_get_client_data(struct ib_device *device, struct ib_client *client)
439{
440 struct ib_client_data *context;
441 void *ret = NULL;
442 unsigned long flags;
443
444 spin_lock_irqsave(&device->client_data_lock, flags);
445 list_for_each_entry(context, &device->client_data_list, list)
446 if (context->client == client) {
447 ret = context->data;
448 break;
449 }
450 spin_unlock_irqrestore(&device->client_data_lock, flags);
451
452 return ret;
453}
454EXPORT_SYMBOL(ib_get_client_data);
455
456/**
Krishna Kumar9cd330d2006-09-22 15:22:58 -0700457 * ib_set_client_data - Set IB client context
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 * @device:Device to set context for
459 * @client:Client to set context for
460 * @data:Context to set
461 *
462 * ib_set_client_data() sets client context that can be retrieved with
463 * ib_get_client_data().
464 */
465void ib_set_client_data(struct ib_device *device, struct ib_client *client,
466 void *data)
467{
468 struct ib_client_data *context;
469 unsigned long flags;
470
471 spin_lock_irqsave(&device->client_data_lock, flags);
472 list_for_each_entry(context, &device->client_data_list, list)
473 if (context->client == client) {
474 context->data = data;
475 goto out;
476 }
477
478 printk(KERN_WARNING "No client context found for %s/%s\n",
479 device->name, client->name);
480
481out:
482 spin_unlock_irqrestore(&device->client_data_lock, flags);
483}
484EXPORT_SYMBOL(ib_set_client_data);
485
486/**
487 * ib_register_event_handler - Register an IB event handler
488 * @event_handler:Handler to register
489 *
490 * ib_register_event_handler() registers an event handler that will be
491 * called back when asynchronous IB events occur (as defined in
492 * chapter 11 of the InfiniBand Architecture Specification). This
493 * callback may occur in interrupt context.
494 */
495int ib_register_event_handler (struct ib_event_handler *event_handler)
496{
497 unsigned long flags;
498
499 spin_lock_irqsave(&event_handler->device->event_handler_lock, flags);
500 list_add_tail(&event_handler->list,
501 &event_handler->device->event_handler_list);
502 spin_unlock_irqrestore(&event_handler->device->event_handler_lock, flags);
503
504 return 0;
505}
506EXPORT_SYMBOL(ib_register_event_handler);
507
508/**
509 * ib_unregister_event_handler - Unregister an event handler
510 * @event_handler:Handler to unregister
511 *
512 * Unregister an event handler registered with
513 * ib_register_event_handler().
514 */
515int ib_unregister_event_handler(struct ib_event_handler *event_handler)
516{
517 unsigned long flags;
518
519 spin_lock_irqsave(&event_handler->device->event_handler_lock, flags);
520 list_del(&event_handler->list);
521 spin_unlock_irqrestore(&event_handler->device->event_handler_lock, flags);
522
523 return 0;
524}
525EXPORT_SYMBOL(ib_unregister_event_handler);
526
527/**
528 * ib_dispatch_event - Dispatch an asynchronous event
529 * @event:Event to dispatch
530 *
531 * Low-level drivers must call ib_dispatch_event() to dispatch the
532 * event to all registered event handlers when an asynchronous event
533 * occurs.
534 */
535void ib_dispatch_event(struct ib_event *event)
536{
537 unsigned long flags;
538 struct ib_event_handler *handler;
539
540 spin_lock_irqsave(&event->device->event_handler_lock, flags);
541
542 list_for_each_entry(handler, &event->device->event_handler_list, list)
543 handler->handler(handler, event);
544
545 spin_unlock_irqrestore(&event->device->event_handler_lock, flags);
546}
547EXPORT_SYMBOL(ib_dispatch_event);
548
549/**
550 * ib_query_device - Query IB device attributes
551 * @device:Device to query
552 * @device_attr:Device attributes
553 *
554 * ib_query_device() returns the attributes of a device through the
555 * @device_attr pointer.
556 */
557int ib_query_device(struct ib_device *device,
558 struct ib_device_attr *device_attr)
559{
560 return device->query_device(device, device_attr);
561}
562EXPORT_SYMBOL(ib_query_device);
563
564/**
565 * ib_query_port - Query IB port attributes
566 * @device:Device to query
567 * @port_num:Port number to query
568 * @port_attr:Port attributes
569 *
570 * ib_query_port() returns the attributes of a port through the
571 * @port_attr pointer.
572 */
573int ib_query_port(struct ib_device *device,
574 u8 port_num,
575 struct ib_port_attr *port_attr)
576{
Roland Dreier1af4c432007-05-19 08:51:54 -0700577 if (port_num < start_port(device) || port_num > end_port(device))
Roland Dreier116c0072005-10-03 09:32:33 -0700578 return -EINVAL;
579
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580 return device->query_port(device, port_num, port_attr);
581}
582EXPORT_SYMBOL(ib_query_port);
583
584/**
585 * ib_query_gid - Get GID table entry
586 * @device:Device to query
587 * @port_num:Port number to query
588 * @index:GID table index to query
589 * @gid:Returned GID
590 *
591 * ib_query_gid() fetches the specified GID table entry.
592 */
593int ib_query_gid(struct ib_device *device,
594 u8 port_num, int index, union ib_gid *gid)
595{
596 return device->query_gid(device, port_num, index, gid);
597}
598EXPORT_SYMBOL(ib_query_gid);
599
600/**
601 * ib_query_pkey - Get P_Key table entry
602 * @device:Device to query
603 * @port_num:Port number to query
604 * @index:P_Key table index to query
605 * @pkey:Returned P_Key
606 *
607 * ib_query_pkey() fetches the specified P_Key table entry.
608 */
609int ib_query_pkey(struct ib_device *device,
610 u8 port_num, u16 index, u16 *pkey)
611{
612 return device->query_pkey(device, port_num, index, pkey);
613}
614EXPORT_SYMBOL(ib_query_pkey);
615
616/**
617 * ib_modify_device - Change IB device attributes
618 * @device:Device to modify
619 * @device_modify_mask:Mask of attributes to change
620 * @device_modify:New attribute values
621 *
622 * ib_modify_device() changes a device's attributes as specified by
623 * the @device_modify_mask and @device_modify structure.
624 */
625int ib_modify_device(struct ib_device *device,
626 int device_modify_mask,
627 struct ib_device_modify *device_modify)
628{
629 return device->modify_device(device, device_modify_mask,
630 device_modify);
631}
632EXPORT_SYMBOL(ib_modify_device);
633
634/**
635 * ib_modify_port - Modifies the attributes for the specified port.
636 * @device: The device to modify.
637 * @port_num: The number of the port to modify.
638 * @port_modify_mask: Mask used to specify which attributes of the port
639 * to change.
640 * @port_modify: New attribute values for the port.
641 *
642 * ib_modify_port() changes a port's attributes as specified by the
643 * @port_modify_mask and @port_modify structure.
644 */
645int ib_modify_port(struct ib_device *device,
646 u8 port_num, int port_modify_mask,
647 struct ib_port_modify *port_modify)
648{
Roland Dreier1af4c432007-05-19 08:51:54 -0700649 if (port_num < start_port(device) || port_num > end_port(device))
Roland Dreier116c0072005-10-03 09:32:33 -0700650 return -EINVAL;
651
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652 return device->modify_port(device, port_num, port_modify_mask,
653 port_modify);
654}
655EXPORT_SYMBOL(ib_modify_port);
656
Yosef Etigin5eb620c2007-05-14 07:26:51 +0300657/**
658 * ib_find_gid - Returns the port number and GID table index where
659 * a specified GID value occurs.
660 * @device: The device to query.
661 * @gid: The GID value to search for.
662 * @port_num: The port number of the device where the GID value was found.
663 * @index: The index into the GID table where the GID was found. This
664 * parameter may be NULL.
665 */
666int ib_find_gid(struct ib_device *device, union ib_gid *gid,
667 u8 *port_num, u16 *index)
668{
669 union ib_gid tmp_gid;
670 int ret, port, i;
671
672 for (port = start_port(device); port <= end_port(device); ++port) {
673 for (i = 0; i < device->gid_tbl_len[port - start_port(device)]; ++i) {
674 ret = ib_query_gid(device, port, i, &tmp_gid);
675 if (ret)
676 return ret;
677 if (!memcmp(&tmp_gid, gid, sizeof *gid)) {
678 *port_num = port;
679 if (index)
680 *index = i;
681 return 0;
682 }
683 }
684 }
685
686 return -ENOENT;
687}
688EXPORT_SYMBOL(ib_find_gid);
689
690/**
691 * ib_find_pkey - Returns the PKey table index where a specified
692 * PKey value occurs.
693 * @device: The device to query.
694 * @port_num: The port number of the device to search for the PKey.
695 * @pkey: The PKey value to search for.
696 * @index: The index into the PKey table where the PKey was found.
697 */
698int ib_find_pkey(struct ib_device *device,
699 u8 port_num, u16 pkey, u16 *index)
700{
701 int ret, i;
702 u16 tmp_pkey;
703
704 for (i = 0; i < device->pkey_tbl_len[port_num - start_port(device)]; ++i) {
705 ret = ib_query_pkey(device, port_num, i, &tmp_pkey);
706 if (ret)
707 return ret;
708
Moni Shoua36026ec2007-07-23 10:07:42 +0300709 if ((pkey & 0x7fff) == (tmp_pkey & 0x7fff)) {
Yosef Etigin5eb620c2007-05-14 07:26:51 +0300710 *index = i;
711 return 0;
712 }
713 }
714
715 return -ENOENT;
716}
717EXPORT_SYMBOL(ib_find_pkey);
718
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719static int __init ib_core_init(void)
720{
721 int ret;
722
Tejun Heof0626712010-10-19 15:24:36 +0000723 ib_wq = alloc_workqueue("infiniband", 0, 0);
724 if (!ib_wq)
725 return -ENOMEM;
726
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727 ret = ib_sysfs_setup();
Nir Muchtarfd75c782011-05-20 11:46:10 -0700728 if (ret) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 printk(KERN_WARNING "Couldn't create InfiniBand device class\n");
Nir Muchtarfd75c782011-05-20 11:46:10 -0700730 goto err;
731 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732
733 ret = ib_cache_setup();
734 if (ret) {
735 printk(KERN_WARNING "Couldn't set up InfiniBand P_Key/GID cache\n");
Nir Muchtarfd75c782011-05-20 11:46:10 -0700736 goto err_sysfs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737 }
738
Nir Muchtarfd75c782011-05-20 11:46:10 -0700739 return 0;
740
741err_sysfs:
742 ib_sysfs_cleanup();
743
744err:
745 destroy_workqueue(ib_wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746 return ret;
747}
748
749static void __exit ib_core_cleanup(void)
750{
751 ib_cache_cleanup();
752 ib_sysfs_cleanup();
Roland Dreierf7c6a7b2007-03-04 16:15:11 -0800753 /* Make sure that any pending umem accounting work is done. */
Tejun Heof0626712010-10-19 15:24:36 +0000754 destroy_workqueue(ib_wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755}
756
757module_init(ib_core_init);
758module_exit(ib_core_cleanup);