Mauro Carvalho Chehab | 3f113e3 | 2010-04-08 15:10:27 -0300 | [diff] [blame] | 1 | /* |
| 2 | * Remote Controller core raw events header |
| 3 | * |
| 4 | * Copyright (C) 2010 by Mauro Carvalho Chehab <mchehab@redhat.com> |
| 5 | * |
| 6 | * This program is free software; you can redistribute it and/or modify |
| 7 | * it under the terms of the GNU General Public License as published by |
| 8 | * the Free Software Foundation version 2 of the License. |
| 9 | * |
| 10 | * This program is distributed in the hope that it will be useful, |
| 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 13 | * GNU General Public License for more details. |
| 14 | */ |
| 15 | |
| 16 | #ifndef _IR_RAW_EVENT |
| 17 | #define _IR_RAW_EVENT |
| 18 | |
| 19 | #include <linux/slab.h> |
| 20 | #include <media/ir-core.h> |
| 21 | |
| 22 | struct ir_raw_handler { |
| 23 | struct list_head list; |
| 24 | |
David Härdeman | 667c9eb | 2010-06-13 17:29:31 -0300 | [diff] [blame^] | 25 | u64 protocols; /* which are handled by this handler */ |
David Härdeman | e40b112 | 2010-04-15 18:46:00 -0300 | [diff] [blame] | 26 | int (*decode)(struct input_dev *input_dev, struct ir_raw_event event); |
Mauro Carvalho Chehab | 3f113e3 | 2010-04-08 15:10:27 -0300 | [diff] [blame] | 27 | int (*raw_register)(struct input_dev *input_dev); |
| 28 | int (*raw_unregister)(struct input_dev *input_dev); |
| 29 | }; |
| 30 | |
| 31 | struct ir_raw_event_ctrl { |
| 32 | struct work_struct rx_work; /* for the rx decoding workqueue */ |
| 33 | struct kfifo kfifo; /* fifo for the pulse/space durations */ |
| 34 | ktime_t last_event; /* when last event occurred */ |
| 35 | enum raw_event_type last_type; /* last event type */ |
| 36 | struct input_dev *input_dev; /* pointer to the parent input_dev */ |
David Härdeman | 667c9eb | 2010-06-13 17:29:31 -0300 | [diff] [blame^] | 37 | u64 enabled_protocols; /* enabled raw protocol decoders */ |
Mauro Carvalho Chehab | 3f113e3 | 2010-04-08 15:10:27 -0300 | [diff] [blame] | 38 | }; |
| 39 | |
| 40 | /* macros for IR decoders */ |
Mauro Carvalho Chehab | 384f23e | 2010-04-20 18:50:54 -0300 | [diff] [blame] | 41 | static inline bool geq_margin(unsigned d1, unsigned d2, unsigned margin) |
| 42 | { |
David Härdeman | e40b112 | 2010-04-15 18:46:00 -0300 | [diff] [blame] | 43 | return d1 > (d2 - margin); |
| 44 | } |
Mauro Carvalho Chehab | 3f113e3 | 2010-04-08 15:10:27 -0300 | [diff] [blame] | 45 | |
Mauro Carvalho Chehab | 384f23e | 2010-04-20 18:50:54 -0300 | [diff] [blame] | 46 | static inline bool eq_margin(unsigned d1, unsigned d2, unsigned margin) |
| 47 | { |
David Härdeman | e40b112 | 2010-04-15 18:46:00 -0300 | [diff] [blame] | 48 | return ((d1 > (d2 - margin)) && (d1 < (d2 + margin))); |
| 49 | } |
| 50 | |
Mauro Carvalho Chehab | 384f23e | 2010-04-20 18:50:54 -0300 | [diff] [blame] | 51 | static inline bool is_transition(struct ir_raw_event *x, struct ir_raw_event *y) |
| 52 | { |
David Härdeman | e40b112 | 2010-04-15 18:46:00 -0300 | [diff] [blame] | 53 | return x->pulse != y->pulse; |
| 54 | } |
| 55 | |
Mauro Carvalho Chehab | 384f23e | 2010-04-20 18:50:54 -0300 | [diff] [blame] | 56 | static inline void decrease_duration(struct ir_raw_event *ev, unsigned duration) |
| 57 | { |
David Härdeman | e40b112 | 2010-04-15 18:46:00 -0300 | [diff] [blame] | 58 | if (duration > ev->duration) |
| 59 | ev->duration = 0; |
| 60 | else |
| 61 | ev->duration -= duration; |
| 62 | } |
| 63 | |
| 64 | #define TO_US(duration) (((duration) + 500) / 1000) |
| 65 | #define TO_STR(is_pulse) ((is_pulse) ? "pulse" : "space") |
| 66 | #define IS_RESET(ev) (ev.duration == 0) |
Mauro Carvalho Chehab | 3f113e3 | 2010-04-08 15:10:27 -0300 | [diff] [blame] | 67 | |
| 68 | /* |
Mauro Carvalho Chehab | 3f113e3 | 2010-04-08 15:10:27 -0300 | [diff] [blame] | 69 | * Routines from ir-sysfs.c - Meant to be called only internally inside |
| 70 | * ir-core |
| 71 | */ |
| 72 | |
| 73 | int ir_register_class(struct input_dev *input_dev); |
| 74 | void ir_unregister_class(struct input_dev *input_dev); |
| 75 | |
| 76 | /* |
| 77 | * Routines from ir-raw-event.c to be used internally and by decoders |
| 78 | */ |
David Härdeman | 667c9eb | 2010-06-13 17:29:31 -0300 | [diff] [blame^] | 79 | u64 ir_raw_get_allowed_protocols(void); |
Mauro Carvalho Chehab | 3f113e3 | 2010-04-08 15:10:27 -0300 | [diff] [blame] | 80 | int ir_raw_event_register(struct input_dev *input_dev); |
| 81 | void ir_raw_event_unregister(struct input_dev *input_dev); |
Mauro Carvalho Chehab | 3f113e3 | 2010-04-08 15:10:27 -0300 | [diff] [blame] | 82 | int ir_raw_handler_register(struct ir_raw_handler *ir_raw_handler); |
| 83 | void ir_raw_handler_unregister(struct ir_raw_handler *ir_raw_handler); |
| 84 | void ir_raw_init(void); |
| 85 | |
| 86 | |
| 87 | /* |
| 88 | * Decoder initialization code |
| 89 | * |
| 90 | * Those load logic are called during ir-core init, and automatically |
| 91 | * loads the compiled decoders for their usage with IR raw events |
| 92 | */ |
| 93 | |
| 94 | /* from ir-nec-decoder.c */ |
| 95 | #ifdef CONFIG_IR_NEC_DECODER_MODULE |
| 96 | #define load_nec_decode() request_module("ir-nec-decoder") |
| 97 | #else |
| 98 | #define load_nec_decode() 0 |
| 99 | #endif |
| 100 | |
| 101 | /* from ir-rc5-decoder.c */ |
| 102 | #ifdef CONFIG_IR_RC5_DECODER_MODULE |
| 103 | #define load_rc5_decode() request_module("ir-rc5-decoder") |
| 104 | #else |
| 105 | #define load_rc5_decode() 0 |
| 106 | #endif |
| 107 | |
David Härdeman | 784a493 | 2010-04-08 20:04:40 -0300 | [diff] [blame] | 108 | /* from ir-rc6-decoder.c */ |
Mauro Carvalho Chehab | f35473e | 2010-04-09 09:17:02 -0300 | [diff] [blame] | 109 | #ifdef CONFIG_IR_RC6_DECODER_MODULE |
David Härdeman | 784a493 | 2010-04-08 20:04:40 -0300 | [diff] [blame] | 110 | #define load_rc6_decode() request_module("ir-rc6-decoder") |
| 111 | #else |
| 112 | #define load_rc6_decode() 0 |
| 113 | #endif |
| 114 | |
David Härdeman | bf670f6 | 2010-04-15 18:46:05 -0300 | [diff] [blame] | 115 | /* from ir-jvc-decoder.c */ |
| 116 | #ifdef CONFIG_IR_JVC_DECODER_MODULE |
| 117 | #define load_jvc_decode() request_module("ir-jvc-decoder") |
| 118 | #else |
| 119 | #define load_jvc_decode() 0 |
| 120 | #endif |
| 121 | |
David Härdeman | 3fe29c8 | 2010-04-15 18:46:10 -0300 | [diff] [blame] | 122 | /* from ir-sony-decoder.c */ |
| 123 | #ifdef CONFIG_IR_SONY_DECODER_MODULE |
| 124 | #define load_sony_decode() request_module("ir-sony-decoder") |
| 125 | #else |
| 126 | #define load_sony_decode() 0 |
| 127 | #endif |
| 128 | |
Mauro Carvalho Chehab | 3f113e3 | 2010-04-08 15:10:27 -0300 | [diff] [blame] | 129 | #endif /* _IR_RAW_EVENT */ |