Linux Kernel  3.7.1
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
ir-raw.c
Go to the documentation of this file.
1 /* ir-raw.c - handle IR pulse/space events
2  *
3  * Copyright (C) 2010 by Mauro Carvalho Chehab <[email protected]>
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 
15 #include <linux/export.h>
16 #include <linux/kthread.h>
17 #include <linux/mutex.h>
18 #include <linux/kmod.h>
19 #include <linux/sched.h>
20 #include <linux/freezer.h>
21 #include "rc-core-priv.h"
22 
23 /* Define the max number of pulse/space transitions to buffer */
24 #define MAX_IR_EVENT_SIZE 512
25 
26 /* Used to keep track of IR raw clients, protected by ir_raw_handler_lock */
27 static LIST_HEAD(ir_raw_client_list);
28 
29 /* Used to handle IR raw handler extensions */
30 static DEFINE_MUTEX(ir_raw_handler_lock);
31 static LIST_HEAD(ir_raw_handler_list);
32 static u64 available_protocols;
33 
34 #ifdef MODULE
35 /* Used to load the decoders */
36 static struct work_struct wq_load;
37 #endif
38 
39 static int ir_raw_event_thread(void *data)
40 {
41  struct ir_raw_event ev;
42  struct ir_raw_handler *handler;
43  struct ir_raw_event_ctrl *raw = (struct ir_raw_event_ctrl *)data;
44  int retval;
45 
46  while (!kthread_should_stop()) {
47 
48  spin_lock_irq(&raw->lock);
49  retval = kfifo_len(&raw->kfifo);
50 
51  if (retval < sizeof(ev)) {
53 
54  if (kthread_should_stop())
56 
57  spin_unlock_irq(&raw->lock);
58  schedule();
59  continue;
60  }
61 
62  retval = kfifo_out(&raw->kfifo, &ev, sizeof(ev));
63  spin_unlock_irq(&raw->lock);
64 
65  mutex_lock(&ir_raw_handler_lock);
66  list_for_each_entry(handler, &ir_raw_handler_list, list)
67  handler->decode(raw->dev, ev);
68  raw->prev_ev = ev;
69  mutex_unlock(&ir_raw_handler_lock);
70  }
71 
72  return 0;
73 }
74 
86 {
87  if (!dev->raw)
88  return -EINVAL;
89 
90  IR_dprintk(2, "sample: (%05dus %s)\n",
91  TO_US(ev->duration), TO_STR(ev->pulse));
92 
93  if (kfifo_in(&dev->raw->kfifo, ev, sizeof(*ev)) != sizeof(*ev))
94  return -ENOMEM;
95 
96  return 0;
97 }
99 
112 {
113  ktime_t now;
114  s64 delta; /* ns */
116  int rc = 0;
117  int delay;
118 
119  if (!dev->raw)
120  return -EINVAL;
121 
122  now = ktime_get();
123  delta = ktime_to_ns(ktime_sub(now, dev->raw->last_event));
124  delay = MS_TO_NS(dev->input_dev->rep[REP_DELAY]);
125 
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.
129  */
130  if (delta > delay || !dev->raw->last_type)
131  type |= IR_START_EVENT;
132  else
133  ev.duration = delta;
134 
135  if (type & IR_START_EVENT)
136  ir_raw_event_reset(dev);
137  else if (dev->raw->last_type & IR_SPACE) {
138  ev.pulse = false;
139  rc = ir_raw_event_store(dev, &ev);
140  } else if (dev->raw->last_type & IR_PULSE) {
141  ev.pulse = true;
142  rc = ir_raw_event_store(dev, &ev);
143  } else
144  return 0;
145 
146  dev->raw->last_event = now;
147  dev->raw->last_type = type;
148  return rc;
149 }
151 
165 {
166  if (!dev->raw)
167  return -EINVAL;
168 
169  /* Ignore spaces in idle mode */
170  if (dev->idle && !ev->pulse)
171  return 0;
172  else if (dev->idle)
173  ir_raw_event_set_idle(dev, false);
174 
175  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;
182  }
183 
184  /* Enter idle mode if nessesary */
185  if (!ev->pulse && dev->timeout &&
186  dev->raw->this_ev.duration >= dev->timeout)
187  ir_raw_event_set_idle(dev, true);
188 
189  return 1;
190 }
192 
199 {
200  if (!dev->raw)
201  return;
202 
203  IR_dprintk(2, "%s idle mode\n", idle ? "enter" : "leave");
204 
205  if (idle) {
206  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);
209  }
210 
211  if (dev->s_idle)
212  dev->s_idle(dev, idle);
213 
214  dev->idle = idle;
215 }
217 
225 {
226  unsigned long flags;
227 
228  if (!dev->raw)
229  return;
230 
231  spin_lock_irqsave(&dev->raw->lock, flags);
232  wake_up_process(dev->raw->thread);
233  spin_unlock_irqrestore(&dev->raw->lock, flags);
234 }
236 
237 /* used internally by the sysfs interface */
238 u64
240 {
241  u64 protocols;
242  mutex_lock(&ir_raw_handler_lock);
243  protocols = available_protocols;
244  mutex_unlock(&ir_raw_handler_lock);
245  return protocols;
246 }
247 
248 /*
249  * Used to (un)register raw event clients
250  */
252 {
253  int rc;
254  struct ir_raw_handler *handler;
255 
256  if (!dev)
257  return -EINVAL;
258 
259  dev->raw = kzalloc(sizeof(*dev->raw), GFP_KERNEL);
260  if (!dev->raw)
261  return -ENOMEM;
262 
263  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,
267  GFP_KERNEL);
268  if (rc < 0)
269  goto out;
270 
271  spin_lock_init(&dev->raw->lock);
272  dev->raw->thread = kthread_run(ir_raw_event_thread, dev->raw,
273  "rc%ld", dev->devno);
274 
275  if (IS_ERR(dev->raw->thread)) {
276  rc = PTR_ERR(dev->raw->thread);
277  goto out;
278  }
279 
280  mutex_lock(&ir_raw_handler_lock);
281  list_add_tail(&dev->raw->list, &ir_raw_client_list);
282  list_for_each_entry(handler, &ir_raw_handler_list, list)
283  if (handler->raw_register)
284  handler->raw_register(dev);
285  mutex_unlock(&ir_raw_handler_lock);
286 
287  return 0;
288 
289 out:
290  kfree(dev->raw);
291  dev->raw = NULL;
292  return rc;
293 }
294 
296 {
297  struct ir_raw_handler *handler;
298 
299  if (!dev || !dev->raw)
300  return;
301 
302  kthread_stop(dev->raw->thread);
303 
304  mutex_lock(&ir_raw_handler_lock);
305  list_del(&dev->raw->list);
306  list_for_each_entry(handler, &ir_raw_handler_list, list)
307  if (handler->raw_unregister)
308  handler->raw_unregister(dev);
309  mutex_unlock(&ir_raw_handler_lock);
310 
311  kfifo_free(&dev->raw->kfifo);
312  kfree(dev->raw);
313  dev->raw = NULL;
314 }
315 
316 /*
317  * Extension interface - used to register the IR decoders
318  */
319 
321 {
322  struct ir_raw_event_ctrl *raw;
323 
324  mutex_lock(&ir_raw_handler_lock);
325  list_add_tail(&ir_raw_handler->list, &ir_raw_handler_list);
326  if (ir_raw_handler->raw_register)
327  list_for_each_entry(raw, &ir_raw_client_list, list)
328  ir_raw_handler->raw_register(raw->dev);
329  available_protocols |= ir_raw_handler->protocols;
330  mutex_unlock(&ir_raw_handler_lock);
331 
332  return 0;
333 }
335 
337 {
338  struct ir_raw_event_ctrl *raw;
339 
340  mutex_lock(&ir_raw_handler_lock);
341  list_del(&ir_raw_handler->list);
342  if (ir_raw_handler->raw_unregister)
343  list_for_each_entry(raw, &ir_raw_client_list, list)
344  ir_raw_handler->raw_unregister(raw->dev);
345  available_protocols &= ~ir_raw_handler->protocols;
346  mutex_unlock(&ir_raw_handler_lock);
347 }
349 
350 #ifdef MODULE
351 static void init_decoders(struct work_struct *work)
352 {
353  /* Load the decoder modules */
354 
355  load_nec_decode();
356  load_rc5_decode();
357  load_rc6_decode();
358  load_jvc_decode();
359  load_sony_decode();
360  load_sanyo_decode();
361  load_mce_kbd_decode();
362  load_lirc_codec();
363 
364  /* If needed, we may later add some init code. In this case,
365  it is needed to change the CONFIG_MODULE test at rc-core.h
366  */
367 }
368 #endif
369 
370 void ir_raw_init(void)
371 {
372 #ifdef MODULE
373  INIT_WORK(&wq_load, init_decoders);
374  schedule_work(&wq_load);
375 #endif
376 }