blob: d24548f4c0339b903dd2da1df6ebb938ec66281c [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Executive OSM
3 *
4 * Copyright (C) 1999-2002 Red Hat Software
5 *
6 * Written by Alan Cox, Building Number Three Ltd
7 *
8 * This program is free software; you can redistribute it and/or modify it
9 * under the terms of the GNU General Public License as published by the
10 * Free Software Foundation; either version 2 of the License, or (at your
11 * option) any later version.
12 *
13 * A lot of the I2O message side code from this is taken from the Red
14 * Creek RCPCI45 adapter driver by Red Creek Communications
15 *
16 * Fixes/additions:
17 * Philipp Rumpf
18 * Juha Sievänen <Juha.Sievanen@cs.Helsinki.FI>
19 * Auvo Häkkinen <Auvo.Hakkinen@cs.Helsinki.FI>
20 * Deepak Saxena <deepak@plexity.net>
21 * Boji T Kannanthanam <boji.t.kannanthanam@intel.com>
22 * Alan Cox <alan@redhat.com>:
23 * Ported to Linux 2.5.
24 * Markus Lidel <Markus.Lidel@shadowconnect.com>:
25 * Minor fixes for 2.6.
26 * Markus Lidel <Markus.Lidel@shadowconnect.com>:
27 * Support for sysfs included.
28 */
29
30#include <linux/module.h>
31#include <linux/i2o.h>
32#include <linux/delay.h>
Tim Schmielau4e57b682005-10-30 15:03:48 -080033#include <linux/workqueue.h>
34#include <linux/string.h>
35#include <linux/slab.h>
Tim Schmielau8c65b4a2005-11-07 00:59:43 -080036#include <linux/sched.h> /* wait_event_interruptible_timeout() needs this */
Tim Schmielau4e57b682005-10-30 15:03:48 -080037#include <asm/param.h> /* HZ */
Markus Lidel9e875452005-06-23 22:02:21 -070038#include "core.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070039
40#define OSM_NAME "exec-osm"
41
42struct i2o_driver i2o_exec_driver;
43
44static int i2o_exec_lct_notify(struct i2o_controller *c, u32 change_ind);
45
Linus Torvalds1da177e2005-04-16 15:20:36 -070046/* global wait list for POST WAIT */
47static LIST_HEAD(i2o_exec_wait_list);
48
49/* Wait struct needed for POST WAIT */
50struct i2o_exec_wait {
51 wait_queue_head_t *wq; /* Pointer to Wait queue */
52 struct i2o_dma dma; /* DMA buffers to free on failure */
53 u32 tcntxt; /* transaction context from reply */
54 int complete; /* 1 if reply received otherwise 0 */
55 u32 m; /* message id */
Markus Lidel9e875452005-06-23 22:02:21 -070056 struct i2o_message *msg; /* pointer to the reply message */
Linus Torvalds1da177e2005-04-16 15:20:36 -070057 struct list_head list; /* node in global wait list */
58};
59
60/* Exec OSM class handling definition */
61static struct i2o_class_id i2o_exec_class_id[] = {
62 {I2O_CLASS_EXECUTIVE},
63 {I2O_CLASS_END}
64};
65
66/**
67 * i2o_exec_wait_alloc - Allocate a i2o_exec_wait struct an initialize it
68 *
69 * Allocate the i2o_exec_wait struct and initialize the wait.
70 *
71 * Returns i2o_exec_wait pointer on success or negative error code on
72 * failure.
73 */
74static struct i2o_exec_wait *i2o_exec_wait_alloc(void)
75{
76 struct i2o_exec_wait *wait;
77
78 wait = kmalloc(sizeof(*wait), GFP_KERNEL);
79 if (!wait)
Markus Lidel793fd152006-01-06 00:19:30 -080080 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070081
82 memset(wait, 0, sizeof(*wait));
83
84 INIT_LIST_HEAD(&wait->list);
85
86 return wait;
87};
88
89/**
90 * i2o_exec_wait_free - Free a i2o_exec_wait struct
91 * @i2o_exec_wait: I2O wait data which should be cleaned up
92 */
93static void i2o_exec_wait_free(struct i2o_exec_wait *wait)
94{
95 kfree(wait);
96};
97
98/**
99 * i2o_msg_post_wait_mem - Post and wait a message with DMA buffers
100 * @c: controller
101 * @m: message to post
102 * @timeout: time in seconds to wait
103 * @dma: i2o_dma struct of the DMA buffer to free on failure
104 *
105 * This API allows an OSM to post a message and then be told whether or
106 * not the system received a successful reply. If the message times out
107 * then the value '-ETIMEDOUT' is returned. This is a special case. In
108 * this situation the message may (should) complete at an indefinite time
109 * in the future. When it completes it will use the memory buffer
110 * attached to the request. If -ETIMEDOUT is returned then the memory
111 * buffer must not be freed. Instead the event completion will free them
112 * for you. In all other cases the buffer are your problem.
113 *
Markus Lidelf88e1192005-06-23 22:02:14 -0700114 * Returns 0 on success, negative error code on timeout or positive error
115 * code from reply.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 */
Markus Lidela1a5ea72006-01-06 00:19:29 -0800117int i2o_msg_post_wait_mem(struct i2o_controller *c, struct i2o_message *msg,
118 unsigned long timeout, struct i2o_dma *dma)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119{
120 DECLARE_WAIT_QUEUE_HEAD(wq);
121 struct i2o_exec_wait *wait;
122 static u32 tcntxt = 0x80000000;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123 int rc = 0;
124
125 wait = i2o_exec_wait_alloc();
126 if (!wait)
127 return -ENOMEM;
128
129 if (tcntxt == 0xffffffff)
130 tcntxt = 0x80000000;
131
132 if (dma)
133 wait->dma = *dma;
134
135 /*
136 * Fill in the message initiator context and transaction context.
137 * We will only use transaction contexts >= 0x80000000 for POST WAIT,
138 * so we could find a POST WAIT reply easier in the reply handler.
139 */
Markus Lidela1a5ea72006-01-06 00:19:29 -0800140 msg->u.s.icntxt = cpu_to_le32(i2o_exec_driver.context);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141 wait->tcntxt = tcntxt++;
Markus Lidela1a5ea72006-01-06 00:19:29 -0800142 msg->u.s.tcntxt = cpu_to_le32(wait->tcntxt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143
144 /*
145 * Post the message to the controller. At some point later it will
146 * return. If we time out before it returns then complete will be zero.
147 */
Markus Lidela1a5ea72006-01-06 00:19:29 -0800148 i2o_msg_post(c, msg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149
150 if (!wait->complete) {
151 wait->wq = &wq;
152 /*
153 * we add elements add the head, because if a entry in the list
154 * will never be removed, we have to iterate over it every time
155 */
156 list_add(&wait->list, &i2o_exec_wait_list);
157
158 wait_event_interruptible_timeout(wq, wait->complete,
Markus Lidelf33213e2005-06-23 22:02:23 -0700159 timeout * HZ);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160
161 wait->wq = NULL;
162 }
163
164 barrier();
165
166 if (wait->complete) {
Markus Lidel9e875452005-06-23 22:02:21 -0700167 rc = le32_to_cpu(wait->msg->body[0]) >> 24;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 i2o_flush_reply(c, wait->m);
169 i2o_exec_wait_free(wait);
170 } else {
171 /*
172 * We cannot remove it now. This is important. When it does
173 * terminate (which it must do if the controller has not
174 * died...) then it will otherwise scribble on stuff.
175 *
176 * FIXME: try abort message
177 */
178 if (dma)
179 dma->virt = NULL;
180
181 rc = -ETIMEDOUT;
182 }
183
184 return rc;
185};
186
187/**
188 * i2o_msg_post_wait_complete - Reply to a i2o_msg_post request from IOP
189 * @c: I2O controller which answers
190 * @m: message id
191 * @msg: pointer to the I2O reply message
Markus Lidelf88e1192005-06-23 22:02:14 -0700192 * @context: transaction context of request
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 *
194 * This function is called in interrupt context only. If the reply reached
195 * before the timeout, the i2o_exec_wait struct is filled with the message
196 * and the task will be waked up. The task is now responsible for returning
197 * the message m back to the controller! If the message reaches us after
198 * the timeout clean up the i2o_exec_wait struct (including allocated
199 * DMA buffer).
200 *
201 * Return 0 on success and if the message m should not be given back to the
202 * I2O controller, or >0 on success and if the message should be given back
203 * afterwords. Returns negative error code on failure. In this case the
204 * message must also be given back to the controller.
205 */
206static int i2o_msg_post_wait_complete(struct i2o_controller *c, u32 m,
Markus Lidel9e875452005-06-23 22:02:21 -0700207 struct i2o_message *msg, u32 context)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208{
209 struct i2o_exec_wait *wait, *tmp;
Markus Lidelf10378f2005-06-23 22:02:16 -0700210 unsigned long flags;
Markus Lidel61fbfa82005-06-23 22:02:11 -0700211 static spinlock_t lock = SPIN_LOCK_UNLOCKED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 int rc = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213
214 /*
215 * We need to search through the i2o_exec_wait_list to see if the given
216 * message is still outstanding. If not, it means that the IOP took
217 * longer to respond to the message than we had allowed and timer has
218 * already expired. Not much we can do about that except log it for
219 * debug purposes, increase timeout, and recompile.
220 */
Markus Lidelf10378f2005-06-23 22:02:16 -0700221 spin_lock_irqsave(&lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 list_for_each_entry_safe(wait, tmp, &i2o_exec_wait_list, list) {
223 if (wait->tcntxt == context) {
224 list_del(&wait->list);
225
Markus Lidelf10378f2005-06-23 22:02:16 -0700226 spin_unlock_irqrestore(&lock, flags);
227
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 wait->m = m;
229 wait->msg = msg;
230 wait->complete = 1;
231
232 barrier();
233
234 if (wait->wq) {
235 wake_up_interruptible(wait->wq);
236 rc = 0;
237 } else {
238 struct device *dev;
239
240 dev = &c->pdev->dev;
241
242 pr_debug("%s: timedout reply received!\n",
243 c->name);
244 i2o_dma_free(dev, &wait->dma);
245 i2o_exec_wait_free(wait);
246 rc = -1;
247 }
248
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 return rc;
250 }
251 }
252
Markus Lidelf10378f2005-06-23 22:02:16 -0700253 spin_unlock_irqrestore(&lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254
Markus Lidelf88e1192005-06-23 22:02:14 -0700255 osm_warn("%s: Bogus reply in POST WAIT (tr-context: %08x)!\n", c->name,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 context);
257
258 return -1;
259};
260
261/**
Markus Lidelf10378f2005-06-23 22:02:16 -0700262 * i2o_exec_show_vendor_id - Displays Vendor ID of controller
263 * @d: device of which the Vendor ID should be displayed
264 * @buf: buffer into which the Vendor ID should be printed
265 *
266 * Returns number of bytes printed into buffer.
267 */
Markus Lidela1a5ea72006-01-06 00:19:29 -0800268static ssize_t i2o_exec_show_vendor_id(struct device *d,
269 struct device_attribute *attr, char *buf)
Markus Lidelf10378f2005-06-23 22:02:16 -0700270{
271 struct i2o_device *dev = to_i2o_device(d);
272 u16 id;
273
Markus Lidel793fd152006-01-06 00:19:30 -0800274 if (!i2o_parm_field_get(dev, 0x0000, 0, &id, 2)) {
275 sprintf(buf, "0x%04x", le16_to_cpu(id));
Markus Lidelf10378f2005-06-23 22:02:16 -0700276 return strlen(buf) + 1;
277 }
278
279 return 0;
280};
281
282/**
283 * i2o_exec_show_product_id - Displays Product ID of controller
284 * @d: device of which the Product ID should be displayed
285 * @buf: buffer into which the Product ID should be printed
286 *
287 * Returns number of bytes printed into buffer.
288 */
Markus Lidela1a5ea72006-01-06 00:19:29 -0800289static ssize_t i2o_exec_show_product_id(struct device *d,
290 struct device_attribute *attr,
291 char *buf)
Markus Lidelf10378f2005-06-23 22:02:16 -0700292{
293 struct i2o_device *dev = to_i2o_device(d);
294 u16 id;
295
Markus Lidel793fd152006-01-06 00:19:30 -0800296 if (!i2o_parm_field_get(dev, 0x0000, 1, &id, 2)) {
297 sprintf(buf, "0x%04x", le16_to_cpu(id));
Markus Lidelf10378f2005-06-23 22:02:16 -0700298 return strlen(buf) + 1;
299 }
300
301 return 0;
302};
303
304/* Exec-OSM device attributes */
305static DEVICE_ATTR(vendor_id, S_IRUGO, i2o_exec_show_vendor_id, NULL);
306static DEVICE_ATTR(product_id, S_IRUGO, i2o_exec_show_product_id, NULL);
307
308/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 * i2o_exec_probe - Called if a new I2O device (executive class) appears
310 * @dev: I2O device which should be probed
311 *
312 * Registers event notification for every event from Executive device. The
313 * return is always 0, because we want all devices of class Executive.
314 *
315 * Returns 0 on success.
316 */
317static int i2o_exec_probe(struct device *dev)
318{
319 struct i2o_device *i2o_dev = to_i2o_device(dev);
Markus Lidelf10378f2005-06-23 22:02:16 -0700320 struct i2o_controller *c = i2o_dev->iop;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321
322 i2o_event_register(i2o_dev, &i2o_exec_driver, 0, 0xffffffff);
323
Markus Lidelf10378f2005-06-23 22:02:16 -0700324 c->exec = i2o_dev;
325
326 i2o_exec_lct_notify(c, c->lct->change_ind + 1);
327
328 device_create_file(dev, &dev_attr_vendor_id);
329 device_create_file(dev, &dev_attr_product_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330
331 return 0;
332};
333
334/**
335 * i2o_exec_remove - Called on I2O device removal
336 * @dev: I2O device which was removed
337 *
338 * Unregisters event notification from Executive I2O device.
339 *
340 * Returns 0 on success.
341 */
342static int i2o_exec_remove(struct device *dev)
343{
Markus Lidelf10378f2005-06-23 22:02:16 -0700344 device_remove_file(dev, &dev_attr_product_id);
345 device_remove_file(dev, &dev_attr_vendor_id);
346
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 i2o_event_register(to_i2o_device(dev), &i2o_exec_driver, 0, 0);
348
349 return 0;
350};
351
352/**
353 * i2o_exec_lct_modified - Called on LCT NOTIFY reply
354 * @c: I2O controller on which the LCT has modified
355 *
356 * This function handles asynchronus LCT NOTIFY replies. It parses the
357 * new LCT and if the buffer for the LCT was to small sends a LCT NOTIFY
Markus Lidelf10378f2005-06-23 22:02:16 -0700358 * again, otherwise send LCT NOTIFY to get informed on next LCT change.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 */
360static void i2o_exec_lct_modified(struct i2o_controller *c)
361{
Markus Lidelf10378f2005-06-23 22:02:16 -0700362 u32 change_ind = 0;
363
364 if (i2o_device_parse_lct(c) != -EAGAIN)
365 change_ind = c->lct->change_ind + 1;
366
Markus Lidel793fd152006-01-06 00:19:30 -0800367#ifdef CONFIG_I2O_LCT_NOTIFY_ON_CHANGES
Markus Lidelf10378f2005-06-23 22:02:16 -0700368 i2o_exec_lct_notify(c, change_ind);
Markus Lidel793fd152006-01-06 00:19:30 -0800369#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370};
371
372/**
373 * i2o_exec_reply - I2O Executive reply handler
374 * @c: I2O controller from which the reply comes
375 * @m: message id
376 * @msg: pointer to the I2O reply message
377 *
378 * This function is always called from interrupt context. If a POST WAIT
379 * reply was received, pass it to the complete function. If a LCT NOTIFY
380 * reply was received, a new event is created to handle the update.
381 *
382 * Returns 0 on success and if the reply should not be flushed or > 0
383 * on success and if the reply should be flushed. Returns negative error
384 * code on failure and if the reply should be flushed.
385 */
386static int i2o_exec_reply(struct i2o_controller *c, u32 m,
Markus Lidel9e875452005-06-23 22:02:21 -0700387 struct i2o_message *msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388{
Markus Lidelf88e1192005-06-23 22:02:14 -0700389 u32 context;
390
Markus Lidel9e875452005-06-23 22:02:21 -0700391 if (le32_to_cpu(msg->u.head[0]) & MSG_FAIL) {
Markus Lidela1a5ea72006-01-06 00:19:29 -0800392 struct i2o_message __iomem *pmsg;
393 u32 pm;
394
Markus Lidelf88e1192005-06-23 22:02:14 -0700395 /*
396 * If Fail bit is set we must take the transaction context of
397 * the preserved message to find the right request again.
398 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399
Markus Lidel9e875452005-06-23 22:02:21 -0700400 pm = le32_to_cpu(msg->body[3]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 pmsg = i2o_msg_in_to_virt(c, pm);
Markus Lidela1a5ea72006-01-06 00:19:29 -0800402 context = readl(&pmsg->u.s.tcntxt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403
404 i2o_report_status(KERN_INFO, "i2o_core", msg);
405
Markus Lidelf88e1192005-06-23 22:02:14 -0700406 /* Release the preserved msg */
Markus Lidela1a5ea72006-01-06 00:19:29 -0800407 i2o_msg_nop_mfa(c, pm);
Markus Lidelf88e1192005-06-23 22:02:14 -0700408 } else
Markus Lidel9e875452005-06-23 22:02:21 -0700409 context = le32_to_cpu(msg->u.s.tcntxt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410
Markus Lidelf88e1192005-06-23 22:02:14 -0700411 if (context & 0x80000000)
412 return i2o_msg_post_wait_complete(c, m, msg, context);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413
Markus Lidel9e875452005-06-23 22:02:21 -0700414 if ((le32_to_cpu(msg->u.head[1]) >> 24) == I2O_CMD_LCT_NOTIFY) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 struct work_struct *work;
416
417 pr_debug("%s: LCT notify received\n", c->name);
418
419 work = kmalloc(sizeof(*work), GFP_ATOMIC);
420 if (!work)
421 return -ENOMEM;
422
423 INIT_WORK(work, (void (*)(void *))i2o_exec_lct_modified, c);
424 queue_work(i2o_exec_driver.event_queue, work);
425 return 1;
426 }
427
428 /*
429 * If this happens, we want to dump the message to the syslog so
430 * it can be sent back to the card manufacturer by the end user
431 * to aid in debugging.
432 *
433 */
434 printk(KERN_WARNING "%s: Unsolicited message reply sent to core!"
435 "Message dumped to syslog\n", c->name);
436 i2o_dump_message(msg);
437
438 return -EFAULT;
439}
440
441/**
442 * i2o_exec_event - Event handling function
443 * @evt: Event which occurs
444 *
445 * Handles events send by the Executive device. At the moment does not do
446 * anything useful.
447 */
448static void i2o_exec_event(struct i2o_event *evt)
449{
Markus Lidel9e875452005-06-23 22:02:21 -0700450 if (likely(evt->i2o_dev))
451 osm_debug("Event received from device: %d\n",
452 evt->i2o_dev->lct_data.tid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 kfree(evt);
454};
455
456/**
457 * i2o_exec_lct_get - Get the IOP's Logical Configuration Table
458 * @c: I2O controller from which the LCT should be fetched
459 *
460 * Send a LCT NOTIFY request to the controller, and wait
461 * I2O_TIMEOUT_LCT_GET seconds until arrival of response. If the LCT is
462 * to large, retry it.
463 *
464 * Returns 0 on success or negative error code on failure.
465 */
466int i2o_exec_lct_get(struct i2o_controller *c)
467{
Markus Lidela1a5ea72006-01-06 00:19:29 -0800468 struct i2o_message *msg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 int i = 0;
470 int rc = -EAGAIN;
471
472 for (i = 1; i <= I2O_LCT_GET_TRIES; i++) {
Markus Lidela1a5ea72006-01-06 00:19:29 -0800473 msg = i2o_msg_get_wait(c, I2O_TIMEOUT_MESSAGE_GET);
474 if (IS_ERR(msg))
475 return PTR_ERR(msg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476
Markus Lidela1a5ea72006-01-06 00:19:29 -0800477 msg->u.head[0] =
478 cpu_to_le32(EIGHT_WORD_MSG_SIZE | SGL_OFFSET_6);
479 msg->u.head[1] =
480 cpu_to_le32(I2O_CMD_LCT_NOTIFY << 24 | HOST_TID << 12 |
481 ADAPTER_TID);
482 msg->body[0] = cpu_to_le32(0xffffffff);
483 msg->body[1] = cpu_to_le32(0x00000000);
484 msg->body[2] = cpu_to_le32(0xd0000000 | c->dlct.len);
485 msg->body[3] = cpu_to_le32(c->dlct.phys);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486
Markus Lidela1a5ea72006-01-06 00:19:29 -0800487 rc = i2o_msg_post_wait(c, msg, I2O_TIMEOUT_LCT_GET);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 if (rc < 0)
489 break;
490
491 rc = i2o_device_parse_lct(c);
492 if (rc != -EAGAIN)
493 break;
494 }
495
496 return rc;
497}
498
499/**
500 * i2o_exec_lct_notify - Send a asynchronus LCT NOTIFY request
501 * @c: I2O controller to which the request should be send
502 * @change_ind: change indicator
503 *
504 * This function sends a LCT NOTIFY request to the I2O controller with
505 * the change indicator change_ind. If the change_ind == 0 the controller
506 * replies immediately after the request. If change_ind > 0 the reply is
507 * send after change indicator of the LCT is > change_ind.
508 */
509static int i2o_exec_lct_notify(struct i2o_controller *c, u32 change_ind)
510{
511 i2o_status_block *sb = c->status_block.virt;
512 struct device *dev;
Markus Lidela1a5ea72006-01-06 00:19:29 -0800513 struct i2o_message *msg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514
515 dev = &c->pdev->dev;
516
Markus Lidel793fd152006-01-06 00:19:30 -0800517 if (i2o_dma_realloc
518 (dev, &c->dlct, le32_to_cpu(sb->expected_lct_size), GFP_KERNEL))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 return -ENOMEM;
520
Markus Lidela1a5ea72006-01-06 00:19:29 -0800521 msg = i2o_msg_get_wait(c, I2O_TIMEOUT_MESSAGE_GET);
522 if (IS_ERR(msg))
523 return PTR_ERR(msg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524
Markus Lidela1a5ea72006-01-06 00:19:29 -0800525 msg->u.head[0] = cpu_to_le32(EIGHT_WORD_MSG_SIZE | SGL_OFFSET_6);
526 msg->u.head[1] = cpu_to_le32(I2O_CMD_LCT_NOTIFY << 24 | HOST_TID << 12 |
527 ADAPTER_TID);
528 msg->u.s.icntxt = cpu_to_le32(i2o_exec_driver.context);
529 msg->u.s.tcntxt = cpu_to_le32(0x00000000);
530 msg->body[0] = cpu_to_le32(0xffffffff);
531 msg->body[1] = cpu_to_le32(change_ind);
532 msg->body[2] = cpu_to_le32(0xd0000000 | c->dlct.len);
533 msg->body[3] = cpu_to_le32(c->dlct.phys);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534
Markus Lidela1a5ea72006-01-06 00:19:29 -0800535 i2o_msg_post(c, msg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536
537 return 0;
538};
539
540/* Exec OSM driver struct */
541struct i2o_driver i2o_exec_driver = {
542 .name = OSM_NAME,
543 .reply = i2o_exec_reply,
544 .event = i2o_exec_event,
545 .classes = i2o_exec_class_id,
546 .driver = {
547 .probe = i2o_exec_probe,
548 .remove = i2o_exec_remove,
549 },
550};
551
552/**
553 * i2o_exec_init - Registers the Exec OSM
554 *
555 * Registers the Exec OSM in the I2O core.
556 *
557 * Returns 0 on success or negative error code on failure.
558 */
559int __init i2o_exec_init(void)
560{
561 return i2o_driver_register(&i2o_exec_driver);
562};
563
564/**
565 * i2o_exec_exit - Removes the Exec OSM
566 *
567 * Unregisters the Exec OSM from the I2O core.
568 */
569void __exit i2o_exec_exit(void)
570{
571 i2o_driver_unregister(&i2o_exec_driver);
572};
573
574EXPORT_SYMBOL(i2o_msg_post_wait_mem);
575EXPORT_SYMBOL(i2o_exec_lct_get);