blob: 71ef5d65a0c63a493e8252f2ba2639c33c711b13 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Raw serio device providing access to a raw byte stream from underlying
3 * serio port. Closely emulates behavior of pre-2.6 /dev/psaux device
4 *
5 * Copyright (c) 2004 Dmitry Torokhov
6 *
7 * This program is free software; you can redistribute it and/or modify it
8 * under the terms of the GNU General Public License version 2 as published by
9 * the Free Software Foundation.
10 */
11
Dmitry Torokhovba538cd2011-10-10 18:30:03 -070012#include <linux/kref.h>
Alexey Dobriyand43c36d2009-10-07 17:09:06 +040013#include <linux/sched.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <linux/slab.h>
15#include <linux/poll.h>
16#include <linux/module.h>
17#include <linux/serio.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include <linux/major.h>
19#include <linux/device.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include <linux/miscdevice.h>
21#include <linux/wait.h>
Arjan van de Venc4e32e92006-02-19 00:21:55 -050022#include <linux/mutex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023
24#define DRIVER_DESC "Raw serio driver"
25
26MODULE_AUTHOR("Dmitry Torokhov <dtor@mail.ru>");
27MODULE_DESCRIPTION(DRIVER_DESC);
28MODULE_LICENSE("GPL");
29
30#define SERIO_RAW_QUEUE_LEN 64
31struct serio_raw {
32 unsigned char queue[SERIO_RAW_QUEUE_LEN];
33 unsigned int tail, head;
34
35 char name[16];
Dmitry Torokhovba538cd2011-10-10 18:30:03 -070036 struct kref kref;
Linus Torvalds1da177e2005-04-16 15:20:36 -070037 struct serio *serio;
38 struct miscdevice dev;
39 wait_queue_head_t wait;
Dmitry Torokhov7c5bbb22011-10-10 18:30:14 -070040 struct list_head client_list;
Linus Torvalds1da177e2005-04-16 15:20:36 -070041 struct list_head node;
Dmitry Torokhov85f5b352011-10-10 18:31:04 -070042 bool dead;
Linus Torvalds1da177e2005-04-16 15:20:36 -070043};
44
Dmitry Torokhov7c5bbb22011-10-10 18:30:14 -070045struct serio_raw_client {
Linus Torvalds1da177e2005-04-16 15:20:36 -070046 struct fasync_struct *fasync;
47 struct serio_raw *serio_raw;
48 struct list_head node;
49};
50
Arjan van de Venc4e32e92006-02-19 00:21:55 -050051static DEFINE_MUTEX(serio_raw_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070052static LIST_HEAD(serio_raw_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -070053
54/*********************************************************************
55 * Interface with userspace (file operations) *
56 *********************************************************************/
57
58static int serio_raw_fasync(int fd, struct file *file, int on)
59{
Dmitry Torokhov7c5bbb22011-10-10 18:30:14 -070060 struct serio_raw_client *client = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -070061
Dmitry Torokhov7c5bbb22011-10-10 18:30:14 -070062 return fasync_helper(fd, file, on, &client->fasync);
Linus Torvalds1da177e2005-04-16 15:20:36 -070063}
64
65static struct serio_raw *serio_raw_locate(int minor)
66{
67 struct serio_raw *serio_raw;
68
69 list_for_each_entry(serio_raw, &serio_raw_list, node) {
70 if (serio_raw->dev.minor == minor)
71 return serio_raw;
72 }
73
74 return NULL;
75}
76
77static int serio_raw_open(struct inode *inode, struct file *file)
78{
79 struct serio_raw *serio_raw;
Dmitry Torokhov7c5bbb22011-10-10 18:30:14 -070080 struct serio_raw_client *client;
81 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -070082
Arjan van de Venc4e32e92006-02-19 00:21:55 -050083 retval = mutex_lock_interruptible(&serio_raw_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070084 if (retval)
Thadeu Lima de Souza Cascardo77554b42010-03-09 20:38:47 -080085 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -070086
Thadeu Lima de Souza Cascardo77554b42010-03-09 20:38:47 -080087 serio_raw = serio_raw_locate(iminor(inode));
88 if (!serio_raw) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070089 retval = -ENODEV;
90 goto out;
91 }
92
Dmitry Torokhov85f5b352011-10-10 18:31:04 -070093 if (serio_raw->dead) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070094 retval = -ENODEV;
95 goto out;
96 }
97
Dmitry Torokhov7c5bbb22011-10-10 18:30:14 -070098 client = kzalloc(sizeof(struct serio_raw_client), GFP_KERNEL);
99 if (!client) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100 retval = -ENOMEM;
101 goto out;
102 }
103
Dmitry Torokhov7c5bbb22011-10-10 18:30:14 -0700104 client->serio_raw = serio_raw;
105 file->private_data = client;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106
Dmitry Torokhovba538cd2011-10-10 18:30:03 -0700107 kref_get(&serio_raw->kref);
Dmitry Torokhov843e7842011-10-10 18:30:26 -0700108
109 serio_pause_rx(serio_raw->serio);
Dmitry Torokhov7c5bbb22011-10-10 18:30:14 -0700110 list_add_tail(&client->node, &serio_raw->client_list);
Dmitry Torokhov843e7842011-10-10 18:30:26 -0700111 serio_continue_rx(serio_raw->serio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112
113out:
Arjan van de Venc4e32e92006-02-19 00:21:55 -0500114 mutex_unlock(&serio_raw_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 return retval;
116}
117
Dmitry Torokhov550eca72011-10-10 18:31:39 -0700118static void serio_raw_free(struct kref *kref)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119{
Dmitry Torokhovba538cd2011-10-10 18:30:03 -0700120 struct serio_raw *serio_raw =
121 container_of(kref, struct serio_raw, kref);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122
Dmitry Torokhov85f5b352011-10-10 18:31:04 -0700123 put_device(&serio_raw->serio->dev);
Dmitry Torokhovba538cd2011-10-10 18:30:03 -0700124 kfree(serio_raw);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125}
126
127static int serio_raw_release(struct inode *inode, struct file *file)
128{
Dmitry Torokhov7c5bbb22011-10-10 18:30:14 -0700129 struct serio_raw_client *client = file->private_data;
130 struct serio_raw *serio_raw = client->serio_raw;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131
Dmitry Torokhov550eca72011-10-10 18:31:39 -0700132 serio_pause_rx(serio_raw->serio);
133 list_del(&client->node);
134 serio_continue_rx(serio_raw->serio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135
Dmitry Torokhov550eca72011-10-10 18:31:39 -0700136 kfree(client);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137
Dmitry Torokhov550eca72011-10-10 18:31:39 -0700138 kref_put(&serio_raw->kref, serio_raw_free);
139
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 return 0;
141}
142
Dmitry Torokhov8c31eb02011-10-10 18:30:36 -0700143static bool serio_raw_fetch_byte(struct serio_raw *serio_raw, char *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144{
Dmitry Torokhov8c31eb02011-10-10 18:30:36 -0700145 bool empty;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146
Dmitry Torokhov843e7842011-10-10 18:30:26 -0700147 serio_pause_rx(serio_raw->serio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148
149 empty = serio_raw->head == serio_raw->tail;
150 if (!empty) {
151 *c = serio_raw->queue[serio_raw->tail];
152 serio_raw->tail = (serio_raw->tail + 1) % SERIO_RAW_QUEUE_LEN;
153 }
154
Dmitry Torokhov843e7842011-10-10 18:30:26 -0700155 serio_continue_rx(serio_raw->serio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156
157 return !empty;
158}
159
Dmitry Torokhov15a564d2011-10-10 18:30:56 -0700160static ssize_t serio_raw_read(struct file *file, char __user *buffer,
161 size_t count, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162{
Dmitry Torokhov7c5bbb22011-10-10 18:30:14 -0700163 struct serio_raw_client *client = file->private_data;
164 struct serio_raw *serio_raw = client->serio_raw;
Andrew Morton4f179f72007-07-10 00:38:31 -0400165 char uninitialized_var(c);
Che-Liang Chiou7a0a27d2012-02-01 09:25:35 -0800166 ssize_t read = 0;
Dmitry Torokhov46f49b72012-05-02 00:13:38 -0700167 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168
Dmitry Torokhov46f49b72012-05-02 00:13:38 -0700169 for (;;) {
Dmitry Torokhov486c8ab2012-04-20 22:33:08 -0700170 if (serio_raw->dead)
171 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172
Dmitry Torokhov486c8ab2012-04-20 22:33:08 -0700173 if (serio_raw->head == serio_raw->tail &&
174 (file->f_flags & O_NONBLOCK))
175 return -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176
Dmitry Torokhov486c8ab2012-04-20 22:33:08 -0700177 if (count == 0)
Che-Liang Chiou7a0a27d2012-02-01 09:25:35 -0800178 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179
Dmitry Torokhov486c8ab2012-04-20 22:33:08 -0700180 while (read < count && serio_raw_fetch_byte(serio_raw, &c)) {
Dmitry Torokhov46f49b72012-05-02 00:13:38 -0700181 if (put_user(c, buffer++))
182 return -EFAULT;
Dmitry Torokhov486c8ab2012-04-20 22:33:08 -0700183 read++;
184 }
185
186 if (read)
187 break;
188
Dmitry Torokhov46f49b72012-05-02 00:13:38 -0700189 if (!(file->f_flags & O_NONBLOCK)) {
Dmitry Torokhov486c8ab2012-04-20 22:33:08 -0700190 error = wait_event_interruptible(serio_raw->wait,
191 serio_raw->head != serio_raw->tail ||
192 serio_raw->dead);
Dmitry Torokhov46f49b72012-05-02 00:13:38 -0700193 if (error)
194 return error;
195 }
196 }
Dmitry Torokhov486c8ab2012-04-20 22:33:08 -0700197
Dmitry Torokhov46f49b72012-05-02 00:13:38 -0700198 return read;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199}
200
Dmitry Torokhov15a564d2011-10-10 18:30:56 -0700201static ssize_t serio_raw_write(struct file *file, const char __user *buffer,
202 size_t count, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203{
Dmitry Torokhov7c5bbb22011-10-10 18:30:14 -0700204 struct serio_raw_client *client = file->private_data;
205 struct serio_raw *serio_raw = client->serio_raw;
Dmitry Torokhov46f49b72012-05-02 00:13:38 -0700206 int retval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 unsigned char c;
208
Arjan van de Venc4e32e92006-02-19 00:21:55 -0500209 retval = mutex_lock_interruptible(&serio_raw_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 if (retval)
211 return retval;
212
Dmitry Torokhov85f5b352011-10-10 18:31:04 -0700213 if (serio_raw->dead) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 retval = -ENODEV;
215 goto out;
216 }
217
218 if (count > 32)
219 count = 32;
220
221 while (count--) {
222 if (get_user(c, buffer++)) {
223 retval = -EFAULT;
224 goto out;
225 }
Dmitry Torokhov46f49b72012-05-02 00:13:38 -0700226
Dmitry Torokhov7c5bbb22011-10-10 18:30:14 -0700227 if (serio_write(serio_raw->serio, c)) {
Dmitry Torokhov46f49b72012-05-02 00:13:38 -0700228 /* Either signal error or partial write */
229 if (retval == 0)
230 retval = -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 goto out;
232 }
Dmitry Torokhov46f49b72012-05-02 00:13:38 -0700233
234 retval++;
Che-Liang Chioud89c9bc2012-01-10 00:45:12 -0800235 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236
237out:
Arjan van de Venc4e32e92006-02-19 00:21:55 -0500238 mutex_unlock(&serio_raw_mutex);
Dmitry Torokhov46f49b72012-05-02 00:13:38 -0700239 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240}
241
242static unsigned int serio_raw_poll(struct file *file, poll_table *wait)
243{
Dmitry Torokhov7c5bbb22011-10-10 18:30:14 -0700244 struct serio_raw_client *client = file->private_data;
245 struct serio_raw *serio_raw = client->serio_raw;
Dmitry Torokhov8c1c10d2011-10-10 18:31:30 -0700246 unsigned int mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247
Dmitry Torokhov7c5bbb22011-10-10 18:30:14 -0700248 poll_wait(file, &serio_raw->wait, wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249
Dmitry Torokhov8c1c10d2011-10-10 18:31:30 -0700250 mask = serio_raw->dead ? POLLHUP | POLLERR : POLLOUT | POLLWRNORM;
Dmitry Torokhov7c5bbb22011-10-10 18:30:14 -0700251 if (serio_raw->head != serio_raw->tail)
Dmitry Torokhov0c62fbf2012-01-10 00:45:12 -0800252 mask |= POLLIN | POLLRDNORM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253
Dmitry Torokhov0c62fbf2012-01-10 00:45:12 -0800254 return mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255}
256
Arjan van de Ven2b8693c2007-02-12 00:55:32 -0800257static const struct file_operations serio_raw_fops = {
Dmitry Torokhov7c5bbb22011-10-10 18:30:14 -0700258 .owner = THIS_MODULE,
259 .open = serio_raw_open,
260 .release = serio_raw_release,
261 .read = serio_raw_read,
262 .write = serio_raw_write,
263 .poll = serio_raw_poll,
264 .fasync = serio_raw_fasync,
265 .llseek = noop_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266};
267
268
269/*********************************************************************
Dmitry Torokhov15a564d2011-10-10 18:30:56 -0700270 * Interface with serio port *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 *********************************************************************/
272
273static irqreturn_t serio_raw_interrupt(struct serio *serio, unsigned char data,
David Howells7d12e782006-10-05 14:55:46 +0100274 unsigned int dfl)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275{
276 struct serio_raw *serio_raw = serio_get_drvdata(serio);
Dmitry Torokhov7c5bbb22011-10-10 18:30:14 -0700277 struct serio_raw_client *client;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 unsigned int head = serio_raw->head;
279
Dmitry Torokhov7c5bbb22011-10-10 18:30:14 -0700280 /* we are holding serio->lock here so we are protected */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 serio_raw->queue[head] = data;
282 head = (head + 1) % SERIO_RAW_QUEUE_LEN;
283 if (likely(head != serio_raw->tail)) {
284 serio_raw->head = head;
Dmitry Torokhov7c5bbb22011-10-10 18:30:14 -0700285 list_for_each_entry(client, &serio_raw->client_list, node)
286 kill_fasync(&client->fasync, SIGIO, POLL_IN);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 wake_up_interruptible(&serio_raw->wait);
288 }
289
290 return IRQ_HANDLED;
291}
292
293static int serio_raw_connect(struct serio *serio, struct serio_driver *drv)
294{
Aniroop Mathur939ffb12014-12-03 14:27:42 -0800295 static atomic_t serio_raw_no = ATOMIC_INIT(-1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 struct serio_raw *serio_raw;
297 int err;
298
Dmitry Torokhov15a564d2011-10-10 18:30:56 -0700299 serio_raw = kzalloc(sizeof(struct serio_raw), GFP_KERNEL);
300 if (!serio_raw) {
Dmitry Torokhov8d928472011-10-10 18:30:46 -0700301 dev_dbg(&serio->dev, "can't allocate memory for a device\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302 return -ENOMEM;
303 }
304
Dmitry Torokhov15a564d2011-10-10 18:30:56 -0700305 snprintf(serio_raw->name, sizeof(serio_raw->name),
Aniroop Mathur939ffb12014-12-03 14:27:42 -0800306 "serio_raw%ld", (long)atomic_inc_return(&serio_raw_no));
Dmitry Torokhovba538cd2011-10-10 18:30:03 -0700307 kref_init(&serio_raw->kref);
Dmitry Torokhov7c5bbb22011-10-10 18:30:14 -0700308 INIT_LIST_HEAD(&serio_raw->client_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 init_waitqueue_head(&serio_raw->wait);
310
Dmitry Torokhov85f5b352011-10-10 18:31:04 -0700311 serio_raw->serio = serio;
312 get_device(&serio->dev);
313
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 serio_set_drvdata(serio, serio_raw);
315
316 err = serio_open(serio, drv);
317 if (err)
Dmitry Torokhov550eca72011-10-10 18:31:39 -0700318 goto err_free;
319
320 err = mutex_lock_killable(&serio_raw_mutex);
321 if (err)
322 goto err_close;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323
324 list_add_tail(&serio_raw->node, &serio_raw_list);
Dmitry Torokhov550eca72011-10-10 18:31:39 -0700325 mutex_unlock(&serio_raw_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326
327 serio_raw->dev.minor = PSMOUSE_MINOR;
328 serio_raw->dev.name = serio_raw->name;
Greg Kroah-Hartman94fbcde2006-07-27 16:16:04 -0700329 serio_raw->dev.parent = &serio->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330 serio_raw->dev.fops = &serio_raw_fops;
331
332 err = misc_register(&serio_raw->dev);
333 if (err) {
334 serio_raw->dev.minor = MISC_DYNAMIC_MINOR;
335 err = misc_register(&serio_raw->dev);
336 }
337
338 if (err) {
Dmitry Torokhov8d928472011-10-10 18:30:46 -0700339 dev_err(&serio->dev,
340 "failed to register raw access device for %s\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 serio->phys);
Dmitry Torokhov550eca72011-10-10 18:31:39 -0700342 goto err_unlink;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 }
344
Dmitry Torokhov8d928472011-10-10 18:30:46 -0700345 dev_info(&serio->dev, "raw access enabled on %s (%s, minor %d)\n",
346 serio->phys, serio_raw->name, serio_raw->dev.minor);
Dmitry Torokhov550eca72011-10-10 18:31:39 -0700347 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348
Dmitry Torokhov550eca72011-10-10 18:31:39 -0700349err_unlink:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 list_del_init(&serio_raw->node);
Dmitry Torokhov550eca72011-10-10 18:31:39 -0700351err_close:
352 serio_close(serio);
353err_free:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354 serio_set_drvdata(serio, NULL);
Dmitry Torokhov550eca72011-10-10 18:31:39 -0700355 kref_put(&serio_raw->kref, serio_raw_free);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356 return err;
357}
358
359static int serio_raw_reconnect(struct serio *serio)
360{
361 struct serio_raw *serio_raw = serio_get_drvdata(serio);
362 struct serio_driver *drv = serio->drv;
363
364 if (!drv || !serio_raw) {
Dmitry Torokhov8d928472011-10-10 18:30:46 -0700365 dev_dbg(&serio->dev,
366 "reconnect request, but serio is disconnected, ignoring...\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 return -1;
368 }
369
370 /*
371 * Nothing needs to be done here, we just need this method to
372 * keep the same device.
373 */
374 return 0;
375}
376
Dmitry Torokhov8c1c10d2011-10-10 18:31:30 -0700377/*
378 * Wake up users waiting for IO so they can disconnect from
379 * dead device.
380 */
381static void serio_raw_hangup(struct serio_raw *serio_raw)
382{
383 struct serio_raw_client *client;
384
385 serio_pause_rx(serio_raw->serio);
386 list_for_each_entry(client, &serio_raw->client_list, node)
387 kill_fasync(&client->fasync, SIGIO, POLL_HUP);
388 serio_continue_rx(serio_raw->serio);
389
390 wake_up_interruptible(&serio_raw->wait);
391}
392
393
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394static void serio_raw_disconnect(struct serio *serio)
395{
Dmitry Torokhov8c1c10d2011-10-10 18:31:30 -0700396 struct serio_raw *serio_raw = serio_get_drvdata(serio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397
Dmitry Torokhov550eca72011-10-10 18:31:39 -0700398 misc_deregister(&serio_raw->dev);
399
Arjan van de Venc4e32e92006-02-19 00:21:55 -0500400 mutex_lock(&serio_raw_mutex);
Dmitry Torokhov550eca72011-10-10 18:31:39 -0700401 serio_raw->dead = true;
402 list_del_init(&serio_raw->node);
403 mutex_unlock(&serio_raw_mutex);
404
405 serio_raw_hangup(serio_raw);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 serio_close(serio);
Dmitry Torokhov550eca72011-10-10 18:31:39 -0700408 kref_put(&serio_raw->kref, serio_raw_free);
Dmitry Torokhov8c1c10d2011-10-10 18:31:30 -0700409
410 serio_set_drvdata(serio, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411}
412
413static struct serio_device_id serio_raw_serio_ids[] = {
414 {
415 .type = SERIO_8042,
416 .proto = SERIO_ANY,
417 .id = SERIO_ANY,
418 .extra = SERIO_ANY,
419 },
Niels de Vosd19497e2008-09-04 22:20:11 -0400420 {
421 .type = SERIO_8042_XL,
422 .proto = SERIO_ANY,
423 .id = SERIO_ANY,
424 .extra = SERIO_ANY,
425 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 { 0 }
427};
428
429MODULE_DEVICE_TABLE(serio, serio_raw_serio_ids);
430
431static struct serio_driver serio_raw_drv = {
432 .driver = {
433 .name = "serio_raw",
434 },
435 .description = DRIVER_DESC,
436 .id_table = serio_raw_serio_ids,
437 .interrupt = serio_raw_interrupt,
438 .connect = serio_raw_connect,
439 .reconnect = serio_raw_reconnect,
440 .disconnect = serio_raw_disconnect,
Dmitry Torokhov8c31eb02011-10-10 18:30:36 -0700441 .manual_bind = true,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442};
443
Axel Lin65ac9f72012-04-03 23:50:17 -0700444module_serio_driver(serio_raw_drv);