3 * some common structs and functions to handle infrared remotes via
6 * (c) 2003 Gerd Knorr <kraxel@bytesex.org> [SuSE Labs]
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
23 #include <linux/module.h>
24 #include <linux/string.h>
25 #include <linux/jiffies.h>
26 #include <media/ir-common.h>
27 #include "ir-core-priv.h"
29 /* -------------------------------------------------------------------------- */
31 MODULE_AUTHOR("Gerd Knorr <kraxel@bytesex.org> [SuSE Labs]");
32 MODULE_LICENSE("GPL");
34 static int repeat
= 1;
35 module_param(repeat
, int, 0444);
36 MODULE_PARM_DESC(repeat
,"auto-repeat for IR keys (default: on)");
38 /* -------------------------------------------------------------------------- */
40 static void ir_input_key_event(struct input_dev
*dev
, struct ir_input_state
*ir
)
42 if (KEY_RESERVED
== ir
->keycode
) {
43 printk(KERN_INFO
"%s: unknown key: key=0x%02x down=%d\n",
44 dev
->name
, ir
->ir_key
, ir
->keypressed
);
47 IR_dprintk(1,"%s: key event code=%d down=%d\n",
48 dev
->name
,ir
->keycode
,ir
->keypressed
);
49 input_report_key(dev
,ir
->keycode
,ir
->keypressed
);
53 /* -------------------------------------------------------------------------- */
55 int ir_input_init(struct input_dev
*dev
, struct ir_input_state
*ir
,
58 ir
->ir_type
= ir_type
;
61 set_bit(EV_REP
, dev
->evbit
);
65 EXPORT_SYMBOL_GPL(ir_input_init
);
68 void ir_input_nokey(struct input_dev
*dev
, struct ir_input_state
*ir
)
72 ir_input_key_event(dev
,ir
);
75 EXPORT_SYMBOL_GPL(ir_input_nokey
);
77 void ir_input_keydown(struct input_dev
*dev
, struct ir_input_state
*ir
,
80 u32 keycode
= ir_g_keycode_from_table(dev
, ir_key
);
82 if (ir
->keypressed
&& ir
->keycode
!= keycode
) {
84 ir_input_key_event(dev
,ir
);
86 if (!ir
->keypressed
) {
88 ir
->keycode
= keycode
;
90 ir_input_key_event(dev
,ir
);
93 EXPORT_SYMBOL_GPL(ir_input_keydown
);
95 /* -------------------------------------------------------------------------- */
96 /* extract mask bits out of data and pack them into the result */
97 u32
ir_extract_bits(u32 data
, u32 mask
)
99 u32 vbit
= 1, value
= 0;
112 EXPORT_SYMBOL_GPL(ir_extract_bits
);
114 static int inline getbit(u32
*samples
, int bit
)
116 return (samples
[bit
/32] & (1 << (31-(bit
%32)))) ? 1 : 0;
119 /* sump raw samples for visual debugging ;) */
120 int ir_dump_samples(u32
*samples
, int count
)
124 printk(KERN_DEBUG
"ir samples: ");
126 for (i
= 0; i
< count
* 32; i
++) {
127 bit
= getbit(samples
,i
);
132 printk("%s", bit
? "#" : "_");
137 EXPORT_SYMBOL_GPL(ir_dump_samples
);
139 /* decode raw samples, pulse distance coding used by NEC remotes */
140 int ir_decode_pulsedistance(u32
*samples
, int count
, int low
, int high
)
146 /* find start burst */
147 for (i
= len
= 0; i
< count
* 32; i
++) {
148 bit
= getbit(samples
,i
);
158 /* start burst to short */
162 /* find start silence */
163 for (len
= 0; i
< count
* 32; i
++) {
164 bit
= getbit(samples
,i
);
172 /* silence to short */
179 value
= 0; curBit
= 1;
180 for (; i
< count
* 32; i
++) {
181 bit
= getbit(samples
,i
);
190 if (len
> (low
+ high
) /2)
204 EXPORT_SYMBOL_GPL(ir_decode_pulsedistance
);
206 /* decode raw samples, biphase coding, used by rc5 for example */
207 int ir_decode_biphase(u32
*samples
, int count
, int low
, int high
)
209 int i
,last
,bit
,len
,flips
;
212 /* find start bit (1) */
213 for (i
= 0; i
< 32; i
++) {
214 bit
= getbit(samples
,i
);
223 for (; i
< count
* 32; i
++) {
229 bit
= getbit(samples
,i
);
246 EXPORT_SYMBOL_GPL(ir_decode_biphase
);
248 /* RC5 decoding stuff, moved from bttv-input.c to share it with
251 /* decode raw bit pattern to RC5 code */
252 u32
ir_rc5_decode(unsigned int code
)
254 unsigned int org_code
= code
;
256 unsigned int rc5
= 0;
259 for (i
= 0; i
< 14; ++i
) {
272 IR_dprintk(1, "ir-common: ir_rc5_decode(%x) bad code\n", org_code
);
276 IR_dprintk(1, "ir-common: code=%x, rc5=%x, start=%x, toggle=%x, address=%x, "
277 "instr=%x\n", rc5
, org_code
, RC5_START(rc5
),
278 RC5_TOGGLE(rc5
), RC5_ADDR(rc5
), RC5_INSTR(rc5
));
281 EXPORT_SYMBOL_GPL(ir_rc5_decode
);
283 void ir_rc5_timer_end(unsigned long data
)
285 struct card_ir
*ir
= (struct card_ir
*)data
;
287 unsigned long current_jiffies
, timeout
;
292 current_jiffies
= jiffies
;
293 do_gettimeofday(&tv
);
295 /* avoid overflow with gap >1s */
296 if (tv
.tv_sec
- ir
->base_time
.tv_sec
> 1) {
299 gap
= 1000000 * (tv
.tv_sec
- ir
->base_time
.tv_sec
) +
300 tv
.tv_usec
- ir
->base_time
.tv_usec
;
303 /* signal we're ready to start a new code */
306 /* Allow some timer jitter (RC5 is ~24ms anyway so this is ok) */
308 IR_dprintk(1, "ir-common: spurious timer_end\n");
312 if (ir
->last_bit
< 20) {
313 /* ignore spurious codes (caused by light/other remotes) */
314 IR_dprintk(1, "ir-common: short code: %x\n", ir
->code
);
316 ir
->code
= (ir
->code
<< ir
->shift_by
) | 1;
317 rc5
= ir_rc5_decode(ir
->code
);
319 /* two start bits? */
320 if (RC5_START(rc5
) != ir
->start
) {
321 IR_dprintk(1, "ir-common: rc5 start bits invalid: %u\n", RC5_START(rc5
));
324 } else if (RC5_ADDR(rc5
) == ir
->addr
) {
325 u32 toggle
= RC5_TOGGLE(rc5
);
326 u32 instr
= RC5_INSTR(rc5
);
328 /* Good code, decide if repeat/repress */
329 if (toggle
!= RC5_TOGGLE(ir
->last_rc5
) ||
330 instr
!= RC5_INSTR(ir
->last_rc5
)) {
331 IR_dprintk(1, "ir-common: instruction %x, toggle %x\n", instr
,
333 ir_input_nokey(ir
->dev
, &ir
->ir
);
334 ir_input_keydown(ir
->dev
, &ir
->ir
, instr
);
337 /* Set/reset key-up timer */
338 timeout
= current_jiffies
+
339 msecs_to_jiffies(ir
->rc5_key_timeout
);
340 mod_timer(&ir
->timer_keyup
, timeout
);
342 /* Save code for repeat test */
347 EXPORT_SYMBOL_GPL(ir_rc5_timer_end
);
349 void ir_rc5_timer_keyup(unsigned long data
)
351 struct card_ir
*ir
= (struct card_ir
*)data
;
353 IR_dprintk(1, "ir-common: key released\n");
354 ir_input_nokey(ir
->dev
, &ir
->ir
);
356 EXPORT_SYMBOL_GPL(ir_rc5_timer_keyup
);