]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - drivers/input/serio/serio_raw.c
Input: serio_raw - rename serio_raw_list to serio_raw_client
[mirror_ubuntu-artful-kernel.git] / drivers / input / serio / serio_raw.c
CommitLineData
1da177e4
LT
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
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
ba538cd2 12#include <linux/kref.h>
d43c36dc 13#include <linux/sched.h>
1da177e4
LT
14#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>
1da177e4
LT
21#include <linux/miscdevice.h>
22#include <linux/wait.h>
c4e32e9f 23#include <linux/mutex.h>
1da177e4
LT
24
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];
ba538cd2 37 struct kref kref;
1da177e4
LT
38 struct serio *serio;
39 struct miscdevice dev;
40 wait_queue_head_t wait;
7c5bbb2e 41 struct list_head client_list;
1da177e4
LT
42 struct list_head node;
43};
44
7c5bbb2e 45struct serio_raw_client {
1da177e4
LT
46 struct fasync_struct *fasync;
47 struct serio_raw *serio_raw;
48 struct list_head node;
49};
50
c4e32e9f 51static DEFINE_MUTEX(serio_raw_mutex);
1da177e4
LT
52static LIST_HEAD(serio_raw_list);
53static unsigned int serio_raw_no;
54
55/*********************************************************************
56 * Interface with userspace (file operations) *
57 *********************************************************************/
58
59static int serio_raw_fasync(int fd, struct file *file, int on)
60{
7c5bbb2e 61 struct serio_raw_client *client = file->private_data;
1da177e4 62
7c5bbb2e 63 return fasync_helper(fd, file, on, &client->fasync);
1da177e4
LT
64}
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;
7c5bbb2e
DT
81 struct serio_raw_client *client;
82 int retval;
1da177e4 83
c4e32e9f 84 retval = mutex_lock_interruptible(&serio_raw_mutex);
1da177e4 85 if (retval)
77554b4d 86 return retval;
1da177e4 87
77554b4d
TLSC
88 serio_raw = serio_raw_locate(iminor(inode));
89 if (!serio_raw) {
1da177e4
LT
90 retval = -ENODEV;
91 goto out;
92 }
93
94 if (!serio_raw->serio) {
95 retval = -ENODEV;
96 goto out;
97 }
98
7c5bbb2e
DT
99 client = kzalloc(sizeof(struct serio_raw_client), GFP_KERNEL);
100 if (!client) {
1da177e4
LT
101 retval = -ENOMEM;
102 goto out;
103 }
104
7c5bbb2e
DT
105 client->serio_raw = serio_raw;
106 file->private_data = client;
1da177e4 107
ba538cd2 108 kref_get(&serio_raw->kref);
7c5bbb2e 109 list_add_tail(&client->node, &serio_raw->client_list);
1da177e4
LT
110
111out:
c4e32e9f 112 mutex_unlock(&serio_raw_mutex);
1da177e4
LT
113 return retval;
114}
115
ba538cd2 116static void serio_raw_cleanup(struct kref *kref)
1da177e4 117{
ba538cd2
DT
118 struct serio_raw *serio_raw =
119 container_of(kref, struct serio_raw, kref);
1da177e4 120
ba538cd2
DT
121 misc_deregister(&serio_raw->dev);
122 list_del_init(&serio_raw->node);
123 kfree(serio_raw);
1da177e4
LT
124}
125
126static int serio_raw_release(struct inode *inode, struct file *file)
127{
7c5bbb2e
DT
128 struct serio_raw_client *client = file->private_data;
129 struct serio_raw *serio_raw = client->serio_raw;
1da177e4 130
c4e32e9f 131 mutex_lock(&serio_raw_mutex);
1da177e4 132
ba538cd2 133 kref_put(&serio_raw->kref, serio_raw_cleanup);
1da177e4 134
c4e32e9f 135 mutex_unlock(&serio_raw_mutex);
1da177e4
LT
136 return 0;
137}
138
139static int serio_raw_fetch_byte(struct serio_raw *serio_raw, char *c)
140{
141 unsigned long flags;
142 int empty;
143
144 spin_lock_irqsave(&serio_raw->serio->lock, flags);
145
146 empty = serio_raw->head == serio_raw->tail;
147 if (!empty) {
148 *c = serio_raw->queue[serio_raw->tail];
149 serio_raw->tail = (serio_raw->tail + 1) % SERIO_RAW_QUEUE_LEN;
150 }
151
152 spin_unlock_irqrestore(&serio_raw->serio->lock, flags);
153
154 return !empty;
155}
156
157static ssize_t serio_raw_read(struct file *file, char __user *buffer, size_t count, loff_t *ppos)
158{
7c5bbb2e
DT
159 struct serio_raw_client *client = file->private_data;
160 struct serio_raw *serio_raw = client->serio_raw;
4f179f71 161 char uninitialized_var(c);
1da177e4
LT
162 ssize_t retval = 0;
163
164 if (!serio_raw->serio)
165 return -ENODEV;
166
167 if (serio_raw->head == serio_raw->tail && (file->f_flags & O_NONBLOCK))
168 return -EAGAIN;
169
7c5bbb2e
DT
170 retval = wait_event_interruptible(serio_raw->wait,
171 serio_raw->head != serio_raw->tail ||
172 !serio_raw->serio);
1da177e4
LT
173 if (retval)
174 return retval;
175
176 if (!serio_raw->serio)
177 return -ENODEV;
178
179 while (retval < count && serio_raw_fetch_byte(serio_raw, &c)) {
180 if (put_user(c, buffer++))
181 return -EFAULT;
182 retval++;
183 }
184
185 return retval;
186}
187
188static ssize_t serio_raw_write(struct file *file, const char __user *buffer, size_t count, loff_t *ppos)
189{
7c5bbb2e
DT
190 struct serio_raw_client *client = file->private_data;
191 struct serio_raw *serio_raw = client->serio_raw;
1da177e4
LT
192 ssize_t written = 0;
193 int retval;
194 unsigned char c;
195
c4e32e9f 196 retval = mutex_lock_interruptible(&serio_raw_mutex);
1da177e4
LT
197 if (retval)
198 return retval;
199
7c5bbb2e 200 if (!serio_raw->serio) {
1da177e4
LT
201 retval = -ENODEV;
202 goto out;
203 }
204
205 if (count > 32)
206 count = 32;
207
208 while (count--) {
209 if (get_user(c, buffer++)) {
210 retval = -EFAULT;
211 goto out;
212 }
7c5bbb2e 213 if (serio_write(serio_raw->serio, c)) {
1da177e4
LT
214 retval = -EIO;
215 goto out;
216 }
217 written++;
218 };
219
220out:
c4e32e9f 221 mutex_unlock(&serio_raw_mutex);
1da177e4
LT
222 return written;
223}
224
225static unsigned int serio_raw_poll(struct file *file, poll_table *wait)
226{
7c5bbb2e
DT
227 struct serio_raw_client *client = file->private_data;
228 struct serio_raw *serio_raw = client->serio_raw;
1da177e4 229
7c5bbb2e 230 poll_wait(file, &serio_raw->wait, wait);
1da177e4 231
7c5bbb2e 232 if (serio_raw->head != serio_raw->tail)
1da177e4
LT
233 return POLLIN | POLLRDNORM;
234
235 return 0;
236}
237
2b8693c0 238static const struct file_operations serio_raw_fops = {
7c5bbb2e
DT
239 .owner = THIS_MODULE,
240 .open = serio_raw_open,
241 .release = serio_raw_release,
242 .read = serio_raw_read,
243 .write = serio_raw_write,
244 .poll = serio_raw_poll,
245 .fasync = serio_raw_fasync,
246 .llseek = noop_llseek,
1da177e4
LT
247};
248
249
250/*********************************************************************
251 * Interface with serio port *
252 *********************************************************************/
253
254static irqreturn_t serio_raw_interrupt(struct serio *serio, unsigned char data,
7d12e780 255 unsigned int dfl)
1da177e4
LT
256{
257 struct serio_raw *serio_raw = serio_get_drvdata(serio);
7c5bbb2e 258 struct serio_raw_client *client;
1da177e4
LT
259 unsigned int head = serio_raw->head;
260
7c5bbb2e 261 /* we are holding serio->lock here so we are protected */
1da177e4
LT
262 serio_raw->queue[head] = data;
263 head = (head + 1) % SERIO_RAW_QUEUE_LEN;
264 if (likely(head != serio_raw->tail)) {
265 serio_raw->head = head;
7c5bbb2e
DT
266 list_for_each_entry(client, &serio_raw->client_list, node)
267 kill_fasync(&client->fasync, SIGIO, POLL_IN);
1da177e4
LT
268 wake_up_interruptible(&serio_raw->wait);
269 }
270
271 return IRQ_HANDLED;
272}
273
274static int serio_raw_connect(struct serio *serio, struct serio_driver *drv)
275{
276 struct serio_raw *serio_raw;
277 int err;
278
b39787a9 279 if (!(serio_raw = kzalloc(sizeof(struct serio_raw), GFP_KERNEL))) {
1da177e4
LT
280 printk(KERN_ERR "serio_raw.c: can't allocate memory for a device\n");
281 return -ENOMEM;
282 }
283
c4e32e9f 284 mutex_lock(&serio_raw_mutex);
1da177e4 285
1da177e4 286 snprintf(serio_raw->name, sizeof(serio_raw->name), "serio_raw%d", serio_raw_no++);
ba538cd2 287 kref_init(&serio_raw->kref);
1da177e4 288 serio_raw->serio = serio;
7c5bbb2e 289 INIT_LIST_HEAD(&serio_raw->client_list);
1da177e4
LT
290 init_waitqueue_head(&serio_raw->wait);
291
292 serio_set_drvdata(serio, serio_raw);
293
294 err = serio_open(serio, drv);
295 if (err)
296 goto out_free;
297
298 list_add_tail(&serio_raw->node, &serio_raw_list);
299
300 serio_raw->dev.minor = PSMOUSE_MINOR;
301 serio_raw->dev.name = serio_raw->name;
94fbcded 302 serio_raw->dev.parent = &serio->dev;
1da177e4
LT
303 serio_raw->dev.fops = &serio_raw_fops;
304
305 err = misc_register(&serio_raw->dev);
306 if (err) {
307 serio_raw->dev.minor = MISC_DYNAMIC_MINOR;
308 err = misc_register(&serio_raw->dev);
309 }
310
311 if (err) {
312 printk(KERN_INFO "serio_raw: failed to register raw access device for %s\n",
313 serio->phys);
314 goto out_close;
315 }
316
317 printk(KERN_INFO "serio_raw: raw access enabled on %s (%s, minor %d)\n",
318 serio->phys, serio_raw->name, serio_raw->dev.minor);
319 goto out;
320
321out_close:
322 serio_close(serio);
323 list_del_init(&serio_raw->node);
324out_free:
325 serio_set_drvdata(serio, NULL);
326 kfree(serio_raw);
327out:
c4e32e9f 328 mutex_unlock(&serio_raw_mutex);
1da177e4
LT
329 return err;
330}
331
332static int serio_raw_reconnect(struct serio *serio)
333{
334 struct serio_raw *serio_raw = serio_get_drvdata(serio);
335 struct serio_driver *drv = serio->drv;
336
337 if (!drv || !serio_raw) {
338 printk(KERN_DEBUG "serio_raw: reconnect request, but serio is disconnected, ignoring...\n");
339 return -1;
340 }
341
342 /*
343 * Nothing needs to be done here, we just need this method to
344 * keep the same device.
345 */
346 return 0;
347}
348
349static void serio_raw_disconnect(struct serio *serio)
350{
351 struct serio_raw *serio_raw;
352
c4e32e9f 353 mutex_lock(&serio_raw_mutex);
1da177e4
LT
354
355 serio_raw = serio_get_drvdata(serio);
356
357 serio_close(serio);
358 serio_set_drvdata(serio, NULL);
359
360 serio_raw->serio = NULL;
ba538cd2
DT
361 wake_up_interruptible(&serio_raw->wait);
362 kref_put(&serio_raw->kref, serio_raw_cleanup);
1da177e4 363
c4e32e9f 364 mutex_unlock(&serio_raw_mutex);
1da177e4
LT
365}
366
367static struct serio_device_id serio_raw_serio_ids[] = {
368 {
369 .type = SERIO_8042,
370 .proto = SERIO_ANY,
371 .id = SERIO_ANY,
372 .extra = SERIO_ANY,
373 },
d19497e2
NV
374 {
375 .type = SERIO_8042_XL,
376 .proto = SERIO_ANY,
377 .id = SERIO_ANY,
378 .extra = SERIO_ANY,
379 },
1da177e4
LT
380 { 0 }
381};
382
383MODULE_DEVICE_TABLE(serio, serio_raw_serio_ids);
384
385static struct serio_driver serio_raw_drv = {
386 .driver = {
387 .name = "serio_raw",
388 },
389 .description = DRIVER_DESC,
390 .id_table = serio_raw_serio_ids,
391 .interrupt = serio_raw_interrupt,
392 .connect = serio_raw_connect,
393 .reconnect = serio_raw_reconnect,
394 .disconnect = serio_raw_disconnect,
395 .manual_bind = 1,
396};
397
398static int __init serio_raw_init(void)
399{
153a9df0 400 return serio_register_driver(&serio_raw_drv);
1da177e4
LT
401}
402
403static void __exit serio_raw_exit(void)
404{
405 serio_unregister_driver(&serio_raw_drv);
406}
407
408module_init(serio_raw_init);
409module_exit(serio_raw_exit);