exec-osm.c 16.3 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
/*
 *	Executive OSM
 *
 * 	Copyright (C) 1999-2002	Red Hat Software
 *
 *	Written by Alan Cox, Building Number Three Ltd
 *
 *	This program is free software; you can redistribute it and/or modify it
 *	under the terms of the GNU General Public License as published by the
 *	Free Software Foundation; either version 2 of the License, or (at your
 *	option) any later version.
 *
 *	A lot of the I2O message side code from this is taken from the Red
 *	Creek RCPCI45 adapter driver by Red Creek Communications
 *
 *	Fixes/additions:
 *		Philipp Rumpf
 *		Juha Sievnen <Juha.Sievanen@cs.Helsinki.FI>
 *		Auvo Hkkinen <Auvo.Hakkinen@cs.Helsinki.FI>
 *		Deepak Saxena <deepak@plexity.net>
 *		Boji T Kannanthanam <boji.t.kannanthanam@intel.com>
 *		Alan Cox <alan@redhat.com>:
 *			Ported to Linux 2.5.
 *		Markus Lidel <Markus.Lidel@shadowconnect.com>:
 *			Minor fixes for 2.6.
 *		Markus Lidel <Markus.Lidel@shadowconnect.com>:
 *			Support for sysfs included.
 */

#include <linux/module.h>
#include <linux/i2o.h>
#include <linux/delay.h>
T
Tim Schmielau 已提交
33 34 35
#include <linux/workqueue.h>
#include <linux/string.h>
#include <linux/slab.h>
M
Markus Lidel 已提交
36
#include <linux/sched.h>	/* wait_event_interruptible_timeout() needs this */
T
Tim Schmielau 已提交
37
#include <asm/param.h>		/* HZ */
38
#include "core.h"
L
Linus Torvalds 已提交
39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55

#define OSM_NAME "exec-osm"

struct i2o_driver i2o_exec_driver;

static int i2o_exec_lct_notify(struct i2o_controller *c, u32 change_ind);

/* global wait list for POST WAIT */
static LIST_HEAD(i2o_exec_wait_list);

/* Wait struct needed for POST WAIT */
struct i2o_exec_wait {
	wait_queue_head_t *wq;	/* Pointer to Wait queue */
	struct i2o_dma dma;	/* DMA buffers to free on failure */
	u32 tcntxt;		/* transaction context from reply */
	int complete;		/* 1 if reply received otherwise 0 */
	u32 m;			/* message id */
56
	struct i2o_message *msg;	/* pointer to the reply message */
L
Linus Torvalds 已提交
57
	struct list_head list;	/* node in global wait list */
58
	spinlock_t lock;	/* lock before modifying */
L
Linus Torvalds 已提交
59 60
};

61 62 63 64 65 66 67
/* Work struct needed to handle LCT NOTIFY replies */
struct i2o_exec_lct_notify_work {
	struct work_struct work;	/* work struct */
	struct i2o_controller *c;	/* controller on which the LCT NOTIFY
					   was received */
};

L
Linus Torvalds 已提交
68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85
/* Exec OSM class handling definition */
static struct i2o_class_id i2o_exec_class_id[] = {
	{I2O_CLASS_EXECUTIVE},
	{I2O_CLASS_END}
};

/**
 *	i2o_exec_wait_alloc - Allocate a i2o_exec_wait struct an initialize it
 *
 *	Allocate the i2o_exec_wait struct and initialize the wait.
 *
 *	Returns i2o_exec_wait pointer on success or negative error code on
 *	failure.
 */
static struct i2o_exec_wait *i2o_exec_wait_alloc(void)
{
	struct i2o_exec_wait *wait;

M
Markus Lidel 已提交
86
	wait = kzalloc(sizeof(*wait), GFP_KERNEL);
L
Linus Torvalds 已提交
87
	if (!wait)
M
Markus Lidel 已提交
88
		return NULL;
L
Linus Torvalds 已提交
89 90

	INIT_LIST_HEAD(&wait->list);
91
	spin_lock_init(&wait->lock);
L
Linus Torvalds 已提交
92 93 94 95 96

	return wait;
};

/**
97 98
 *	i2o_exec_wait_free - Free an i2o_exec_wait struct
 *	@wait: I2O wait data which should be cleaned up
L
Linus Torvalds 已提交
99 100 101 102 103 104 105 106 107
 */
