| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* | 
|  | 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 Schmielau | 4e57b68 | 2005-10-30 15:03:48 -0800 | [diff] [blame] | 33 | #include <linux/workqueue.h> | 
|  | 34 | #include <linux/string.h> | 
|  | 35 | #include <linux/slab.h> | 
| Markus Lidel | 524e3b6 | 2006-01-06 00:19:34 -0800 | [diff] [blame] | 36 | #include <linux/sched.h>	/* wait_event_interruptible_timeout() needs this */ | 
| Tim Schmielau | 4e57b68 | 2005-10-30 15:03:48 -0800 | [diff] [blame] | 37 | #include <asm/param.h>		/* HZ */ | 
| Markus Lidel | 9e87545 | 2005-06-23 22:02:21 -0700 | [diff] [blame] | 38 | #include "core.h" | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 39 |  | 
|  | 40 | #define OSM_NAME "exec-osm" | 
|  | 41 |  | 
|  | 42 | struct i2o_driver i2o_exec_driver; | 
|  | 43 |  | 
|  | 44 | static int i2o_exec_lct_notify(struct i2o_controller *c, u32 change_ind); | 
|  | 45 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 46 | /* global wait list for POST WAIT */ | 
|  | 47 | static LIST_HEAD(i2o_exec_wait_list); | 
|  | 48 |  | 
|  | 49 | /* Wait struct needed for POST WAIT */ | 
|  | 50 | struct 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 Lidel | 9e87545 | 2005-06-23 22:02:21 -0700 | [diff] [blame] | 56 | struct i2o_message *msg;	/* pointer to the reply message */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 57 | struct list_head list;	/* node in global wait list */ | 
| Markus Lidel | 57a62fe | 2006-06-10 09:54:14 -0700 | [diff] [blame] | 58 | spinlock_t lock;	/* lock before modifying */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 59 | }; | 
|  | 60 |  | 
| Vasily Averin | 071a651 | 2006-03-05 23:18:14 +0100 | [diff] [blame] | 61 | /* Work struct needed to handle LCT NOTIFY replies */ | 
|  | 62 | struct i2o_exec_lct_notify_work { | 
|  | 63 | struct work_struct work;	/* work struct */ | 
|  | 64 | struct i2o_controller *c;	/* controller on which the LCT NOTIFY | 
|  | 65 | was received */ | 
|  | 66 | }; | 
|  | 67 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 68 | /* Exec OSM class handling definition */ | 
|  | 69 | static struct i2o_class_id i2o_exec_class_id[] = { | 
|  | 70 | {I2O_CLASS_EXECUTIVE}, | 
|  | 71 | {I2O_CLASS_END} | 
|  | 72 | }; | 
|  | 73 |  | 
|  | 74 | /** | 
|  | 75 | *	i2o_exec_wait_alloc - Allocate a i2o_exec_wait struct an initialize it | 
|  | 76 | * | 
|  | 77 | *	Allocate the i2o_exec_wait struct and initialize the wait. | 
|  | 78 | * | 
|  | 79 | *	Returns i2o_exec_wait pointer on success or negative error code on | 
|  | 80 | *	failure. | 
|  | 81 | */ | 
|  | 82 | static struct i2o_exec_wait *i2o_exec_wait_alloc(void) | 
|  | 83 | { | 
|  | 84 | struct i2o_exec_wait *wait; | 
|  | 85 |  | 
| Markus Lidel | f6ed39a | 2006-01-06 00:19:33 -0800 | [diff] [blame] | 86 | wait = kzalloc(sizeof(*wait), GFP_KERNEL); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 87 | if (!wait) | 
| Markus Lidel | 793fd15 | 2006-01-06 00:19:30 -0800 | [diff] [blame] | 88 | return NULL; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 89 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 90 | INIT_LIST_HEAD(&wait->list); | 
| Markus Lidel | 57a62fe | 2006-06-10 09:54:14 -0700 | [diff] [blame] | 91 | spin_lock_init(&wait->lock); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 92 |  | 
|  | 93 | return wait; | 
|  | 94 | }; | 
|  | 95 |  | 
|  | 96 | /** | 
| Randy Dunlap | d9489fb | 2006-12-06 20:38:43 -0800 | [diff] [blame] | 97 | *	i2o_exec_wait_free - Free an i2o_exec_wait struct | 
|  | 98 | *	@wait: I2O wait data which should be cleaned up | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 99 | */ | 
|  | 100 | static void i2o_exec_wait_free(struct i2o_exec_wait *wait) | 
|  | 101 | { | 
|  | 102 | kfree(wait); | 
|  | 103 | }; | 
|  | 104 |  | 
|  | 105 | /** | 
|  | 106 | * 	i2o_msg_post_wait_mem - Post and wait a message with DMA buffers | 
|  | 107 | *	@c: controller | 
| Randy Dunlap | d9489fb | 2006-12-06 20:38:43 -0800 | [diff] [blame] | 108 | *	@msg: message to post | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 109 | *	@timeout: time in seconds to wait | 
|  | 110 | *	@dma: i2o_dma struct of the DMA buffer to free on failure | 
|  | 111 | * | 
|  | 112 | * 	This API allows an OSM to post a message and then be told whether or | 
|  | 113 | *	not the system received a successful reply. If the message times out | 
|  | 114 | *	then the value '-ETIMEDOUT' is returned. This is a special case. In | 
|  | 115 | *	this situation the message may (should) complete at an indefinite time | 
|  | 116 | *	in the future. When it completes it will use the memory buffer | 
|  | 117 | *	attached to the request. If -ETIMEDOUT is returned then the memory | 
|  | 118 | *	buffer must not be freed. Instead the event completion will free them | 
|  | 119 | *	for you. In all other cases the buffer are your problem. | 
|  | 120 | * | 
| Markus Lidel | f88e119 | 2005-06-23 22:02:14 -0700 | [diff] [blame] | 121 | *	Returns 0 on success, negative error code on timeout or positive error | 
|  | 122 | *	code from reply. | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 123 | */ | 
| Markus Lidel | a1a5ea7 | 2006-01-06 00:19:29 -0800 | [diff] [blame] | 124 | int i2o_msg_post_wait_mem(struct i2o_controller *c, struct i2o_message *msg, | 
|  | 125 | unsigned long timeout, struct i2o_dma *dma) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 126 | { | 
| Peter Zijlstra | 7259f0d | 2006-10-29 22:46:36 -0800 | [diff] [blame] | 127 | DECLARE_WAIT_QUEUE_HEAD_ONSTACK(wq); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 128 | struct i2o_exec_wait *wait; | 
|  | 129 | static u32 tcntxt = 0x80000000; | 
| Alexey Dobriyan | 8a7822a | 2006-10-21 10:24:17 -0700 | [diff] [blame] | 130 | unsigned long flags; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 131 | int rc = 0; | 
|  | 132 |  | 
|  | 133 | wait = i2o_exec_wait_alloc(); | 
| Vasily Averin | 3d0fd33 | 2007-07-17 04:04:26 -0700 | [diff] [blame] | 134 | if (!wait) { | 
|  | 135 | i2o_msg_nop(c, msg); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 136 | return -ENOMEM; | 
| Vasily Averin | 3d0fd33 | 2007-07-17 04:04:26 -0700 | [diff] [blame] | 137 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 138 |  | 
|  | 139 | if (tcntxt == 0xffffffff) | 
|  | 140 | tcntxt = 0x80000000; | 
|  | 141 |  | 
|  | 142 | if (dma) | 
|  | 143 | wait->dma = *dma; | 
|  | 144 |  | 
|  | 145 | /* | 
|  | 146 | * Fill in the message initiator context and transaction context. | 
|  | 147 | * We will only use transaction contexts >= 0x80000000 for POST WAIT, | 
|  | 148 | * so we could find a POST WAIT reply easier in the reply handler. | 
|  | 149 | */ | 
| Markus Lidel | a1a5ea7 | 2006-01-06 00:19:29 -0800 | [diff] [blame] | 150 | msg->u.s.icntxt = cpu_to_le32(i2o_exec_driver.context); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 151 | wait->tcntxt = tcntxt++; | 
| Markus Lidel | a1a5ea7 | 2006-01-06 00:19:29 -0800 | [diff] [blame] | 152 | msg->u.s.tcntxt = cpu_to_le32(wait->tcntxt); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 153 |  | 
| Markus Lidel | 57a62fe | 2006-06-10 09:54:14 -0700 | [diff] [blame] | 154 | wait->wq = &wq; | 
|  | 155 | /* | 
|  | 156 | * we add elements to the head, because if a entry in the list will | 
|  | 157 | * never be removed, we have to iterate over it every time | 
|  | 158 | */ | 
|  | 159 | list_add(&wait->list, &i2o_exec_wait_list); | 
|  | 160 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 161 | /* | 
|  | 162 | * Post the message to the controller. At some point later it will | 
|  | 163 | * return. If we time out before it returns then complete will be zero. | 
|  | 164 | */ | 
| Markus Lidel | a1a5ea7 | 2006-01-06 00:19:29 -0800 | [diff] [blame] | 165 | i2o_msg_post(c, msg); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 166 |  | 
| Markus Lidel | 57a62fe | 2006-06-10 09:54:14 -0700 | [diff] [blame] | 167 | wait_event_interruptible_timeout(wq, wait->complete, timeout * HZ); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 168 |  | 
| Markus Lidel | 57a62fe | 2006-06-10 09:54:14 -0700 | [diff] [blame] | 169 | spin_lock_irqsave(&wait->lock, flags); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 170 |  | 
| Markus Lidel | 57a62fe | 2006-06-10 09:54:14 -0700 | [diff] [blame] | 171 | wait->wq = NULL; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 172 |  | 
| Markus Lidel | 57a62fe | 2006-06-10 09:54:14 -0700 | [diff] [blame] | 173 | if (wait->complete) | 
| Markus Lidel | 9e87545 | 2005-06-23 22:02:21 -0700 | [diff] [blame] | 174 | rc = le32_to_cpu(wait->msg->body[0]) >> 24; | 
| Markus Lidel | 57a62fe | 2006-06-10 09:54:14 -0700 | [diff] [blame] | 175 | else { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 176 | /* | 
|  | 177 | * We cannot remove it now. This is important. When it does | 
|  | 178 | * terminate (which it must do if the controller has not | 
|  | 179 | * died...) then it will otherwise scribble on stuff. | 
|  | 180 | * | 
|  | 181 | * FIXME: try abort message | 
|  | 182 | */ | 
|  | 183 | if (dma) | 
|  | 184 | dma->virt = NULL; | 
|  | 185 |  | 
|  | 186 | rc = -ETIMEDOUT; | 
|  | 187 | } | 
|  | 188 |  | 
| Markus Lidel | 57a62fe | 2006-06-10 09:54:14 -0700 | [diff] [blame] | 189 | spin_unlock_irqrestore(&wait->lock, flags); | 
|  | 190 |  | 
|  | 191 | if (rc != -ETIMEDOUT) { | 
|  | 192 | i2o_flush_reply(c, wait->m); | 
|  | 193 | i2o_exec_wait_free(wait); | 
|  | 194 | } | 
|  | 195 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 196 | return rc; | 
|  | 197 | }; | 
|  | 198 |  | 
|  | 199 | /** | 
|  | 200 | *	i2o_msg_post_wait_complete - Reply to a i2o_msg_post request from IOP | 
|  | 201 | *	@c: I2O controller which answers | 
|  | 202 | *	@m: message id | 
|  | 203 | *	@msg: pointer to the I2O reply message | 
| Markus Lidel | f88e119 | 2005-06-23 22:02:14 -0700 | [diff] [blame] | 204 | *	@context: transaction context of request | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 205 | * | 
|  | 206 | *	This function is called in interrupt context only. If the reply reached | 
|  | 207 | *	before the timeout, the i2o_exec_wait struct is filled with the message | 
|  | 208 | *	and the task will be waked up. The task is now responsible for returning | 
|  | 209 | *	the message m back to the controller! If the message reaches us after | 
|  | 210 | *	the timeout clean up the i2o_exec_wait struct (including allocated | 
|  | 211 | *	DMA buffer). | 
|  | 212 | * | 
|  | 213 | *	Return 0 on success and if the message m should not be given back to the | 
|  | 214 | *	I2O controller, or >0 on success and if the message should be given back | 
|  | 215 | *	afterwords. Returns negative error code on failure. In this case the | 
|  | 216 | *	message must also be given back to the controller. | 
|  | 217 | */ | 
|  | 218 | static int i2o_msg_post_wait_complete(struct i2o_controller *c, u32 m, | 
| Markus Lidel | 9e87545 | 2005-06-23 22:02:21 -0700 | [diff] [blame] | 219 | struct i2o_message *msg, u32 context) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 220 | { | 
|  | 221 | struct i2o_exec_wait *wait, *tmp; | 
| Markus Lidel | f10378f | 2005-06-23 22:02:16 -0700 | [diff] [blame] | 222 | unsigned long flags; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 223 | int rc = 1; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 224 |  | 
|  | 225 | /* | 
|  | 226 | * We need to search through the i2o_exec_wait_list to see if the given | 
|  | 227 | * message is still outstanding. If not, it means that the IOP took | 
|  | 228 | * longer to respond to the message than we had allowed and timer has | 
|  | 229 | * already expired. Not much we can do about that except log it for | 
|  | 230 | * debug purposes, increase timeout, and recompile. | 
|  | 231 | */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 232 | list_for_each_entry_safe(wait, tmp, &i2o_exec_wait_list, list) { | 
|  | 233 | if (wait->tcntxt == context) { | 
| Markus Lidel | 57a62fe | 2006-06-10 09:54:14 -0700 | [diff] [blame] | 234 | spin_lock_irqsave(&wait->lock, flags); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 235 |  | 
| Markus Lidel | 57a62fe | 2006-06-10 09:54:14 -0700 | [diff] [blame] | 236 | list_del(&wait->list); | 
| Markus Lidel | f10378f | 2005-06-23 22:02:16 -0700 | [diff] [blame] | 237 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 238 | wait->m = m; | 
|  | 239 | wait->msg = msg; | 
|  | 240 | wait->complete = 1; | 
|  | 241 |  | 
| Markus Lidel | 57a62fe | 2006-06-10 09:54:14 -0700 | [diff] [blame] | 242 | if (wait->wq) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 243 | rc = 0; | 
| Markus Lidel | 57a62fe | 2006-06-10 09:54:14 -0700 | [diff] [blame] | 244 | else | 
|  | 245 | rc = -1; | 
|  | 246 |  | 
|  | 247 | spin_unlock_irqrestore(&wait->lock, flags); | 
|  | 248 |  | 
|  | 249 | if (rc) { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 250 | struct device *dev; | 
|  | 251 |  | 
|  | 252 | dev = &c->pdev->dev; | 
|  | 253 |  | 
|  | 254 | pr_debug("%s: timedout reply received!\n", | 
|  | 255 | c->name); | 
|  | 256 | i2o_dma_free(dev, &wait->dma); | 
|  | 257 | i2o_exec_wait_free(wait); | 
| Markus Lidel | 57a62fe | 2006-06-10 09:54:14 -0700 | [diff] [blame] | 258 | } else | 
|  | 259 | wake_up_interruptible(wait->wq); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 260 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 261 | return rc; | 
|  | 262 | } | 
|  | 263 | } | 
|  | 264 |  | 
| Markus Lidel | f88e119 | 2005-06-23 22:02:14 -0700 | [diff] [blame] | 265 | osm_warn("%s: Bogus reply in POST WAIT (tr-context: %08x)!\n", c->name, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 266 | context); | 
|  | 267 |  | 
|  | 268 | return -1; | 
|  | 269 | }; | 
|  | 270 |  | 
|  | 271 | /** | 
| Markus Lidel | f10378f | 2005-06-23 22:02:16 -0700 | [diff] [blame] | 272 | *	i2o_exec_show_vendor_id - Displays Vendor ID of controller | 
|  | 273 | *	@d: device of which the Vendor ID should be displayed | 
| Randy Dunlap | d9489fb | 2006-12-06 20:38:43 -0800 | [diff] [blame] | 274 | *	@attr: device_attribute to display | 
| Markus Lidel | f10378f | 2005-06-23 22:02:16 -0700 | [diff] [blame] | 275 | *	@buf: buffer into which the Vendor ID should be printed | 
|  | 276 | * | 
|  | 277 | *	Returns number of bytes printed into buffer. | 
|  | 278 | */ | 
| Markus Lidel | a1a5ea7 | 2006-01-06 00:19:29 -0800 | [diff] [blame] | 279 | static ssize_t i2o_exec_show_vendor_id(struct device *d, | 
|  | 280 | struct device_attribute *attr, char *buf) | 
| Markus Lidel | f10378f | 2005-06-23 22:02:16 -0700 | [diff] [blame] | 281 | { | 
|  | 282 | struct i2o_device *dev = to_i2o_device(d); | 
|  | 283 | u16 id; | 
|  | 284 |  | 
| Markus Lidel | 793fd15 | 2006-01-06 00:19:30 -0800 | [diff] [blame] | 285 | if (!i2o_parm_field_get(dev, 0x0000, 0, &id, 2)) { | 
|  | 286 | sprintf(buf, "0x%04x", le16_to_cpu(id)); | 
| Markus Lidel | f10378f | 2005-06-23 22:02:16 -0700 | [diff] [blame] | 287 | return strlen(buf) + 1; | 
|  | 288 | } | 
|  | 289 |  | 
|  | 290 | return 0; | 
|  | 291 | }; | 
|  | 292 |  | 
|  | 293 | /** | 
|  | 294 | *	i2o_exec_show_product_id - Displays Product ID of controller | 
|  | 295 | *	@d: device of which the Product ID should be displayed | 
| Randy Dunlap | d9489fb | 2006-12-06 20:38:43 -0800 | [diff] [blame] | 296 | *	@attr: device_attribute to display | 
| Markus Lidel | f10378f | 2005-06-23 22:02:16 -0700 | [diff] [blame] | 297 | *	@buf: buffer into which the Product ID should be printed | 
|  | 298 | * | 
|  | 299 | *	Returns number of bytes printed into buffer. | 
|  | 300 | */ | 
| Markus Lidel | a1a5ea7 | 2006-01-06 00:19:29 -0800 | [diff] [blame] | 301 | static ssize_t i2o_exec_show_product_id(struct device *d, | 
|  | 302 | struct device_attribute *attr, | 
|  | 303 | char *buf) | 
| Markus Lidel | f10378f | 2005-06-23 22:02:16 -0700 | [diff] [blame] | 304 | { | 
|  | 305 | struct i2o_device *dev = to_i2o_device(d); | 
|  | 306 | u16 id; | 
|  | 307 |  | 
| Markus Lidel | 793fd15 | 2006-01-06 00:19:30 -0800 | [diff] [blame] | 308 | if (!i2o_parm_field_get(dev, 0x0000, 1, &id, 2)) { | 
|  | 309 | sprintf(buf, "0x%04x", le16_to_cpu(id)); | 
| Markus Lidel | f10378f | 2005-06-23 22:02:16 -0700 | [diff] [blame] | 310 | return strlen(buf) + 1; | 
|  | 311 | } | 
|  | 312 |  | 
|  | 313 | return 0; | 
|  | 314 | }; | 
|  | 315 |  | 
|  | 316 | /* Exec-OSM device attributes */ | 
|  | 317 | static DEVICE_ATTR(vendor_id, S_IRUGO, i2o_exec_show_vendor_id, NULL); | 
|  | 318 | static DEVICE_ATTR(product_id, S_IRUGO, i2o_exec_show_product_id, NULL); | 
|  | 319 |  | 
|  | 320 | /** | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 321 | *	i2o_exec_probe - Called if a new I2O device (executive class) appears | 
|  | 322 | *	@dev: I2O device which should be probed | 
|  | 323 | * | 
|  | 324 | *	Registers event notification for every event from Executive device. The | 
|  | 325 | *	return is always 0, because we want all devices of class Executive. | 
|  | 326 | * | 
|  | 327 | *	Returns 0 on success. | 
|  | 328 | */ | 
|  | 329 | static int i2o_exec_probe(struct device *dev) | 
|  | 330 | { | 
|  | 331 | struct i2o_device *i2o_dev = to_i2o_device(dev); | 
| Jeff Garzik | 6b5f296 | 2006-10-17 00:10:22 -0700 | [diff] [blame] | 332 | int rc; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 333 |  | 
| Jeff Garzik | 6b5f296 | 2006-10-17 00:10:22 -0700 | [diff] [blame] | 334 | rc = i2o_event_register(i2o_dev, &i2o_exec_driver, 0, 0xffffffff); | 
|  | 335 | if (rc) goto err_out; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 336 |  | 
| Jeff Garzik | 6b5f296 | 2006-10-17 00:10:22 -0700 | [diff] [blame] | 337 | rc = device_create_file(dev, &dev_attr_vendor_id); | 
|  | 338 | if (rc) goto err_evtreg; | 
|  | 339 | rc = device_create_file(dev, &dev_attr_product_id); | 
|  | 340 | if (rc) goto err_vid; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 341 |  | 
| Vasily Averin | 44aaa93 | 2007-07-17 04:04:27 -0700 | [diff] [blame] | 342 | i2o_dev->iop->exec = i2o_dev; | 
|  | 343 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 344 | return 0; | 
| Jeff Garzik | 6b5f296 | 2006-10-17 00:10:22 -0700 | [diff] [blame] | 345 |  | 
|  | 346 | err_vid: | 
|  | 347 | device_remove_file(dev, &dev_attr_vendor_id); | 
|  | 348 | err_evtreg: | 
|  | 349 | i2o_event_register(to_i2o_device(dev), &i2o_exec_driver, 0, 0); | 
|  | 350 | err_out: | 
|  | 351 | return rc; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 352 | }; | 
|  | 353 |  | 
|  | 354 | /** | 
|  | 355 | *	i2o_exec_remove - Called on I2O device removal | 
|  | 356 | *	@dev: I2O device which was removed | 
|  | 357 | * | 
|  | 358 | *	Unregisters event notification from Executive I2O device. | 
|  | 359 | * | 
|  | 360 | *	Returns 0 on success. | 
|  | 361 | */ | 
|  | 362 | static int i2o_exec_remove(struct device *dev) | 
|  | 363 | { | 
| Markus Lidel | f10378f | 2005-06-23 22:02:16 -0700 | [diff] [blame] | 364 | device_remove_file(dev, &dev_attr_product_id); | 
|  | 365 | device_remove_file(dev, &dev_attr_vendor_id); | 
|  | 366 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 367 | i2o_event_register(to_i2o_device(dev), &i2o_exec_driver, 0, 0); | 
|  | 368 |  | 
|  | 369 | return 0; | 
|  | 370 | }; | 
|  | 371 |  | 
|  | 372 | /** | 
|  | 373 | *	i2o_exec_lct_modified - Called on LCT NOTIFY reply | 
| Randy Dunlap | af9997e | 2006-12-22 01:06:52 -0800 | [diff] [blame] | 374 | *	@_work: work struct for a specific controller | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 375 | * | 
|  | 376 | *	This function handles asynchronus LCT NOTIFY replies. It parses the | 
|  | 377 | *	new LCT and if the buffer for the LCT was to small sends a LCT NOTIFY | 
| Markus Lidel | f10378f | 2005-06-23 22:02:16 -0700 | [diff] [blame] | 378 | *	again, otherwise send LCT NOTIFY to get informed on next LCT change. | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 379 | */ | 
| David Howells | c402895 | 2006-11-22 14:57:56 +0000 | [diff] [blame] | 380 | static void i2o_exec_lct_modified(struct work_struct *_work) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 381 | { | 
| David Howells | c402895 | 2006-11-22 14:57:56 +0000 | [diff] [blame] | 382 | struct i2o_exec_lct_notify_work *work = | 
|  | 383 | container_of(_work, struct i2o_exec_lct_notify_work, work); | 
| Markus Lidel | f10378f | 2005-06-23 22:02:16 -0700 | [diff] [blame] | 384 | u32 change_ind = 0; | 
| Vasily Averin | 071a651 | 2006-03-05 23:18:14 +0100 | [diff] [blame] | 385 | struct i2o_controller *c = work->c; | 
|  | 386 |  | 
|  | 387 | kfree(work); | 
| Markus Lidel | f10378f | 2005-06-23 22:02:16 -0700 | [diff] [blame] | 388 |  | 
|  | 389 | if (i2o_device_parse_lct(c) != -EAGAIN) | 
|  | 390 | change_ind = c->lct->change_ind + 1; | 
|  | 391 |  | 
| Markus Lidel | 793fd15 | 2006-01-06 00:19:30 -0800 | [diff] [blame] | 392 | #ifdef CONFIG_I2O_LCT_NOTIFY_ON_CHANGES | 
| Markus Lidel | f10378f | 2005-06-23 22:02:16 -0700 | [diff] [blame] | 393 | i2o_exec_lct_notify(c, change_ind); | 
| Markus Lidel | 793fd15 | 2006-01-06 00:19:30 -0800 | [diff] [blame] | 394 | #endif | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 395 | }; | 
|  | 396 |  | 
|  | 397 | /** | 
|  | 398 | *	i2o_exec_reply -  I2O Executive reply handler | 
|  | 399 | *	@c: I2O controller from which the reply comes | 
|  | 400 | *	@m: message id | 
|  | 401 | *	@msg: pointer to the I2O reply message | 
|  | 402 | * | 
|  | 403 | *	This function is always called from interrupt context. If a POST WAIT | 
|  | 404 | *	reply was received, pass it to the complete function. If a LCT NOTIFY | 
|  | 405 | *	reply was received, a new event is created to handle the update. | 
|  | 406 | * | 
|  | 407 | *	Returns 0 on success and if the reply should not be flushed or > 0 | 
|  | 408 | *	on success and if the reply should be flushed. Returns negative error | 
|  | 409 | *	code on failure and if the reply should be flushed. | 
|  | 410 | */ | 
|  | 411 | static int i2o_exec_reply(struct i2o_controller *c, u32 m, | 
| Markus Lidel | 9e87545 | 2005-06-23 22:02:21 -0700 | [diff] [blame] | 412 | struct i2o_message *msg) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 413 | { | 
| Markus Lidel | f88e119 | 2005-06-23 22:02:14 -0700 | [diff] [blame] | 414 | u32 context; | 
|  | 415 |  | 
| Markus Lidel | 9e87545 | 2005-06-23 22:02:21 -0700 | [diff] [blame] | 416 | if (le32_to_cpu(msg->u.head[0]) & MSG_FAIL) { | 
| Markus Lidel | a1a5ea7 | 2006-01-06 00:19:29 -0800 | [diff] [blame] | 417 | struct i2o_message __iomem *pmsg; | 
|  | 418 | u32 pm; | 
|  | 419 |  | 
| Markus Lidel | f88e119 | 2005-06-23 22:02:14 -0700 | [diff] [blame] | 420 | /* | 
|  | 421 | * If Fail bit is set we must take the transaction context of | 
|  | 422 | * the preserved message to find the right request again. | 
|  | 423 | */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 424 |  | 
| Markus Lidel | 9e87545 | 2005-06-23 22:02:21 -0700 | [diff] [blame] | 425 | pm = le32_to_cpu(msg->body[3]); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 426 | pmsg = i2o_msg_in_to_virt(c, pm); | 
| Markus Lidel | a1a5ea7 | 2006-01-06 00:19:29 -0800 | [diff] [blame] | 427 | context = readl(&pmsg->u.s.tcntxt); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 428 |  | 
|  | 429 | i2o_report_status(KERN_INFO, "i2o_core", msg); | 
|  | 430 |  | 
| Markus Lidel | f88e119 | 2005-06-23 22:02:14 -0700 | [diff] [blame] | 431 | /* Release the preserved msg */ | 
| Markus Lidel | a1a5ea7 | 2006-01-06 00:19:29 -0800 | [diff] [blame] | 432 | i2o_msg_nop_mfa(c, pm); | 
| Markus Lidel | f88e119 | 2005-06-23 22:02:14 -0700 | [diff] [blame] | 433 | } else | 
| Markus Lidel | 9e87545 | 2005-06-23 22:02:21 -0700 | [diff] [blame] | 434 | context = le32_to_cpu(msg->u.s.tcntxt); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 435 |  | 
| Markus Lidel | f88e119 | 2005-06-23 22:02:14 -0700 | [diff] [blame] | 436 | if (context & 0x80000000) | 
|  | 437 | return i2o_msg_post_wait_complete(c, m, msg, context); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 438 |  | 
| Markus Lidel | 9e87545 | 2005-06-23 22:02:21 -0700 | [diff] [blame] | 439 | if ((le32_to_cpu(msg->u.head[1]) >> 24) == I2O_CMD_LCT_NOTIFY) { | 
| Vasily Averin | 071a651 | 2006-03-05 23:18:14 +0100 | [diff] [blame] | 440 | struct i2o_exec_lct_notify_work *work; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 441 |  | 
|  | 442 | pr_debug("%s: LCT notify received\n", c->name); | 
|  | 443 |  | 
|  | 444 | work = kmalloc(sizeof(*work), GFP_ATOMIC); | 
|  | 445 | if (!work) | 
|  | 446 | return -ENOMEM; | 
|  | 447 |  | 
| Vasily Averin | 071a651 | 2006-03-05 23:18:14 +0100 | [diff] [blame] | 448 | work->c = c; | 
|  | 449 |  | 
| David Howells | c402895 | 2006-11-22 14:57:56 +0000 | [diff] [blame] | 450 | INIT_WORK(&work->work, i2o_exec_lct_modified); | 
| Vasily Averin | 071a651 | 2006-03-05 23:18:14 +0100 | [diff] [blame] | 451 | queue_work(i2o_exec_driver.event_queue, &work->work); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 452 | return 1; | 
|  | 453 | } | 
|  | 454 |  | 
|  | 455 | /* | 
|  | 456 | * If this happens, we want to dump the message to the syslog so | 
|  | 457 | * it can be sent back to the card manufacturer by the end user | 
|  | 458 | * to aid in debugging. | 
|  | 459 | * | 
|  | 460 | */ | 
|  | 461 | printk(KERN_WARNING "%s: Unsolicited message reply sent to core!" | 
|  | 462 | "Message dumped to syslog\n", c->name); | 
|  | 463 | i2o_dump_message(msg); | 
|  | 464 |  | 
|  | 465 | return -EFAULT; | 
|  | 466 | } | 
|  | 467 |  | 
|  | 468 | /** | 
|  | 469 | *	i2o_exec_event - Event handling function | 
| David Howells | c402895 | 2006-11-22 14:57:56 +0000 | [diff] [blame] | 470 | *	@work: Work item in occurring event | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 471 | * | 
|  | 472 | *	Handles events send by the Executive device. At the moment does not do | 
|  | 473 | *	anything useful. | 
|  | 474 | */ | 
| David Howells | c402895 | 2006-11-22 14:57:56 +0000 | [diff] [blame] | 475 | static void i2o_exec_event(struct work_struct *work) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 476 | { | 
| David Howells | c402895 | 2006-11-22 14:57:56 +0000 | [diff] [blame] | 477 | struct i2o_event *evt = container_of(work, struct i2o_event, work); | 
|  | 478 |  | 
| Markus Lidel | 9e87545 | 2005-06-23 22:02:21 -0700 | [diff] [blame] | 479 | if (likely(evt->i2o_dev)) | 
|  | 480 | osm_debug("Event received from device: %d\n", | 
|  | 481 | evt->i2o_dev->lct_data.tid); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 482 | kfree(evt); | 
|  | 483 | }; | 
|  | 484 |  | 
|  | 485 | /** | 
|  | 486 | *	i2o_exec_lct_get - Get the IOP's Logical Configuration Table | 
|  | 487 | *	@c: I2O controller from which the LCT should be fetched | 
|  | 488 | * | 
|  | 489 | *	Send a LCT NOTIFY request to the controller, and wait | 
|  | 490 | *	I2O_TIMEOUT_LCT_GET seconds until arrival of response. If the LCT is | 
|  | 491 | *	to large, retry it. | 
|  | 492 | * | 
|  | 493 | *	Returns 0 on success or negative error code on failure. | 
|  | 494 | */ | 
|  | 495 | int i2o_exec_lct_get(struct i2o_controller *c) | 
|  | 496 | { | 
| Markus Lidel | a1a5ea7 | 2006-01-06 00:19:29 -0800 | [diff] [blame] | 497 | struct i2o_message *msg; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 498 | int i = 0; | 
|  | 499 | int rc = -EAGAIN; | 
|  | 500 |  | 
|  | 501 | for (i = 1; i <= I2O_LCT_GET_TRIES; i++) { | 
| Markus Lidel | a1a5ea7 | 2006-01-06 00:19:29 -0800 | [diff] [blame] | 502 | msg = i2o_msg_get_wait(c, I2O_TIMEOUT_MESSAGE_GET); | 
|  | 503 | if (IS_ERR(msg)) | 
|  | 504 | return PTR_ERR(msg); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 505 |  | 
| Markus Lidel | a1a5ea7 | 2006-01-06 00:19:29 -0800 | [diff] [blame] | 506 | msg->u.head[0] = | 
|  | 507 | cpu_to_le32(EIGHT_WORD_MSG_SIZE | SGL_OFFSET_6); | 
|  | 508 | msg->u.head[1] = | 
|  | 509 | cpu_to_le32(I2O_CMD_LCT_NOTIFY << 24 | HOST_TID << 12 | | 
|  | 510 | ADAPTER_TID); | 
|  | 511 | msg->body[0] = cpu_to_le32(0xffffffff); | 
|  | 512 | msg->body[1] = cpu_to_le32(0x00000000); | 
|  | 513 | msg->body[2] = cpu_to_le32(0xd0000000 | c->dlct.len); | 
|  | 514 | msg->body[3] = cpu_to_le32(c->dlct.phys); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 515 |  | 
| Markus Lidel | a1a5ea7 | 2006-01-06 00:19:29 -0800 | [diff] [blame] | 516 | rc = i2o_msg_post_wait(c, msg, I2O_TIMEOUT_LCT_GET); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 517 | if (rc < 0) | 
|  | 518 | break; | 
|  | 519 |  | 
|  | 520 | rc = i2o_device_parse_lct(c); | 
|  | 521 | if (rc != -EAGAIN) | 
|  | 522 | break; | 
|  | 523 | } | 
|  | 524 |  | 
|  | 525 | return rc; | 
|  | 526 | } | 
|  | 527 |  | 
|  | 528 | /** | 
|  | 529 | *	i2o_exec_lct_notify - Send a asynchronus LCT NOTIFY request | 
|  | 530 | *	@c: I2O controller to which the request should be send | 
|  | 531 | *	@change_ind: change indicator | 
|  | 532 | * | 
|  | 533 | *	This function sends a LCT NOTIFY request to the I2O controller with | 
|  | 534 | *	the change indicator change_ind. If the change_ind == 0 the controller | 
|  | 535 | *	replies immediately after the request. If change_ind > 0 the reply is | 
|  | 536 | *	send after change indicator of the LCT is > change_ind. | 
|  | 537 | */ | 
|  | 538 | static int i2o_exec_lct_notify(struct i2o_controller *c, u32 change_ind) | 
|  | 539 | { | 
|  | 540 | i2o_status_block *sb = c->status_block.virt; | 
|  | 541 | struct device *dev; | 
| Markus Lidel | a1a5ea7 | 2006-01-06 00:19:29 -0800 | [diff] [blame] | 542 | struct i2o_message *msg; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 543 |  | 
| Matthias Kaehlcke | 9ac1625 | 2007-07-15 23:39:49 -0700 | [diff] [blame] | 544 | mutex_lock(&c->lct_lock); | 
| Markus Lidel | 57a62fe | 2006-06-10 09:54:14 -0700 | [diff] [blame] | 545 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 546 | dev = &c->pdev->dev; | 
|  | 547 |  | 
| Markus Lidel | 793fd15 | 2006-01-06 00:19:30 -0800 | [diff] [blame] | 548 | if (i2o_dma_realloc | 
|  | 549 | (dev, &c->dlct, le32_to_cpu(sb->expected_lct_size), GFP_KERNEL)) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 550 | return -ENOMEM; | 
|  | 551 |  | 
| Markus Lidel | a1a5ea7 | 2006-01-06 00:19:29 -0800 | [diff] [blame] | 552 | msg = i2o_msg_get_wait(c, I2O_TIMEOUT_MESSAGE_GET); | 
|  | 553 | if (IS_ERR(msg)) | 
|  | 554 | return PTR_ERR(msg); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 555 |  | 
| Markus Lidel | a1a5ea7 | 2006-01-06 00:19:29 -0800 | [diff] [blame] | 556 | msg->u.head[0] = cpu_to_le32(EIGHT_WORD_MSG_SIZE | SGL_OFFSET_6); | 
|  | 557 | msg->u.head[1] = cpu_to_le32(I2O_CMD_LCT_NOTIFY << 24 | HOST_TID << 12 | | 
|  | 558 | ADAPTER_TID); | 
|  | 559 | msg->u.s.icntxt = cpu_to_le32(i2o_exec_driver.context); | 
|  | 560 | msg->u.s.tcntxt = cpu_to_le32(0x00000000); | 
|  | 561 | msg->body[0] = cpu_to_le32(0xffffffff); | 
|  | 562 | msg->body[1] = cpu_to_le32(change_ind); | 
|  | 563 | msg->body[2] = cpu_to_le32(0xd0000000 | c->dlct.len); | 
|  | 564 | msg->body[3] = cpu_to_le32(c->dlct.phys); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 565 |  | 
| Markus Lidel | a1a5ea7 | 2006-01-06 00:19:29 -0800 | [diff] [blame] | 566 | i2o_msg_post(c, msg); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 567 |  | 
| Matthias Kaehlcke | 9ac1625 | 2007-07-15 23:39:49 -0700 | [diff] [blame] | 568 | mutex_unlock(&c->lct_lock); | 
| Markus Lidel | 57a62fe | 2006-06-10 09:54:14 -0700 | [diff] [blame] | 569 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 570 | return 0; | 
|  | 571 | }; | 
|  | 572 |  | 
|  | 573 | /* Exec OSM driver struct */ | 
|  | 574 | struct i2o_driver i2o_exec_driver = { | 
|  | 575 | .name = OSM_NAME, | 
|  | 576 | .reply = i2o_exec_reply, | 
|  | 577 | .event = i2o_exec_event, | 
|  | 578 | .classes = i2o_exec_class_id, | 
|  | 579 | .driver = { | 
|  | 580 | .probe = i2o_exec_probe, | 
|  | 581 | .remove = i2o_exec_remove, | 
|  | 582 | }, | 
|  | 583 | }; | 
|  | 584 |  | 
|  | 585 | /** | 
|  | 586 | *	i2o_exec_init - Registers the Exec OSM | 
|  | 587 | * | 
|  | 588 | *	Registers the Exec OSM in the I2O core. | 
|  | 589 | * | 
|  | 590 | *	Returns 0 on success or negative error code on failure. | 
|  | 591 | */ | 
|  | 592 | int __init i2o_exec_init(void) | 
|  | 593 | { | 
|  | 594 | return i2o_driver_register(&i2o_exec_driver); | 
|  | 595 | }; | 
|  | 596 |  | 
|  | 597 | /** | 
|  | 598 | *	i2o_exec_exit - Removes the Exec OSM | 
|  | 599 | * | 
|  | 600 | *	Unregisters the Exec OSM from the I2O core. | 
|  | 601 | */ | 
| Ralf Baechle | d784372 | 2006-12-13 00:33:53 -0800 | [diff] [blame] | 602 | void i2o_exec_exit(void) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 603 | { | 
|  | 604 | i2o_driver_unregister(&i2o_exec_driver); | 
|  | 605 | }; | 
|  | 606 |  | 
|  | 607 | EXPORT_SYMBOL(i2o_msg_post_wait_mem); | 
|  | 608 | EXPORT_SYMBOL(i2o_exec_lct_get); |