blob: 6f192ef31db1ae1be0ab78fd28e9b5ec160d442d [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
Mauro Carvalho Chehab995187b2010-03-24 20:47:53 -030015#include <linux/workqueue.h>
Mauro Carvalho Chehab93c312f2010-03-25 21:13:43 -030016#include <linux/spinlock.h>
David Härdeman724e2492010-04-08 13:10:00 -030017#include <linux/sched.h>
Mauro Carvalho Chehab3f113e32010-04-08 15:10:27 -030018#include "ir-core-priv.h"
Mauro Carvalho Chehaba3572c32010-03-20 20:59:44 -030019
David Härdeman724e2492010-04-08 13:10:00 -030020/* Define the max number of pulse/space transitions to buffer */
21#define MAX_IR_EVENT_SIZE 512
Mauro Carvalho Chehaba3572c32010-03-20 20:59:44 -030022
David Härdemanc2163692010-06-13 17:29:36 -030023/* Used to keep track of IR raw clients, protected by ir_raw_handler_lock */
24static LIST_HEAD(ir_raw_client_list);
25
Mauro Carvalho Chehab995187b2010-03-24 20:47:53 -030026/* Used to handle IR raw handler extensions */
Mauro Carvalho Chehab6eb94352010-04-07 16:19:36 -030027static DEFINE_SPINLOCK(ir_raw_handler_lock);
David Härdeman667c9eb2010-06-13 17:29:31 -030028static LIST_HEAD(ir_raw_handler_list);
29static u64 available_protocols;
Mauro Carvalho Chehab93c312f2010-03-25 21:13:43 -030030
Mauro Carvalho Chehab5fa29892010-04-08 19:04:06 -030031#ifdef MODULE
Mauro Carvalho Chehab995187b2010-03-24 20:47:53 -030032/* Used to load the decoders */
33static struct work_struct wq_load;
Mauro Carvalho Chehab5fa29892010-04-08 19:04:06 -030034#endif
Mauro Carvalho Chehab995187b2010-03-24 20:47:53 -030035
David Härdeman724e2492010-04-08 13:10:00 -030036static void ir_raw_event_work(struct work_struct *work)
37{
David Härdemane40b1122010-04-15 18:46:00 -030038 struct ir_raw_event ev;
David Härdemanc2163692010-06-13 17:29:36 -030039 struct ir_raw_handler *handler;
David Härdeman724e2492010-04-08 13:10:00 -030040 struct ir_raw_event_ctrl *raw =
41 container_of(work, struct ir_raw_event_ctrl, rx_work);
42
David Härdemanc2163692010-06-13 17:29:36 -030043 while (kfifo_out(&raw->kfifo, &ev, sizeof(ev)) == sizeof(ev)) {
44 spin_lock(&ir_raw_handler_lock);
45 list_for_each_entry(handler, &ir_raw_handler_list, list)
46 handler->decode(raw->input_dev, ev);
47 spin_unlock(&ir_raw_handler_lock);
48 raw->prev_ev = ev;
49 }
David Härdeman724e2492010-04-08 13:10:00 -030050}
51
David Härdeman724e2492010-04-08 13:10:00 -030052/**
53 * ir_raw_event_store() - pass a pulse/space duration to the raw ir decoders
54 * @input_dev: the struct input_dev device descriptor
David Härdemane40b1122010-04-15 18:46:00 -030055 * @ev: the struct ir_raw_event descriptor of the pulse/space
David Härdeman724e2492010-04-08 13:10:00 -030056 *
57 * This routine (which may be called from an interrupt context) stores a
58 * pulse/space duration for the raw ir decoding state machines. Pulses are
59 * signalled as positive values and spaces as negative values. A zero value
60 * will reset the decoding state machines.
61 */
David Härdemane40b1122010-04-15 18:46:00 -030062int ir_raw_event_store(struct input_dev *input_dev, struct ir_raw_event *ev)
Mauro Carvalho Chehaba3572c32010-03-20 20:59:44 -030063{
David Härdeman724e2492010-04-08 13:10:00 -030064 struct ir_input_dev *ir = input_get_drvdata(input_dev);
Mauro Carvalho Chehaba3572c32010-03-20 20:59:44 -030065
66 if (!ir->raw)
67 return -EINVAL;
68
David Härdemane40b1122010-04-15 18:46:00 -030069 if (kfifo_in(&ir->raw->kfifo, ev, sizeof(*ev)) != sizeof(*ev))
David Härdeman724e2492010-04-08 13:10:00 -030070 return -ENOMEM;
Mauro Carvalho Chehaba3572c32010-03-20 20:59:44 -030071
David Härdeman724e2492010-04-08 13:10:00 -030072 return 0;
Mauro Carvalho Chehaba3572c32010-03-20 20:59:44 -030073}
74EXPORT_SYMBOL_GPL(ir_raw_event_store);
75
David Härdeman724e2492010-04-08 13:10:00 -030076/**
77 * ir_raw_event_store_edge() - notify raw ir decoders of the start of a pulse/space
78 * @input_dev: the struct input_dev device descriptor
79 * @type: the type of the event that has occurred
80 *
81 * This routine (which may be called from an interrupt context) is used to
82 * store the beginning of an ir pulse or space (or the start/end of ir
83 * reception) for the raw ir decoding state machines. This is used by
84 * hardware which does not provide durations directly but only interrupts
85 * (or similar events) on state change.
86 */
87int ir_raw_event_store_edge(struct input_dev *input_dev, enum raw_event_type type)
Mauro Carvalho Chehaba3572c32010-03-20 20:59:44 -030088{
David Härdeman724e2492010-04-08 13:10:00 -030089 struct ir_input_dev *ir = input_get_drvdata(input_dev);
90 ktime_t now;
91 s64 delta; /* ns */
David Härdemane40b1122010-04-15 18:46:00 -030092 struct ir_raw_event ev;
David Härdeman724e2492010-04-08 13:10:00 -030093 int rc = 0;
Mauro Carvalho Chehaba3572c32010-03-20 20:59:44 -030094
David Härdeman724e2492010-04-08 13:10:00 -030095 if (!ir->raw)
96 return -EINVAL;
97
98 now = ktime_get();
99 delta = ktime_to_ns(ktime_sub(now, ir->raw->last_event));
100
101 /* Check for a long duration since last event or if we're
102 * being called for the first time, note that delta can't
103 * possibly be negative.
Mauro Carvalho Chehaba3572c32010-03-20 20:59:44 -0300104 */
David Härdemane40b1122010-04-15 18:46:00 -0300105 ev.duration = 0;
106 if (delta > IR_MAX_DURATION || !ir->raw->last_type)
David Härdeman724e2492010-04-08 13:10:00 -0300107 type |= IR_START_EVENT;
David Härdemane40b1122010-04-15 18:46:00 -0300108 else
109 ev.duration = delta;
David Härdeman724e2492010-04-08 13:10:00 -0300110
111 if (type & IR_START_EVENT)
112 ir_raw_event_reset(input_dev);
David Härdemane40b1122010-04-15 18:46:00 -0300113 else if (ir->raw->last_type & IR_SPACE) {
114 ev.pulse = false;
115 rc = ir_raw_event_store(input_dev, &ev);
116 } else if (ir->raw->last_type & IR_PULSE) {
117 ev.pulse = true;
118 rc = ir_raw_event_store(input_dev, &ev);
119 } else
Mauro Carvalho Chehaba3572c32010-03-20 20:59:44 -0300120 return 0;
Mauro Carvalho Chehaba3572c32010-03-20 20:59:44 -0300121
David Härdeman724e2492010-04-08 13:10:00 -0300122 ir->raw->last_event = now;
123 ir->raw->last_type = type;
Mauro Carvalho Chehaba3572c32010-03-20 20:59:44 -0300124 return rc;
125}
David Härdeman724e2492010-04-08 13:10:00 -0300126EXPORT_SYMBOL_GPL(ir_raw_event_store_edge);
127
128/**
129 * ir_raw_event_handle() - schedules the decoding of stored ir data
130 * @input_dev: the struct input_dev device descriptor
131 *
132 * This routine will signal the workqueue to start decoding stored ir data.
133 */
134void ir_raw_event_handle(struct input_dev *input_dev)
135{
136 struct ir_input_dev *ir = input_get_drvdata(input_dev);
137
138 if (!ir->raw)
139 return;
140
141 schedule_work(&ir->raw->rx_work);
142}
Mauro Carvalho Chehaba3572c32010-03-20 20:59:44 -0300143EXPORT_SYMBOL_GPL(ir_raw_event_handle);
Mauro Carvalho Chehab995187b2010-03-24 20:47:53 -0300144
David Härdeman667c9eb2010-06-13 17:29:31 -0300145/* used internally by the sysfs interface */
146u64
147ir_raw_get_allowed_protocols()
148{
149 u64 protocols;
150 spin_lock(&ir_raw_handler_lock);
151 protocols = available_protocols;
152 spin_unlock(&ir_raw_handler_lock);
153 return protocols;
154}
155
156/*
157 * Used to (un)register raw event clients
158 */
159int ir_raw_event_register(struct input_dev *input_dev)
160{
161 struct ir_input_dev *ir = input_get_drvdata(input_dev);
162 int rc;
David Härdemanc2163692010-06-13 17:29:36 -0300163 struct ir_raw_handler *handler;
David Härdeman667c9eb2010-06-13 17:29:31 -0300164
165 ir->raw = kzalloc(sizeof(*ir->raw), GFP_KERNEL);
166 if (!ir->raw)
167 return -ENOMEM;
168
169 ir->raw->input_dev = input_dev;
170 INIT_WORK(&ir->raw->rx_work, ir_raw_event_work);
171 ir->raw->enabled_protocols = ~0;
172 rc = kfifo_alloc(&ir->raw->kfifo, sizeof(s64) * MAX_IR_EVENT_SIZE,
173 GFP_KERNEL);
174 if (rc < 0) {
175 kfree(ir->raw);
176 ir->raw = NULL;
177 return rc;
178 }
179
David Härdemanc2163692010-06-13 17:29:36 -0300180 spin_lock(&ir_raw_handler_lock);
181 list_add_tail(&ir->raw->list, &ir_raw_client_list);
182 list_for_each_entry(handler, &ir_raw_handler_list, list)
183 if (handler->raw_register)
184 handler->raw_register(ir->raw->input_dev);
185 spin_unlock(&ir_raw_handler_lock);
David Härdeman667c9eb2010-06-13 17:29:31 -0300186
David Härdemanc2163692010-06-13 17:29:36 -0300187 return 0;
David Härdeman667c9eb2010-06-13 17:29:31 -0300188}
189
190void ir_raw_event_unregister(struct input_dev *input_dev)
191{
192 struct ir_input_dev *ir = input_get_drvdata(input_dev);
David Härdemanc2163692010-06-13 17:29:36 -0300193 struct ir_raw_handler *handler;
David Härdeman667c9eb2010-06-13 17:29:31 -0300194
195 if (!ir->raw)
196 return;
197
198 cancel_work_sync(&ir->raw->rx_work);
David Härdemanc2163692010-06-13 17:29:36 -0300199
200 spin_lock(&ir_raw_handler_lock);
201 list_del(&ir->raw->list);
202 list_for_each_entry(handler, &ir_raw_handler_list, list)
203 if (handler->raw_unregister)
204 handler->raw_unregister(ir->raw->input_dev);
205 spin_unlock(&ir_raw_handler_lock);
David Härdeman667c9eb2010-06-13 17:29:31 -0300206
207 kfifo_free(&ir->raw->kfifo);
208 kfree(ir->raw);
209 ir->raw = NULL;
210}
211
Mauro Carvalho Chehab995187b2010-03-24 20:47:53 -0300212/*
213 * Extension interface - used to register the IR decoders
214 */
215
216int ir_raw_handler_register(struct ir_raw_handler *ir_raw_handler)
217{
David Härdemanc2163692010-06-13 17:29:36 -0300218 struct ir_raw_event_ctrl *raw;
219
Mauro Carvalho Chehab93c312f2010-03-25 21:13:43 -0300220 spin_lock(&ir_raw_handler_lock);
Mauro Carvalho Chehab995187b2010-03-24 20:47:53 -0300221 list_add_tail(&ir_raw_handler->list, &ir_raw_handler_list);
David Härdemanc2163692010-06-13 17:29:36 -0300222 if (ir_raw_handler->raw_register)
223 list_for_each_entry(raw, &ir_raw_client_list, list)
224 ir_raw_handler->raw_register(raw->input_dev);
David Härdeman667c9eb2010-06-13 17:29:31 -0300225 available_protocols |= ir_raw_handler->protocols;
Mauro Carvalho Chehab93c312f2010-03-25 21:13:43 -0300226 spin_unlock(&ir_raw_handler_lock);
David Härdeman667c9eb2010-06-13 17:29:31 -0300227
Mauro Carvalho Chehab995187b2010-03-24 20:47:53 -0300228 return 0;
229}
230EXPORT_SYMBOL(ir_raw_handler_register);
231
232void ir_raw_handler_unregister(struct ir_raw_handler *ir_raw_handler)
233{
David Härdemanc2163692010-06-13 17:29:36 -0300234 struct ir_raw_event_ctrl *raw;
235
Mauro Carvalho Chehab93c312f2010-03-25 21:13:43 -0300236 spin_lock(&ir_raw_handler_lock);
Mauro Carvalho Chehab995187b2010-03-24 20:47:53 -0300237 list_del(&ir_raw_handler->list);
David Härdemanc2163692010-06-13 17:29:36 -0300238 if (ir_raw_handler->raw_unregister)
239 list_for_each_entry(raw, &ir_raw_client_list, list)
240 ir_raw_handler->raw_unregister(raw->input_dev);
David Härdeman667c9eb2010-06-13 17:29:31 -0300241 available_protocols &= ~ir_raw_handler->protocols;
Mauro Carvalho Chehab93c312f2010-03-25 21:13:43 -0300242 spin_unlock(&ir_raw_handler_lock);
Mauro Carvalho Chehab995187b2010-03-24 20:47:53 -0300243}
244EXPORT_SYMBOL(ir_raw_handler_unregister);
245
Mauro Carvalho Chehab5fa29892010-04-08 19:04:06 -0300246#ifdef MODULE
Mauro Carvalho Chehab995187b2010-03-24 20:47:53 -0300247static void init_decoders(struct work_struct *work)
248{
249 /* Load the decoder modules */
250
251 load_nec_decode();
Mauro Carvalho Chehabdb1423a2010-04-04 10:27:20 -0300252 load_rc5_decode();
David Härdeman784a4932010-04-08 20:04:40 -0300253 load_rc6_decode();
David Härdemanbf670f62010-04-15 18:46:05 -0300254 load_jvc_decode();
David Härdeman3fe29c82010-04-15 18:46:10 -0300255 load_sony_decode();
Jarod Wilsonca414692010-07-03 01:07:53 -0300256 load_lirc_codec();
Mauro Carvalho Chehab995187b2010-03-24 20:47:53 -0300257
258 /* If needed, we may later add some init code. In this case,
259 it is needed to change the CONFIG_MODULE test at ir-core.h
260 */
261}
Mauro Carvalho Chehab5fa29892010-04-08 19:04:06 -0300262#endif
Mauro Carvalho Chehab995187b2010-03-24 20:47:53 -0300263
264void ir_raw_init(void)
265{
Mauro Carvalho Chehab93c312f2010-03-25 21:13:43 -0300266#ifdef MODULE
Mauro Carvalho Chehab995187b2010-03-24 20:47:53 -0300267 INIT_WORK(&wq_load, init_decoders);
268 schedule_work(&wq_load);
Mauro Carvalho Chehab93c312f2010-03-25 21:13:43 -0300269#endif
270}