blob: d0c18db4c0d3774f7d72c21b25d192714d9d7472 [file] [log] [blame]
Mauro Carvalho Chehaba3572c32010-03-20 20:59:44 -03001/* ir-raw-event.c - handle IR Pulse/Space event
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
Maxim Levitsky0d2cb1d2010-07-31 11:59:17 -030015#include <linux/kthread.h>
Maxim Levitsky45a568f2010-07-31 11:59:16 -030016#include <linux/mutex.h>
David Härdeman724e2492010-04-08 13:10:00 -030017#include <linux/sched.h>
Maxim Levitsky0d2cb1d2010-07-31 11:59:17 -030018#include <linux/freezer.h>
Mauro Carvalho Chehab3f113e32010-04-08 15:10:27 -030019#include "ir-core-priv.h"
Mauro Carvalho Chehaba3572c32010-03-20 20:59:44 -030020
David Härdeman724e2492010-04-08 13:10:00 -030021/* Define the max number of pulse/space transitions to buffer */
22#define MAX_IR_EVENT_SIZE 512
Mauro Carvalho Chehaba3572c32010-03-20 20:59:44 -030023
David Härdemanc2163692010-06-13 17:29:36 -030024/* Used to keep track of IR raw clients, protected by ir_raw_handler_lock */
25static LIST_HEAD(ir_raw_client_list);
26
Mauro Carvalho Chehab995187b2010-03-24 20:47:53 -030027/* Used to handle IR raw handler extensions */
Maxim Levitsky45a568f2010-07-31 11:59:16 -030028static DEFINE_MUTEX(ir_raw_handler_lock);
David Härdeman667c9eb2010-06-13 17:29:31 -030029static LIST_HEAD(ir_raw_handler_list);
30static u64 available_protocols;
Mauro Carvalho Chehab93c312f2010-03-25 21:13:43 -030031
Mauro Carvalho Chehab5fa29892010-04-08 19:04:06 -030032#ifdef MODULE
Mauro Carvalho Chehab995187b2010-03-24 20:47:53 -030033/* Used to load the decoders */
34static struct work_struct wq_load;
Mauro Carvalho Chehab5fa29892010-04-08 19:04:06 -030035#endif
Mauro Carvalho Chehab995187b2010-03-24 20:47:53 -030036
Maxim Levitsky0d2cb1d2010-07-31 11:59:17 -030037static int ir_raw_event_thread(void *data)
David Härdeman724e2492010-04-08 13:10:00 -030038{
David Härdemane40b1122010-04-15 18:46:00 -030039 struct ir_raw_event ev;
David Härdemanc2163692010-06-13 17:29:36 -030040 struct ir_raw_handler *handler;
Maxim Levitsky0d2cb1d2010-07-31 11:59:17 -030041 struct ir_raw_event_ctrl *raw = (struct ir_raw_event_ctrl *)data;
David Härdeman724e2492010-04-08 13:10:00 -030042
Maxim Levitsky0d2cb1d2010-07-31 11:59:17 -030043 while (!kthread_should_stop()) {
44 try_to_freeze();
45
Maxim Levitsky45a568f2010-07-31 11:59:16 -030046 mutex_lock(&ir_raw_handler_lock);
Maxim Levitsky0d2cb1d2010-07-31 11:59:17 -030047
48 while (kfifo_out(&raw->kfifo, &ev, sizeof(ev)) == sizeof(ev)) {
49 list_for_each_entry(handler, &ir_raw_handler_list, list)
50 handler->decode(raw->input_dev, ev);
51 raw->prev_ev = ev;
52 }
53
Maxim Levitsky45a568f2010-07-31 11:59:16 -030054 mutex_unlock(&ir_raw_handler_lock);
Maxim Levitsky0d2cb1d2010-07-31 11:59:17 -030055
56 set_current_state(TASK_INTERRUPTIBLE);
57 schedule();
David Härdemanc2163692010-06-13 17:29:36 -030058 }
Maxim Levitsky0d2cb1d2010-07-31 11:59:17 -030059
60 return 0;
David Härdeman724e2492010-04-08 13:10:00 -030061}
62
David Härdeman724e2492010-04-08 13:10:00 -030063/**
64 * ir_raw_event_store() - pass a pulse/space duration to the raw ir decoders
65 * @input_dev: the struct input_dev device descriptor
David Härdemane40b1122010-04-15 18:46:00 -030066 * @ev: the struct ir_raw_event descriptor of the pulse/space
David Härdeman724e2492010-04-08 13:10:00 -030067 *
68 * This routine (which may be called from an interrupt context) stores a
69 * pulse/space duration for the raw ir decoding state machines. Pulses are
70 * signalled as positive values and spaces as negative values. A zero value
71 * will reset the decoding state machines.
72 */
David Härdemane40b1122010-04-15 18:46:00 -030073int ir_raw_event_store(struct input_dev *input_dev, struct ir_raw_event *ev)
Mauro Carvalho Chehaba3572c32010-03-20 20:59:44 -030074{
David Härdeman724e2492010-04-08 13:10:00 -030075 struct ir_input_dev *ir = input_get_drvdata(input_dev);
Mauro Carvalho Chehaba3572c32010-03-20 20:59:44 -030076
77 if (!ir->raw)
78 return -EINVAL;
79
Maxim Levitsky510fcb72010-07-31 11:59:15 -030080 IR_dprintk(2, "sample: (05%dus %s)\n",
81 TO_US(ev->duration), TO_STR(ev->pulse));
82
David Härdemane40b1122010-04-15 18:46:00 -030083 if (kfifo_in(&ir->raw->kfifo, ev, sizeof(*ev)) != sizeof(*ev))
David Härdeman724e2492010-04-08 13:10:00 -030084 return -ENOMEM;
Mauro Carvalho Chehaba3572c32010-03-20 20:59:44 -030085
David Härdeman724e2492010-04-08 13:10:00 -030086 return 0;
Mauro Carvalho Chehaba3572c32010-03-20 20:59:44 -030087}
88EXPORT_SYMBOL_GPL(ir_raw_event_store);
89
David Härdeman724e2492010-04-08 13:10:00 -030090/**
91 * ir_raw_event_store_edge() - notify raw ir decoders of the start of a pulse/space
92 * @input_dev: the struct input_dev device descriptor
93 * @type: the type of the event that has occurred
94 *
95 * This routine (which may be called from an interrupt context) is used to
96 * store the beginning of an ir pulse or space (or the start/end of ir
97 * reception) for the raw ir decoding state machines. This is used by
98 * hardware which does not provide durations directly but only interrupts
99 * (or similar events) on state change.
100 */
101int ir_raw_event_store_edge(struct input_dev *input_dev, enum raw_event_type type)
Mauro Carvalho Chehaba3572c32010-03-20 20:59:44 -0300102{
David Härdeman724e2492010-04-08 13:10:00 -0300103 struct ir_input_dev *ir = input_get_drvdata(input_dev);
104 ktime_t now;
105 s64 delta; /* ns */
David Härdemane40b1122010-04-15 18:46:00 -0300106 struct ir_raw_event ev;
David Härdeman724e2492010-04-08 13:10:00 -0300107 int rc = 0;
Mauro Carvalho Chehaba3572c32010-03-20 20:59:44 -0300108
David Härdeman724e2492010-04-08 13:10:00 -0300109 if (!ir->raw)
110 return -EINVAL;
111
112 now = ktime_get();
113 delta = ktime_to_ns(ktime_sub(now, ir->raw->last_event));
114
115 /* Check for a long duration since last event or if we're
116 * being called for the first time, note that delta can't
117 * possibly be negative.
Mauro Carvalho Chehaba3572c32010-03-20 20:59:44 -0300118 */
David Härdemane40b1122010-04-15 18:46:00 -0300119 ev.duration = 0;
120 if (delta > IR_MAX_DURATION || !ir->raw->last_type)
David Härdeman724e2492010-04-08 13:10:00 -0300121 type |= IR_START_EVENT;
David Härdemane40b1122010-04-15 18:46:00 -0300122 else
123 ev.duration = delta;
David Härdeman724e2492010-04-08 13:10:00 -0300124
125 if (type & IR_START_EVENT)
126 ir_raw_event_reset(input_dev);
David Härdemane40b1122010-04-15 18:46:00 -0300127 else if (ir->raw->last_type & IR_SPACE) {
128 ev.pulse = false;
129 rc = ir_raw_event_store(input_dev, &ev);
130 } else if (ir->raw->last_type & IR_PULSE) {
131 ev.pulse = true;
132 rc = ir_raw_event_store(input_dev, &ev);
133 } else
Mauro Carvalho Chehaba3572c32010-03-20 20:59:44 -0300134 return 0;
Mauro Carvalho Chehaba3572c32010-03-20 20:59:44 -0300135
David Härdeman724e2492010-04-08 13:10:00 -0300136 ir->raw->last_event = now;
137 ir->raw->last_type = type;
Mauro Carvalho Chehaba3572c32010-03-20 20:59:44 -0300138 return rc;
139}
David Härdeman724e2492010-04-08 13:10:00 -0300140EXPORT_SYMBOL_GPL(ir_raw_event_store_edge);
141
142/**
143 * ir_raw_event_handle() - schedules the decoding of stored ir data
144 * @input_dev: the struct input_dev device descriptor
145 *
146 * This routine will signal the workqueue to start decoding stored ir data.
147 */
148void ir_raw_event_handle(struct input_dev *input_dev)
149{
150 struct ir_input_dev *ir = input_get_drvdata(input_dev);
151
152 if (!ir->raw)
153 return;
154
Maxim Levitsky0d2cb1d2010-07-31 11:59:17 -0300155 wake_up_process(ir->raw->thread);
David Härdeman724e2492010-04-08 13:10:00 -0300156}
Mauro Carvalho Chehaba3572c32010-03-20 20:59:44 -0300157EXPORT_SYMBOL_GPL(ir_raw_event_handle);
Mauro Carvalho Chehab995187b2010-03-24 20:47:53 -0300158
David Härdeman667c9eb2010-06-13 17:29:31 -0300159/* used internally by the sysfs interface */
160u64
161ir_raw_get_allowed_protocols()
162{
163 u64 protocols;
Maxim Levitsky45a568f2010-07-31 11:59:16 -0300164 mutex_lock(&ir_raw_handler_lock);
David Härdeman667c9eb2010-06-13 17:29:31 -0300165 protocols = available_protocols;
Maxim Levitsky45a568f2010-07-31 11:59:16 -0300166 mutex_unlock(&ir_raw_handler_lock);
David Härdeman667c9eb2010-06-13 17:29:31 -0300167 return protocols;
168}
169
170/*
171 * Used to (un)register raw event clients
172 */
173int ir_raw_event_register(struct input_dev *input_dev)
174{
175 struct ir_input_dev *ir = input_get_drvdata(input_dev);
176 int rc;
David Härdemanc2163692010-06-13 17:29:36 -0300177 struct ir_raw_handler *handler;
David Härdeman667c9eb2010-06-13 17:29:31 -0300178
179 ir->raw = kzalloc(sizeof(*ir->raw), GFP_KERNEL);
180 if (!ir->raw)
181 return -ENOMEM;
182
183 ir->raw->input_dev = input_dev;
Maxim Levitsky0d2cb1d2010-07-31 11:59:17 -0300184
David Härdeman667c9eb2010-06-13 17:29:31 -0300185 ir->raw->enabled_protocols = ~0;
186 rc = kfifo_alloc(&ir->raw->kfifo, sizeof(s64) * MAX_IR_EVENT_SIZE,
187 GFP_KERNEL);
188 if (rc < 0) {
189 kfree(ir->raw);
190 ir->raw = NULL;
191 return rc;
192 }
193
Maxim Levitsky0d2cb1d2010-07-31 11:59:17 -0300194 ir->raw->thread = kthread_run(ir_raw_event_thread, ir->raw,
195 "rc%u", (unsigned int)ir->devno);
196
197 if (IS_ERR(ir->raw->thread)) {
198 kfree(ir->raw);
199 ir->raw = NULL;
200 return PTR_ERR(ir->raw->thread);
201 }
202
Maxim Levitsky45a568f2010-07-31 11:59:16 -0300203 mutex_lock(&ir_raw_handler_lock);
David Härdemanc2163692010-06-13 17:29:36 -0300204 list_add_tail(&ir->raw->list, &ir_raw_client_list);
205 list_for_each_entry(handler, &ir_raw_handler_list, list)
206 if (handler->raw_register)
207 handler->raw_register(ir->raw->input_dev);
Maxim Levitsky45a568f2010-07-31 11:59:16 -0300208 mutex_unlock(&ir_raw_handler_lock);
David Härdeman667c9eb2010-06-13 17:29:31 -0300209
David Härdemanc2163692010-06-13 17:29:36 -0300210 return 0;
David Härdeman667c9eb2010-06-13 17:29:31 -0300211}
212
213void ir_raw_event_unregister(struct input_dev *input_dev)
214{
215 struct ir_input_dev *ir = input_get_drvdata(input_dev);
David Härdemanc2163692010-06-13 17:29:36 -0300216 struct ir_raw_handler *handler;
David Härdeman667c9eb2010-06-13 17:29:31 -0300217
218 if (!ir->raw)
219 return;
220
Maxim Levitsky0d2cb1d2010-07-31 11:59:17 -0300221 kthread_stop(ir->raw->thread);
David Härdemanc2163692010-06-13 17:29:36 -0300222
Maxim Levitsky45a568f2010-07-31 11:59:16 -0300223 mutex_lock(&ir_raw_handler_lock);
David Härdemanc2163692010-06-13 17:29:36 -0300224 list_del(&ir->raw->list);
225 list_for_each_entry(handler, &ir_raw_handler_list, list)
226 if (handler->raw_unregister)
227 handler->raw_unregister(ir->raw->input_dev);
Maxim Levitsky45a568f2010-07-31 11:59:16 -0300228 mutex_unlock(&ir_raw_handler_lock);
David Härdeman667c9eb2010-06-13 17:29:31 -0300229
230 kfifo_free(&ir->raw->kfifo);
231 kfree(ir->raw);
232 ir->raw = NULL;
233}
234
Mauro Carvalho Chehab995187b2010-03-24 20:47:53 -0300235/*
236 * Extension interface - used to register the IR decoders
237 */
238
239int ir_raw_handler_register(struct ir_raw_handler *ir_raw_handler)
240{
David Härdemanc2163692010-06-13 17:29:36 -0300241 struct ir_raw_event_ctrl *raw;
242
Maxim Levitsky45a568f2010-07-31 11:59:16 -0300243 mutex_lock(&ir_raw_handler_lock);
Mauro Carvalho Chehab995187b2010-03-24 20:47:53 -0300244 list_add_tail(&ir_raw_handler->list, &ir_raw_handler_list);
David Härdemanc2163692010-06-13 17:29:36 -0300245 if (ir_raw_handler->raw_register)
246 list_for_each_entry(raw, &ir_raw_client_list, list)
247 ir_raw_handler->raw_register(raw->input_dev);
David Härdeman667c9eb2010-06-13 17:29:31 -0300248 available_protocols |= ir_raw_handler->protocols;
Maxim Levitsky45a568f2010-07-31 11:59:16 -0300249 mutex_unlock(&ir_raw_handler_lock);
David Härdeman667c9eb2010-06-13 17:29:31 -0300250
Mauro Carvalho Chehab995187b2010-03-24 20:47:53 -0300251 return 0;
252}
253EXPORT_SYMBOL(ir_raw_handler_register);
254
255void ir_raw_handler_unregister(struct ir_raw_handler *ir_raw_handler)
256{
David Härdemanc2163692010-06-13 17:29:36 -0300257 struct ir_raw_event_ctrl *raw;
258
Maxim Levitsky45a568f2010-07-31 11:59:16 -0300259 mutex_lock(&ir_raw_handler_lock);
Mauro Carvalho Chehab995187b2010-03-24 20:47:53 -0300260 list_del(&ir_raw_handler->list);
David Härdemanc2163692010-06-13 17:29:36 -0300261 if (ir_raw_handler->raw_unregister)
262 list_for_each_entry(raw, &ir_raw_client_list, list)
263 ir_raw_handler->raw_unregister(raw->input_dev);
David Härdeman667c9eb2010-06-13 17:29:31 -0300264 available_protocols &= ~ir_raw_handler->protocols;
Maxim Levitsky45a568f2010-07-31 11:59:16 -0300265 mutex_unlock(&ir_raw_handler_lock);
Mauro Carvalho Chehab995187b2010-03-24 20:47:53 -0300266}
267EXPORT_SYMBOL(ir_raw_handler_unregister);
268
Mauro Carvalho Chehab5fa29892010-04-08 19:04:06 -0300269#ifdef MODULE
Mauro Carvalho Chehab995187b2010-03-24 20:47:53 -0300270static void init_decoders(struct work_struct *work)
271{
272 /* Load the decoder modules */
273
274 load_nec_decode();
Mauro Carvalho Chehabdb1423a2010-04-04 10:27:20 -0300275 load_rc5_decode();
David Härdeman784a4932010-04-08 20:04:40 -0300276 load_rc6_decode();
David Härdemanbf670f62010-04-15 18:46:05 -0300277 load_jvc_decode();
David Härdeman3fe29c82010-04-15 18:46:10 -0300278 load_sony_decode();
Jarod Wilsonca414692010-07-03 01:07:53 -0300279 load_lirc_codec();
Mauro Carvalho Chehab995187b2010-03-24 20:47:53 -0300280
281 /* If needed, we may later add some init code. In this case,
282 it is needed to change the CONFIG_MODULE test at ir-core.h
283 */
284}
Mauro Carvalho Chehab5fa29892010-04-08 19:04:06 -0300285#endif
Mauro Carvalho Chehab995187b2010-03-24 20:47:53 -0300286
287void ir_raw_init(void)
288{
Mauro Carvalho Chehab93c312f2010-03-25 21:13:43 -0300289#ifdef MODULE
Mauro Carvalho Chehab995187b2010-03-24 20:47:53 -0300290 INIT_WORK(&wq_load, init_decoders);
291 schedule_work(&wq_load);
Mauro Carvalho Chehab93c312f2010-03-25 21:13:43 -0300292#endif
293}