blob: 8f4c4ab04bc2d8c61d5fda2a65696806e61ad6f2 [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
Dmitry Torokhovcac91692010-01-05 17:56:04 -080029#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
30
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include <linux/stddef.h>
32#include <linux/module.h>
33#include <linux/serio.h>
34#include <linux/errno.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#include <linux/sched.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#include <linux/slab.h>
Dmitry Torokhov8ee294c2010-11-15 01:39:57 -080037#include <linux/workqueue.h>
Arjan van de Venc4e32e92006-02-19 00:21:55 -050038#include <linux/mutex.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
Dmitry Torokhov8ee294c2010-11-15 01:39:57 -080046 * serio port or driver registered or unregistered.
Linus Torvalds1da177e2005-04-16 15:20:36 -070047 */
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);
Dmitry Eremin-Solenikov09822582010-10-04 21:46:10 -070057static void serio_reconnect_subtree(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) {
Dmitry Torokhovcac91692010-01-05 17:56:04 -0800122 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 Torokhov0a660452006-10-12 01:06:23 -0400126 serio_disconnect_driver(serio);
127 serio->dev.driver = NULL;
Dmitry Torokhov70f256f2007-04-10 00:40:27 -0400128 return error;
Dmitry Torokhov0a660452006-10-12 01:06:23 -0400129 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130 }
Dmitry Torokhov70f256f2007-04-10 00:40:27 -0400131 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132}
133
134static void serio_find_driver(struct serio *serio)
135{
Randy Dunlap73b59a32006-07-19 01:14:55 -0400136 int error;
137
Randy Dunlap73b59a32006-07-19 01:14:55 -0400138 error = device_attach(&serio->dev);
139 if (error < 0)
Dmitry Torokhovcac91692010-01-05 17:56:04 -0800140 dev_warn(&serio->dev,
141 "device_attach() failed for %s (%s), error: %d\n",
142 serio->phys, serio->name, error);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143}
144
145
146/*
147 * Serio event processing.
148 */
149
150enum serio_event_type {
Dmitry Torokhoved7b1f62006-11-23 23:34:49 -0500151 SERIO_RESCAN_PORT,
152 SERIO_RECONNECT_PORT,
Dmitry Eremin-Solenikov09822582010-10-04 21:46:10 -0700153 SERIO_RECONNECT_SUBTREE,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154 SERIO_REGISTER_PORT,
Dmitry Torokhoved7b1f62006-11-23 23:34:49 -0500155 SERIO_ATTACH_DRIVER,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156};
157
158struct serio_event {
159 enum serio_event_type type;
160 void *object;
161 struct module *owner;
162 struct list_head node;
163};
164
165static DEFINE_SPINLOCK(serio_event_lock); /* protects serio_event_list */
166static LIST_HEAD(serio_event_list);
Dmitry Torokhov8ee294c2010-11-15 01:39:57 -0800167
168static 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
185static void serio_free_event(struct serio_event *event)
186{
187 module_put(event->owner);
188 kfree(event);
189}
190
Duncan Laurie19e95542011-02-02 22:59:54 -0800191static void serio_remove_duplicate_events(void *object,
192 enum serio_event_type type)
Dmitry Torokhov8ee294c2010-11-15 01:39:57 -0800193{
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 Laurie19e95542011-02-02 22:59:54 -0800200 if (object == e->object) {
Dmitry Torokhov8ee294c2010-11-15 01:39:57 -0800201 /*
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 Laurie19e95542011-02-02 22:59:54 -0800206 if (type != e->type)
Dmitry Torokhov8ee294c2010-11-15 01:39:57 -0800207 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
217static 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 Laurie19e95542011-02-02 22:59:54 -0800249 serio_remove_duplicate_events(event->object, event->type);
Dmitry Torokhov8ee294c2010-11-15 01:39:57 -0800250 serio_free_event(event);
251 }
252
253 mutex_unlock(&serio_mutex);
254}
255
256static DECLARE_WORK(serio_event_work, serio_handle_event);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257
Dmitry Torokhoved7b1f62006-11-23 23:34:49 -0500258static int serio_queue_event(void *object, struct module *owner,
259 enum serio_event_type event_type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260{
261 unsigned long flags;
262 struct serio_event *event;
Dmitry Torokhoved7b1f62006-11-23 23:34:49 -0500263 int retval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264
265 spin_lock_irqsave(&serio_event_lock, flags);
266
267 /*
Linus Torvalds3c803e82005-06-27 17:49:45 -0700268 * Scan event list for the other events for the same serio port,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 * 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 Torvalds3c803e82005-06-27 17:49:45 -0700273 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 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 Torokhoved7b1f62006-11-23 23:34:49 -0500282 event = kmalloc(sizeof(struct serio_event), GFP_ATOMIC);
283 if (!event) {
Dmitry Torokhovcac91692010-01-05 17:56:04 -0800284 pr_err("Not enough memory to queue event %d\n", event_type);
Dmitry Torokhoved7b1f62006-11-23 23:34:49 -0500285 retval = -ENOMEM;
286 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 }
Dmitry Torokhoved7b1f62006-11-23 23:34:49 -0500288
289 if (!try_module_get(owner)) {
Dmitry Torokhovcac91692010-01-05 17:56:04 -0800290 pr_warning("Can't get module reference, dropping event %d\n",
291 event_type);
Dmitry Torokhoved7b1f62006-11-23 23:34:49 -0500292 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 Torokhov1d64b652011-02-23 08:51:28 -0800302 queue_work(system_long_wq, &serio_event_work);
Dmitry Torokhoved7b1f62006-11-23 23:34:49 -0500303
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304out:
305 spin_unlock_irqrestore(&serio_event_lock, flags);
Dmitry Torokhoved7b1f62006-11-23 23:34:49 -0500306 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307}
308
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309/*
Dmitry Torokhove8ef4342008-06-02 00:41:57 -0400310 * Remove all events that have been submitted for a given
311 * object, be it serio port or driver.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 */
Dmitry Torokhove8ef4342008-06-02 00:41:57 -0400313static void serio_remove_pending_events(void *object)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314{
Dmitry Torokhov4516c812010-01-05 17:56:04 -0800315 struct serio_event *event, *next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 unsigned long flags;
317
318 spin_lock_irqsave(&serio_event_lock, flags);
319
Dmitry Torokhov4516c812010-01-05 17:56:04 -0800320 list_for_each_entry_safe(event, next, &serio_event_list, node) {
Dmitry Torokhove8ef4342008-06-02 00:41:57 -0400321 if (event->object == object) {
Dmitry Torokhov4516c812010-01-05 17:56:04 -0800322 list_del_init(&event->node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323 serio_free_event(event);
324 }
325 }
326
327 spin_unlock_irqrestore(&serio_event_lock, flags);
328}
329
330/*
Dmitry Eremin-Solenikov09822582010-10-04 21:46:10 -0700331 * Locate child serio port (if any) that has not been fully registered yet.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 *
Dmitry Eremin-Solenikov09822582010-10-04 21:46:10 -0700333 * Children are registered by driver's connect() handler so there can't be a
334 * grandchild pending registration together with a child.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 */
336static 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 Torvalds1da177e2005-04-16 15:20:36 -0700358/*
359 * Serio port operations
360 */
361
Yani Ioannoue404e272005-05-17 06:42:58 -0400362static ssize_t serio_show_description(struct device *dev, struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363{
364 struct serio *serio = to_serio_port(dev);
365 return sprintf(buf, "%s\n", serio->name);
366}
367
Greg Kroah-Hartman3778a2122013-10-07 18:09:08 -0700368static ssize_t modalias_show(struct device *dev, struct device_attribute *attr, char *buf)
Dmitry Torokhovae87dff2005-06-30 00:48:34 -0500369{
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
Greg Kroah-Hartman7eab8de2013-10-07 18:08:23 -0700376static ssize_t type_show(struct device *dev, struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377{
378 struct serio *serio = to_serio_port(dev);
379 return sprintf(buf, "%02x\n", serio->id.type);
380}
381
Greg Kroah-Hartman7eab8de2013-10-07 18:08:23 -0700382static ssize_t proto_show(struct device *dev, struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383{
384 struct serio *serio = to_serio_port(dev);
385 return sprintf(buf, "%02x\n", serio->id.proto);
386}
387
Greg Kroah-Hartman7eab8de2013-10-07 18:08:23 -0700388static ssize_t id_show(struct device *dev, struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389{
390 struct serio *serio = to_serio_port(dev);
391 return sprintf(buf, "%02x\n", serio->id.id);
392}
393
Greg Kroah-Hartman7eab8de2013-10-07 18:08:23 -0700394static ssize_t extra_show(struct device *dev, struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395{
396 struct serio *serio = to_serio_port(dev);
397 return sprintf(buf, "%02x\n", serio->id.extra);
398}
399
Greg Kroah-Hartman3778a2122013-10-07 18:09:08 -0700400static ssize_t drvctl_store(struct device *dev, struct device_attribute *attr, const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401{
402 struct serio *serio = to_serio_port(dev);
403 struct device_driver *drv;
Dmitry Torokhov70f256f2007-04-10 00:40:27 -0400404 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405
Dmitry Torokhov70f256f2007-04-10 00:40:27 -0400406 error = mutex_lock_interruptible(&serio_mutex);
407 if (error)
408 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 if (!strncmp(buf, "none", count)) {
411 serio_disconnect_port(serio);
412 } else if (!strncmp(buf, "reconnect", count)) {
Dmitry Eremin-Solenikov09822582010-10-04 21:46:10 -0700413 serio_reconnect_subtree(serio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414 } else if (!strncmp(buf, "rescan", count)) {
415 serio_disconnect_port(serio);
416 serio_find_driver(serio);
Duncan Laurie19e95542011-02-02 22:59:54 -0800417 serio_remove_duplicate_events(serio, SERIO_RESCAN_PORT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 } else if ((drv = driver_find(buf, &serio_bus)) != NULL) {
419 serio_disconnect_port(serio);
Dmitry Torokhov70f256f2007-04-10 00:40:27 -0400420 error = serio_bind_driver(serio, to_serio_driver(drv));
Duncan Laurie19e95542011-02-02 22:59:54 -0800421 serio_remove_duplicate_events(serio, SERIO_RESCAN_PORT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 } else {
Dmitry Torokhov70f256f2007-04-10 00:40:27 -0400423 error = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 }
425
Arjan van de Venc4e32e92006-02-19 00:21:55 -0500426 mutex_unlock(&serio_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427
Dmitry Torokhov70f256f2007-04-10 00:40:27 -0400428 return error ? error : count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429}
430
Yani Ioannoue404e272005-05-17 06:42:58 -0400431static ssize_t serio_show_bind_mode(struct device *dev, struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432{
433 struct serio *serio = to_serio_port(dev);
434 return sprintf(buf, "%s\n", serio->manual_bind ? "manual" : "auto");
435}
436
Yani Ioannoue404e272005-05-17 06:42:58 -0400437static 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 -0700438{
439 struct serio *serio = to_serio_port(dev);
440 int retval;
441
442 retval = count;
443 if (!strncmp(buf, "manual", count)) {
Dmitry Torokhov7e044e02009-05-09 16:08:05 -0700444 serio->manual_bind = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 } else if (!strncmp(buf, "auto", count)) {
Dmitry Torokhov7e044e02009-05-09 16:08:05 -0700446 serio->manual_bind = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 } else {
448 retval = -EINVAL;
449 }
450
451 return retval;
452}
453
Greg Kroah-Hartman3778a2122013-10-07 18:09:08 -0700454static DEVICE_ATTR_RO(type);
455static DEVICE_ATTR_RO(proto);
456static DEVICE_ATTR_RO(id);
457static DEVICE_ATTR_RO(extra);
Greg Kroah-Hartman3778a2122013-10-07 18:09:08 -0700458
459static struct attribute *serio_device_id_attrs[] = {
460 &dev_attr_type.attr,
461 &dev_attr_proto.attr,
462 &dev_attr_id.attr,
463 &dev_attr_extra.attr,
Greg Kroah-Hartman3778a2122013-10-07 18:09:08 -0700464 NULL
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465};
466
Greg Kroah-Hartman3778a2122013-10-07 18:09:08 -0700467static struct attribute_group serio_id_attr_group = {
468 .name = "id",
469 .attrs = serio_device_id_attrs,
470};
471
Dmitry Torokhove696c682013-12-07 07:13:56 -0800472static DEVICE_ATTR_RO(modalias);
473static DEVICE_ATTR_WO(drvctl);
474static DEVICE_ATTR(description, S_IRUGO, serio_show_description, NULL);
475static DEVICE_ATTR(bind_mode, S_IWUSR | S_IRUGO, serio_show_bind_mode, serio_set_bind_mode);
476
477static struct attribute *serio_device_attrs[] = {
478 &dev_attr_modalias.attr,
479 &dev_attr_description.attr,
480 &dev_attr_drvctl.attr,
481 &dev_attr_bind_mode.attr,
482 NULL
483};
484
485static struct attribute_group serio_device_attr_group = {
486 .attrs = serio_device_attrs,
487};
488
Greg Kroah-Hartman3778a2122013-10-07 18:09:08 -0700489static const struct attribute_group *serio_device_attr_groups[] = {
490 &serio_id_attr_group,
Dmitry Torokhove696c682013-12-07 07:13:56 -0800491 &serio_device_attr_group,
Greg Kroah-Hartman3778a2122013-10-07 18:09:08 -0700492 NULL
493};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494
495static void serio_release_port(struct device *dev)
496{
497 struct serio *serio = to_serio_port(dev);
498
499 kfree(serio);
500 module_put(THIS_MODULE);
501}
502
503/*
504 * Prepare serio port for registration.
505 */
506static void serio_init_port(struct serio *serio)
507{
508 static atomic_t serio_no = ATOMIC_INIT(0);
509
510 __module_get(THIS_MODULE);
511
Randy Dunlap73b59a32006-07-19 01:14:55 -0400512 INIT_LIST_HEAD(&serio->node);
Dmitry Eremin-Solenikov09822582010-10-04 21:46:10 -0700513 INIT_LIST_HEAD(&serio->child_node);
514 INIT_LIST_HEAD(&serio->children);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 spin_lock_init(&serio->lock);
Arjan van de Venc4e32e92006-02-19 00:21:55 -0500516 mutex_init(&serio->drv_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 device_initialize(&serio->dev);
Kay Sieversa6c24902008-10-30 00:07:50 -0400518 dev_set_name(&serio->dev, "serio%ld",
519 (long)atomic_inc_return(&serio_no) - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 serio->dev.bus = &serio_bus;
521 serio->dev.release = serio_release_port;
Dmitry Torokhov386d8772010-01-05 17:56:03 -0800522 serio->dev.groups = serio_device_attr_groups;
Jiri Kosina88aa0102006-10-11 01:45:31 -0400523 if (serio->parent) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 serio->dev.parent = &serio->parent->dev;
Jiri Kosina88aa0102006-10-11 01:45:31 -0400525 serio->depth = serio->parent->depth + 1;
526 } else
527 serio->depth = 0;
528 lockdep_set_subclass(&serio->lock, serio->depth);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529}
530
531/*
532 * Complete serio port registration.
533 * Driver core will attempt to find appropriate driver for the port.
534 */
535static void serio_add_port(struct serio *serio)
536{
Dmitry Eremin-Solenikov09822582010-10-04 21:46:10 -0700537 struct serio *parent = serio->parent;
Randy Dunlap73b59a32006-07-19 01:14:55 -0400538 int error;
539
Dmitry Eremin-Solenikov09822582010-10-04 21:46:10 -0700540 if (parent) {
541 serio_pause_rx(parent);
542 list_add_tail(&serio->child_node, &parent->children);
543 serio_continue_rx(parent);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544 }
545
546 list_add_tail(&serio->node, &serio_list);
Dmitry Torokhov386d8772010-01-05 17:56:03 -0800547
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 if (serio->start)
549 serio->start(serio);
Dmitry Torokhov386d8772010-01-05 17:56:03 -0800550
Randy Dunlap73b59a32006-07-19 01:14:55 -0400551 error = device_add(&serio->dev);
552 if (error)
Dmitry Torokhovcac91692010-01-05 17:56:04 -0800553 dev_err(&serio->dev,
554 "device_add() failed for %s (%s), error: %d\n",
Randy Dunlap73b59a32006-07-19 01:14:55 -0400555 serio->phys, serio->name, error);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556}
557
558/*
Dmitry Eremin-Solenikov09822582010-10-04 21:46:10 -0700559 * serio_destroy_port() completes unregistration process and removes
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560 * port from the system
561 */
562static void serio_destroy_port(struct serio *serio)
563{
564 struct serio *child;
565
Dmitry Eremin-Solenikov09822582010-10-04 21:46:10 -0700566 while ((child = serio_get_pending_child(serio)) != NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567 serio_remove_pending_events(child);
568 put_device(&child->dev);
569 }
570
571 if (serio->stop)
572 serio->stop(serio);
573
574 if (serio->parent) {
575 serio_pause_rx(serio->parent);
Dmitry Eremin-Solenikov09822582010-10-04 21:46:10 -0700576 list_del_init(&serio->child_node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 serio_continue_rx(serio->parent);
578 serio->parent = NULL;
579 }
580
Dmitry Torokhovddf1ffb2010-01-05 17:56:04 -0800581 if (device_is_registered(&serio->dev))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 device_del(&serio->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583
Randy Dunlap73b59a32006-07-19 01:14:55 -0400584 list_del_init(&serio->node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585 serio_remove_pending_events(serio);
586 put_device(&serio->dev);
587}
588
589/*
Shaohua Li6aabcdf2008-07-03 10:45:38 -0400590 * Reconnect serio port (re-initialize attached device).
591 * If reconnect fails (old device is no longer attached or
592 * there was no device to begin with) we do full rescan in
593 * hope of finding a driver for the port.
594 */
595static int serio_reconnect_port(struct serio *serio)
596{
597 int error = serio_reconnect_driver(serio);
598
599 if (error) {
600 serio_disconnect_port(serio);
601 serio_find_driver(serio);
602 }
603
604 return error;
605}
606
607/*
Dmitry Eremin-Solenikov09822582010-10-04 21:46:10 -0700608 * Reconnect serio port and all its children (re-initialize attached
609 * devices).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610 */
Dmitry Eremin-Solenikov09822582010-10-04 21:46:10 -0700611static void serio_reconnect_subtree(struct serio *root)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612{
Dmitry Eremin-Solenikov09822582010-10-04 21:46:10 -0700613 struct serio *s = root;
614 int error;
615
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616 do {
Dmitry Eremin-Solenikov09822582010-10-04 21:46:10 -0700617 error = serio_reconnect_port(s);
618 if (!error) {
619 /*
620 * Reconnect was successful, move on to do the
621 * first child.
622 */
623 if (!list_empty(&s->children)) {
624 s = list_first_entry(&s->children,
625 struct serio, child_node);
626 continue;
627 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628 }
Dmitry Eremin-Solenikov09822582010-10-04 21:46:10 -0700629
630 /*
631 * Either it was a leaf node or reconnect failed and it
632 * became a leaf node. Continue reconnecting starting with
633 * the next sibling of the parent node.
634 */
635 while (s != root) {
636 struct serio *parent = s->parent;
637
638 if (!list_is_last(&s->child_node, &parent->children)) {
639 s = list_entry(s->child_node.next,
640 struct serio, child_node);
641 break;
642 }
643
644 s = parent;
645 }
646 } while (s != root);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647}
648
649/*
650 * serio_disconnect_port() unbinds a port from its driver. As a side effect
Dmitry Eremin-Solenikov09822582010-10-04 21:46:10 -0700651 * all children ports are unbound and destroyed.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652 */
653static void serio_disconnect_port(struct serio *serio)
654{
Dmitry Eremin-Solenikov09822582010-10-04 21:46:10 -0700655 struct serio *s = serio;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656
Dmitry Eremin-Solenikov09822582010-10-04 21:46:10 -0700657 /*
658 * Children ports should be disconnected and destroyed
659 * first; we travel the tree in depth-first order.
660 */
661 while (!list_empty(&serio->children)) {
662
663 /* Locate a leaf */
664 while (!list_empty(&s->children))
665 s = list_first_entry(&s->children,
666 struct serio, child_node);
667
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 /*
Dmitry Eremin-Solenikov09822582010-10-04 21:46:10 -0700669 * Prune this leaf node unless it is the one we
670 * started with.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671 */
Dmitry Eremin-Solenikov09822582010-10-04 21:46:10 -0700672 if (s != serio) {
673 struct serio *parent = s->parent;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674
Dmitry Torokhov70f256f2007-04-10 00:40:27 -0400675 device_release_driver(&s->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 serio_destroy_port(s);
Dmitry Eremin-Solenikov09822582010-10-04 21:46:10 -0700677
678 s = parent;
679 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680 }
681
682 /*
Dmitry Eremin-Solenikov09822582010-10-04 21:46:10 -0700683 * OK, no children left, now disconnect this port.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684 */
Dmitry Torokhov70f256f2007-04-10 00:40:27 -0400685 device_release_driver(&serio->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686}
687
688void serio_rescan(struct serio *serio)
689{
Dmitry Torokhoved7b1f62006-11-23 23:34:49 -0500690 serio_queue_event(serio, NULL, SERIO_RESCAN_PORT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691}
Dmitry Torokhov89b09b92009-04-17 20:12:34 -0700692EXPORT_SYMBOL(serio_rescan);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693
694void serio_reconnect(struct serio *serio)
695{
Dmitry Eremin-Solenikov09822582010-10-04 21:46:10 -0700696 serio_queue_event(serio, NULL, SERIO_RECONNECT_SUBTREE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697}
Dmitry Torokhov89b09b92009-04-17 20:12:34 -0700698EXPORT_SYMBOL(serio_reconnect);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699
700/*
701 * Submits register request to kseriod for subsequent execution.
702 * Note that port registration is always asynchronous.
703 */
704void __serio_register_port(struct serio *serio, struct module *owner)
705{
706 serio_init_port(serio);
707 serio_queue_event(serio, owner, SERIO_REGISTER_PORT);
708}
Dmitry Torokhov89b09b92009-04-17 20:12:34 -0700709EXPORT_SYMBOL(__serio_register_port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710
711/*
712 * Synchronously unregisters serio port.
713 */
714void serio_unregister_port(struct serio *serio)
715{
Arjan van de Venc4e32e92006-02-19 00:21:55 -0500716 mutex_lock(&serio_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717 serio_disconnect_port(serio);
718 serio_destroy_port(serio);
Arjan van de Venc4e32e92006-02-19 00:21:55 -0500719 mutex_unlock(&serio_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720}
Dmitry Torokhov89b09b92009-04-17 20:12:34 -0700721EXPORT_SYMBOL(serio_unregister_port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722
723/*
Dmitry Eremin-Solenikov09822582010-10-04 21:46:10 -0700724 * Safely unregisters children ports if they are present.
Linus Torvalds3c803e82005-06-27 17:49:45 -0700725 */
726void serio_unregister_child_port(struct serio *serio)
727{
Dmitry Eremin-Solenikov09822582010-10-04 21:46:10 -0700728 struct serio *s, *next;
729
Arjan van de Venc4e32e92006-02-19 00:21:55 -0500730 mutex_lock(&serio_mutex);
Dmitry Eremin-Solenikov09822582010-10-04 21:46:10 -0700731 list_for_each_entry_safe(s, next, &serio->children, child_node) {
732 serio_disconnect_port(s);
733 serio_destroy_port(s);
Linus Torvalds3c803e82005-06-27 17:49:45 -0700734 }
Arjan van de Venc4e32e92006-02-19 00:21:55 -0500735 mutex_unlock(&serio_mutex);
Linus Torvalds3c803e82005-06-27 17:49:45 -0700736}
Dmitry Torokhov89b09b92009-04-17 20:12:34 -0700737EXPORT_SYMBOL(serio_unregister_child_port);
Linus Torvalds3c803e82005-06-27 17:49:45 -0700738
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739
740/*
741 * Serio driver operations
742 */
743
Greg Kroah-Hartman7048f5d2013-08-23 14:24:34 -0700744static ssize_t description_show(struct device_driver *drv, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745{
746 struct serio_driver *driver = to_serio_driver(drv);
747 return sprintf(buf, "%s\n", driver->description ? driver->description : "(none)");
748}
Greg Kroah-Hartman7048f5d2013-08-23 14:24:34 -0700749static DRIVER_ATTR_RO(description);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750
Greg Kroah-Hartman7048f5d2013-08-23 14:24:34 -0700751static ssize_t bind_mode_show(struct device_driver *drv, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752{
753 struct serio_driver *serio_drv = to_serio_driver(drv);
754 return sprintf(buf, "%s\n", serio_drv->manual_bind ? "manual" : "auto");
755}
756
Greg Kroah-Hartman7048f5d2013-08-23 14:24:34 -0700757static ssize_t bind_mode_store(struct device_driver *drv, const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758{
759 struct serio_driver *serio_drv = to_serio_driver(drv);
760 int retval;
761
762 retval = count;
763 if (!strncmp(buf, "manual", count)) {
Dmitry Torokhov7e044e02009-05-09 16:08:05 -0700764 serio_drv->manual_bind = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765 } else if (!strncmp(buf, "auto", count)) {
Dmitry Torokhov7e044e02009-05-09 16:08:05 -0700766 serio_drv->manual_bind = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767 } else {
768 retval = -EINVAL;
769 }
770
771 return retval;
772}
Greg Kroah-Hartman7048f5d2013-08-23 14:24:34 -0700773static DRIVER_ATTR_RW(bind_mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774
Greg Kroah-Hartman7048f5d2013-08-23 14:24:34 -0700775static struct attribute *serio_driver_attrs[] = {
776 &driver_attr_description.attr,
777 &driver_attr_bind_mode.attr,
778 NULL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779};
Greg Kroah-Hartman7048f5d2013-08-23 14:24:34 -0700780ATTRIBUTE_GROUPS(serio_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781
782static int serio_driver_probe(struct device *dev)
783{
784 struct serio *serio = to_serio_port(dev);
785 struct serio_driver *drv = to_serio_driver(dev->driver);
786
Linus Torvalds3c803e82005-06-27 17:49:45 -0700787 return serio_connect_driver(serio, drv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788}
789
790static int serio_driver_remove(struct device *dev)
791{
792 struct serio *serio = to_serio_port(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793
Linus Torvalds3c803e82005-06-27 17:49:45 -0700794 serio_disconnect_driver(serio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795 return 0;
796}
797
Dmitry Torokhov82dd9ef2007-02-18 01:40:30 -0500798static void serio_cleanup(struct serio *serio)
799{
Dmitry Torokhov33143ea2007-06-29 01:06:35 -0400800 mutex_lock(&serio->drv_mutex);
Dmitry Torokhov82dd9ef2007-02-18 01:40:30 -0500801 if (serio->drv && serio->drv->cleanup)
802 serio->drv->cleanup(serio);
Dmitry Torokhov33143ea2007-06-29 01:06:35 -0400803 mutex_unlock(&serio->drv_mutex);
Dmitry Torokhov82dd9ef2007-02-18 01:40:30 -0500804}
805
806static void serio_shutdown(struct device *dev)
807{
808 struct serio *serio = to_serio_port(dev);
809
810 serio_cleanup(serio);
811}
812
Dmitry Torokhoved7b1f62006-11-23 23:34:49 -0500813static void serio_attach_driver(struct serio_driver *drv)
Randy Dunlap73b59a32006-07-19 01:14:55 -0400814{
815 int error;
816
Dmitry Torokhoved7b1f62006-11-23 23:34:49 -0500817 error = driver_attach(&drv->driver);
Randy Dunlap73b59a32006-07-19 01:14:55 -0400818 if (error)
Dmitry Torokhovcac91692010-01-05 17:56:04 -0800819 pr_warning("driver_attach() failed for %s with error %d\n",
820 drv->driver.name, error);
Randy Dunlap73b59a32006-07-19 01:14:55 -0400821}
822
Greg Kroah-Hartman4b315622007-01-15 11:50:02 -0800823int __serio_register_driver(struct serio_driver *drv, struct module *owner, const char *mod_name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824{
Dmitry Torokhov7e044e02009-05-09 16:08:05 -0700825 bool manual_bind = drv->manual_bind;
Dmitry Torokhoved7b1f62006-11-23 23:34:49 -0500826 int error;
827
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828 drv->driver.bus = &serio_bus;
Greg Kroah-Hartman4b315622007-01-15 11:50:02 -0800829 drv->driver.owner = owner;
830 drv->driver.mod_name = mod_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831
Dmitry Torokhoved7b1f62006-11-23 23:34:49 -0500832 /*
833 * Temporarily disable automatic binding because probing
834 * takes long time and we are better off doing it in kseriod
835 */
Dmitry Torokhov7e044e02009-05-09 16:08:05 -0700836 drv->manual_bind = true;
Dmitry Torokhoved7b1f62006-11-23 23:34:49 -0500837
838 error = driver_register(&drv->driver);
839 if (error) {
Dmitry Torokhovcac91692010-01-05 17:56:04 -0800840 pr_err("driver_register() failed for %s, error: %d\n",
Dmitry Torokhoved7b1f62006-11-23 23:34:49 -0500841 drv->driver.name, error);
842 return error;
843 }
844
845 /*
846 * Restore original bind mode and let kseriod bind the
847 * driver to free ports
848 */
849 if (!manual_bind) {
Dmitry Torokhov7e044e02009-05-09 16:08:05 -0700850 drv->manual_bind = false;
Dmitry Torokhoved7b1f62006-11-23 23:34:49 -0500851 error = serio_queue_event(drv, NULL, SERIO_ATTACH_DRIVER);
852 if (error) {
853 driver_unregister(&drv->driver);
854 return error;
855 }
856 }
857
858 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859}
Dmitry Torokhov89b09b92009-04-17 20:12:34 -0700860EXPORT_SYMBOL(__serio_register_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861
862void serio_unregister_driver(struct serio_driver *drv)
863{
864 struct serio *serio;
865
Arjan van de Venc4e32e92006-02-19 00:21:55 -0500866 mutex_lock(&serio_mutex);
Dmitry Torokhove8ef4342008-06-02 00:41:57 -0400867
Dmitry Torokhov7e044e02009-05-09 16:08:05 -0700868 drv->manual_bind = true; /* so serio_find_driver ignores it */
Dmitry Torokhove8ef4342008-06-02 00:41:57 -0400869 serio_remove_pending_events(drv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870
871start_over:
872 list_for_each_entry(serio, &serio_list, node) {
873 if (serio->drv == drv) {
874 serio_disconnect_port(serio);
875 serio_find_driver(serio);
876 /* we could've deleted some ports, restart */
877 goto start_over;
878 }
879 }
880
881 driver_unregister(&drv->driver);
Arjan van de Venc4e32e92006-02-19 00:21:55 -0500882 mutex_unlock(&serio_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883}
Dmitry Torokhov89b09b92009-04-17 20:12:34 -0700884EXPORT_SYMBOL(serio_unregister_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885
886static void serio_set_drv(struct serio *serio, struct serio_driver *drv)
887{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888 serio_pause_rx(serio);
889 serio->drv = drv;
890 serio_continue_rx(serio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891}
892
893static int serio_bus_match(struct device *dev, struct device_driver *drv)
894{
895 struct serio *serio = to_serio_port(dev);
896 struct serio_driver *serio_drv = to_serio_driver(drv);
897
898 if (serio->manual_bind || serio_drv->manual_bind)
899 return 0;
900
901 return serio_match_port(serio_drv->id_table, serio);
902}
903
Kay Sievers312c0042005-11-16 09:00:00 +0100904#define SERIO_ADD_UEVENT_VAR(fmt, val...) \
Dmitry Torokhovae87dff2005-06-30 00:48:34 -0500905 do { \
Kay Sievers7eff2e72007-08-14 15:15:12 +0200906 int err = add_uevent_var(env, fmt, val); \
Dmitry Torokhovae87dff2005-06-30 00:48:34 -0500907 if (err) \
908 return err; \
909 } while (0)
910
Kay Sievers7eff2e72007-08-14 15:15:12 +0200911static int serio_uevent(struct device *dev, struct kobj_uevent_env *env)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912{
913 struct serio *serio;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914
915 if (!dev)
916 return -ENODEV;
917
918 serio = to_serio_port(dev);
919
Kay Sievers312c0042005-11-16 09:00:00 +0100920 SERIO_ADD_UEVENT_VAR("SERIO_TYPE=%02x", serio->id.type);
921 SERIO_ADD_UEVENT_VAR("SERIO_PROTO=%02x", serio->id.proto);
922 SERIO_ADD_UEVENT_VAR("SERIO_ID=%02x", serio->id.id);
923 SERIO_ADD_UEVENT_VAR("SERIO_EXTRA=%02x", serio->id.extra);
924 SERIO_ADD_UEVENT_VAR("MODALIAS=serio:ty%02Xpr%02Xid%02Xex%02X",
Dmitry Torokhovae87dff2005-06-30 00:48:34 -0500925 serio->id.type, serio->id.proto, serio->id.id, serio->id.extra);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926
927 return 0;
928}
Kay Sievers312c0042005-11-16 09:00:00 +0100929#undef SERIO_ADD_UEVENT_VAR
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930
Dmitry Torokhov82dd9ef2007-02-18 01:40:30 -0500931#ifdef CONFIG_PM
Dmitry Torokhov633aae22009-07-22 21:51:36 -0700932static int serio_suspend(struct device *dev)
Dmitry Torokhov82dd9ef2007-02-18 01:40:30 -0500933{
Dmitry Torokhov7e044e02009-05-09 16:08:05 -0700934 struct serio *serio = to_serio_port(dev);
Dmitry Torokhov82dd9ef2007-02-18 01:40:30 -0500935
Dmitry Torokhov633aae22009-07-22 21:51:36 -0700936 serio_cleanup(serio);
Dmitry Torokhov82dd9ef2007-02-18 01:40:30 -0500937
938 return 0;
939}
940
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941static int serio_resume(struct device *dev)
942{
Dmitry Torokhov7e044e02009-05-09 16:08:05 -0700943 struct serio *serio = to_serio_port(dev);
944
Shaohua Li6aabcdf2008-07-03 10:45:38 -0400945 /*
946 * Driver reconnect can take a while, so better let kseriod
947 * deal with it.
948 */
Dmitry Torokhov633aae22009-07-22 21:51:36 -0700949 serio_queue_event(serio, NULL, SERIO_RECONNECT_PORT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950
951 return 0;
952}
Dmitry Torokhov633aae22009-07-22 21:51:36 -0700953
954static const struct dev_pm_ops serio_pm_ops = {
955 .suspend = serio_suspend,
956 .resume = serio_resume,
957 .poweroff = serio_suspend,
958 .restore = serio_resume,
959};
Dmitry Torokhov82dd9ef2007-02-18 01:40:30 -0500960#endif /* CONFIG_PM */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961
Arjan van de Venc4e32e92006-02-19 00:21:55 -0500962/* called from serio_driver->connect/disconnect methods under serio_mutex */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963int serio_open(struct serio *serio, struct serio_driver *drv)
964{
965 serio_set_drv(serio, drv);
966
967 if (serio->open && serio->open(serio)) {
968 serio_set_drv(serio, NULL);
969 return -1;
970 }
971 return 0;
972}
Dmitry Torokhov89b09b92009-04-17 20:12:34 -0700973EXPORT_SYMBOL(serio_open);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974
Arjan van de Venc4e32e92006-02-19 00:21:55 -0500975/* called from serio_driver->connect/disconnect methods under serio_mutex */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976void serio_close(struct serio *serio)
977{
978 if (serio->close)
979 serio->close(serio);
980
981 serio_set_drv(serio, NULL);
982}
Dmitry Torokhov89b09b92009-04-17 20:12:34 -0700983EXPORT_SYMBOL(serio_close);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984
985irqreturn_t serio_interrupt(struct serio *serio,
David Howells7d12e782006-10-05 14:55:46 +0100986 unsigned char data, unsigned int dfl)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987{
988 unsigned long flags;
989 irqreturn_t ret = IRQ_NONE;
990
991 spin_lock_irqsave(&serio->lock, flags);
992
993 if (likely(serio->drv)) {
David Howells7d12e782006-10-05 14:55:46 +0100994 ret = serio->drv->interrupt(serio, data, dfl);
Dmitry Torokhovddf1ffb2010-01-05 17:56:04 -0800995 } else if (!dfl && device_is_registered(&serio->dev)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996 serio_rescan(serio);
997 ret = IRQ_HANDLED;
998 }
999
1000 spin_unlock_irqrestore(&serio->lock, flags);
1001
1002 return ret;
1003}
Dmitry Torokhov89b09b92009-04-17 20:12:34 -07001004EXPORT_SYMBOL(serio_interrupt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005
Marton Nemeth1ea2a692006-11-02 23:27:21 -05001006static struct bus_type serio_bus = {
1007 .name = "serio",
Greg Kroah-Hartman7048f5d2013-08-23 14:24:34 -07001008 .drv_groups = serio_driver_groups,
Marton Nemeth1ea2a692006-11-02 23:27:21 -05001009 .match = serio_bus_match,
1010 .uevent = serio_uevent,
1011 .probe = serio_driver_probe,
1012 .remove = serio_driver_remove,
Dmitry Torokhov82dd9ef2007-02-18 01:40:30 -05001013 .shutdown = serio_shutdown,
1014#ifdef CONFIG_PM
Dmitry Torokhov633aae22009-07-22 21:51:36 -07001015 .pm = &serio_pm_ops,
Dmitry Torokhov82dd9ef2007-02-18 01:40:30 -05001016#endif
Marton Nemeth1ea2a692006-11-02 23:27:21 -05001017};
1018
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019static int __init serio_init(void)
1020{
Randy Dunlap73b59a32006-07-19 01:14:55 -04001021 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022
Randy Dunlap73b59a32006-07-19 01:14:55 -04001023 error = bus_register(&serio_bus);
1024 if (error) {
Dmitry Torokhovcac91692010-01-05 17:56:04 -08001025 pr_err("Failed to register serio bus, error: %d\n", error);
Randy Dunlap73b59a32006-07-19 01:14:55 -04001026 return error;
1027 }
1028
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029 return 0;
1030}
1031
1032static void __exit serio_exit(void)
1033{
1034 bus_unregister(&serio_bus);
Dmitry Torokhov8ee294c2010-11-15 01:39:57 -08001035
1036 /*
1037 * There should not be any outstanding events but work may
1038 * still be scheduled so simply cancel it.
1039 */
1040 cancel_work_sync(&serio_event_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041}
1042
Dmitry Torokhov51c38f92006-02-19 00:22:51 -05001043subsys_initcall(serio_init);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044module_exit(serio_exit);