blob: c69807fe2feff08c47441dc2bf3c780c4440d505 [file] [log] [blame]
David Härdeman4924a312014-04-03 20:34:28 -03001/* rc-ir-raw.c - handle IR pulse/space events
Mauro Carvalho Chehaba3572c32010-03-20 20:59:44 -03002 *
Mauro Carvalho Chehab37e59f82014-02-07 08:03:07 -02003 * Copyright (C) 2010 by Mauro Carvalho Chehab
Mauro Carvalho Chehaba3572c32010-03-20 20:59:44 -03004 *
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
Maxim Levitsky0d2cb1d2010-07-31 11:59:17 -030034static int ir_raw_event_thread(void *data)
David Härdeman724e2492010-04-08 13:10:00 -030035{
David Härdemane40b1122010-04-15 18:46:00 -030036 struct ir_raw_event ev;
David Härdemanc2163692010-06-13 17:29:36 -030037 struct ir_raw_handler *handler;
Maxim Levitsky0d2cb1d2010-07-31 11:59:17 -030038 struct ir_raw_event_ctrl *raw = (struct ir_raw_event_ctrl *)data;
Maxim Levitskyc6ef1e72010-09-06 18:26:06 -030039 int retval;
David Härdeman724e2492010-04-08 13:10:00 -030040
Maxim Levitsky0d2cb1d2010-07-31 11:59:17 -030041 while (!kthread_should_stop()) {
Maxim Levitsky0d2cb1d2010-07-31 11:59:17 -030042
Maxim Levitskyc6ef1e72010-09-06 18:26:06 -030043 spin_lock_irq(&raw->lock);
Srinivas Kandagatla004ac382012-03-20 14:05:40 -030044 retval = kfifo_len(&raw->kfifo);
Maxim Levitsky0d2cb1d2010-07-31 11:59:17 -030045
Srinivas Kandagatla004ac382012-03-20 14:05:40 -030046 if (retval < sizeof(ev)) {
Maxim Levitskyc6ef1e72010-09-06 18:26:06 -030047 set_current_state(TASK_INTERRUPTIBLE);
48
49 if (kthread_should_stop())
50 set_current_state(TASK_RUNNING);
51
52 spin_unlock_irq(&raw->lock);
53 schedule();
54 continue;
Maxim Levitsky0d2cb1d2010-07-31 11:59:17 -030055 }
56
Srinivas Kandagatla004ac382012-03-20 14:05:40 -030057 retval = kfifo_out(&raw->kfifo, &ev, sizeof(ev));
Maxim Levitskyc6ef1e72010-09-06 18:26:06 -030058 spin_unlock_irq(&raw->lock);
Maxim Levitsky0d2cb1d2010-07-31 11:59:17 -030059
Maxim Levitskyc6ef1e72010-09-06 18:26:06 -030060 mutex_lock(&ir_raw_handler_lock);
61 list_for_each_entry(handler, &ir_raw_handler_list, list)
Heiner Kallweitd80ca8b2015-11-16 17:52:50 -020062 if (raw->dev->enabled_protocols & handler->protocols ||
63 !handler->protocols)
64 handler->decode(raw->dev, ev);
Maxim Levitskyc6ef1e72010-09-06 18:26:06 -030065 raw->prev_ev = ev;
66 mutex_unlock(&ir_raw_handler_lock);
David Härdemanc2163692010-06-13 17:29:36 -030067 }
Maxim Levitsky0d2cb1d2010-07-31 11:59:17 -030068
69 return 0;
David Härdeman724e2492010-04-08 13:10:00 -030070}
71
David Härdeman724e2492010-04-08 13:10:00 -030072/**
73 * ir_raw_event_store() - pass a pulse/space duration to the raw ir decoders
David Härdemand8b4b582010-10-29 16:08:23 -030074 * @dev: the struct rc_dev device descriptor
David Härdemane40b1122010-04-15 18:46:00 -030075 * @ev: the struct ir_raw_event descriptor of the pulse/space
David Härdeman724e2492010-04-08 13:10:00 -030076 *
77 * This routine (which may be called from an interrupt context) stores a
78 * pulse/space duration for the raw ir decoding state machines. Pulses are
79 * signalled as positive values and spaces as negative values. A zero value
80 * will reset the decoding state machines.
81 */
David Härdemand8b4b582010-10-29 16:08:23 -030082int ir_raw_event_store(struct rc_dev *dev, struct ir_raw_event *ev)
Mauro Carvalho Chehaba3572c32010-03-20 20:59:44 -030083{
David Härdemand8b4b582010-10-29 16:08:23 -030084 if (!dev->raw)
Mauro Carvalho Chehaba3572c32010-03-20 20:59:44 -030085 return -EINVAL;
86
Mauro Carvalho Chehab74c47922010-10-20 11:56:50 -030087 IR_dprintk(2, "sample: (%05dus %s)\n",
David Härdemand8b4b582010-10-29 16:08:23 -030088 TO_US(ev->duration), TO_STR(ev->pulse));
Maxim Levitsky510fcb72010-07-31 11:59:15 -030089
David Härdemand8b4b582010-10-29 16:08:23 -030090 if (kfifo_in(&dev->raw->kfifo, ev, sizeof(*ev)) != sizeof(*ev))
David Härdeman724e2492010-04-08 13:10:00 -030091 return -ENOMEM;
Mauro Carvalho Chehaba3572c32010-03-20 20:59:44 -030092
David Härdeman724e2492010-04-08 13:10:00 -030093 return 0;
Mauro Carvalho Chehaba3572c32010-03-20 20:59:44 -030094}
95EXPORT_SYMBOL_GPL(ir_raw_event_store);
96
David Härdeman724e2492010-04-08 13:10:00 -030097/**
98 * ir_raw_event_store_edge() - notify raw ir decoders of the start of a pulse/space
David Härdemand8b4b582010-10-29 16:08:23 -030099 * @dev: the struct rc_dev device descriptor
David Härdeman724e2492010-04-08 13:10:00 -0300100 * @type: the type of the event that has occurred
101 *
102 * This routine (which may be called from an interrupt context) is used to
103 * store the beginning of an ir pulse or space (or the start/end of ir
104 * reception) for the raw ir decoding state machines. This is used by
105 * hardware which does not provide durations directly but only interrupts
106 * (or similar events) on state change.
107 */
David Härdemand8b4b582010-10-29 16:08:23 -0300108int ir_raw_event_store_edge(struct rc_dev *dev, enum raw_event_type type)
Mauro Carvalho Chehaba3572c32010-03-20 20:59:44 -0300109{
David Härdeman724e2492010-04-08 13:10:00 -0300110 ktime_t now;
111 s64 delta; /* ns */
Mauro Carvalho Chehab83587832011-01-20 18:16:50 -0300112 DEFINE_IR_RAW_EVENT(ev);
David Härdeman724e2492010-04-08 13:10:00 -0300113 int rc = 0;
Jarod Wilson3f5c4c72011-06-16 16:18:37 -0300114 int delay;
Mauro Carvalho Chehaba3572c32010-03-20 20:59:44 -0300115
David Härdemand8b4b582010-10-29 16:08:23 -0300116 if (!dev->raw)
David Härdeman724e2492010-04-08 13:10:00 -0300117 return -EINVAL;
118
119 now = ktime_get();
David Härdemand8b4b582010-10-29 16:08:23 -0300120 delta = ktime_to_ns(ktime_sub(now, dev->raw->last_event));
Jarod Wilson3f5c4c72011-06-16 16:18:37 -0300121 delay = MS_TO_NS(dev->input_dev->rep[REP_DELAY]);
David Härdeman724e2492010-04-08 13:10:00 -0300122
123 /* Check for a long duration since last event or if we're
124 * being called for the first time, note that delta can't
125 * possibly be negative.
Mauro Carvalho Chehaba3572c32010-03-20 20:59:44 -0300126 */
Jarod Wilson3f5c4c72011-06-16 16:18:37 -0300127 if (delta > delay || !dev->raw->last_type)
David Härdeman724e2492010-04-08 13:10:00 -0300128 type |= IR_START_EVENT;
David Härdemane40b1122010-04-15 18:46:00 -0300129 else
130 ev.duration = delta;
David Härdeman724e2492010-04-08 13:10:00 -0300131
132 if (type & IR_START_EVENT)
David Härdemand8b4b582010-10-29 16:08:23 -0300133 ir_raw_event_reset(dev);
134 else if (dev->raw->last_type & IR_SPACE) {
David Härdemane40b1122010-04-15 18:46:00 -0300135 ev.pulse = false;
David Härdemand8b4b582010-10-29 16:08:23 -0300136 rc = ir_raw_event_store(dev, &ev);
137 } else if (dev->raw->last_type & IR_PULSE) {
David Härdemane40b1122010-04-15 18:46:00 -0300138 ev.pulse = true;
David Härdemand8b4b582010-10-29 16:08:23 -0300139 rc = ir_raw_event_store(dev, &ev);
David Härdemane40b1122010-04-15 18:46:00 -0300140 } else
Mauro Carvalho Chehaba3572c32010-03-20 20:59:44 -0300141 return 0;
Mauro Carvalho Chehaba3572c32010-03-20 20:59:44 -0300142
David Härdemand8b4b582010-10-29 16:08:23 -0300143 dev->raw->last_event = now;
144 dev->raw->last_type = type;
Mauro Carvalho Chehaba3572c32010-03-20 20:59:44 -0300145 return rc;
146}
David Härdeman724e2492010-04-08 13:10:00 -0300147EXPORT_SYMBOL_GPL(ir_raw_event_store_edge);
148
149/**
Maxim Levitsky4a702eb2010-07-31 11:59:22 -0300150 * ir_raw_event_store_with_filter() - pass next pulse/space to decoders with some processing
David Härdemand8b4b582010-10-29 16:08:23 -0300151 * @dev: the struct rc_dev device descriptor
Maxim Levitsky4a702eb2010-07-31 11:59:22 -0300152 * @type: the type of the event that has occurred
153 *
154 * This routine (which may be called from an interrupt context) works
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300155 * in similar manner to ir_raw_event_store_edge.
Maxim Levitsky4a702eb2010-07-31 11:59:22 -0300156 * This routine is intended for devices with limited internal buffer
Sean Youngb83bfd12012-08-13 08:59:47 -0300157 * It automerges samples of same type, and handles timeouts. Returns non-zero
158 * if the event was added, and zero if the event was ignored due to idle
159 * processing.
Maxim Levitsky4a702eb2010-07-31 11:59:22 -0300160 */
David Härdemand8b4b582010-10-29 16:08:23 -0300161int ir_raw_event_store_with_filter(struct rc_dev *dev, struct ir_raw_event *ev)
Maxim Levitsky4a702eb2010-07-31 11:59:22 -0300162{
David Härdemand8b4b582010-10-29 16:08:23 -0300163 if (!dev->raw)
Maxim Levitsky4a702eb2010-07-31 11:59:22 -0300164 return -EINVAL;
165
166 /* Ignore spaces in idle mode */
David Härdemand8b4b582010-10-29 16:08:23 -0300167 if (dev->idle && !ev->pulse)
Maxim Levitsky4a702eb2010-07-31 11:59:22 -0300168 return 0;
David Härdemand8b4b582010-10-29 16:08:23 -0300169 else if (dev->idle)
170 ir_raw_event_set_idle(dev, false);
Maxim Levitsky4a702eb2010-07-31 11:59:22 -0300171
David Härdemand8b4b582010-10-29 16:08:23 -0300172 if (!dev->raw->this_ev.duration)
173 dev->raw->this_ev = *ev;
174 else if (ev->pulse == dev->raw->this_ev.pulse)
175 dev->raw->this_ev.duration += ev->duration;
176 else {
177 ir_raw_event_store(dev, &dev->raw->this_ev);
178 dev->raw->this_ev = *ev;
Maxim Levitsky4a702eb2010-07-31 11:59:22 -0300179 }
180
181 /* Enter idle mode if nessesary */
David Härdemand8b4b582010-10-29 16:08:23 -0300182 if (!ev->pulse && dev->timeout &&
183 dev->raw->this_ev.duration >= dev->timeout)
184 ir_raw_event_set_idle(dev, true);
185
Sean Youngb83bfd12012-08-13 08:59:47 -0300186 return 1;
Maxim Levitsky4a702eb2010-07-31 11:59:22 -0300187}
188EXPORT_SYMBOL_GPL(ir_raw_event_store_with_filter);
189
Maxim Levitsky46519182010-10-16 19:56:28 -0300190/**
David Härdemand8b4b582010-10-29 16:08:23 -0300191 * ir_raw_event_set_idle() - provide hint to rc-core when the device is idle or not
192 * @dev: the struct rc_dev device descriptor
193 * @idle: whether the device is idle or not
Maxim Levitsky46519182010-10-16 19:56:28 -0300194 */
David Härdemand8b4b582010-10-29 16:08:23 -0300195void ir_raw_event_set_idle(struct rc_dev *dev, bool idle)
Maxim Levitsky4a702eb2010-07-31 11:59:22 -0300196{
David Härdemand8b4b582010-10-29 16:08:23 -0300197 if (!dev->raw)
Maxim Levitsky4a702eb2010-07-31 11:59:22 -0300198 return;
199
Maxim Levitsky46519182010-10-16 19:56:28 -0300200 IR_dprintk(2, "%s idle mode\n", idle ? "enter" : "leave");
Maxim Levitsky4a702eb2010-07-31 11:59:22 -0300201
202 if (idle) {
David Härdemand8b4b582010-10-29 16:08:23 -0300203 dev->raw->this_ev.timeout = true;
204 ir_raw_event_store(dev, &dev->raw->this_ev);
205 init_ir_raw_event(&dev->raw->this_ev);
Maxim Levitsky4a702eb2010-07-31 11:59:22 -0300206 }
Maxim Levitsky46519182010-10-16 19:56:28 -0300207
David Härdemand8b4b582010-10-29 16:08:23 -0300208 if (dev->s_idle)
209 dev->s_idle(dev, idle);
210
211 dev->idle = idle;
Maxim Levitsky4a702eb2010-07-31 11:59:22 -0300212}
213EXPORT_SYMBOL_GPL(ir_raw_event_set_idle);
214
215/**
David Härdeman724e2492010-04-08 13:10:00 -0300216 * ir_raw_event_handle() - schedules the decoding of stored ir data
David Härdemand8b4b582010-10-29 16:08:23 -0300217 * @dev: the struct rc_dev device descriptor
David Härdeman724e2492010-04-08 13:10:00 -0300218 *
David Härdemand8b4b582010-10-29 16:08:23 -0300219 * This routine will tell rc-core to start decoding stored ir data.
David Härdeman724e2492010-04-08 13:10:00 -0300220 */
David Härdemand8b4b582010-10-29 16:08:23 -0300221void ir_raw_event_handle(struct rc_dev *dev)
David Härdeman724e2492010-04-08 13:10:00 -0300222{
Maxim Levitskyc6ef1e72010-09-06 18:26:06 -0300223 unsigned long flags;
David Härdeman724e2492010-04-08 13:10:00 -0300224
David Härdemand8b4b582010-10-29 16:08:23 -0300225 if (!dev->raw)
David Härdeman724e2492010-04-08 13:10:00 -0300226 return;
227
David Härdemand8b4b582010-10-29 16:08:23 -0300228 spin_lock_irqsave(&dev->raw->lock, flags);
229 wake_up_process(dev->raw->thread);
230 spin_unlock_irqrestore(&dev->raw->lock, flags);
David Härdeman724e2492010-04-08 13:10:00 -0300231}
Mauro Carvalho Chehaba3572c32010-03-20 20:59:44 -0300232EXPORT_SYMBOL_GPL(ir_raw_event_handle);
Mauro Carvalho Chehab995187b2010-03-24 20:47:53 -0300233
David Härdeman667c9eb2010-06-13 17:29:31 -0300234/* used internally by the sysfs interface */
235u64
Randy Dunlap2dbd61b2011-01-09 00:53:53 -0300236ir_raw_get_allowed_protocols(void)
David Härdeman667c9eb2010-06-13 17:29:31 -0300237{
238 u64 protocols;
Maxim Levitsky45a568f2010-07-31 11:59:16 -0300239 mutex_lock(&ir_raw_handler_lock);
David Härdeman667c9eb2010-06-13 17:29:31 -0300240 protocols = available_protocols;
Maxim Levitsky45a568f2010-07-31 11:59:16 -0300241 mutex_unlock(&ir_raw_handler_lock);
David Härdeman667c9eb2010-06-13 17:29:31 -0300242 return protocols;
243}
244
David Härdemanda6e1622014-04-03 20:32:16 -0300245static int change_protocol(struct rc_dev *dev, u64 *rc_type)
246{
247 /* the caller will update dev->enabled_protocols */
248 return 0;
249}
250
Heiner Kallweit93cffffc2015-11-16 17:51:56 -0200251static void ir_raw_disable_protocols(struct rc_dev *dev, u64 protocols)
252{
253 mutex_lock(&dev->lock);
254 dev->enabled_protocols &= ~protocols;
255 dev->enabled_wakeup_protocols &= ~protocols;
256 mutex_unlock(&dev->lock);
257}
258
David Härdeman667c9eb2010-06-13 17:29:31 -0300259/*
260 * Used to (un)register raw event clients
261 */
David Härdemand8b4b582010-10-29 16:08:23 -0300262int ir_raw_event_register(struct rc_dev *dev)
David Härdeman667c9eb2010-06-13 17:29:31 -0300263{
David Härdeman667c9eb2010-06-13 17:29:31 -0300264 int rc;
David Härdemanc2163692010-06-13 17:29:36 -0300265 struct ir_raw_handler *handler;
David Härdeman667c9eb2010-06-13 17:29:31 -0300266
David Härdemand8b4b582010-10-29 16:08:23 -0300267 if (!dev)
268 return -EINVAL;
269
270 dev->raw = kzalloc(sizeof(*dev->raw), GFP_KERNEL);
271 if (!dev->raw)
David Härdeman667c9eb2010-06-13 17:29:31 -0300272 return -ENOMEM;
273
David Härdemand8b4b582010-10-29 16:08:23 -0300274 dev->raw->dev = dev;
David Härdemanda6e1622014-04-03 20:32:16 -0300275 dev->change_protocol = change_protocol;
David Härdemand8b4b582010-10-29 16:08:23 -0300276 rc = kfifo_alloc(&dev->raw->kfifo,
277 sizeof(struct ir_raw_event) * MAX_IR_EVENT_SIZE,
David Härdeman667c9eb2010-06-13 17:29:31 -0300278 GFP_KERNEL);
David Härdemand8b4b582010-10-29 16:08:23 -0300279 if (rc < 0)
280 goto out;
David Härdeman667c9eb2010-06-13 17:29:31 -0300281
David Härdemand8b4b582010-10-29 16:08:23 -0300282 spin_lock_init(&dev->raw->lock);
283 dev->raw->thread = kthread_run(ir_raw_event_thread, dev->raw,
David Härdemanfcb13092015-05-19 19:03:17 -0300284 "rc%u", dev->minor);
Maxim Levitsky0d2cb1d2010-07-31 11:59:17 -0300285
David Härdemand8b4b582010-10-29 16:08:23 -0300286 if (IS_ERR(dev->raw->thread)) {
287 rc = PTR_ERR(dev->raw->thread);
288 goto out;
Maxim Levitsky0d2cb1d2010-07-31 11:59:17 -0300289 }
290
Maxim Levitsky45a568f2010-07-31 11:59:16 -0300291 mutex_lock(&ir_raw_handler_lock);
David Härdemand8b4b582010-10-29 16:08:23 -0300292 list_add_tail(&dev->raw->list, &ir_raw_client_list);
David Härdemanc2163692010-06-13 17:29:36 -0300293 list_for_each_entry(handler, &ir_raw_handler_list, list)
294 if (handler->raw_register)
David Härdemand8b4b582010-10-29 16:08:23 -0300295 handler->raw_register(dev);
Maxim Levitsky45a568f2010-07-31 11:59:16 -0300296 mutex_unlock(&ir_raw_handler_lock);
David Härdeman667c9eb2010-06-13 17:29:31 -0300297
David Härdemanc2163692010-06-13 17:29:36 -0300298 return 0;
David Härdemand8b4b582010-10-29 16:08:23 -0300299
300out:
301 kfree(dev->raw);
302 dev->raw = NULL;
303 return rc;
David Härdeman667c9eb2010-06-13 17:29:31 -0300304}
305
David Härdemand8b4b582010-10-29 16:08:23 -0300306void ir_raw_event_unregister(struct rc_dev *dev)
David Härdeman667c9eb2010-06-13 17:29:31 -0300307{
David Härdemanc2163692010-06-13 17:29:36 -0300308 struct ir_raw_handler *handler;
David Härdeman667c9eb2010-06-13 17:29:31 -0300309
David Härdemand8b4b582010-10-29 16:08:23 -0300310 if (!dev || !dev->raw)
David Härdeman667c9eb2010-06-13 17:29:31 -0300311 return;
312
David Härdemand8b4b582010-10-29 16:08:23 -0300313 kthread_stop(dev->raw->thread);
David Härdemanc2163692010-06-13 17:29:36 -0300314
Maxim Levitsky45a568f2010-07-31 11:59:16 -0300315 mutex_lock(&ir_raw_handler_lock);
David Härdemand8b4b582010-10-29 16:08:23 -0300316 list_del(&dev->raw->list);
David Härdemanc2163692010-06-13 17:29:36 -0300317 list_for_each_entry(handler, &ir_raw_handler_list, list)
318 if (handler->raw_unregister)
David Härdemand8b4b582010-10-29 16:08:23 -0300319 handler->raw_unregister(dev);
Maxim Levitsky45a568f2010-07-31 11:59:16 -0300320 mutex_unlock(&ir_raw_handler_lock);
David Härdeman667c9eb2010-06-13 17:29:31 -0300321
David Härdemand8b4b582010-10-29 16:08:23 -0300322 kfifo_free(&dev->raw->kfifo);
323 kfree(dev->raw);
324 dev->raw = NULL;
David Härdeman667c9eb2010-06-13 17:29:31 -0300325}
326
Mauro Carvalho Chehab995187b2010-03-24 20:47:53 -0300327/*
328 * Extension interface - used to register the IR decoders
329 */
330
331int ir_raw_handler_register(struct ir_raw_handler *ir_raw_handler)
332{
David Härdemanc2163692010-06-13 17:29:36 -0300333 struct ir_raw_event_ctrl *raw;
334
Maxim Levitsky45a568f2010-07-31 11:59:16 -0300335 mutex_lock(&ir_raw_handler_lock);
Mauro Carvalho Chehab995187b2010-03-24 20:47:53 -0300336 list_add_tail(&ir_raw_handler->list, &ir_raw_handler_list);
David Härdemanc2163692010-06-13 17:29:36 -0300337 if (ir_raw_handler->raw_register)
338 list_for_each_entry(raw, &ir_raw_client_list, list)
David Härdemand8b4b582010-10-29 16:08:23 -0300339 ir_raw_handler->raw_register(raw->dev);
David Härdeman667c9eb2010-06-13 17:29:31 -0300340 available_protocols |= ir_raw_handler->protocols;
Maxim Levitsky45a568f2010-07-31 11:59:16 -0300341 mutex_unlock(&ir_raw_handler_lock);
David Härdeman667c9eb2010-06-13 17:29:31 -0300342
Mauro Carvalho Chehab995187b2010-03-24 20:47:53 -0300343 return 0;
344}
345EXPORT_SYMBOL(ir_raw_handler_register);
346
347void ir_raw_handler_unregister(struct ir_raw_handler *ir_raw_handler)
348{
David Härdemanc2163692010-06-13 17:29:36 -0300349 struct ir_raw_event_ctrl *raw;
Heiner Kallweit93cffffc2015-11-16 17:51:56 -0200350 u64 protocols = ir_raw_handler->protocols;
David Härdemanc2163692010-06-13 17:29:36 -0300351
Maxim Levitsky45a568f2010-07-31 11:59:16 -0300352 mutex_lock(&ir_raw_handler_lock);
Mauro Carvalho Chehab995187b2010-03-24 20:47:53 -0300353 list_del(&ir_raw_handler->list);
Heiner Kallweit93cffffc2015-11-16 17:51:56 -0200354 list_for_each_entry(raw, &ir_raw_client_list, list) {
355 ir_raw_disable_protocols(raw->dev, protocols);
356 if (ir_raw_handler->raw_unregister)
David Härdemand8b4b582010-10-29 16:08:23 -0300357 ir_raw_handler->raw_unregister(raw->dev);
Heiner Kallweit93cffffc2015-11-16 17:51:56 -0200358 }
359 available_protocols &= ~protocols;
Maxim Levitsky45a568f2010-07-31 11:59:16 -0300360 mutex_unlock(&ir_raw_handler_lock);
Mauro Carvalho Chehab995187b2010-03-24 20:47:53 -0300361}
362EXPORT_SYMBOL(ir_raw_handler_unregister);