blob: 7dfe1009fae09b6101133d8e471a0d4b1ef039cd [file] [log] [blame]
Dmitry Torokhov0dcd8072007-04-29 23:42:45 -04001/*
2 * Generic implementation of a polled input device
3
4 * Copyright (c) 2007 Dmitry Torokhov
5 *
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License version 2 as published by
8 * the Free Software Foundation.
9 */
10
Joe Perchesda0c4902010-11-29 23:33:07 -080011#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
12
Dmitry Torokhov0dcd8072007-04-29 23:42:45 -040013#include <linux/jiffies.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090014#include <linux/slab.h>
Dmitry Torokhov0dcd8072007-04-29 23:42:45 -040015#include <linux/mutex.h>
Dmitry Torokhove490ebd2011-04-27 23:20:16 -070016#include <linux/workqueue.h>
Paul Gortmakerd2d84422011-07-03 13:53:48 -040017#include <linux/module.h>
Dmitry Torokhov0dcd8072007-04-29 23:42:45 -040018#include <linux/input-polldev.h>
19
Eric Piel36bd52a2007-05-22 23:28:03 -040020MODULE_AUTHOR("Dmitry Torokhov <dtor@mail.ru>");
21MODULE_DESCRIPTION("Generic implementation of a polled input device");
22MODULE_LICENSE("GPL v2");
23MODULE_VERSION("0.1");
24
Samu Onkalodad725d2009-11-13 21:13:22 -080025static void input_polldev_queue_work(struct input_polled_dev *dev)
Dmitry Torokhov0dcd8072007-04-29 23:42:45 -040026{
Stephen Hemminger374766b2007-11-21 14:03:37 -050027 unsigned long delay;
Dmitry Torokhov0dcd8072007-04-29 23:42:45 -040028
Stephen Hemminger374766b2007-11-21 14:03:37 -050029 delay = msecs_to_jiffies(dev->poll_interval);
30 if (delay >= HZ)
31 delay = round_jiffies_relative(delay);
32
Dmitry Torokhove490ebd2011-04-27 23:20:16 -070033 queue_delayed_work(system_freezable_wq, &dev->work, delay);
Dmitry Torokhov0dcd8072007-04-29 23:42:45 -040034}
35
Samu Onkalodad725d2009-11-13 21:13:22 -080036static void input_polled_device_work(struct work_struct *work)
37{
38 struct input_polled_dev *dev =
39 container_of(work, struct input_polled_dev, work.work);
40
41 dev->poll(dev);
42 input_polldev_queue_work(dev);
43}
44
Dmitry Torokhov0dcd8072007-04-29 23:42:45 -040045static int input_open_polled_device(struct input_dev *input)
46{
Dmitry Torokhov3797fec2008-04-02 00:41:00 -040047 struct input_polled_dev *dev = input_get_drvdata(input);
Dmitry Torokhov0dcd8072007-04-29 23:42:45 -040048
Samu Onkalob0aba1e2009-10-18 00:38:57 -070049 if (dev->open)
50 dev->open(dev);
Dmitry Torokhov0dcd8072007-04-29 23:42:45 -040051
Samu Onkalo11bb4cc2009-11-23 10:01:33 -080052 /* Only start polling if polling is enabled */
Dmitry Torokhov5e3e4eb2011-08-02 22:22:46 -070053 if (dev->poll_interval > 0) {
54 dev->poll(dev);
55 input_polldev_queue_work(dev);
56 }
Dmitry Torokhov0dcd8072007-04-29 23:42:45 -040057
58 return 0;
59}
60
61static void input_close_polled_device(struct input_dev *input)
62{
Dmitry Torokhov3797fec2008-04-02 00:41:00 -040063 struct input_polled_dev *dev = input_get_drvdata(input);
Dmitry Torokhov0dcd8072007-04-29 23:42:45 -040064
Stephen Hemminger374766b2007-11-21 14:03:37 -050065 cancel_delayed_work_sync(&dev->work);
Samu Onkalob0aba1e2009-10-18 00:38:57 -070066
67 if (dev->close)
68 dev->close(dev);
Dmitry Torokhov0dcd8072007-04-29 23:42:45 -040069}
70
Samu Onkalodad725d2009-11-13 21:13:22 -080071/* SYSFS interface */
72
73static ssize_t input_polldev_get_poll(struct device *dev,
74 struct device_attribute *attr, char *buf)
75{
76 struct input_polled_dev *polldev = dev_get_drvdata(dev);
77
78 return sprintf(buf, "%d\n", polldev->poll_interval);
79}
80
81static ssize_t input_polldev_set_poll(struct device *dev,
82 struct device_attribute *attr, const char *buf,
83 size_t count)
84{
85 struct input_polled_dev *polldev = dev_get_drvdata(dev);
86 struct input_dev *input = polldev->input;
87 unsigned long interval;
88
89 if (strict_strtoul(buf, 0, &interval))
90 return -EINVAL;
91
92 if (interval < polldev->poll_interval_min)
93 return -EINVAL;
94
95 if (interval > polldev->poll_interval_max)
96 return -EINVAL;
97
98 mutex_lock(&input->mutex);
99
100 polldev->poll_interval = interval;
101
102 if (input->users) {
103 cancel_delayed_work_sync(&polldev->work);
104 if (polldev->poll_interval > 0)
105 input_polldev_queue_work(polldev);
106 }
107
108 mutex_unlock(&input->mutex);
109
110 return count;
111}
112
113static DEVICE_ATTR(poll, S_IRUGO | S_IWUSR, input_polldev_get_poll,
114 input_polldev_set_poll);
115
116
117static ssize_t input_polldev_get_max(struct device *dev,
118 struct device_attribute *attr, char *buf)
119{
120 struct input_polled_dev *polldev = dev_get_drvdata(dev);
121
122 return sprintf(buf, "%d\n", polldev->poll_interval_max);
123}
124
125static DEVICE_ATTR(max, S_IRUGO, input_polldev_get_max, NULL);
126
127static ssize_t input_polldev_get_min(struct device *dev,
128 struct device_attribute *attr, char *buf)
129{
130 struct input_polled_dev *polldev = dev_get_drvdata(dev);
131
132 return sprintf(buf, "%d\n", polldev->poll_interval_min);
133}
134
135static DEVICE_ATTR(min, S_IRUGO, input_polldev_get_min, NULL);
136
137static struct attribute *sysfs_attrs[] = {
138 &dev_attr_poll.attr,
139 &dev_attr_max.attr,
140 &dev_attr_min.attr,
141 NULL
142};
143
144static struct attribute_group input_polldev_attribute_group = {
145 .attrs = sysfs_attrs
146};
147
Dmitry Torokhov0dcd8072007-04-29 23:42:45 -0400148/**
Dmitry Torokhov2546bcc2011-01-31 21:06:34 -0800149 * input_allocate_polled_device - allocate memory for polled device
Dmitry Torokhov0dcd8072007-04-29 23:42:45 -0400150 *
151 * The function allocates memory for a polled device and also
152 * for an input device associated with this polled device.
153 */
154struct input_polled_dev *input_allocate_polled_device(void)
155{
156 struct input_polled_dev *dev;
157
158 dev = kzalloc(sizeof(struct input_polled_dev), GFP_KERNEL);
159 if (!dev)
160 return NULL;
161
162 dev->input = input_allocate_device();
163 if (!dev->input) {
164 kfree(dev);
165 return NULL;
166 }
167
168 return dev;
169}
170EXPORT_SYMBOL(input_allocate_polled_device);
171
172/**
173 * input_free_polled_device - free memory allocated for polled device
174 * @dev: device to free
175 *
176 * The function frees memory allocated for polling device and drops
Dmitry Torokhov36203c42009-12-04 10:22:23 -0800177 * reference to the associated input device.
Dmitry Torokhov0dcd8072007-04-29 23:42:45 -0400178 */
179void input_free_polled_device(struct input_polled_dev *dev)
180{
181 if (dev) {
182 input_free_device(dev->input);
183 kfree(dev);
184 }
185}
186EXPORT_SYMBOL(input_free_polled_device);
187
188/**
189 * input_register_polled_device - register polled device
190 * @dev: device to register
191 *
192 * The function registers previously initialized polled input device
193 * with input layer. The device should be allocated with call to
194 * input_allocate_polled_device(). Callers should also set up poll()
195 * method and set up capabilities (id, name, phys, bits) of the
Dmitry Torokhov2546bcc2011-01-31 21:06:34 -0800196 * corresponding input_dev structure.
Dmitry Torokhov0dcd8072007-04-29 23:42:45 -0400197 */
198int input_register_polled_device(struct input_polled_dev *dev)
199{
200 struct input_dev *input = dev->input;
Samu Onkalodad725d2009-11-13 21:13:22 -0800201 int error;
Dmitry Torokhov0dcd8072007-04-29 23:42:45 -0400202
Dmitry Torokhov3797fec2008-04-02 00:41:00 -0400203 input_set_drvdata(input, dev);
Dmitry Torokhov0dcd8072007-04-29 23:42:45 -0400204 INIT_DELAYED_WORK(&dev->work, input_polled_device_work);
205 if (!dev->poll_interval)
206 dev->poll_interval = 500;
Samu Onkalodad725d2009-11-13 21:13:22 -0800207 if (!dev->poll_interval_max)
208 dev->poll_interval_max = dev->poll_interval;
Dmitry Torokhov0dcd8072007-04-29 23:42:45 -0400209 input->open = input_open_polled_device;
210 input->close = input_close_polled_device;
211
Samu Onkalodad725d2009-11-13 21:13:22 -0800212 error = input_register_device(input);
213 if (error)
214 return error;
215
216 error = sysfs_create_group(&input->dev.kobj,
217 &input_polldev_attribute_group);
218 if (error) {
219 input_unregister_device(input);
220 return error;
221 }
222
Dmitry Torokhov36203c42009-12-04 10:22:23 -0800223 /*
224 * Take extra reference to the underlying input device so
225 * that it survives call to input_unregister_polled_device()
226 * and is deleted only after input_free_polled_device()
227 * has been invoked. This is needed to ease task of freeing
228 * sparse keymaps.
229 */
230 input_get_device(input);
231
Samu Onkalodad725d2009-11-13 21:13:22 -0800232 return 0;
Dmitry Torokhov0dcd8072007-04-29 23:42:45 -0400233}
234EXPORT_SYMBOL(input_register_polled_device);
235
236/**
237 * input_unregister_polled_device - unregister polled device
238 * @dev: device to unregister
239 *
240 * The function unregisters previously registered polled input
241 * device from input layer. Polling is stopped and device is
242 * ready to be freed with call to input_free_polled_device().
Dmitry Torokhov0dcd8072007-04-29 23:42:45 -0400243 */
244void input_unregister_polled_device(struct input_polled_dev *dev)
245{
Samu Onkalodad725d2009-11-13 21:13:22 -0800246 sysfs_remove_group(&dev->input->dev.kobj,
247 &input_polldev_attribute_group);
248
Dmitry Torokhov0dcd8072007-04-29 23:42:45 -0400249 input_unregister_device(dev->input);
Dmitry Torokhov0dcd8072007-04-29 23:42:45 -0400250}
251EXPORT_SYMBOL(input_unregister_polled_device);