static void i2o_exec_wait_free(struct i2o_exec_wait *wait)
{
	kfree(wait);
};

/**
 * 	i2o_msg_post_wait_mem - Post and wait a message with DMA buffers
 *	@c: controller
108
 *	@msg: message to post
L
Linus Torvalds 已提交
109 110 111 112 113 114 115 116 117 118 119 120
 *	@timeout: time in seconds to wait
 *	@dma: i2o_dma struct of the DMA buffer to free on failure
 *
 * 	This API allows an OSM to post a message and then be told whether or
 *	not the system received a successful reply. If the message times out
 *	then the value '-ETIMEDOUT' is returned. This is a special case. In
 *	this situation the message may (should) complete at an indefinite time
 *	in the future. When it completes it will use the memory buffer
 *	attached to the request. If -ETIMEDOUT is returned then the memory
 *	buffer must not be freed. Instead the event completion will free them
 *	for you. In all other cases the buffer are your problem.
 *
121 122
 *	Returns 0 on success, negative error code on timeout or positive error
 *	code from reply.
L
Linus Torvalds 已提交
123
 */
124 125
int i2o_msg_post_wait_mem(struct i2o_controller *c, struct i2o_message *msg,
			  unsigned long timeout, struct i2o_dma *dma)
L
Linus Torvalds 已提交
126
{
127
	DECLARE_WAIT_QUEUE_HEAD_ONSTACK(wq);
L
Linus Torvalds 已提交
128 129
	struct i2o_exec_wait *wait;
	static u32 tcntxt = 0x80000000;
130
	unsigned long flags;
L
Linus Torvalds 已提交
131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147
	int rc = 0;

	wait = i2o_exec_wait_alloc();
	if (!wait)
		return -ENOMEM;

	if (tcntxt == 0xffffffff)
		tcntxt = 0x80000000;

	if (dma)
		wait->dma = *dma;

	/*
	 * Fill in the message initiator context and transaction context.
	 * We will only use transaction contexts >= 0x80000000 for POST WAIT,
	 * so we could find a POST WAIT reply easier in the reply handler.
	 */
148
	msg->u.s.icntxt = cpu_to_le32(i2o_exec_driver.context);
L
Linus Torvalds 已提交
149
	wait->tcntxt = tcntxt++;
150
	msg->u.s.tcntxt = cpu_to_le32(wait->tcntxt);
L
Linus Torvalds 已提交
151

152 153 154 155 156 157 158
	wait->wq = &wq;
	/*
	 * we add elements to the head, because if a entry in the list will
	 * never be removed, we have to iterate over it every time
	 */
	list_add(&wait->list, &i2o_exec_wait_list);

L
Linus Torvalds 已提交
159 160 161 162
	/*
	 * Post the message to the controller. At some point later it will
	 * return. If we time out before it returns then complete will be zero.
	 */
163
	i2o_msg_post(c, msg);
L
Linus Torvalds 已提交
164

165
	wait_event_interruptible_timeout(wq, wait->complete, timeout * HZ);
L
Linus Torvalds 已提交
166

167
	spin_lock_irqsave(&wait->lock, flags);
L
Linus Torvalds 已提交
168

169
	wait->wq = NULL;
L
Linus Torvalds 已提交
170

171
	if (wait->complete)
172
		rc = le32_to_cpu(wait->msg->body[0]) >> 24;
173
	else {
L
Linus Torvalds 已提交
174 175 176 177 178 179 180 181 182 183 184 185 186
		/*
		 * We cannot remove it now. This is important. When it does
		 * terminate (which it must do if the controller has not
		 * died...) then it will otherwise scribble on stuff.
		 *
		 * FIXME: try abort message
		 */
		if (dma)
			dma->virt = NULL;

		rc = -ETIMEDOUT;
	}

187 188 189 190 191 192 193
	spin_unlock_irqrestore(&wait->lock, flags);

	if (rc != -ETIMEDOUT) {
		i2o_flush_reply(c, wait->m);
		i2o_exec_wait_free(wait);
	}

L
Linus Torvalds 已提交
194 195 196 197 198 199 200 201
	return rc;
};

