blob: 470770c09260334fd79c664c2a484ed0384a9f93 [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
12#include <linux/slab.h>
Arnd Bergmann9edca642008-05-20 19:16:43 +020013#include <linux/smp_lock.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <linux/poll.h>
15#include <linux/module.h>
16#include <linux/serio.h>
17#include <linux/init.h>
18#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];
36 unsigned int refcnt;
37 struct serio *serio;
38 struct miscdevice dev;
39 wait_queue_head_t wait;
40 struct list_head list;
41 struct list_head node;
42};
43
44struct serio_raw_list {
45 struct fasync_struct *fasync;
46 struct serio_raw *serio_raw;
47 struct list_head node;
48};
49
Arjan van de Venc4e32e92006-02-19 00:21:55 -050050static DEFINE_MUTEX(serio_raw_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070051static LIST_HEAD(serio_raw_list);
52static unsigned int serio_raw_no;
53
54/*********************************************************************
55 * Interface with userspace (file operations) *
56 *********************************************************************/
57
58static int serio_raw_fasync(int fd, struct file *file, int on)
59{
60 struct serio_raw_list *list = file->private_data;
61 int retval;
62
63 retval = fasync_helper(fd, file, on, &list->fasync);
64 return retval < 0 ? retval : 0;
65}
66
67static struct serio_raw *serio_raw_locate(int minor)
68{
69 struct serio_raw *serio_raw;
70
71 list_for_each_entry(serio_raw, &serio_raw_list, node) {
72 if (serio_raw->dev.minor == minor)
73 return serio_raw;
74 }
75
76 return NULL;
77}
78
79static int serio_raw_open(struct inode *inode, struct file *file)
80{
81 struct serio_raw *serio_raw;
82 struct serio_raw_list *list;
83 int retval = 0;
84
Arnd Bergmann9edca642008-05-20 19:16:43 +020085 lock_kernel();
Arjan van de Venc4e32e92006-02-19 00:21:55 -050086 retval = mutex_lock_interruptible(&serio_raw_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070087 if (retval)
Arnd Bergmann9edca642008-05-20 19:16:43 +020088 goto out_bkl;
Linus Torvalds1da177e2005-04-16 15:20:36 -070089
90 if (!(serio_raw = serio_raw_locate(iminor(inode)))) {
91 retval = -ENODEV;
92 goto out;
93 }
94
95 if (!serio_raw->serio) {
96 retval = -ENODEV;
97 goto out;
98 }
99
Eric Sesterhennb39787a2006-03-14 00:09:16 -0500100 if (!(list = kzalloc(sizeof(struct serio_raw_list), GFP_KERNEL))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101 retval = -ENOMEM;
102 goto out;
103 }
104
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105 list->serio_raw = serio_raw;
106 file->private_data = list;
107
108 serio_raw->refcnt++;
109 list_add_tail(&list->node, &serio_raw->list);
110
111out:
Arjan van de Venc4e32e92006-02-19 00:21:55 -0500112 mutex_unlock(&serio_raw_mutex);
Arnd Bergmann9edca642008-05-20 19:16:43 +0200113out_bkl:
114 unlock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 return retval;
116}
117
118static int serio_raw_cleanup(struct serio_raw *serio_raw)
119{
120 if (--serio_raw->refcnt == 0) {
121 misc_deregister(&serio_raw->dev);
122 list_del_init(&serio_raw->node);
123 kfree(serio_raw);
124
125 return 1;
126 }
127
128 return 0;
129}
130
131static int serio_raw_release(struct inode *inode, struct file *file)
132{
133 struct serio_raw_list *list = file->private_data;
134 struct serio_raw *serio_raw = list->serio_raw;
135
Arjan van de Venc4e32e92006-02-19 00:21:55 -0500136 mutex_lock(&serio_raw_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137
138 serio_raw_fasync(-1, file, 0);
139 serio_raw_cleanup(serio_raw);
140
Arjan van de Venc4e32e92006-02-19 00:21:55 -0500141 mutex_unlock(&serio_raw_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142 return 0;
143}
144
145static int serio_raw_fetch_byte(struct serio_raw *serio_raw, char *c)
146{
147 unsigned long flags;
148 int empty;
149
150 spin_lock_irqsave(&serio_raw->serio->lock, flags);
151
152 empty = serio_raw->head == serio_raw->tail;
153 if (!empty) {
154 *c = serio_raw->queue[serio_raw->tail];
155 serio_raw->tail = (serio_raw->tail + 1) % SERIO_RAW_QUEUE_LEN;
156 }
157
158 spin_unlock_irqrestore(&serio_raw->serio->lock, flags);
159
160 return !empty;
161}
162
163static ssize_t serio_raw_read(struct file *file, char __user *buffer, size_t count, loff_t *ppos)
164{
165 struct serio_raw_list *list = file->private_data;
166 struct serio_raw *serio_raw = list->serio_raw;
Andrew Morton4f179f72007-07-10 00:38:31 -0400167 char uninitialized_var(c);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 ssize_t retval = 0;
169
170 if (!serio_raw->serio)
171 return -ENODEV;
172
173 if (serio_raw->head == serio_raw->tail && (file->f_flags & O_NONBLOCK))
174 return -EAGAIN;
175
176 retval = wait_event_interruptible(list->serio_raw->wait,
177 serio_raw->head != serio_raw->tail || !serio_raw->serio);
178 if (retval)
179 return retval;
180
181 if (!serio_raw->serio)
182 return -ENODEV;
183
184 while (retval < count && serio_raw_fetch_byte(serio_raw, &c)) {
185 if (put_user(c, buffer++))
186 return -EFAULT;
187 retval++;
188 }
189
190 return retval;
191}
192
193static ssize_t serio_raw_write(struct file *file, const char __user *buffer, size_t count, loff_t *ppos)
194{
195 struct serio_raw_list *list = file->private_data;
196 ssize_t written = 0;
197 int retval;
198 unsigned char c;
199
Arjan van de Venc4e32e92006-02-19 00:21:55 -0500200 retval = mutex_lock_interruptible(&serio_raw_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 if (retval)
202 return retval;
203
204 if (!list->serio_raw->serio) {
205 retval = -ENODEV;
206 goto out;
207 }
208
209 if (count > 32)
210 count = 32;
211
212 while (count--) {
213 if (get_user(c, buffer++)) {
214 retval = -EFAULT;
215 goto out;
216 }
217 if (serio_write(list->serio_raw->serio, c)) {
218 retval = -EIO;
219 goto out;
220 }
221 written++;
222 };
223
224out:
Arjan van de Venc4e32e92006-02-19 00:21:55 -0500225 mutex_unlock(&serio_raw_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 return written;
227}
228
229static unsigned int serio_raw_poll(struct file *file, poll_table *wait)
230{
231 struct serio_raw_list *list = file->private_data;
232
233 poll_wait(file, &list->serio_raw->wait, wait);
234
235 if (list->serio_raw->head != list->serio_raw->tail)
236 return POLLIN | POLLRDNORM;
237
238 return 0;
239}
240
Arjan van de Ven2b8693c2007-02-12 00:55:32 -0800241static const struct file_operations serio_raw_fops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 .owner = THIS_MODULE,
243 .open = serio_raw_open,
244 .release = serio_raw_release,
245 .read = serio_raw_read,
246 .write = serio_raw_write,
247 .poll = serio_raw_poll,
248 .fasync = serio_raw_fasync,
249};
250
251
252/*********************************************************************
253 * Interface with serio port *
254 *********************************************************************/
255
256static irqreturn_t serio_raw_interrupt(struct serio *serio, unsigned char data,
David Howells7d12e782006-10-05 14:55:46 +0100257 unsigned int dfl)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258{
259 struct serio_raw *serio_raw = serio_get_drvdata(serio);
260 struct serio_raw_list *list;
261 unsigned int head = serio_raw->head;
262
263 /* we are holding serio->lock here so we are prootected */
264 serio_raw->queue[head] = data;
265 head = (head + 1) % SERIO_RAW_QUEUE_LEN;
266 if (likely(head != serio_raw->tail)) {
267 serio_raw->head = head;
268 list_for_each_entry(list, &serio_raw->list, node)
269 kill_fasync(&list->fasync, SIGIO, POLL_IN);
270 wake_up_interruptible(&serio_raw->wait);
271 }
272
273 return IRQ_HANDLED;
274}
275
276static int serio_raw_connect(struct serio *serio, struct serio_driver *drv)
277{
278 struct serio_raw *serio_raw;
279 int err;
280
Eric Sesterhennb39787a2006-03-14 00:09:16 -0500281 if (!(serio_raw = kzalloc(sizeof(struct serio_raw), GFP_KERNEL))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 printk(KERN_ERR "serio_raw.c: can't allocate memory for a device\n");
283 return -ENOMEM;
284 }
285
Arjan van de Venc4e32e92006-02-19 00:21:55 -0500286 mutex_lock(&serio_raw_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 snprintf(serio_raw->name, sizeof(serio_raw->name), "serio_raw%d", serio_raw_no++);
289 serio_raw->refcnt = 1;
290 serio_raw->serio = serio;
291 INIT_LIST_HEAD(&serio_raw->list);
292 init_waitqueue_head(&serio_raw->wait);
293
294 serio_set_drvdata(serio, serio_raw);
295
296 err = serio_open(serio, drv);
297 if (err)
298 goto out_free;
299
300 list_add_tail(&serio_raw->node, &serio_raw_list);
301
302 serio_raw->dev.minor = PSMOUSE_MINOR;
303 serio_raw->dev.name = serio_raw->name;
Greg Kroah-Hartman94fbcde2006-07-27 16:16:04 -0700304 serio_raw->dev.parent = &serio->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 serio_raw->dev.fops = &serio_raw_fops;
306
307 err = misc_register(&serio_raw->dev);
308 if (err) {
309 serio_raw->dev.minor = MISC_DYNAMIC_MINOR;
310 err = misc_register(&serio_raw->dev);
311 }
312
313 if (err) {
314 printk(KERN_INFO "serio_raw: failed to register raw access device for %s\n",
315 serio->phys);
316 goto out_close;
317 }
318
319 printk(KERN_INFO "serio_raw: raw access enabled on %s (%s, minor %d)\n",
320 serio->phys, serio_raw->name, serio_raw->dev.minor);
321 goto out;
322
323out_close:
324 serio_close(serio);
325 list_del_init(&serio_raw->node);
326out_free:
327 serio_set_drvdata(serio, NULL);
328 kfree(serio_raw);
329out:
Arjan van de Venc4e32e92006-02-19 00:21:55 -0500330 mutex_unlock(&serio_raw_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 return err;
332}
333
334static int serio_raw_reconnect(struct serio *serio)
335{
336 struct serio_raw *serio_raw = serio_get_drvdata(serio);
337 struct serio_driver *drv = serio->drv;
338
339 if (!drv || !serio_raw) {
340 printk(KERN_DEBUG "serio_raw: reconnect request, but serio is disconnected, ignoring...\n");
341 return -1;
342 }
343
344 /*
345 * Nothing needs to be done here, we just need this method to
346 * keep the same device.
347 */
348 return 0;
349}
350
351static void serio_raw_disconnect(struct serio *serio)
352{
353 struct serio_raw *serio_raw;
354
Arjan van de Venc4e32e92006-02-19 00:21:55 -0500355 mutex_lock(&serio_raw_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356
357 serio_raw = serio_get_drvdata(serio);
358
359 serio_close(serio);
360 serio_set_drvdata(serio, NULL);
361
362 serio_raw->serio = NULL;
363 if (!serio_raw_cleanup(serio_raw))
364 wake_up_interruptible(&serio_raw->wait);
365
Arjan van de Venc4e32e92006-02-19 00:21:55 -0500366 mutex_unlock(&serio_raw_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367}
368
369static struct serio_device_id serio_raw_serio_ids[] = {
370 {
371 .type = SERIO_8042,
372 .proto = SERIO_ANY,
373 .id = SERIO_ANY,
374 .extra = SERIO_ANY,
375 },
Niels de Vosd19497e2008-09-04 22:20:11 -0400376 {
377 .type = SERIO_8042_XL,
378 .proto = SERIO_ANY,
379 .id = SERIO_ANY,
380 .extra = SERIO_ANY,
381 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 { 0 }
383};
384
385MODULE_DEVICE_TABLE(serio, serio_raw_serio_ids);
386
387static struct serio_driver serio_raw_drv = {
388 .driver = {
389 .name = "serio_raw",
390 },
391 .description = DRIVER_DESC,
392 .id_table = serio_raw_serio_ids,
393 .interrupt = serio_raw_interrupt,
394 .connect = serio_raw_connect,
395 .reconnect = serio_raw_reconnect,
396 .disconnect = serio_raw_disconnect,
397 .manual_bind = 1,
398};
399
400static int __init serio_raw_init(void)
401{
Akinobu Mita153a9df02006-11-23 23:35:10 -0500402 return serio_register_driver(&serio_raw_drv);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403}
404
405static void __exit serio_raw_exit(void)
406{
407 serio_unregister_driver(&serio_raw_drv);
408}
409
410module_init(serio_raw_init);
411module_exit(serio_raw_exit);