]> git.proxmox.com Git - mirror_ubuntu-focal-kernel.git/blame - drivers/input/serio/serio.c
treewide: Replace GPLv2 boilerplate/reference with SPDX - rule 156
[mirror_ubuntu-focal-kernel.git] / drivers / input / serio / serio.c
CommitLineData
1a59d1b8 1// SPDX-License-Identifier: GPL-2.0-or-later
1da177e4
LT
2/*
3 * The Serio abstraction module
4 *
5 * Copyright (c) 1999-2004 Vojtech Pavlik
6 * Copyright (c) 2004 Dmitry Torokhov
7 * Copyright (c) 2003 Daniele Bellucci
8 */
9
10/*
1da177e4
LT
11 */
12
cac9169b
DT
13#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
14
1da177e4
LT
15#include <linux/stddef.h>
16#include <linux/module.h>
17#include <linux/serio.h>
18#include <linux/errno.h>
1da177e4 19#include <linux/sched.h>
1da177e4 20#include <linux/slab.h>
8ee294cd 21#include <linux/workqueue.h>
c4e32e9f 22#include <linux/mutex.h>
1da177e4
LT
23
24MODULE_AUTHOR("Vojtech Pavlik <vojtech@ucw.cz>");
25MODULE_DESCRIPTION("Serio abstraction core");
26MODULE_LICENSE("GPL");
27
1da177e4 28/*
c4e32e9f 29 * serio_mutex protects entire serio subsystem and is taken every time
8ee294cd 30 * serio port or driver registered or unregistered.
1da177e4 31 */
c4e32e9f 32static DEFINE_MUTEX(serio_mutex);
1da177e4
LT
33
34static LIST_HEAD(serio_list);
35
1da177e4 36static void serio_add_port(struct serio *serio);
6aabcdff 37static int serio_reconnect_port(struct serio *serio);
1da177e4 38static void serio_disconnect_port(struct serio *serio);
09822582 39static void serio_reconnect_subtree(struct serio *serio);
ed7b1f6d 40static void serio_attach_driver(struct serio_driver *drv);
1da177e4 41
3c803e8e
LT
42static int serio_connect_driver(struct serio *serio, struct serio_driver *drv)
43{
44 int retval;
45
c4e32e9f 46 mutex_lock(&serio->drv_mutex);
3c803e8e 47 retval = drv->connect(serio, drv);
c4e32e9f 48 mutex_unlock(&serio->drv_mutex);
3c803e8e
LT
49
50 return retval;
51}
52
53static int serio_reconnect_driver(struct serio *serio)
54{
55 int retval = -1;
56
c4e32e9f 57 mutex_lock(&serio->drv_mutex);
3c803e8e
LT
58 if (serio->drv && serio->drv->reconnect)
59 retval = serio->drv->reconnect(serio);
c4e32e9f 60 mutex_unlock(&serio->drv_mutex);
3c803e8e
LT
61
62 return retval;
63}
64
65static void serio_disconnect_driver(struct serio *serio)
66{
c4e32e9f 67 mutex_lock(&serio->drv_mutex);
3c803e8e
LT
68 if (serio->drv)
69 serio->drv->disconnect(serio);
c4e32e9f 70 mutex_unlock(&serio->drv_mutex);
3c803e8e
LT
71}
72
1da177e4
LT
73static int serio_match_port(const struct serio_device_id *ids, struct serio *serio)
74{
75 while (ids->type || ids->proto) {
76 if ((ids->type == SERIO_ANY || ids->type == serio->id.type) &&
77 (ids->proto == SERIO_ANY || ids->proto == serio->id.proto) &&
78 (ids->extra == SERIO_ANY || ids->extra == serio->id.extra) &&
79 (ids->id == SERIO_ANY || ids->id == serio->id.id))
80 return 1;
81 ids++;
82 }
83 return 0;
84}
85
86/*
87 * Basic serio -> driver core mappings
88 */
89
70f256fd 90static int serio_bind_driver(struct serio *serio, struct serio_driver *drv)
1da177e4 91{
0a66045b
DT
92 int error;
93
1da177e4 94 if (serio_match_port(drv->id_table, serio)) {
70f256fd 95
1da177e4 96 serio->dev.driver = &drv->driver;
3c803e8e 97 if (serio_connect_driver(serio, drv)) {
1da177e4 98 serio->dev.driver = NULL;
70f256fd 99 return -ENODEV;
1da177e4 100 }
70f256fd 101
0a66045b
DT
102 error = device_bind_driver(&serio->dev);
103 if (error) {
cac9169b
DT
104 dev_warn(&serio->dev,
105 "device_bind_driver() failed for %s (%s) and %s, error: %d\n",
106 serio->phys, serio->name,
107 drv->description, error);
0a66045b
DT
108 serio_disconnect_driver(serio);
109 serio->dev.driver = NULL;
70f256fd 110 return error;
0a66045b 111 }
1da177e4 112 }
70f256fd 113 return 0;
1da177e4
LT
114}
115
116static void serio_find_driver(struct serio *serio)
117{
73b59a3b
RD
118 int error;
119
73b59a3b 120 error = device_attach(&serio->dev);
015bb5e1 121 if (error < 0 && error != -EPROBE_DEFER)
cac9169b
DT
122 dev_warn(&serio->dev,
123 "device_attach() failed for %s (%s), error: %d\n",
124 serio->phys, serio->name, error);
1da177e4
LT
125}
126
127
128/*
129 * Serio event processing.
130 */
131
132enum serio_event_type {
ed7b1f6d
DT
133 SERIO_RESCAN_PORT,
134 SERIO_RECONNECT_PORT,
09822582 135 SERIO_RECONNECT_SUBTREE,
1da177e4 136 SERIO_REGISTER_PORT,
ed7b1f6d 137 SERIO_ATTACH_DRIVER,
1da177e4
LT
138};
139
140struct serio_event {
141 enum serio_event_type type;
142 void *object;
143 struct module *owner;
144 struct list_head node;
145};
146
147static DEFINE_SPINLOCK(serio_event_lock); /* protects serio_event_list */
148static LIST_HEAD(serio_event_list);
1da177e4 149
8ee294cd 150static struct serio_event *serio_get_event(void)
1da177e4 151{
8ee294cd 152 struct serio_event *event = NULL;
1da177e4 153 unsigned long flags;
1da177e4
LT
154
155 spin_lock_irqsave(&serio_event_lock, flags);
156
8ee294cd
DT
157 if (!list_empty(&serio_event_list)) {
158 event = list_first_entry(&serio_event_list,
159 struct serio_event, node);
160 list_del_init(&event->node);
1da177e4 161 }
ed7b1f6d 162
1da177e4 163 spin_unlock_irqrestore(&serio_event_lock, flags);
8ee294cd 164 return event;
1da177e4
LT
165}
166
167static void serio_free_event(struct serio_event *event)
168{
169 module_put(event->owner);
170 kfree(event);
171}
172
19e95541
DL
173static void serio_remove_duplicate_events(void *object,
174 enum serio_event_type type)
1da177e4 175{
4516c818 176 struct serio_event *e, *next;
1da177e4
LT
177 unsigned long flags;
178
179 spin_lock_irqsave(&serio_event_lock, flags);
180
4516c818 181 list_for_each_entry_safe(e, next, &serio_event_list, node) {
19e95541 182 if (object == e->object) {
1da177e4
LT
183 /*
184 * If this event is of different type we should not
185 * look further - we only suppress duplicate events
186 * that were sent back-to-back.
187 */
19e95541 188 if (type != e->type)
1da177e4
LT
189 break;
190
4516c818 191 list_del_init(&e->node);
1da177e4
LT
192 serio_free_event(e);
193 }
194 }
195
196 spin_unlock_irqrestore(&serio_event_lock, flags);
197}
198
8ee294cd 199static void serio_handle_event(struct work_struct *work)
1da177e4
LT
200{
201 struct serio_event *event;
1da177e4 202
c4e32e9f 203 mutex_lock(&serio_mutex);
1da177e4 204
ea486e68 205 while ((event = serio_get_event())) {
1da177e4
LT
206
207 switch (event->type) {
1da177e4 208
cac9169b
DT
209 case SERIO_REGISTER_PORT:
210 serio_add_port(event->object);
211 break;
1da177e4 212
cac9169b
DT
213 case SERIO_RECONNECT_PORT:
214 serio_reconnect_port(event->object);
215 break;
1da177e4 216
cac9169b
DT
217 case SERIO_RESCAN_PORT:
218 serio_disconnect_port(event->object);
219 serio_find_driver(event->object);
220 break;
6aabcdff 221
09822582
DES
222 case SERIO_RECONNECT_SUBTREE:
223 serio_reconnect_subtree(event->object);
cac9169b 224 break;
1da177e4 225
cac9169b
DT
226 case SERIO_ATTACH_DRIVER:
227 serio_attach_driver(event->object);
228 break;
1da177e4
LT
229 }
230
19e95541 231 serio_remove_duplicate_events(event->object, event->type);
1da177e4
LT
232 serio_free_event(event);
233 }
234
c4e32e9f 235 mutex_unlock(&serio_mutex);
1da177e4
LT
236}
237
8ee294cd
DT
238static DECLARE_WORK(serio_event_work, serio_handle_event);
239
240static int serio_queue_event(void *object, struct module *owner,
241 enum serio_event_type event_type)
242{
243 unsigned long flags;
244 struct serio_event *event;
245 int retval = 0;
246
247 spin_lock_irqsave(&serio_event_lock, flags);
248
249 /*
250 * Scan event list for the other events for the same serio port,
251 * starting with the most recent one. If event is the same we
252 * do not need add new one. If event is of different type we
253 * need to add this event and should not look further because
254 * we need to preseve sequence of distinct events.
255 */
256 list_for_each_entry_reverse(event, &serio_event_list, node) {
257 if (event->object == object) {
258 if (event->type == event_type)
259 goto out;
260 break;
261 }
262 }
263
264 event = kmalloc(sizeof(struct serio_event), GFP_ATOMIC);
265 if (!event) {
266 pr_err("Not enough memory to queue event %d\n", event_type);
267 retval = -ENOMEM;
268 goto out;
269 }
270
271 if (!try_module_get(owner)) {
fef5f569
JP
272 pr_warn("Can't get module reference, dropping event %d\n",
273 event_type);
8ee294cd
DT
274 kfree(event);
275 retval = -EINVAL;
276 goto out;
277 }
278
279 event->type = event_type;
280 event->object = object;
281 event->owner = owner;
282
283 list_add_tail(&event->node, &serio_event_list);
1d64b655 284 queue_work(system_long_wq, &serio_event_work);
8ee294cd
DT
285
286out:
287 spin_unlock_irqrestore(&serio_event_lock, flags);
288 return retval;
289}
290
1da177e4 291/*
e8ef4347
DT
292 * Remove all events that have been submitted for a given
293 * object, be it serio port or driver.
1da177e4 294 */
e8ef4347 295static void serio_remove_pending_events(void *object)
1da177e4 296{
4516c818 297 struct serio_event *event, *next;
1da177e4
LT
298 unsigned long flags;
299
300 spin_lock_irqsave(&serio_event_lock, flags);
301
4516c818 302 list_for_each_entry_safe(event, next, &serio_event_list, node) {
e8ef4347 303 if (event->object == object) {
4516c818 304 list_del_init(&event->node);
1da177e4
LT
305 serio_free_event(event);
306 }
307 }
308
309 spin_unlock_irqrestore(&serio_event_lock, flags);
310}
311
312/*
09822582 313 * Locate child serio port (if any) that has not been fully registered yet.
1da177e4 314 *
09822582
DES
315 * Children are registered by driver's connect() handler so there can't be a
316 * grandchild pending registration together with a child.
1da177e4
LT
317 */
318static struct serio *serio_get_pending_child(struct serio *parent)
319{
320 struct serio_event *event;
321 struct serio *serio, *child = NULL;
322 unsigned long flags;
323
324 spin_lock_irqsave(&serio_event_lock, flags);
325
326 list_for_each_entry(event, &serio_event_list, node) {
327 if (event->type == SERIO_REGISTER_PORT) {
328 serio = event->object;
329 if (serio->parent == parent) {
330 child = serio;
331 break;
332 }
333 }
334 }
335
336 spin_unlock_irqrestore(&serio_event_lock, flags);
337 return child;
338}
339
1da177e4
LT
340/*
341 * Serio port operations
342 */
343
e404e274 344static ssize_t serio_show_description(struct device *dev, struct device_attribute *attr, char *buf)
1da177e4
LT
345{
346 struct serio *serio = to_serio_port(dev);
347 return sprintf(buf, "%s\n", serio->name);
348}
349
3778a212 350static ssize_t modalias_show(struct device *dev, struct device_attribute *attr, char *buf)
ae87dff7
DT
351{
352 struct serio *serio = to_serio_port(dev);
353
354 return sprintf(buf, "serio:ty%02Xpr%02Xid%02Xex%02X\n",
355 serio->id.type, serio->id.proto, serio->id.id, serio->id.extra);
356}
357
7eab8ded 358static ssize_t type_show(struct device *dev, struct device_attribute *attr, char *buf)
1da177e4
LT
359{
360 struct serio *serio = to_serio_port(dev);
361 return sprintf(buf, "%02x\n", serio->id.type);
362}
363
7eab8ded 364static ssize_t proto_show(struct device *dev, struct device_attribute *attr, char *buf)
1da177e4
LT
365{
366 struct serio *serio = to_serio_port(dev);
367 return sprintf(buf, "%02x\n", serio->id.proto);
368}
369
7eab8ded 370static ssize_t id_show(struct device *dev, struct device_attribute *attr, char *buf)
1da177e4
LT
371{
372 struct serio *serio = to_serio_port(dev);
373 return sprintf(buf, "%02x\n", serio->id.id);
374}
375
7eab8ded 376static ssize_t extra_show(struct device *dev, struct device_attribute *attr, char *buf)
1da177e4
LT
377{
378 struct serio *serio = to_serio_port(dev);
379 return sprintf(buf, "%02x\n", serio->id.extra);
380}
381
3778a212 382static ssize_t drvctl_store(struct device *dev, struct device_attribute *attr, const char *buf, size_t count)
1da177e4
LT
383{
384 struct serio *serio = to_serio_port(dev);
385 struct device_driver *drv;
70f256fd 386 int error;
1da177e4 387
70f256fd
DT
388 error = mutex_lock_interruptible(&serio_mutex);
389 if (error)
390 return error;
1da177e4 391
1da177e4
LT
392 if (!strncmp(buf, "none", count)) {
393 serio_disconnect_port(serio);
394 } else if (!strncmp(buf, "reconnect", count)) {
09822582 395 serio_reconnect_subtree(serio);
1da177e4
LT
396 } else if (!strncmp(buf, "rescan", count)) {
397 serio_disconnect_port(serio);
398 serio_find_driver(serio);
19e95541 399 serio_remove_duplicate_events(serio, SERIO_RESCAN_PORT);
1da177e4
LT
400 } else if ((drv = driver_find(buf, &serio_bus)) != NULL) {
401 serio_disconnect_port(serio);
70f256fd 402 error = serio_bind_driver(serio, to_serio_driver(drv));
19e95541 403 serio_remove_duplicate_events(serio, SERIO_RESCAN_PORT);
1da177e4 404 } else {
70f256fd 405 error = -EINVAL;
1da177e4
LT
406 }
407
c4e32e9f 408 mutex_unlock(&serio_mutex);
1da177e4 409
70f256fd 410 return error ? error : count;
1da177e4
LT
411}
412
e404e274 413static ssize_t serio_show_bind_mode(struct device *dev, struct device_attribute *attr, char *buf)
1da177e4
LT
414{
415 struct serio *serio = to_serio_port(dev);
416 return sprintf(buf, "%s\n", serio->manual_bind ? "manual" : "auto");
417}
418
e404e274 419static ssize_t serio_set_bind_mode(struct device *dev, struct device_attribute *attr, const char *buf, size_t count)
1da177e4
LT
420{
421 struct serio *serio = to_serio_port(dev);
422 int retval;
423
424 retval = count;
425 if (!strncmp(buf, "manual", count)) {
7e044e05 426 serio->manual_bind = true;
1da177e4 427 } else if (!strncmp(buf, "auto", count)) {
7e044e05 428 serio->manual_bind = false;
1da177e4
LT
429 } else {
430 retval = -EINVAL;
431 }
432
433 return retval;
434}
435
0456c66f
HG
436static ssize_t firmware_id_show(struct device *dev, struct device_attribute *attr, char *buf)
437{
438 struct serio *serio = to_serio_port(dev);
439
440 return sprintf(buf, "%s\n", serio->firmware_id);
441}
442
3778a212
GKH
443static DEVICE_ATTR_RO(type);
444static DEVICE_ATTR_RO(proto);
445static DEVICE_ATTR_RO(id);
446static DEVICE_ATTR_RO(extra);
3778a212
GKH
447
448static struct attribute *serio_device_id_attrs[] = {
449 &dev_attr_type.attr,
450 &dev_attr_proto.attr,
451 &dev_attr_id.attr,
452 &dev_attr_extra.attr,
e696c683
DT
453 NULL
454};
455
547a915d 456static const struct attribute_group serio_id_attr_group = {
e696c683
DT
457 .name = "id",
458 .attrs = serio_device_id_attrs,
459};
460
461static DEVICE_ATTR_RO(modalias);
462static DEVICE_ATTR_WO(drvctl);
463static DEVICE_ATTR(description, S_IRUGO, serio_show_description, NULL);
464static DEVICE_ATTR(bind_mode, S_IWUSR | S_IRUGO, serio_show_bind_mode, serio_set_bind_mode);
0456c66f 465static DEVICE_ATTR_RO(firmware_id);
e696c683
DT
466
467static struct attribute *serio_device_attrs[] = {
3778a212
GKH
468 &dev_attr_modalias.attr,
469 &dev_attr_description.attr,
470 &dev_attr_drvctl.attr,
471 &dev_attr_bind_mode.attr,
0456c66f 472 &dev_attr_firmware_id.attr,
3778a212
GKH
473 NULL
474};
475
547a915d 476static const struct attribute_group serio_device_attr_group = {
e696c683 477 .attrs = serio_device_attrs,
1da177e4
LT
478};
479
3778a212
GKH
480static const struct attribute_group *serio_device_attr_groups[] = {
481 &serio_id_attr_group,
e696c683 482 &serio_device_attr_group,
3778a212
GKH
483 NULL
484};
1da177e4
LT
485
486static void serio_release_port(struct device *dev)
487{
488 struct serio *serio = to_serio_port(dev);
489
490 kfree(serio);
491 module_put(THIS_MODULE);
492}
493
494/*
495 * Prepare serio port for registration.
496 */
497static void serio_init_port(struct serio *serio)
498{
939ffb17 499 static atomic_t serio_no = ATOMIC_INIT(-1);
1da177e4
LT
500
501 __module_get(THIS_MODULE);
502
73b59a3b 503 INIT_LIST_HEAD(&serio->node);
09822582
DES
504 INIT_LIST_HEAD(&serio->child_node);
505 INIT_LIST_HEAD(&serio->children);
1da177e4 506 spin_lock_init(&serio->lock);
c4e32e9f 507 mutex_init(&serio->drv_mutex);
1da177e4 508 device_initialize(&serio->dev);
0224ec9e 509 dev_set_name(&serio->dev, "serio%lu",
939ffb17 510 (unsigned long)atomic_inc_return(&serio_no));
1da177e4
LT
511 serio->dev.bus = &serio_bus;
512 serio->dev.release = serio_release_port;
386d8772 513 serio->dev.groups = serio_device_attr_groups;
88aa0103 514 if (serio->parent) {
1da177e4 515 serio->dev.parent = &serio->parent->dev;
88aa0103
JK
516 serio->depth = serio->parent->depth + 1;
517 } else
518 serio->depth = 0;
519 lockdep_set_subclass(&serio->lock, serio->depth);
1da177e4
LT
520}
521
522/*
523 * Complete serio port registration.
524 * Driver core will attempt to find appropriate driver for the port.
525 */
526static void serio_add_port(struct serio *serio)
527{
09822582 528 struct serio *parent = serio->parent;
73b59a3b
RD
529 int error;
530
09822582
DES
531 if (parent) {
532 serio_pause_rx(parent);
533 list_add_tail(&serio->child_node, &parent->children);
534 serio_continue_rx(parent);
1da177e4
LT
535 }
536
537 list_add_tail(&serio->node, &serio_list);
386d8772 538
1da177e4
LT
539 if (serio->start)
540 serio->start(serio);
386d8772 541
73b59a3b
RD
542 error = device_add(&serio->dev);
543 if (error)
cac9169b
DT
544 dev_err(&serio->dev,
545 "device_add() failed for %s (%s), error: %d\n",
73b59a3b 546 serio->phys, serio->name, error);
1da177e4
LT
547}
548
549/*
09822582 550 * serio_destroy_port() completes unregistration process and removes
1da177e4
LT
551 * port from the system
552 */
553static void serio_destroy_port(struct serio *serio)
554{
555 struct serio *child;
556
09822582 557 while ((child = serio_get_pending_child(serio)) != NULL) {
1da177e4
LT
558 serio_remove_pending_events(child);
559 put_device(&child->dev);
560 }
561
562 if (serio->stop)
563 serio->stop(serio);
564
565 if (serio->parent) {
566 serio_pause_rx(serio->parent);
09822582 567 list_del_init(&serio->child_node);
1da177e4
LT
568 serio_continue_rx(serio->parent);
569 serio->parent = NULL;
570 }
571
ddf1ffbd 572 if (device_is_registered(&serio->dev))
1da177e4 573 device_del(&serio->dev);
1da177e4 574
73b59a3b 575 list_del_init(&serio->node);
1da177e4
LT
576 serio_remove_pending_events(serio);
577 put_device(&serio->dev);
578}
579
6aabcdff
SL
580/*
581 * Reconnect serio port (re-initialize attached device).
582 * If reconnect fails (old device is no longer attached or
583 * there was no device to begin with) we do full rescan in
584 * hope of finding a driver for the port.
585 */
586static int serio_reconnect_port(struct serio *serio)
587{
588 int error = serio_reconnect_driver(serio);
589
590 if (error) {
591 serio_disconnect_port(serio);
592 serio_find_driver(serio);
593 }
594
595 return error;
596}
597
1da177e4 598/*
09822582
DES
599 * Reconnect serio port and all its children (re-initialize attached
600 * devices).
1da177e4 601 */
09822582 602static void serio_reconnect_subtree(struct serio *root)
1da177e4 603{
09822582
DES
604 struct serio *s = root;
605 int error;
606
1da177e4 607 do {
09822582
DES
608 error = serio_reconnect_port(s);
609 if (!error) {
610 /*
611 * Reconnect was successful, move on to do the
612 * first child.
613 */
614 if (!list_empty(&s->children)) {
615 s = list_first_entry(&s->children,
616 struct serio, child_node);
617 continue;
618 }
1da177e4 619 }
09822582
DES
620
621 /*
622 * Either it was a leaf node or reconnect failed and it
623 * became a leaf node. Continue reconnecting starting with
624 * the next sibling of the parent node.
625 */
626 while (s != root) {
627 struct serio *parent = s->parent;
628
629 if (!list_is_last(&s->child_node, &parent->children)) {
630 s = list_entry(s->child_node.next,
631 struct serio, child_node);
632 break;
633 }
634
635 s = parent;
636 }
637 } while (s != root);
1da177e4
LT
638}
639
640/*
641 * serio_disconnect_port() unbinds a port from its driver. As a side effect
09822582 642 * all children ports are unbound and destroyed.
1da177e4
LT
643 */
644static void serio_disconnect_port(struct serio *serio)
645{
09822582
DES
646 struct serio *s = serio;
647
648 /*
649 * Children ports should be disconnected and destroyed
650 * first; we travel the tree in depth-first order.
651 */
652 while (!list_empty(&serio->children)) {
653
654 /* Locate a leaf */
655 while (!list_empty(&s->children))
656 s = list_first_entry(&s->children,
657 struct serio, child_node);
1da177e4 658
1da177e4 659 /*
09822582
DES
660 * Prune this leaf node unless it is the one we
661 * started with.
1da177e4 662 */
09822582
DES
663 if (s != serio) {
664 struct serio *parent = s->parent;
1da177e4 665
70f256fd 666 device_release_driver(&s->dev);
1da177e4 667 serio_destroy_port(s);
09822582
DES
668
669 s = parent;
670 }
1da177e4
LT
671 }
672
673 /*
09822582 674 * OK, no children left, now disconnect this port.
1da177e4 675 */
70f256fd 676 device_release_driver(&serio->dev);
1da177e4
LT
677}
678
679void serio_rescan(struct serio *serio)
680{
ed7b1f6d 681 serio_queue_event(serio, NULL, SERIO_RESCAN_PORT);
1da177e4 682}
89b09b99 683EXPORT_SYMBOL(serio_rescan);
1da177e4
LT
684
685void serio_reconnect(struct serio *serio)
686{
09822582 687 serio_queue_event(serio, NULL, SERIO_RECONNECT_SUBTREE);
1da177e4 688}
89b09b99 689EXPORT_SYMBOL(serio_reconnect);
1da177e4
LT
690
691/*
692 * Submits register request to kseriod for subsequent execution.
693 * Note that port registration is always asynchronous.
694 */
695void __serio_register_port(struct serio *serio, struct module *owner)
696{
697 serio_init_port(serio);
698 serio_queue_event(serio, owner, SERIO_REGISTER_PORT);
699}
89b09b99 700EXPORT_SYMBOL(__serio_register_port);
1da177e4
LT
701
702/*
703 * Synchronously unregisters serio port.
704 */
705void serio_unregister_port(struct serio *serio)
706{
c4e32e9f 707 mutex_lock(&serio_mutex);
1da177e4
LT
708 serio_disconnect_port(serio);
709 serio_destroy_port(serio);
c4e32e9f 710 mutex_unlock(&serio_mutex);
1da177e4 711}
89b09b99 712EXPORT_SYMBOL(serio_unregister_port);
1da177e4 713
3c803e8e 714/*
09822582 715 * Safely unregisters children ports if they are present.
3c803e8e
LT
716 */
717void serio_unregister_child_port(struct serio *serio)
718{
09822582
DES
719 struct serio *s, *next;
720
c4e32e9f 721 mutex_lock(&serio_mutex);
09822582
DES
722 list_for_each_entry_safe(s, next, &serio->children, child_node) {
723 serio_disconnect_port(s);
724 serio_destroy_port(s);
3c803e8e 725 }
c4e32e9f 726 mutex_unlock(&serio_mutex);
3c803e8e 727}
89b09b99 728EXPORT_SYMBOL(serio_unregister_child_port);
3c803e8e 729
1da177e4
LT
730
731/*
732 * Serio driver operations
733 */
734
7048f5d0 735static ssize_t description_show(struct device_driver *drv, char *buf)
1da177e4
LT
736{
737 struct serio_driver *driver = to_serio_driver(drv);
738 return sprintf(buf, "%s\n", driver->description ? driver->description : "(none)");
739}
7048f5d0 740static DRIVER_ATTR_RO(description);
1da177e4 741
7048f5d0 742static ssize_t bind_mode_show(struct device_driver *drv, char *buf)
1da177e4
LT
743{
744 struct serio_driver *serio_drv = to_serio_driver(drv);
745 return sprintf(buf, "%s\n", serio_drv->manual_bind ? "manual" : "auto");
746}
747
7048f5d0 748static ssize_t bind_mode_store(struct device_driver *drv, const char *buf, size_t count)
1da177e4
LT
749{
750 struct serio_driver *serio_drv = to_serio_driver(drv);
751 int retval;
752
753 retval = count;
754 if (!strncmp(buf, "manual", count)) {
7e044e05 755 serio_drv->manual_bind = true;
1da177e4 756 } else if (!strncmp(buf, "auto", count)) {
7e044e05 757 serio_drv->manual_bind = false;
1da177e4
LT
758 } else {
759 retval = -EINVAL;
760 }
761
762 return retval;
763}
7048f5d0 764static DRIVER_ATTR_RW(bind_mode);
1da177e4 765
7048f5d0
GKH
766static struct attribute *serio_driver_attrs[] = {
767 &driver_attr_description.attr,
768 &driver_attr_bind_mode.attr,
769 NULL,
1da177e4 770};
7048f5d0 771ATTRIBUTE_GROUPS(serio_driver);
1da177e4
LT
772
773static int serio_driver_probe(struct device *dev)
774{
775 struct serio *serio = to_serio_port(dev);
776 struct serio_driver *drv = to_serio_driver(dev->driver);
777
3c803e8e 778 return serio_connect_driver(serio, drv);
1da177e4
LT
779}
780
781static int serio_driver_remove(struct device *dev)
782{
783 struct serio *serio = to_serio_port(dev);
1da177e4 784
3c803e8e 785 serio_disconnect_driver(serio);
1da177e4
LT
786 return 0;
787}
788
82dd9eff
DT
789static void serio_cleanup(struct serio *serio)
790{
33143ea1 791 mutex_lock(&serio->drv_mutex);
82dd9eff
DT
792 if (serio->drv && serio->drv->cleanup)
793 serio->drv->cleanup(serio);
33143ea1 794 mutex_unlock(&serio->drv_mutex);
82dd9eff
DT
795}
796
797static void serio_shutdown(struct device *dev)
798{
799 struct serio *serio = to_serio_port(dev);
800
801 serio_cleanup(serio);
802}
803
ed7b1f6d 804static void serio_attach_driver(struct serio_driver *drv)
73b59a3b
RD
805{
806 int error;
807
ed7b1f6d 808 error = driver_attach(&drv->driver);
73b59a3b 809 if (error)
fef5f569
JP
810 pr_warn("driver_attach() failed for %s with error %d\n",
811 drv->driver.name, error);
73b59a3b
RD
812}
813
4b315627 814int __serio_register_driver(struct serio_driver *drv, struct module *owner, const char *mod_name)
1da177e4 815{
7e044e05 816 bool manual_bind = drv->manual_bind;
ed7b1f6d
DT
817 int error;
818
1da177e4 819 drv->driver.bus = &serio_bus;
4b315627
GKH
820 drv->driver.owner = owner;
821 drv->driver.mod_name = mod_name;
1da177e4 822
ed7b1f6d
DT
823 /*
824 * Temporarily disable automatic binding because probing
825 * takes long time and we are better off doing it in kseriod
826 */
7e044e05 827 drv->manual_bind = true;
ed7b1f6d
DT
828
829 error = driver_register(&drv->driver);
830 if (error) {
cac9169b 831 pr_err("driver_register() failed for %s, error: %d\n",
ed7b1f6d
DT
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) {
7e044e05 841 drv->manual_bind = false;
ed7b1f6d
DT
842 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;
1da177e4 850}
89b09b99 851EXPORT_SYMBOL(__serio_register_driver);
1da177e4
LT
852
853void serio_unregister_driver(struct serio_driver *drv)
854{
855 struct serio *serio;
856
c4e32e9f 857 mutex_lock(&serio_mutex);
e8ef4347 858
7e044e05 859 drv->manual_bind = true; /* so serio_find_driver ignores it */
e8ef4347 860 serio_remove_pending_events(drv);
1da177e4
LT
861
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);
c4e32e9f 873 mutex_unlock(&serio_mutex);
1da177e4 874}
89b09b99 875EXPORT_SYMBOL(serio_unregister_driver);
1da177e4
LT
876
877static void serio_set_drv(struct serio *serio, struct serio_driver *drv)
878{
1da177e4
LT
879 serio_pause_rx(serio);
880 serio->drv = drv;
881 serio_continue_rx(serio);
1da177e4
LT
882}
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
312c004d 895#define SERIO_ADD_UEVENT_VAR(fmt, val...) \
ae87dff7 896 do { \
7eff2e7a 897 int err = add_uevent_var(env, fmt, val); \
ae87dff7
DT
898 if (err) \
899 return err; \
900 } while (0)
901
7eff2e7a 902static int serio_uevent(struct device *dev, struct kobj_uevent_env *env)
1da177e4
LT
903{
904 struct serio *serio;
1da177e4
LT
905
906 if (!dev)
907 return -ENODEV;
908
909 serio = to_serio_port(dev);
910
312c004d
KS
911 SERIO_ADD_UEVENT_VAR("SERIO_TYPE=%02x", serio->id.type);
912 SERIO_ADD_UEVENT_VAR("SERIO_PROTO=%02x", serio->id.proto);
913 SERIO_ADD_UEVENT_VAR("SERIO_ID=%02x", serio->id.id);
914 SERIO_ADD_UEVENT_VAR("SERIO_EXTRA=%02x", serio->id.extra);
0456c66f 915
312c004d 916 SERIO_ADD_UEVENT_VAR("MODALIAS=serio:ty%02Xpr%02Xid%02Xex%02X",
ae87dff7 917 serio->id.type, serio->id.proto, serio->id.id, serio->id.extra);
1da177e4 918
0456c66f
HG
919 if (serio->firmware_id[0])
920 SERIO_ADD_UEVENT_VAR("SERIO_FIRMWARE_ID=%s",
921 serio->firmware_id);
922
1da177e4
LT
923 return 0;
924}
312c004d 925#undef SERIO_ADD_UEVENT_VAR
1da177e4 926
82dd9eff 927#ifdef CONFIG_PM
633aae23 928static int serio_suspend(struct device *dev)
82dd9eff 929{
7e044e05 930 struct serio *serio = to_serio_port(dev);
82dd9eff 931
633aae23 932 serio_cleanup(serio);
82dd9eff
DT
933
934 return 0;
935}
936
1da177e4
LT
937static int serio_resume(struct device *dev)
938{
7e044e05 939 struct serio *serio = to_serio_port(dev);
5ea13206 940 int error = -ENOENT;
7e044e05 941
5ea13206
DT
942 mutex_lock(&serio->drv_mutex);
943 if (serio->drv && serio->drv->fast_reconnect) {
944 error = serio->drv->fast_reconnect(serio);
945 if (error && error != -ENOENT)
946 dev_warn(dev, "fast reconnect failed with error %d\n",
947 error);
948 }
949 mutex_unlock(&serio->drv_mutex);
950
951 if (error) {
952 /*
953 * Driver reconnect can take a while, so better let
954 * kseriod deal with it.
955 */
956 serio_queue_event(serio, NULL, SERIO_RECONNECT_PORT);
957 }
1da177e4
LT
958
959 return 0;
960}
633aae23
DT
961
962static const struct dev_pm_ops serio_pm_ops = {
963 .suspend = serio_suspend,
964 .resume = serio_resume,
965 .poweroff = serio_suspend,
966 .restore = serio_resume,
967};
82dd9eff 968#endif /* CONFIG_PM */
1da177e4 969
c4e32e9f 970/* called from serio_driver->connect/disconnect methods under serio_mutex */
1da177e4
LT
971int serio_open(struct serio *serio, struct serio_driver *drv)
972{
973 serio_set_drv(serio, drv);
974
975 if (serio->open && serio->open(serio)) {
976 serio_set_drv(serio, NULL);
977 return -1;
978 }
979 return 0;
980}
89b09b99 981EXPORT_SYMBOL(serio_open);
1da177e4 982
c4e32e9f 983/* called from serio_driver->connect/disconnect methods under serio_mutex */
1da177e4
LT
984void serio_close(struct serio *serio)
985{
986 if (serio->close)
987 serio->close(serio);
988
989 serio_set_drv(serio, NULL);
990}
89b09b99 991EXPORT_SYMBOL(serio_close);
1da177e4
LT
992
993irqreturn_t serio_interrupt(struct serio *serio,
7d12e780 994 unsigned char data, unsigned int dfl)
1da177e4
LT
995{
996 unsigned long flags;
997 irqreturn_t ret = IRQ_NONE;
998
999 spin_lock_irqsave(&serio->lock, flags);
1000
1001 if (likely(serio->drv)) {
7d12e780 1002 ret = serio->drv->interrupt(serio, data, dfl);
ddf1ffbd 1003 } else if (!dfl && device_is_registered(&serio->dev)) {
1da177e4
LT
1004 serio_rescan(serio);
1005 ret = IRQ_HANDLED;
1006 }
1007
1008 spin_unlock_irqrestore(&serio->lock, flags);
1009
1010 return ret;
1011}
89b09b99 1012EXPORT_SYMBOL(serio_interrupt);
1da177e4 1013
e1443d28 1014struct bus_type serio_bus = {
1ea2a69d 1015 .name = "serio",
7048f5d0 1016 .drv_groups = serio_driver_groups,
1ea2a69d
MN
1017 .match = serio_bus_match,
1018 .uevent = serio_uevent,
1019 .probe = serio_driver_probe,
1020 .remove = serio_driver_remove,
82dd9eff
DT
1021 .shutdown = serio_shutdown,
1022#ifdef CONFIG_PM
633aae23 1023 .pm = &serio_pm_ops,
82dd9eff 1024#endif
1ea2a69d 1025};
e1443d28 1026EXPORT_SYMBOL(serio_bus);
1ea2a69d 1027
1da177e4
LT
1028static int __init serio_init(void)
1029{
73b59a3b 1030 int error;
1da177e4 1031
73b59a3b
RD
1032 error = bus_register(&serio_bus);
1033 if (error) {
cac9169b 1034 pr_err("Failed to register serio bus, error: %d\n", error);
73b59a3b
RD
1035 return error;
1036 }
1037
1da177e4
LT
1038 return 0;
1039}
1040
1041static void __exit serio_exit(void)
1042{
1043 bus_unregister(&serio_bus);
8ee294cd
DT
1044
1045 /*
1046 * There should not be any outstanding events but work may
1047 * still be scheduled so simply cancel it.
1048 */
1049 cancel_work_sync(&serio_event_work);
1da177e4
LT
1050}
1051
51c38f9b 1052subsys_initcall(serio_init);
1da177e4 1053module_exit(serio_exit);