blob: 59df2e7317a3c8eec1c52e2a89f53a551a0e0224 [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>
18#include <linux/init.h>
19#include <linux/major.h>
20#include <linux/device.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include <linux/miscdevice.h>
22#include <linux/wait.h>
Arjan van de Venc4e32e92006-02-19 00:21:55 -050023#include <linux/mutex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024
25#define DRIVER_DESC "Raw serio driver"
26
27MODULE_AUTHOR("Dmitry Torokhov <dtor@mail.ru>");
28MODULE_DESCRIPTION(DRIVER_DESC);
29MODULE_LICENSE("GPL");
30
31#define SERIO_RAW_QUEUE_LEN 64
32struct serio_raw {
33 unsigned char queue[SERIO_RAW_QUEUE_LEN];
34 unsigned int tail, head;
35
36 char name[16];
Dmitry Torokhovba538cd2011-10-10 18:30:03 -070037 struct kref kref;
Linus Torvalds1da177e2005-04-16 15:20:36 -070038 struct serio *serio;
39 struct miscdevice dev;
40 wait_queue_head_t wait;
Dmitry Torokhov7c5bbb22011-10-10 18:30:14 -070041 struct list_head client_list;
Linus Torvalds1da177e2005-04-16 15:20:36 -070042 struct list_head node;
Dmitry Torokhov85f5b352011-10-10 18:31:04 -070043 bool dead;
Linus Torvalds1da177e2005-04-16 15:20:36 -070044};
45
Dmitry Torokhov7c5bbb22011-10-10 18:30:14 -070046struct serio_raw_client {
Linus Torvalds1da177e2005-04-16 15:20:36 -070047 struct fasync_struct *fasync;
48 struct serio_raw *serio_raw;
49 struct list_head node;
50};
51
Arjan van de Venc4e32e92006-02-19 00:21:55 -050052static DEFINE_MUTEX(serio_raw_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070053static LIST_HEAD(serio_raw_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -070054
55/*********************************************************************
56 * Interface with userspace (file operations) *
57 *********************************************************************/
58
59static int serio_raw_fasync(int fd, struct file *file, int on)
60{
Dmitry Torokhov7c5bbb22011-10-10 18:30:14 -070061 struct serio_raw_client *client = file->private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -070062
Dmitry Torokhov7c5bbb22011-10-10 18:30:14 -070063 return fasync_helper(fd, file, on, &client->fasync);
Linus Torvalds1da177e2005-04-16 15:20:36 -070064}
65
66static struct serio_raw *serio_raw_locate(int minor)
67{
68 struct serio_raw *serio_raw;
69
70 list_for_each_entry(serio_raw, &serio_raw_list, node) {
71 if (serio_raw->dev.minor == minor)
72 return serio_raw;
73 }
74
75 return NULL;
76}
77
78static int serio_raw_open(struct inode *inode, struct file *file)
79{
80 struct serio_raw *serio_raw;
Dmitry Torokhov7c5bbb22011-10-10 18:30:14 -070081 struct serio_raw_client *client;
82 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -070083
Arjan van de Venc4e32e92006-02-19 00:21:55 -050084 retval = mutex_lock_interruptible(&serio_raw_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070085 if (retval)
Thadeu Lima de Souza Cascardo77554b42010-03-09 20:38:47 -080086 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -070087
Thadeu Lima de Souza Cascardo77554b42010-03-09 20:38:47 -080088 serio_raw = serio_raw_locate(iminor(inode));
89 if (!serio_raw) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070090 retval = -ENODEV;
91 goto out;
92 }
93
Dmitry Torokhov85f5b352011-10-10 18:31:04 -070094 if (serio_raw->dead) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070095 retval = -ENODEV;
96 goto out;
97 }
98
Dmitry Torokhov7c5bbb22011-10-10 18:30:14 -070099 client = kzalloc(sizeof(struct serio_raw_client), GFP_KERNEL);
100 if (!client) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101 retval = -ENOMEM;
102 goto out;
103 }
104
Dmitry Torokhov7c5bbb22011-10-10 18:30:14 -0700105 client->serio_raw = serio_raw;
106 file->private_data = client;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107
Dmitry Torokhovba538cd2011-10-10 18:30:03 -0700108 kref_get(&serio_raw->kref);
Dmitry Torokhov843e7842011-10-10 18:30:26 -0700109
110 serio_pause_rx(serio_raw->serio);
Dmitry Torokhov7c5bbb22011-10-10 18:30:14 -0700111 list_add_tail(&client->node, &serio_raw->client_list);
Dmitry Torokhov843e7842011-10-10 18:30:26 -0700112 serio_continue_rx(serio_raw->serio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113
114out:
Arjan van de Venc4e32e92006-02-19 00:21:55 -0500115 mutex_unlock(&serio_raw_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 return retval;
117}
118
Dmitry Torokhov550eca72011-10-10 18:31:39 -0700119static void serio_raw_free(struct kref *kref)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120{
Dmitry Torokhovba538cd2011-10-10 18:30:03 -0700121 struct serio_raw *serio_raw =
122 container_of(kref, struct serio_raw, kref);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123
Dmitry Torokhov85f5b352011-10-10 18:31:04 -0700124 put_device(&serio_raw->serio->dev);
Dmitry Torokhovba538cd2011-10-10 18:30:03 -0700125 kfree(serio_raw);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126}
127
128static int serio_raw_release(struct inode *inode, struct file *file)
129{
Dmitry Torokhov7c5bbb22011-10-10 18:30:14 -0700130 struct serio_raw_client *client = file->private_data;
131 struct serio_raw *serio_raw = client->serio_raw;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132
Dmitry Torokhov550eca72011-10-10 18:31:39 -0700133 serio_pause_rx(serio_raw->serio);
134 list_del(&client->node);
135 serio_continue_rx(serio_raw->serio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136
Dmitry Torokhov550eca72011-10-10 18:31:39 -0700137 kfree(client);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138
Dmitry Torokhov550eca72011-10-10 18:31:39 -0700139 kref_put(&serio_raw->kref, serio_raw_free);
140
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141 return 0;
142}
143
Dmitry Torokhov8c31eb02011-10-10 18:30:36 -0700144static bool serio_raw_fetch_byte(struct serio_raw *serio_raw, char *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145{
Dmitry Torokhov8c31eb02011-10-10 18:30:36 -0700146 bool empty;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147
Dmitry Torokhov843e7842011-10-10 18:30:26 -0700148 serio_pause_rx(serio_raw->serio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149
150 empty = serio_raw->head == serio_raw->tail;
151 if (!empty) {
152 *c = serio_raw->queue[serio_raw->tail];
153 serio_raw->tail = (serio_raw->tail + 1) % SERIO_RAW_QUEUE_LEN;
154 }
155
Dmitry Torokhov843e7842011-10-10 18:30:26 -0700156 serio_continue_rx(serio_raw->serio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157
158 return !empty;
159}
160
Dmitry Torokhov15a564d2011-10-10 18:30:56 -0700161static ssize_t serio_raw_read(struct file *file, char __user *buffer,
162 size_t count, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163{
Dmitry Torokhov7c5bbb22011-10-10 18:30:14 -0700164 struct serio_raw_client *client = file->private_data;
165 struct serio_raw *serio_raw = client->serio_raw;
Andrew Morton4f179f72007-07-10 00:38:31 -0400166 char uninitialized_var(c);
Che-Liang Chiou7a0a27d2012-02-01 09:25:35 -0800167 ssize_t read = 0;
Dmitry Torokhov46f49b72012-05-02 00:13:38 -0700168 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169
Dmitry Torokhov46f49b72012-05-02 00:13:38 -0700170 for (;;) {
Dmitry Torokhov486c8ab2012-04-20 22:33:08 -0700171 if (serio_raw->dead)
172 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173
Dmitry Torokhov486c8ab2012-04-20 22:33:08 -0700174 if (serio_raw->head == serio_raw->tail &&
175 (file->f_flags & O_NONBLOCK))
176 return -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177
Dmitry Torokhov486c8ab2012-04-20 22:33:08 -0700178 if (count == 0)
Che-Liang Chiou7a0a27d2012-02-01 09:25:35 -0800179 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180
Dmitry Torokhov486c8ab2012-04-20 22:33:08 -0700181 while (read < count && serio_raw_fetch_byte(serio_raw, &c)) {
Dmitry Torokhov46f49b72012-05-02 00:13:38 -0700182 if (put_user(c, buffer++))
183 return -EFAULT;
Dmitry Torokhov486c8ab2012-04-20 22:33:08 -0700184 read++;
185 }
186
187 if (read)
188 break;
189
Dmitry Torokhov46f49b72012-05-02 00:13:38 -0700190 if (!(file->f_flags & O_NONBLOCK)) {
Dmitry Torokhov486c8ab2012-04-20 22:33:08 -0700191 error = wait_event_interruptible(serio_raw->wait,
192 serio_raw->head != serio_raw->tail ||
193 serio_raw->dead);
Dmitry Torokhov46f49b72012-05-02 00:13:38 -0700194 if (error)
195 return error;
196 }
197 }
Dmitry Torokhov486c8ab2012-04-20 22:33:08 -0700198
Dmitry Torokhov46f49b72012-05-02 00:13:38 -0700199 return read;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200}
201
Dmitry Torokhov15a564d2011-10-10 18:30:56 -0700202static ssize_t serio_raw_write(struct file *file, const char __user *buffer,
203 size_t count, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204{
Dmitry Torokhov7c5bbb22011-10-10 18:30:14 -0700205 struct serio_raw_client *client = file->private_data;
206 struct serio_raw *serio_raw = client->serio_raw;
Dmitry Torokhov46f49b72012-05-02 00:13:38 -0700207 int retval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 unsigned char c;
209
Arjan van de Venc4e32e92006-02-19 00:21:55 -0500210 retval = mutex_lock_interruptible(&serio_raw_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 if (retval)
212 return retval;
213
Dmitry Torokhov85f5b352011-10-10 18:31:04 -0700214 if (serio_raw->dead) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 retval = -ENODEV;
216 goto out;
217 }
218
219 if (count > 32)
220 count = 32;
221
222 while (count--) {
223 if (get_user(c, buffer++)) {
224 retval = -EFAULT;
225 goto out;
226 }
Dmitry Torokhov46f49b72012-05-02 00:13:38 -0700227
Dmitry Torokhov7c5bbb22011-10-10 18:30:14 -0700228 if (serio_write(serio_raw->serio, c)) {
Dmitry Torokhov46f49b72012-05-02 00:13:38 -0700229 /* Either signal error or partial write */
230 if (retval == 0)
231 retval = -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 goto out;
233 }
Dmitry Torokhov46f49b72012-05-02 00:13:38 -0700234
235 retval++;
Che-Liang Chioud89c9bc2012-01-10 00:45:12 -0800236 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237
238out:
Arjan van de Venc4e32e92006-02-19 00:21:55 -0500239 mutex_unlock(&serio_raw_mutex);
Dmitry Torokhov46f49b72012-05-02 00:13:38 -0700240 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241}
242
243static unsigned int serio_raw_poll(struct file *file, poll_table *wait)
244{
Dmitry Torokhov7c5bbb22011-10-10 18:30:14 -0700245 struct serio_raw_client *client = file->private_data;
246 struct serio_raw *serio_raw = client->serio_raw;
Dmitry Torokhov8c1c10d2011-10-10 18:31:30 -0700247 unsigned int mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248
Dmitry Torokhov7c5bbb22011-10-10 18:30:14 -0700249 poll_wait(file, &serio_raw->wait, wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250
Dmitry Torokhov8c1c10d2011-10-10 18:31:30 -0700251 mask = serio_raw->dead ? POLLHUP | POLLERR : POLLOUT | POLLWRNORM;
Dmitry Torokhov7c5bbb22011-10-10 18:30:14 -0700252 if (serio_raw->head != serio_raw->tail)
Dmitry Torokhov0c62fbf2012-01-10 00:45:12 -0800253 mask |= POLLIN | POLLRDNORM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254
Dmitry Torokhov0c62fbf2012-01-10 00:45:12 -0800255 return mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256}
257
Arjan van de Ven2b8693c2007-02-12 00:55:32 -0800258static const struct file_operations serio_raw_fops = {
Dmitry Torokhov7c5bbb22011-10-10 18:30:14 -0700259 .owner = THIS_MODULE,
260 .open = serio_raw_open,
261 .release = serio_raw_release,
262 .read = serio_raw_read,
263 .write = serio_raw_write,
264 .poll = serio_raw_poll,
265 .fasync = serio_raw_fasync,
266 .llseek = noop_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267};
268
269
270/*********************************************************************
Dmitry Torokhov15a564d2011-10-10 18:30:56 -0700271 * Interface with serio port *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 *********************************************************************/
273
274static irqreturn_t serio_raw_interrupt(struct serio *serio, unsigned char data,
David Howells7d12e782006-10-05 14:55:46 +0100275 unsigned int dfl)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276{
277 struct serio_raw *serio_raw = serio_get_drvdata(serio);
Dmitry Torokhov7c5bbb22011-10-10 18:30:14 -0700278 struct serio_raw_client *client;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 unsigned int head = serio_raw->head;
280
Dmitry Torokhov7c5bbb22011-10-10 18:30:14 -0700281 /* we are holding serio->lock here so we are protected */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 serio_raw->queue[head] = data;
283 head = (head + 1) % SERIO_RAW_QUEUE_LEN;
284 if (likely(head != serio_raw->tail)) {
285 serio_raw->head = head;
Dmitry Torokhov7c5bbb22011-10-10 18:30:14 -0700286 list_for_each_entry(client, &serio_raw->client_list, node)
287 kill_fasync(&client->fasync, SIGIO, POLL_IN);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 wake_up_interruptible(&serio_raw->wait);
289 }
290
291 return IRQ_HANDLED;
292}
293
294static int serio_raw_connect(struct serio *serio, struct serio_driver *drv)
295{
Dmitry Torokhov550eca72011-10-10 18:31:39 -0700296 static atomic_t serio_raw_no = ATOMIC_INIT(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 struct serio_raw *serio_raw;
298 int err;
299
Dmitry Torokhov15a564d2011-10-10 18:30:56 -0700300 serio_raw = kzalloc(sizeof(struct serio_raw), GFP_KERNEL);
301 if (!serio_raw) {
Dmitry Torokhov8d928472011-10-10 18:30:46 -0700302 dev_dbg(&serio->dev, "can't allocate memory for a device\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 return -ENOMEM;
304 }
305
Dmitry Torokhov15a564d2011-10-10 18:30:56 -0700306 snprintf(serio_raw->name, sizeof(serio_raw->name),
Dmitry Torokhov550eca72011-10-10 18:31:39 -0700307 "serio_raw%ld", (long)atomic_inc_return(&serio_raw_no) - 1);
Dmitry Torokhovba538cd2011-10-10 18:30:03 -0700308 kref_init(&serio_raw->kref);
Dmitry Torokhov7c5bbb22011-10-10 18:30:14 -0700309 INIT_LIST_HEAD(&serio_raw->client_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 init_waitqueue_head(&serio_raw->wait);
311
Dmitry Torokhov85f5b352011-10-10 18:31:04 -0700312 serio_raw->serio = serio;
313 get_device(&serio->dev);
314
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 serio_set_drvdata(serio, serio_raw);
316
317 err = serio_open(serio, drv);
318 if (err)
Dmitry Torokhov550eca72011-10-10 18:31:39 -0700319 goto err_free;
320
321 err = mutex_lock_killable(&serio_raw_mutex);
322 if (err)
323 goto err_close;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324
325 list_add_tail(&serio_raw->node, &serio_raw_list);
Dmitry Torokhov550eca72011-10-10 18:31:39 -0700326 mutex_unlock(&serio_raw_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327
328 serio_raw->dev.minor = PSMOUSE_MINOR;
329 serio_raw->dev.name = serio_raw->name;
Greg Kroah-Hartman94fbcde2006-07-27 16:16:04 -0700330 serio_raw->dev.parent = &serio->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 serio_raw->dev.fops = &serio_raw_fops;
332
333 err = misc_register(&serio_raw->dev);
334 if (err) {
335 serio_raw->dev.minor = MISC_DYNAMIC_MINOR;
336 err = misc_register(&serio_raw->dev);
337 }
338
339 if (err) {
Dmitry Torokhov8d928472011-10-10 18:30:46 -0700340 dev_err(&serio->dev,
341 "failed to register raw access device for %s\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 serio->phys);
Dmitry Torokhov550eca72011-10-10 18:31:39 -0700343 goto err_unlink;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 }
345
Dmitry Torokhov8d928472011-10-10 18:30:46 -0700346 dev_info(&serio->dev, "raw access enabled on %s (%s, minor %d)\n",
347 serio->phys, serio_raw->name, serio_raw->dev.minor);
Dmitry Torokhov550eca72011-10-10 18:31:39 -0700348 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349
Dmitry Torokhov550eca72011-10-10 18:31:39 -0700350err_unlink:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 list_del_init(&serio_raw->node);
Dmitry Torokhov550eca72011-10-10 18:31:39 -0700352err_close:
353 serio_close(serio);
354err_free:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 serio_set_drvdata(serio, NULL);
Dmitry Torokhov550eca72011-10-10 18:31:39 -0700356 kref_put(&serio_raw->kref, serio_raw_free);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 return err;
358}
359
360static int serio_raw_reconnect(struct serio *serio)
361{
362 struct serio_raw *serio_raw = serio_get_drvdata(serio);
363 struct serio_driver *drv = serio->drv;
364
365 if (!drv || !serio_raw) {
Dmitry Torokhov8d928472011-10-10 18:30:46 -0700366 dev_dbg(&serio->dev,
367 "reconnect request, but serio is disconnected, ignoring...\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 return -1;
369 }
370
371 /*
372 * Nothing needs to be done here, we just need this method to
373 * keep the same device.
374 */
375 return 0;
376}
377
Dmitry Torokhov8c1c10d2011-10-10 18:31:30 -0700378/*
379 * Wake up users waiting for IO so they can disconnect from
380 * dead device.
381 */
382static void serio_raw_hangup(struct serio_raw *serio_raw)
383{
384 struct serio_raw_client *client;
385
386 serio_pause_rx(serio_raw->serio);
387 list_for_each_entry(client, &serio_raw->client_list, node)
388 kill_fasync(&client->fasync, SIGIO, POLL_HUP);
389 serio_continue_rx(serio_raw->serio);
390
391 wake_up_interruptible(&serio_raw->wait);
392}
393
394
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395static void serio_raw_disconnect(struct serio *serio)
396{
Dmitry Torokhov8c1c10d2011-10-10 18:31:30 -0700397 struct serio_raw *serio_raw = serio_get_drvdata(serio);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398
Dmitry Torokhov550eca72011-10-10 18:31:39 -0700399 misc_deregister(&serio_raw->dev);
400
Arjan van de Venc4e32e92006-02-19 00:21:55 -0500401 mutex_lock(&serio_raw_mutex);
Dmitry Torokhov550eca72011-10-10 18:31:39 -0700402 serio_raw->dead = true;
403 list_del_init(&serio_raw->node);
404 mutex_unlock(&serio_raw_mutex);
405
406 serio_raw_hangup(serio_raw);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408 serio_close(serio);
Dmitry Torokhov550eca72011-10-10 18:31:39 -0700409 kref_put(&serio_raw->kref, serio_raw_free);
Dmitry Torokhov8c1c10d2011-10-10 18:31:30 -0700410
411 serio_set_drvdata(serio, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412}
413
414static struct serio_device_id serio_raw_serio_ids[] = {
415 {
416 .type = SERIO_8042,
417 .proto = SERIO_ANY,
418 .id = SERIO_ANY,
419 .extra = SERIO_ANY,
420 },
Niels de Vosd19497e2008-09-04 22:20:11 -0400421 {
422 .type = SERIO_8042_XL,
423 .proto = SERIO_ANY,
424 .id = SERIO_ANY,
425 .extra = SERIO_ANY,
426 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 { 0 }
428};
429
430MODULE_DEVICE_TABLE(serio, serio_raw_serio_ids);
431
432static struct serio_driver serio_raw_drv = {
433 .driver = {
434 .name = "serio_raw",
435 },
436 .description = DRIVER_DESC,
437 .id_table = serio_raw_serio_ids,
438 .interrupt = serio_raw_interrupt,
439 .connect = serio_raw_connect,
440 .reconnect = serio_raw_reconnect,
441 .disconnect = serio_raw_disconnect,
Dmitry Torokhov8c31eb02011-10-10 18:30:36 -0700442 .manual_bind = true,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443};
444
Axel Lin65ac9f72012-04-03 23:50:17 -0700445module_serio_driver(serio_raw_drv);