]> bbs.cooldavid.org Git - net-next-2.6.git/blob - drivers/media/IR/ir-nec-decoder.c
0b50060ffbafae18cb5e76af93f477943fe71f93
[net-next-2.6.git] / drivers / media / IR / ir-nec-decoder.c
1 /* ir-nec-decoder.c - handle NEC IR Pulse/Space protocol
2  *
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
17 /* 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)
20
21 /* Bit 1 time: 2.25ms us */
22 #define MIN_BIT1_TIME   2050000
23 #define MAX_BIT1_TIME   2450000
24
25 /* Bit 0 time: 1.12ms us */
26 #define MIN_BIT0_TIME   920000
27 #define MAX_BIT0_TIME   1320000
28
29 /* 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
42 /* Used to register nec_decoder clients */
43 static LIST_HEAD(decoder_list);
44 static spinlock_t decoder_lock;
45
46 struct 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
60 static 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
73 static 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
93 static 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
108 static DEVICE_ATTR(enabled, S_IRUGO | S_IWUSR, show_enabled, store_enabled);
109
110 static struct attribute *decoder_attributes[] = {
111         &dev_attr_enabled.attr,
112         NULL
113 };
114
115 static struct attribute_group decoder_attribute_group = {
116         .name   = "nec_decoder",
117         .attrs  = decoder_attributes,
118 };
119
120
121 /** 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  */
126 static 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 }
141
142 /**
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
148  * This function returns -EINVAL if no pulse got decoded,
149  * 0 if buffer is empty and 1 if one keycode were handled.
150  */
151 static int __ir_nec_decode(struct input_dev *input_dev,
152                            struct ir_raw_event *evs,
153                            int len, int *pos)
154 {
155         struct ir_input_dev *ir = input_get_drvdata(input_dev);
156         int count = -1;
157         int ircode = 0, not_code = 0;
158
159         /* Be sure that the first event is an start one and is a pulse */
160         for (; *pos < len; (*pos)++) {
161                 /* Very long delays are considered as start events */
162                 if (evs[*pos].delta.tv_nsec > MAX_NEC_TIME)
163                         break;
164                 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");
169
170         }
171         if (*pos >= len)
172                 return 0;
173
174         (*pos)++;       /* First event doesn't contain data */
175
176         if (evs[*pos].type != IR_PULSE)
177                 goto err;
178
179         /* Check if it is a NEC repeat event */
180         if (is_repeat(evs, len, *pos)) {
181                 *pos += 2;
182                 if (ir->keypressed) {
183                         ir_repeat(input_dev);
184                         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;
196
197         count = 0;
198         for ((*pos)++; *pos < len; (*pos)++) {
199                 int bit;
200                 if ((evs[*pos].delta.tv_nsec > MIN_BIT1_TIME) &&
201                     (evs[*pos].delta.tv_nsec < MAX_BIT1_TIME))
202                         bit = 1;
203                 else if ((evs[*pos].delta.tv_nsec > MIN_BIT0_TIME) &&
204                          (evs[*pos].delta.tv_nsec < MAX_BIT0_TIME))
205                         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         }
228         (*pos)++;
229
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);
240         ir_keydown(input_dev, ircode, 0);
241
242         return 1;
243 err:
244         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);
248
249         return -EINVAL;
250 }
251
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
257  * This function returns the number of decoded pulses
258  */
259 static int ir_nec_decode(struct input_dev *input_dev,
260                          struct ir_raw_event *evs,
261                          int len)
262 {
263         struct ir_input_dev *ir_dev = input_get_drvdata(input_dev);
264         struct decoder_data *data;
265         int pos = 0;
266         int rc = 0;
267
268         data = get_decoder_data(ir_dev);
269         if (!data || !data->enabled)
270                 return 0;
271
272         while (pos < len) {
273                 if (__ir_nec_decode(input_dev, evs, len, &pos) > 0)
274                         rc++;
275         }
276         return rc;
277 }
278
279 static 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
305 static 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
323 static struct ir_raw_handler nec_handler = {
324         .decode         = ir_nec_decode,
325         .raw_register   = ir_nec_register,
326         .raw_unregister = ir_nec_unregister,
327 };
328
329 static 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
337 static void __exit ir_nec_decode_exit(void)
338 {
339         ir_raw_handler_unregister(&nec_handler);
340 }
341
342 module_init(ir_nec_decode_init);
343 module_exit(ir_nec_decode_exit);
344
345 MODULE_LICENSE("GPL");
346 MODULE_AUTHOR("Mauro Carvalho Chehab <mchehab@redhat.com>");
347 MODULE_AUTHOR("Red Hat Inc. (http://www.redhat.com)");
348 MODULE_DESCRIPTION("NEC IR protocol decoder");