blob: d66f4944f2a0efc0a18508d9c4707bf069567830 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * The Serio abstraction module
3 *
4 * Copyright (c) 1999-2004 Vojtech Pavlik
5 * Copyright (c) 2004 Dmitry Torokhov
6 * Copyright (c) 2003 Daniele Bellucci
7 */
8
9/*
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
23 *
24 * Should you need to contact me, the author, you can do so either by
25 * e-mail - mail your message to <vojtech@ucw.cz>, or by paper mail:
26 * Vojtech Pavlik, Simunkova 1594, Prague 8, 182 00 Czech Republic
27 */
28
29#include <linux/stddef.h>
30#include <linux/module.h>
31#include <linux/serio.h>
32#include <linux/errno.h>
33#include <linux/wait.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#include <linux/sched.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#include <linux/slab.h>
Linus Torvalds3c803e82005-06-27 17:49:45 -070036#include <linux/kthread.h>
Arjan van de Venc4e32e92006-02-19 00:21:55 -050037#include <linux/mutex.h>
Nigel Cunningham7dfb7102006-12-06 20:34:23 -080038#include <linux/freezer.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070039
40MODULE_AUTHOR("Vojtech Pavlik <vojtech@ucw.cz>");
41MODULE_DESCRIPTION("Serio abstraction core");
42MODULE_LICENSE("GPL");
43
Linus Torvalds1da177e2005-04-16 15:20:36 -070044/*
Arjan van de Venc4e32e92006-02-19 00:21:55 -050045 * serio_mutex protects entire serio subsystem and is taken every time
Linus Torvalds1da177e2005-04-16 15:20:36 -070046 * serio port or driver registrered or unregistered.
47 */
Arjan van de Venc4e32e92006-02-19 00:21:55 -050048static DEFINE_MUTEX(serio_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
50static LIST_HEAD(serio_list);
51
Russell King30226f82006-01-05 14:38:53 +000052static struct bus_type serio_bus;
Linus Torvalds1da177e2005-04-16 15:20:36 -070053
54static void serio_add_port(struct serio *serio);
Shaohua Li6aabcdf2008-07-03 10:45:38 -040055static int serio_reconnect_port(struct serio *serio);
Linus Torvalds1da177e2005-04-16 15:20:36 -070056static void serio_disconnect_port(struct serio *serio);
Shaohua Li6aabcdf2008-07-03 10:45:38 -040057static void serio_reconnect_chain(struct serio *serio);
Dmitry Torokhoved7b1f62006-11-23 23:34:49 -050058static void serio_attach_driver(struct serio_driver *drv);
Linus Torvalds1da177e2005-04-16 15:20:36 -070059
Linus Torvalds3c803e82005-06-27 17:49:45 -070060static int serio_connect_driver(struct serio *serio, struct serio_driver *drv)
61{
62 int retval;
63
Arjan van de Venc4e32e92006-02-19 00:21:55 -050064 mutex_lock(&serio->drv_mutex);
Linus Torvalds3c803e82005-06-27 17:49:45 -070065 retval = drv->connect(serio, drv);
Arjan van de Venc4e32e92006-02-19 00:21:55 -050066 mutex_unlock(&serio->drv_mutex);
Linus Torvalds3c803e82005-06-27 17:49:45 -070067
68 return retval;
69}
70
71static int serio_reconnect_driver(struct serio *serio)
72{
73 int retval = -1;
74
Arjan van de Venc4e32e92006-02-19 00:21:55 -050075 mutex_lock(&serio->drv_mutex);
Linus Torvalds3c803e82005-06-27 17:49:45 -070076 if (serio->drv && serio->drv->reconnect)
77 retval = serio->drv->reconnect(serio);
Arjan van de Venc4e32e92006-02-19 00:21:55 -050078 mutex_unlock(&serio->drv_mutex);
Linus Torvalds3c803e82005-06-27 17:49:45 -070079
80 return retval;
81}
82
83static void serio_disconnect_driver(struct serio *serio)
84{
Arjan van de Venc4e32e92006-02-19 00:21:55 -050085 mutex_lock(&serio->drv_mutex);
Linus Torvalds3c803e82005-06-27 17:49:45 -070086 if (serio->drv)
87 serio->drv->disconnect(serio);
Arjan van de Venc4e32e92006-02-19 00:21:55 -050088 mutex_unlock(&serio->drv_mutex);
Linus Torvalds3c803e82005-06-27 17:49:45 -070089}
90
Linus Torvalds1da177e2005-04-16 15:20:36 -070091static int serio_match_port(const struct serio_device_id *ids, struct serio *serio)
92{
93 while (ids->type || ids->proto) {
94 if ((ids->type == SERIO_ANY || ids->type == serio->id.type) &&
95 (ids->proto == SERIO_ANY || ids->proto == serio->id.proto) &&
96 (ids->extra == SERIO_ANY || ids->extra == serio->id.extra) &&
97 (ids->id == SERIO_ANY || ids->id == serio->id.id))
98 return 1;
99 ids++;
100 }
101 return 0;
102}
103
104/*
105 * Basic serio -> driver core mappings
106 */
107
Dmitry Torokhov70f256f2007-04-10 00:40:27 -0400108static int serio_bind_driver(struct serio *serio, struct serio_driver *drv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109{
Dmitry Torokhov0a660452006-10-12 01:06:23 -0400110 int error;
111
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112 if (serio_match_port(drv->id_table, serio)) {
Dmitry Torokhov70f256f2007-04-10 00:40:27 -0400113
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 serio->dev.driver = &drv->driver;
Linus Torvalds3c803e82005-06-27 17:49:45 -0700115 if (serio_connect_driver(serio, drv)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 serio->dev.driver = NULL;
Dmitry Torokhov70f256f2007-04-10 00:40:27 -0400117 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 }
Dmitry Torokhov70f256f2007-04-10 00:40:27 -0400119
Dmitry Torokhov0a660452006-10-12 01:06:23 -0400120 error = device_bind_driver(&serio->dev);
121 if (error) {
122 printk(KERN_WARNING
123 "serio: device_bind_driver() failed "
124 "for %s (%s) and %s, error: %d\n",
125 serio->phys, serio->name,
126 drv->description, error);
127 serio_disconnect_driver(serio);
128 serio->dev.driver = NULL;
Dmitry Torokhov70f256f2007-04-10 00:40:27 -0400129 return error;
Dmitry Torokhov0a660452006-10-12 01:06:23 -0400130 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131 }
Dmitry Torokhov70f256f2007-04-10 00:40:27 -0400132 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133}
134
135static void serio_find_driver(struct serio *serio)
136{
Randy Dunlap73b59a32006-07-19 01:14:55 -0400137 int error;
138
Randy Dunlap73b59a32006-07-19 01:14:55 -0400139 error = device_attach(&serio->dev);
140 if (error < 0)
141 printk(KERN_WARNING
142 "serio: device_attach() failed for %s (%s), error: %d\n",
143 serio->phys, serio->name, error);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144}
145
146
147/*
148 * Serio event processing.
149 */
150
151enum serio_event_type {
Dmitry Torokhoved7b1f62006-11-23 23:34:49 -0500152 SERIO_RESCAN_PORT,
153 SERIO_RECONNECT_PORT,
Shaohua Li6aabcdf2008-07-03 10:45:38 -0400154 SERIO_RECONNECT_CHAIN,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 SERIO_REGISTER_PORT,
Dmitry Torokhoved7b1f62006-11-23 23:34:49 -0500156 SERIO_ATTACH_DRIVER,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157};
158
159struct serio_event {
160 enum serio_event_type type;
161 void *object;
162 struct module *owner;
163 struct list_head node;
164};
165
166static DEFINE_SPINLOCK(serio_event_lock); /* protects serio_event_list */
167static LIST_HEAD(serio_event_list);
168static DECLARE_WAIT_QUEUE_HEAD(serio_wait);
Linus Torvalds3c803e82005-06-27 17:49:45 -0700169static struct task_struct *serio_task;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170
Dmitry Torokhoved7b1f62006-11-23 23:34:49 -0500171static int serio_queue_event(void *object, struct module *owner,
172 enum serio_event_type event_type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173{
174 unsigned long flags;
175 struct serio_event *event;
Dmitry Torokhoved7b1f62006-11-23 23:34:49 -0500176 int retval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177
178 spin_lock_irqsave(&serio_event_lock, flags);
179
180 /*
Linus Torvalds3c803e82005-06-27 17:49:45 -0700181 * Scan event list for the other events for the same serio port,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182 * starting with the most recent one. If event is the same we
183 * do not need add new one. If event is of different type we
184 * need to add this event and should not look further because
185 * we need to preseve sequence of distinct events.
Linus Torvalds3c803e82005-06-27 17:49:45 -0700186 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 list_for_each_entry_reverse(event, &serio_event_list, node) {
188 if (event->object == object) {
189 if (event->type == event_type)
190 goto out;
191 break;
192 }
193 }
194
Dmitry Torokhoved7b1f62006-11-23 23:34:49 -0500195 event = kmalloc(sizeof(struct serio_event), GFP_ATOMIC);
196 if (!event) {
197 printk(KERN_ERR
198 "serio: Not enough memory to queue event %d\n",
199 event_type);
200 retval = -ENOMEM;
201 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 }
Dmitry Torokhoved7b1f62006-11-23 23:34:49 -0500203
204 if (!try_module_get(owner)) {
205 printk(KERN_WARNING
206 "serio: Can't get module reference, dropping event %d\n",
207 event_type);
208 kfree(event);
209 retval = -EINVAL;
210 goto out;
211 }
212
213 event->type = event_type;
214 event->object = object;
215 event->owner = owner;
216
217 list_add_tail(&event->node, &serio_event_list);
218 wake_up(&serio_wait);
219
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220out:
221 spin_unlock_irqrestore(&serio_event_lock, flags);
Dmitry Torokhoved7b1f62006-11-23 23:34:49 -0500222 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223}
224
225static void serio_free_event(struct serio_event *event)
226{
227 module_put(event->owner);
228 kfree(event);
229}
230
231static void serio_remove_duplicate_events(struct serio_event *event)
232{
233 struct list_head *node, *next;
234 struct serio_event *e;
235 unsigned long flags;
236
237 spin_lock_irqsave(&serio_event_lock, flags);
238
239 list_for_each_safe(node, next, &serio_event_list) {
240 e = list_entry(node, struct serio_event, node);
241 if (event->object == e->object) {
242 /*
243 * If this event is of different type we should not
244 * look further - we only suppress duplicate events
245 * that were sent back-to-back.
246 */
247 if (event->type != e->type)
248 break;
249
250 list_del_init(node);
251 serio_free_event(e);
252 }
253 }
254
255 spin_unlock_irqrestore(&serio_event_lock, flags);
256}
257
258
259static struct serio_event *serio_get_event(void)
260{
261 struct serio_event *event;
262 struct list_head *node;
263 unsigned long flags;
264
265 spin_lock_irqsave(&serio_event_lock, flags);
266
267 if (list_empty(&serio_event_list)) {
268 spin_unlock_irqrestore(&serio_event_lock, flags);
269 return NULL;
270 }
271
272 node = serio_event_list.next;
273 event = list_entry(node, struct serio_event, node);
274 list_del_init(node);
275
276 spin_unlock_irqrestore(&serio_event_lock, flags);
277
278 return event;
279}
280
Dmitry Torokhov9e50afd2005-11-20 00:56:43 -0500281static void serio_handle_event(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282{
283 struct serio_event *event;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284
Arjan van de Venc4e32e92006-02-19 00:21:55 -0500285 mutex_lock(&serio_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286
Dmitry Torokhov9e50afd2005-11-20 00:56:43 -0500287 /*
288 * Note that we handle only one event here to give swsusp
289 * a chance to freeze kseriod thread. Serio events should
290 * be pretty rare so we are not concerned about taking
291 * performance hit.
292 */
293 if ((event = serio_get_event())) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294
295 switch (event->type) {
296 case SERIO_REGISTER_PORT:
297 serio_add_port(event->object);
298 break;
299
Dmitry Torokhoved7b1f62006-11-23 23:34:49 -0500300 case SERIO_RECONNECT_PORT:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 serio_reconnect_port(event->object);
302 break;
303
Dmitry Torokhoved7b1f62006-11-23 23:34:49 -0500304 case SERIO_RESCAN_PORT:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 serio_disconnect_port(event->object);
306 serio_find_driver(event->object);
307 break;
308
Shaohua Li6aabcdf2008-07-03 10:45:38 -0400309 case SERIO_RECONNECT_CHAIN:
310 serio_reconnect_chain(event->object);
311 break;
312
Dmitry Torokhoved7b1f62006-11-23 23:34:49 -0500313 case SERIO_ATTACH_DRIVER:
314 serio_attach_driver(event->object);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 break;
316
317 default:
318 break;
319 }
320
321 serio_remove_duplicate_events(event);
322 serio_free_event(event);
323 }
324
Arjan van de Venc4e32e92006-02-19 00:21:55 -0500325 mutex_unlock(&serio_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326}
327
328/*
Dmitry Torokhove8ef4342008-06-02 00:41:57 -0400329 * Remove all events that have been submitted for a given
330 * object, be it serio port or driver.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 */
Dmitry Torokhove8ef4342008-06-02 00:41:57 -0400332static void serio_remove_pending_events(void *object)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333{
334 struct list_head *node, *next;
335 struct serio_event *event;
336 unsigned long flags;
337
338 spin_lock_irqsave(&serio_event_lock, flags);
339
340 list_for_each_safe(node, next, &serio_event_list) {
341 event = list_entry(node, struct serio_event, node);
Dmitry Torokhove8ef4342008-06-02 00:41:57 -0400342 if (event->object == object) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 list_del_init(node);
344 serio_free_event(event);
345 }
346 }
347
348 spin_unlock_irqrestore(&serio_event_lock, flags);
349}
350
351/*
352 * Destroy child serio port (if any) that has not been fully registered yet.
353 *
354 * Note that we rely on the fact that port can have only one child and therefore
355 * only one child registration request can be pending. Additionally, children
356 * are registered by driver's connect() handler so there can't be a grandchild
357 * pending registration together with a child.
358 */
359static struct serio *serio_get_pending_child(struct serio *parent)
360{
361 struct serio_event *event;
362 struct serio *serio, *child = NULL;
363 unsigned long flags;
364
365 spin_lock_irqsave(&serio_event_lock, flags);
366
367 list_for_each_entry(event, &serio_event_list, node) {
368 if (event->type == SERIO_REGISTER_PORT) {
369 serio = event->object;
370 if (serio->parent == parent) {
371 child = serio;
372 break;
373 }
374 }
375 }
376
377 spin_unlock_irqrestore(&serio_event_lock, flags);
378 return child;
379}
380
381static int serio_thread(void *nothing)
382{
Rafael J. Wysocki83144182007-07-17 04:03:35 -0700383 set_freezable();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 do {
Dmitry Torokhov9e50afd2005-11-20 00:56:43 -0500385 serio_handle_event();
Rafael J. Wysockie42837b2007-10-18 03:04:45 -0700386 wait_event_freezable(serio_wait,
Linus Torvalds3c803e82005-06-27 17:49:45 -0700387 kthread_should_stop() || !list_empty(&serio_event_list));
Linus Torvalds3c803e82005-06-27 17:49:45 -0700388 } while (!kthread_should_stop());
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389
390 printk(KERN_DEBUG "serio: kseriod exiting\n");
Linus Torvalds3c803e82005-06-27 17:49:45 -0700391 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392}
393
394
395/*
396 * Serio port operations
397 */
398
Yani Ioannoue404e272005-05-17 06:42:58 -0400399static ssize_t serio_show_description(struct device *dev, struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400{
401 struct serio *serio = to_serio_port(dev);
402 return sprintf(buf, "%s\n", serio->name);
403}
404
Dmitry Torokhovae87dff2005-06-30 00:48:34 -0500405static ssize_t serio_show_modalias(struct device *dev, struct device_attribute *attr, char *buf)
406{
407 struct serio *serio = to_serio_port(dev);
408
409 return sprintf(buf, "serio:ty%02Xpr%02Xid%02Xex%02X\n",
410 serio->id.type, serio->id.proto, serio->id.id, serio->id.extra);
411}
412
Yani Ioannoue404e272005-05-17 06:42:58 -0400413static ssize_t serio_show_id_type(struct device *dev, struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414{
415 struct serio *serio = to_serio_port(dev);
416 return sprintf(buf, "%02x\n", serio->id.type);
417}
418
Yani Ioannoue404e272005-05-17 06:42:58 -0400419static ssize_t serio_show_id_proto(struct device *dev, struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420{
421 struct serio *serio = to_serio_port(dev);
422 return sprintf(buf, "%02x\n", serio->id.proto);
423}
424
Yani Ioannoue404e272005-05-17 06:42:58 -0400425static ssize_t serio_show_id_id(struct device *dev, struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426{
427 struct serio *serio = to_serio_port(dev);
428 return sprintf(buf, "%02x\n", serio->id.id);
429}
430
Yani Ioannoue404e272005-05-17 06:42:58 -0400431static ssize_t serio_show_id_extra(struct device *dev, struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432{
433 struct serio *serio = to_serio_port(dev);
434 return sprintf(buf, "%02x\n", serio->id.extra);
435}
436
Dmitry Torokhovbaae9562005-05-16 21:53:09 -0700437static DEVICE_ATTR(type, S_IRUGO, serio_show_id_type, NULL);
438static DEVICE_ATTR(proto, S_IRUGO, serio_show_id_proto, NULL);
439static DEVICE_ATTR(id, S_IRUGO, serio_show_id_id, NULL);
440static DEVICE_ATTR(extra, S_IRUGO, serio_show_id_extra, NULL);
441
442static struct attribute *serio_device_id_attrs[] = {
443 &dev_attr_type.attr,
444 &dev_attr_proto.attr,
445 &dev_attr_id.attr,
446 &dev_attr_extra.attr,
447 NULL
448};
449
450static struct attribute_group serio_id_attr_group = {
451 .name = "id",
452 .attrs = serio_device_id_attrs,
453};
454
Yani Ioannoue404e272005-05-17 06:42:58 -0400455static ssize_t serio_rebind_driver(struct device *dev, struct device_attribute *attr, const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456{
457 struct serio *serio = to_serio_port(dev);
458 struct device_driver *drv;
Dmitry Torokhov70f256f2007-04-10 00:40:27 -0400459 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460
Dmitry Torokhov70f256f2007-04-10 00:40:27 -0400461 error = mutex_lock_interruptible(&serio_mutex);
462 if (error)
463 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 if (!strncmp(buf, "none", count)) {
466 serio_disconnect_port(serio);
467 } else if (!strncmp(buf, "reconnect", count)) {
Shaohua Li6aabcdf2008-07-03 10:45:38 -0400468 serio_reconnect_chain(serio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 } else if (!strncmp(buf, "rescan", count)) {
470 serio_disconnect_port(serio);
471 serio_find_driver(serio);
472 } else if ((drv = driver_find(buf, &serio_bus)) != NULL) {
473 serio_disconnect_port(serio);
Dmitry Torokhov70f256f2007-04-10 00:40:27 -0400474 error = serio_bind_driver(serio, to_serio_driver(drv));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 put_driver(drv);
476 } else {
Dmitry Torokhov70f256f2007-04-10 00:40:27 -0400477 error = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 }
479
Arjan van de Venc4e32e92006-02-19 00:21:55 -0500480 mutex_unlock(&serio_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481
Dmitry Torokhov70f256f2007-04-10 00:40:27 -0400482 return error ? error : count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483}
484
Yani Ioannoue404e272005-05-17 06:42:58 -0400485static ssize_t serio_show_bind_mode(struct device *dev, struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486{
487 struct serio *serio = to_serio_port(dev);
488 return sprintf(buf, "%s\n", serio->manual_bind ? "manual" : "auto");
489}
490
Yani Ioannoue404e272005-05-17 06:42:58 -0400491static ssize_t serio_set_bind_mode(struct device *dev, struct device_attribute *attr, const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492{
493 struct serio *serio = to_serio_port(dev);
494 int retval;
495
496 retval = count;
497 if (!strncmp(buf, "manual", count)) {
Dmitry Torokhov7e044e02009-05-09 16:08:05 -0700498 serio->manual_bind = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 } else if (!strncmp(buf, "auto", count)) {
Dmitry Torokhov7e044e02009-05-09 16:08:05 -0700500 serio->manual_bind = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 } else {
502 retval = -EINVAL;
503 }
504
505 return retval;
506}
507
508static struct device_attribute serio_device_attrs[] = {
509 __ATTR(description, S_IRUGO, serio_show_description, NULL),
Dmitry Torokhovae87dff2005-06-30 00:48:34 -0500510 __ATTR(modalias, S_IRUGO, serio_show_modalias, NULL),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 __ATTR(drvctl, S_IWUSR, NULL, serio_rebind_driver),
512 __ATTR(bind_mode, S_IWUSR | S_IRUGO, serio_show_bind_mode, serio_set_bind_mode),
513 __ATTR_NULL
514};
515
516
517static void serio_release_port(struct device *dev)
518{
519 struct serio *serio = to_serio_port(dev);
520
521 kfree(serio);
522 module_put(THIS_MODULE);
523}
524
525/*
526 * Prepare serio port for registration.
527 */
528static void serio_init_port(struct serio *serio)
529{
530 static atomic_t serio_no = ATOMIC_INIT(0);
531
532 __module_get(THIS_MODULE);
533
Randy Dunlap73b59a32006-07-19 01:14:55 -0400534 INIT_LIST_HEAD(&serio->node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 spin_lock_init(&serio->lock);
Arjan van de Venc4e32e92006-02-19 00:21:55 -0500536 mutex_init(&serio->drv_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 device_initialize(&serio->dev);
Kay Sieversa6c24902008-10-30 00:07:50 -0400538 dev_set_name(&serio->dev, "serio%ld",
539 (long)atomic_inc_return(&serio_no) - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 serio->dev.bus = &serio_bus;
541 serio->dev.release = serio_release_port;
Jiri Kosina88aa0102006-10-11 01:45:31 -0400542 if (serio->parent) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 serio->dev.parent = &serio->parent->dev;
Jiri Kosina88aa0102006-10-11 01:45:31 -0400544 serio->depth = serio->parent->depth + 1;
545 } else
546 serio->depth = 0;
547 lockdep_set_subclass(&serio->lock, serio->depth);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548}
549
550/*
551 * Complete serio port registration.
552 * Driver core will attempt to find appropriate driver for the port.
553 */
554static void serio_add_port(struct serio *serio)
555{
Randy Dunlap73b59a32006-07-19 01:14:55 -0400556 int error;
557
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 if (serio->parent) {
559 serio_pause_rx(serio->parent);
560 serio->parent->child = serio;
561 serio_continue_rx(serio->parent);
562 }
563
564 list_add_tail(&serio->node, &serio_list);
565 if (serio->start)
566 serio->start(serio);
Randy Dunlap73b59a32006-07-19 01:14:55 -0400567 error = device_add(&serio->dev);
568 if (error)
569 printk(KERN_ERR
570 "serio: device_add() failed for %s (%s), error: %d\n",
571 serio->phys, serio->name, error);
572 else {
Dmitry Torokhov7e044e02009-05-09 16:08:05 -0700573 serio->registered = true;
Randy Dunlap73b59a32006-07-19 01:14:55 -0400574 error = sysfs_create_group(&serio->dev.kobj, &serio_id_attr_group);
575 if (error)
576 printk(KERN_ERR
577 "serio: sysfs_create_group() failed for %s (%s), error: %d\n",
578 serio->phys, serio->name, error);
579 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580}
581
582/*
583 * serio_destroy_port() completes deregistration process and removes
584 * port from the system
585 */
586static void serio_destroy_port(struct serio *serio)
587{
588 struct serio *child;
589
590 child = serio_get_pending_child(serio);
591 if (child) {
592 serio_remove_pending_events(child);
593 put_device(&child->dev);
594 }
595
596 if (serio->stop)
597 serio->stop(serio);
598
599 if (serio->parent) {
600 serio_pause_rx(serio->parent);
601 serio->parent->child = NULL;
602 serio_continue_rx(serio->parent);
603 serio->parent = NULL;
604 }
605
606 if (serio->registered) {
Dmitry Torokhovbaae9562005-05-16 21:53:09 -0700607 sysfs_remove_group(&serio->dev.kobj, &serio_id_attr_group);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608 device_del(&serio->dev);
Dmitry Torokhov7e044e02009-05-09 16:08:05 -0700609 serio->registered = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610 }
611
Randy Dunlap73b59a32006-07-19 01:14:55 -0400612 list_del_init(&serio->node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613 serio_remove_pending_events(serio);
614 put_device(&serio->dev);
615}
616
617/*
Shaohua Li6aabcdf2008-07-03 10:45:38 -0400618 * Reconnect serio port (re-initialize attached device).
619 * If reconnect fails (old device is no longer attached or
620 * there was no device to begin with) we do full rescan in
621 * hope of finding a driver for the port.
622 */
623static int serio_reconnect_port(struct serio *serio)
624{
625 int error = serio_reconnect_driver(serio);
626
627 if (error) {
628 serio_disconnect_port(serio);
629 serio_find_driver(serio);
630 }
631
632 return error;
633}
634
635/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636 * Reconnect serio port and all its children (re-initialize attached devices)
637 */
Shaohua Li6aabcdf2008-07-03 10:45:38 -0400638static void serio_reconnect_chain(struct serio *serio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639{
640 do {
Shaohua Li6aabcdf2008-07-03 10:45:38 -0400641 if (serio_reconnect_port(serio)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 /* Ok, old children are now gone, we are done */
643 break;
644 }
645 serio = serio->child;
646 } while (serio);
647}
648
649/*
650 * serio_disconnect_port() unbinds a port from its driver. As a side effect
651 * all child ports are unbound and destroyed.
652 */
653static void serio_disconnect_port(struct serio *serio)
654{
655 struct serio *s, *parent;
656
657 if (serio->child) {
658 /*
659 * Children ports should be disconnected and destroyed
660 * first, staring with the leaf one, since we don't want
661 * to do recursion
662 */
663 for (s = serio; s->child; s = s->child)
664 /* empty */;
665
666 do {
667 parent = s->parent;
668
Dmitry Torokhov70f256f2007-04-10 00:40:27 -0400669 device_release_driver(&s->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670 serio_destroy_port(s);
671 } while ((s = parent) != serio);
672 }
673
674 /*
675 * Ok, no children left, now disconnect this port
676 */
Dmitry Torokhov70f256f2007-04-10 00:40:27 -0400677 device_release_driver(&serio->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678}
679
680void serio_rescan(struct serio *serio)
681{
Dmitry Torokhoved7b1f62006-11-23 23:34:49 -0500682 serio_queue_event(serio, NULL, SERIO_RESCAN_PORT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683}
Dmitry Torokhov89b09b92009-04-17 20:12:34 -0700684EXPORT_SYMBOL(serio_rescan);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685
686void serio_reconnect(struct serio *serio)
687{
Shaohua Li6aabcdf2008-07-03 10:45:38 -0400688 serio_queue_event(serio, NULL, SERIO_RECONNECT_CHAIN);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689}
Dmitry Torokhov89b09b92009-04-17 20:12:34 -0700690EXPORT_SYMBOL(serio_reconnect);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691
692/*
693 * Submits register request to kseriod for subsequent execution.
694 * Note that port registration is always asynchronous.
695 */
696void __serio_register_port(struct serio *serio, struct module *owner)
697{
698 serio_init_port(serio);
699 serio_queue_event(serio, owner, SERIO_REGISTER_PORT);
700}
Dmitry Torokhov89b09b92009-04-17 20:12:34 -0700701EXPORT_SYMBOL(__serio_register_port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702
703/*
704 * Synchronously unregisters serio port.
705 */
706void serio_unregister_port(struct serio *serio)
707{
Arjan van de Venc4e32e92006-02-19 00:21:55 -0500708 mutex_lock(&serio_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709 serio_disconnect_port(serio);
710 serio_destroy_port(serio);
Arjan van de Venc4e32e92006-02-19 00:21:55 -0500711 mutex_unlock(&serio_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712}
Dmitry Torokhov89b09b92009-04-17 20:12:34 -0700713EXPORT_SYMBOL(serio_unregister_port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714
715/*
Linus Torvalds3c803e82005-06-27 17:49:45 -0700716 * Safely unregisters child port if one is present.
717 */
718void serio_unregister_child_port(struct serio *serio)
719{
Arjan van de Venc4e32e92006-02-19 00:21:55 -0500720 mutex_lock(&serio_mutex);
Linus Torvalds3c803e82005-06-27 17:49:45 -0700721 if (serio->child) {
722 serio_disconnect_port(serio->child);
723 serio_destroy_port(serio->child);
724 }
Arjan van de Venc4e32e92006-02-19 00:21:55 -0500725 mutex_unlock(&serio_mutex);
Linus Torvalds3c803e82005-06-27 17:49:45 -0700726}
Dmitry Torokhov89b09b92009-04-17 20:12:34 -0700727EXPORT_SYMBOL(serio_unregister_child_port);
Linus Torvalds3c803e82005-06-27 17:49:45 -0700728
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729
730/*
731 * Serio driver operations
732 */
733
734static ssize_t serio_driver_show_description(struct device_driver *drv, char *buf)
735{
736 struct serio_driver *driver = to_serio_driver(drv);
737 return sprintf(buf, "%s\n", driver->description ? driver->description : "(none)");
738}
739
740static ssize_t serio_driver_show_bind_mode(struct device_driver *drv, char *buf)
741{
742 struct serio_driver *serio_drv = to_serio_driver(drv);
743 return sprintf(buf, "%s\n", serio_drv->manual_bind ? "manual" : "auto");
744}
745
746static ssize_t serio_driver_set_bind_mode(struct device_driver *drv, const char *buf, size_t count)
747{
748 struct serio_driver *serio_drv = to_serio_driver(drv);
749 int retval;
750
751 retval = count;
752 if (!strncmp(buf, "manual", count)) {
Dmitry Torokhov7e044e02009-05-09 16:08:05 -0700753 serio_drv->manual_bind = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754 } else if (!strncmp(buf, "auto", count)) {
Dmitry Torokhov7e044e02009-05-09 16:08:05 -0700755 serio_drv->manual_bind = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756 } else {
757 retval = -EINVAL;
758 }
759
760 return retval;
761}
762
763
764static struct driver_attribute serio_driver_attrs[] = {
765 __ATTR(description, S_IRUGO, serio_driver_show_description, NULL),
766 __ATTR(bind_mode, S_IWUSR | S_IRUGO,
767 serio_driver_show_bind_mode, serio_driver_set_bind_mode),
768 __ATTR_NULL
769};
770
771static int serio_driver_probe(struct device *dev)
772{
773 struct serio *serio = to_serio_port(dev);
774 struct serio_driver *drv = to_serio_driver(dev->driver);
775
Linus Torvalds3c803e82005-06-27 17:49:45 -0700776 return serio_connect_driver(serio, drv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777}
778
779static int serio_driver_remove(struct device *dev)
780{
781 struct serio *serio = to_serio_port(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782
Linus Torvalds3c803e82005-06-27 17:49:45 -0700783 serio_disconnect_driver(serio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784 return 0;
785}
786
Dmitry Torokhov82dd9ef2007-02-18 01:40:30 -0500787static void serio_cleanup(struct serio *serio)
788{
Dmitry Torokhov33143ea2007-06-29 01:06:35 -0400789 mutex_lock(&serio->drv_mutex);
Dmitry Torokhov82dd9ef2007-02-18 01:40:30 -0500790 if (serio->drv && serio->drv->cleanup)
791 serio->drv->cleanup(serio);
Dmitry Torokhov33143ea2007-06-29 01:06:35 -0400792 mutex_unlock(&serio->drv_mutex);
Dmitry Torokhov82dd9ef2007-02-18 01:40:30 -0500793}
794
795static void serio_shutdown(struct device *dev)
796{
797 struct serio *serio = to_serio_port(dev);
798
799 serio_cleanup(serio);
800}
801
Dmitry Torokhoved7b1f62006-11-23 23:34:49 -0500802static void serio_attach_driver(struct serio_driver *drv)
Randy Dunlap73b59a32006-07-19 01:14:55 -0400803{
804 int error;
805
Dmitry Torokhoved7b1f62006-11-23 23:34:49 -0500806 error = driver_attach(&drv->driver);
Randy Dunlap73b59a32006-07-19 01:14:55 -0400807 if (error)
Dmitry Torokhoved7b1f62006-11-23 23:34:49 -0500808 printk(KERN_WARNING
809 "serio: driver_attach() failed for %s with error %d\n",
Randy Dunlap73b59a32006-07-19 01:14:55 -0400810 drv->driver.name, error);
811}
812
Greg Kroah-Hartman4b315622007-01-15 11:50:02 -0800813int __serio_register_driver(struct serio_driver *drv, struct module *owner, const char *mod_name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814{
Dmitry Torokhov7e044e02009-05-09 16:08:05 -0700815 bool manual_bind = drv->manual_bind;
Dmitry Torokhoved7b1f62006-11-23 23:34:49 -0500816 int error;
817
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818 drv->driver.bus = &serio_bus;
Greg Kroah-Hartman4b315622007-01-15 11:50:02 -0800819 drv->driver.owner = owner;
820 drv->driver.mod_name = mod_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821
Dmitry Torokhoved7b1f62006-11-23 23:34:49 -0500822 /*
823 * Temporarily disable automatic binding because probing
824 * takes long time and we are better off doing it in kseriod
825 */
Dmitry Torokhov7e044e02009-05-09 16:08:05 -0700826 drv->manual_bind = true;
Dmitry Torokhoved7b1f62006-11-23 23:34:49 -0500827
828 error = driver_register(&drv->driver);
829 if (error) {
830 printk(KERN_ERR
831 "serio: driver_register() failed for %s, error: %d\n",
832 drv->driver.name, error);
833 return error;
834 }
835
836 /*
837 * Restore original bind mode and let kseriod bind the
838 * driver to free ports
839 */
840 if (!manual_bind) {
Dmitry Torokhov7e044e02009-05-09 16:08:05 -0700841 drv->manual_bind = false;
Dmitry Torokhoved7b1f62006-11-23 23:34:49 -0500842 error = serio_queue_event(drv, NULL, SERIO_ATTACH_DRIVER);
843 if (error) {
844 driver_unregister(&drv->driver);
845 return error;
846 }
847 }
848
849 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850}
Dmitry Torokhov89b09b92009-04-17 20:12:34 -0700851EXPORT_SYMBOL(__serio_register_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852
853void serio_unregister_driver(struct serio_driver *drv)
854{
855 struct serio *serio;
856
Arjan van de Venc4e32e92006-02-19 00:21:55 -0500857 mutex_lock(&serio_mutex);
Dmitry Torokhove8ef4342008-06-02 00:41:57 -0400858
Dmitry Torokhov7e044e02009-05-09 16:08:05 -0700859 drv->manual_bind = true; /* so serio_find_driver ignores it */
Dmitry Torokhove8ef4342008-06-02 00:41:57 -0400860 serio_remove_pending_events(drv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861
862start_over:
863 list_for_each_entry(serio, &serio_list, node) {
864 if (serio->drv == drv) {
865 serio_disconnect_port(serio);
866 serio_find_driver(serio);
867 /* we could've deleted some ports, restart */
868 goto start_over;
869 }
870 }
871
872 driver_unregister(&drv->driver);
Arjan van de Venc4e32e92006-02-19 00:21:55 -0500873 mutex_unlock(&serio_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874}
Dmitry Torokhov89b09b92009-04-17 20:12:34 -0700875EXPORT_SYMBOL(serio_unregister_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876
877static void serio_set_drv(struct serio *serio, struct serio_driver *drv)
878{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879 serio_pause_rx(serio);
880 serio->drv = drv;
881 serio_continue_rx(serio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882}
883
884static int serio_bus_match(struct device *dev, struct device_driver *drv)
885{
886 struct serio *serio = to_serio_port(dev);
887 struct serio_driver *serio_drv = to_serio_driver(drv);
888
889 if (serio->manual_bind || serio_drv->manual_bind)
890 return 0;
891
892 return serio_match_port(serio_drv->id_table, serio);
893}
894
895#ifdef CONFIG_HOTPLUG
896
Kay Sievers312c0042005-11-16 09:00:00 +0100897#define SERIO_ADD_UEVENT_VAR(fmt, val...) \
Dmitry Torokhovae87dff2005-06-30 00:48:34 -0500898 do { \
Kay Sievers7eff2e72007-08-14 15:15:12 +0200899 int err = add_uevent_var(env, fmt, val); \
Dmitry Torokhovae87dff2005-06-30 00:48:34 -0500900 if (err) \
901 return err; \
902 } while (0)
903
Kay Sievers7eff2e72007-08-14 15:15:12 +0200904static int serio_uevent(struct device *dev, struct kobj_uevent_env *env)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905{
906 struct serio *serio;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907
908 if (!dev)
909 return -ENODEV;
910
911 serio = to_serio_port(dev);
912
Kay Sievers312c0042005-11-16 09:00:00 +0100913 SERIO_ADD_UEVENT_VAR("SERIO_TYPE=%02x", serio->id.type);
914 SERIO_ADD_UEVENT_VAR("SERIO_PROTO=%02x", serio->id.proto);
915 SERIO_ADD_UEVENT_VAR("SERIO_ID=%02x", serio->id.id);
916 SERIO_ADD_UEVENT_VAR("SERIO_EXTRA=%02x", serio->id.extra);
917 SERIO_ADD_UEVENT_VAR("MODALIAS=serio:ty%02Xpr%02Xid%02Xex%02X",
Dmitry Torokhovae87dff2005-06-30 00:48:34 -0500918 serio->id.type, serio->id.proto, serio->id.id, serio->id.extra);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919
920 return 0;
921}
Kay Sievers312c0042005-11-16 09:00:00 +0100922#undef SERIO_ADD_UEVENT_VAR
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923
924#else
925
Kay Sievers7eff2e72007-08-14 15:15:12 +0200926static int serio_uevent(struct device *dev, struct kobj_uevent_env *env)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927{
928 return -ENODEV;
929}
930
931#endif /* CONFIG_HOTPLUG */
932
Dmitry Torokhov82dd9ef2007-02-18 01:40:30 -0500933#ifdef CONFIG_PM
934static int serio_suspend(struct device *dev, pm_message_t state)
935{
Dmitry Torokhov7e044e02009-05-09 16:08:05 -0700936 struct serio *serio = to_serio_port(dev);
Dmitry Torokhov82dd9ef2007-02-18 01:40:30 -0500937
Thadeu Lima de Souza Cascardoddaa4342009-07-07 22:10:02 -0700938 if (!serio->suspended && state.event == PM_EVENT_SUSPEND)
Dmitry Torokhov7e044e02009-05-09 16:08:05 -0700939 serio_cleanup(serio);
Thadeu Lima de Souza Cascardoddaa4342009-07-07 22:10:02 -0700940
941 serio->suspended = state.event == PM_EVENT_SUSPEND ||
942 state.event == PM_EVENT_FREEZE;
Dmitry Torokhov82dd9ef2007-02-18 01:40:30 -0500943
944 return 0;
945}
946
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947static int serio_resume(struct device *dev)
948{
Dmitry Torokhov7e044e02009-05-09 16:08:05 -0700949 struct serio *serio = to_serio_port(dev);
950
Shaohua Li6aabcdf2008-07-03 10:45:38 -0400951 /*
952 * Driver reconnect can take a while, so better let kseriod
953 * deal with it.
954 */
Dmitry Torokhov7e044e02009-05-09 16:08:05 -0700955 if (serio->suspended) {
956 serio->suspended = false;
957 serio_queue_event(serio, NULL, SERIO_RECONNECT_PORT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958 }
959
960 return 0;
961}
Dmitry Torokhov82dd9ef2007-02-18 01:40:30 -0500962#endif /* CONFIG_PM */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963
Arjan van de Venc4e32e92006-02-19 00:21:55 -0500964/* called from serio_driver->connect/disconnect methods under serio_mutex */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965int serio_open(struct serio *serio, struct serio_driver *drv)
966{
967 serio_set_drv(serio, drv);
968
969 if (serio->open && serio->open(serio)) {
970 serio_set_drv(serio, NULL);
971 return -1;
972 }
973 return 0;
974}
Dmitry Torokhov89b09b92009-04-17 20:12:34 -0700975EXPORT_SYMBOL(serio_open);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976
Arjan van de Venc4e32e92006-02-19 00:21:55 -0500977/* called from serio_driver->connect/disconnect methods under serio_mutex */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978void serio_close(struct serio *serio)
979{
980 if (serio->close)
981 serio->close(serio);
982
983 serio_set_drv(serio, NULL);
984}
Dmitry Torokhov89b09b92009-04-17 20:12:34 -0700985EXPORT_SYMBOL(serio_close);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986
987irqreturn_t serio_interrupt(struct serio *serio,
David Howells7d12e782006-10-05 14:55:46 +0100988 unsigned char data, unsigned int dfl)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989{
990 unsigned long flags;
991 irqreturn_t ret = IRQ_NONE;
992
993 spin_lock_irqsave(&serio->lock, flags);
994
995 if (likely(serio->drv)) {
David Howells7d12e782006-10-05 14:55:46 +0100996 ret = serio->drv->interrupt(serio, data, dfl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997 } else if (!dfl && serio->registered) {
998 serio_rescan(serio);
999 ret = IRQ_HANDLED;
1000 }
1001
1002 spin_unlock_irqrestore(&serio->lock, flags);
1003
1004 return ret;
1005}
Dmitry Torokhov89b09b92009-04-17 20:12:34 -07001006EXPORT_SYMBOL(serio_interrupt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007
Marton Nemeth1ea2a692006-11-02 23:27:21 -05001008static struct bus_type serio_bus = {
1009 .name = "serio",
1010 .dev_attrs = serio_device_attrs,
1011 .drv_attrs = serio_driver_attrs,
1012 .match = serio_bus_match,
1013 .uevent = serio_uevent,
1014 .probe = serio_driver_probe,
1015 .remove = serio_driver_remove,
Dmitry Torokhov82dd9ef2007-02-18 01:40:30 -05001016 .shutdown = serio_shutdown,
1017#ifdef CONFIG_PM
1018 .suspend = serio_suspend,
Marton Nemeth1ea2a692006-11-02 23:27:21 -05001019 .resume = serio_resume,
Dmitry Torokhov82dd9ef2007-02-18 01:40:30 -05001020#endif
Marton Nemeth1ea2a692006-11-02 23:27:21 -05001021};
1022
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023static int __init serio_init(void)
1024{
Randy Dunlap73b59a32006-07-19 01:14:55 -04001025 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026
Randy Dunlap73b59a32006-07-19 01:14:55 -04001027 error = bus_register(&serio_bus);
1028 if (error) {
1029 printk(KERN_ERR "serio: failed to register serio bus, error: %d\n", error);
1030 return error;
1031 }
1032
1033 serio_task = kthread_run(serio_thread, NULL, "kseriod");
1034 if (IS_ERR(serio_task)) {
1035 bus_unregister(&serio_bus);
1036 error = PTR_ERR(serio_task);
1037 printk(KERN_ERR "serio: Failed to start kseriod, error: %d\n", error);
1038 return error;
1039 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040
1041 return 0;
1042}
1043
1044static void __exit serio_exit(void)
1045{
1046 bus_unregister(&serio_bus);
Linus Torvalds3c803e82005-06-27 17:49:45 -07001047 kthread_stop(serio_task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048}
1049
Dmitry Torokhov51c38f92006-02-19 00:22:51 -05001050subsys_initcall(serio_init);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051module_exit(serio_exit);