blob: 97dc8d13b06b386ab2b93293f227a7de37769a29 [file] [log] [blame]
David Härdeman829ba9f2010-11-19 20:43:27 -03001/* ir-raw.c - handle IR pulse/space events
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
Paul Gortmaker35a24632011-08-01 15:26:38 -040015#include <linux/export.h>
Maxim Levitsky0d2cb1d2010-07-31 11:59:17 -030016#include <linux/kthread.h>
Maxim Levitsky45a568f2010-07-31 11:59:16 -030017#include <linux/mutex.h>
Stephen Rothwelldff65de2011-07-29 15:34:32 +100018#include <linux/kmod.h>
David Härdeman724e2492010-04-08 13:10:00 -030019#include <linux/sched.h>
Maxim Levitsky0d2cb1d2010-07-31 11:59:17 -030020#include <linux/freezer.h>
Mauro Carvalho Chehabf62de672010-11-09 23:09:57 -030021#include "rc-core-priv.h"
Mauro Carvalho Chehaba3572c32010-03-20 20:59:44 -030022
David Härdeman724e2492010-04-08 13:10:00 -030023/* Define the max number of pulse/space transitions to buffer */
24#define MAX_IR_EVENT_SIZE 512
Mauro Carvalho Chehaba3572c32010-03-20 20:59:44 -030025
David Härdemanc2163692010-06-13 17:29:36 -030026/* Used to keep track of IR raw clients, protected by ir_raw_handler_lock */
27static LIST_HEAD(ir_raw_client_list);
28
Mauro Carvalho Chehab995187b2010-03-24 20:47:53 -030029/* Used to handle IR raw handler extensions */
Maxim Levitsky45a568f2010-07-31 11:59:16 -030030static DEFINE_MUTEX(ir_raw_handler_lock);
David Härdeman667c9eb2010-06-13 17:29:31 -030031static LIST_HEAD(ir_raw_handler_list);
32static u64 available_protocols;
Mauro Carvalho Chehab93c312f2010-03-25 21:13:43 -030033
Mauro Carvalho Chehab5fa29892010-04-08 19:04:06 -030034#ifdef MODULE
Mauro Carvalho Chehab995187b2010-03-24 20:47:53 -030035/* Used to load the decoders */
36static struct work_struct wq_load;
Mauro Carvalho Chehab5fa29892010-04-08 19:04:06 -030037#endif
Mauro Carvalho Chehab995187b2010-03-24 20:47:53 -030038
Maxim Levitsky0d2cb1d2010-07-31 11:59:17 -030039static int ir_raw_event_thread(void *data)
David Härdeman724e2492010-04-08 13:10:00 -030040{
David Härdemane40b1122010-04-15 18:46:00 -030041 struct ir_raw_event ev;
David Härdemanc2163692010-06-13 17:29:36 -030042 struct ir_raw_handler *handler;
Maxim Levitsky0d2cb1d2010-07-31 11:59:17 -030043 struct ir_raw_event_ctrl *raw = (struct ir_raw_event_ctrl *)data;
Maxim Levitskyc6ef1e72010-09-06 18:26:06 -030044 int retval;
David Härdeman724e2492010-04-08 13:10:00 -030045
Maxim Levitsky0d2cb1d2010-07-31 11:59:17 -030046 while (!kthread_should_stop()) {
Maxim Levitsky0d2cb1d2010-07-31 11:59:17 -030047
Maxim Levitskyc6ef1e72010-09-06 18:26:06 -030048 spin_lock_irq(&raw->lock);
Srinivas Kandagatla004ac382012-03-20 14:05:40 -030049 retval = kfifo_len(&raw->kfifo);
Maxim Levitsky0d2cb1d2010-07-31 11:59:17 -030050
Srinivas Kandagatla004ac382012-03-20 14:05:40 -030051 if (retval < sizeof(ev)) {
Maxim Levitskyc6ef1e72010-09-06 18:26:06 -030052 set_current_state(TASK_INTERRUPTIBLE);
53
54 if (kthread_should_stop())
55 set_current_state(TASK_RUNNING);
56
57 spin_unlock_irq(&raw->lock);
58 schedule();
59 continue;
Maxim Levitsky0d2cb1d2010-07-31 11:59:17 -030060 }
61
Srinivas Kandagatla004ac382012-03-20 14:05:40 -030062 retval = kfifo_out(&raw->kfifo, &ev, sizeof(ev));
Maxim Levitskyc6ef1e72010-09-06 18:26:06 -030063 spin_unlock_irq(&raw->lock);
Maxim Levitsky0d2cb1d2010-07-31 11:59:17 -030064
Maxim Levitskyc6ef1e72010-09-06 18:26:06 -030065 mutex_lock(&ir_raw_handler_lock);
66 list_for_each_entry(handler, &ir_raw_handler_list, list)
David Härdemand8b4b582010-10-29 16:08:23 -030067 handler->decode(raw->dev, ev);
Maxim Levitskyc6ef1e72010-09-06 18:26:06 -030068 raw->prev_ev = ev;
69 mutex_unlock(&ir_raw_handler_lock);
David Härdemanc2163692010-06-13 17:29:36 -030070 }
Maxim Levitsky0d2cb1d2010-07-31 11:59:17 -030071
72 return 0;
David Härdeman724e2492010-04-08 13:10:00 -030073}
74
David Härdeman724e2492010-04-08 13:10:00 -030075/**
76 * ir_raw_event_store() - pass a pulse/space duration to the raw ir decoders
David Härdemand8b4b582010-10-29 16:08:23 -030077 * @dev: the struct rc_dev device descriptor
David Härdemane40b1122010-04-15 18:46:00 -030078 * @ev: the struct ir_raw_event descriptor of the pulse/space
David Härdeman724e2492010-04-08 13:10:00 -030079 *
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 */
David Härdemand8b4b582010-10-29 16:08:23 -030085int ir_raw_event_store(struct rc_dev *dev, struct ir_raw_event *ev)
Mauro Carvalho Chehaba3572c32010-03-20 20:59:44 -030086{
David Härdemand8b4b582010-10-29 16:08:23 -030087 if (!dev->raw)
Mauro Carvalho Chehaba3572c32010-03-20 20:59:44 -030088 return -EINVAL;
89
Mauro Carvalho Chehab74c47922010-10-20 11:56:50 -030090 IR_dprintk(2, "sample: (%05dus %s)\n",
David Härdemand8b4b582010-10-29 16:08:23 -030091 TO_US(ev->duration), TO_STR(ev->pulse));
Maxim Levitsky510fcb72010-07-31 11:59:15 -030092
David Härdemand8b4b582010-10-29 16:08:23 -030093 if (kfifo_in(&dev->raw->kfifo, ev, sizeof(*ev)) != sizeof(*ev))
David Härdeman724e2492010-04-08 13:10:00 -030094 return -ENOMEM;
Mauro Carvalho Chehaba3572c32010-03-20 20:59:44 -030095
David Härdeman724e2492010-04-08 13:10:00 -030096 return 0;
Mauro Carvalho Chehaba3572c32010-03-20 20:59:44 -030097}
98EXPORT_SYMBOL_GPL(ir_raw_event_store);
99
David Härdeman724e2492010-04-08 13:10:00 -0300100/**
101 * ir_raw_event_store_edge() - notify raw ir decoders of the start of a pulse/space
David Härdemand8b4b582010-10-29 16:08:23 -0300102 * @dev: the struct rc_dev device descriptor
David Härdeman724e2492010-04-08 13:10:00 -0300103 * @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 */
David Härdemand8b4b582010-10-29 16:08:23 -0300111int ir_raw_event_store_edge(struct rc_dev *dev, enum raw_event_type type)
Mauro Carvalho Chehaba3572c32010-03-20 20:59:44 -0300112{
David Härdeman724e2492010-04-08 13:10:00 -0300113 ktime_t now;
114 s64 delta; /* ns */
Mauro Carvalho Chehab83587832011-01-20 18:16:50 -0300115 DEFINE_IR_RAW_EVENT(ev);
David Härdeman724e2492010-04-08 13:10:00 -0300116 int rc = 0;
Jarod Wilson3f5c4c72011-06-16 16:18:37 -0300117 int delay;
Mauro Carvalho Chehaba3572c32010-03-20 20:59:44 -0300118
David Härdemand8b4b582010-10-29 16:08:23 -0300119 if (!dev->raw)
David Härdeman724e2492010-04-08 13:10:00 -0300120 return -EINVAL;
121
122 now = ktime_get();
David Härdemand8b4b582010-10-29 16:08:23 -0300123 delta = ktime_to_ns(ktime_sub(now, dev->raw->last_event));
Jarod Wilson3f5c4c72011-06-16 16:18:37 -0300124 delay = MS_TO_NS(dev->input_dev->rep[REP_DELAY]);
David Härdeman724e2492010-04-08 13:10:00 -0300125
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.
Mauro Carvalho Chehaba3572c32010-03-20 20:59:44 -0300129 */
Jarod Wilson3f5c4c72011-06-16 16:18:37 -0300130 if (delta > delay || !dev->raw->last_type)
David Härdeman724e2492010-04-08 13:10:00 -0300131 type |= IR_START_EVENT;
David Härdemane40b1122010-04-15 18:46:00 -0300132 else
133 ev.duration = delta;
David Härdeman724e2492010-04-08 13:10:00 -0300134
135 if (type & IR_START_EVENT)
David Härdemand8b4b582010-10-29 16:08:23 -0300136 ir_raw_event_reset(dev);
137 else if (dev->raw->last_type & IR_SPACE) {
David Härdemane40b1122010-04-15 18:46:00 -0300138 ev.pulse = false;
David Härdemand8b4b582010-10-29 16:08:23 -0300139 rc = ir_raw_event_store(dev, &ev);
140 } else if (dev->raw->last_type & IR_PULSE) {
David Härdemane40b1122010-04-15 18:46:00 -0300141 ev.pulse = true;
David Härdemand8b4b582010-10-29 16:08:23 -0300142 rc = ir_raw_event_store(dev, &ev);
David Härdemane40b1122010-04-15 18:46:00 -0300143 } else
Mauro Carvalho Chehaba3572c32010-03-20 20:59:44 -0300144 return 0;
Mauro Carvalho Chehaba3572c32010-03-20 20:59:44 -0300145
David Härdemand8b4b582010-10-29 16:08:23 -0300146 dev->raw->last_event = now;
147 dev->raw->last_type = type;
Mauro Carvalho Chehaba3572c32010-03-20 20:59:44 -0300148 return rc;
149}
David Härdeman724e2492010-04-08 13:10:00 -0300150EXPORT_SYMBOL_GPL(ir_raw_event_store_edge);
151
152/**
Maxim Levitsky4a702eb2010-07-31 11:59:22 -0300153 * ir_raw_event_store_with_filter() - pass next pulse/space to decoders with some processing
David Härdemand8b4b582010-10-29 16:08:23 -0300154 * @dev: the struct rc_dev device descriptor
Maxim Levitsky4a702eb2010-07-31 11:59:22 -0300155 * @type: the type of the event that has occurred
156 *
157 * This routine (which may be called from an interrupt context) works
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300158 * in similar manner to ir_raw_event_store_edge.
Maxim Levitsky4a702eb2010-07-31 11:59:22 -0300159 * This routine is intended for devices with limited internal buffer
Sean Youngb83bfd12012-08-13 08:59:47 -0300160 * It automerges samples of same type, and handles timeouts. Returns non-zero
161 * if the event was added, and zero if the event was ignored due to idle
162 * processing.
Maxim Levitsky4a702eb2010-07-31 11:59:22 -0300163 */
David Härdemand8b4b582010-10-29 16:08:23 -0300164int ir_raw_event_store_with_filter(struct rc_dev *dev, struct ir_raw_event *ev)
Maxim Levitsky4a702eb2010-07-31 11:59:22 -0300165{
David Härdemand8b4b582010-10-29 16:08:23 -0300166 if (!dev->raw)
Maxim Levitsky4a702eb2010-07-31 11:59:22 -0300167 return -EINVAL;
168
169 /* Ignore spaces in idle mode */
David Härdemand8b4b582010-10-29 16:08:23 -0300170 if (dev->idle && !ev->pulse)
Maxim Levitsky4a702eb2010-07-31 11:59:22 -0300171 return 0;
David Härdemand8b4b582010-10-29 16:08:23 -0300172 else if (dev->idle)
173 ir_raw_event_set_idle(dev, false);
Maxim Levitsky4a702eb2010-07-31 11:59:22 -0300174
David Härdemand8b4b582010-10-29 16:08:23 -0300175 if (!dev->raw->this_ev.duration)
176 dev->raw->this_ev = *ev;
177 else if (ev->pulse == dev->raw->this_ev.pulse)
178 dev->raw->this_ev.duration += ev->duration;
179 else {
180 ir_raw_event_store(dev, &dev->raw->this_ev);
181 dev->raw->this_ev = *ev;
Maxim Levitsky4a702eb2010-07-31 11:59:22 -0300182 }
183
184 /* Enter idle mode if nessesary */
David Härdemand8b4b582010-10-29 16:08:23 -0300185 if (!ev->pulse && dev->timeout &&
186 dev->raw->this_ev.duration >= dev->timeout)
187 ir_raw_event_set_idle(dev, true);
188
Sean Youngb83bfd12012-08-13 08:59:47 -0300189 return 1;
Maxim Levitsky4a702eb2010-07-31 11:59:22 -0300190}
191EXPORT_SYMBOL_GPL(ir_raw_event_store_with_filter);
192
Maxim Levitsky46519182010-10-16 19:56:28 -0300193/**
David Härdemand8b4b582010-10-29 16:08:23 -0300194 * ir_raw_event_set_idle() - provide hint to rc-core when the device is idle or not
195 * @dev: the struct rc_dev device descriptor
196 * @idle: whether the device is idle or not
Maxim Levitsky46519182010-10-16 19:56:28 -0300197 */
David Härdemand8b4b582010-10-29 16:08:23 -0300198void ir_raw_event_set_idle(struct rc_dev *dev, bool idle)
Maxim Levitsky4a702eb2010-07-31 11:59:22 -0300199{
David Härdemand8b4b582010-10-29 16:08:23 -0300200 if (!dev->raw)
Maxim Levitsky4a702eb2010-07-31 11:59:22 -0300201 return;
202
Maxim Levitsky46519182010-10-16 19:56:28 -0300203 IR_dprintk(2, "%s idle mode\n", idle ? "enter" : "leave");
Maxim Levitsky4a702eb2010-07-31 11:59:22 -0300204
205 if (idle) {
David Härdemand8b4b582010-10-29 16:08:23 -0300206 dev->raw->this_ev.timeout = true;
207 ir_raw_event_store(dev, &dev->raw->this_ev);
208 init_ir_raw_event(&dev->raw->this_ev);
Maxim Levitsky4a702eb2010-07-31 11:59:22 -0300209 }
Maxim Levitsky46519182010-10-16 19:56:28 -0300210
David Härdemand8b4b582010-10-29 16:08:23 -0300211 if (dev->s_idle)
212 dev->s_idle(dev, idle);
213
214 dev->idle = idle;
Maxim Levitsky4a702eb2010-07-31 11:59:22 -0300215}
216EXPORT_SYMBOL_GPL(ir_raw_event_set_idle);
217
218/**
David Härdeman724e2492010-04-08 13:10:00 -0300219 * ir_raw_event_handle() - schedules the decoding of stored ir data
David Härdemand8b4b582010-10-29 16:08:23 -0300220 * @dev: the struct rc_dev device descriptor
David Härdeman724e2492010-04-08 13:10:00 -0300221 *
David Härdemand8b4b582010-10-29 16:08:23 -0300222 * This routine will tell rc-core to start decoding stored ir data.
David Härdeman724e2492010-04-08 13:10:00 -0300223 */
David Härdemand8b4b582010-10-29 16:08:23 -0300224void ir_raw_event_handle(struct rc_dev *dev)
David Härdeman724e2492010-04-08 13:10:00 -0300225{
Maxim Levitskyc6ef1e72010-09-06 18:26:06 -0300226 unsigned long flags;
David Härdeman724e2492010-04-08 13:10:00 -0300227
David Härdemand8b4b582010-10-29 16:08:23 -0300228 if (!dev->raw)
David Härdeman724e2492010-04-08 13:10:00 -0300229 return;
230
David Härdemand8b4b582010-10-29 16:08:23 -0300231 spin_lock_irqsave(&dev->raw->lock, flags);
232 wake_up_process(dev->raw->thread);
233 spin_unlock_irqrestore(&dev->raw->lock, flags);
David Härdeman724e2492010-04-08 13:10:00 -0300234}
Mauro Carvalho Chehaba3572c32010-03-20 20:59:44 -0300235EXPORT_SYMBOL_GPL(ir_raw_event_handle);
Mauro Carvalho Chehab995187b2010-03-24 20:47:53 -0300236
David Härdeman667c9eb2010-06-13 17:29:31 -0300237/* used internally by the sysfs interface */
238u64
Randy Dunlap2dbd61b2011-01-09 00:53:53 -0300239ir_raw_get_allowed_protocols(void)
David Härdeman667c9eb2010-06-13 17:29:31 -0300240{
241 u64 protocols;
Maxim Levitsky45a568f2010-07-31 11:59:16 -0300242 mutex_lock(&ir_raw_handler_lock);
David Härdeman667c9eb2010-06-13 17:29:31 -0300243 protocols = available_protocols;
Maxim Levitsky45a568f2010-07-31 11:59:16 -0300244 mutex_unlock(&ir_raw_handler_lock);
David Härdeman667c9eb2010-06-13 17:29:31 -0300245 return protocols;
246}
247
248/*
249 * Used to (un)register raw event clients
250 */
David Härdemand8b4b582010-10-29 16:08:23 -0300251int ir_raw_event_register(struct rc_dev *dev)
David Härdeman667c9eb2010-06-13 17:29:31 -0300252{
David Härdeman667c9eb2010-06-13 17:29:31 -0300253 int rc;
David Härdemanc2163692010-06-13 17:29:36 -0300254 struct ir_raw_handler *handler;
David Härdeman667c9eb2010-06-13 17:29:31 -0300255
David Härdemand8b4b582010-10-29 16:08:23 -0300256 if (!dev)
257 return -EINVAL;
258
259 dev->raw = kzalloc(sizeof(*dev->raw), GFP_KERNEL);
260 if (!dev->raw)
David Härdeman667c9eb2010-06-13 17:29:31 -0300261 return -ENOMEM;
262
David Härdemand8b4b582010-10-29 16:08:23 -0300263 dev->raw->dev = dev;
264 dev->raw->enabled_protocols = ~0;
265 rc = kfifo_alloc(&dev->raw->kfifo,
266 sizeof(struct ir_raw_event) * MAX_IR_EVENT_SIZE,
David Härdeman667c9eb2010-06-13 17:29:31 -0300267 GFP_KERNEL);
David Härdemand8b4b582010-10-29 16:08:23 -0300268 if (rc < 0)
269 goto out;
David Härdeman667c9eb2010-06-13 17:29:31 -0300270
David Härdemand8b4b582010-10-29 16:08:23 -0300271 spin_lock_init(&dev->raw->lock);
272 dev->raw->thread = kthread_run(ir_raw_event_thread, dev->raw,
273 "rc%ld", dev->devno);
Maxim Levitsky0d2cb1d2010-07-31 11:59:17 -0300274
David Härdemand8b4b582010-10-29 16:08:23 -0300275 if (IS_ERR(dev->raw->thread)) {
276 rc = PTR_ERR(dev->raw->thread);
277 goto out;
Maxim Levitsky0d2cb1d2010-07-31 11:59:17 -0300278 }
279
Maxim Levitsky45a568f2010-07-31 11:59:16 -0300280 mutex_lock(&ir_raw_handler_lock);
David Härdemand8b4b582010-10-29 16:08:23 -0300281 list_add_tail(&dev->raw->list, &ir_raw_client_list);
David Härdemanc2163692010-06-13 17:29:36 -0300282 list_for_each_entry(handler, &ir_raw_handler_list, list)
283 if (handler->raw_register)
David Härdemand8b4b582010-10-29 16:08:23 -0300284 handler->raw_register(dev);
Maxim Levitsky45a568f2010-07-31 11:59:16 -0300285 mutex_unlock(&ir_raw_handler_lock);
David Härdeman667c9eb2010-06-13 17:29:31 -0300286
David Härdemanc2163692010-06-13 17:29:36 -0300287 return 0;
David Härdemand8b4b582010-10-29 16:08:23 -0300288
289out:
290 kfree(dev->raw);
291 dev->raw = NULL;
292 return rc;
David Härdeman667c9eb2010-06-13 17:29:31 -0300293}
294
David Härdemand8b4b582010-10-29 16:08:23 -0300295void ir_raw_event_unregister(struct rc_dev *dev)
David Härdeman667c9eb2010-06-13 17:29:31 -0300296{
David Härdemanc2163692010-06-13 17:29:36 -0300297 struct ir_raw_handler *handler;
David Härdeman667c9eb2010-06-13 17:29:31 -0300298
David Härdemand8b4b582010-10-29 16:08:23 -0300299 if (!dev || !dev->raw)
David Härdeman667c9eb2010-06-13 17:29:31 -0300300 return;
301
David Härdemand8b4b582010-10-29 16:08:23 -0300302 kthread_stop(dev->raw->thread);
David Härdemanc2163692010-06-13 17:29:36 -0300303
Maxim Levitsky45a568f2010-07-31 11:59:16 -0300304 mutex_lock(&ir_raw_handler_lock);
David Härdemand8b4b582010-10-29 16:08:23 -0300305 list_del(&dev->raw->list);
David Härdemanc2163692010-06-13 17:29:36 -0300306 list_for_each_entry(handler, &ir_raw_handler_list, list)
307 if (handler->raw_unregister)
David Härdemand8b4b582010-10-29 16:08:23 -0300308 handler->raw_unregister(dev);
Maxim Levitsky45a568f2010-07-31 11:59:16 -0300309 mutex_unlock(&ir_raw_handler_lock);
David Härdeman667c9eb2010-06-13 17:29:31 -0300310
David Härdemand8b4b582010-10-29 16:08:23 -0300311 kfifo_free(&dev->raw->kfifo);
312 kfree(dev->raw);
313 dev->raw = NULL;
David Härdeman667c9eb2010-06-13 17:29:31 -0300314}
315
Mauro Carvalho Chehab995187b2010-03-24 20:47:53 -0300316/*
317 * Extension interface - used to register the IR decoders
318 */
319
320int ir_raw_handler_register(struct ir_raw_handler *ir_raw_handler)
321{
David Härdemanc2163692010-06-13 17:29:36 -0300322 struct ir_raw_event_ctrl *raw;
323
Maxim Levitsky45a568f2010-07-31 11:59:16 -0300324 mutex_lock(&ir_raw_handler_lock);
Mauro Carvalho Chehab995187b2010-03-24 20:47:53 -0300325 list_add_tail(&ir_raw_handler->list, &ir_raw_handler_list);
David Härdemanc2163692010-06-13 17:29:36 -0300326 if (ir_raw_handler->raw_register)
327 list_for_each_entry(raw, &ir_raw_client_list, list)
David Härdemand8b4b582010-10-29 16:08:23 -0300328 ir_raw_handler->raw_register(raw->dev);
David Härdeman667c9eb2010-06-13 17:29:31 -0300329 available_protocols |= ir_raw_handler->protocols;
Maxim Levitsky45a568f2010-07-31 11:59:16 -0300330 mutex_unlock(&ir_raw_handler_lock);
David Härdeman667c9eb2010-06-13 17:29:31 -0300331
Mauro Carvalho Chehab995187b2010-03-24 20:47:53 -0300332 return 0;
333}
334EXPORT_SYMBOL(ir_raw_handler_register);
335
336void ir_raw_handler_unregister(struct ir_raw_handler *ir_raw_handler)
337{
David Härdemanc2163692010-06-13 17:29:36 -0300338 struct ir_raw_event_ctrl *raw;
339
Maxim Levitsky45a568f2010-07-31 11:59:16 -0300340 mutex_lock(&ir_raw_handler_lock);
Mauro Carvalho Chehab995187b2010-03-24 20:47:53 -0300341 list_del(&ir_raw_handler->list);
David Härdemanc2163692010-06-13 17:29:36 -0300342 if (ir_raw_handler->raw_unregister)
343 list_for_each_entry(raw, &ir_raw_client_list, list)
David Härdemand8b4b582010-10-29 16:08:23 -0300344 ir_raw_handler->raw_unregister(raw->dev);
David Härdeman667c9eb2010-06-13 17:29:31 -0300345 available_protocols &= ~ir_raw_handler->protocols;
Maxim Levitsky45a568f2010-07-31 11:59:16 -0300346 mutex_unlock(&ir_raw_handler_lock);
Mauro Carvalho Chehab995187b2010-03-24 20:47:53 -0300347}
348EXPORT_SYMBOL(ir_raw_handler_unregister);
349
Mauro Carvalho Chehab5fa29892010-04-08 19:04:06 -0300350#ifdef MODULE
Mauro Carvalho Chehab995187b2010-03-24 20:47:53 -0300351static void init_decoders(struct work_struct *work)
352{
353 /* Load the decoder modules */
354
355 load_nec_decode();
Mauro Carvalho Chehabdb1423a2010-04-04 10:27:20 -0300356 load_rc5_decode();
David Härdeman784a4932010-04-08 20:04:40 -0300357 load_rc6_decode();
David Härdemanbf670f62010-04-15 18:46:05 -0300358 load_jvc_decode();
David Härdeman3fe29c82010-04-15 18:46:10 -0300359 load_sony_decode();
Mauro Carvalho Chehabb32e7242011-11-23 12:04:08 -0300360 load_sanyo_decode();
Jarod Wilsonf5f2cc62011-07-13 18:09:48 -0300361 load_mce_kbd_decode();
Jarod Wilsonca414692010-07-03 01:07:53 -0300362 load_lirc_codec();
Mauro Carvalho Chehab995187b2010-03-24 20:47:53 -0300363
364 /* If needed, we may later add some init code. In this case,
Mauro Carvalho Chehab6bda9642010-11-17 13:28:38 -0300365 it is needed to change the CONFIG_MODULE test at rc-core.h
Mauro Carvalho Chehab995187b2010-03-24 20:47:53 -0300366 */
367}
Mauro Carvalho Chehab5fa29892010-04-08 19:04:06 -0300368#endif
Mauro Carvalho Chehab995187b2010-03-24 20:47:53 -0300369
370void ir_raw_init(void)
371{
Mauro Carvalho Chehab93c312f2010-03-25 21:13:43 -0300372#ifdef MODULE
Mauro Carvalho Chehab995187b2010-03-24 20:47:53 -0300373 INIT_WORK(&wq_load, init_decoders);
374 schedule_work(&wq_load);
Mauro Carvalho Chehab93c312f2010-03-25 21:13:43 -0300375#endif
376}