blob: 0b50060ffbafae18cb5e76af93f477943fe71f93 [file] [log] [blame]
Mauro Carvalho Chehab995187b2010-03-24 20:47:53 -03001/* ir-nec-decoder.c - handle NEC IR Pulse/Space protocol
Mauro Carvalho Chehaba3572c32010-03-20 20:59:44 -03002 *
3 * Copyright (C) 2010 by Mauro Carvalho Chehab <mchehab@redhat.com>
4 *
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
15#include <media/ir-core.h>
16
Mauro Carvalho Chehab9f154782010-03-21 13:00:55 -030017/* Start time: 4.5 ms + 560 us of the next pulse */
18#define MIN_START_TIME (3900000 + 560000)
19#define MAX_START_TIME (5100000 + 560000)
Mauro Carvalho Chehaba3572c32010-03-20 20:59:44 -030020
Mauro Carvalho Chehab9f154782010-03-21 13:00:55 -030021/* Bit 1 time: 2.25ms us */
22#define MIN_BIT1_TIME 2050000
23#define MAX_BIT1_TIME 2450000
Mauro Carvalho Chehaba3572c32010-03-20 20:59:44 -030024
Mauro Carvalho Chehab9f154782010-03-21 13:00:55 -030025/* Bit 0 time: 1.12ms us */
26#define MIN_BIT0_TIME 920000
27#define MAX_BIT0_TIME 1320000
Mauro Carvalho Chehaba3572c32010-03-20 20:59:44 -030028
Mauro Carvalho Chehab9f154782010-03-21 13:00:55 -030029/* Total IR code is 110 ms, including the 9 ms for the start pulse */
30#define MAX_NEC_TIME 4000000
31
32/* Total IR code is 110 ms, including the 9 ms for the start pulse */
33#define MIN_REPEAT_TIME 99000000
34#define MAX_REPEAT_TIME 112000000
35
36/* Repeat time: 2.25ms us */
37#define MIN_REPEAT_START_TIME 2050000
38#define MAX_REPEAT_START_TIME 3000000
39
40#define REPEAT_TIME 240 /* ms */
41
Mauro Carvalho Chehab20d5f112010-03-25 23:49:46 -030042/* Used to register nec_decoder clients */
43static LIST_HEAD(decoder_list);
44static spinlock_t decoder_lock;
45
46struct decoder_data {
47 struct list_head list;
48 struct ir_input_dev *ir_dev;
49 int enabled:1;
50};
51
52
53/**
54 * get_decoder_data() - gets decoder data
55 * @input_dev: input device
56 *
57 * Returns the struct decoder_data that corresponds to a device
58 */
59
60static struct decoder_data *get_decoder_data(struct ir_input_dev *ir_dev)
61{
62 struct decoder_data *data = NULL;
63
64 spin_lock(&decoder_lock);
65 list_for_each_entry(data, &decoder_list, list) {
66 if (data->ir_dev == ir_dev)
67 break;
68 }
69 spin_unlock(&decoder_lock);
70 return data;
71}
72
73static ssize_t store_enabled(struct device *d,
74 struct device_attribute *mattr,
75 const char *buf,
76 size_t len)
77{
78 unsigned long value;
79 struct ir_input_dev *ir_dev = dev_get_drvdata(d);
80 struct decoder_data *data = get_decoder_data(ir_dev);
81
82 if (!data)
83 return -EINVAL;
84
85 if (strict_strtoul(buf, 10, &value) || value > 1)
86 return -EINVAL;
87
88 data->enabled = value;
89
90 return len;
91}
92
93static ssize_t show_enabled(struct device *d,
94 struct device_attribute *mattr, char *buf)
95{
96 struct ir_input_dev *ir_dev = dev_get_drvdata(d);
97 struct decoder_data *data = get_decoder_data(ir_dev);
98
99 if (!data)
100 return -EINVAL;
101
102 if (data->enabled)
103 return sprintf(buf, "1\n");
104 else
105 return sprintf(buf, "0\n");
106}
107
108static DEVICE_ATTR(enabled, S_IRUGO | S_IWUSR, show_enabled, store_enabled);
109
110static struct attribute *decoder_attributes[] = {
111 &dev_attr_enabled.attr,
112 NULL
113};
114
115static struct attribute_group decoder_attribute_group = {
116 .name = "nec_decoder",
117 .attrs = decoder_attributes,
118};
119
120
Mauro Carvalho Chehab9f154782010-03-21 13:00:55 -0300121/** is_repeat - Check if it is a NEC repeat event
122 * @input_dev: the struct input_dev descriptor of the device
123 * @pos: the position of the first event
124 * @len: the length of the buffer
125 */
126static int is_repeat(struct ir_raw_event *evs, int len, int pos)
127{
128 if ((evs[pos].delta.tv_nsec < MIN_REPEAT_START_TIME) ||
129 (evs[pos].delta.tv_nsec > MAX_REPEAT_START_TIME))
130 return 0;
131
132 if (++pos >= len)
133 return 0;
134
135 if ((evs[pos].delta.tv_nsec < MIN_REPEAT_TIME) ||
136 (evs[pos].delta.tv_nsec > MAX_REPEAT_TIME))
137 return 0;
138
139 return 1;
140}
Mauro Carvalho Chehaba3572c32010-03-20 20:59:44 -0300141
Mauro Carvalho Chehabada39632010-03-21 12:24:24 -0300142/**
143 * __ir_nec_decode() - Decode one NEC pulsecode
144 * @input_dev: the struct input_dev descriptor of the device
145 * @evs: event array with type/duration of pulse/space
146 * @len: length of the array
147 * @pos: position to start seeking for a code
Mauro Carvalho Chehab9f154782010-03-21 13:00:55 -0300148 * This function returns -EINVAL if no pulse got decoded,
149 * 0 if buffer is empty and 1 if one keycode were handled.
Mauro Carvalho Chehabada39632010-03-21 12:24:24 -0300150 */
151static int __ir_nec_decode(struct input_dev *input_dev,
152 struct ir_raw_event *evs,
153 int len, int *pos)
Mauro Carvalho Chehaba3572c32010-03-20 20:59:44 -0300154{
Mauro Carvalho Chehab9f154782010-03-21 13:00:55 -0300155 struct ir_input_dev *ir = input_get_drvdata(input_dev);
Mauro Carvalho Chehabada39632010-03-21 12:24:24 -0300156 int count = -1;
Mauro Carvalho Chehaba3572c32010-03-20 20:59:44 -0300157 int ircode = 0, not_code = 0;
Mauro Carvalho Chehaba3572c32010-03-20 20:59:44 -0300158
159 /* Be sure that the first event is an start one and is a pulse */
Mauro Carvalho Chehabada39632010-03-21 12:24:24 -0300160 for (; *pos < len; (*pos)++) {
Mauro Carvalho Chehab9f154782010-03-21 13:00:55 -0300161 /* Very long delays are considered as start events */
162 if (evs[*pos].delta.tv_nsec > MAX_NEC_TIME)
Mauro Carvalho Chehaba3572c32010-03-20 20:59:44 -0300163 break;
Mauro Carvalho Chehab9f154782010-03-21 13:00:55 -0300164 if (evs[*pos].type & IR_START_EVENT)
165 break;
166 IR_dprintk(1, "%luus: Spurious NEC %s\n",
167 (evs[*pos].delta.tv_nsec + 500) / 1000,
168 (evs[*pos].type & IR_SPACE) ? "space" : "pulse");
Mauro Carvalho Chehaba3572c32010-03-20 20:59:44 -0300169
Mauro Carvalho Chehab9f154782010-03-21 13:00:55 -0300170 }
Mauro Carvalho Chehabada39632010-03-21 12:24:24 -0300171 if (*pos >= len)
Mauro Carvalho Chehaba3572c32010-03-20 20:59:44 -0300172 return 0;
173
Mauro Carvalho Chehab9f154782010-03-21 13:00:55 -0300174 (*pos)++; /* First event doesn't contain data */
175
176 if (evs[*pos].type != IR_PULSE)
Mauro Carvalho Chehaba3572c32010-03-20 20:59:44 -0300177 goto err;
178
Mauro Carvalho Chehab9f154782010-03-21 13:00:55 -0300179 /* Check if it is a NEC repeat event */
180 if (is_repeat(evs, len, *pos)) {
181 *pos += 2;
182 if (ir->keypressed) {
David Härdemana374fef2010-04-02 15:58:29 -0300183 ir_repeat(input_dev);
Mauro Carvalho Chehab9f154782010-03-21 13:00:55 -0300184 IR_dprintk(1, "NEC repeat event\n");
185 return 1;
186 } else {
187 IR_dprintk(1, "missing NEC repeat event\n");
188 return 0;
189 }
190 }
191
192 /* First space should have 4.5 ms otherwise is not NEC protocol */
193 if ((evs[*pos].delta.tv_nsec < MIN_START_TIME) ||
194 (evs[*pos].delta.tv_nsec > MAX_START_TIME))
195 goto err;
Mauro Carvalho Chehaba3572c32010-03-20 20:59:44 -0300196
197 count = 0;
Mauro Carvalho Chehabada39632010-03-21 12:24:24 -0300198 for ((*pos)++; *pos < len; (*pos)++) {
Mauro Carvalho Chehaba3572c32010-03-20 20:59:44 -0300199 int bit;
Mauro Carvalho Chehabada39632010-03-21 12:24:24 -0300200 if ((evs[*pos].delta.tv_nsec > MIN_BIT1_TIME) &&
201 (evs[*pos].delta.tv_nsec < MAX_BIT1_TIME))
Mauro Carvalho Chehaba3572c32010-03-20 20:59:44 -0300202 bit = 1;
Mauro Carvalho Chehabada39632010-03-21 12:24:24 -0300203 else if ((evs[*pos].delta.tv_nsec > MIN_BIT0_TIME) &&
204 (evs[*pos].delta.tv_nsec < MAX_BIT0_TIME))
Mauro Carvalho Chehaba3572c32010-03-20 20:59:44 -0300205 bit = 0;
206 else
207 goto err;
208
209 if (bit) {
210 int shift = count;
211 /* Address first, then command */
212 if (shift < 8) {
213 shift += 8;
214 ircode |= 1 << shift;
215 } else if (shift < 16) {
216 not_code |= 1 << shift;
217 } else if (shift < 24) {
218 shift -= 16;
219 ircode |= 1 << shift;
220 } else {
221 shift -= 24;
222 not_code |= 1 << shift;
223 }
224 }
225 if (++count == 32)
226 break;
227 }
Mauro Carvalho Chehab995187b2010-03-24 20:47:53 -0300228 (*pos)++;
Mauro Carvalho Chehaba3572c32010-03-20 20:59:44 -0300229
230 /*
231 * Fixme: may need to accept Extended NEC protocol?
232 */
233 if ((ircode & ~not_code) != ircode) {
234 IR_dprintk(1, "NEC checksum error: code 0x%04x, not-code 0x%04x\n",
235 ircode, not_code);
236 return -EINVAL;
237 }
238
239 IR_dprintk(1, "NEC scancode 0x%04x\n", ircode);
David Härdemana374fef2010-04-02 15:58:29 -0300240 ir_keydown(input_dev, ircode, 0);
Mauro Carvalho Chehaba3572c32010-03-20 20:59:44 -0300241
Mauro Carvalho Chehab9f154782010-03-21 13:00:55 -0300242 return 1;
Mauro Carvalho Chehaba3572c32010-03-20 20:59:44 -0300243err:
Mauro Carvalho Chehab9f154782010-03-21 13:00:55 -0300244 IR_dprintk(1, "NEC decoded failed at bit %d (%s) while decoding %luus time\n",
245 count,
246 (evs[*pos].type & IR_SPACE) ? "space" : "pulse",
247 (evs[*pos].delta.tv_nsec + 500) / 1000);
Mauro Carvalho Chehaba3572c32010-03-20 20:59:44 -0300248
249 return -EINVAL;
250}
Mauro Carvalho Chehabada39632010-03-21 12:24:24 -0300251
252/**
253 * __ir_nec_decode() - Decodes all NEC pulsecodes on a given array
254 * @input_dev: the struct input_dev descriptor of the device
255 * @evs: event array with type/duration of pulse/space
256 * @len: length of the array
Mauro Carvalho Chehab93c312f2010-03-25 21:13:43 -0300257 * This function returns the number of decoded pulses
Mauro Carvalho Chehabada39632010-03-21 12:24:24 -0300258 */
Mauro Carvalho Chehab995187b2010-03-24 20:47:53 -0300259static int ir_nec_decode(struct input_dev *input_dev,
260 struct ir_raw_event *evs,
261 int len)
Mauro Carvalho Chehabada39632010-03-21 12:24:24 -0300262{
Mauro Carvalho Chehab20d5f112010-03-25 23:49:46 -0300263 struct ir_input_dev *ir_dev = input_get_drvdata(input_dev);
264 struct decoder_data *data;
Mauro Carvalho Chehabada39632010-03-21 12:24:24 -0300265 int pos = 0;
266 int rc = 0;
267
Mauro Carvalho Chehab20d5f112010-03-25 23:49:46 -0300268 data = get_decoder_data(ir_dev);
269 if (!data || !data->enabled)
270 return 0;
271
Mauro Carvalho Chehabada39632010-03-21 12:24:24 -0300272 while (pos < len) {
Mauro Carvalho Chehab9f154782010-03-21 13:00:55 -0300273 if (__ir_nec_decode(input_dev, evs, len, &pos) > 0)
Mauro Carvalho Chehabada39632010-03-21 12:24:24 -0300274 rc++;
275 }
Mauro Carvalho Chehabada39632010-03-21 12:24:24 -0300276 return rc;
277}
278
Mauro Carvalho Chehab20d5f112010-03-25 23:49:46 -0300279static int ir_nec_register(struct input_dev *input_dev)
280{
281 struct ir_input_dev *ir_dev = input_get_drvdata(input_dev);
282 struct decoder_data *data;
283 int rc;
284
285 rc = sysfs_create_group(&ir_dev->dev.kobj, &decoder_attribute_group);
286 if (rc < 0)
287 return rc;
288
289 data = kzalloc(sizeof(*data), GFP_KERNEL);
290 if (!data) {
291 sysfs_remove_group(&ir_dev->dev.kobj, &decoder_attribute_group);
292 return -ENOMEM;
293 }
294
295 data->ir_dev = ir_dev;
296 data->enabled = 1;
297
298 spin_lock(&decoder_lock);
299 list_add_tail(&data->list, &decoder_list);
300 spin_unlock(&decoder_lock);
301
302 return 0;
303}
304
305static int ir_nec_unregister(struct input_dev *input_dev)
306{
307 struct ir_input_dev *ir_dev = input_get_drvdata(input_dev);
308 static struct decoder_data *data;
309
310 data = get_decoder_data(ir_dev);
311 if (!data)
312 return 0;
313
314 sysfs_remove_group(&ir_dev->dev.kobj, &decoder_attribute_group);
315
316 spin_lock(&decoder_lock);
317 list_del(&data->list);
318 spin_unlock(&decoder_lock);
319
320 return 0;
321}
322
Mauro Carvalho Chehab995187b2010-03-24 20:47:53 -0300323static struct ir_raw_handler nec_handler = {
Mauro Carvalho Chehab20d5f112010-03-25 23:49:46 -0300324 .decode = ir_nec_decode,
325 .raw_register = ir_nec_register,
326 .raw_unregister = ir_nec_unregister,
Mauro Carvalho Chehab995187b2010-03-24 20:47:53 -0300327};
328
329static int __init ir_nec_decode_init(void)
330{
331 ir_raw_handler_register(&nec_handler);
332
333 printk(KERN_INFO "IR NEC protocol handler initialized\n");
334 return 0;
335}
336
337static void __exit ir_nec_decode_exit(void)
338{
339 ir_raw_handler_unregister(&nec_handler);
340}
341
342module_init(ir_nec_decode_init);
343module_exit(ir_nec_decode_exit);
344
345MODULE_LICENSE("GPL");
346MODULE_AUTHOR("Mauro Carvalho Chehab <mchehab@redhat.com>");
347MODULE_AUTHOR("Red Hat Inc. (http://www.redhat.com)");
348MODULE_DESCRIPTION("NEC IR protocol decoder");