/**
 *	i2o_msg_post_wait_complete - Reply to a i2o_msg_post request from IOP
 *	@c: I2O controller which answers
 *	@m: message id
 *	@msg: pointer to the I2O reply message
202
 *	@context: transaction context of request
L
Linus Torvalds 已提交
203 204 205 206 207 208 209 210 211 212 213 214 215 216
 *
 *	This function is called in interrupt context only. If the reply reached
 *	before the timeout, the i2o_exec_wait struct is filled with the message
 *	and the task will be waked up. The task is now responsible for returning
 *	the message m back to the controller! If the message reaches us after
 *	the timeout clean up the i2o_exec_wait struct (including allocated
 *	DMA buffer).
 *
 *	Return 0 on success and if the message m should not be given back to the
 *	I2O controller, or >0 on success and if the message should be given back
 *	afterwords. Returns negative error code on failure. In this case the
 *	message must also be given back to the controller.
 */
static int i2o_msg_post_wait_complete(struct i2o_controller *c, u32 m,
217
				      struct i2o_message *msg, u32 context)
L
Linus Torvalds 已提交
218 219
{
	struct i2o_exec_wait *wait, *tmp;
220
	unsigned long flags;
L
Linus Torvalds 已提交
221 222 223 224 225 226 227 228 229 230 231
	int rc = 1;

	/*
	 * We need to search through the i2o_exec_wait_list to see if the given
	 * message is still outstanding. If not, it means that the IOP took
	 * longer to respond to the message than we had allowed and timer has
	 * already expired. Not much we can do about that except log it for
	 * debug purposes, increase timeout, and recompile.
	 */
	list_for_each_entry_safe(wait, tmp, &i2o_exec_wait_list, list) {
		if (wait->tcntxt == context) {
232
			spin_lock_irqsave(&wait->lock, flags);
L
Linus Torvalds 已提交
233

234
			list_del(&wait->list);
235

L
Linus Torvalds 已提交
236 237 238 239
			wait->m = m;
			wait->msg = msg;
			wait->complete = 1;

240
			if (wait->wq)
L
Linus Torvalds 已提交
241
				rc = 0;
242 243 244 245 246 247
			else
				rc = -1;

			spin_unlock_irqrestore(&wait->lock, flags);

			if (rc) {
L
Linus Torvalds 已提交
248 249 250 251 252 253 254 255
				struct device *dev;

				dev = &c->pdev->dev;

				pr_debug("%s: timedout reply received!\n",
					 c->name);
				i2o_dma_free(dev, &wait->dma);
				i2o_exec_wait_free(wait);
256 257
			} else
				wake_up_interruptible(wait->wq);
L
Linus Torvalds 已提交
258 259 260 261 262

			return rc;
		}
	}

263
	osm_warn("%s: Bogus reply in POST WAIT (tr-context: %08x)!\n", c->name,
L
Linus Torvalds 已提交
264 265 266 267 268
		 context);

	return -1;
};

269 270 271
/**
 *	i2o_exec_show_vendor_id - Displays Vendor ID of controller
 *	@d: device of which the Vendor ID should be displayed
272
 *	@attr: device_attribute to display
273 274 275 276
 *	@buf: buffer into which the Vendor ID should be printed
 *
 *	Returns number of bytes printed into buffer.
 */
277 278
static ssize_t i2o_exec_show_vendor_id(struct device *d,
				       struct device_attribute *attr, char *buf)
279 280 281 282
{
	struct i2o_device *dev = to_i2o_device(d);
	u16 id;

M
Markus Lidel 已提交
283 284
	if (!i2o_parm_field_get(dev, 0x0000, 0, &id, 2)) {
		sprintf(buf, "0x%04x", le16_to_cpu(id));
285 286 287 288 289 290 291 292 293
		return strlen(buf) + 1;
	}

	return 0;
};

/**
 *	i2o_exec_show_product_id - Displays Product ID of controller
 *	@d: device of which the Product ID should be displayed
294
 *	@attr: device_attribute to display
295 296 297 298
 *	@buf: buffer into which the Product ID should be printed
 *
 *	Returns number of bytes printed into buffer.
 */
299 300 301
static ssize_t i2o_exec_show_product_id(struct device *d,
					struct device_attribute *attr,
					char *buf)
