Input: serio - use list_first_entry() helper
[linux-2.6-block.git] / drivers / input / serio / serio.c
CommitLineData
1da177e4
LT
1/*
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>
1da177e4 34#include <linux/sched.h>
1da177e4 35#include <linux/slab.h>
3c803e8e 36#include <linux/kthread.h>
c4e32e9f 37#include <linux/mutex.h>
7dfb7103 38#include <linux/freezer.h>
1da177e4
LT
39
40MODULE_AUTHOR("Vojtech Pavlik <vojtech@ucw.cz>");
41MODULE_DESCRIPTION("Serio abstraction core");
42MODULE_LICENSE("GPL");
43
1da177e4 44/*
c4e32e9f 45 * serio_mutex protects entire serio subsystem and is taken every time
1da177e4
LT
46 * serio port or driver registrered or unregistered.
47 */
c4e32e9f 48static DEFINE_MUTEX(serio_mutex);
1da177e4
LT
49
50static LIST_HEAD(serio_list);
51
30226f81 52static struct bus_type serio_bus;
1da177e4
LT
53
54static void serio_add_port(struct serio *serio);
6aabcdff 55static int serio_reconnect_port(struct serio *serio);
1da177e4 56static void serio_disconnect_port(struct serio *serio);
6aabcdff 57static void serio_reconnect_chain(struct serio *serio);
ed7b1f6d 58static void serio_attach_driver(struct serio_driver *drv);
1da177e4 59
3c803e8e
LT
60static int serio_connect_driver(struct serio *serio, struct serio_driver *drv)
61{
62 int retval;
63
c4e32e9f 64 mutex_lock(&serio->drv_mutex);
3c803e8e 65 retval = drv->connect(serio, drv);
c4e32e9f 66 mutex_unlock(&serio->drv_mutex);
3c803e8e
LT
67
68 return retval;
69}
70
71static int serio_reconnect_driver(struct serio *serio)
72{
73 int retval = -1;
74
c4e32e9f 75 mutex_lock(&serio->drv_mutex);
3c803e8e
LT
76 if (serio->drv && serio->drv->reconnect)
77 retval = serio->drv->reconnect(serio);
c4e32e9f 78 mutex_unlock(&serio->drv_mutex);
3c803e8e
LT
79
80 return retval;
81}
82
83static void serio_disconnect_driver(struct serio *serio)
84{
c4e32e9f 85 mutex_lock(&serio->drv_mutex);
3c803e8e
LT
86 if (serio->drv)
87 serio->drv->disconnect(serio);
c4e32e9f 88 mutex_unlock(&serio->drv_mutex);
3c803e8e
LT
89}
90
1da177e4
LT
91static 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
70f256fd 108static int serio_bind_driver(struct serio *serio, struct serio_driver *drv)
1da177e4 109{
0a66045b
DT
110 int error;
111
1da177e4 112 if (serio_match_port(drv->id_table, serio)) {
70f256fd 113
1da177e4 114 serio->dev.driver = &drv->driver;
3c803e8e 115 if (serio_connect_driver(serio, drv)) {
1da177e4 116 serio->dev.driver = NULL;
70f256fd 117 return -ENODEV;
1da177e4 118 }
70f256fd 119
0a66045b
DT
120 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;
70f256fd 129 return error;
0a66045b 130 }
1da177e4 131 }
70f256fd 132 return 0;
1da177e4
LT
133}
134
135static void serio_find_driver(struct serio *serio)
136{
73b59a3b
RD
137 int error;
138
73b59a3b
RD
139 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);
1da177e4
LT
144}
145
146
147/*
148 * Serio event processing.
149 */
150
151enum serio_event_type {
ed7b1f6d
DT
152 SERIO_RESCAN_PORT,
153 SERIO_RECONNECT_PORT,
6aabcdff 154 SERIO_RECONNECT_CHAIN,
1da177e4 155 SERIO_REGISTER_PORT,
ed7b1f6d 156 SERIO_ATTACH_DRIVER,
1da177e4
LT
157};
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);
3c803e8e 169static struct task_struct *serio_task;
1da177e4 170
ed7b1f6d
DT
171static int serio_queue_event(void *object, struct module *owner,
172 enum serio_event_type event_type)
1da177e4
LT
173{
174 unsigned long flags;
175 struct serio_event *event;
ed7b1f6d 176 int retval = 0;
1da177e4
LT
177
178 spin_lock_irqsave(&serio_event_lock, flags);
179
180 /*
3c803e8e 181 * Scan event list for the other events for the same serio port,
1da177e4
LT
182 * 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.
3c803e8e 186 */
1da177e4
LT
187 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
ed7b1f6d
DT
195 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;
202 }
1da177e4 203
ed7b1f6d
DT
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;
1da177e4 211 }
ed7b1f6d
DT
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
1da177e4
LT
220out:
221 spin_unlock_irqrestore(&serio_event_lock, flags);
ed7b1f6d 222 return retval;
1da177e4
LT
223}
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{
4516c818 233 struct serio_event *e, *next;
1da177e4
LT
234 unsigned long flags;
235
236 spin_lock_irqsave(&serio_event_lock, flags);
237
4516c818 238 list_for_each_entry_safe(e, next, &serio_event_list, node) {
1da177e4
LT
239 if (event->object == e->object) {
240 /*
241 * If this event is of different type we should not
242 * look further - we only suppress duplicate events
243 * that were sent back-to-back.
244 */
245 if (event->type != e->type)
246 break;
247
4516c818 248 list_del_init(&e->node);
1da177e4
LT
249 serio_free_event(e);
250 }
251 }
252
253 spin_unlock_irqrestore(&serio_event_lock, flags);
254}
255
256
257static struct serio_event *serio_get_event(void)
258{
4516c818 259 struct serio_event *event = NULL;
1da177e4
LT
260 unsigned long flags;
261
262 spin_lock_irqsave(&serio_event_lock, flags);
263
4516c818
DT
264 if (!list_empty(&serio_event_list)) {
265 event = list_first_entry(&serio_event_list,
266 struct serio_event, node);
267 list_del_init(&event->node);
1da177e4
LT
268 }
269
1da177e4 270 spin_unlock_irqrestore(&serio_event_lock, flags);
1da177e4
LT
271 return event;
272}
273
9e50afd0 274static void serio_handle_event(void)
1da177e4
LT
275{
276 struct serio_event *event;
1da177e4 277
c4e32e9f 278 mutex_lock(&serio_mutex);
1da177e4 279
9e50afd0
DT
280 /*
281 * Note that we handle only one event here to give swsusp
282 * a chance to freeze kseriod thread. Serio events should
283 * be pretty rare so we are not concerned about taking
284 * performance hit.
285 */
286 if ((event = serio_get_event())) {
1da177e4
LT
287
288 switch (event->type) {
289 case SERIO_REGISTER_PORT:
290 serio_add_port(event->object);
291 break;
292
ed7b1f6d 293 case SERIO_RECONNECT_PORT:
1da177e4
LT
294 serio_reconnect_port(event->object);
295 break;
296
ed7b1f6d 297 case SERIO_RESCAN_PORT:
1da177e4
LT
298 serio_disconnect_port(event->object);
299 serio_find_driver(event->object);
300 break;
301
6aabcdff
SL
302 case SERIO_RECONNECT_CHAIN:
303 serio_reconnect_chain(event->object);
304 break;
305
ed7b1f6d
DT
306 case SERIO_ATTACH_DRIVER:
307 serio_attach_driver(event->object);
1da177e4
LT
308 break;
309
310 default:
311 break;
312 }
313
314 serio_remove_duplicate_events(event);
315 serio_free_event(event);
316 }
317
c4e32e9f 318 mutex_unlock(&serio_mutex);
1da177e4
LT
319}
320
321/*
e8ef4347
DT
322 * Remove all events that have been submitted for a given
323 * object, be it serio port or driver.
1da177e4 324 */
e8ef4347 325static void serio_remove_pending_events(void *object)
1da177e4 326{
4516c818 327 struct serio_event *event, *next;
1da177e4
LT
328 unsigned long flags;
329
330 spin_lock_irqsave(&serio_event_lock, flags);
331
4516c818 332 list_for_each_entry_safe(event, next, &serio_event_list, node) {
e8ef4347 333 if (event->object == object) {
4516c818 334 list_del_init(&event->node);
1da177e4
LT
335 serio_free_event(event);
336 }
337 }
338
339 spin_unlock_irqrestore(&serio_event_lock, flags);
340}
341
342/*
343 * Destroy child serio port (if any) that has not been fully registered yet.
344 *
345 * Note that we rely on the fact that port can have only one child and therefore
346 * only one child registration request can be pending. Additionally, children
347 * are registered by driver's connect() handler so there can't be a grandchild
348 * pending registration together with a child.
349 */
350static struct serio *serio_get_pending_child(struct serio *parent)
351{
352 struct serio_event *event;
353 struct serio *serio, *child = NULL;
354 unsigned long flags;
355
356 spin_lock_irqsave(&serio_event_lock, flags);
357
358 list_for_each_entry(event, &serio_event_list, node) {
359 if (event->type == SERIO_REGISTER_PORT) {
360 serio = event->object;
361 if (serio->parent == parent) {
362 child = serio;
363 break;
364 }
365 }
366 }
367
368 spin_unlock_irqrestore(&serio_event_lock, flags);
369 return child;
370}
371
372static int serio_thread(void *nothing)
373{
83144186 374 set_freezable();
1da177e4 375 do {
9e50afd0 376 serio_handle_event();
e42837bc 377 wait_event_freezable(serio_wait,
3c803e8e 378 kthread_should_stop() || !list_empty(&serio_event_list));
3c803e8e 379 } while (!kthread_should_stop());
1da177e4
LT
380
381 printk(KERN_DEBUG "serio: kseriod exiting\n");
3c803e8e 382 return 0;
1da177e4
LT
383}
384
385
386/*
387 * Serio port operations
388 */
389
e404e274 390static ssize_t serio_show_description(struct device *dev, struct device_attribute *attr, char *buf)
1da177e4
LT
391{
392 struct serio *serio = to_serio_port(dev);
393 return sprintf(buf, "%s\n", serio->name);
394}
395
ae87dff7
DT
396static ssize_t serio_show_modalias(struct device *dev, struct device_attribute *attr, char *buf)
397{
398 struct serio *serio = to_serio_port(dev);
399
400 return sprintf(buf, "serio:ty%02Xpr%02Xid%02Xex%02X\n",
401 serio->id.type, serio->id.proto, serio->id.id, serio->id.extra);
402}
403
e404e274 404static ssize_t serio_show_id_type(struct device *dev, struct device_attribute *attr, char *buf)
1da177e4
LT
405{
406 struct serio *serio = to_serio_port(dev);
407 return sprintf(buf, "%02x\n", serio->id.type);
408}
409
e404e274 410static ssize_t serio_show_id_proto(struct device *dev, struct device_attribute *attr, char *buf)
1da177e4
LT
411{
412 struct serio *serio = to_serio_port(dev);
413 return sprintf(buf, "%02x\n", serio->id.proto);
414}
415
e404e274 416static ssize_t serio_show_id_id(struct device *dev, struct device_attribute *attr, char *buf)
1da177e4
LT
417{
418 struct serio *serio = to_serio_port(dev);
419 return sprintf(buf, "%02x\n", serio->id.id);
420}
421
e404e274 422static ssize_t serio_show_id_extra(struct device *dev, struct device_attribute *attr, char *buf)
1da177e4
LT
423{
424 struct serio *serio = to_serio_port(dev);
425 return sprintf(buf, "%02x\n", serio->id.extra);
426}
427
baae9561
DT
428static DEVICE_ATTR(type, S_IRUGO, serio_show_id_type, NULL);
429static DEVICE_ATTR(proto, S_IRUGO, serio_show_id_proto, NULL);
430static DEVICE_ATTR(id, S_IRUGO, serio_show_id_id, NULL);
431static DEVICE_ATTR(extra, S_IRUGO, serio_show_id_extra, NULL);
432
433static struct attribute *serio_device_id_attrs[] = {
434 &dev_attr_type.attr,
435 &dev_attr_proto.attr,
436 &dev_attr_id.attr,
437 &dev_attr_extra.attr,
438 NULL
439};
440
441static struct attribute_group serio_id_attr_group = {
442 .name = "id",
443 .attrs = serio_device_id_attrs,
444};
445
386d8772
DT
446static const struct attribute_group *serio_device_attr_groups[] = {
447 &serio_id_attr_group,
448 NULL
449};
450
e404e274 451static ssize_t serio_rebind_driver(struct device *dev, struct device_attribute *attr, const char *buf, size_t count)
1da177e4
LT
452{
453 struct serio *serio = to_serio_port(dev);
454 struct device_driver *drv;
70f256fd 455 int error;
1da177e4 456
70f256fd
DT
457 error = mutex_lock_interruptible(&serio_mutex);
458 if (error)
459 return error;
1da177e4 460
1da177e4
LT
461 if (!strncmp(buf, "none", count)) {
462 serio_disconnect_port(serio);
463 } else if (!strncmp(buf, "reconnect", count)) {
6aabcdff 464 serio_reconnect_chain(serio);
1da177e4
LT
465 } else if (!strncmp(buf, "rescan", count)) {
466 serio_disconnect_port(serio);
467 serio_find_driver(serio);
468 } else if ((drv = driver_find(buf, &serio_bus)) != NULL) {
469 serio_disconnect_port(serio);
70f256fd 470 error = serio_bind_driver(serio, to_serio_driver(drv));
1da177e4
LT
471 put_driver(drv);
472 } else {
70f256fd 473 error = -EINVAL;
1da177e4
LT
474 }
475
c4e32e9f 476 mutex_unlock(&serio_mutex);
1da177e4 477
70f256fd 478 return error ? error : count;
1da177e4
LT
479}
480
e404e274 481static ssize_t serio_show_bind_mode(struct device *dev, struct device_attribute *attr, char *buf)
1da177e4
LT
482{
483 struct serio *serio = to_serio_port(dev);
484 return sprintf(buf, "%s\n", serio->manual_bind ? "manual" : "auto");
485}
486
e404e274 487static ssize_t serio_set_bind_mode(struct device *dev, struct device_attribute *attr, const char *buf, size_t count)
1da177e4
LT
488{
489 struct serio *serio = to_serio_port(dev);
490 int retval;
491
492 retval = count;
493 if (!strncmp(buf, "manual", count)) {
7e044e05 494 serio->manual_bind = true;
1da177e4 495 } else if (!strncmp(buf, "auto", count)) {
7e044e05 496 serio->manual_bind = false;
1da177e4
LT
497 } else {
498 retval = -EINVAL;
499 }
500
501 return retval;
502}
503
504static struct device_attribute serio_device_attrs[] = {
505 __ATTR(description, S_IRUGO, serio_show_description, NULL),
ae87dff7 506 __ATTR(modalias, S_IRUGO, serio_show_modalias, NULL),
1da177e4
LT
507 __ATTR(drvctl, S_IWUSR, NULL, serio_rebind_driver),
508 __ATTR(bind_mode, S_IWUSR | S_IRUGO, serio_show_bind_mode, serio_set_bind_mode),
509 __ATTR_NULL
510};
511
512
513static void serio_release_port(struct device *dev)
514{
515 struct serio *serio = to_serio_port(dev);
516
517 kfree(serio);
518 module_put(THIS_MODULE);
519}
520
521/*
522 * Prepare serio port for registration.
523 */
524static void serio_init_port(struct serio *serio)
525{
526 static atomic_t serio_no = ATOMIC_INIT(0);
527
528 __module_get(THIS_MODULE);
529
73b59a3b 530 INIT_LIST_HEAD(&serio->node);
1da177e4 531 spin_lock_init(&serio->lock);
c4e32e9f 532 mutex_init(&serio->drv_mutex);
1da177e4 533 device_initialize(&serio->dev);
a6c2490f
KS
534 dev_set_name(&serio->dev, "serio%ld",
535 (long)atomic_inc_return(&serio_no) - 1);
1da177e4
LT
536 serio->dev.bus = &serio_bus;
537 serio->dev.release = serio_release_port;
386d8772 538 serio->dev.groups = serio_device_attr_groups;
88aa0103 539 if (serio->parent) {
1da177e4 540 serio->dev.parent = &serio->parent->dev;
88aa0103
JK
541 serio->depth = serio->parent->depth + 1;
542 } else
543 serio->depth = 0;
544 lockdep_set_subclass(&serio->lock, serio->depth);
1da177e4
LT
545}
546
547/*
548 * Complete serio port registration.
549 * Driver core will attempt to find appropriate driver for the port.
550 */
551static void serio_add_port(struct serio *serio)
552{
73b59a3b
RD
553 int error;
554
1da177e4
LT
555 if (serio->parent) {
556 serio_pause_rx(serio->parent);
557 serio->parent->child = serio;
558 serio_continue_rx(serio->parent);
559 }
560
561 list_add_tail(&serio->node, &serio_list);
386d8772 562
1da177e4
LT
563 if (serio->start)
564 serio->start(serio);
386d8772 565
73b59a3b
RD
566 error = device_add(&serio->dev);
567 if (error)
568 printk(KERN_ERR
569 "serio: device_add() failed for %s (%s), error: %d\n",
570 serio->phys, serio->name, error);
1da177e4
LT
571}
572
573/*
574 * serio_destroy_port() completes deregistration process and removes
575 * port from the system
576 */
577static void serio_destroy_port(struct serio *serio)
578{
579 struct serio *child;
580
581 child = serio_get_pending_child(serio);
582 if (child) {
583 serio_remove_pending_events(child);
584 put_device(&child->dev);
585 }
586
587 if (serio->stop)
588 serio->stop(serio);
589
590 if (serio->parent) {
591 serio_pause_rx(serio->parent);
592 serio->parent->child = NULL;
593 serio_continue_rx(serio->parent);
594 serio->parent = NULL;
595 }
596
ddf1ffbd 597 if (device_is_registered(&serio->dev))
1da177e4 598 device_del(&serio->dev);
1da177e4 599
73b59a3b 600 list_del_init(&serio->node);
1da177e4
LT
601 serio_remove_pending_events(serio);
602 put_device(&serio->dev);
603}
604
6aabcdff
SL
605/*
606 * Reconnect serio port (re-initialize attached device).
607 * If reconnect fails (old device is no longer attached or
608 * there was no device to begin with) we do full rescan in
609 * hope of finding a driver for the port.
610 */
611static int serio_reconnect_port(struct serio *serio)
612{
613 int error = serio_reconnect_driver(serio);
614
615 if (error) {
616 serio_disconnect_port(serio);
617 serio_find_driver(serio);
618 }
619
620 return error;
621}
622
1da177e4
LT
623/*
624 * Reconnect serio port and all its children (re-initialize attached devices)
625 */
6aabcdff 626static void serio_reconnect_chain(struct serio *serio)
1da177e4
LT
627{
628 do {
6aabcdff 629 if (serio_reconnect_port(serio)) {
1da177e4
LT
630 /* Ok, old children are now gone, we are done */
631 break;
632 }
633 serio = serio->child;
634 } while (serio);
635}
636
637/*
638 * serio_disconnect_port() unbinds a port from its driver. As a side effect
639 * all child ports are unbound and destroyed.
640 */
641static void serio_disconnect_port(struct serio *serio)
642{
643 struct serio *s, *parent;
644
645 if (serio->child) {
646 /*
647 * Children ports should be disconnected and destroyed
648 * first, staring with the leaf one, since we don't want
649 * to do recursion
650 */
651 for (s = serio; s->child; s = s->child)
652 /* empty */;
653
654 do {
655 parent = s->parent;
656
70f256fd 657 device_release_driver(&s->dev);
1da177e4
LT
658 serio_destroy_port(s);
659 } while ((s = parent) != serio);
660 }
661
662 /*
663 * Ok, no children left, now disconnect this port
664 */
70f256fd 665 device_release_driver(&serio->dev);
1da177e4
LT
666}
667
668void serio_rescan(struct serio *serio)
669{
ed7b1f6d 670 serio_queue_event(serio, NULL, SERIO_RESCAN_PORT);
1da177e4 671}
89b09b99 672EXPORT_SYMBOL(serio_rescan);
1da177e4
LT
673
674void serio_reconnect(struct serio *serio)
675{
6aabcdff 676 serio_queue_event(serio, NULL, SERIO_RECONNECT_CHAIN);
1da177e4 677}
89b09b99 678EXPORT_SYMBOL(serio_reconnect);
1da177e4
LT
679
680/*
681 * Submits register request to kseriod for subsequent execution.
682 * Note that port registration is always asynchronous.
683 */
684void __serio_register_port(struct serio *serio, struct module *owner)
685{
686 serio_init_port(serio);
687 serio_queue_event(serio, owner, SERIO_REGISTER_PORT);
688}
89b09b99 689EXPORT_SYMBOL(__serio_register_port);
1da177e4
LT
690
691/*
692 * Synchronously unregisters serio port.
693 */
694void serio_unregister_port(struct serio *serio)
695{
c4e32e9f 696 mutex_lock(&serio_mutex);
1da177e4
LT
697 serio_disconnect_port(serio);
698 serio_destroy_port(serio);
c4e32e9f 699 mutex_unlock(&serio_mutex);
1da177e4 700}
89b09b99 701EXPORT_SYMBOL(serio_unregister_port);
1da177e4 702
3c803e8e
LT
703/*
704 * Safely unregisters child port if one is present.
705 */
706void serio_unregister_child_port(struct serio *serio)
707{
c4e32e9f 708 mutex_lock(&serio_mutex);
3c803e8e
LT
709 if (serio->child) {
710 serio_disconnect_port(serio->child);
711 serio_destroy_port(serio->child);
712 }
c4e32e9f 713 mutex_unlock(&serio_mutex);
3c803e8e 714}
89b09b99 715EXPORT_SYMBOL(serio_unregister_child_port);
3c803e8e 716
1da177e4
LT
717
718/*
719 * Serio driver operations
720 */
721
722static ssize_t serio_driver_show_description(struct device_driver *drv, char *buf)
723{
724 struct serio_driver *driver = to_serio_driver(drv);
725 return sprintf(buf, "%s\n", driver->description ? driver->description : "(none)");
726}
727
728static ssize_t serio_driver_show_bind_mode(struct device_driver *drv, char *buf)
729{
730 struct serio_driver *serio_drv = to_serio_driver(drv);
731 return sprintf(buf, "%s\n", serio_drv->manual_bind ? "manual" : "auto");
732}
733
734static ssize_t serio_driver_set_bind_mode(struct device_driver *drv, const char *buf, size_t count)
735{
736 struct serio_driver *serio_drv = to_serio_driver(drv);
737 int retval;
738
739 retval = count;
740 if (!strncmp(buf, "manual", count)) {
7e044e05 741 serio_drv->manual_bind = true;
1da177e4 742 } else if (!strncmp(buf, "auto", count)) {
7e044e05 743 serio_drv->manual_bind = false;
1da177e4
LT
744 } else {
745 retval = -EINVAL;
746 }
747
748 return retval;
749}
750
751
752static struct driver_attribute serio_driver_attrs[] = {
753 __ATTR(description, S_IRUGO, serio_driver_show_description, NULL),
754 __ATTR(bind_mode, S_IWUSR | S_IRUGO,
755 serio_driver_show_bind_mode, serio_driver_set_bind_mode),
756 __ATTR_NULL
757};
758
759static int serio_driver_probe(struct device *dev)
760{
761 struct serio *serio = to_serio_port(dev);
762 struct serio_driver *drv = to_serio_driver(dev->driver);
763
3c803e8e 764 return serio_connect_driver(serio, drv);
1da177e4
LT
765}
766
767static int serio_driver_remove(struct device *dev)
768{
769 struct serio *serio = to_serio_port(dev);
1da177e4 770
3c803e8e 771 serio_disconnect_driver(serio);
1da177e4
LT
772 return 0;
773}
774
82dd9eff
DT
775static void serio_cleanup(struct serio *serio)
776{
33143ea1 777 mutex_lock(&serio->drv_mutex);
82dd9eff
DT
778 if (serio->drv && serio->drv->cleanup)
779 serio->drv->cleanup(serio);
33143ea1 780 mutex_unlock(&serio->drv_mutex);
82dd9eff
DT
781}
782
783static void serio_shutdown(struct device *dev)
784{
785 struct serio *serio = to_serio_port(dev);
786
787 serio_cleanup(serio);
788}
789
ed7b1f6d 790static void serio_attach_driver(struct serio_driver *drv)
73b59a3b
RD
791{
792 int error;
793
ed7b1f6d 794 error = driver_attach(&drv->driver);
73b59a3b 795 if (error)
ed7b1f6d
DT
796 printk(KERN_WARNING
797 "serio: driver_attach() failed for %s with error %d\n",
73b59a3b
RD
798 drv->driver.name, error);
799}
800
4b315627 801int __serio_register_driver(struct serio_driver *drv, struct module *owner, const char *mod_name)
1da177e4 802{
7e044e05 803 bool manual_bind = drv->manual_bind;
ed7b1f6d
DT
804 int error;
805
1da177e4 806 drv->driver.bus = &serio_bus;
4b315627
GKH
807 drv->driver.owner = owner;
808 drv->driver.mod_name = mod_name;
1da177e4 809
ed7b1f6d
DT
810 /*
811 * Temporarily disable automatic binding because probing
812 * takes long time and we are better off doing it in kseriod
813 */
7e044e05 814 drv->manual_bind = true;
ed7b1f6d
DT
815
816 error = driver_register(&drv->driver);
817 if (error) {
818 printk(KERN_ERR
819 "serio: driver_register() failed for %s, error: %d\n",
820 drv->driver.name, error);
821 return error;
822 }
823
824 /*
825 * Restore original bind mode and let kseriod bind the
826 * driver to free ports
827 */
828 if (!manual_bind) {
7e044e05 829 drv->manual_bind = false;
ed7b1f6d
DT
830 error = serio_queue_event(drv, NULL, SERIO_ATTACH_DRIVER);
831 if (error) {
832 driver_unregister(&drv->driver);
833 return error;
834 }
835 }
836
837 return 0;
1da177e4 838}
89b09b99 839EXPORT_SYMBOL(__serio_register_driver);
1da177e4
LT
840
841void serio_unregister_driver(struct serio_driver *drv)
842{
843 struct serio *serio;
844
c4e32e9f 845 mutex_lock(&serio_mutex);
e8ef4347 846
7e044e05 847 drv->manual_bind = true; /* so serio_find_driver ignores it */
e8ef4347 848 serio_remove_pending_events(drv);
1da177e4
LT
849
850start_over:
851 list_for_each_entry(serio, &serio_list, node) {
852 if (serio->drv == drv) {
853 serio_disconnect_port(serio);
854 serio_find_driver(serio);
855 /* we could've deleted some ports, restart */
856 goto start_over;
857 }
858 }
859
860 driver_unregister(&drv->driver);
c4e32e9f 861 mutex_unlock(&serio_mutex);
1da177e4 862}
89b09b99 863EXPORT_SYMBOL(serio_unregister_driver);
1da177e4
LT
864
865static void serio_set_drv(struct serio *serio, struct serio_driver *drv)
866{
1da177e4
LT
867 serio_pause_rx(serio);
868 serio->drv = drv;
869 serio_continue_rx(serio);
1da177e4
LT
870}
871
872static int serio_bus_match(struct device *dev, struct device_driver *drv)
873{
874 struct serio *serio = to_serio_port(dev);
875 struct serio_driver *serio_drv = to_serio_driver(drv);
876
877 if (serio->manual_bind || serio_drv->manual_bind)
878 return 0;
879
880 return serio_match_port(serio_drv->id_table, serio);
881}
882
883#ifdef CONFIG_HOTPLUG
884
312c004d 885#define SERIO_ADD_UEVENT_VAR(fmt, val...) \
ae87dff7 886 do { \
7eff2e7a 887 int err = add_uevent_var(env, fmt, val); \
ae87dff7
DT
888 if (err) \
889 return err; \
890 } while (0)
891
7eff2e7a 892static int serio_uevent(struct device *dev, struct kobj_uevent_env *env)
1da177e4
LT
893{
894 struct serio *serio;
1da177e4
LT
895
896 if (!dev)
897 return -ENODEV;
898
899 serio = to_serio_port(dev);
900
312c004d
KS
901 SERIO_ADD_UEVENT_VAR("SERIO_TYPE=%02x", serio->id.type);
902 SERIO_ADD_UEVENT_VAR("SERIO_PROTO=%02x", serio->id.proto);
903 SERIO_ADD_UEVENT_VAR("SERIO_ID=%02x", serio->id.id);
904 SERIO_ADD_UEVENT_VAR("SERIO_EXTRA=%02x", serio->id.extra);
905 SERIO_ADD_UEVENT_VAR("MODALIAS=serio:ty%02Xpr%02Xid%02Xex%02X",
ae87dff7 906 serio->id.type, serio->id.proto, serio->id.id, serio->id.extra);
1da177e4
LT
907
908 return 0;
909}
312c004d 910#undef SERIO_ADD_UEVENT_VAR
1da177e4
LT
911
912#else
913
7eff2e7a 914static int serio_uevent(struct device *dev, struct kobj_uevent_env *env)
1da177e4
LT
915{
916 return -ENODEV;
917}
918
919#endif /* CONFIG_HOTPLUG */
920
82dd9eff 921#ifdef CONFIG_PM
633aae23 922static int serio_suspend(struct device *dev)
82dd9eff 923{
7e044e05 924 struct serio *serio = to_serio_port(dev);
82dd9eff 925
633aae23 926 serio_cleanup(serio);
82dd9eff
DT
927
928 return 0;
929}
930
1da177e4
LT
931static int serio_resume(struct device *dev)
932{
7e044e05
DT
933 struct serio *serio = to_serio_port(dev);
934
6aabcdff
SL
935 /*
936 * Driver reconnect can take a while, so better let kseriod
937 * deal with it.
938 */
633aae23 939 serio_queue_event(serio, NULL, SERIO_RECONNECT_PORT);
1da177e4
LT
940
941 return 0;
942}
633aae23
DT
943
944static const struct dev_pm_ops serio_pm_ops = {
945 .suspend = serio_suspend,
946 .resume = serio_resume,
947 .poweroff = serio_suspend,
948 .restore = serio_resume,
949};
82dd9eff 950#endif /* CONFIG_PM */
1da177e4 951
c4e32e9f 952/* called from serio_driver->connect/disconnect methods under serio_mutex */
1da177e4
LT
953int serio_open(struct serio *serio, struct serio_driver *drv)
954{
955 serio_set_drv(serio, drv);
956
957 if (serio->open && serio->open(serio)) {
958 serio_set_drv(serio, NULL);
959 return -1;
960 }
961 return 0;
962}
89b09b99 963EXPORT_SYMBOL(serio_open);
1da177e4 964
c4e32e9f 965/* called from serio_driver->connect/disconnect methods under serio_mutex */
1da177e4
LT
966void serio_close(struct serio *serio)
967{
968 if (serio->close)
969 serio->close(serio);
970
971 serio_set_drv(serio, NULL);
972}
89b09b99 973EXPORT_SYMBOL(serio_close);
1da177e4
LT
974
975irqreturn_t serio_interrupt(struct serio *serio,
7d12e780 976 unsigned char data, unsigned int dfl)
1da177e4
LT
977{
978 unsigned long flags;
979 irqreturn_t ret = IRQ_NONE;
980
981 spin_lock_irqsave(&serio->lock, flags);
982
983 if (likely(serio->drv)) {
7d12e780 984 ret = serio->drv->interrupt(serio, data, dfl);
ddf1ffbd 985 } else if (!dfl && device_is_registered(&serio->dev)) {
1da177e4
LT
986 serio_rescan(serio);
987 ret = IRQ_HANDLED;
988 }
989
990 spin_unlock_irqrestore(&serio->lock, flags);
991
992 return ret;
993}
89b09b99 994EXPORT_SYMBOL(serio_interrupt);
1da177e4 995
1ea2a69d
MN
996static struct bus_type serio_bus = {
997 .name = "serio",
998 .dev_attrs = serio_device_attrs,
999 .drv_attrs = serio_driver_attrs,
1000 .match = serio_bus_match,
1001 .uevent = serio_uevent,
1002 .probe = serio_driver_probe,
1003 .remove = serio_driver_remove,
82dd9eff
DT
1004 .shutdown = serio_shutdown,
1005#ifdef CONFIG_PM
633aae23 1006 .pm = &serio_pm_ops,
82dd9eff 1007#endif
1ea2a69d
MN
1008};
1009
1da177e4
LT
1010static int __init serio_init(void)
1011{
73b59a3b 1012 int error;
1da177e4 1013
73b59a3b
RD
1014 error = bus_register(&serio_bus);
1015 if (error) {
1016 printk(KERN_ERR "serio: failed to register serio bus, error: %d\n", error);
1017 return error;
1018 }
1019
1020 serio_task = kthread_run(serio_thread, NULL, "kseriod");
1021 if (IS_ERR(serio_task)) {
1022 bus_unregister(&serio_bus);
1023 error = PTR_ERR(serio_task);
1024 printk(KERN_ERR "serio: Failed to start kseriod, error: %d\n", error);
1025 return error;
1026 }
1da177e4
LT
1027
1028 return 0;
1029}
1030
1031static void __exit serio_exit(void)
1032{
1033 bus_unregister(&serio_bus);
3c803e8e 1034 kthread_stop(serio_task);
1da177e4
LT
1035}
1036
51c38f9b 1037subsys_initcall(serio_init);
1da177e4 1038module_exit(serio_exit);