blob: 37fdbff0051bf7cfc7e893ac4a9b37b35368f322 [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
Maxim Levitsky0d2cb1d2010-07-31 11:59:17 -030015#include <linux/kthread.h>
Maxim Levitsky45a568f2010-07-31 11:59:16 -030016#include <linux/mutex.h>
Stephen Rothwelldff65de2011-07-29 15:34:32 +100017#include <linux/kmod.h>
David Härdeman724e2492010-04-08 13:10:00 -030018#include <linux/sched.h>
Maxim Levitsky0d2cb1d2010-07-31 11:59:17 -030019#include <linux/freezer.h>
Mauro Carvalho Chehabf62de672010-11-09 23:09:57 -030020#include "rc-core-priv.h"
Mauro Carvalho Chehaba3572c32010-03-20 20:59:44 -030021
David Härdeman724e2492010-04-08 13:10:00 -030022/* Define the max number of pulse/space transitions to buffer */
23#define MAX_IR_EVENT_SIZE 512
Mauro Carvalho Chehaba3572c32010-03-20 20:59:44 -030024
David Härdemanc2163692010-06-13 17:29:36 -030025/* Used to keep track of IR raw clients, protected by ir_raw_handler_lock */
26static LIST_HEAD(ir_raw_client_list);
27
Mauro Carvalho Chehab995187b2010-03-24 20:47:53 -030028/* Used to handle IR raw handler extensions */
Maxim Levitsky45a568f2010-07-31 11:59:16 -030029static DEFINE_MUTEX(ir_raw_handler_lock);
David Härdeman667c9eb2010-06-13 17:29:31 -030030static LIST_HEAD(ir_raw_handler_list);
31static u64 available_protocols;
Mauro Carvalho Chehab93c312f2010-03-25 21:13:43 -030032
Mauro Carvalho Chehab5fa29892010-04-08 19:04:06 -030033#ifdef MODULE
Mauro Carvalho Chehab995187b2010-03-24 20:47:53 -030034/* Used to load the decoders */
35static struct work_struct wq_load;
Mauro Carvalho Chehab5fa29892010-04-08 19:04:06 -030036#endif
Mauro Carvalho Chehab995187b2010-03-24 20:47:53 -030037
Maxim Levitsky0d2cb1d2010-07-31 11:59:17 -030038static int ir_raw_event_thread(void *data)
David Härdeman724e2492010-04-08 13:10:00 -030039{
David Härdemane40b1122010-04-15 18:46:00 -030040 struct ir_raw_event ev;
David Härdemanc2163692010-06-13 17:29:36 -030041 struct ir_raw_handler *handler;
Maxim Levitsky0d2cb1d2010-07-31 11:59:17 -030042 struct ir_raw_event_ctrl *raw = (struct ir_raw_event_ctrl *)data;
Maxim Levitskyc6ef1e72010-09-06 18:26:06 -030043 int retval;
David Härdeman724e2492010-04-08 13:10:00 -030044
Maxim Levitsky0d2cb1d2010-07-31 11:59:17 -030045 while (!kthread_should_stop()) {
Maxim Levitsky0d2cb1d2010-07-31 11:59:17 -030046
Maxim Levitskyc6ef1e72010-09-06 18:26:06 -030047 spin_lock_irq(&raw->lock);
48 retval = kfifo_out(&raw->kfifo, &ev, sizeof(ev));
Maxim Levitsky0d2cb1d2010-07-31 11:59:17 -030049
Maxim Levitskyc6ef1e72010-09-06 18:26:06 -030050 if (!retval) {
51 set_current_state(TASK_INTERRUPTIBLE);
52
53 if (kthread_should_stop())
54 set_current_state(TASK_RUNNING);
55
56 spin_unlock_irq(&raw->lock);
57 schedule();
58 continue;
Maxim Levitsky0d2cb1d2010-07-31 11:59:17 -030059 }
60
Maxim Levitskyc6ef1e72010-09-06 18:26:06 -030061 spin_unlock_irq(&raw->lock);
Maxim Levitsky0d2cb1d2010-07-31 11:59:17 -030062
Maxim Levitskyc6ef1e72010-09-06 18:26:06 -030063
64 BUG_ON(retval != sizeof(ev));
65
66 mutex_lock(&ir_raw_handler_lock);
67 list_for_each_entry(handler, &ir_raw_handler_list, list)
David Härdemand8b4b582010-10-29 16:08:23 -030068 handler->decode(raw->dev, ev);
Maxim Levitskyc6ef1e72010-09-06 18:26:06 -030069 raw->prev_ev = ev;
70 mutex_unlock(&ir_raw_handler_lock);
David Härdemanc2163692010-06-13 17:29:36 -030071 }
Maxim Levitsky0d2cb1d2010-07-31 11:59:17 -030072
73 return 0;
David Härdeman724e2492010-04-08 13:10:00 -030074}
75
David Härdeman724e2492010-04-08 13:10:00 -030076/**
77 * ir_raw_event_store() - pass a pulse/space duration to the raw ir decoders
David Härdemand8b4b582010-10-29 16:08:23 -030078 * @dev: the struct rc_dev device descriptor
David Härdemane40b1122010-04-15 18:46:00 -030079 * @ev: the struct ir_raw_event descriptor of the pulse/space
David Härdeman724e2492010-04-08 13:10:00 -030080 *
81 * This routine (which may be called from an interrupt context) stores a
82 * pulse/space duration for the raw ir decoding state machines. Pulses are
83 * signalled as positive values and spaces as negative values. A zero value
84 * will reset the decoding state machines.
85 */
David Härdemand8b4b582010-10-29 16:08:23 -030086int ir_raw_event_store(struct rc_dev *dev, struct ir_raw_event *ev)
Mauro Carvalho Chehaba3572c32010-03-20 20:59:44 -030087{
David Härdemand8b4b582010-10-29 16:08:23 -030088 if (!dev->raw)
Mauro Carvalho Chehaba3572c32010-03-20 20:59:44 -030089 return -EINVAL;
90
Mauro Carvalho Chehab74c47922010-10-20 11:56:50 -030091 IR_dprintk(2, "sample: (%05dus %s)\n",
David Härdemand8b4b582010-10-29 16:08:23 -030092 TO_US(ev->duration), TO_STR(ev->pulse));
Maxim Levitsky510fcb72010-07-31 11:59:15 -030093
David Härdemand8b4b582010-10-29 16:08:23 -030094 if (kfifo_in(&dev->raw->kfifo, ev, sizeof(*ev)) != sizeof(*ev))
David Härdeman724e2492010-04-08 13:10:00 -030095 return -ENOMEM;
Mauro Carvalho Chehaba3572c32010-03-20 20:59:44 -030096
David Härdeman724e2492010-04-08 13:10:00 -030097 return 0;
Mauro Carvalho Chehaba3572c32010-03-20 20:59:44 -030098}
99EXPORT_SYMBOL_GPL(ir_raw_event_store);
100
David Härdeman724e2492010-04-08 13:10:00 -0300101/**
102 * ir_raw_event_store_edge() - notify raw ir decoders of the start of a pulse/space
David Härdemand8b4b582010-10-29 16:08:23 -0300103 * @dev: the struct rc_dev device descriptor
David Härdeman724e2492010-04-08 13:10:00 -0300104 * @type: the type of the event that has occurred
105 *
106 * This routine (which may be called from an interrupt context) is used to
107 * store the beginning of an ir pulse or space (or the start/end of ir
108 * reception) for the raw ir decoding state machines. This is used by
109 * hardware which does not provide durations directly but only interrupts
110 * (or similar events) on state change.
111 */
David Härdemand8b4b582010-10-29 16:08:23 -0300112int ir_raw_event_store_edge(struct rc_dev *dev, enum raw_event_type type)
Mauro Carvalho Chehaba3572c32010-03-20 20:59:44 -0300113{
David Härdeman724e2492010-04-08 13:10:00 -0300114 ktime_t now;
115 s64 delta; /* ns */
Mauro Carvalho Chehab83587832011-01-20 18:16:50 -0300116 DEFINE_IR_RAW_EVENT(ev);
David Härdeman724e2492010-04-08 13:10:00 -0300117 int rc = 0;
Jarod Wilson3f5c4c72011-06-16 16:18:37 -0300118 int delay;
Mauro Carvalho Chehaba3572c32010-03-20 20:59:44 -0300119
David Härdemand8b4b582010-10-29 16:08:23 -0300120 if (!dev->raw)
David Härdeman724e2492010-04-08 13:10:00 -0300121 return -EINVAL;
122
123 now = ktime_get();
David Härdemand8b4b582010-10-29 16:08:23 -0300124 delta = ktime_to_ns(ktime_sub(now, dev->raw->last_event));
Jarod Wilson3f5c4c72011-06-16 16:18:37 -0300125 delay = MS_TO_NS(dev->input_dev->rep[REP_DELAY]);
David Härdeman724e2492010-04-08 13:10:00 -0300126
127 /* Check for a long duration since last event or if we're
128 * being called for the first time, note that delta can't
129 * possibly be negative.
Mauro Carvalho Chehaba3572c32010-03-20 20:59:44 -0300130 */
Jarod Wilson3f5c4c72011-06-16 16:18:37 -0300131 if (delta > delay || !dev->raw->last_type)
David Härdeman724e2492010-04-08 13:10:00 -0300132 type |= IR_START_EVENT;
David Härdemane40b1122010-04-15 18:46:00 -0300133 else
134 ev.duration = delta;
David Härdeman724e2492010-04-08 13:10:00 -0300135
136 if (type & IR_START_EVENT)
David Härdemand8b4b582010-10-29 16:08:23 -0300137 ir_raw_event_reset(dev);
138 else if (dev->raw->last_type & IR_SPACE) {
David Härdemane40b1122010-04-15 18:46:00 -0300139 ev.pulse = false;
David Härdemand8b4b582010-10-29 16:08:23 -0300140 rc = ir_raw_event_store(dev, &ev);
141 } else if (dev->raw->last_type & IR_PULSE) {
David Härdemane40b1122010-04-15 18:46:00 -0300142 ev.pulse = true;
David Härdemand8b4b582010-10-29 16:08:23 -0300143 rc = ir_raw_event_store(dev, &ev);
David Härdemane40b1122010-04-15 18:46:00 -0300144 } else
Mauro Carvalho Chehaba3572c32010-03-20 20:59:44 -0300145 return 0;
Mauro Carvalho Chehaba3572c32010-03-20 20:59:44 -0300146
David Härdemand8b4b582010-10-29 16:08:23 -0300147 dev->raw->last_event = now;
148 dev->raw->last_type = type;
Mauro Carvalho Chehaba3572c32010-03-20 20:59:44 -0300149 return rc;
150}
David Härdeman724e2492010-04-08 13:10:00 -0300151EXPORT_SYMBOL_GPL(ir_raw_event_store_edge);
152
153/**
Maxim Levitsky4a702eb2010-07-31 11:59:22 -0300154 * ir_raw_event_store_with_filter() - pass next pulse/space to decoders with some processing
David Härdemand8b4b582010-10-29 16:08:23 -0300155 * @dev: the struct rc_dev device descriptor
Maxim Levitsky4a702eb2010-07-31 11:59:22 -0300156 * @type: the type of the event that has occurred
157 *
158 * This routine (which may be called from an interrupt context) works
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300159 * in similar manner to ir_raw_event_store_edge.
Maxim Levitsky4a702eb2010-07-31 11:59:22 -0300160 * This routine is intended for devices with limited internal buffer
161 * It automerges samples of same type, and handles timeouts
162 */
David Härdemand8b4b582010-10-29 16:08:23 -0300163int ir_raw_event_store_with_filter(struct rc_dev *dev, struct ir_raw_event *ev)
Maxim Levitsky4a702eb2010-07-31 11:59:22 -0300164{
David Härdemand8b4b582010-10-29 16:08:23 -0300165 if (!dev->raw)
Maxim Levitsky4a702eb2010-07-31 11:59:22 -0300166 return -EINVAL;
167
168 /* Ignore spaces in idle mode */
David Härdemand8b4b582010-10-29 16:08:23 -0300169 if (dev->idle && !ev->pulse)
Maxim Levitsky4a702eb2010-07-31 11:59:22 -0300170 return 0;
David Härdemand8b4b582010-10-29 16:08:23 -0300171 else if (dev->idle)
172 ir_raw_event_set_idle(dev, false);
Maxim Levitsky4a702eb2010-07-31 11:59:22 -0300173
David Härdemand8b4b582010-10-29 16:08:23 -0300174 if (!dev->raw->this_ev.duration)
175 dev->raw->this_ev = *ev;
176 else if (ev->pulse == dev->raw->this_ev.pulse)
177 dev->raw->this_ev.duration += ev->duration;
178 else {
179 ir_raw_event_store(dev, &dev->raw->this_ev);
180 dev->raw->this_ev = *ev;
Maxim Levitsky4a702eb2010-07-31 11:59:22 -0300181 }
182
183 /* Enter idle mode if nessesary */
David Härdemand8b4b582010-10-29 16:08:23 -0300184 if (!ev->pulse && dev->timeout &&
185 dev->raw->this_ev.duration >= dev->timeout)
186 ir_raw_event_set_idle(dev, true);
187
Maxim Levitsky4a702eb2010-07-31 11:59:22 -0300188 return 0;
189}
190EXPORT_SYMBOL_GPL(ir_raw_event_store_with_filter);
191
Maxim Levitsky46519182010-10-16 19:56:28 -0300192/**
David Härdemand8b4b582010-10-29 16:08:23 -0300193 * ir_raw_event_set_idle() - provide hint to rc-core when the device is idle or not
194 * @dev: the struct rc_dev device descriptor
195 * @idle: whether the device is idle or not
Maxim Levitsky46519182010-10-16 19:56:28 -0300196 */
David Härdemand8b4b582010-10-29 16:08:23 -0300197void ir_raw_event_set_idle(struct rc_dev *dev, bool idle)
Maxim Levitsky4a702eb2010-07-31 11:59:22 -0300198{
David Härdemand8b4b582010-10-29 16:08:23 -0300199 if (!dev->raw)
Maxim Levitsky4a702eb2010-07-31 11:59:22 -0300200 return;
201
Maxim Levitsky46519182010-10-16 19:56:28 -0300202 IR_dprintk(2, "%s idle mode\n", idle ? "enter" : "leave");
Maxim Levitsky4a702eb2010-07-31 11:59:22 -0300203
204 if (idle) {
David Härdemand8b4b582010-10-29 16:08:23 -0300205 dev->raw->this_ev.timeout = true;
206 ir_raw_event_store(dev, &dev->raw->this_ev);
207 init_ir_raw_event(&dev->raw->this_ev);
Maxim Levitsky4a702eb2010-07-31 11:59:22 -0300208 }
Maxim Levitsky46519182010-10-16 19:56:28 -0300209
David Härdemand8b4b582010-10-29 16:08:23 -0300210 if (dev->s_idle)
211 dev->s_idle(dev, idle);
212
213 dev->idle = idle;
Maxim Levitsky4a702eb2010-07-31 11:59:22 -0300214}
215EXPORT_SYMBOL_GPL(ir_raw_event_set_idle);
216
217/**
David Härdeman724e2492010-04-08 13:10:00 -0300218 * ir_raw_event_handle() - schedules the decoding of stored ir data
David Härdemand8b4b582010-10-29 16:08:23 -0300219 * @dev: the struct rc_dev device descriptor
David Härdeman724e2492010-04-08 13:10:00 -0300220 *
David Härdemand8b4b582010-10-29 16:08:23 -0300221 * This routine will tell rc-core to start decoding stored ir data.
David Härdeman724e2492010-04-08 13:10:00 -0300222 */
David Härdemand8b4b582010-10-29 16:08:23 -0300223void ir_raw_event_handle(struct rc_dev *dev)
David Härdeman724e2492010-04-08 13:10:00 -0300224{
Maxim Levitskyc6ef1e72010-09-06 18:26:06 -0300225 unsigned long flags;
David Härdeman724e2492010-04-08 13:10:00 -0300226
David Härdemand8b4b582010-10-29 16:08:23 -0300227 if (!dev->raw)
David Härdeman724e2492010-04-08 13:10:00 -0300228 return;
229
David Härdemand8b4b582010-10-29 16:08:23 -0300230 spin_lock_irqsave(&dev->raw->lock, flags);
231 wake_up_process(dev->raw->thread);
232 spin_unlock_irqrestore(&dev->raw->lock, flags);
David Härdeman724e2492010-04-08 13:10:00 -0300233}
Mauro Carvalho Chehaba3572c32010-03-20 20:59:44 -0300234EXPORT_SYMBOL_GPL(ir_raw_event_handle);
Mauro Carvalho Chehab995187b2010-03-24 20:47:53 -0300235
David Härdeman667c9eb2010-06-13 17:29:31 -0300236/* used internally by the sysfs interface */
237u64
Randy Dunlap2dbd61b2011-01-09 00:53:53 -0300238ir_raw_get_allowed_protocols(void)
David Härdeman667c9eb2010-06-13 17:29:31 -0300239{
240 u64 protocols;
Maxim Levitsky45a568f2010-07-31 11:59:16 -0300241 mutex_lock(&ir_raw_handler_lock);
David Härdeman667c9eb2010-06-13 17:29:31 -0300242 protocols = available_protocols;
Maxim Levitsky45a568f2010-07-31 11:59:16 -0300243 mutex_unlock(&ir_raw_handler_lock);
David Härdeman667c9eb2010-06-13 17:29:31 -0300244 return protocols;
245}
246
247/*
248 * Used to (un)register raw event clients
249 */
David Härdemand8b4b582010-10-29 16:08:23 -0300250int ir_raw_event_register(struct rc_dev *dev)
David Härdeman667c9eb2010-06-13 17:29:31 -0300251{
David Härdeman667c9eb2010-06-13 17:29:31 -0300252 int rc;
David Härdemanc2163692010-06-13 17:29:36 -0300253 struct ir_raw_handler *handler;
David Härdeman667c9eb2010-06-13 17:29:31 -0300254
David Härdemand8b4b582010-10-29 16:08:23 -0300255 if (!dev)
256 return -EINVAL;
257
258 dev->raw = kzalloc(sizeof(*dev->raw), GFP_KERNEL);
259 if (!dev->raw)
David Härdeman667c9eb2010-06-13 17:29:31 -0300260 return -ENOMEM;
261
David Härdemand8b4b582010-10-29 16:08:23 -0300262 dev->raw->dev = dev;
263 dev->raw->enabled_protocols = ~0;
264 rc = kfifo_alloc(&dev->raw->kfifo,
265 sizeof(struct ir_raw_event) * MAX_IR_EVENT_SIZE,
David Härdeman667c9eb2010-06-13 17:29:31 -0300266 GFP_KERNEL);
David Härdemand8b4b582010-10-29 16:08:23 -0300267 if (rc < 0)
268 goto out;
David Härdeman667c9eb2010-06-13 17:29:31 -0300269
David Härdemand8b4b582010-10-29 16:08:23 -0300270 spin_lock_init(&dev->raw->lock);
271 dev->raw->thread = kthread_run(ir_raw_event_thread, dev->raw,
272 "rc%ld", dev->devno);
Maxim Levitsky0d2cb1d2010-07-31 11:59:17 -0300273
David Härdemand8b4b582010-10-29 16:08:23 -0300274 if (IS_ERR(dev->raw->thread)) {
275 rc = PTR_ERR(dev->raw->thread);
276 goto out;
Maxim Levitsky0d2cb1d2010-07-31 11:59:17 -0300277 }
278
Maxim Levitsky45a568f2010-07-31 11:59:16 -0300279 mutex_lock(&ir_raw_handler_lock);
David Härdemand8b4b582010-10-29 16:08:23 -0300280 list_add_tail(&dev->raw->list, &ir_raw_client_list);
David Härdemanc2163692010-06-13 17:29:36 -0300281 list_for_each_entry(handler, &ir_raw_handler_list, list)
282 if (handler->raw_register)
David Härdemand8b4b582010-10-29 16:08:23 -0300283 handler->raw_register(dev);
Maxim Levitsky45a568f2010-07-31 11:59:16 -0300284 mutex_unlock(&ir_raw_handler_lock);
David Härdeman667c9eb2010-06-13 17:29:31 -0300285
David Härdemanc2163692010-06-13 17:29:36 -0300286 return 0;
David Härdemand8b4b582010-10-29 16:08:23 -0300287
288out:
289 kfree(dev->raw);
290 dev->raw = NULL;
291 return rc;
David Härdeman667c9eb2010-06-13 17:29:31 -0300292}
293
David Härdemand8b4b582010-10-29 16:08:23 -0300294void ir_raw_event_unregister(struct rc_dev *dev)
David Härdeman667c9eb2010-06-13 17:29:31 -0300295{
David Härdemanc2163692010-06-13 17:29:36 -0300296 struct ir_raw_handler *handler;
David Härdeman667c9eb2010-06-13 17:29:31 -0300297
David Härdemand8b4b582010-10-29 16:08:23 -0300298 if (!dev || !dev->raw)
David Härdeman667c9eb2010-06-13 17:29:31 -0300299 return;
300
David Härdemand8b4b582010-10-29 16:08:23 -0300301 kthread_stop(dev->raw->thread);
David Härdemanc2163692010-06-13 17:29:36 -0300302
Maxim Levitsky45a568f2010-07-31 11:59:16 -0300303 mutex_lock(&ir_raw_handler_lock);
David Härdemand8b4b582010-10-29 16:08:23 -0300304 list_del(&dev->raw->list);
David Härdemanc2163692010-06-13 17:29:36 -0300305 list_for_each_entry(handler, &ir_raw_handler_list, list)
306 if (handler->raw_unregister)
David Härdemand8b4b582010-10-29 16:08:23 -0300307 handler->raw_unregister(dev);
Maxim Levitsky45a568f2010-07-31 11:59:16 -0300308 mutex_unlock(&ir_raw_handler_lock);
David Härdeman667c9eb2010-06-13 17:29:31 -0300309
David Härdemand8b4b582010-10-29 16:08:23 -0300310 kfifo_free(&dev->raw->kfifo);
311 kfree(dev->raw);
312 dev->raw = NULL;
David Härdeman667c9eb2010-06-13 17:29:31 -0300313}
314
Mauro Carvalho Chehab995187b2010-03-24 20:47:53 -0300315/*
316 * Extension interface - used to register the IR decoders
317 */
318
319int ir_raw_handler_register(struct ir_raw_handler *ir_raw_handler)
320{
David Härdemanc2163692010-06-13 17:29:36 -0300321 struct ir_raw_event_ctrl *raw;
322
Maxim Levitsky45a568f2010-07-31 11:59:16 -0300323 mutex_lock(&ir_raw_handler_lock);
Mauro Carvalho Chehab995187b2010-03-24 20:47:53 -0300324 list_add_tail(&ir_raw_handler->list, &ir_raw_handler_list);
David Härdemanc2163692010-06-13 17:29:36 -0300325 if (ir_raw_handler->raw_register)
326 list_for_each_entry(raw, &ir_raw_client_list, list)
David Härdemand8b4b582010-10-29 16:08:23 -0300327 ir_raw_handler->raw_register(raw->dev);
David Härdeman667c9eb2010-06-13 17:29:31 -0300328 available_protocols |= ir_raw_handler->protocols;
Maxim Levitsky45a568f2010-07-31 11:59:16 -0300329 mutex_unlock(&ir_raw_handler_lock);
David Härdeman667c9eb2010-06-13 17:29:31 -0300330
Mauro Carvalho Chehab995187b2010-03-24 20:47:53 -0300331 return 0;
332}
333EXPORT_SYMBOL(ir_raw_handler_register);
334
335void ir_raw_handler_unregister(struct ir_raw_handler *ir_raw_handler)
336{
David Härdemanc2163692010-06-13 17:29:36 -0300337 struct ir_raw_event_ctrl *raw;
338
Maxim Levitsky45a568f2010-07-31 11:59:16 -0300339 mutex_lock(&ir_raw_handler_lock);
Mauro Carvalho Chehab995187b2010-03-24 20:47:53 -0300340 list_del(&ir_raw_handler->list);
David Härdemanc2163692010-06-13 17:29:36 -0300341 if (ir_raw_handler->raw_unregister)
342 list_for_each_entry(raw, &ir_raw_client_list, list)
David Härdemand8b4b582010-10-29 16:08:23 -0300343 ir_raw_handler->raw_unregister(raw->dev);
David Härdeman667c9eb2010-06-13 17:29:31 -0300344 available_protocols &= ~ir_raw_handler->protocols;
Maxim Levitsky45a568f2010-07-31 11:59:16 -0300345 mutex_unlock(&ir_raw_handler_lock);
Mauro Carvalho Chehab995187b2010-03-24 20:47:53 -0300346}
347EXPORT_SYMBOL(ir_raw_handler_unregister);
348
Mauro Carvalho Chehab5fa29892010-04-08 19:04:06 -0300349#ifdef MODULE
Mauro Carvalho Chehab995187b2010-03-24 20:47:53 -0300350static void init_decoders(struct work_struct *work)
351{
352 /* Load the decoder modules */
353
354 load_nec_decode();
Mauro Carvalho Chehabdb1423a2010-04-04 10:27:20 -0300355 load_rc5_decode();
David Härdeman784a4932010-04-08 20:04:40 -0300356 load_rc6_decode();
David Härdemanbf670f62010-04-15 18:46:05 -0300357 load_jvc_decode();
David Härdeman3fe29c82010-04-15 18:46:10 -0300358 load_sony_decode();
Jarod Wilsonf5f2cc62011-07-13 18:09:48 -0300359 load_mce_kbd_decode();
Jarod Wilsonca414692010-07-03 01:07:53 -0300360 load_lirc_codec();
Mauro Carvalho Chehab995187b2010-03-24 20:47:53 -0300361
362 /* If needed, we may later add some init code. In this case,
Mauro Carvalho Chehab6bda9642010-11-17 13:28:38 -0300363 it is needed to change the CONFIG_MODULE test at rc-core.h
Mauro Carvalho Chehab995187b2010-03-24 20:47:53 -0300364 */
365}
Mauro Carvalho Chehab5fa29892010-04-08 19:04:06 -0300366#endif
Mauro Carvalho Chehab995187b2010-03-24 20:47:53 -0300367
368void ir_raw_init(void)
369{
Mauro Carvalho Chehab93c312f2010-03-25 21:13:43 -0300370#ifdef MODULE
Mauro Carvalho Chehab995187b2010-03-24 20:47:53 -0300371 INIT_WORK(&wq_load, init_decoders);
372 schedule_work(&wq_load);
Mauro Carvalho Chehab93c312f2010-03-25 21:13:43 -0300373#endif
374}