302 303 304 305
{
	struct i2o_device *dev = to_i2o_device(d);
	u16 id;

M
Markus Lidel 已提交
306 307
	if (!i2o_parm_field_get(dev, 0x0000, 1, &id, 2)) {
		sprintf(buf, "0x%04x", le16_to_cpu(id));
308 309 310 311 312 313 314 315 316 317
		return strlen(buf) + 1;
	}

	return 0;
};

/* Exec-OSM device attributes */
static DEVICE_ATTR(vendor_id, S_IRUGO, i2o_exec_show_vendor_id, NULL);
static DEVICE_ATTR(product_id, S_IRUGO, i2o_exec_show_product_id, NULL);

L
Linus Torvalds 已提交
318 319 320 321 322 323 324 325 326 327 328 329
/**
 *	i2o_exec_probe - Called if a new I2O device (executive class) appears
 *	@dev: I2O device which should be probed
 *
 *	Registers event notification for every event from Executive device. The
 *	return is always 0, because we want all devices of class Executive.
 *
 *	Returns 0 on success.
 */
static int i2o_exec_probe(struct device *dev)
{
	struct i2o_device *i2o_dev = to_i2o_device(dev);
330
	int rc;
L
Linus Torvalds 已提交
331

332 333
	rc = i2o_event_register(i2o_dev, &i2o_exec_driver, 0, 0xffffffff);
	if (rc) goto err_out;
L
Linus Torvalds 已提交
334

335 336 337 338
	rc = device_create_file(dev, &dev_attr_vendor_id);
	if (rc) goto err_evtreg;
	rc = device_create_file(dev, &dev_attr_product_id);
	if (rc) goto err_vid;
L
Linus Torvalds 已提交
339 340

	return 0;
341 342 343 344 345 346 347

err_vid:
	device_remove_file(dev, &dev_attr_vendor_id);
err_evtreg:
	i2o_event_register(to_i2o_device(dev), &i2o_exec_driver, 0, 0);
err_out:
	return rc;
L
Linus Torvalds 已提交
348 349 350 351 352 353 354 355 356 357 358 359
};

/**
 *	i2o_exec_remove - Called on I2O device removal
 *	@dev: I2O device which was removed
 *
 *	Unregisters event notification from Executive I2O device.
 *
 *	Returns 0 on success.
 */
static int i2o_exec_remove(struct device *dev)
{
360 361 362
	device_remove_file(dev, &dev_attr_product_id);
	device_remove_file(dev, &dev_attr_vendor_id);

L
Linus Torvalds 已提交
363 364 365 366 367 368 369
	i2o_event_register(to_i2o_device(dev), &i2o_exec_driver, 0, 0);

	return 0;
};

/**
 *	i2o_exec_lct_modified - Called on LCT NOTIFY reply
370
 *	@work: work struct for a specific controller
L
Linus Torvalds 已提交
371 372 373
 *
 *	This function handles asynchronus LCT NOTIFY replies. It parses the
 *	new LCT and if the buffer for the LCT was to small sends a LCT NOTIFY
374
 *	again, otherwise send LCT NOTIFY to get informed on next LCT change.
L
Linus Torvalds 已提交
375
 */
D
David Howells 已提交
376
static void i2o_exec_lct_modified(struct work_struct *_work)
L
Linus Torvalds 已提交
377
{
D
David Howells 已提交
378 379
	struct i2o_exec_lct_notify_work *work =
		container_of(_work, struct i2o_exec_lct_notify_work, work);
380
	u32 change_ind = 0;
381 382 383
	struct i2o_controller *c = work->c;

	kfree(work);
384 385 386 387

	if (i2o_device_parse_lct(c) != -EAGAIN)
		change_ind = c->lct->change_ind + 1;

M
Markus Lidel 已提交
388
#ifdef CONFIG_I2O_LCT_NOTIFY_ON_CHANGES
389
	i2o_exec_lct_notify(c, change_ind);
M
Markus Lidel 已提交
390
#endif
L
Linus Torvalds 已提交
391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407
};

/**
 *	i2o_exec_reply -  I2O Executive reply handler
 *	@c: I2O controller from which the reply comes
 *	@m: message id
 *	@msg: pointer to the I2O reply message
 *
 *	This function is always called from interrupt context. If a POST WAIT
 *	reply was received, pass it to the complete function. If a LCT NOTIFY
 *	reply was received, a new event is created to handle the update.
 *
 *	Returns 0 on success and if the reply should not be flushed or > 0
 *	on success and if the reply should be flushed. Returns negative error
 *	code on failure and if the reply should be flushed.
 */
