xref: /trueos/sys/ofed/drivers/infiniband/core/device.c (revision 7a1ab70b9590c4c122be3d913b579be45424f95a)
1 /*
2  * Copyright (c) 2004 Topspin Communications.  All rights reserved.
3  * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved.
4  *
5  * This software is available to you under a choice of one of two
6  * licenses.  You may choose to be licensed under the terms of the GNU
7  * General Public License (GPL) Version 2, available from the file
8  * COPYING in the main directory of this source tree, or the
9  * OpenIB.org BSD license below:
10  *
11  *     Redistribution and use in source and binary forms, with or
12  *     without modification, are permitted provided that the following
13  *     conditions are met:
14  *
15  *      - Redistributions of source code must retain the above
16  *        copyright notice, this list of conditions and the following
17  *        disclaimer.
18  *
19  *      - Redistributions in binary form must reproduce the above
20  *        copyright notice, this list of conditions and the following
21  *        disclaimer in the documentation and/or other materials
22  *        provided with the distribution.
23  *
24  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
25  * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
26  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
27  * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
28  * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
29  * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
30  * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
31  * SOFTWARE.
32  */
33 
34 #include <linux/module.h>
35 #include <linux/string.h>
36 #include <linux/errno.h>
37 #include <linux/kernel.h>
38 #include <linux/slab.h>
39 #include <linux/mutex.h>
40 #include <linux/workqueue.h>
41 
42 #include "core_priv.h"
43 
44 MODULE_AUTHOR("Roland Dreier");
45 MODULE_DESCRIPTION("core kernel InfiniBand API");
46 MODULE_LICENSE("Dual BSD/GPL");
47 
48 #ifdef __ia64__
49 /* workaround for a bug in hp chipset that would cause kernel
50    panic when dma resources are exhaused */
51 int dma_map_sg_hp_wa = 0;
52 #endif
53 
54 struct ib_client_data {
55 	struct list_head  list;
56 	struct ib_client *client;
57 	void *            data;
58 };
59 
60 static LIST_HEAD(device_list);
61 static LIST_HEAD(client_list);
62 
63 /*
64  * device_mutex protects access to both device_list and client_list.
65  * There's no real point to using multiple locks or something fancier
66  * like an rwsem: we always access both lists, and we're always
67  * modifying one list or the other list.  In any case this is not a
68  * hot path so there's no point in trying to optimize.
69  */
70 static DEFINE_MUTEX(device_mutex);
71 
ib_device_check_mandatory(struct ib_device * device)72 static int ib_device_check_mandatory(struct ib_device *device)
73 {
74 #define IB_MANDATORY_FUNC(x) { offsetof(struct ib_device, x), #x }
75 	static const struct {
76 		size_t offset;
77 		char  *name;
78 	} mandatory_table[] = {
79 		IB_MANDATORY_FUNC(query_device),
80 		IB_MANDATORY_FUNC(query_port),
81 		IB_MANDATORY_FUNC(query_pkey),
82 		IB_MANDATORY_FUNC(query_gid),
83 		IB_MANDATORY_FUNC(alloc_pd),
84 		IB_MANDATORY_FUNC(dealloc_pd),
85 		IB_MANDATORY_FUNC(create_ah),
86 		IB_MANDATORY_FUNC(destroy_ah),
87 		IB_MANDATORY_FUNC(create_qp),
88 		IB_MANDATORY_FUNC(modify_qp),
89 		IB_MANDATORY_FUNC(destroy_qp),
90 		IB_MANDATORY_FUNC(post_send),
91 		IB_MANDATORY_FUNC(post_recv),
92 		IB_MANDATORY_FUNC(create_cq),
93 		IB_MANDATORY_FUNC(destroy_cq),
94 		IB_MANDATORY_FUNC(poll_cq),
95 		IB_MANDATORY_FUNC(req_notify_cq),
96 		IB_MANDATORY_FUNC(get_dma_mr),
97 		IB_MANDATORY_FUNC(dereg_mr)
98 	};
99 	int i;
100 
101 	for (i = 0; i < ARRAY_SIZE(mandatory_table); ++i) {
102 		if (!*(void **) ((u_char *) device + mandatory_table[i].offset)) {
103 			printk(KERN_WARNING "Device %s is missing mandatory function %s\n",
104 			       device->name, mandatory_table[i].name);
105 			return -EINVAL;
106 		}
107 	}
108 
109 	return 0;
110 }
111 
__ib_device_get_by_name(const char * name)112 static struct ib_device *__ib_device_get_by_name(const char *name)
113 {
114 	struct ib_device *device;
115 
116 	list_for_each_entry(device, &device_list, core_list)
117 		if (!strncmp(name, device->name, IB_DEVICE_NAME_MAX))
118 			return device;
119 
120 	return NULL;
121 }
122 
123 
alloc_name(char * name)124 static int alloc_name(char *name)
125 {
126 	unsigned long *inuse;
127 	char buf[IB_DEVICE_NAME_MAX];
128 	struct ib_device *device;
129 	int i;
130 
131 	inuse = (unsigned long *) get_zeroed_page(GFP_KERNEL);
132 	if (!inuse)
133 		return -ENOMEM;
134 
135 	list_for_each_entry(device, &device_list, core_list) {
136 		if (!sscanf(device->name, name, &i))
137 			continue;
138 		if (i < 0 || i >= PAGE_SIZE * 8)
139 			continue;
140 		snprintf(buf, sizeof buf, name, i);
141 		if (!strncmp(buf, device->name, IB_DEVICE_NAME_MAX))
142 			set_bit(i, inuse);
143 	}
144 
145 	i = find_first_zero_bit(inuse, PAGE_SIZE * 8);
146 	free_page((unsigned long) inuse);
147 	snprintf(buf, sizeof buf, name, i);
148 
149 	if (__ib_device_get_by_name(buf))
150 		return -ENFILE;
151 
152 	strlcpy(name, buf, IB_DEVICE_NAME_MAX);
153 	return 0;
154 }
155 
start_port(struct ib_device * device)156 static int start_port(struct ib_device *device)
157 {
158 	return (device->node_type == RDMA_NODE_IB_SWITCH) ? 0 : 1;
159 }
160 
161 
end_port(struct ib_device * device)162 static int end_port(struct ib_device *device)
163 {
164 	return (device->node_type == RDMA_NODE_IB_SWITCH) ?
165 		0 : device->phys_port_cnt;
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  */
ib_alloc_device(size_t size)178 struct ib_device *ib_alloc_device(size_t size)
179 {
180 	BUG_ON(size < sizeof (struct ib_device));
181 
182 	return kzalloc(size, GFP_KERNEL);
183 }
184 EXPORT_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  */
ib_dealloc_device(struct ib_device * device)192 void 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 
201 	kobject_put(&device->dev.kobj);
202 }
203 EXPORT_SYMBOL(ib_dealloc_device);
204 
add_client_context(struct ib_device * device,struct ib_client * client)205 static 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;
219 
220 	spin_lock_irqsave(&device->client_data_lock, flags);
221 	list_add(&context->list, &device->client_data_list);
222 	spin_unlock_irqrestore(&device->client_data_lock, flags);
223 
224 	return 0;
225 }
226 
read_port_table_lengths(struct ib_device * device)227 static int read_port_table_lengths(struct ib_device *device)
228 {
229 	struct ib_port_attr *tprops = NULL;
230 	int num_ports, ret = -ENOMEM;
231 	u8 port_index;
232 
233 	tprops = kmalloc(sizeof *tprops, GFP_KERNEL);
234 	if (!tprops)
235 		goto out;
236 
237 	num_ports = end_port(device) - start_port(device) + 1;
238 
239 	device->pkey_tbl_len = kmalloc(sizeof *device->pkey_tbl_len * num_ports,
240 				       GFP_KERNEL);
241 	device->gid_tbl_len = kmalloc(sizeof *device->gid_tbl_len * num_ports,
242 				      GFP_KERNEL);
243 	if (!device->pkey_tbl_len || !device->gid_tbl_len)
244 		goto err;
245 
246 	for (port_index = 0; port_index < num_ports; ++port_index) {
247 		ret = ib_query_port(device, port_index + start_port(device),
248 					tprops);
249 		if (ret)
250 			goto err;
251 		device->pkey_tbl_len[port_index] = tprops->pkey_tbl_len;
252 		device->gid_tbl_len[port_index]  = tprops->gid_tbl_len;
253 	}
254 
255 	ret = 0;
256 	goto out;
257 
258 err:
259 	kfree(device->gid_tbl_len);
260 	kfree(device->pkey_tbl_len);
261 out:
262 	kfree(tprops);
263 	return ret;
264 }
265 
266 /**
267  * ib_register_device - Register an IB device with IB core
268  * @device:Device to register
269  *
270  * Low-level drivers use ib_register_device() to register their
271  * devices with the IB core.  All registered clients will receive a
272  * callback for each device that is added. @device must be allocated
273  * with ib_alloc_device().
274  */
ib_register_device(struct ib_device * device,int (* port_callback)(struct ib_device *,u8,struct kobject *))275 int ib_register_device(struct ib_device *device,
276 		       int (*port_callback)(struct ib_device *,
277 					    u8, struct kobject *))
278 {
279 	int ret;
280 
281 	mutex_lock(&device_mutex);
282 
283 	if (strchr(device->name, '%')) {
284 		ret = alloc_name(device->name);
285 		if (ret)
286 			goto out;
287 	}
288 
289 	if (ib_device_check_mandatory(device)) {
290 		ret = -EINVAL;
291 		goto out;
292 	}
293 
294 	INIT_LIST_HEAD(&device->event_handler_list);
295 	INIT_LIST_HEAD(&device->client_data_list);
296 	spin_lock_init(&device->event_handler_lock);
297 	spin_lock_init(&device->client_data_lock);
298 	device->ib_uverbs_xrcd_table = RB_ROOT;
299 	mutex_init(&device->xrcd_table_mutex);
300 
301 	ret = read_port_table_lengths(device);
302 	if (ret) {
303 		printk(KERN_WARNING "Couldn't create table lengths cache for device %s\n",
304 		       device->name);
305 		goto out;
306 	}
307 
308 	ret = ib_device_register_sysfs(device, port_callback);
309 	if (ret) {
310 		printk(KERN_WARNING "Couldn't register device %s with driver model\n",
311 		       device->name);
312 		kfree(device->gid_tbl_len);
313 		kfree(device->pkey_tbl_len);
314 		goto out;
315 	}
316 
317 	list_add_tail(&device->core_list, &device_list);
318 
319 	device->reg_state = IB_DEV_REGISTERED;
320 
321 	{
322 		struct ib_client *client;
323 
324 		list_for_each_entry(client, &client_list, list)
325 			if (client->add && !add_client_context(device, client))
326 				client->add(device);
327 	}
328 
329  out:
330 	mutex_unlock(&device_mutex);
331 	return ret;
332 }
333 EXPORT_SYMBOL(ib_register_device);
334 
335 /**
336  * ib_unregister_device - Unregister an IB device
337  * @device:Device to unregister
338  *
339  * Unregister an IB device.  All clients will receive a remove callback.
340  */
ib_unregister_device(struct ib_device * device)341 void ib_unregister_device(struct ib_device *device)
342 {
343 	struct ib_client *client;
344 	struct ib_client_data *context, *tmp;
345 	unsigned long flags;
346 
347 	mutex_lock(&device_mutex);
348 
349 	list_for_each_entry_reverse(client, &client_list, list)
350 		if (client->remove)
351 			client->remove(device);
352 
353 	list_del(&device->core_list);
354 
355 	kfree(device->gid_tbl_len);
356 	kfree(device->pkey_tbl_len);
357 
358 	mutex_unlock(&device_mutex);
359 
360 	ib_device_unregister_sysfs(device);
361 
362 	spin_lock_irqsave(&device->client_data_lock, flags);
363 	list_for_each_entry_safe(context, tmp, &device->client_data_list, list)
364 		kfree(context);
365 	spin_unlock_irqrestore(&device->client_data_lock, flags);
366 
367 	device->reg_state = IB_DEV_UNREGISTERED;
368 }
369 EXPORT_SYMBOL(ib_unregister_device);
370 
371 /**
372  * ib_register_client - Register an IB client
373  * @client:Client to register
374  *
375  * Upper level users of the IB drivers can use ib_register_client() to
376  * register callbacks for IB device addition and removal.  When an IB
377  * device is added, each registered client's add method will be called
378  * (in the order the clients were registered), and when a device is
379  * removed, each client's remove method will be called (in the reverse
380  * order that clients were registered).  In addition, when
381  * ib_register_client() is called, the client will receive an add
382  * callback for all devices already registered.
383  */
ib_register_client(struct ib_client * client)384 int ib_register_client(struct ib_client *client)
385 {
386 	struct ib_device *device;
387 
388 	mutex_lock(&device_mutex);
389 
390 	list_add_tail(&client->list, &client_list);
391 	list_for_each_entry(device, &device_list, core_list)
392 		if (client->add && !add_client_context(device, client))
393 			client->add(device);
394 
395 	mutex_unlock(&device_mutex);
396 
397 	return 0;
398 }
399 EXPORT_SYMBOL(ib_register_client);
400 
401 /**
402  * ib_unregister_client - Unregister an IB client
403  * @client:Client to unregister
404  *
405  * Upper level users use ib_unregister_client() to remove their client
406  * registration.  When ib_unregister_client() is called, the client
407  * will receive a remove callback for each IB device still registered.
408  */
ib_unregister_client(struct ib_client * client)409 void ib_unregister_client(struct ib_client *client)
410 {
411 	struct ib_client_data *context, *tmp;
412 	struct ib_device *device;
413 	unsigned long flags;
414 
415 	mutex_lock(&device_mutex);
416 
417 	list_for_each_entry(device, &device_list, core_list) {
418 		if (client->remove)
419 			client->remove(device);
420 
421 		spin_lock_irqsave(&device->client_data_lock, flags);
422 		list_for_each_entry_safe(context, tmp, &device->client_data_list, list)
423 			if (context->client == client) {
424 				list_del(&context->list);
425 				kfree(context);
426 			}
427 		spin_unlock_irqrestore(&device->client_data_lock, flags);
428 	}
429 	list_del(&client->list);
430 
431 	mutex_unlock(&device_mutex);
432 }
433 EXPORT_SYMBOL(ib_unregister_client);
434 
435 /**
436  * ib_get_client_data - Get IB client context
437  * @device:Device to get context for
438  * @client:Client to get context for
439  *
440  * ib_get_client_data() returns client context set with
441  * ib_set_client_data().
442  */
ib_get_client_data(struct ib_device * device,struct ib_client * client)443 void *ib_get_client_data(struct ib_device *device, struct ib_client *client)
444 {
445 	struct ib_client_data *context;
446 	void *ret = NULL;
447 	unsigned long flags;
448 
449 	spin_lock_irqsave(&device->client_data_lock, flags);
450 	list_for_each_entry(context, &device->client_data_list, list)
451 		if (context->client == client) {
452 			ret = context->data;
453 			break;
454 		}
455 	spin_unlock_irqrestore(&device->client_data_lock, flags);
456 
457 	return ret;
458 }
459 EXPORT_SYMBOL(ib_get_client_data);
460 
461 /**
462  * ib_set_client_data - Set IB client context
463  * @device:Device to set context for
464  * @client:Client to set context for
465  * @data:Context to set
466  *
467  * ib_set_client_data() sets client context that can be retrieved with
468  * ib_get_client_data().
469  */
ib_set_client_data(struct ib_device * device,struct ib_client * client,void * data)470 void ib_set_client_data(struct ib_device *device, struct ib_client *client,
471 			void *data)
472 {
473 	struct ib_client_data *context;
474 	unsigned long flags;
475 
476 	spin_lock_irqsave(&device->client_data_lock, flags);
477 	list_for_each_entry(context, &device->client_data_list, list)
478 		if (context->client == client) {
479 			context->data = data;
480 			goto out;
481 		}
482 
483 	printk(KERN_WARNING "No client context found for %s/%s\n",
484 	       device->name, client->name);
485 
486 out:
487 	spin_unlock_irqrestore(&device->client_data_lock, flags);
488 }
489 EXPORT_SYMBOL(ib_set_client_data);
490 
491 /**
492  * ib_register_event_handler - Register an IB event handler
493  * @event_handler:Handler to register
494  *
495  * ib_register_event_handler() registers an event handler that will be
496  * called back when asynchronous IB events occur (as defined in
497  * chapter 11 of the InfiniBand Architecture Specification).  This
498  * callback may occur in interrupt context.
499  */
ib_register_event_handler(struct ib_event_handler * event_handler)500 int ib_register_event_handler  (struct ib_event_handler *event_handler)
501 {
502 	unsigned long flags;
503 
504 	spin_lock_irqsave(&event_handler->device->event_handler_lock, flags);
505 	list_add_tail(&event_handler->list,
506 		      &event_handler->device->event_handler_list);
507 	spin_unlock_irqrestore(&event_handler->device->event_handler_lock, flags);
508 
509 	return 0;
510 }
511 EXPORT_SYMBOL(ib_register_event_handler);
512 
513 /**
514  * ib_unregister_event_handler - Unregister an event handler
515  * @event_handler:Handler to unregister
516  *
517  * Unregister an event handler registered with
518  * ib_register_event_handler().
519  */
ib_unregister_event_handler(struct ib_event_handler * event_handler)520 int ib_unregister_event_handler(struct ib_event_handler *event_handler)
521 {
522 	unsigned long flags;
523 
524 	spin_lock_irqsave(&event_handler->device->event_handler_lock, flags);
525 	list_del(&event_handler->list);
526 	spin_unlock_irqrestore(&event_handler->device->event_handler_lock, flags);
527 
528 	return 0;
529 }
530 EXPORT_SYMBOL(ib_unregister_event_handler);
531 
532 /**
533  * ib_dispatch_event - Dispatch an asynchronous event
534  * @event:Event to dispatch
535  *
536  * Low-level drivers must call ib_dispatch_event() to dispatch the
537  * event to all registered event handlers when an asynchronous event
538  * occurs.
539  */
ib_dispatch_event(struct ib_event * event)540 void ib_dispatch_event(struct ib_event *event)
541 {
542 	unsigned long flags;
543 	struct ib_event_handler *handler;
544 
545 	spin_lock_irqsave(&event->device->event_handler_lock, flags);
546 
547 	list_for_each_entry(handler, &event->device->event_handler_list, list)
548 		handler->handler(handler, event);
549 
550 	spin_unlock_irqrestore(&event->device->event_handler_lock, flags);
551 }
552 EXPORT_SYMBOL(ib_dispatch_event);
553 
554 /**
555  * ib_query_device - Query IB device attributes
556  * @device:Device to query
557  * @device_attr:Device attributes
558  *
559  * ib_query_device() returns the attributes of a device through the
560  * @device_attr pointer.
561  */
ib_query_device(struct ib_device * device,struct ib_device_attr * device_attr)562 int ib_query_device(struct ib_device *device,
563 		    struct ib_device_attr *device_attr)
564 {
565 	return device->query_device(device, device_attr);
566 }
567 EXPORT_SYMBOL(ib_query_device);
568 
569 /**
570  * ib_query_port - Query IB port attributes
571  * @device:Device to query
572  * @port_num:Port number to query
573  * @port_attr:Port attributes
574  *
575  * ib_query_port() returns the attributes of a port through the
576  * @port_attr pointer.
577  */
ib_query_port(struct ib_device * device,u8 port_num,struct ib_port_attr * port_attr)578 int ib_query_port(struct ib_device *device,
579 		  u8 port_num,
580 		  struct ib_port_attr *port_attr)
581 {
582 	if (port_num < start_port(device) || port_num > end_port(device))
583 		return -EINVAL;
584 
585 	return device->query_port(device, port_num, port_attr);
586 }
587 EXPORT_SYMBOL(ib_query_port);
588 
589 /**
590  * ib_query_gid - Get GID table entry
591  * @device:Device to query
592  * @port_num:Port number to query
593  * @index:GID table index to query
594  * @gid:Returned GID
595  *
596  * ib_query_gid() fetches the specified GID table entry.
597  */
ib_query_gid(struct ib_device * device,u8 port_num,int index,union ib_gid * gid)598 int ib_query_gid(struct ib_device *device,
599 		 u8 port_num, int index, union ib_gid *gid)
600 {
601 	return device->query_gid(device, port_num, index, gid);
602 }
603 EXPORT_SYMBOL(ib_query_gid);
604 
605 /**
606  * ib_query_pkey - Get P_Key table entry
607  * @device:Device to query
608  * @port_num:Port number to query
609  * @index:P_Key table index to query
610  * @pkey:Returned P_Key
611  *
612  * ib_query_pkey() fetches the specified P_Key table entry.
613  */
ib_query_pkey(struct ib_device * device,u8 port_num,u16 index,u16 * pkey)614 int ib_query_pkey(struct ib_device *device,
615 		  u8 port_num, u16 index, u16 *pkey)
616 {
617 	return device->query_pkey(device, port_num, index, pkey);
618 }
619 EXPORT_SYMBOL(ib_query_pkey);
620 
621 /**
622  * ib_modify_device - Change IB device attributes
623  * @device:Device to modify
624  * @device_modify_mask:Mask of attributes to change
625  * @device_modify:New attribute values
626  *
627  * ib_modify_device() changes a device's attributes as specified by
628  * the @device_modify_mask and @device_modify structure.
629  */
ib_modify_device(struct ib_device * device,int device_modify_mask,struct ib_device_modify * device_modify)630 int ib_modify_device(struct ib_device *device,
631 		     int device_modify_mask,
632 		     struct ib_device_modify *device_modify)
633 {
634 	return device->modify_device(device, device_modify_mask,
635 				     device_modify);
636 }
637 EXPORT_SYMBOL(ib_modify_device);
638 
639 /**
640  * ib_modify_port - Modifies the attributes for the specified port.
641  * @device: The device to modify.
642  * @port_num: The number of the port to modify.
643  * @port_modify_mask: Mask used to specify which attributes of the port
644  *   to change.
645  * @port_modify: New attribute values for the port.
646  *
647  * ib_modify_port() changes a port's attributes as specified by the
648  * @port_modify_mask and @port_modify structure.
649  */
ib_modify_port(struct ib_device * device,u8 port_num,int port_modify_mask,struct ib_port_modify * port_modify)650 int ib_modify_port(struct ib_device *device,
651 		   u8 port_num, int port_modify_mask,
652 		   struct ib_port_modify *port_modify)
653 {
654 	if (port_num < start_port(device) || port_num > end_port(device))
655 		return -EINVAL;
656 
657 	return device->modify_port(device, port_num, port_modify_mask,
658 				   port_modify);
659 }
660 EXPORT_SYMBOL(ib_modify_port);
661 
662 /**
663  * ib_find_gid - Returns the port number and GID table index where
664  *   a specified GID value occurs.
665  * @device: The device to query.
666  * @gid: The GID value to search for.
667  * @port_num: The port number of the device where the GID value was found.
668  * @index: The index into the GID table where the GID was found.  This
669  *   parameter may be NULL.
670  */
ib_find_gid(struct ib_device * device,union ib_gid * gid,u8 * port_num,u16 * index)671 int ib_find_gid(struct ib_device *device, union ib_gid *gid,
672 		u8 *port_num, u16 *index)
673 {
674 	union ib_gid tmp_gid;
675 	int ret, port, i;
676 
677 	for (port = start_port(device); port <= end_port(device); ++port) {
678 		for (i = 0; i < device->gid_tbl_len[port - start_port(device)]; ++i) {
679 			ret = ib_query_gid(device, port, i, &tmp_gid);
680 			if (ret)
681 				return ret;
682 			if (!memcmp(&tmp_gid, gid, sizeof *gid)) {
683 				*port_num = port;
684 				if (index)
685 					*index = i;
686 				return 0;
687 			}
688 		}
689 	}
690 
691 	return -ENOENT;
692 }
693 EXPORT_SYMBOL(ib_find_gid);
694 
695 /**
696  * ib_find_pkey - Returns the PKey table index where a specified
697  *   PKey value occurs.
698  * @device: The device to query.
699  * @port_num: The port number of the device to search for the PKey.
700  * @pkey: The PKey value to search for.
701  * @index: The index into the PKey table where the PKey was found.
702  */
ib_find_pkey(struct ib_device * device,u8 port_num,u16 pkey,u16 * index)703 int ib_find_pkey(struct ib_device *device,
704 		 u8 port_num, u16 pkey, u16 *index)
705 {
706 	int ret, i;
707 	u16 tmp_pkey;
708 
709 	for (i = 0; i < device->pkey_tbl_len[port_num - start_port(device)]; ++i) {
710 		ret = ib_query_pkey(device, port_num, i, &tmp_pkey);
711 		if (ret)
712 			return ret;
713 
714 		if ((pkey & 0x7fff) == (tmp_pkey & 0x7fff)) {
715 			*index = i;
716 			return 0;
717 		}
718 	}
719 
720 	return -ENOENT;
721 }
722 EXPORT_SYMBOL(ib_find_pkey);
723 
ib_core_init(void)724 static int __init ib_core_init(void)
725 {
726 	int ret;
727 
728 #ifdef __ia64__
729 	if (ia64_platform_is("hpzx1"))
730 		dma_map_sg_hp_wa = 1;
731 #endif
732 
733 	ret = ib_sysfs_setup();
734 	if (ret)
735 		printk(KERN_WARNING "Couldn't create InfiniBand device class\n");
736 
737 	ret = ib_cache_setup();
738 	if (ret) {
739 		printk(KERN_WARNING "Couldn't set up InfiniBand P_Key/GID cache\n");
740 		ib_sysfs_cleanup();
741 	}
742 
743 	return ret;
744 }
745 
ib_core_cleanup(void)746 static void __exit ib_core_cleanup(void)
747 {
748 	ib_cache_cleanup();
749 	ib_sysfs_cleanup();
750 	/* Make sure that any pending umem accounting work is done. */
751 	flush_scheduled_work();
752 }
753 
754 module_init(ib_core_init);
755 module_exit(ib_core_cleanup);
756 
757 #undef MODULE_VERSION
758 #include <sys/module.h>
759 static int
ibcore_evhand(module_t mod,int event,void * arg)760 ibcore_evhand(module_t mod, int event, void *arg)
761 {
762 	return (0);
763 }
764 
765 static moduledata_t ibcore_mod = {
766 	.name = "ibcore",
767 	.evhand = ibcore_evhand,
768 };
769 
770 MODULE_VERSION(ibcore, 1);
771 DECLARE_MODULE(ibcore, ibcore_mod, SI_SUB_SMP, SI_ORDER_ANY);
772