blob: 8f828975ab10b03746e700dd26dce1cb03d2c17e [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
Linus Torvalds1da177e2005-04-16 15:20:36 -070052static void serio_add_port(struct serio *serio);
Shaohua Li6aabcdf2008-07-03 10:45:38 -040053static int serio_reconnect_port(struct serio *serio);
Linus Torvalds1da177e2005-04-16 15:20:36 -070054static void serio_disconnect_port(struct serio *serio);
Dmitry Eremin-Solenikov09822582010-10-04 21:46:10 -070055static void serio_reconnect_subtree(struct serio *serio);
Dmitry Torokhoved7b1f62006-11-23 23:34:49 -050056static void serio_attach_driver(struct serio_driver *drv);
Linus Torvalds1da177e2005-04-16 15:20:36 -070057
Linus Torvalds3c803e82005-06-27 17:49:45 -070058static int serio_connect_driver(struct serio *serio, struct serio_driver *drv)
59{
60 int retval;
61
Arjan van de Venc4e32e92006-02-19 00:21:55 -050062 mutex_lock(&serio->drv_mutex);
Linus Torvalds3c803e82005-06-27 17:49:45 -070063 retval = drv->connect(serio, drv);
Arjan van de Venc4e32e92006-02-19 00:21:55 -050064 mutex_unlock(&serio->drv_mutex);
Linus Torvalds3c803e82005-06-27 17:49:45 -070065
66 return retval;
67}
68
69static int serio_reconnect_driver(struct serio *serio)
70{
71 int retval = -1;
72
Arjan van de Venc4e32e92006-02-19 00:21:55 -050073 mutex_lock(&serio->drv_mutex);
Linus Torvalds3c803e82005-06-27 17:49:45 -070074 if (serio->drv && serio->drv->reconnect)
75 retval = serio->drv->reconnect(serio);
Arjan van de Venc4e32e92006-02-19 00:21:55 -050076 mutex_unlock(&serio->drv_mutex);
Linus Torvalds3c803e82005-06-27 17:49:45 -070077
78 return retval;
79}
80
81static void serio_disconnect_driver(struct serio *serio)
82{
Arjan van de Venc4e32e92006-02-19 00:21:55 -050083 mutex_lock(&serio->drv_mutex);
Linus Torvalds3c803e82005-06-27 17:49:45 -070084 if (serio->drv)
85 serio->drv->disconnect(serio);
Arjan van de Venc4e32e92006-02-19 00:21:55 -050086 mutex_unlock(&serio->drv_mutex);
Linus Torvalds3c803e82005-06-27 17:49:45 -070087}
88
Linus Torvalds1da177e2005-04-16 15:20:36 -070089static int serio_match_port(const struct serio_device_id *ids, struct serio *serio)
90{
91 while (ids->type || ids->proto) {
92 if ((ids->type == SERIO_ANY || ids->type == serio->id.type) &&
93 (ids->proto == SERIO_ANY || ids->proto == serio->id.proto) &&
94 (ids->extra == SERIO_ANY || ids->extra == serio->id.extra) &&
95 (ids->id == SERIO_ANY || ids->id == serio->id.id))
96 return 1;
97 ids++;
98 }
99 return 0;
100}
101
102/*
103 * Basic serio -> driver core mappings
104 */
105
Dmitry Torokhov70f256f2007-04-10 00:40:27 -0400106static int serio_bind_driver(struct serio *serio, struct serio_driver *drv)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107{
Dmitry Torokhov0a660452006-10-12 01:06:23 -0400108 int error;
109
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110 if (serio_match_port(drv->id_table, serio)) {
Dmitry Torokhov70f256f2007-04-10 00:40:27 -0400111
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112 serio->dev.driver = &drv->driver;
Linus Torvalds3c803e82005-06-27 17:49:45 -0700113 if (serio_connect_driver(serio, drv)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 serio->dev.driver = NULL;
Dmitry Torokhov70f256f2007-04-10 00:40:27 -0400115 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 }
Dmitry Torokhov70f256f2007-04-10 00:40:27 -0400117
Dmitry Torokhov0a660452006-10-12 01:06:23 -0400118 error = device_bind_driver(&serio->dev);
119 if (error) {
Dmitry Torokhovcac91692010-01-05 17:56:04 -0800120 dev_warn(&serio->dev,
121 "device_bind_driver() failed for %s (%s) and %s, error: %d\n",
122 serio->phys, serio->name,
123 drv->description, error);
Dmitry Torokhov0a660452006-10-12 01:06:23 -0400124 serio_disconnect_driver(serio);
125 serio->dev.driver = NULL;
Dmitry Torokhov70f256f2007-04-10 00:40:27 -0400126 return error;
Dmitry Torokhov0a660452006-10-12 01:06:23 -0400127 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 }
Dmitry Torokhov70f256f2007-04-10 00:40:27 -0400129 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130}
131
132static void serio_find_driver(struct serio *serio)
133{
Randy Dunlap73b59a32006-07-19 01:14:55 -0400134 int error;
135
Randy Dunlap73b59a32006-07-19 01:14:55 -0400136 error = device_attach(&serio->dev);
137 if (error < 0)
Dmitry Torokhovcac91692010-01-05 17:56:04 -0800138 dev_warn(&serio->dev,
139 "device_attach() failed for %s (%s), error: %d\n",
140 serio->phys, serio->name, error);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141}
142
143
144/*
145 * Serio event processing.
146 */
147
148enum serio_event_type {
Dmitry Torokhoved7b1f62006-11-23 23:34:49 -0500149 SERIO_RESCAN_PORT,
150 SERIO_RECONNECT_PORT,
Dmitry Eremin-Solenikov09822582010-10-04 21:46:10 -0700151 SERIO_RECONNECT_SUBTREE,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 SERIO_REGISTER_PORT,
Dmitry Torokhoved7b1f62006-11-23 23:34:49 -0500153 SERIO_ATTACH_DRIVER,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154};
155
156struct serio_event {
157 enum serio_event_type type;
158 void *object;
159 struct module *owner;
160 struct list_head node;
161};
162
163static DEFINE_SPINLOCK(serio_event_lock); /* protects serio_event_list */
164static LIST_HEAD(serio_event_list);
Dmitry Torokhov8ee294c2010-11-15 01:39:57 -0800165
166static struct serio_event *serio_get_event(void)
167{
168 struct serio_event *event = NULL;
169 unsigned long flags;
170
171 spin_lock_irqsave(&serio_event_lock, flags);
172
173 if (!list_empty(&serio_event_list)) {
174 event = list_first_entry(&serio_event_list,
175 struct serio_event, node);
176 list_del_init(&event->node);
177 }
178
179 spin_unlock_irqrestore(&serio_event_lock, flags);
180 return event;
181}
182
183static void serio_free_event(struct serio_event *event)
184{
185 module_put(event->owner);
186 kfree(event);
187}
188
Duncan Laurie19e95542011-02-02 22:59:54 -0800189static void serio_remove_duplicate_events(void *object,
190 enum serio_event_type type)
Dmitry Torokhov8ee294c2010-11-15 01:39:57 -0800191{
192 struct serio_event *e, *next;
193 unsigned long flags;
194
195 spin_lock_irqsave(&serio_event_lock, flags);
196
197 list_for_each_entry_safe(e, next, &serio_event_list, node) {
Duncan Laurie19e95542011-02-02 22:59:54 -0800198 if (object == e->object) {
Dmitry Torokhov8ee294c2010-11-15 01:39:57 -0800199 /*
200 * If this event is of different type we should not
201 * look further - we only suppress duplicate events
202 * that were sent back-to-back.
203 */
Duncan Laurie19e95542011-02-02 22:59:54 -0800204 if (type != e->type)
Dmitry Torokhov8ee294c2010-11-15 01:39:57 -0800205 break;
206
207 list_del_init(&e->node);
208 serio_free_event(e);
209 }
210 }
211
212 spin_unlock_irqrestore(&serio_event_lock, flags);
213}
214
215static void serio_handle_event(struct work_struct *work)
216{
217 struct serio_event *event;
218
219 mutex_lock(&serio_mutex);
220
221 while ((event = serio_get_event())) {
222
223 switch (event->type) {
224
225 case SERIO_REGISTER_PORT:
226 serio_add_port(event->object);
227 break;
228
229 case SERIO_RECONNECT_PORT:
230 serio_reconnect_port(event->object);
231 break;
232
233 case SERIO_RESCAN_PORT:
234 serio_disconnect_port(event->object);
235 serio_find_driver(event->object);
236 break;
237
238 case SERIO_RECONNECT_SUBTREE:
239 serio_reconnect_subtree(event->object);
240 break;
241
242 case SERIO_ATTACH_DRIVER:
243 serio_attach_driver(event->object);
244 break;
245 }
246
Duncan Laurie19e95542011-02-02 22:59:54 -0800247 serio_remove_duplicate_events(event->object, event->type);
Dmitry Torokhov8ee294c2010-11-15 01:39:57 -0800248 serio_free_event(event);
249 }
250
251 mutex_unlock(&serio_mutex);
252}
253
254static DECLARE_WORK(serio_event_work, serio_handle_event);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255
Dmitry Torokhoved7b1f62006-11-23 23:34:49 -0500256static int serio_queue_event(void *object, struct module *owner,
257 enum serio_event_type event_type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258{
259 unsigned long flags;
260 struct serio_event *event;
Dmitry Torokhoved7b1f62006-11-23 23:34:49 -0500261 int retval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262
263 spin_lock_irqsave(&serio_event_lock, flags);
264
265 /*
Linus Torvalds3c803e82005-06-27 17:49:45 -0700266 * Scan event list for the other events for the same serio port,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 * starting with the most recent one. If event is the same we
268 * do not need add new one. If event is of different type we
269 * need to add this event and should not look further because
270 * we need to preseve sequence of distinct events.
Linus Torvalds3c803e82005-06-27 17:49:45 -0700271 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 list_for_each_entry_reverse(event, &serio_event_list, node) {
273 if (event->object == object) {
274 if (event->type == event_type)
275 goto out;
276 break;
277 }
278 }
279
Dmitry Torokhoved7b1f62006-11-23 23:34:49 -0500280 event = kmalloc(sizeof(struct serio_event), GFP_ATOMIC);
281 if (!event) {
Dmitry Torokhovcac91692010-01-05 17:56:04 -0800282 pr_err("Not enough memory to queue event %d\n", event_type);
Dmitry Torokhoved7b1f62006-11-23 23:34:49 -0500283 retval = -ENOMEM;
284 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 }
Dmitry Torokhoved7b1f62006-11-23 23:34:49 -0500286
287 if (!try_module_get(owner)) {
Dmitry Torokhovcac91692010-01-05 17:56:04 -0800288 pr_warning("Can't get module reference, dropping event %d\n",
289 event_type);
Dmitry Torokhoved7b1f62006-11-23 23:34:49 -0500290 kfree(event);
291 retval = -EINVAL;
292 goto out;
293 }
294
295 event->type = event_type;
296 event->object = object;
297 event->owner = owner;
298
299 list_add_tail(&event->node, &serio_event_list);
Dmitry Torokhov1d64b652011-02-23 08:51:28 -0800300 queue_work(system_long_wq, &serio_event_work);
Dmitry Torokhoved7b1f62006-11-23 23:34:49 -0500301
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302out:
303 spin_unlock_irqrestore(&serio_event_lock, flags);
Dmitry Torokhoved7b1f62006-11-23 23:34:49 -0500304 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305}
306
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307/*
Dmitry Torokhove8ef4342008-06-02 00:41:57 -0400308 * Remove all events that have been submitted for a given
309 * object, be it serio port or driver.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 */
Dmitry Torokhove8ef4342008-06-02 00:41:57 -0400311static void serio_remove_pending_events(void *object)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312{
Dmitry Torokhov4516c812010-01-05 17:56:04 -0800313 struct serio_event *event, *next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 unsigned long flags;
315
316 spin_lock_irqsave(&serio_event_lock, flags);
317
Dmitry Torokhov4516c812010-01-05 17:56:04 -0800318 list_for_each_entry_safe(event, next, &serio_event_list, node) {
Dmitry Torokhove8ef4342008-06-02 00:41:57 -0400319 if (event->object == object) {
Dmitry Torokhov4516c812010-01-05 17:56:04 -0800320 list_del_init(&event->node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 serio_free_event(event);
322 }
323 }
324
325 spin_unlock_irqrestore(&serio_event_lock, flags);
326}
327
328/*
Dmitry Eremin-Solenikov09822582010-10-04 21:46:10 -0700329 * Locate child serio port (if any) that has not been fully registered yet.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330 *
Dmitry Eremin-Solenikov09822582010-10-04 21:46:10 -0700331 * Children are registered by driver's connect() handler so there can't be a
332 * grandchild pending registration together with a child.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 */
334static struct serio *serio_get_pending_child(struct serio *parent)
335{
336 struct serio_event *event;
337 struct serio *serio, *child = NULL;
338 unsigned long flags;
339
340 spin_lock_irqsave(&serio_event_lock, flags);
341
342 list_for_each_entry(event, &serio_event_list, node) {
343 if (event->type == SERIO_REGISTER_PORT) {
344 serio = event->object;
345 if (serio->parent == parent) {
346 child = serio;
347 break;
348 }
349 }
350 }
351
352 spin_unlock_irqrestore(&serio_event_lock, flags);
353 return child;
354}
355
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356/*
357 * Serio port operations
358 */
359
Yani Ioannoue404e272005-05-17 06:42:58 -0400360static ssize_t serio_show_description(struct device *dev, struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361{
362 struct serio *serio = to_serio_port(dev);
363 return sprintf(buf, "%s\n", serio->name);
364}
365
Greg Kroah-Hartman3778a2122013-10-07 18:09:08 -0700366static ssize_t modalias_show(struct device *dev, struct device_attribute *attr, char *buf)
Dmitry Torokhovae87dff2005-06-30 00:48:34 -0500367{
368 struct serio *serio = to_serio_port(dev);
369
370 return sprintf(buf, "serio:ty%02Xpr%02Xid%02Xex%02X\n",
371 serio->id.type, serio->id.proto, serio->id.id, serio->id.extra);
372}
373
Greg Kroah-Hartman7eab8de2013-10-07 18:08:23 -0700374static ssize_t type_show(struct device *dev, struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375{
376 struct serio *serio = to_serio_port(dev);
377 return sprintf(buf, "%02x\n", serio->id.type);
378}
379
Greg Kroah-Hartman7eab8de2013-10-07 18:08:23 -0700380static ssize_t proto_show(struct device *dev, struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381{
382 struct serio *serio = to_serio_port(dev);
383 return sprintf(buf, "%02x\n", serio->id.proto);
384}
385
Greg Kroah-Hartman7eab8de2013-10-07 18:08:23 -0700386static ssize_t id_show(struct device *dev, struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387{
388 struct serio *serio = to_serio_port(dev);
389 return sprintf(buf, "%02x\n", serio->id.id);
390}
391
Greg Kroah-Hartman7eab8de2013-10-07 18:08:23 -0700392static ssize_t extra_show(struct device *dev, struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393{
394 struct serio *serio = to_serio_port(dev);
395 return sprintf(buf, "%02x\n", serio->id.extra);
396}
397
Greg Kroah-Hartman3778a2122013-10-07 18:09:08 -0700398static ssize_t drvctl_store(struct device *dev, struct device_attribute *attr, const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399{
400 struct serio *serio = to_serio_port(dev);
401 struct device_driver *drv;
Dmitry Torokhov70f256f2007-04-10 00:40:27 -0400402 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403
Dmitry Torokhov70f256f2007-04-10 00:40:27 -0400404 error = mutex_lock_interruptible(&serio_mutex);
405 if (error)
406 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408 if (!strncmp(buf, "none", count)) {
409 serio_disconnect_port(serio);
410 } else if (!strncmp(buf, "reconnect", count)) {
Dmitry Eremin-Solenikov09822582010-10-04 21:46:10 -0700411 serio_reconnect_subtree(serio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412 } else if (!strncmp(buf, "rescan", count)) {
413 serio_disconnect_port(serio);
414 serio_find_driver(serio);
Duncan Laurie19e95542011-02-02 22:59:54 -0800415 serio_remove_duplicate_events(serio, SERIO_RESCAN_PORT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416 } else if ((drv = driver_find(buf, &serio_bus)) != NULL) {
417 serio_disconnect_port(serio);
Dmitry Torokhov70f256f2007-04-10 00:40:27 -0400418 error = serio_bind_driver(serio, to_serio_driver(drv));
Duncan Laurie19e95542011-02-02 22:59:54 -0800419 serio_remove_duplicate_events(serio, SERIO_RESCAN_PORT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 } else {
Dmitry Torokhov70f256f2007-04-10 00:40:27 -0400421 error = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 }
423
Arjan van de Venc4e32e92006-02-19 00:21:55 -0500424 mutex_unlock(&serio_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425
Dmitry Torokhov70f256f2007-04-10 00:40:27 -0400426 return error ? error : count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427}
428
Yani Ioannoue404e272005-05-17 06:42:58 -0400429static ssize_t serio_show_bind_mode(struct device *dev, struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430{
431 struct serio *serio = to_serio_port(dev);
432 return sprintf(buf, "%s\n", serio->manual_bind ? "manual" : "auto");
433}
434
Yani Ioannoue404e272005-05-17 06:42:58 -0400435static 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 -0700436{
437 struct serio *serio = to_serio_port(dev);
438 int retval;
439
440 retval = count;
441 if (!strncmp(buf, "manual", count)) {
Dmitry Torokhov7e044e02009-05-09 16:08:05 -0700442 serio->manual_bind = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 } else if (!strncmp(buf, "auto", count)) {
Dmitry Torokhov7e044e02009-05-09 16:08:05 -0700444 serio->manual_bind = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 } else {
446 retval = -EINVAL;
447 }
448
449 return retval;
450}
451
Hans de Goede0456c662014-04-19 20:39:35 -0700452static ssize_t firmware_id_show(struct device *dev, struct device_attribute *attr, char *buf)
453{
454 struct serio *serio = to_serio_port(dev);
455
456 return sprintf(buf, "%s\n", serio->firmware_id);
457}
458
Greg Kroah-Hartman3778a2122013-10-07 18:09:08 -0700459static DEVICE_ATTR_RO(type);
460static DEVICE_ATTR_RO(proto);
461static DEVICE_ATTR_RO(id);
462static DEVICE_ATTR_RO(extra);
Greg Kroah-Hartman3778a2122013-10-07 18:09:08 -0700463
464static struct attribute *serio_device_id_attrs[] = {
465 &dev_attr_type.attr,
466 &dev_attr_proto.attr,
467 &dev_attr_id.attr,
468 &dev_attr_extra.attr,
Greg Kroah-Hartman3778a2122013-10-07 18:09:08 -0700469 NULL
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470};
471
Greg Kroah-Hartman3778a2122013-10-07 18:09:08 -0700472static struct attribute_group serio_id_attr_group = {
473 .name = "id",
474 .attrs = serio_device_id_attrs,
475};
476
Dmitry Torokhove696c682013-12-07 07:13:56 -0800477static DEVICE_ATTR_RO(modalias);
478static DEVICE_ATTR_WO(drvctl);
479static DEVICE_ATTR(description, S_IRUGO, serio_show_description, NULL);
480static DEVICE_ATTR(bind_mode, S_IWUSR | S_IRUGO, serio_show_bind_mode, serio_set_bind_mode);
Hans de Goede0456c662014-04-19 20:39:35 -0700481static DEVICE_ATTR_RO(firmware_id);
Dmitry Torokhove696c682013-12-07 07:13:56 -0800482
483static struct attribute *serio_device_attrs[] = {
484 &dev_attr_modalias.attr,
485 &dev_attr_description.attr,
486 &dev_attr_drvctl.attr,
487 &dev_attr_bind_mode.attr,
Hans de Goede0456c662014-04-19 20:39:35 -0700488 &dev_attr_firmware_id.attr,
Dmitry Torokhove696c682013-12-07 07:13:56 -0800489 NULL
490};
491
492static struct attribute_group serio_device_attr_group = {
493 .attrs = serio_device_attrs,
494};
495
Greg Kroah-Hartman3778a2122013-10-07 18:09:08 -0700496static const struct attribute_group *serio_device_attr_groups[] = {
497 &serio_id_attr_group,
Dmitry Torokhove696c682013-12-07 07:13:56 -0800498 &serio_device_attr_group,
Greg Kroah-Hartman3778a2122013-10-07 18:09:08 -0700499 NULL
500};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501
502static void serio_release_port(struct device *dev)
503{
504 struct serio *serio = to_serio_port(dev);
505
506 kfree(serio);
507 module_put(THIS_MODULE);
508}
509
510/*
511 * Prepare serio port for registration.
512 */
513static void serio_init_port(struct serio *serio)
514{
Aniroop Mathur939ffb12014-12-03 14:27:42 -0800515 static atomic_t serio_no = ATOMIC_INIT(-1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516
517 __module_get(THIS_MODULE);
518
Randy Dunlap73b59a32006-07-19 01:14:55 -0400519 INIT_LIST_HEAD(&serio->node);
Dmitry Eremin-Solenikov09822582010-10-04 21:46:10 -0700520 INIT_LIST_HEAD(&serio->child_node);
521 INIT_LIST_HEAD(&serio->children);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 spin_lock_init(&serio->lock);
Arjan van de Venc4e32e92006-02-19 00:21:55 -0500523 mutex_init(&serio->drv_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 device_initialize(&serio->dev);
Richard Leitner0224ec92014-10-08 15:21:32 -0700525 dev_set_name(&serio->dev, "serio%lu",
Aniroop Mathur939ffb12014-12-03 14:27:42 -0800526 (unsigned long)atomic_inc_return(&serio_no));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 serio->dev.bus = &serio_bus;
528 serio->dev.release = serio_release_port;
Dmitry Torokhov386d8772010-01-05 17:56:03 -0800529 serio->dev.groups = serio_device_attr_groups;
Jiri Kosina88aa0102006-10-11 01:45:31 -0400530 if (serio->parent) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 serio->dev.parent = &serio->parent->dev;
Jiri Kosina88aa0102006-10-11 01:45:31 -0400532 serio->depth = serio->parent->depth + 1;
533 } else
534 serio->depth = 0;
535 lockdep_set_subclass(&serio->lock, serio->depth);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536}
537
538/*
539 * Complete serio port registration.
540 * Driver core will attempt to find appropriate driver for the port.
541 */
542static void serio_add_port(struct serio *serio)
543{
Dmitry Eremin-Solenikov09822582010-10-04 21:46:10 -0700544 struct serio *parent = serio->parent;
Randy Dunlap73b59a32006-07-19 01:14:55 -0400545 int error;
546
Dmitry Eremin-Solenikov09822582010-10-04 21:46:10 -0700547 if (parent) {
548 serio_pause_rx(parent);
549 list_add_tail(&serio->child_node, &parent->children);
550 serio_continue_rx(parent);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 }
552
553 list_add_tail(&serio->node, &serio_list);
Dmitry Torokhov386d8772010-01-05 17:56:03 -0800554
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 if (serio->start)
556 serio->start(serio);
Dmitry Torokhov386d8772010-01-05 17:56:03 -0800557
Randy Dunlap73b59a32006-07-19 01:14:55 -0400558 error = device_add(&serio->dev);
559 if (error)
Dmitry Torokhovcac91692010-01-05 17:56:04 -0800560 dev_err(&serio->dev,
561 "device_add() failed for %s (%s), error: %d\n",
Randy Dunlap73b59a32006-07-19 01:14:55 -0400562 serio->phys, serio->name, error);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563}
564
565/*
Dmitry Eremin-Solenikov09822582010-10-04 21:46:10 -0700566 * serio_destroy_port() completes unregistration process and removes
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567 * port from the system
568 */
569static void serio_destroy_port(struct serio *serio)
570{
571 struct serio *child;
572
Dmitry Eremin-Solenikov09822582010-10-04 21:46:10 -0700573 while ((child = serio_get_pending_child(serio)) != NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574 serio_remove_pending_events(child);
575 put_device(&child->dev);
576 }
577
578 if (serio->stop)
579 serio->stop(serio);
580
581 if (serio->parent) {
582 serio_pause_rx(serio->parent);
Dmitry Eremin-Solenikov09822582010-10-04 21:46:10 -0700583 list_del_init(&serio->child_node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 serio_continue_rx(serio->parent);
585 serio->parent = NULL;
586 }
587
Dmitry Torokhovddf1ffb2010-01-05 17:56:04 -0800588 if (device_is_registered(&serio->dev))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589 device_del(&serio->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590
Randy Dunlap73b59a32006-07-19 01:14:55 -0400591 list_del_init(&serio->node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 serio_remove_pending_events(serio);
593 put_device(&serio->dev);
594}
595
596/*
Shaohua Li6aabcdf2008-07-03 10:45:38 -0400597 * Reconnect serio port (re-initialize attached device).
598 * If reconnect fails (old device is no longer attached or
599 * there was no device to begin with) we do full rescan in
600 * hope of finding a driver for the port.
601 */
602static int serio_reconnect_port(struct serio *serio)
603{
604 int error = serio_reconnect_driver(serio);
605
606 if (error) {
607 serio_disconnect_port(serio);
608 serio_find_driver(serio);
609 }
610
611 return error;
612}
613
614/*
Dmitry Eremin-Solenikov09822582010-10-04 21:46:10 -0700615 * Reconnect serio port and all its children (re-initialize attached
616 * devices).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617 */
Dmitry Eremin-Solenikov09822582010-10-04 21:46:10 -0700618static void serio_reconnect_subtree(struct serio *root)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619{
Dmitry Eremin-Solenikov09822582010-10-04 21:46:10 -0700620 struct serio *s = root;
621 int error;
622
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623 do {
Dmitry Eremin-Solenikov09822582010-10-04 21:46:10 -0700624 error = serio_reconnect_port(s);
625 if (!error) {
626 /*
627 * Reconnect was successful, move on to do the
628 * first child.
629 */
630 if (!list_empty(&s->children)) {
631 s = list_first_entry(&s->children,
632 struct serio, child_node);
633 continue;
634 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635 }
Dmitry Eremin-Solenikov09822582010-10-04 21:46:10 -0700636
637 /*
638 * Either it was a leaf node or reconnect failed and it
639 * became a leaf node. Continue reconnecting starting with
640 * the next sibling of the parent node.
641 */
642 while (s != root) {
643 struct serio *parent = s->parent;
644
645 if (!list_is_last(&s->child_node, &parent->children)) {
646 s = list_entry(s->child_node.next,
647 struct serio, child_node);
648 break;
649 }
650
651 s = parent;
652 }
653 } while (s != root);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654}
655
656/*
657 * serio_disconnect_port() unbinds a port from its driver. As a side effect
Dmitry Eremin-Solenikov09822582010-10-04 21:46:10 -0700658 * all children ports are unbound and destroyed.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659 */
660static void serio_disconnect_port(struct serio *serio)
661{
Dmitry Eremin-Solenikov09822582010-10-04 21:46:10 -0700662 struct serio *s = serio;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663
Dmitry Eremin-Solenikov09822582010-10-04 21:46:10 -0700664 /*
665 * Children ports should be disconnected and destroyed
666 * first; we travel the tree in depth-first order.
667 */
668 while (!list_empty(&serio->children)) {
669
670 /* Locate a leaf */
671 while (!list_empty(&s->children))
672 s = list_first_entry(&s->children,
673 struct serio, child_node);
674
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675 /*
Dmitry Eremin-Solenikov09822582010-10-04 21:46:10 -0700676 * Prune this leaf node unless it is the one we
677 * started with.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678 */
Dmitry Eremin-Solenikov09822582010-10-04 21:46:10 -0700679 if (s != serio) {
680 struct serio *parent = s->parent;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681
Dmitry Torokhov70f256f2007-04-10 00:40:27 -0400682 device_release_driver(&s->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683 serio_destroy_port(s);
Dmitry Eremin-Solenikov09822582010-10-04 21:46:10 -0700684
685 s = parent;
686 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687 }
688
689 /*
Dmitry Eremin-Solenikov09822582010-10-04 21:46:10 -0700690 * OK, no children left, now disconnect this port.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691 */
Dmitry Torokhov70f256f2007-04-10 00:40:27 -0400692 device_release_driver(&serio->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693}
694
695void serio_rescan(struct serio *serio)
696{
Dmitry Torokhoved7b1f62006-11-23 23:34:49 -0500697 serio_queue_event(serio, NULL, SERIO_RESCAN_PORT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698}
Dmitry Torokhov89b09b92009-04-17 20:12:34 -0700699EXPORT_SYMBOL(serio_rescan);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700
701void serio_reconnect(struct serio *serio)
702{
Dmitry Eremin-Solenikov09822582010-10-04 21:46:10 -0700703 serio_queue_event(serio, NULL, SERIO_RECONNECT_SUBTREE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704}
Dmitry Torokhov89b09b92009-04-17 20:12:34 -0700705EXPORT_SYMBOL(serio_reconnect);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706
707/*
708 * Submits register request to kseriod for subsequent execution.
709 * Note that port registration is always asynchronous.
710 */
711void __serio_register_port(struct serio *serio, struct module *owner)
712{
713 serio_init_port(serio);
714 serio_queue_event(serio, owner, SERIO_REGISTER_PORT);
715}
Dmitry Torokhov89b09b92009-04-17 20:12:34 -0700716EXPORT_SYMBOL(__serio_register_port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717
718/*
719 * Synchronously unregisters serio port.
720 */
721void serio_unregister_port(struct serio *serio)
722{
Arjan van de Venc4e32e92006-02-19 00:21:55 -0500723 mutex_lock(&serio_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724 serio_disconnect_port(serio);
725 serio_destroy_port(serio);
Arjan van de Venc4e32e92006-02-19 00:21:55 -0500726 mutex_unlock(&serio_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727}
Dmitry Torokhov89b09b92009-04-17 20:12:34 -0700728EXPORT_SYMBOL(serio_unregister_port);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729
730/*
Dmitry Eremin-Solenikov09822582010-10-04 21:46:10 -0700731 * Safely unregisters children ports if they are present.
Linus Torvalds3c803e82005-06-27 17:49:45 -0700732 */
733void serio_unregister_child_port(struct serio *serio)
734{
Dmitry Eremin-Solenikov09822582010-10-04 21:46:10 -0700735 struct serio *s, *next;
736
Arjan van de Venc4e32e92006-02-19 00:21:55 -0500737 mutex_lock(&serio_mutex);
Dmitry Eremin-Solenikov09822582010-10-04 21:46:10 -0700738 list_for_each_entry_safe(s, next, &serio->children, child_node) {
739 serio_disconnect_port(s);
740 serio_destroy_port(s);
Linus Torvalds3c803e82005-06-27 17:49:45 -0700741 }
Arjan van de Venc4e32e92006-02-19 00:21:55 -0500742 mutex_unlock(&serio_mutex);
Linus Torvalds3c803e82005-06-27 17:49:45 -0700743}
Dmitry Torokhov89b09b92009-04-17 20:12:34 -0700744EXPORT_SYMBOL(serio_unregister_child_port);
Linus Torvalds3c803e82005-06-27 17:49:45 -0700745
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746
747/*
748 * Serio driver operations
749 */
750
Greg Kroah-Hartman7048f5d2013-08-23 14:24:34 -0700751static ssize_t description_show(struct device_driver *drv, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752{
753 struct serio_driver *driver = to_serio_driver(drv);
754 return sprintf(buf, "%s\n", driver->description ? driver->description : "(none)");
755}
Greg Kroah-Hartman7048f5d2013-08-23 14:24:34 -0700756static DRIVER_ATTR_RO(description);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757
Greg Kroah-Hartman7048f5d2013-08-23 14:24:34 -0700758static ssize_t bind_mode_show(struct device_driver *drv, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759{
760 struct serio_driver *serio_drv = to_serio_driver(drv);
761 return sprintf(buf, "%s\n", serio_drv->manual_bind ? "manual" : "auto");
762}
763
Greg Kroah-Hartman7048f5d2013-08-23 14:24:34 -0700764static ssize_t bind_mode_store(struct device_driver *drv, const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765{
766 struct serio_driver *serio_drv = to_serio_driver(drv);
767 int retval;
768
769 retval = count;
770 if (!strncmp(buf, "manual", count)) {
Dmitry Torokhov7e044e02009-05-09 16:08:05 -0700771 serio_drv->manual_bind = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772 } else if (!strncmp(buf, "auto", count)) {
Dmitry Torokhov7e044e02009-05-09 16:08:05 -0700773 serio_drv->manual_bind = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774 } else {
775 retval = -EINVAL;
776 }
777
778 return retval;
779}
Greg Kroah-Hartman7048f5d2013-08-23 14:24:34 -0700780static DRIVER_ATTR_RW(bind_mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781
Greg Kroah-Hartman7048f5d2013-08-23 14:24:34 -0700782static struct attribute *serio_driver_attrs[] = {
783 &driver_attr_description.attr,
784 &driver_attr_bind_mode.attr,
785 NULL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786};
Greg Kroah-Hartman7048f5d2013-08-23 14:24:34 -0700787ATTRIBUTE_GROUPS(serio_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788
789static int serio_driver_probe(struct device *dev)
790{
791 struct serio *serio = to_serio_port(dev);
792 struct serio_driver *drv = to_serio_driver(dev->driver);
793
Linus Torvalds3c803e82005-06-27 17:49:45 -0700794 return serio_connect_driver(serio, drv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795}
796
797static int serio_driver_remove(struct device *dev)
798{
799 struct serio *serio = to_serio_port(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800
Linus Torvalds3c803e82005-06-27 17:49:45 -0700801 serio_disconnect_driver(serio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 return 0;
803}
804
Dmitry Torokhov82dd9ef2007-02-18 01:40:30 -0500805static void serio_cleanup(struct serio *serio)
806{
Dmitry Torokhov33143ea2007-06-29 01:06:35 -0400807 mutex_lock(&serio->drv_mutex);
Dmitry Torokhov82dd9ef2007-02-18 01:40:30 -0500808 if (serio->drv && serio->drv->cleanup)
809 serio->drv->cleanup(serio);
Dmitry Torokhov33143ea2007-06-29 01:06:35 -0400810 mutex_unlock(&serio->drv_mutex);
Dmitry Torokhov82dd9ef2007-02-18 01:40:30 -0500811}
812
813static void serio_shutdown(struct device *dev)
814{
815 struct serio *serio = to_serio_port(dev);
816
817 serio_cleanup(serio);
818}
819
Dmitry Torokhoved7b1f62006-11-23 23:34:49 -0500820static void serio_attach_driver(struct serio_driver *drv)
Randy Dunlap73b59a32006-07-19 01:14:55 -0400821{
822 int error;
823
Dmitry Torokhoved7b1f62006-11-23 23:34:49 -0500824 error = driver_attach(&drv->driver);
Randy Dunlap73b59a32006-07-19 01:14:55 -0400825 if (error)
Dmitry Torokhovcac91692010-01-05 17:56:04 -0800826 pr_warning("driver_attach() failed for %s with error %d\n",
827 drv->driver.name, error);
Randy Dunlap73b59a32006-07-19 01:14:55 -0400828}
829
Greg Kroah-Hartman4b315622007-01-15 11:50:02 -0800830int __serio_register_driver(struct serio_driver *drv, struct module *owner, const char *mod_name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831{
Dmitry Torokhov7e044e02009-05-09 16:08:05 -0700832 bool manual_bind = drv->manual_bind;
Dmitry Torokhoved7b1f62006-11-23 23:34:49 -0500833 int error;
834
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835 drv->driver.bus = &serio_bus;
Greg Kroah-Hartman4b315622007-01-15 11:50:02 -0800836 drv->driver.owner = owner;
837 drv->driver.mod_name = mod_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838
Dmitry Torokhoved7b1f62006-11-23 23:34:49 -0500839 /*
840 * Temporarily disable automatic binding because probing
841 * takes long time and we are better off doing it in kseriod
842 */
Dmitry Torokhov7e044e02009-05-09 16:08:05 -0700843 drv->manual_bind = true;
Dmitry Torokhoved7b1f62006-11-23 23:34:49 -0500844
845 error = driver_register(&drv->driver);
846 if (error) {
Dmitry Torokhovcac91692010-01-05 17:56:04 -0800847 pr_err("driver_register() failed for %s, error: %d\n",
Dmitry Torokhoved7b1f62006-11-23 23:34:49 -0500848 drv->driver.name, error);
849 return error;
850 }
851
852 /*
853 * Restore original bind mode and let kseriod bind the
854 * driver to free ports
855 */
856 if (!manual_bind) {
Dmitry Torokhov7e044e02009-05-09 16:08:05 -0700857 drv->manual_bind = false;
Dmitry Torokhoved7b1f62006-11-23 23:34:49 -0500858 error = serio_queue_event(drv, NULL, SERIO_ATTACH_DRIVER);
859 if (error) {
860 driver_unregister(&drv->driver);
861 return error;
862 }
863 }
864
865 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866}
Dmitry Torokhov89b09b92009-04-17 20:12:34 -0700867EXPORT_SYMBOL(__serio_register_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868
869void serio_unregister_driver(struct serio_driver *drv)
870{
871 struct serio *serio;
872
Arjan van de Venc4e32e92006-02-19 00:21:55 -0500873 mutex_lock(&serio_mutex);
Dmitry Torokhove8ef4342008-06-02 00:41:57 -0400874
Dmitry Torokhov7e044e02009-05-09 16:08:05 -0700875 drv->manual_bind = true; /* so serio_find_driver ignores it */
Dmitry Torokhove8ef4342008-06-02 00:41:57 -0400876 serio_remove_pending_events(drv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877
878start_over:
879 list_for_each_entry(serio, &serio_list, node) {
880 if (serio->drv == drv) {
881 serio_disconnect_port(serio);
882 serio_find_driver(serio);
883 /* we could've deleted some ports, restart */
884 goto start_over;
885 }
886 }
887
888 driver_unregister(&drv->driver);
Arjan van de Venc4e32e92006-02-19 00:21:55 -0500889 mutex_unlock(&serio_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890}
Dmitry Torokhov89b09b92009-04-17 20:12:34 -0700891EXPORT_SYMBOL(serio_unregister_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892
893static void serio_set_drv(struct serio *serio, struct serio_driver *drv)
894{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895 serio_pause_rx(serio);
896 serio->drv = drv;
897 serio_continue_rx(serio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898}
899
900static int serio_bus_match(struct device *dev, struct device_driver *drv)
901{
902 struct serio *serio = to_serio_port(dev);
903 struct serio_driver *serio_drv = to_serio_driver(drv);
904
905 if (serio->manual_bind || serio_drv->manual_bind)
906 return 0;
907
908 return serio_match_port(serio_drv->id_table, serio);
909}
910
Kay Sievers312c0042005-11-16 09:00:00 +0100911#define SERIO_ADD_UEVENT_VAR(fmt, val...) \
Dmitry Torokhovae87dff2005-06-30 00:48:34 -0500912 do { \
Kay Sievers7eff2e72007-08-14 15:15:12 +0200913 int err = add_uevent_var(env, fmt, val); \
Dmitry Torokhovae87dff2005-06-30 00:48:34 -0500914 if (err) \
915 return err; \
916 } while (0)
917
Kay Sievers7eff2e72007-08-14 15:15:12 +0200918static int serio_uevent(struct device *dev, struct kobj_uevent_env *env)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919{
920 struct serio *serio;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921
922 if (!dev)
923 return -ENODEV;
924
925 serio = to_serio_port(dev);
926
Kay Sievers312c0042005-11-16 09:00:00 +0100927 SERIO_ADD_UEVENT_VAR("SERIO_TYPE=%02x", serio->id.type);
928 SERIO_ADD_UEVENT_VAR("SERIO_PROTO=%02x", serio->id.proto);
929 SERIO_ADD_UEVENT_VAR("SERIO_ID=%02x", serio->id.id);
930 SERIO_ADD_UEVENT_VAR("SERIO_EXTRA=%02x", serio->id.extra);
Hans de Goede0456c662014-04-19 20:39:35 -0700931
Kay Sievers312c0042005-11-16 09:00:00 +0100932 SERIO_ADD_UEVENT_VAR("MODALIAS=serio:ty%02Xpr%02Xid%02Xex%02X",
Dmitry Torokhovae87dff2005-06-30 00:48:34 -0500933 serio->id.type, serio->id.proto, serio->id.id, serio->id.extra);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934
Hans de Goede0456c662014-04-19 20:39:35 -0700935 if (serio->firmware_id[0])
936 SERIO_ADD_UEVENT_VAR("SERIO_FIRMWARE_ID=%s",
937 serio->firmware_id);
938
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939 return 0;
940}
Kay Sievers312c0042005-11-16 09:00:00 +0100941#undef SERIO_ADD_UEVENT_VAR
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942
Dmitry Torokhov82dd9ef2007-02-18 01:40:30 -0500943#ifdef CONFIG_PM
Dmitry Torokhov633aae22009-07-22 21:51:36 -0700944static int serio_suspend(struct device *dev)
Dmitry Torokhov82dd9ef2007-02-18 01:40:30 -0500945{
Dmitry Torokhov7e044e02009-05-09 16:08:05 -0700946 struct serio *serio = to_serio_port(dev);
Dmitry Torokhov82dd9ef2007-02-18 01:40:30 -0500947
Dmitry Torokhov633aae22009-07-22 21:51:36 -0700948 serio_cleanup(serio);
Dmitry Torokhov82dd9ef2007-02-18 01:40:30 -0500949
950 return 0;
951}
952
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953static int serio_resume(struct device *dev)
954{
Dmitry Torokhov7e044e02009-05-09 16:08:05 -0700955 struct serio *serio = to_serio_port(dev);
956
Shaohua Li6aabcdf2008-07-03 10:45:38 -0400957 /*
958 * Driver reconnect can take a while, so better let kseriod
959 * deal with it.
960 */
Dmitry Torokhov633aae22009-07-22 21:51:36 -0700961 serio_queue_event(serio, NULL, SERIO_RECONNECT_PORT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962
963 return 0;
964}
Dmitry Torokhov633aae22009-07-22 21:51:36 -0700965
966static const struct dev_pm_ops serio_pm_ops = {
967 .suspend = serio_suspend,
968 .resume = serio_resume,
969 .poweroff = serio_suspend,
970 .restore = serio_resume,
971};
Dmitry Torokhov82dd9ef2007-02-18 01:40:30 -0500972#endif /* CONFIG_PM */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973
Arjan van de Venc4e32e92006-02-19 00:21:55 -0500974/* called from serio_driver->connect/disconnect methods under serio_mutex */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975int serio_open(struct serio *serio, struct serio_driver *drv)
976{
977 serio_set_drv(serio, drv);
978
979 if (serio->open && serio->open(serio)) {
980 serio_set_drv(serio, NULL);
981 return -1;
982 }
983 return 0;
984}
Dmitry Torokhov89b09b92009-04-17 20:12:34 -0700985EXPORT_SYMBOL(serio_open);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986
Arjan van de Venc4e32e92006-02-19 00:21:55 -0500987/* called from serio_driver->connect/disconnect methods under serio_mutex */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988void serio_close(struct serio *serio)
989{
990 if (serio->close)
991 serio->close(serio);
992
993 serio_set_drv(serio, NULL);
994}
Dmitry Torokhov89b09b92009-04-17 20:12:34 -0700995EXPORT_SYMBOL(serio_close);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996
997irqreturn_t serio_interrupt(struct serio *serio,
David Howells7d12e782006-10-05 14:55:46 +0100998 unsigned char data, unsigned int dfl)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999{
1000 unsigned long flags;
1001 irqreturn_t ret = IRQ_NONE;
1002
1003 spin_lock_irqsave(&serio->lock, flags);
1004
1005 if (likely(serio->drv)) {
David Howells7d12e782006-10-05 14:55:46 +01001006 ret = serio->drv->interrupt(serio, data, dfl);
Dmitry Torokhovddf1ffb2010-01-05 17:56:04 -08001007 } else if (!dfl && device_is_registered(&serio->dev)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008 serio_rescan(serio);
1009 ret = IRQ_HANDLED;
1010 }
1011
1012 spin_unlock_irqrestore(&serio->lock, flags);
1013
1014 return ret;
1015}
Dmitry Torokhov89b09b92009-04-17 20:12:34 -07001016EXPORT_SYMBOL(serio_interrupt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017
Stephen Chandler Paule1443d22015-07-15 10:20:17 -07001018struct bus_type serio_bus = {
Marton Nemeth1ea2a692006-11-02 23:27:21 -05001019 .name = "serio",
Greg Kroah-Hartman7048f5d2013-08-23 14:24:34 -07001020 .drv_groups = serio_driver_groups,
Marton Nemeth1ea2a692006-11-02 23:27:21 -05001021 .match = serio_bus_match,
1022 .uevent = serio_uevent,
1023 .probe = serio_driver_probe,
1024 .remove = serio_driver_remove,
Dmitry Torokhov82dd9ef2007-02-18 01:40:30 -05001025 .shutdown = serio_shutdown,
1026#ifdef CONFIG_PM
Dmitry Torokhov633aae22009-07-22 21:51:36 -07001027 .pm = &serio_pm_ops,
Dmitry Torokhov82dd9ef2007-02-18 01:40:30 -05001028#endif
Marton Nemeth1ea2a692006-11-02 23:27:21 -05001029};
Stephen Chandler Paule1443d22015-07-15 10:20:17 -07001030EXPORT_SYMBOL(serio_bus);
Marton Nemeth1ea2a692006-11-02 23:27:21 -05001031
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032static int __init serio_init(void)
1033{
Randy Dunlap73b59a32006-07-19 01:14:55 -04001034 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035
Randy Dunlap73b59a32006-07-19 01:14:55 -04001036 error = bus_register(&serio_bus);
1037 if (error) {
Dmitry Torokhovcac91692010-01-05 17:56:04 -08001038 pr_err("Failed to register serio bus, error: %d\n", error);
Randy Dunlap73b59a32006-07-19 01:14:55 -04001039 return error;
1040 }
1041
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042 return 0;
1043}
1044
1045static void __exit serio_exit(void)
1046{
1047 bus_unregister(&serio_bus);
Dmitry Torokhov8ee294c2010-11-15 01:39:57 -08001048
1049 /*
1050 * There should not be any outstanding events but work may
1051 * still be scheduled so simply cancel it.
1052 */
1053 cancel_work_sync(&serio_event_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054}
1055
Dmitry Torokhov51c38f92006-02-19 00:22:51 -05001056subsys_initcall(serio_init);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057module_exit(serio_exit);