static int i2o_exec_reply(struct i2o_controller *c, u32 m,
408
			  struct i2o_message *msg)
L
Linus Torvalds 已提交
409
{
410 411
	u32 context;

412
	if (le32_to_cpu(msg->u.head[0]) & MSG_FAIL) {
413 414 415
		struct i2o_message __iomem *pmsg;
		u32 pm;

416 417 418 419
		/*
		 * If Fail bit is set we must take the transaction context of
		 * the preserved message to find the right request again.
		 */
L
Linus Torvalds 已提交
420

421
		pm = le32_to_cpu(msg->body[3]);
L
Linus Torvalds 已提交
422
		pmsg = i2o_msg_in_to_virt(c, pm);
423
		context = readl(&pmsg->u.s.tcntxt);
L
Linus Torvalds 已提交
424 425 426

		i2o_report_status(KERN_INFO, "i2o_core", msg);

427
		/* Release the preserved msg */
428
		i2o_msg_nop_mfa(c, pm);
429
	} else
430
		context = le32_to_cpu(msg->u.s.tcntxt);
L
Linus Torvalds 已提交
431

432 433
	if (context & 0x80000000)
		return i2o_msg_post_wait_complete(c, m, msg, context);
L
Linus Torvalds 已提交
434

435
	if ((le32_to_cpu(msg->u.head[1]) >> 24) == I2O_CMD_LCT_NOTIFY) {
436
		struct i2o_exec_lct_notify_work *work;
L
Linus Torvalds 已提交
437 438 439 440 441 442 443

		pr_debug("%s: LCT notify received\n", c->name);

		work = kmalloc(sizeof(*work), GFP_ATOMIC);
		if (!work)
			return -ENOMEM;

444 445
		work->c = c;

D
David Howells 已提交
446
		INIT_WORK(&work->work, i2o_exec_lct_modified);
447
		queue_work(i2o_exec_driver.event_queue, &work->work);
L
Linus Torvalds 已提交
448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465
		return 1;
	}

	/*
	 * If this happens, we want to dump the message to the syslog so
	 * it can be sent back to the card manufacturer by the end user
	 * to aid in debugging.
	 *
	 */
	printk(KERN_WARNING "%s: Unsolicited message reply sent to core!"
	       "Message dumped to syslog\n", c->name);
	i2o_dump_message(msg);

	return -EFAULT;
}

/**
 *	i2o_exec_event - Event handling function
D
David Howells 已提交
466
 *	@work: Work item in occurring event
L
Linus Torvalds 已提交
467 468 469 470
 *
 *	Handles events send by the Executive device. At the moment does not do
 *	anything useful.
 */
D
David Howells 已提交
471
static void i2o_exec_event(struct work_struct *work)
L
Linus Torvalds 已提交
472
{
D
David Howells 已提交
473 474
	struct i2o_event *evt = container_of(work, struct i2o_event, work);

475 476 477
	if (likely(evt->i2o_dev))
		osm_debug("Event received from device: %d\n",
			  evt->i2o_dev->lct_data.tid);
L
Linus Torvalds 已提交
478 479 480 481 482 483 484 485 486 487 488 489 490 491 492
	kfree(evt);
};

/**
 *	i2o_exec_lct_get - Get the IOP's Logical Configuration Table
 *	@c: I2O controller from which the LCT should be fetched
 *
 *	Send a LCT NOTIFY request to the controller, and wait
 *	I2O_TIMEOUT_LCT_GET seconds until arrival of response. If the LCT is
 *	to large, retry it.
 *
 *	Returns 0 on success or negative error code on failure.
 */
