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