blob: a3ee1796af0c20a337d8e907705dfb7c494b9cf5 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Functions to handle I2O drivers (OSMs) and I2O bus type for sysfs
3 *
4 * Copyright (C) 2004 Markus Lidel <Markus.Lidel@shadowconnect.com>
5 *
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License as published by the
8 * Free Software Foundation; either version 2 of the License, or (at your
9 * option) any later version.
10 *
11 * Fixes/additions:
12 * Markus Lidel <Markus.Lidel@shadowconnect.com>
13 * initial version.
14 */
15
16#include <linux/device.h>
17#include <linux/module.h>
18#include <linux/rwsem.h>
19#include <linux/i2o.h>
Tim Schmielau4e57b682005-10-30 15:03:48 -080020#include <linux/workqueue.h>
21#include <linux/string.h>
22#include <linux/slab.h>
Akinobu Mitabe324792007-05-23 13:58:06 -070023#include <linux/log2.h>
Markus Lidel9e875452005-06-23 22:02:21 -070024#include "core.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070025
Markus Lidelf88e1192005-06-23 22:02:14 -070026#define OSM_NAME "i2o"
Markus Lidel61fbfa82005-06-23 22:02:11 -070027
Linus Torvalds1da177e2005-04-16 15:20:36 -070028/* max_drivers - Maximum I2O drivers (OSMs) which could be registered */
Markus Lidel9e875452005-06-23 22:02:21 -070029static unsigned int i2o_max_drivers = I2O_MAX_DRIVERS;
Linus Torvalds1da177e2005-04-16 15:20:36 -070030module_param_named(max_drivers, i2o_max_drivers, uint, 0);
31MODULE_PARM_DESC(max_drivers, "maximum number of OSM's to support");
32
33/* I2O drivers lock and array */
34static spinlock_t i2o_drivers_lock;
35static struct i2o_driver **i2o_drivers;
36
37/**
Randy Dunlapd9489fb2006-12-06 20:38:43 -080038 * i2o_bus_match - Tell if I2O device class id matches the class ids of the I2O driver (OSM)
Linus Torvalds1da177e2005-04-16 15:20:36 -070039 * @dev: device which should be verified
40 * @drv: the driver to match against
41 *
42 * Used by the bus to check if the driver wants to handle the device.
43 *
44 * Returns 1 if the class ids of the driver match the class id of the
45 * device, otherwise 0.
46 */
47static int i2o_bus_match(struct device *dev, struct device_driver *drv)
48{
49 struct i2o_device *i2o_dev = to_i2o_device(dev);
50 struct i2o_driver *i2o_drv = to_i2o_driver(drv);
51 struct i2o_class_id *ids = i2o_drv->classes;
52
53 if (ids)
54 while (ids->class_id != I2O_CLASS_END) {
55 if (ids->class_id == i2o_dev->lct_data.class_id)
56 return 1;
57 ids++;
58 }
59 return 0;
60};
61
62/* I2O bus type */
63struct bus_type i2o_bus_type = {
64 .name = "i2o",
65 .match = i2o_bus_match,
Markus Lidel2e1973a2006-01-06 00:19:32 -080066 .dev_attrs = i2o_device_attrs
Linus Torvalds1da177e2005-04-16 15:20:36 -070067};
68
69/**
70 * i2o_driver_register - Register a I2O driver (OSM) in the I2O core
71 * @drv: I2O driver which should be registered
72 *
73 * Registers the OSM drv in the I2O core and creates an event queues if
74 * necessary.
75 *
76 * Returns 0 on success or negative error code on failure.
77 */
78int i2o_driver_register(struct i2o_driver *drv)
79{
80 struct i2o_controller *c;
81 int i;
82 int rc = 0;
83 unsigned long flags;
84
Markus Lidelf88e1192005-06-23 22:02:14 -070085 osm_debug("Register driver %s\n", drv->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -070086
87 if (drv->event) {
88 drv->event_queue = create_workqueue(drv->name);
89 if (!drv->event_queue) {
Markus Lidelf88e1192005-06-23 22:02:14 -070090 osm_err("Could not initialize event queue for driver "
91 "%s\n", drv->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -070092 return -EFAULT;
93 }
Markus Lidelf88e1192005-06-23 22:02:14 -070094 osm_debug("Event queue initialized for driver %s\n", drv->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -070095 } else
96 drv->event_queue = NULL;
97
98 drv->driver.name = drv->name;
99 drv->driver.bus = &i2o_bus_type;
100
101 spin_lock_irqsave(&i2o_drivers_lock, flags);
102
103 for (i = 0; i2o_drivers[i]; i++)
104 if (i >= i2o_max_drivers) {
Markus Lidelf88e1192005-06-23 22:02:14 -0700105 osm_err("too many drivers registered, increase "
106 "max_drivers\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 spin_unlock_irqrestore(&i2o_drivers_lock, flags);
108 return -EFAULT;
109 }
110
111 drv->context = i;
112 i2o_drivers[i] = drv;
113
114 spin_unlock_irqrestore(&i2o_drivers_lock, flags);
115
Markus Lidelf88e1192005-06-23 22:02:14 -0700116 osm_debug("driver %s gets context id %d\n", drv->name, drv->context);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117
118 list_for_each_entry(c, &i2o_controllers, list) {
119 struct i2o_device *i2o_dev;
120
121 i2o_driver_notify_controller_add(drv, c);
122 list_for_each_entry(i2o_dev, &c->devices, list)
Markus Lidelf33213e2005-06-23 22:02:23 -0700123 i2o_driver_notify_device_add(drv, i2o_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124 }
125
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126 rc = driver_register(&drv->driver);
Akinobu Mitae578e9a2007-05-23 13:58:05 -0700127 if (rc) {
128 if (drv->event) {
129 destroy_workqueue(drv->event_queue);
130 drv->event_queue = NULL;
131 }
132 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133
134 return rc;
135};
136
137/**
138 * i2o_driver_unregister - Unregister a I2O driver (OSM) from the I2O core
139 * @drv: I2O driver which should be unregistered
140 *
141 * Unregisters the OSM drv from the I2O core and cleanup event queues if
142 * necessary.
143 */
144void i2o_driver_unregister(struct i2o_driver *drv)
145{
146 struct i2o_controller *c;
147 unsigned long flags;
148
Markus Lidelf88e1192005-06-23 22:02:14 -0700149 osm_debug("unregister driver %s\n", drv->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150
151 driver_unregister(&drv->driver);
152
153 list_for_each_entry(c, &i2o_controllers, list) {
154 struct i2o_device *i2o_dev;
155
156 list_for_each_entry(i2o_dev, &c->devices, list)
157 i2o_driver_notify_device_remove(drv, i2o_dev);
158
159 i2o_driver_notify_controller_remove(drv, c);
160 }
161
162 spin_lock_irqsave(&i2o_drivers_lock, flags);
163 i2o_drivers[drv->context] = NULL;
164 spin_unlock_irqrestore(&i2o_drivers_lock, flags);
165
166 if (drv->event_queue) {
167 destroy_workqueue(drv->event_queue);
168 drv->event_queue = NULL;
Markus Lidelf88e1192005-06-23 22:02:14 -0700169 osm_debug("event queue removed for %s\n", drv->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 }
171};
172
173/**
174 * i2o_driver_dispatch - dispatch an I2O reply message
175 * @c: I2O controller of the message
176 * @m: I2O message number
177 * @msg: I2O message to be delivered
178 *
179 * The reply is delivered to the driver from which the original message
180 * was. This function is only called from interrupt context.
181 *
182 * Returns 0 on success and the message should not be flushed. Returns > 0
183 * on success and if the message should be flushed afterwords. Returns
184 * negative error code on failure (the message will be flushed too).
185 */
Markus Lidelf88e1192005-06-23 22:02:14 -0700186int i2o_driver_dispatch(struct i2o_controller *c, u32 m)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187{
188 struct i2o_driver *drv;
Markus Lidel9e875452005-06-23 22:02:21 -0700189 struct i2o_message *msg = i2o_msg_out_to_virt(c, m);
190 u32 context = le32_to_cpu(msg->u.s.icntxt);
Markus Lidelf10378f2005-06-23 22:02:16 -0700191 unsigned long flags;
192
Markus Lidel61fbfa82005-06-23 22:02:11 -0700193 if (unlikely(context >= i2o_max_drivers)) {
Markus Lidelf88e1192005-06-23 22:02:14 -0700194 osm_warn("%s: Spurious reply to unknown driver %d\n", c->name,
195 context);
Markus Lidel61fbfa82005-06-23 22:02:11 -0700196 return -EIO;
197 }
198
Markus Lidelf10378f2005-06-23 22:02:16 -0700199 spin_lock_irqsave(&i2o_drivers_lock, flags);
Markus Lidel61fbfa82005-06-23 22:02:11 -0700200 drv = i2o_drivers[context];
Markus Lidelf10378f2005-06-23 22:02:16 -0700201 spin_unlock_irqrestore(&i2o_drivers_lock, flags);
Markus Lidel61fbfa82005-06-23 22:02:11 -0700202
203 if (unlikely(!drv)) {
Markus Lidelf88e1192005-06-23 22:02:14 -0700204 osm_warn("%s: Spurious reply to unknown driver %d\n", c->name,
205 context);
Markus Lidel61fbfa82005-06-23 22:02:11 -0700206 return -EIO;
207 }
208
Markus Lidel9e875452005-06-23 22:02:21 -0700209 if ((le32_to_cpu(msg->u.head[1]) >> 24) == I2O_CMD_UTIL_EVT_REGISTER) {
Markus Lidel61fbfa82005-06-23 22:02:11 -0700210 struct i2o_device *dev, *tmp;
211 struct i2o_event *evt;
212 u16 size;
Markus Lidel9e875452005-06-23 22:02:21 -0700213 u16 tid = le32_to_cpu(msg->u.head[1]) & 0xfff;
Markus Lidel61fbfa82005-06-23 22:02:11 -0700214
215 osm_debug("event received from device %d\n", tid);
216
Markus Lidelf88e1192005-06-23 22:02:14 -0700217 if (!drv->event)
218 return -EIO;
219
Markus Lidel61fbfa82005-06-23 22:02:11 -0700220 /* cut of header from message size (in 32-bit words) */
Markus Lidel9e875452005-06-23 22:02:21 -0700221 size = (le32_to_cpu(msg->u.head[0]) >> 16) - 5;
Markus Lidel61fbfa82005-06-23 22:02:11 -0700222
Markus Lidelf6ed39a2006-01-06 00:19:33 -0800223 evt = kzalloc(size * 4 + sizeof(*evt), GFP_ATOMIC);
Markus Lidel61fbfa82005-06-23 22:02:11 -0700224 if (!evt)
225 return -ENOMEM;
226
227 evt->size = size;
Markus Lidel9e875452005-06-23 22:02:21 -0700228 evt->tcntxt = le32_to_cpu(msg->u.s.tcntxt);
229 evt->event_indicator = le32_to_cpu(msg->body[0]);
Markus Lideldcceafe2006-01-06 00:19:32 -0800230 memcpy(&evt->data, &msg->body[1], size * 4);
Markus Lidel61fbfa82005-06-23 22:02:11 -0700231
232 list_for_each_entry_safe(dev, tmp, &c->devices, list)
233 if (dev->lct_data.tid == tid) {
234 evt->i2o_dev = dev;
235 break;
236 }
237
David Howellsc4028952006-11-22 14:57:56 +0000238 INIT_WORK(&evt->work, drv->event);
Markus Lidel61fbfa82005-06-23 22:02:11 -0700239 queue_work(drv->event_queue, &evt->work);
240 return 1;
241 }
242
243 if (unlikely(!drv->reply)) {
Markus Lidelf88e1192005-06-23 22:02:14 -0700244 osm_debug("%s: Reply to driver %s, but no reply function"
245 " defined!\n", c->name, drv->name);
Markus Lidel61fbfa82005-06-23 22:02:11 -0700246 return -EIO;
247 }
248
249 return drv->reply(c, m, msg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250}
251
252/**
253 * i2o_driver_notify_controller_add_all - Send notify of added controller
Randy Dunlapd9489fb2006-12-06 20:38:43 -0800254 * @c: newly added controller
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 *
256 * Send notifications to all registered drivers that a new controller was
257 * added.
258 */
259void i2o_driver_notify_controller_add_all(struct i2o_controller *c)
260{
261 int i;
262 struct i2o_driver *drv;
263
Akinobu Mitabe324792007-05-23 13:58:06 -0700264 for (i = 0; i < i2o_max_drivers; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 drv = i2o_drivers[i];
266
267 if (drv)
268 i2o_driver_notify_controller_add(drv, c);
269 }
270}
271
272/**
Randy Dunlapd9489fb2006-12-06 20:38:43 -0800273 * i2o_driver_notify_controller_remove_all - Send notify of removed controller
274 * @c: controller that is being removed
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 *
276 * Send notifications to all registered drivers that a controller was
277 * removed.
278 */
279void i2o_driver_notify_controller_remove_all(struct i2o_controller *c)
280{
281 int i;
282 struct i2o_driver *drv;
283
Akinobu Mitabe324792007-05-23 13:58:06 -0700284 for (i = 0; i < i2o_max_drivers; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 drv = i2o_drivers[i];
286
287 if (drv)
288 i2o_driver_notify_controller_remove(drv, c);
289 }
290}
291
292/**
Randy Dunlapd9489fb2006-12-06 20:38:43 -0800293 * i2o_driver_notify_device_add_all - Send notify of added device
294 * @i2o_dev: newly added I2O device
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 *
296 * Send notifications to all registered drivers that a device was added.
297 */
298void i2o_driver_notify_device_add_all(struct i2o_device *i2o_dev)
299{
300 int i;
301 struct i2o_driver *drv;
302
Akinobu Mitabe324792007-05-23 13:58:06 -0700303 for (i = 0; i < i2o_max_drivers; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304 drv = i2o_drivers[i];
305
306 if (drv)
307 i2o_driver_notify_device_add(drv, i2o_dev);
308 }
309}
310
311/**
Randy Dunlapd9489fb2006-12-06 20:38:43 -0800312 * i2o_driver_notify_device_remove_all - Send notify of removed device
313 * @i2o_dev: device that is being removed
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 *
315 * Send notifications to all registered drivers that a device was removed.
316 */
317void i2o_driver_notify_device_remove_all(struct i2o_device *i2o_dev)
318{
319 int i;
320 struct i2o_driver *drv;
321
Akinobu Mitabe324792007-05-23 13:58:06 -0700322 for (i = 0; i < i2o_max_drivers; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323 drv = i2o_drivers[i];
324
325 if (drv)
326 i2o_driver_notify_device_remove(drv, i2o_dev);
327 }
328}
329
330/**
331 * i2o_driver_init - initialize I2O drivers (OSMs)
332 *
333 * Registers the I2O bus and allocate memory for the array of OSMs.
334 *
335 * Returns 0 on success or negative error code on failure.
336 */
337int __init i2o_driver_init(void)
338{
339 int rc = 0;
340
341 spin_lock_init(&i2o_drivers_lock);
342
343 if ((i2o_max_drivers < 2) || (i2o_max_drivers > 64) ||
Akinobu Mitabe324792007-05-23 13:58:06 -0700344 !is_power_of_2(i2o_max_drivers)) {
Markus Lidelf88e1192005-06-23 22:02:14 -0700345 osm_warn("max_drivers set to %d, but must be >=2 and <= 64 and "
346 "a power of 2\n", i2o_max_drivers);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 i2o_max_drivers = I2O_MAX_DRIVERS;
348 }
Markus Lidelf88e1192005-06-23 22:02:14 -0700349 osm_info("max drivers = %d\n", i2o_max_drivers);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350
351 i2o_drivers =
Akinobu Mitabe324792007-05-23 13:58:06 -0700352 kcalloc(i2o_max_drivers, sizeof(*i2o_drivers), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 if (!i2o_drivers)
354 return -ENOMEM;
355
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356 rc = bus_register(&i2o_bus_type);
357
358 if (rc < 0)
359 kfree(i2o_drivers);
360
361 return rc;
362};
363
364/**
365 * i2o_driver_exit - clean up I2O drivers (OSMs)
366 *
Randy Dunlapd9489fb2006-12-06 20:38:43 -0800367 * Unregisters the I2O bus and frees driver array.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 */
Ralf Baechled7843722006-12-13 00:33:53 -0800369void i2o_driver_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370{
371 bus_unregister(&i2o_bus_type);
372 kfree(i2o_drivers);
373};
374
375EXPORT_SYMBOL(i2o_driver_register);
376EXPORT_SYMBOL(i2o_driver_unregister);
377EXPORT_SYMBOL(i2o_driver_notify_controller_add_all);
378EXPORT_SYMBOL(i2o_driver_notify_controller_remove_all);
379EXPORT_SYMBOL(i2o_driver_notify_device_add_all);
380EXPORT_SYMBOL(i2o_driver_notify_device_remove_all);