blob: e0f30186d513d4633649beeb9a7f73e361c7d972 [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 Torokhovea486e62009-12-24 21:40:43 -0800287 while ((event = serio_get_event())) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288
289 switch (event->type) {
290 case SERIO_REGISTER_PORT:
291 serio_add_port(event->object);
292 break;
293
Dmitry Torokhoved7b1f62006-11-23 23:34:49 -0500294 case SERIO_RECONNECT_PORT:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 serio_reconnect_port(event->object);
296 break;
297
Dmitry Torokhoved7b1f62006-11-23 23:34:49 -0500298 case SERIO_RESCAN_PORT:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299 serio_disconnect_port(event->object);
300 serio_find_driver(event->object);
301 break;
302
Shaohua Li6aabcdf2008-07-03 10:45:38 -0400303 case SERIO_RECONNECT_CHAIN:
304 serio_reconnect_chain(event->object);
305 break;
306
Dmitry Torokhoved7b1f62006-11-23 23:34:49 -0500307 case SERIO_ATTACH_DRIVER:
308 serio_attach_driver(event->object);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 break;
310
311 default:
312 break;
313 }
314
315 serio_remove_duplicate_events(event);
316 serio_free_event(event);
317 }
318
Arjan van de Venc4e32e92006-02-19 00:21:55 -0500319 mutex_unlock(&serio_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320}
321
322/*
Dmitry Torokhove8ef4342008-06-02 00:41:57 -0400323 * Remove all events that have been submitted for a given
324 * object, be it serio port or driver.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 */
Dmitry Torokhove8ef4342008-06-02 00:41:57 -0400326static void serio_remove_pending_events(void *object)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327{
328 struct list_head *node, *next;
329 struct serio_event *event;
330 unsigned long flags;
331
332 spin_lock_irqsave(&serio_event_lock, flags);
333
334 list_for_each_safe(node, next, &serio_event_list) {
335 event = list_entry(node, struct serio_event, node);
Dmitry Torokhove8ef4342008-06-02 00:41:57 -0400336 if (event->object == object) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 list_del_init(node);
338 serio_free_event(event);
339 }
340 }
341
342 spin_unlock_irqrestore(&serio_event_lock, flags);
343}
344
345/*
346 * Destroy child serio port (if any) that has not been fully registered yet.
347 *
348 * Note that we rely on the fact that port can have only one child and therefore
349 * only one child registration request can be pending. Additionally, children
350 * are registered by driver's connect() handler so there can't be a grandchild
351 * pending registration together with a child.
352 */
353static struct serio *serio_get_pending_child(struct serio *parent)
354{
355 struct serio_event *event;
356 struct serio *serio, *child = NULL;
357 unsigned long flags;
358
359 spin_lock_irqsave(&serio_event_lock, flags);
360
361 list_for_each_entry(event, &serio_event_list, node) {
362 if (event->type == SERIO_REGISTER_PORT) {
363 serio = event->object;
364 if (serio->parent == parent) {
365 child = serio;
366 break;
367 }
368 }
369 }
370
371 spin_unlock_irqrestore(&serio_event_lock, flags);
372 return child;
373}
374
375static int serio_thread(void *nothing)
376{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 do {
Dmitry Torokhov9e50afd2005-11-20 00:56:43 -0500378 serio_handle_event();
Dmitry Torokhovea486e62009-12-24 21:40:43 -0800379 wait_event_interruptible(serio_wait,
Linus Torvalds3c803e82005-06-27 17:49:45 -0700380 kthread_should_stop() || !list_empty(&serio_event_list));
Linus Torvalds3c803e82005-06-27 17:49:45 -0700381 } while (!kthread_should_stop());
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382
383 printk(KERN_DEBUG "serio: kseriod exiting\n");
Linus Torvalds3c803e82005-06-27 17:49:45 -0700384 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385}
386
387
388/*
389 * Serio port operations
390 */
391
Yani Ioannoue404e272005-05-17 06:42:58 -0400392static ssize_t serio_show_description(struct device *dev, struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393{
394 struct serio *serio = to_serio_port(dev);
395 return sprintf(buf, "%s\n", serio->name);
396}
397
Dmitry Torokhovae87dff2005-06-30 00:48:34 -0500398static ssize_t serio_show_modalias(struct device *dev, struct device_attribute *attr, char *buf)
399{
400 struct serio *serio = to_serio_port(dev);
401
402 return sprintf(buf, "serio:ty%02Xpr%02Xid%02Xex%02X\n",
403 serio->id.type, serio->id.proto, serio->id.id, serio->id.extra);
404}
405
Yani Ioannoue404e272005-05-17 06:42:58 -0400406static ssize_t serio_show_id_type(struct device *dev, struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407{
408 struct serio *serio = to_serio_port(dev);
409 return sprintf(buf, "%02x\n", serio->id.type);
410}
411
Yani Ioannoue404e272005-05-17 06:42:58 -0400412static ssize_t serio_show_id_proto(struct device *dev, struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413{
414 struct serio *serio = to_serio_port(dev);
415 return sprintf(buf, "%02x\n", serio->id.proto);
416}
417
Yani Ioannoue404e272005-05-17 06:42:58 -0400418static ssize_t serio_show_id_id(struct device *dev, struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419{
420 struct serio *serio = to_serio_port(dev);
421 return sprintf(buf, "%02x\n", serio->id.id);
422}
423
Yani Ioannoue404e272005-05-17 06:42:58 -0400424static ssize_t serio_show_id_extra(struct device *dev, struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425{
426 struct serio *serio = to_serio_port(dev);
427 return sprintf(buf, "%02x\n", serio->id.extra);
428}
429
Dmitry Torokhovbaae9562005-05-16 21:53:09 -0700430static DEVICE_ATTR(type, S_IRUGO, serio_show_id_type, NULL);
431static DEVICE_ATTR(proto, S_IRUGO, serio_show_id_proto, NULL);
432static DEVICE_ATTR(id, S_IRUGO, serio_show_id_id, NULL);
433static DEVICE_ATTR(extra, S_IRUGO, serio_show_id_extra, NULL);
434
435static struct attribute *serio_device_id_attrs[] = {
436 &dev_attr_type.attr,
437 &dev_attr_proto.attr,
438 &dev_attr_id.attr,
439 &dev_attr_extra.attr,
440 NULL
441};
442
443static struct attribute_group serio_id_attr_group = {
444 .name = "id",
445 .attrs = serio_device_id_attrs,
446};
447
Yani Ioannoue404e272005-05-17 06:42:58 -0400448static 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 -0700449{
450 struct serio *serio = to_serio_port(dev);
451 struct device_driver *drv;
Dmitry Torokhov70f256f2007-04-10 00:40:27 -0400452 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453
Dmitry Torokhov70f256f2007-04-10 00:40:27 -0400454 error = mutex_lock_interruptible(&serio_mutex);
455 if (error)
456 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 if (!strncmp(buf, "none", count)) {
459 serio_disconnect_port(serio);
460 } else if (!strncmp(buf, "reconnect", count)) {
Shaohua Li6aabcdf2008-07-03 10:45:38 -0400461 serio_reconnect_chain(serio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 } else if (!strncmp(buf, "rescan", count)) {
463 serio_disconnect_port(serio);
464 serio_find_driver(serio);
465 } else if ((drv = driver_find(buf, &serio_bus)) != NULL) {
466 serio_disconnect_port(serio);
Dmitry Torokhov70f256f2007-04-10 00:40:27 -0400467 error = serio_bind_driver(serio, to_serio_driver(drv));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 put_driver(drv);
469 } else {
Dmitry Torokhov70f256f2007-04-10 00:40:27 -0400470 error = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 }
472
Arjan van de Venc4e32e92006-02-19 00:21:55 -0500473 mutex_unlock(&serio_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474
Dmitry Torokhov70f256f2007-04-10 00:40:27 -0400475 return error ? error : count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476}
477
Yani Ioannoue404e272005-05-17 06:42:58 -0400478static ssize_t serio_show_bind_mode(struct device *dev, struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479{
480 struct serio *serio = to_serio_port(dev);
481 return sprintf(buf, "%s\n", serio->manual_bind ? "manual" : "auto");
482}
483
Yani Ioannoue404e272005-05-17 06:42:58 -0400484static 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 -0700485{
486 struct serio *serio = to_serio_port(dev);
487 int retval;
488
489 retval = count;
490 if (!strncmp(buf, "manual", count)) {
Dmitry Torokhov7e044e02009-05-09 16:08:05 -0700491 serio->manual_bind = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492 } else if (!strncmp(buf, "auto", count)) {
Dmitry Torokhov7e044e02009-05-09 16:08:05 -0700493 serio->manual_bind = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 } else {
495 retval = -EINVAL;
496 }
497
498 return retval;
499}
500
501static struct device_attribute serio_device_attrs[] = {
502 __ATTR(description, S_IRUGO, serio_show_description, NULL),
Dmitry Torokhovae87dff2005-06-30 00:48:34 -0500503 __ATTR(modalias, S_IRUGO, serio_show_modalias, NULL),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504 __ATTR(drvctl, S_IWUSR, NULL, serio_rebind_driver),
505 __ATTR(bind_mode, S_IWUSR | S_IRUGO, serio_show_bind_mode, serio_set_bind_mode),
506 __ATTR_NULL
507};
508
509
510static void serio_release_port(struct device *dev)
511{
512 struct serio *serio = to_serio_port(dev);
513
514 kfree(serio);
515 module_put(THIS_MODULE);
516}
517
518/*
519 * Prepare serio port for registration.
520 */
521static void serio_init_port(struct serio *serio)
522{
523 static atomic_t serio_no = ATOMIC_INIT(0);
524
525 __module_get(THIS_MODULE);
526
Randy Dunlap73b59a32006-07-19 01:14:55 -0400527 INIT_LIST_HEAD(&serio->node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 spin_lock_init(&serio->lock);
Arjan van de Venc4e32e92006-02-19 00:21:55 -0500529 mutex_init(&serio->drv_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530 device_initialize(&serio->dev);
Kay Sieversa6c24902008-10-30 00:07:50 -0400531 dev_set_name(&serio->dev, "serio%ld",
532 (long)atomic_inc_return(&serio_no) - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 serio->dev.bus = &serio_bus;
534 serio->dev.release = serio_release_port;
Jiri Kosina88aa0102006-10-11 01:45:31 -0400535 if (serio->parent) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 serio->dev.parent = &serio->parent->dev;
Jiri Kosina88aa0102006-10-11 01:45:31 -0400537 serio->depth = serio->parent->depth + 1;
538 } else
539 serio->depth = 0;
540 lockdep_set_subclass(&serio->lock, serio->depth);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541}
542
543/*
544 * Complete serio port registration.
545 * Driver core will attempt to find appropriate driver for the port.
546 */
547static void serio_add_port(struct serio *serio)
548{
Randy Dunlap73b59a32006-07-19 01:14:55 -0400549 int error;
550
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 if (serio->parent) {
552 serio_pause_rx(serio->parent);
553 serio->parent->child = serio;
554 serio_continue_rx(serio->parent);
555 }
556
557 list_add_tail(&serio->node, &serio_list);
558 if (serio->start)
559 serio->start(serio);
Randy Dunlap73b59a32006-07-19 01:14:55 -0400560 error = device_add(&serio->dev);
561 if (error)
562 printk(KERN_ERR
563 "serio: device_add() failed for %s (%s), error: %d\n",
564 serio->phys, serio->name, error);
565 else {
Dmitry Torokhov7e044e02009-05-09 16:08:05 -0700566 serio->registered = true;
Randy Dunlap73b59a32006-07-19 01:14:55 -0400567 error = sysfs_create_group(&serio->dev.kobj, &serio_id_attr_group);
568 if (error)
569 printk(KERN_ERR
570 "serio: sysfs_create_group() failed for %s (%s), error: %d\n",
571 serio->phys, serio->name, error);
572 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573}
574
575/*
576 * serio_destroy_port() completes deregistration process and removes
577 * port from the system
578 */
579static void serio_destroy_port(struct serio *serio)
580{
581 struct serio *child;
582
583 child = serio_get_pending_child(serio);
584 if (child) {
585 serio_remove_pending_events(child);
586 put_device(&child->dev);
587 }
588
589 if (serio->stop)
590 serio->stop(serio);
591
592 if (serio->parent) {
593 serio_pause_rx(serio->parent);
594 serio->parent->child = NULL;
595 serio_continue_rx(serio->parent);
596 serio->parent = NULL;
597 }
598
599 if (serio->registered) {
Dmitry Torokhovbaae9562005-05-16 21:53:09 -0700600 sysfs_remove_group(&serio->dev.kobj, &serio_id_attr_group);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601 device_del(&serio->dev);
Dmitry Torokhov7e044e02009-05-09 16:08:05 -0700602 serio->registered = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 }
604
Randy Dunlap73b59a32006-07-19 01:14:55 -0400605 list_del_init(&serio->node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 serio_remove_pending_events(serio);
607 put_device(&serio->dev);
608}
609
610/*
Shaohua Li6aabcdf2008-07-03 10:45:38 -0400611 * Reconnect serio port (re-initialize attached device).
612 * If reconnect fails (old device is no longer attached or
613 * there was no device to begin with) we do full rescan in
614 * hope of finding a driver for the port.
615 */
616static int serio_reconnect_port(struct serio *serio)
617{
618 int error = serio_reconnect_driver(serio);
619
620 if (error) {
621 serio_disconnect_port(serio);
622 serio_find_driver(serio);
623 }
624
625 return error;
626}
627
628/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629 * Reconnect serio port and all its children (re-initialize attached devices)
630 */
Shaohua Li6aabcdf2008-07-03 10:45:38 -0400631static void serio_reconnect_chain(struct serio *serio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632{
633 do {
Shaohua Li6aabcdf2008-07-03 10:45:38 -0400634 if (serio_reconnect_port(serio)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635 /* Ok, old children are now gone, we are done */
636 break;
637 }
638 serio = serio->child;
639 } while (serio);
640}
641
642/*
643 * serio_disconnect_port() unbinds a port from its driver. As a side effect
644 * all child ports are unbound and destroyed.
645 */
646static void serio_disconnect_port(struct serio *serio)
647{
648 struct serio *s, *parent;
649
650 if (serio->child) {
651 /*
652 * Children ports should be disconnected and destroyed
653 * first, staring with the leaf one, since we don't want
654 * to do recursion
655 */
656 for (s = serio; s->child; s = s->child)
657 /* empty */;
658
659 do {
660 parent = s->parent;
661
Dmitry Torokhov70f256f2007-04-10 00:40:27 -0400662 device_release_driver(&s->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 serio_destroy_port(s);
664 } while ((s = parent) != serio);
665 }
666
667 /*
668 * Ok, no children left, now disconnect this port
669 */
Dmitry Torokhov70f256f2007-04-10 00:40:27 -0400670 device_release_driver(&serio->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671}
672
673void serio_rescan(struct serio *serio)
674{
Dmitry Torokhoved7b1f62006-11-23 23:34:49 -0500675 serio_queue_event(serio, NULL, SERIO_RESCAN_PORT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676}
Dmitry Torokhov89b09b92009-04-17 20:12:34 -0700677EXPORT_SYMBOL(serio_rescan);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678
679void serio_reconnect(struct serio *serio)
680{
Shaohua Li6aabcdf2008-07-03 10:45:38 -0400681 serio_queue_event(serio, NULL, SERIO_RECONNECT_CHAIN);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682}
Dmitry Torokhov89b09b92009-04-17 20:12:34 -0700683EXPORT_SYMBOL(serio_reconnect);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684
685/*
686 * Submits register request to kseriod for subsequent execution.
687 * Note that port registration is always asynchronous.
688 */
689void __serio_register_port(struct serio *serio, struct module *owner)
690{
691 serio_init_port(serio);
692 serio_queue_event(serio, owner, SERIO_REGISTER_PORT);
693}
Dmitry Torokhov89b09b92009-04-17 20:12:34 -0700694EXPORT_SYMBOL(__serio_register_port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695
696/*
697 * Synchronously unregisters serio port.
698 */
699void serio_unregister_port(struct serio *serio)
700{
Arjan van de Venc4e32e92006-02-19 00:21:55 -0500701 mutex_lock(&serio_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702 serio_disconnect_port(serio);
703 serio_destroy_port(serio);
Arjan van de Venc4e32e92006-02-19 00:21:55 -0500704 mutex_unlock(&serio_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705}
Dmitry Torokhov89b09b92009-04-17 20:12:34 -0700706EXPORT_SYMBOL(serio_unregister_port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707
708/*
Linus Torvalds3c803e82005-06-27 17:49:45 -0700709 * Safely unregisters child port if one is present.
710 */
711void serio_unregister_child_port(struct serio *serio)
712{
Arjan van de Venc4e32e92006-02-19 00:21:55 -0500713 mutex_lock(&serio_mutex);
Linus Torvalds3c803e82005-06-27 17:49:45 -0700714 if (serio->child) {
715 serio_disconnect_port(serio->child);
716 serio_destroy_port(serio->child);
717 }
Arjan van de Venc4e32e92006-02-19 00:21:55 -0500718 mutex_unlock(&serio_mutex);
Linus Torvalds3c803e82005-06-27 17:49:45 -0700719}
Dmitry Torokhov89b09b92009-04-17 20:12:34 -0700720EXPORT_SYMBOL(serio_unregister_child_port);
Linus Torvalds3c803e82005-06-27 17:49:45 -0700721
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722
723/*
724 * Serio driver operations
725 */
726
727static ssize_t serio_driver_show_description(struct device_driver *drv, char *buf)
728{
729 struct serio_driver *driver = to_serio_driver(drv);
730 return sprintf(buf, "%s\n", driver->description ? driver->description : "(none)");
731}
732
733static ssize_t serio_driver_show_bind_mode(struct device_driver *drv, char *buf)
734{
735 struct serio_driver *serio_drv = to_serio_driver(drv);
736 return sprintf(buf, "%s\n", serio_drv->manual_bind ? "manual" : "auto");
737}
738
739static ssize_t serio_driver_set_bind_mode(struct device_driver *drv, const char *buf, size_t count)
740{
741 struct serio_driver *serio_drv = to_serio_driver(drv);
742 int retval;
743
744 retval = count;
745 if (!strncmp(buf, "manual", count)) {
Dmitry Torokhov7e044e02009-05-09 16:08:05 -0700746 serio_drv->manual_bind = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747 } else if (!strncmp(buf, "auto", count)) {
Dmitry Torokhov7e044e02009-05-09 16:08:05 -0700748 serio_drv->manual_bind = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749 } else {
750 retval = -EINVAL;
751 }
752
753 return retval;
754}
755
756
757static struct driver_attribute serio_driver_attrs[] = {
758 __ATTR(description, S_IRUGO, serio_driver_show_description, NULL),
759 __ATTR(bind_mode, S_IWUSR | S_IRUGO,
760 serio_driver_show_bind_mode, serio_driver_set_bind_mode),
761 __ATTR_NULL
762};
763
764static int serio_driver_probe(struct device *dev)
765{
766 struct serio *serio = to_serio_port(dev);
767 struct serio_driver *drv = to_serio_driver(dev->driver);
768
Linus Torvalds3c803e82005-06-27 17:49:45 -0700769 return serio_connect_driver(serio, drv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770}
771
772static int serio_driver_remove(struct device *dev)
773{
774 struct serio *serio = to_serio_port(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775
Linus Torvalds3c803e82005-06-27 17:49:45 -0700776 serio_disconnect_driver(serio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777 return 0;
778}
779
Dmitry Torokhov82dd9ef2007-02-18 01:40:30 -0500780static void serio_cleanup(struct serio *serio)
781{
Dmitry Torokhov33143ea2007-06-29 01:06:35 -0400782 mutex_lock(&serio->drv_mutex);
Dmitry Torokhov82dd9ef2007-02-18 01:40:30 -0500783 if (serio->drv && serio->drv->cleanup)
784 serio->drv->cleanup(serio);
Dmitry Torokhov33143ea2007-06-29 01:06:35 -0400785 mutex_unlock(&serio->drv_mutex);
Dmitry Torokhov82dd9ef2007-02-18 01:40:30 -0500786}
787
788static void serio_shutdown(struct device *dev)
789{
790 struct serio *serio = to_serio_port(dev);
791
792 serio_cleanup(serio);
793}
794
Dmitry Torokhoved7b1f62006-11-23 23:34:49 -0500795static void serio_attach_driver(struct serio_driver *drv)
Randy Dunlap73b59a32006-07-19 01:14:55 -0400796{
797 int error;
798
Dmitry Torokhoved7b1f62006-11-23 23:34:49 -0500799 error = driver_attach(&drv->driver);
Randy Dunlap73b59a32006-07-19 01:14:55 -0400800 if (error)
Dmitry Torokhoved7b1f62006-11-23 23:34:49 -0500801 printk(KERN_WARNING
802 "serio: driver_attach() failed for %s with error %d\n",
Randy Dunlap73b59a32006-07-19 01:14:55 -0400803 drv->driver.name, error);
804}
805
Greg Kroah-Hartman4b315622007-01-15 11:50:02 -0800806int __serio_register_driver(struct serio_driver *drv, struct module *owner, const char *mod_name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807{
Dmitry Torokhov7e044e02009-05-09 16:08:05 -0700808 bool manual_bind = drv->manual_bind;
Dmitry Torokhoved7b1f62006-11-23 23:34:49 -0500809 int error;
810
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811 drv->driver.bus = &serio_bus;
Greg Kroah-Hartman4b315622007-01-15 11:50:02 -0800812 drv->driver.owner = owner;
813 drv->driver.mod_name = mod_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814
Dmitry Torokhoved7b1f62006-11-23 23:34:49 -0500815 /*
816 * Temporarily disable automatic binding because probing
817 * takes long time and we are better off doing it in kseriod
818 */
Dmitry Torokhov7e044e02009-05-09 16:08:05 -0700819 drv->manual_bind = true;
Dmitry Torokhoved7b1f62006-11-23 23:34:49 -0500820
821 error = driver_register(&drv->driver);
822 if (error) {
823 printk(KERN_ERR
824 "serio: driver_register() failed for %s, error: %d\n",
825 drv->driver.name, error);
826 return error;
827 }
828
829 /*
830 * Restore original bind mode and let kseriod bind the
831 * driver to free ports
832 */
833 if (!manual_bind) {
Dmitry Torokhov7e044e02009-05-09 16:08:05 -0700834 drv->manual_bind = false;
Dmitry Torokhoved7b1f62006-11-23 23:34:49 -0500835 error = serio_queue_event(drv, NULL, SERIO_ATTACH_DRIVER);
836 if (error) {
837 driver_unregister(&drv->driver);
838 return error;
839 }
840 }
841
842 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843}
Dmitry Torokhov89b09b92009-04-17 20:12:34 -0700844EXPORT_SYMBOL(__serio_register_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845
846void serio_unregister_driver(struct serio_driver *drv)
847{
848 struct serio *serio;
849
Arjan van de Venc4e32e92006-02-19 00:21:55 -0500850 mutex_lock(&serio_mutex);
Dmitry Torokhove8ef4342008-06-02 00:41:57 -0400851
Dmitry Torokhov7e044e02009-05-09 16:08:05 -0700852 drv->manual_bind = true; /* so serio_find_driver ignores it */
Dmitry Torokhove8ef4342008-06-02 00:41:57 -0400853 serio_remove_pending_events(drv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854
855start_over:
856 list_for_each_entry(serio, &serio_list, node) {
857 if (serio->drv == drv) {
858 serio_disconnect_port(serio);
859 serio_find_driver(serio);
860 /* we could've deleted some ports, restart */
861 goto start_over;
862 }
863 }
864
865 driver_unregister(&drv->driver);
Arjan van de Venc4e32e92006-02-19 00:21:55 -0500866 mutex_unlock(&serio_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867}
Dmitry Torokhov89b09b92009-04-17 20:12:34 -0700868EXPORT_SYMBOL(serio_unregister_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869
870static void serio_set_drv(struct serio *serio, struct serio_driver *drv)
871{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872 serio_pause_rx(serio);
873 serio->drv = drv;
874 serio_continue_rx(serio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875}
876
877static int serio_bus_match(struct device *dev, struct device_driver *drv)
878{
879 struct serio *serio = to_serio_port(dev);
880 struct serio_driver *serio_drv = to_serio_driver(drv);
881
882 if (serio->manual_bind || serio_drv->manual_bind)
883 return 0;
884
885 return serio_match_port(serio_drv->id_table, serio);
886}
887
888#ifdef CONFIG_HOTPLUG
889
Kay Sievers312c0042005-11-16 09:00:00 +0100890#define SERIO_ADD_UEVENT_VAR(fmt, val...) \
Dmitry Torokhovae87dff2005-06-30 00:48:34 -0500891 do { \
Kay Sievers7eff2e72007-08-14 15:15:12 +0200892 int err = add_uevent_var(env, fmt, val); \
Dmitry Torokhovae87dff2005-06-30 00:48:34 -0500893 if (err) \
894 return err; \
895 } while (0)
896
Kay Sievers7eff2e72007-08-14 15:15:12 +0200897static int serio_uevent(struct device *dev, struct kobj_uevent_env *env)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898{
899 struct serio *serio;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900
901 if (!dev)
902 return -ENODEV;
903
904 serio = to_serio_port(dev);
905
Kay Sievers312c0042005-11-16 09:00:00 +0100906 SERIO_ADD_UEVENT_VAR("SERIO_TYPE=%02x", serio->id.type);
907 SERIO_ADD_UEVENT_VAR("SERIO_PROTO=%02x", serio->id.proto);
908 SERIO_ADD_UEVENT_VAR("SERIO_ID=%02x", serio->id.id);
909 SERIO_ADD_UEVENT_VAR("SERIO_EXTRA=%02x", serio->id.extra);
910 SERIO_ADD_UEVENT_VAR("MODALIAS=serio:ty%02Xpr%02Xid%02Xex%02X",
Dmitry Torokhovae87dff2005-06-30 00:48:34 -0500911 serio->id.type, serio->id.proto, serio->id.id, serio->id.extra);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912
913 return 0;
914}
Kay Sievers312c0042005-11-16 09:00:00 +0100915#undef SERIO_ADD_UEVENT_VAR
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916
917#else
918
Kay Sievers7eff2e72007-08-14 15:15:12 +0200919static int serio_uevent(struct device *dev, struct kobj_uevent_env *env)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920{
921 return -ENODEV;
922}
923
924#endif /* CONFIG_HOTPLUG */
925
Dmitry Torokhov82dd9ef2007-02-18 01:40:30 -0500926#ifdef CONFIG_PM
Dmitry Torokhov633aae22009-07-22 21:51:36 -0700927static int serio_suspend(struct device *dev)
Dmitry Torokhov82dd9ef2007-02-18 01:40:30 -0500928{
Dmitry Torokhov7e044e02009-05-09 16:08:05 -0700929 struct serio *serio = to_serio_port(dev);
Dmitry Torokhov82dd9ef2007-02-18 01:40:30 -0500930
Dmitry Torokhov633aae22009-07-22 21:51:36 -0700931 serio_cleanup(serio);
Dmitry Torokhov82dd9ef2007-02-18 01:40:30 -0500932
933 return 0;
934}
935
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936static int serio_resume(struct device *dev)
937{
Dmitry Torokhov7e044e02009-05-09 16:08:05 -0700938 struct serio *serio = to_serio_port(dev);
939
Shaohua Li6aabcdf2008-07-03 10:45:38 -0400940 /*
941 * Driver reconnect can take a while, so better let kseriod
942 * deal with it.
943 */
Dmitry Torokhov633aae22009-07-22 21:51:36 -0700944 serio_queue_event(serio, NULL, SERIO_RECONNECT_PORT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945
946 return 0;
947}
Dmitry Torokhov633aae22009-07-22 21:51:36 -0700948
949static const struct dev_pm_ops serio_pm_ops = {
950 .suspend = serio_suspend,
951 .resume = serio_resume,
952 .poweroff = serio_suspend,
953 .restore = serio_resume,
954};
Dmitry Torokhov82dd9ef2007-02-18 01:40:30 -0500955#endif /* CONFIG_PM */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956
Arjan van de Venc4e32e92006-02-19 00:21:55 -0500957/* called from serio_driver->connect/disconnect methods under serio_mutex */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958int serio_open(struct serio *serio, struct serio_driver *drv)
959{
960 serio_set_drv(serio, drv);
961
962 if (serio->open && serio->open(serio)) {
963 serio_set_drv(serio, NULL);
964 return -1;
965 }
966 return 0;
967}
Dmitry Torokhov89b09b92009-04-17 20:12:34 -0700968EXPORT_SYMBOL(serio_open);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969
Arjan van de Venc4e32e92006-02-19 00:21:55 -0500970/* called from serio_driver->connect/disconnect methods under serio_mutex */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971void serio_close(struct serio *serio)
972{
973 if (serio->close)
974 serio->close(serio);
975
976 serio_set_drv(serio, NULL);
977}
Dmitry Torokhov89b09b92009-04-17 20:12:34 -0700978EXPORT_SYMBOL(serio_close);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979
980irqreturn_t serio_interrupt(struct serio *serio,
David Howells7d12e782006-10-05 14:55:46 +0100981 unsigned char data, unsigned int dfl)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982{
983 unsigned long flags;
984 irqreturn_t ret = IRQ_NONE;
985
986 spin_lock_irqsave(&serio->lock, flags);
987
988 if (likely(serio->drv)) {
David Howells7d12e782006-10-05 14:55:46 +0100989 ret = serio->drv->interrupt(serio, data, dfl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990 } else if (!dfl && serio->registered) {
991 serio_rescan(serio);
992 ret = IRQ_HANDLED;
993 }
994
995 spin_unlock_irqrestore(&serio->lock, flags);
996
997 return ret;
998}
Dmitry Torokhov89b09b92009-04-17 20:12:34 -0700999EXPORT_SYMBOL(serio_interrupt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000
Marton Nemeth1ea2a692006-11-02 23:27:21 -05001001static struct bus_type serio_bus = {
1002 .name = "serio",
1003 .dev_attrs = serio_device_attrs,
1004 .drv_attrs = serio_driver_attrs,
1005 .match = serio_bus_match,
1006 .uevent = serio_uevent,
1007 .probe = serio_driver_probe,
1008 .remove = serio_driver_remove,
Dmitry Torokhov82dd9ef2007-02-18 01:40:30 -05001009 .shutdown = serio_shutdown,
1010#ifdef CONFIG_PM
Dmitry Torokhov633aae22009-07-22 21:51:36 -07001011 .pm = &serio_pm_ops,
Dmitry Torokhov82dd9ef2007-02-18 01:40:30 -05001012#endif
Marton Nemeth1ea2a692006-11-02 23:27:21 -05001013};
1014
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015static int __init serio_init(void)
1016{
Randy Dunlap73b59a32006-07-19 01:14:55 -04001017 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018
Randy Dunlap73b59a32006-07-19 01:14:55 -04001019 error = bus_register(&serio_bus);
1020 if (error) {
1021 printk(KERN_ERR "serio: failed to register serio bus, error: %d\n", error);
1022 return error;
1023 }
1024
1025 serio_task = kthread_run(serio_thread, NULL, "kseriod");
1026 if (IS_ERR(serio_task)) {
1027 bus_unregister(&serio_bus);
1028 error = PTR_ERR(serio_task);
1029 printk(KERN_ERR "serio: Failed to start kseriod, error: %d\n", error);
1030 return error;
1031 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032
1033 return 0;
1034}
1035
1036static void __exit serio_exit(void)
1037{
1038 bus_unregister(&serio_bus);
Linus Torvalds3c803e82005-06-27 17:49:45 -07001039 kthread_stop(serio_task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040}
1041
Dmitry Torokhov51c38f92006-02-19 00:22:51 -05001042subsys_initcall(serio_init);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043module_exit(serio_exit);