int i2o_exec_lct_get(struct i2o_controller *c)
{
493
	struct i2o_message *msg;
L
Linus Torvalds 已提交
494 495 496 497
	int i = 0;
	int rc = -EAGAIN;

	for (i = 1; i <= I2O_LCT_GET_TRIES; i++) {
498 499 500 501 502 503 504 505 506 507 508 509 510 511 512
		msg = i2o_msg_get_wait(c, I2O_TIMEOUT_MESSAGE_GET);
		if (IS_ERR(msg))
			return PTR_ERR(msg);

		msg->u.head[0] =
		    cpu_to_le32(EIGHT_WORD_MSG_SIZE | SGL_OFFSET_6);
		msg->u.head[1] =
		    cpu_to_le32(I2O_CMD_LCT_NOTIFY << 24 | HOST_TID << 12 |
				ADAPTER_TID);
		msg->body[0] = cpu_to_le32(0xffffffff);
		msg->body[1] = cpu_to_le32(0x00000000);
		msg->body[2] = cpu_to_le32(0xd0000000 | c->dlct.len);
		msg->body[3] = cpu_to_le32(c->dlct.phys);

		rc = i2o_msg_post_wait(c, msg, I2O_TIMEOUT_LCT_GET);
L
Linus Torvalds 已提交
513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537
		if (rc < 0)
			break;

		rc = i2o_device_parse_lct(c);
		if (rc != -EAGAIN)
			break;
	}

	return rc;
}

/**
 *	i2o_exec_lct_notify - Send a asynchronus LCT NOTIFY request
 *	@c: I2O controller to which the request should be send
 *	@change_ind: change indicator
 *
 *	This function sends a LCT NOTIFY request to the I2O controller with
 *	the change indicator change_ind. If the change_ind == 0 the controller
 *	replies immediately after the request. If change_ind > 0 the reply is
 *	send after change indicator of the LCT is > change_ind.
 */
static int i2o_exec_lct_notify(struct i2o_controller *c, u32 change_ind)
{
	i2o_status_block *sb = c->status_block.virt;
	struct device *dev;
538
	struct i2o_message *msg;
L
Linus Torvalds 已提交
539

540 541
	down(&c->lct_lock);

L
Linus Torvalds 已提交
542 543
	dev = &c->pdev->dev;

M
Markus Lidel 已提交
544 545
	if (i2o_dma_realloc
	    (dev, &c->dlct, le32_to_cpu(sb->expected_lct_size), GFP_KERNEL))
L
Linus Torvalds 已提交
546 547
		return -ENOMEM;

548 549 550 551 552 553 554 555 556 557 558 559 560 561 562
	msg = i2o_msg_get_wait(c, I2O_TIMEOUT_MESSAGE_GET);
	if (IS_ERR(msg))
		return PTR_ERR(msg);

	msg->u.head[0] = cpu_to_le32(EIGHT_WORD_MSG_SIZE | SGL_OFFSET_6);
	msg->u.head[1] = cpu_to_le32(I2O_CMD_LCT_NOTIFY << 24 | HOST_TID << 12 |
				     ADAPTER_TID);
	msg->u.s.icntxt = cpu_to_le32(i2o_exec_driver.context);
	msg->u.s.tcntxt = cpu_to_le32(0x00000000);
	msg->body[0] = cpu_to_le32(0xffffffff);
	msg->body[1] = cpu_to_le32(change_ind);
	msg->body[2] = cpu_to_le32(0xd0000000 | c->dlct.len);
	msg->body[3] = cpu_to_le32(c->dlct.phys);

	i2o_msg_post(c, msg);
L
Linus Torvalds 已提交
563

564 565
	up(&c->lct_lock);

L
Linus Torvalds 已提交
566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604
	return 0;
};

/* Exec OSM driver struct */
struct i2o_driver i2o_exec_driver = {
	.name = OSM_NAME,
	.reply = i2o_exec_reply,
	.event = i2o_exec_event,
	.classes = i2o_exec_class_id,
	.driver = {
		   .probe = i2o_exec_probe,
		   .remove = i2o_exec_remove,
		   },
};

/**
 *	i2o_exec_init - Registers the Exec OSM
 *
 *	Registers the Exec OSM in the I2O core.
 *
 *	Returns 0 on success or negative error code on failure.
 */
int __init i2o_exec_init(void)
{
	return i2o_driver_register(&i2o_exec_driver);
};

/**
 *	i2o_exec_exit - Removes the Exec OSM
 *
 *	Unregisters the Exec OSM from the I2O core.
 */
void __exit i2o_exec_exit(void)
{
	i2o_driver_unregister(&i2o_exec_driver);
};

EXPORT_SYMBOL(i2o_msg_post_wait_mem);
EXPORT_SYMBOL(i2o_exec_lct_get);