Merge branch 'gpio/merge' of git://git.secretlab.ca/git/linux-2.6
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / drivers / media / rc / ir-raw.c
CommitLineData
829ba9fe 1/* ir-raw.c - handle IR pulse/space events
a3572c34
MCC
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
0d2cb1de 15#include <linux/kthread.h>
45a568fa 16#include <linux/mutex.h>
724e2495 17#include <linux/sched.h>
0d2cb1de 18#include <linux/freezer.h>
f62de675 19#include "rc-core-priv.h"
a3572c34 20
724e2495
DH
21/* Define the max number of pulse/space transitions to buffer */
22#define MAX_IR_EVENT_SIZE 512
a3572c34 23
c216369e
DH
24/* Used to keep track of IR raw clients, protected by ir_raw_handler_lock */
25static LIST_HEAD(ir_raw_client_list);
26
995187be 27/* Used to handle IR raw handler extensions */
45a568fa 28static DEFINE_MUTEX(ir_raw_handler_lock);
667c9ebe
DH
29static LIST_HEAD(ir_raw_handler_list);
30static u64 available_protocols;
93c312ff 31
5fa2989f 32#ifdef MODULE
995187be
MCC
33/* Used to load the decoders */
34static struct work_struct wq_load;
5fa2989f 35#endif
995187be 36
0d2cb1de 37static int ir_raw_event_thread(void *data)
724e2495 38{
e40b1127 39 struct ir_raw_event ev;
c216369e 40 struct ir_raw_handler *handler;
0d2cb1de 41 struct ir_raw_event_ctrl *raw = (struct ir_raw_event_ctrl *)data;
c6ef1e7f 42 int retval;
0d2cb1de
ML
43
44 while (!kthread_should_stop()) {
724e2495 45
c6ef1e7f
ML
46 spin_lock_irq(&raw->lock);
47 retval = kfifo_out(&raw->kfifo, &ev, sizeof(ev));
48
49 if (!retval) {
50 set_current_state(TASK_INTERRUPTIBLE);
0d2cb1de 51
c6ef1e7f
ML
52 if (kthread_should_stop())
53 set_current_state(TASK_RUNNING);
54
55 spin_unlock_irq(&raw->lock);
56 schedule();
57 continue;
0d2cb1de
ML
58 }
59
c6ef1e7f 60 spin_unlock_irq(&raw->lock);
0d2cb1de 61
c6ef1e7f
ML
62
63 BUG_ON(retval != sizeof(ev));
64
65 mutex_lock(&ir_raw_handler_lock);
66 list_for_each_entry(handler, &ir_raw_handler_list, list)
d8b4b582 67 handler->decode(raw->dev, ev);
c6ef1e7f
ML
68 raw->prev_ev = ev;
69 mutex_unlock(&ir_raw_handler_lock);
c216369e 70 }
0d2cb1de
ML
71
72 return 0;
724e2495
DH
73}
74
724e2495
DH
75/**
76 * ir_raw_event_store() - pass a pulse/space duration to the raw ir decoders
d8b4b582 77 * @dev: the struct rc_dev device descriptor
e40b1127 78 * @ev: the struct ir_raw_event descriptor of the pulse/space
724e2495
DH
79 *
80 * This routine (which may be called from an interrupt context) stores a
81 * pulse/space duration for the raw ir decoding state machines. Pulses are
82 * signalled as positive values and spaces as negative values. A zero value
83 * will reset the decoding state machines.
84 */
d8b4b582 85int ir_raw_event_store(struct rc_dev *dev, struct ir_raw_event *ev)
a3572c34 86{
d8b4b582 87 if (!dev->raw)
a3572c34
MCC
88 return -EINVAL;
89
74c4792c 90 IR_dprintk(2, "sample: (%05dus %s)\n",
d8b4b582 91 TO_US(ev->duration), TO_STR(ev->pulse));
510fcb70 92
d8b4b582 93 if (kfifo_in(&dev->raw->kfifo, ev, sizeof(*ev)) != sizeof(*ev))
724e2495 94 return -ENOMEM;
a3572c34 95
724e2495
DH
96 return 0;
97}
98EXPORT_SYMBOL_GPL(ir_raw_event_store);
a3572c34 99
724e2495
DH
100/**
101 * ir_raw_event_store_edge() - notify raw ir decoders of the start of a pulse/space
d8b4b582 102 * @dev: the struct rc_dev device descriptor
724e2495
DH
103 * @type: the type of the event that has occurred
104 *
105 * This routine (which may be called from an interrupt context) is used to
106 * store the beginning of an ir pulse or space (or the start/end of ir
107 * reception) for the raw ir decoding state machines. This is used by
108 * hardware which does not provide durations directly but only interrupts
109 * (or similar events) on state change.
110 */
d8b4b582 111int ir_raw_event_store_edge(struct rc_dev *dev, enum raw_event_type type)
724e2495 112{
724e2495
DH
113 ktime_t now;
114 s64 delta; /* ns */
83587839 115 DEFINE_IR_RAW_EVENT(ev);
724e2495 116 int rc = 0;
3f5c4c73 117 int delay;
a3572c34 118
d8b4b582 119 if (!dev->raw)
724e2495 120 return -EINVAL;
a3572c34 121
724e2495 122 now = ktime_get();
d8b4b582 123 delta = ktime_to_ns(ktime_sub(now, dev->raw->last_event));
3f5c4c73 124 delay = MS_TO_NS(dev->input_dev->rep[REP_DELAY]);
a3572c34 125
724e2495
DH
126 /* Check for a long duration since last event or if we're
127 * being called for the first time, note that delta can't
128 * possibly be negative.
129 */
3f5c4c73 130 if (delta > delay || !dev->raw->last_type)
724e2495 131 type |= IR_START_EVENT;
e40b1127
DH
132 else
133 ev.duration = delta;
724e2495
DH
134
135 if (type & IR_START_EVENT)
d8b4b582
DH
136 ir_raw_event_reset(dev);
137 else if (dev->raw->last_type & IR_SPACE) {
e40b1127 138 ev.pulse = false;
d8b4b582
DH
139 rc = ir_raw_event_store(dev, &ev);
140 } else if (dev->raw->last_type & IR_PULSE) {
e40b1127 141 ev.pulse = true;
d8b4b582 142 rc = ir_raw_event_store(dev, &ev);
e40b1127 143 } else
724e2495 144 return 0;
a3572c34 145
d8b4b582
DH
146 dev->raw->last_event = now;
147 dev->raw->last_type = type;
a3572c34
MCC
148 return rc;
149}
724e2495 150EXPORT_SYMBOL_GPL(ir_raw_event_store_edge);
a3572c34 151
4a702ebf
ML
152/**
153 * ir_raw_event_store_with_filter() - pass next pulse/space to decoders with some processing
d8b4b582 154 * @dev: the struct rc_dev device descriptor
4a702ebf
ML
155 * @type: the type of the event that has occurred
156 *
157 * This routine (which may be called from an interrupt context) works
25985edc 158 * in similar manner to ir_raw_event_store_edge.
4a702ebf
ML
159 * This routine is intended for devices with limited internal buffer
160 * It automerges samples of same type, and handles timeouts
161 */
d8b4b582 162int ir_raw_event_store_with_filter(struct rc_dev *dev, struct ir_raw_event *ev)
4a702ebf 163{
d8b4b582 164 if (!dev->raw)
4a702ebf
ML
165 return -EINVAL;
166
167 /* Ignore spaces in idle mode */
d8b4b582 168 if (dev->idle && !ev->pulse)
4a702ebf 169 return 0;
d8b4b582
DH
170 else if (dev->idle)
171 ir_raw_event_set_idle(dev, false);
172
173 if (!dev->raw->this_ev.duration)
174 dev->raw->this_ev = *ev;
175 else if (ev->pulse == dev->raw->this_ev.pulse)
176 dev->raw->this_ev.duration += ev->duration;
177 else {
178 ir_raw_event_store(dev, &dev->raw->this_ev);
179 dev->raw->this_ev = *ev;
4a702ebf
ML
180 }
181
182 /* Enter idle mode if nessesary */
d8b4b582
DH
183 if (!ev->pulse && dev->timeout &&
184 dev->raw->this_ev.duration >= dev->timeout)
185 ir_raw_event_set_idle(dev, true);
186
4a702ebf
ML
187 return 0;
188}
189EXPORT_SYMBOL_GPL(ir_raw_event_store_with_filter);
190
4651918a 191/**
d8b4b582
DH
192 * ir_raw_event_set_idle() - provide hint to rc-core when the device is idle or not
193 * @dev: the struct rc_dev device descriptor
194 * @idle: whether the device is idle or not
4651918a 195 */
d8b4b582 196void ir_raw_event_set_idle(struct rc_dev *dev, bool idle)
4a702ebf 197{
d8b4b582 198 if (!dev->raw)
4a702ebf
ML
199 return;
200
4651918a 201 IR_dprintk(2, "%s idle mode\n", idle ? "enter" : "leave");
4a702ebf
ML
202
203 if (idle) {
d8b4b582
DH
204 dev->raw->this_ev.timeout = true;
205 ir_raw_event_store(dev, &dev->raw->this_ev);
206 init_ir_raw_event(&dev->raw->this_ev);
4a702ebf 207 }
4651918a 208
d8b4b582
DH
209 if (dev->s_idle)
210 dev->s_idle(dev, idle);
211
212 dev->idle = idle;
4a702ebf
ML
213}
214EXPORT_SYMBOL_GPL(ir_raw_event_set_idle);
215
724e2495
DH
216/**
217 * ir_raw_event_handle() - schedules the decoding of stored ir data
d8b4b582 218 * @dev: the struct rc_dev device descriptor
724e2495 219 *
d8b4b582 220 * This routine will tell rc-core to start decoding stored ir data.
724e2495 221 */
d8b4b582 222void ir_raw_event_handle(struct rc_dev *dev)
a3572c34 223{
c6ef1e7f 224 unsigned long flags;
a3572c34 225
d8b4b582 226 if (!dev->raw)
724e2495 227 return;
a3572c34 228
d8b4b582
DH
229 spin_lock_irqsave(&dev->raw->lock, flags);
230 wake_up_process(dev->raw->thread);
231 spin_unlock_irqrestore(&dev->raw->lock, flags);
a3572c34
MCC
232}
233EXPORT_SYMBOL_GPL(ir_raw_event_handle);
995187be 234
667c9ebe
DH
235/* used internally by the sysfs interface */
236u64
2dbd61b4 237ir_raw_get_allowed_protocols(void)
667c9ebe
DH
238{
239 u64 protocols;
45a568fa 240 mutex_lock(&ir_raw_handler_lock);
667c9ebe 241 protocols = available_protocols;
45a568fa 242 mutex_unlock(&ir_raw_handler_lock);
667c9ebe
DH
243 return protocols;
244}
245
246/*
247 * Used to (un)register raw event clients
248 */
d8b4b582 249int ir_raw_event_register(struct rc_dev *dev)
667c9ebe 250{
667c9ebe 251 int rc;
c216369e 252 struct ir_raw_handler *handler;
667c9ebe 253
d8b4b582
DH
254 if (!dev)
255 return -EINVAL;
667c9ebe 256
d8b4b582
DH
257 dev->raw = kzalloc(sizeof(*dev->raw), GFP_KERNEL);
258 if (!dev->raw)
259 return -ENOMEM;
0d2cb1de 260
d8b4b582
DH
261 dev->raw->dev = dev;
262 dev->raw->enabled_protocols = ~0;
263 rc = kfifo_alloc(&dev->raw->kfifo,
264 sizeof(struct ir_raw_event) * MAX_IR_EVENT_SIZE,
667c9ebe 265 GFP_KERNEL);
d8b4b582
DH
266 if (rc < 0)
267 goto out;
667c9ebe 268
d8b4b582
DH
269 spin_lock_init(&dev->raw->lock);
270 dev->raw->thread = kthread_run(ir_raw_event_thread, dev->raw,
271 "rc%ld", dev->devno);
0d2cb1de 272
d8b4b582
DH
273 if (IS_ERR(dev->raw->thread)) {
274 rc = PTR_ERR(dev->raw->thread);
275 goto out;
0d2cb1de
ML
276 }
277
45a568fa 278 mutex_lock(&ir_raw_handler_lock);
d8b4b582 279 list_add_tail(&dev->raw->list, &ir_raw_client_list);
c216369e
DH
280 list_for_each_entry(handler, &ir_raw_handler_list, list)
281 if (handler->raw_register)
d8b4b582 282 handler->raw_register(dev);
45a568fa 283 mutex_unlock(&ir_raw_handler_lock);
667c9ebe 284
c216369e 285 return 0;
d8b4b582
DH
286
287out:
288 kfree(dev->raw);
289 dev->raw = NULL;
290 return rc;
667c9ebe
DH
291}
292
d8b4b582 293void ir_raw_event_unregister(struct rc_dev *dev)
667c9ebe 294{
c216369e 295 struct ir_raw_handler *handler;
667c9ebe 296
d8b4b582 297 if (!dev || !dev->raw)
667c9ebe
DH
298 return;
299
d8b4b582 300 kthread_stop(dev->raw->thread);
c216369e 301
45a568fa 302 mutex_lock(&ir_raw_handler_lock);
d8b4b582 303 list_del(&dev->raw->list);
c216369e
DH
304 list_for_each_entry(handler, &ir_raw_handler_list, list)
305 if (handler->raw_unregister)
d8b4b582 306 handler->raw_unregister(dev);
45a568fa 307 mutex_unlock(&ir_raw_handler_lock);
667c9ebe 308
d8b4b582
DH
309 kfifo_free(&dev->raw->kfifo);
310 kfree(dev->raw);
311 dev->raw = NULL;
667c9ebe
DH
312}
313
995187be
MCC
314/*
315 * Extension interface - used to register the IR decoders
316 */
317
318int ir_raw_handler_register(struct ir_raw_handler *ir_raw_handler)
319{
c216369e
DH
320 struct ir_raw_event_ctrl *raw;
321
45a568fa 322 mutex_lock(&ir_raw_handler_lock);
995187be 323 list_add_tail(&ir_raw_handler->list, &ir_raw_handler_list);
c216369e
DH
324 if (ir_raw_handler->raw_register)
325 list_for_each_entry(raw, &ir_raw_client_list, list)
d8b4b582 326 ir_raw_handler->raw_register(raw->dev);
667c9ebe 327 available_protocols |= ir_raw_handler->protocols;
45a568fa 328 mutex_unlock(&ir_raw_handler_lock);
667c9ebe 329
995187be
MCC
330 return 0;
331}
332EXPORT_SYMBOL(ir_raw_handler_register);
333
334void ir_raw_handler_unregister(struct ir_raw_handler *ir_raw_handler)
335{
c216369e
DH
336 struct ir_raw_event_ctrl *raw;
337
45a568fa 338 mutex_lock(&ir_raw_handler_lock);
995187be 339 list_del(&ir_raw_handler->list);
c216369e
DH
340 if (ir_raw_handler->raw_unregister)
341 list_for_each_entry(raw, &ir_raw_client_list, list)
d8b4b582 342 ir_raw_handler->raw_unregister(raw->dev);
667c9ebe 343 available_protocols &= ~ir_raw_handler->protocols;
45a568fa 344 mutex_unlock(&ir_raw_handler_lock);
995187be
MCC
345}
346EXPORT_SYMBOL(ir_raw_handler_unregister);
347
5fa2989f 348#ifdef MODULE
995187be
MCC
349static void init_decoders(struct work_struct *work)
350{
351 /* Load the decoder modules */
352
353 load_nec_decode();
db1423a6 354 load_rc5_decode();
784a4931 355 load_rc6_decode();
bf670f64 356 load_jvc_decode();
3fe29c89 357 load_sony_decode();
ca414698 358 load_lirc_codec();
995187be
MCC
359
360 /* If needed, we may later add some init code. In this case,
6bda9644 361 it is needed to change the CONFIG_MODULE test at rc-core.h
995187be
MCC
362 */
363}
5fa2989f 364#endif
995187be
MCC
365
366void ir_raw_init(void)
367{
93c312ff 368#ifdef MODULE
995187be
MCC
369 INIT_WORK(&wq_load, init_decoders);
370 schedule_work(&wq_load);
93c312ff
MCC
371#endif
372}