blob: 3ec760a98061b4288f724124990db81c1dd9d5d8 [file] [log] [blame]
Mauro Carvalho Chehab4714eda2009-12-13 16:00:08 -03001/* ir-register.c - handle IR scancode->keycode tables
2 *
Mauro Carvalho Chehab995187b2010-03-24 20:47:53 -03003 * Copyright (C) 2009-2010 by Mauro Carvalho Chehab <mchehab@redhat.com>
Mauro Carvalho Chehab4714eda2009-12-13 16:00:08 -03004 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation version 2 of the License.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 */
14
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090015#include <linux/slab.h>
Mauro Carvalho Chehab4714eda2009-12-13 16:00:08 -030016#include <linux/input.h>
17#include <linux/device.h>
Mauro Carvalho Chehab3f113e32010-04-08 15:10:27 -030018#include "ir-core-priv.h"
Mauro Carvalho Chehab4714eda2009-12-13 16:00:08 -030019
20#define IRRCV_NUM_DEVICES 256
21
Mauro Carvalho Chehabd4b778d2009-12-14 02:55:03 -030022/* bit array to represent IR sysfs device number */
23static unsigned long ir_core_dev_number;
Mauro Carvalho Chehab4714eda2009-12-13 16:00:08 -030024
Mauro Carvalho Chehabe202c152010-03-26 22:45:16 -030025/* class for /sys/class/rc */
Mauro Carvalho Chehab945cdfa2010-03-11 12:41:56 -030026static char *ir_devnode(struct device *dev, mode_t *mode)
27{
Mauro Carvalho Chehabe202c152010-03-26 22:45:16 -030028 return kasprintf(GFP_KERNEL, "rc/%s", dev_name(dev));
Mauro Carvalho Chehab945cdfa2010-03-11 12:41:56 -030029}
30
Mauro Carvalho Chehab995187b2010-03-24 20:47:53 -030031static struct class ir_input_class = {
Mauro Carvalho Chehabe202c152010-03-26 22:45:16 -030032 .name = "rc",
Mauro Carvalho Chehab945cdfa2010-03-11 12:41:56 -030033 .devnode = ir_devnode,
34};
Mauro Carvalho Chehab4714eda2009-12-13 16:00:08 -030035
Mauro Carvalho Chehabd4b778d2009-12-14 02:55:03 -030036/**
37 * show_protocol() - shows the current IR protocol
38 * @d: the device descriptor
39 * @mattr: the device attribute struct (unused)
40 * @buf: a pointer to the output buffer
41 *
42 * This routine is a callback routine for input read the IR protocol type.
David Härdemande88f312010-03-28 18:38:49 -030043 * it is trigged by reading /sys/class/rc/rc?/current_protocol.
Mauro Carvalho Chehabd4b778d2009-12-14 02:55:03 -030044 * It returns the protocol name, as understood by the driver.
45 */
Mauro Carvalho Chehab53f87022009-12-14 02:16:36 -030046static ssize_t show_protocol(struct device *d,
47 struct device_attribute *mattr, char *buf)
48{
49 char *s;
50 struct ir_input_dev *ir_dev = dev_get_drvdata(d);
Mauro Carvalho Chehab971e8292009-12-14 13:53:37 -030051 u64 ir_type = ir_dev->rc_tab.ir_type;
Mauro Carvalho Chehab53f87022009-12-14 02:16:36 -030052
Mauro Carvalho Chehab971e8292009-12-14 13:53:37 -030053 IR_dprintk(1, "Current protocol is %lld\n", (long long)ir_type);
Mauro Carvalho Chehab53f87022009-12-14 02:16:36 -030054
55 /* FIXME: doesn't support multiple protocols at the same time */
56 if (ir_type == IR_TYPE_UNKNOWN)
57 s = "Unknown";
58 else if (ir_type == IR_TYPE_RC5)
Mauro Carvalho Chehabb320f802010-04-08 01:02:49 -030059 s = "rc-5";
Mauro Carvalho Chehab53f87022009-12-14 02:16:36 -030060 else if (ir_type == IR_TYPE_PD)
Mauro Carvalho Chehabb320f802010-04-08 01:02:49 -030061 s = "pulse-distance";
Mauro Carvalho Chehab53f87022009-12-14 02:16:36 -030062 else if (ir_type == IR_TYPE_NEC)
Mauro Carvalho Chehabb320f802010-04-08 01:02:49 -030063 s = "nec";
David Härdeman784a4932010-04-08 20:04:40 -030064 else if (ir_type == IR_TYPE_RC6)
65 s = "rc6";
David Härdemanbf670f62010-04-15 18:46:05 -030066 else if (ir_type == IR_TYPE_JVC)
67 s = "jvc";
Mauro Carvalho Chehab53f87022009-12-14 02:16:36 -030068 else
Mauro Carvalho Chehabb320f802010-04-08 01:02:49 -030069 s = "other";
Mauro Carvalho Chehab53f87022009-12-14 02:16:36 -030070
71 return sprintf(buf, "%s\n", s);
72}
73
Mauro Carvalho Chehabd4b778d2009-12-14 02:55:03 -030074/**
75 * store_protocol() - shows the current IR protocol
76 * @d: the device descriptor
77 * @mattr: the device attribute struct (unused)
78 * @buf: a pointer to the input buffer
79 * @len: length of the input buffer
80 *
81 * This routine is a callback routine for changing the IR protocol type.
David Härdemande88f312010-03-28 18:38:49 -030082 * it is trigged by reading /sys/class/rc/rc?/current_protocol.
Mauro Carvalho Chehabd4b778d2009-12-14 02:55:03 -030083 * It changes the IR the protocol name, if the IR type is recognized
84 * by the driver.
85 * If an unknown protocol name is used, returns -EINVAL.
86 */
Mauro Carvalho Chehab09b01b92009-12-14 02:46:42 -030087static ssize_t store_protocol(struct device *d,
88 struct device_attribute *mattr,
89 const char *data,
90 size_t len)
91{
92 struct ir_input_dev *ir_dev = dev_get_drvdata(d);
Mauro Carvalho Chehabb320f802010-04-08 01:02:49 -030093 u64 ir_type = 0;
Mauro Carvalho Chehab09b01b92009-12-14 02:46:42 -030094 int rc = -EINVAL;
Mauro Carvalho Chehabeecee322009-12-14 02:56:15 -030095 unsigned long flags;
Mauro Carvalho Chehab09b01b92009-12-14 02:46:42 -030096 char *buf;
97
Mauro Carvalho Chehabd22e5462010-04-08 09:33:45 -030098 while ((buf = strsep((char **) &data, " \n")) != NULL) {
Mauro Carvalho Chehabb320f802010-04-08 01:02:49 -030099 if (!strcasecmp(buf, "rc-5") || !strcasecmp(buf, "rc5"))
100 ir_type |= IR_TYPE_RC5;
101 if (!strcasecmp(buf, "pd") || !strcasecmp(buf, "pulse-distance"))
102 ir_type |= IR_TYPE_PD;
103 if (!strcasecmp(buf, "nec"))
104 ir_type |= IR_TYPE_NEC;
David Härdemanbf670f62010-04-15 18:46:05 -0300105 if (!strcasecmp(buf, "jvc"))
106 ir_type |= IR_TYPE_JVC;
Mauro Carvalho Chehabb320f802010-04-08 01:02:49 -0300107 }
Mauro Carvalho Chehab09b01b92009-12-14 02:46:42 -0300108
Mauro Carvalho Chehabb320f802010-04-08 01:02:49 -0300109 if (!ir_type) {
110 IR_dprintk(1, "Unknown protocol\n");
Mauro Carvalho Chehab09b01b92009-12-14 02:46:42 -0300111 return -EINVAL;
112 }
113
Mauro Carvalho Chehab0f7ff392009-12-16 23:46:48 -0300114 if (ir_dev->props && ir_dev->props->change_protocol)
Mauro Carvalho Chehab09b01b92009-12-14 02:46:42 -0300115 rc = ir_dev->props->change_protocol(ir_dev->props->priv,
116 ir_type);
117
118 if (rc < 0) {
Mauro Carvalho Chehab971e8292009-12-14 13:53:37 -0300119 IR_dprintk(1, "Error setting protocol to %lld\n",
120 (long long)ir_type);
Mauro Carvalho Chehab09b01b92009-12-14 02:46:42 -0300121 return -EINVAL;
122 }
123
Mauro Carvalho Chehabeecee322009-12-14 02:56:15 -0300124 spin_lock_irqsave(&ir_dev->rc_tab.lock, flags);
Mauro Carvalho Chehab09b01b92009-12-14 02:46:42 -0300125 ir_dev->rc_tab.ir_type = ir_type;
Mauro Carvalho Chehabeecee322009-12-14 02:56:15 -0300126 spin_unlock_irqrestore(&ir_dev->rc_tab.lock, flags);
Mauro Carvalho Chehab09b01b92009-12-14 02:46:42 -0300127
Mauro Carvalho Chehabb320f802010-04-08 01:02:49 -0300128 IR_dprintk(1, "Current protocol(s) is(are) %lld\n",
Mauro Carvalho Chehab971e8292009-12-14 13:53:37 -0300129 (long long)ir_type);
Mauro Carvalho Chehab09b01b92009-12-14 02:46:42 -0300130
131 return len;
132}
133
Mauro Carvalho Chehabb320f802010-04-08 01:02:49 -0300134static ssize_t show_supported_protocols(struct device *d,
135 struct device_attribute *mattr, char *buf)
136{
137 char *orgbuf = buf;
138 struct ir_input_dev *ir_dev = dev_get_drvdata(d);
139
140 /* FIXME: doesn't support multiple protocols at the same time */
141 if (ir_dev->props->allowed_protos == IR_TYPE_UNKNOWN)
142 buf += sprintf(buf, "unknown ");
143 if (ir_dev->props->allowed_protos & IR_TYPE_RC5)
144 buf += sprintf(buf, "rc-5 ");
145 if (ir_dev->props->allowed_protos & IR_TYPE_PD)
146 buf += sprintf(buf, "pulse-distance ");
147 if (ir_dev->props->allowed_protos & IR_TYPE_NEC)
148 buf += sprintf(buf, "nec ");
149 if (buf == orgbuf)
150 buf += sprintf(buf, "other ");
151
152 buf += sprintf(buf - 1, "\n");
153
154 return buf - orgbuf;
155}
Mauro Carvalho Chehab9c89a182010-03-12 11:50:17 -0300156
157#define ADD_HOTPLUG_VAR(fmt, val...) \
158 do { \
159 int err = add_uevent_var(env, fmt, val); \
160 if (err) \
161 return err; \
162 } while (0)
163
164static int ir_dev_uevent(struct device *device, struct kobj_uevent_env *env)
165{
166 struct ir_input_dev *ir_dev = dev_get_drvdata(device);
167
168 if (ir_dev->rc_tab.name)
Mauro Carvalho Chehab3efaa062010-04-10 23:43:39 -0300169 ADD_HOTPLUG_VAR("NAME=%s", ir_dev->rc_tab.name);
Mauro Carvalho Chehab727e6252010-03-12 21:18:14 -0300170 if (ir_dev->driver_name)
Mauro Carvalho Chehab3efaa062010-04-10 23:43:39 -0300171 ADD_HOTPLUG_VAR("DRV_NAME=%s", ir_dev->driver_name);
Mauro Carvalho Chehab9c89a182010-03-12 11:50:17 -0300172
173 return 0;
174}
175
Mauro Carvalho Chehabd4b778d2009-12-14 02:55:03 -0300176/*
177 * Static device attribute struct with the sysfs attributes for IR's
178 */
Mauro Carvalho Chehabb320f802010-04-08 01:02:49 -0300179static DEVICE_ATTR(protocol, S_IRUGO | S_IWUSR,
Mauro Carvalho Chehab09b01b92009-12-14 02:46:42 -0300180 show_protocol, store_protocol);
Mauro Carvalho Chehab4714eda2009-12-13 16:00:08 -0300181
Mauro Carvalho Chehabb320f802010-04-08 01:02:49 -0300182static DEVICE_ATTR(supported_protocols, S_IRUGO | S_IWUSR,
183 show_supported_protocols, NULL);
184
Mauro Carvalho Chehab626cf692010-04-06 23:21:46 -0300185static struct attribute *ir_hw_dev_attrs[] = {
Mauro Carvalho Chehabb320f802010-04-08 01:02:49 -0300186 &dev_attr_protocol.attr,
187 &dev_attr_supported_protocols.attr,
Francesco Lavra9714d582009-12-29 15:48:04 -0300188 NULL,
Mauro Carvalho Chehab4714eda2009-12-13 16:00:08 -0300189};
190
Mauro Carvalho Chehab626cf692010-04-06 23:21:46 -0300191static struct attribute_group ir_hw_dev_attr_grp = {
192 .attrs = ir_hw_dev_attrs,
Mauro Carvalho Chehab945cdfa2010-03-11 12:41:56 -0300193};
194
Mauro Carvalho Chehab626cf692010-04-06 23:21:46 -0300195static const struct attribute_group *ir_hw_dev_attr_groups[] = {
196 &ir_hw_dev_attr_grp,
Mauro Carvalho Chehab945cdfa2010-03-11 12:41:56 -0300197 NULL
198};
199
Mauro Carvalho Chehab626cf692010-04-06 23:21:46 -0300200static struct device_type rc_dev_type = {
201 .groups = ir_hw_dev_attr_groups,
202 .uevent = ir_dev_uevent,
203};
204
205static struct device_type ir_raw_dev_type = {
Mauro Carvalho Chehab9c89a182010-03-12 11:50:17 -0300206 .uevent = ir_dev_uevent,
Mauro Carvalho Chehab945cdfa2010-03-11 12:41:56 -0300207};
208
Mauro Carvalho Chehabd4b778d2009-12-14 02:55:03 -0300209/**
David Härdemande88f312010-03-28 18:38:49 -0300210 * ir_register_class() - creates the sysfs for /sys/class/rc/rc?
Mauro Carvalho Chehabd4b778d2009-12-14 02:55:03 -0300211 * @input_dev: the struct input_dev descriptor of the device
212 *
213 * This routine is used to register the syfs code for IR class
214 */
Mauro Carvalho Chehab4714eda2009-12-13 16:00:08 -0300215int ir_register_class(struct input_dev *input_dev)
216{
217 int rc;
Mauro Carvalho Chehab945cdfa2010-03-11 12:41:56 -0300218 const char *path;
Mauro Carvalho Chehab4714eda2009-12-13 16:00:08 -0300219 struct ir_input_dev *ir_dev = input_get_drvdata(input_dev);
220 int devno = find_first_zero_bit(&ir_core_dev_number,
221 IRRCV_NUM_DEVICES);
222
223 if (unlikely(devno < 0))
224 return devno;
225
Mauro Carvalho Chehab626cf692010-04-06 23:21:46 -0300226 if (ir_dev->props->driver_type == RC_DRIVER_SCANCODE)
227 ir_dev->dev.type = &rc_dev_type;
228 else
229 ir_dev->dev.type = &ir_raw_dev_type;
230
Mauro Carvalho Chehab945cdfa2010-03-11 12:41:56 -0300231 ir_dev->dev.class = &ir_input_class;
232 ir_dev->dev.parent = input_dev->dev.parent;
David Härdemande88f312010-03-28 18:38:49 -0300233 dev_set_name(&ir_dev->dev, "rc%d", devno);
Mauro Carvalho Chehab9c89a182010-03-12 11:50:17 -0300234 dev_set_drvdata(&ir_dev->dev, ir_dev);
Mauro Carvalho Chehab945cdfa2010-03-11 12:41:56 -0300235 rc = device_register(&ir_dev->dev);
236 if (rc)
237 return rc;
Mauro Carvalho Chehab4714eda2009-12-13 16:00:08 -0300238
Mauro Carvalho Chehab945cdfa2010-03-11 12:41:56 -0300239
240 input_dev->dev.parent = &ir_dev->dev;
241 rc = input_register_device(input_dev);
242 if (rc < 0) {
243 device_del(&ir_dev->dev);
244 return rc;
Mauro Carvalho Chehab4714eda2009-12-13 16:00:08 -0300245 }
246
Mauro Carvalho Chehab945cdfa2010-03-11 12:41:56 -0300247 __module_get(THIS_MODULE);
248
Mauro Carvalho Chehab9c89a182010-03-12 11:50:17 -0300249 path = kobject_get_path(&ir_dev->dev.kobj, GFP_KERNEL);
250 printk(KERN_INFO "%s: %s as %s\n",
Mauro Carvalho Chehab945cdfa2010-03-11 12:41:56 -0300251 dev_name(&ir_dev->dev),
252 input_dev->name ? input_dev->name : "Unspecified device",
253 path ? path : "N/A");
254 kfree(path);
255
Mauro Carvalho Chehab4714eda2009-12-13 16:00:08 -0300256 ir_dev->devno = devno;
257 set_bit(devno, &ir_core_dev_number);
258
259 return 0;
260};
261
Mauro Carvalho Chehabd4b778d2009-12-14 02:55:03 -0300262/**
263 * ir_unregister_class() - removes the sysfs for sysfs for
David Härdemande88f312010-03-28 18:38:49 -0300264 * /sys/class/rc/rc?
Mauro Carvalho Chehabd4b778d2009-12-14 02:55:03 -0300265 * @input_dev: the struct input_dev descriptor of the device
266 *
267 * This routine is used to unregister the syfs code for IR class
268 */
Mauro Carvalho Chehab4714eda2009-12-13 16:00:08 -0300269void ir_unregister_class(struct input_dev *input_dev)
270{
271 struct ir_input_dev *ir_dev = input_get_drvdata(input_dev);
Mauro Carvalho Chehab4714eda2009-12-13 16:00:08 -0300272
273 clear_bit(ir_dev->devno, &ir_core_dev_number);
Mauro Carvalho Chehab945cdfa2010-03-11 12:41:56 -0300274 input_unregister_device(input_dev);
275 device_del(&ir_dev->dev);
Mauro Carvalho Chehab4714eda2009-12-13 16:00:08 -0300276
Mauro Carvalho Chehab945cdfa2010-03-11 12:41:56 -0300277 module_put(THIS_MODULE);
Mauro Carvalho Chehab4714eda2009-12-13 16:00:08 -0300278}
279
Mauro Carvalho Chehabd4b778d2009-12-14 02:55:03 -0300280/*
Mauro Carvalho Chehabe202c152010-03-26 22:45:16 -0300281 * Init/exit code for the module. Basically, creates/removes /sys/class/rc
Mauro Carvalho Chehabd4b778d2009-12-14 02:55:03 -0300282 */
283
Mauro Carvalho Chehab4714eda2009-12-13 16:00:08 -0300284static int __init ir_core_init(void)
285{
Mauro Carvalho Chehab945cdfa2010-03-11 12:41:56 -0300286 int rc = class_register(&ir_input_class);
287 if (rc) {
Mauro Carvalho Chehabe202c152010-03-26 22:45:16 -0300288 printk(KERN_ERR "ir_core: unable to register rc class\n");
Mauro Carvalho Chehab945cdfa2010-03-11 12:41:56 -0300289 return rc;
Mauro Carvalho Chehab4714eda2009-12-13 16:00:08 -0300290 }
291
Mauro Carvalho Chehab02858ee2010-04-02 20:01:00 -0300292 /* Initialize/load the decoders/keymap code that will be used */
Mauro Carvalho Chehab995187b2010-03-24 20:47:53 -0300293 ir_raw_init();
Mauro Carvalho Chehab02858ee2010-04-02 20:01:00 -0300294 rc_map_init();
295
Mauro Carvalho Chehab995187b2010-03-24 20:47:53 -0300296
Mauro Carvalho Chehab4714eda2009-12-13 16:00:08 -0300297 return 0;
298}
299
300static void __exit ir_core_exit(void)
301{
Mauro Carvalho Chehab945cdfa2010-03-11 12:41:56 -0300302 class_unregister(&ir_input_class);
Mauro Carvalho Chehab4714eda2009-12-13 16:00:08 -0300303}
304
305module_init(ir_core_init);
306module_exit(ir_core_exit);