blob: 0160221c802a3068c051fc1bc5362a7ff3635d8c [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>
33
34#define OSM_NAME "exec-osm"
35
36struct i2o_driver i2o_exec_driver;
37
38static int i2o_exec_lct_notify(struct i2o_controller *c, u32 change_ind);
39
40/* Module internal functions from other sources */
41extern int i2o_device_parse_lct(struct i2o_controller *);
42
43/* global wait list for POST WAIT */
44static LIST_HEAD(i2o_exec_wait_list);
45
46/* Wait struct needed for POST WAIT */
47struct i2o_exec_wait {
48 wait_queue_head_t *wq; /* Pointer to Wait queue */
49 struct i2o_dma dma; /* DMA buffers to free on failure */
50 u32 tcntxt; /* transaction context from reply */
51 int complete; /* 1 if reply received otherwise 0 */
52 u32 m; /* message id */
53 struct i2o_message __iomem *msg; /* pointer to the reply message */
54 struct list_head list; /* node in global wait list */
55};
56
57/* Exec OSM class handling definition */
58static struct i2o_class_id i2o_exec_class_id[] = {
59 {I2O_CLASS_EXECUTIVE},
60 {I2O_CLASS_END}
61};
62
63/**
64 * i2o_exec_wait_alloc - Allocate a i2o_exec_wait struct an initialize it
65 *
66 * Allocate the i2o_exec_wait struct and initialize the wait.
67 *
68 * Returns i2o_exec_wait pointer on success or negative error code on
69 * failure.
70 */
71static struct i2o_exec_wait *i2o_exec_wait_alloc(void)
72{
73 struct i2o_exec_wait *wait;
74
75 wait = kmalloc(sizeof(*wait), GFP_KERNEL);
76 if (!wait)
77 return ERR_PTR(-ENOMEM);
78
79 memset(wait, 0, sizeof(*wait));
80
81 INIT_LIST_HEAD(&wait->list);
82
83 return wait;
84};
85
86/**
87 * i2o_exec_wait_free - Free a i2o_exec_wait struct
88 * @i2o_exec_wait: I2O wait data which should be cleaned up
89 */
90static void i2o_exec_wait_free(struct i2o_exec_wait *wait)
91{
92 kfree(wait);
93};
94
95/**
96 * i2o_msg_post_wait_mem - Post and wait a message with DMA buffers
97 * @c: controller
98 * @m: message to post
99 * @timeout: time in seconds to wait
100 * @dma: i2o_dma struct of the DMA buffer to free on failure
101 *
102 * This API allows an OSM to post a message and then be told whether or
103 * not the system received a successful reply. If the message times out
104 * then the value '-ETIMEDOUT' is returned. This is a special case. In
105 * this situation the message may (should) complete at an indefinite time
106 * in the future. When it completes it will use the memory buffer
107 * attached to the request. If -ETIMEDOUT is returned then the memory
108 * buffer must not be freed. Instead the event completion will free them
109 * for you. In all other cases the buffer are your problem.
110 *
Markus Lidelf88e1192005-06-23 22:02:14 -0700111 * Returns 0 on success, negative error code on timeout or positive error
112 * code from reply.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 */
114int i2o_msg_post_wait_mem(struct i2o_controller *c, u32 m, unsigned long
115 timeout, struct i2o_dma *dma)
116{
117 DECLARE_WAIT_QUEUE_HEAD(wq);
118 struct i2o_exec_wait *wait;
119 static u32 tcntxt = 0x80000000;
Markus Lidelf88e1192005-06-23 22:02:14 -0700120 struct i2o_message __iomem *msg = i2o_msg_in_to_virt(c, m);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121 int rc = 0;
122
123 wait = i2o_exec_wait_alloc();
124 if (!wait)
125 return -ENOMEM;
126
127 if (tcntxt == 0xffffffff)
128 tcntxt = 0x80000000;
129
130 if (dma)
131 wait->dma = *dma;
132
133 /*
134 * Fill in the message initiator context and transaction context.
135 * We will only use transaction contexts >= 0x80000000 for POST WAIT,
136 * so we could find a POST WAIT reply easier in the reply handler.
137 */
138 writel(i2o_exec_driver.context, &msg->u.s.icntxt);
139 wait->tcntxt = tcntxt++;
140 writel(wait->tcntxt, &msg->u.s.tcntxt);
141
142 /*
143 * Post the message to the controller. At some point later it will
144 * return. If we time out before it returns then complete will be zero.
145 */
146 i2o_msg_post(c, m);
147
148 if (!wait->complete) {
149 wait->wq = &wq;
150 /*
151 * we add elements add the head, because if a entry in the list
152 * will never be removed, we have to iterate over it every time
153 */
154 list_add(&wait->list, &i2o_exec_wait_list);
155
156 wait_event_interruptible_timeout(wq, wait->complete,
157 timeout * HZ);
158
159 wait->wq = NULL;
160 }
161
162 barrier();
163
164 if (wait->complete) {
Markus Lidelf88e1192005-06-23 22:02:14 -0700165 rc = readl(&wait->msg->body[0]) >> 24;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 i2o_flush_reply(c, wait->m);
167 i2o_exec_wait_free(wait);
168 } else {
169 /*
170 * We cannot remove it now. This is important. When it does
171 * terminate (which it must do if the controller has not
172 * died...) then it will otherwise scribble on stuff.
173 *
174 * FIXME: try abort message
175 */
176 if (dma)
177 dma->virt = NULL;
178
179 rc = -ETIMEDOUT;
180 }
181
182 return rc;
183};
184
185/**
186 * i2o_msg_post_wait_complete - Reply to a i2o_msg_post request from IOP
187 * @c: I2O controller which answers
188 * @m: message id
189 * @msg: pointer to the I2O reply message
Markus Lidelf88e1192005-06-23 22:02:14 -0700190 * @context: transaction context of request
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 *
192 * This function is called in interrupt context only. If the reply reached
193 * before the timeout, the i2o_exec_wait struct is filled with the message
194 * and the task will be waked up. The task is now responsible for returning
195 * the message m back to the controller! If the message reaches us after
196 * the timeout clean up the i2o_exec_wait struct (including allocated
197 * DMA buffer).
198 *
199 * Return 0 on success and if the message m should not be given back to the
200 * I2O controller, or >0 on success and if the message should be given back
201 * afterwords. Returns negative error code on failure. In this case the
202 * message must also be given back to the controller.
203 */
204static int i2o_msg_post_wait_complete(struct i2o_controller *c, u32 m,
Markus Lidelf88e1192005-06-23 22:02:14 -0700205 struct i2o_message __iomem *msg,
206 u32 context)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207{
208 struct i2o_exec_wait *wait, *tmp;
Markus Lidelf10378f2005-06-23 22:02:16 -0700209 unsigned long flags;
Markus Lidel61fbfa82005-06-23 22:02:11 -0700210 static spinlock_t lock = SPIN_LOCK_UNLOCKED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 int rc = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212
213 /*
214 * We need to search through the i2o_exec_wait_list to see if the given
215 * message is still outstanding. If not, it means that the IOP took
216 * longer to respond to the message than we had allowed and timer has
217 * already expired. Not much we can do about that except log it for
218 * debug purposes, increase timeout, and recompile.
219 */
Markus Lidelf10378f2005-06-23 22:02:16 -0700220 spin_lock_irqsave(&lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221 list_for_each_entry_safe(wait, tmp, &i2o_exec_wait_list, list) {
222 if (wait->tcntxt == context) {
223 list_del(&wait->list);
224
Markus Lidelf10378f2005-06-23 22:02:16 -0700225 spin_unlock_irqrestore(&lock, flags);
226
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 wait->m = m;
228 wait->msg = msg;
229 wait->complete = 1;
230
231 barrier();
232
233 if (wait->wq) {
234 wake_up_interruptible(wait->wq);
235 rc = 0;
236 } else {
237 struct device *dev;
238
239 dev = &c->pdev->dev;
240
241 pr_debug("%s: timedout reply received!\n",
242 c->name);
243 i2o_dma_free(dev, &wait->dma);
244 i2o_exec_wait_free(wait);
245 rc = -1;
246 }
247
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 return rc;
249 }
250 }
251
Markus Lidelf10378f2005-06-23 22:02:16 -0700252 spin_unlock_irqrestore(&lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253
Markus Lidelf88e1192005-06-23 22:02:14 -0700254 osm_warn("%s: Bogus reply in POST WAIT (tr-context: %08x)!\n", c->name,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 context);
256
257 return -1;
258};
259
260/**
Markus Lidelf10378f2005-06-23 22:02:16 -0700261 * i2o_exec_show_vendor_id - Displays Vendor ID of controller
262 * @d: device of which the Vendor ID should be displayed
263 * @buf: buffer into which the Vendor ID should be printed
264 *
265 * Returns number of bytes printed into buffer.
266 */
267static ssize_t i2o_exec_show_vendor_id(struct device *d, char *buf)
268{
269 struct i2o_device *dev = to_i2o_device(d);
270 u16 id;
271
272 if (i2o_parm_field_get(dev, 0x0000, 0, &id, 2)) {
273 sprintf(buf, "0x%04x", id);
274 return strlen(buf) + 1;
275 }
276
277 return 0;
278};
279
280/**
281 * i2o_exec_show_product_id - Displays Product ID of controller
282 * @d: device of which the Product ID should be displayed
283 * @buf: buffer into which the Product ID should be printed
284 *
285 * Returns number of bytes printed into buffer.
286 */
287static ssize_t i2o_exec_show_product_id(struct device *d, char *buf)
288{
289 struct i2o_device *dev = to_i2o_device(d);
290 u16 id;
291
292 if (i2o_parm_field_get(dev, 0x0000, 1, &id, 2)) {
293 sprintf(buf, "0x%04x", id);
294 return strlen(buf) + 1;
295 }
296
297 return 0;
298};
299
300/* Exec-OSM device attributes */
301static DEVICE_ATTR(vendor_id, S_IRUGO, i2o_exec_show_vendor_id, NULL);
302static DEVICE_ATTR(product_id, S_IRUGO, i2o_exec_show_product_id, NULL);
303
304/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 * i2o_exec_probe - Called if a new I2O device (executive class) appears
306 * @dev: I2O device which should be probed
307 *
308 * Registers event notification for every event from Executive device. The
309 * return is always 0, because we want all devices of class Executive.
310 *
311 * Returns 0 on success.
312 */
313static int i2o_exec_probe(struct device *dev)
314{
315 struct i2o_device *i2o_dev = to_i2o_device(dev);
Markus Lidelf10378f2005-06-23 22:02:16 -0700316 struct i2o_controller *c = i2o_dev->iop;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317
318 i2o_event_register(i2o_dev, &i2o_exec_driver, 0, 0xffffffff);
319
Markus Lidelf10378f2005-06-23 22:02:16 -0700320 c->exec = i2o_dev;
321
322 i2o_exec_lct_notify(c, c->lct->change_ind + 1);
323
324 device_create_file(dev, &dev_attr_vendor_id);
325 device_create_file(dev, &dev_attr_product_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326
327 return 0;
328};
329
330/**
331 * i2o_exec_remove - Called on I2O device removal
332 * @dev: I2O device which was removed
333 *
334 * Unregisters event notification from Executive I2O device.
335 *
336 * Returns 0 on success.
337 */
338static int i2o_exec_remove(struct device *dev)
339{
Markus Lidelf10378f2005-06-23 22:02:16 -0700340 device_remove_file(dev, &dev_attr_product_id);
341 device_remove_file(dev, &dev_attr_vendor_id);
342
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 i2o_event_register(to_i2o_device(dev), &i2o_exec_driver, 0, 0);
344
345 return 0;
346};
347
348/**
349 * i2o_exec_lct_modified - Called on LCT NOTIFY reply
350 * @c: I2O controller on which the LCT has modified
351 *
352 * This function handles asynchronus LCT NOTIFY replies. It parses the
353 * new LCT and if the buffer for the LCT was to small sends a LCT NOTIFY
Markus Lidelf10378f2005-06-23 22:02:16 -0700354 * again, otherwise send LCT NOTIFY to get informed on next LCT change.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 */
356static void i2o_exec_lct_modified(struct i2o_controller *c)
357{
Markus Lidelf10378f2005-06-23 22:02:16 -0700358 u32 change_ind = 0;
359
360 if (i2o_device_parse_lct(c) != -EAGAIN)
361 change_ind = c->lct->change_ind + 1;
362
363 i2o_exec_lct_notify(c, change_ind);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364};
365
366/**
367 * i2o_exec_reply - I2O Executive reply handler
368 * @c: I2O controller from which the reply comes
369 * @m: message id
370 * @msg: pointer to the I2O reply message
371 *
372 * This function is always called from interrupt context. If a POST WAIT
373 * reply was received, pass it to the complete function. If a LCT NOTIFY
374 * reply was received, a new event is created to handle the update.
375 *
376 * Returns 0 on success and if the reply should not be flushed or > 0
377 * on success and if the reply should be flushed. Returns negative error
378 * code on failure and if the reply should be flushed.
379 */
380static int i2o_exec_reply(struct i2o_controller *c, u32 m,
Markus Lidelf88e1192005-06-23 22:02:14 -0700381 struct i2o_message __iomem *msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382{
Markus Lidelf88e1192005-06-23 22:02:14 -0700383 u32 context;
384
385 if (readl(&msg->u.head[0]) & MSG_FAIL) {
386 /*
387 * If Fail bit is set we must take the transaction context of
388 * the preserved message to find the right request again.
389 */
390 struct i2o_message __iomem *pmsg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391 u32 pm;
392
Markus Lidelf88e1192005-06-23 22:02:14 -0700393 pm = readl(&msg->body[3]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394
395 pmsg = i2o_msg_in_to_virt(c, pm);
396
397 i2o_report_status(KERN_INFO, "i2o_core", msg);
398
Markus Lidelf88e1192005-06-23 22:02:14 -0700399 context = readl(&pmsg->u.s.tcntxt);
400
401 /* Release the preserved msg */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 i2o_msg_nop(c, pm);
Markus Lidelf88e1192005-06-23 22:02:14 -0700403 } else
404 context = readl(&msg->u.s.tcntxt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405
Markus Lidelf88e1192005-06-23 22:02:14 -0700406 if (context & 0x80000000)
407 return i2o_msg_post_wait_complete(c, m, msg, context);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408
Markus Lidelf88e1192005-06-23 22:02:14 -0700409 if ((readl(&msg->u.head[1]) >> 24) == I2O_CMD_LCT_NOTIFY) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 struct work_struct *work;
411
412 pr_debug("%s: LCT notify received\n", c->name);
413
414 work = kmalloc(sizeof(*work), GFP_ATOMIC);
415 if (!work)
416 return -ENOMEM;
417
418 INIT_WORK(work, (void (*)(void *))i2o_exec_lct_modified, c);
419 queue_work(i2o_exec_driver.event_queue, work);
420 return 1;
421 }
422
423 /*
424 * If this happens, we want to dump the message to the syslog so
425 * it can be sent back to the card manufacturer by the end user
426 * to aid in debugging.
427 *
428 */
429 printk(KERN_WARNING "%s: Unsolicited message reply sent to core!"
430 "Message dumped to syslog\n", c->name);
431 i2o_dump_message(msg);
432
433 return -EFAULT;
434}
435
436/**
437 * i2o_exec_event - Event handling function
438 * @evt: Event which occurs
439 *
440 * Handles events send by the Executive device. At the moment does not do
441 * anything useful.
442 */
443static void i2o_exec_event(struct i2o_event *evt)
444{
Markus Lidel61fbfa82005-06-23 22:02:11 -0700445 if(likely(evt->i2o_dev))
446 osm_info("Event received from device: %d\n",
447 evt->i2o_dev->lct_data.tid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 kfree(evt);
449};
450
451/**
452 * i2o_exec_lct_get - Get the IOP's Logical Configuration Table
453 * @c: I2O controller from which the LCT should be fetched
454 *
455 * Send a LCT NOTIFY request to the controller, and wait
456 * I2O_TIMEOUT_LCT_GET seconds until arrival of response. If the LCT is
457 * to large, retry it.
458 *
459 * Returns 0 on success or negative error code on failure.
460 */
461int i2o_exec_lct_get(struct i2o_controller *c)
462{
463 struct i2o_message __iomem *msg;
464 u32 m;
465 int i = 0;
466 int rc = -EAGAIN;
467
468 for (i = 1; i <= I2O_LCT_GET_TRIES; i++) {
469 m = i2o_msg_get_wait(c, &msg, I2O_TIMEOUT_MESSAGE_GET);
470 if (m == I2O_QUEUE_EMPTY)
471 return -ETIMEDOUT;
472
473 writel(EIGHT_WORD_MSG_SIZE | SGL_OFFSET_6, &msg->u.head[0]);
474 writel(I2O_CMD_LCT_NOTIFY << 24 | HOST_TID << 12 | ADAPTER_TID,
475 &msg->u.head[1]);
476 writel(0xffffffff, &msg->body[0]);
477 writel(0x00000000, &msg->body[1]);
478 writel(0xd0000000 | c->dlct.len, &msg->body[2]);
479 writel(c->dlct.phys, &msg->body[3]);
480
481 rc = i2o_msg_post_wait(c, m, I2O_TIMEOUT_LCT_GET);
482 if (rc < 0)
483 break;
484
485 rc = i2o_device_parse_lct(c);
486 if (rc != -EAGAIN)
487 break;
488 }
489
490 return rc;
491}
492
493/**
494 * i2o_exec_lct_notify - Send a asynchronus LCT NOTIFY request
495 * @c: I2O controller to which the request should be send
496 * @change_ind: change indicator
497 *
498 * This function sends a LCT NOTIFY request to the I2O controller with
499 * the change indicator change_ind. If the change_ind == 0 the controller
500 * replies immediately after the request. If change_ind > 0 the reply is
501 * send after change indicator of the LCT is > change_ind.
502 */
503static int i2o_exec_lct_notify(struct i2o_controller *c, u32 change_ind)
504{
505 i2o_status_block *sb = c->status_block.virt;
506 struct device *dev;
507 struct i2o_message __iomem *msg;
508 u32 m;
509
510 dev = &c->pdev->dev;
511
512 if (i2o_dma_realloc(dev, &c->dlct, sb->expected_lct_size, GFP_KERNEL))
513 return -ENOMEM;
514
515 m = i2o_msg_get_wait(c, &msg, I2O_TIMEOUT_MESSAGE_GET);
516 if (m == I2O_QUEUE_EMPTY)
517 return -ETIMEDOUT;
518
519 writel(EIGHT_WORD_MSG_SIZE | SGL_OFFSET_6, &msg->u.head[0]);
520 writel(I2O_CMD_LCT_NOTIFY << 24 | HOST_TID << 12 | ADAPTER_TID,
521 &msg->u.head[1]);
522 writel(i2o_exec_driver.context, &msg->u.s.icntxt);
523 writel(0, &msg->u.s.tcntxt); /* FIXME */
524 writel(0xffffffff, &msg->body[0]);
525 writel(change_ind, &msg->body[1]);
526 writel(0xd0000000 | c->dlct.len, &msg->body[2]);
527 writel(c->dlct.phys, &msg->body[3]);
528
529 i2o_msg_post(c, m);
530
531 return 0;
532};
533
534/* Exec OSM driver struct */
535struct i2o_driver i2o_exec_driver = {
536 .name = OSM_NAME,
537 .reply = i2o_exec_reply,
538 .event = i2o_exec_event,
539 .classes = i2o_exec_class_id,
540 .driver = {
541 .probe = i2o_exec_probe,
542 .remove = i2o_exec_remove,
543 },
544};
545
546/**
547 * i2o_exec_init - Registers the Exec OSM
548 *
549 * Registers the Exec OSM in the I2O core.
550 *
551 * Returns 0 on success or negative error code on failure.
552 */
553int __init i2o_exec_init(void)
554{
555 return i2o_driver_register(&i2o_exec_driver);
556};
557
558/**
559 * i2o_exec_exit - Removes the Exec OSM
560 *
561 * Unregisters the Exec OSM from the I2O core.
562 */
563void __exit i2o_exec_exit(void)
564{
565 i2o_driver_unregister(&i2o_exec_driver);
566};
567
568EXPORT_SYMBOL(i2o_msg_post_wait_mem);
569EXPORT_SYMBOL(i2o_exec_lct_get);