]> git.kernelconcepts.de Git - karo-tx-linux.git/blob - drivers/media/pci/bt8xx/bttv-input.c
[media] bt8xx: fixup RC5 decoding
[karo-tx-linux.git] / drivers / media / pci / bt8xx / bttv-input.c
1 /*
2  *
3  * Copyright (c) 2003 Gerd Knorr
4  * Copyright (c) 2003 Pavel Machek
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; either version 2 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, write to the Free Software
18  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19  */
20
21 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
22
23 #include <linux/module.h>
24 #include <linux/init.h>
25 #include <linux/delay.h>
26 #include <linux/interrupt.h>
27 #include <linux/input.h>
28 #include <linux/slab.h>
29
30 #include "bttv.h"
31 #include "bttvp.h"
32
33
34 static int ir_debug;
35 module_param(ir_debug, int, 0644);
36
37 static int ir_rc5_remote_gap = 885;
38 module_param(ir_rc5_remote_gap, int, 0644);
39
40 #undef dprintk
41 #define dprintk(fmt, ...)                       \
42 do {                                            \
43         if (ir_debug >= 1)                      \
44                 pr_info(fmt, ##__VA_ARGS__);    \
45 } while (0)
46
47 #define DEVNAME "bttv-input"
48
49 #define MODULE_NAME "bttv"
50
51 /* ---------------------------------------------------------------------- */
52
53 static void ir_handle_key(struct bttv *btv)
54 {
55         struct bttv_ir *ir = btv->remote;
56         u32 gpio,data;
57
58         /* read gpio value */
59         gpio = bttv_gpio_read(&btv->c);
60         if (ir->polling) {
61                 if (ir->last_gpio == gpio)
62                         return;
63                 ir->last_gpio = gpio;
64         }
65
66         /* extract data */
67         data = ir_extract_bits(gpio, ir->mask_keycode);
68         dprintk("irq gpio=0x%x code=%d | %s%s%s\n",
69                 gpio, data,
70                 ir->polling               ? "poll"  : "irq",
71                 (gpio & ir->mask_keydown) ? " down" : "",
72                 (gpio & ir->mask_keyup)   ? " up"   : "");
73
74         if ((ir->mask_keydown && (gpio & ir->mask_keydown)) ||
75             (ir->mask_keyup   && !(gpio & ir->mask_keyup))) {
76                 rc_keydown_notimeout(ir->dev, data, 0);
77         } else {
78                 /* HACK: Probably, ir->mask_keydown is missing
79                    for this board */
80                 if (btv->c.type == BTTV_BOARD_WINFAST2000)
81                         rc_keydown_notimeout(ir->dev, data, 0);
82
83                 rc_keyup(ir->dev);
84         }
85 }
86
87 static void ir_enltv_handle_key(struct bttv *btv)
88 {
89         struct bttv_ir *ir = btv->remote;
90         u32 gpio, data, keyup;
91
92         /* read gpio value */
93         gpio = bttv_gpio_read(&btv->c);
94
95         /* extract data */
96         data = ir_extract_bits(gpio, ir->mask_keycode);
97
98         /* Check if it is keyup */
99         keyup = (gpio & ir->mask_keyup) ? 1 << 31 : 0;
100
101         if ((ir->last_gpio & 0x7f) != data) {
102                 dprintk("gpio=0x%x code=%d | %s\n",
103                         gpio, data,
104                         (gpio & ir->mask_keyup) ? " up" : "up/down");
105
106                 rc_keydown_notimeout(ir->dev, data, 0);
107                 if (keyup)
108                         rc_keyup(ir->dev);
109         } else {
110                 if ((ir->last_gpio & 1 << 31) == keyup)
111                         return;
112
113                 dprintk("(cnt) gpio=0x%x code=%d | %s\n",
114                         gpio, data,
115                         (gpio & ir->mask_keyup) ? " up" : "down");
116
117                 if (keyup)
118                         rc_keyup(ir->dev);
119                 else
120                         rc_keydown_notimeout(ir->dev, data, 0);
121         }
122
123         ir->last_gpio = data | keyup;
124 }
125
126 static int bttv_rc5_irq(struct bttv *btv);
127
128 void bttv_input_irq(struct bttv *btv)
129 {
130         struct bttv_ir *ir = btv->remote;
131
132         if (ir->rc5_gpio)
133                 bttv_rc5_irq(btv);
134         else if (!ir->polling)
135                 ir_handle_key(btv);
136 }
137
138 static void bttv_input_timer(unsigned long data)
139 {
140         struct bttv *btv = (struct bttv*)data;
141         struct bttv_ir *ir = btv->remote;
142
143         if (btv->c.type == BTTV_BOARD_ENLTV_FM_2)
144                 ir_enltv_handle_key(btv);
145         else
146                 ir_handle_key(btv);
147         mod_timer(&ir->timer, jiffies + msecs_to_jiffies(ir->polling));
148 }
149
150 /*
151  * FIXME: Nebula digi uses the legacy way to decode RC5, instead of relying
152  * on the rc-core way. As we need to be sure that both IRQ transitions are
153  * properly triggered, Better to touch it only with this hardware for
154  * testing.
155  */
156
157 #define RC5_START(x)    (((x) >> 12) & 0x03)
158 #define RC5_TOGGLE(x)   (((x) >> 11) & 0x01)
159 #define RC5_ADDR(x)     (((x) >> 6)  & 0x1f)
160 #define RC5_INSTR(x)    (((x) >> 0)  & 0x3f)
161
162 /* decode raw bit pattern to RC5 code */
163 static u32 bttv_rc5_decode(unsigned int code)
164 {
165         unsigned int org_code = code;
166         unsigned int pair;
167         unsigned int rc5 = 0;
168         int i;
169
170         for (i = 0; i < 14; ++i) {
171                 pair = code & 0x3;
172                 code >>= 2;
173
174                 rc5 <<= 1;
175                 switch (pair) {
176                 case 0:
177                 case 2:
178                         break;
179                 case 1:
180                         rc5 |= 1;
181                 break;
182                 case 3:
183                         dprintk("rc5_decode(%x) bad code\n",
184                                 org_code);
185                         return 0;
186                 }
187         }
188         dprintk("code=%x, rc5=%x, start=%x, toggle=%x, address=%x, "
189                 "instr=%x\n", rc5, org_code, RC5_START(rc5),
190                 RC5_TOGGLE(rc5), RC5_ADDR(rc5), RC5_INSTR(rc5));
191         return rc5;
192 }
193
194 static void bttv_rc5_timer_end(unsigned long data)
195 {
196         struct bttv_ir *ir = (struct bttv_ir *)data;
197         struct timeval tv;
198         u32 gap, rc5, scancode;
199         u8 toggle, command, system;
200
201         /* get time */
202         do_gettimeofday(&tv);
203
204         /* avoid overflow with gap >1s */
205         if (tv.tv_sec - ir->base_time.tv_sec > 1) {
206                 gap = 200000;
207         } else {
208                 gap = 1000000 * (tv.tv_sec - ir->base_time.tv_sec) +
209                     tv.tv_usec - ir->base_time.tv_usec;
210         }
211
212         /* signal we're ready to start a new code */
213         ir->active = false;
214
215         /* Allow some timer jitter (RC5 is ~24ms anyway so this is ok) */
216         if (gap < 28000) {
217                 dprintk("spurious timer_end\n");
218                 return;
219         }
220
221         if (ir->last_bit < 20) {
222                 /* ignore spurious codes (caused by light/other remotes) */
223                 dprintk("short code: %x\n", ir->code);
224                 return;
225         }
226
227         ir->code = (ir->code << ir->shift_by) | 1;
228         rc5 = bttv_rc5_decode(ir->code);
229
230         toggle = RC5_TOGGLE(rc5);
231         system = RC5_ADDR(rc5);
232         command = RC5_INSTR(rc5);
233
234         switch (RC5_START(rc5)) {
235         case 0x3:
236                 break;
237         case 0x2:
238                 command += 0x40;
239                 break;
240         default:
241                 return;
242         }
243
244         scancode = system << 8 | command;
245         rc_keydown(ir->dev, scancode, toggle);
246         dprintk("scancode %x, toggle %x\n", scancode, toggle);
247 }
248
249 static int bttv_rc5_irq(struct bttv *btv)
250 {
251         struct bttv_ir *ir = btv->remote;
252         struct timeval tv;
253         u32 gpio;
254         u32 gap;
255         unsigned long current_jiffies;
256
257         /* read gpio port */
258         gpio = bttv_gpio_read(&btv->c);
259
260         /* get time of bit */
261         current_jiffies = jiffies;
262         do_gettimeofday(&tv);
263
264         /* avoid overflow with gap >1s */
265         if (tv.tv_sec - ir->base_time.tv_sec > 1) {
266                 gap = 200000;
267         } else {
268                 gap = 1000000 * (tv.tv_sec - ir->base_time.tv_sec) +
269                     tv.tv_usec - ir->base_time.tv_usec;
270         }
271
272         dprintk("RC5 IRQ: gap %d us for %s\n",
273                 gap, (gpio & 0x20) ? "mark" : "space");
274
275         /* remote IRQ? */
276         if (!(gpio & 0x20))
277                 return 0;
278
279         /* active code => add bit */
280         if (ir->active) {
281                 /* only if in the code (otherwise spurious IRQ or timer
282                    late) */
283                 if (ir->last_bit < 28) {
284                         ir->last_bit = (gap - ir_rc5_remote_gap / 2) /
285                             ir_rc5_remote_gap;
286                         ir->code |= 1 << ir->last_bit;
287                 }
288                 /* starting new code */
289         } else {
290                 ir->active = true;
291                 ir->code = 0;
292                 ir->base_time = tv;
293                 ir->last_bit = 0;
294
295                 mod_timer(&ir->timer, current_jiffies + msecs_to_jiffies(30));
296         }
297
298         /* toggle GPIO pin 4 to reset the irq */
299         bttv_gpio_write(&btv->c, gpio & ~(1 << 4));
300         bttv_gpio_write(&btv->c, gpio | (1 << 4));
301         return 1;
302 }
303
304 /* ---------------------------------------------------------------------- */
305
306 static void bttv_ir_start(struct bttv *btv, struct bttv_ir *ir)
307 {
308         if (ir->polling) {
309                 setup_timer(&ir->timer, bttv_input_timer, (unsigned long)btv);
310                 ir->timer.expires  = jiffies + msecs_to_jiffies(1000);
311                 add_timer(&ir->timer);
312         } else if (ir->rc5_gpio) {
313                 /* set timer_end for code completion */
314                 setup_timer(&ir->timer, bttv_rc5_timer_end, (unsigned long)ir);
315                 ir->shift_by = 1;
316                 ir->rc5_remote_gap = ir_rc5_remote_gap;
317         }
318 }
319
320 static void bttv_ir_stop(struct bttv *btv)
321 {
322         if (btv->remote->polling)
323                 del_timer_sync(&btv->remote->timer);
324
325         if (btv->remote->rc5_gpio) {
326                 u32 gpio;
327
328                 del_timer_sync(&btv->remote->timer);
329
330                 gpio = bttv_gpio_read(&btv->c);
331                 bttv_gpio_write(&btv->c, gpio & ~(1 << 4));
332         }
333 }
334
335 /*
336  * Get_key functions used by I2C remotes
337  */
338
339 static int get_key_pv951(struct IR_i2c *ir, u32 *ir_key, u32 *ir_raw)
340 {
341         unsigned char b;
342
343         /* poll IR chip */
344         if (1 != i2c_master_recv(ir->c, &b, 1)) {
345                 dprintk("read error\n");
346                 return -EIO;
347         }
348
349         /* ignore 0xaa */
350         if (b==0xaa)
351                 return 0;
352         dprintk("key %02x\n", b);
353
354         /*
355          * NOTE:
356          * lirc_i2c maps the pv951 code as:
357          *      addr = 0x61D6
358          *      cmd = bit_reverse (b)
359          * So, it seems that this device uses NEC extended
360          * I decided to not fix the table, due to two reasons:
361          *      1) Without the actual device, this is only a guess;
362          *      2) As the addr is not reported via I2C, nor can be changed,
363          *         the device is bound to the vendor-provided RC.
364          */
365
366         *ir_key = b;
367         *ir_raw = b;
368         return 1;
369 }
370
371 /* Instantiate the I2C IR receiver device, if present */
372 void init_bttv_i2c_ir(struct bttv *btv)
373 {
374         const unsigned short addr_list[] = {
375                 0x1a, 0x18, 0x64, 0x30, 0x71,
376                 I2C_CLIENT_END
377         };
378         struct i2c_board_info info;
379         struct i2c_client *i2c_dev;
380
381         if (0 != btv->i2c_rc)
382                 return;
383
384         memset(&info, 0, sizeof(struct i2c_board_info));
385         memset(&btv->init_data, 0, sizeof(btv->init_data));
386         strlcpy(info.type, "ir_video", I2C_NAME_SIZE);
387
388         switch (btv->c.type) {
389         case BTTV_BOARD_PV951:
390                 btv->init_data.name = "PV951";
391                 btv->init_data.get_key = get_key_pv951;
392                 btv->init_data.ir_codes = RC_MAP_PV951;
393                 info.addr = 0x4b;
394                 break;
395         }
396
397         if (btv->init_data.name) {
398                 info.platform_data = &btv->init_data;
399                 i2c_dev = i2c_new_device(&btv->c.i2c_adap, &info);
400         } else {
401                 /*
402                  * The external IR receiver is at i2c address 0x34 (0x35 for
403                  * reads).  Future Hauppauge cards will have an internal
404                  * receiver at 0x30 (0x31 for reads).  In theory, both can be
405                  * fitted, and Hauppauge suggest an external overrides an
406                  * internal.
407                  * That's why we probe 0x1a (~0x34) first. CB
408                  */
409                 i2c_dev = i2c_new_probed_device(&btv->c.i2c_adap, &info, addr_list, NULL);
410         }
411         if (NULL == i2c_dev)
412                 return;
413
414 #if defined(CONFIG_MODULES) && defined(MODULE)
415         request_module("ir-kbd-i2c");
416 #endif
417 }
418
419 int bttv_input_init(struct bttv *btv)
420 {
421         struct bttv_ir *ir;
422         char *ir_codes = NULL;
423         struct rc_dev *rc;
424         int err = -ENOMEM;
425
426         if (!btv->has_remote)
427                 return -ENODEV;
428
429         ir = kzalloc(sizeof(*ir),GFP_KERNEL);
430         rc = rc_allocate_device();
431         if (!ir || !rc)
432                 goto err_out_free;
433
434         /* detect & configure */
435         switch (btv->c.type) {
436         case BTTV_BOARD_AVERMEDIA:
437         case BTTV_BOARD_AVPHONE98:
438         case BTTV_BOARD_AVERMEDIA98:
439                 ir_codes         = RC_MAP_AVERMEDIA;
440                 ir->mask_keycode = 0xf88000;
441                 ir->mask_keydown = 0x010000;
442                 ir->polling      = 50; // ms
443                 break;
444
445         case BTTV_BOARD_AVDVBT_761:
446         case BTTV_BOARD_AVDVBT_771:
447                 ir_codes         = RC_MAP_AVERMEDIA_DVBT;
448                 ir->mask_keycode = 0x0f00c0;
449                 ir->mask_keydown = 0x000020;
450                 ir->polling      = 50; // ms
451                 break;
452
453         case BTTV_BOARD_PXELVWPLTVPAK:
454                 ir_codes         = RC_MAP_PIXELVIEW;
455                 ir->mask_keycode = 0x003e00;
456                 ir->mask_keyup   = 0x010000;
457                 ir->polling      = 50; // ms
458                 break;
459         case BTTV_BOARD_PV_M4900:
460         case BTTV_BOARD_PV_BT878P_9B:
461         case BTTV_BOARD_PV_BT878P_PLUS:
462                 ir_codes         = RC_MAP_PIXELVIEW;
463                 ir->mask_keycode = 0x001f00;
464                 ir->mask_keyup   = 0x008000;
465                 ir->polling      = 50; // ms
466                 break;
467
468         case BTTV_BOARD_WINFAST2000:
469                 ir_codes         = RC_MAP_WINFAST;
470                 ir->mask_keycode = 0x1f8;
471                 break;
472         case BTTV_BOARD_MAGICTVIEW061:
473         case BTTV_BOARD_MAGICTVIEW063:
474                 ir_codes         = RC_MAP_WINFAST;
475                 ir->mask_keycode = 0x0008e000;
476                 ir->mask_keydown = 0x00200000;
477                 break;
478         case BTTV_BOARD_APAC_VIEWCOMP:
479                 ir_codes         = RC_MAP_APAC_VIEWCOMP;
480                 ir->mask_keycode = 0x001f00;
481                 ir->mask_keyup   = 0x008000;
482                 ir->polling      = 50; // ms
483                 break;
484         case BTTV_BOARD_ASKEY_CPH03X:
485         case BTTV_BOARD_CONCEPTRONIC_CTVFMI2:
486         case BTTV_BOARD_CONTVFMI:
487         case BTTV_BOARD_KWORLD_VSTREAM_XPERT:
488                 ir_codes         = RC_MAP_PIXELVIEW;
489                 ir->mask_keycode = 0x001F00;
490                 ir->mask_keyup   = 0x006000;
491                 ir->polling      = 50; // ms
492                 break;
493         case BTTV_BOARD_NEBULA_DIGITV:
494                 ir_codes         = RC_MAP_NEBULA;
495                 ir->rc5_gpio     = true;
496                 break;
497         case BTTV_BOARD_MACHTV_MAGICTV:
498                 ir_codes         = RC_MAP_APAC_VIEWCOMP;
499                 ir->mask_keycode = 0x001F00;
500                 ir->mask_keyup   = 0x004000;
501                 ir->polling      = 50; /* ms */
502                 break;
503         case BTTV_BOARD_KOZUMI_KTV_01C:
504                 ir_codes         = RC_MAP_PCTV_SEDNA;
505                 ir->mask_keycode = 0x001f00;
506                 ir->mask_keyup   = 0x006000;
507                 ir->polling      = 50; /* ms */
508                 break;
509         case BTTV_BOARD_ENLTV_FM_2:
510                 ir_codes         = RC_MAP_ENCORE_ENLTV2;
511                 ir->mask_keycode = 0x00fd00;
512                 ir->mask_keyup   = 0x000080;
513                 ir->polling      = 1; /* ms */
514                 ir->last_gpio    = ir_extract_bits(bttv_gpio_read(&btv->c),
515                                                    ir->mask_keycode);
516                 break;
517         }
518
519         if (!ir_codes) {
520                 dprintk("Ooops: IR config error [card=%d]\n", btv->c.type);
521                 err = -ENODEV;
522                 goto err_out_free;
523         }
524
525         if (ir->rc5_gpio) {
526                 u32 gpio;
527                 /* enable remote irq */
528                 bttv_gpio_inout(&btv->c, (1 << 4), 1 << 4);
529                 gpio = bttv_gpio_read(&btv->c);
530                 bttv_gpio_write(&btv->c, gpio & ~(1 << 4));
531                 bttv_gpio_write(&btv->c, gpio | (1 << 4));
532         } else {
533                 /* init hardware-specific stuff */
534                 bttv_gpio_inout(&btv->c, ir->mask_keycode | ir->mask_keydown, 0);
535         }
536
537         /* init input device */
538         ir->dev = rc;
539
540         snprintf(ir->name, sizeof(ir->name), "bttv IR (card=%d)",
541                  btv->c.type);
542         snprintf(ir->phys, sizeof(ir->phys), "pci-%s/ir0",
543                  pci_name(btv->c.pci));
544
545         rc->input_name = ir->name;
546         rc->input_phys = ir->phys;
547         rc->input_id.bustype = BUS_PCI;
548         rc->input_id.version = 1;
549         if (btv->c.pci->subsystem_vendor) {
550                 rc->input_id.vendor  = btv->c.pci->subsystem_vendor;
551                 rc->input_id.product = btv->c.pci->subsystem_device;
552         } else {
553                 rc->input_id.vendor  = btv->c.pci->vendor;
554                 rc->input_id.product = btv->c.pci->device;
555         }
556         rc->dev.parent = &btv->c.pci->dev;
557         rc->map_name = ir_codes;
558         rc->driver_name = MODULE_NAME;
559
560         btv->remote = ir;
561         bttv_ir_start(btv, ir);
562
563         /* all done */
564         err = rc_register_device(rc);
565         if (err)
566                 goto err_out_stop;
567
568         return 0;
569
570  err_out_stop:
571         bttv_ir_stop(btv);
572         btv->remote = NULL;
573  err_out_free:
574         rc_free_device(rc);
575         kfree(ir);
576         return err;
577 }
578
579 void bttv_input_fini(struct bttv *btv)
580 {
581         if (btv->remote == NULL)
582                 return;
583
584         bttv_ir_stop(btv);
585         rc_unregister_device(btv->remote->dev);
586         kfree(btv->remote);
587         btv->remote = NULL;
588 }