of: Add new helper of_parse_phandles_with_args()
[linux-2.6/libata-dev.git] / drivers / input / serio / serio_raw.c
blobc9397c8ee97e8ea44c4f0edc4a6172bd022178ac
1 /*
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
5 * Copyright (c) 2004 Dmitry Torokhov
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.
12 #include <linux/slab.h>
13 #include <linux/smp_lock.h>
14 #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>
20 #include <linux/miscdevice.h>
21 #include <linux/wait.h>
22 #include <linux/mutex.h>
24 #define DRIVER_DESC "Raw serio driver"
26 MODULE_AUTHOR("Dmitry Torokhov <dtor@mail.ru>");
27 MODULE_DESCRIPTION(DRIVER_DESC);
28 MODULE_LICENSE("GPL");
30 #define SERIO_RAW_QUEUE_LEN 64
31 struct serio_raw {
32 unsigned char queue[SERIO_RAW_QUEUE_LEN];
33 unsigned int tail, head;
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;
44 struct serio_raw_list {
45 struct fasync_struct *fasync;
46 struct serio_raw *serio_raw;
47 struct list_head node;
50 static DEFINE_MUTEX(serio_raw_mutex);
51 static LIST_HEAD(serio_raw_list);
52 static unsigned int serio_raw_no;
54 /*********************************************************************
55 * Interface with userspace (file operations) *
56 *********************************************************************/
58 static int serio_raw_fasync(int fd, struct file *file, int on)
60 struct serio_raw_list *list = file->private_data;
61 int retval;
63 retval = fasync_helper(fd, file, on, &list->fasync);
64 return retval < 0 ? retval : 0;
67 static struct serio_raw *serio_raw_locate(int minor)
69 struct serio_raw *serio_raw;
71 list_for_each_entry(serio_raw, &serio_raw_list, node) {
72 if (serio_raw->dev.minor == minor)
73 return serio_raw;
76 return NULL;
79 static int serio_raw_open(struct inode *inode, struct file *file)
81 struct serio_raw *serio_raw;
82 struct serio_raw_list *list;
83 int retval = 0;
85 lock_kernel();
86 retval = mutex_lock_interruptible(&serio_raw_mutex);
87 if (retval)
88 goto out_bkl;
90 if (!(serio_raw = serio_raw_locate(iminor(inode)))) {
91 retval = -ENODEV;
92 goto out;
95 if (!serio_raw->serio) {
96 retval = -ENODEV;
97 goto out;
100 if (!(list = kzalloc(sizeof(struct serio_raw_list), GFP_KERNEL))) {
101 retval = -ENOMEM;
102 goto out;
105 list->serio_raw = serio_raw;
106 file->private_data = list;
108 serio_raw->refcnt++;
109 list_add_tail(&list->node, &serio_raw->list);
111 out:
112 mutex_unlock(&serio_raw_mutex);
113 out_bkl:
114 unlock_kernel();
115 return retval;
118 static int serio_raw_cleanup(struct serio_raw *serio_raw)
120 if (--serio_raw->refcnt == 0) {
121 misc_deregister(&serio_raw->dev);
122 list_del_init(&serio_raw->node);
123 kfree(serio_raw);
125 return 1;
128 return 0;
131 static int serio_raw_release(struct inode *inode, struct file *file)
133 struct serio_raw_list *list = file->private_data;
134 struct serio_raw *serio_raw = list->serio_raw;
136 mutex_lock(&serio_raw_mutex);
138 serio_raw_fasync(-1, file, 0);
139 serio_raw_cleanup(serio_raw);
141 mutex_unlock(&serio_raw_mutex);
142 return 0;
145 static int serio_raw_fetch_byte(struct serio_raw *serio_raw, char *c)
147 unsigned long flags;
148 int empty;
150 spin_lock_irqsave(&serio_raw->serio->lock, flags);
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;
158 spin_unlock_irqrestore(&serio_raw->serio->lock, flags);
160 return !empty;
163 static ssize_t serio_raw_read(struct file *file, char __user *buffer, size_t count, loff_t *ppos)
165 struct serio_raw_list *list = file->private_data;
166 struct serio_raw *serio_raw = list->serio_raw;
167 char uninitialized_var(c);
168 ssize_t retval = 0;
170 if (!serio_raw->serio)
171 return -ENODEV;
173 if (serio_raw->head == serio_raw->tail && (file->f_flags & O_NONBLOCK))
174 return -EAGAIN;
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;
181 if (!serio_raw->serio)
182 return -ENODEV;
184 while (retval < count && serio_raw_fetch_byte(serio_raw, &c)) {
185 if (put_user(c, buffer++))
186 return -EFAULT;
187 retval++;
190 return retval;
193 static ssize_t serio_raw_write(struct file *file, const char __user *buffer, size_t count, loff_t *ppos)
195 struct serio_raw_list *list = file->private_data;
196 ssize_t written = 0;
197 int retval;
198 unsigned char c;
200 retval = mutex_lock_interruptible(&serio_raw_mutex);
201 if (retval)
202 return retval;
204 if (!list->serio_raw->serio) {
205 retval = -ENODEV;
206 goto out;
209 if (count > 32)
210 count = 32;
212 while (count--) {
213 if (get_user(c, buffer++)) {
214 retval = -EFAULT;
215 goto out;
217 if (serio_write(list->serio_raw->serio, c)) {
218 retval = -EIO;
219 goto out;
221 written++;
224 out:
225 mutex_unlock(&serio_raw_mutex);
226 return written;
229 static unsigned int serio_raw_poll(struct file *file, poll_table *wait)
231 struct serio_raw_list *list = file->private_data;
233 poll_wait(file, &list->serio_raw->wait, wait);
235 if (list->serio_raw->head != list->serio_raw->tail)
236 return POLLIN | POLLRDNORM;
238 return 0;
241 static const struct file_operations serio_raw_fops = {
242 .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,
252 /*********************************************************************
253 * Interface with serio port *
254 *********************************************************************/
256 static irqreturn_t serio_raw_interrupt(struct serio *serio, unsigned char data,
257 unsigned int dfl)
259 struct serio_raw *serio_raw = serio_get_drvdata(serio);
260 struct serio_raw_list *list;
261 unsigned int head = serio_raw->head;
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);
273 return IRQ_HANDLED;
276 static int serio_raw_connect(struct serio *serio, struct serio_driver *drv)
278 struct serio_raw *serio_raw;
279 int err;
281 if (!(serio_raw = kzalloc(sizeof(struct serio_raw), GFP_KERNEL))) {
282 printk(KERN_ERR "serio_raw.c: can't allocate memory for a device\n");
283 return -ENOMEM;
286 mutex_lock(&serio_raw_mutex);
288 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);
294 serio_set_drvdata(serio, serio_raw);
296 err = serio_open(serio, drv);
297 if (err)
298 goto out_free;
300 list_add_tail(&serio_raw->node, &serio_raw_list);
302 serio_raw->dev.minor = PSMOUSE_MINOR;
303 serio_raw->dev.name = serio_raw->name;
304 serio_raw->dev.parent = &serio->dev;
305 serio_raw->dev.fops = &serio_raw_fops;
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);
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;
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;
323 out_close:
324 serio_close(serio);
325 list_del_init(&serio_raw->node);
326 out_free:
327 serio_set_drvdata(serio, NULL);
328 kfree(serio_raw);
329 out:
330 mutex_unlock(&serio_raw_mutex);
331 return err;
334 static int serio_raw_reconnect(struct serio *serio)
336 struct serio_raw *serio_raw = serio_get_drvdata(serio);
337 struct serio_driver *drv = serio->drv;
339 if (!drv || !serio_raw) {
340 printk(KERN_DEBUG "serio_raw: reconnect request, but serio is disconnected, ignoring...\n");
341 return -1;
345 * Nothing needs to be done here, we just need this method to
346 * keep the same device.
348 return 0;
351 static void serio_raw_disconnect(struct serio *serio)
353 struct serio_raw *serio_raw;
355 mutex_lock(&serio_raw_mutex);
357 serio_raw = serio_get_drvdata(serio);
359 serio_close(serio);
360 serio_set_drvdata(serio, NULL);
362 serio_raw->serio = NULL;
363 if (!serio_raw_cleanup(serio_raw))
364 wake_up_interruptible(&serio_raw->wait);
366 mutex_unlock(&serio_raw_mutex);
369 static struct serio_device_id serio_raw_serio_ids[] = {
371 .type = SERIO_8042,
372 .proto = SERIO_ANY,
373 .id = SERIO_ANY,
374 .extra = SERIO_ANY,
376 { 0 }
379 MODULE_DEVICE_TABLE(serio, serio_raw_serio_ids);
381 static struct serio_driver serio_raw_drv = {
382 .driver = {
383 .name = "serio_raw",
385 .description = DRIVER_DESC,
386 .id_table = serio_raw_serio_ids,
387 .interrupt = serio_raw_interrupt,
388 .connect = serio_raw_connect,
389 .reconnect = serio_raw_reconnect,
390 .disconnect = serio_raw_disconnect,
391 .manual_bind = 1,
394 static int __init serio_raw_init(void)
396 return serio_register_driver(&serio_raw_drv);
399 static void __exit serio_raw_exit(void)
401 serio_unregister_driver(&serio_raw_drv);
404 module_init(serio_raw_init);
405 module_exit(serio_raw_exit);