]> git.proxmox.com Git - mirror_ubuntu-hirsute-kernel.git/blame - drivers/media/video/cx88/cx88-input.c
Merge branch 'docs-next' of git://git.lwn.net/linux-2.6
[mirror_ubuntu-hirsute-kernel.git] / drivers / media / video / cx88 / cx88-input.c
CommitLineData
1da177e4 1/*
1da177e4
LT
2 *
3 * Device driver for GPIO attached remote control interfaces
4 * on Conexant 2388x based TV/DVB cards.
5 *
6 * Copyright (c) 2003 Pavel Machek
7 * Copyright (c) 2004 Gerd Knorr
fc40b261 8 * Copyright (c) 2004, 2005 Chris Pascoe
1da177e4
LT
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
23 */
24
25#include <linux/init.h>
3c1c48bb 26#include <linux/hrtimer.h>
1da177e4
LT
27#include <linux/input.h>
28#include <linux/pci.h>
5a0e3ad6 29#include <linux/slab.h>
1da177e4 30#include <linux/module.h>
1da177e4 31
1da177e4 32#include "cx88.h"
d21838dd 33#include <media/ir-common.h>
1da177e4 34
727e625c
MCC
35#define MODULE_NAME "cx88xx"
36
1da177e4
LT
37/* ---------------------------------------------------------------------- */
38
1da177e4 39struct cx88_IR {
41ef7c1e 40 struct cx88_core *core;
b7df3910 41 struct input_dev *input;
41ef7c1e 42 struct ir_input_state ir;
92f4fc10
MCC
43 struct ir_dev_props props;
44
45 int users;
46
41ef7c1e
MCC
47 char name[32];
48 char phys[32];
1da177e4
LT
49
50 /* sample from gpio pin 16 */
fc40b261 51 u32 sampling;
41ef7c1e
MCC
52 u32 samples[16];
53 int scount;
54 unsigned long release;
1da177e4
LT
55
56 /* poll external decoder */
41ef7c1e 57 int polling;
3c1c48bb 58 struct hrtimer timer;
41ef7c1e
MCC
59 u32 gpio_addr;
60 u32 last_gpio;
61 u32 mask_keycode;
62 u32 mask_keydown;
63 u32 mask_keyup;
1da177e4
LT
64};
65
ff699e6b 66static int ir_debug;
41ef7c1e 67module_param(ir_debug, int, 0644); /* debug level [IR] */
1da177e4
LT
68MODULE_PARM_DESC(ir_debug, "enable debug messages [IR]");
69
70#define ir_dprintk(fmt, arg...) if (ir_debug) \
e52e98a7 71 printk(KERN_DEBUG "%s IR: " fmt , ir->core->name , ##arg)
1da177e4
LT
72
73/* ---------------------------------------------------------------------- */
74
75static void cx88_ir_handle_key(struct cx88_IR *ir)
76{
77 struct cx88_core *core = ir->core;
680543c5 78 u32 gpio, data, auxgpio;
1da177e4
LT
79
80 /* read gpio value */
81 gpio = cx_read(ir->gpio_addr);
6a59d64c 82 switch (core->boardnr) {
829ea964 83 case CX88_BOARD_NPGTECH_REALTV_TOP10FM:
680543c5
RC
84 /* This board apparently uses a combination of 2 GPIO
85 to represent the keys. Additionally, the second GPIO
86 can be used for parity.
87
88 Example:
89
90 for key "5"
91 gpio = 0x758, auxgpio = 0xe5 or 0xf5
92 for key "Power"
93 gpio = 0x758, auxgpio = 0xed or 0xfd
94 */
95
96 auxgpio = cx_read(MO_GP1_IO);
97 /* Take out the parity part */
a62c61d3 98 gpio=(gpio & 0x7fd) + (auxgpio & 0xef);
829ea964
MK
99 break;
100 case CX88_BOARD_WINFAST_DTV1000:
3047a176 101 case CX88_BOARD_WINFAST_DTV1800H:
3e9a4897 102 case CX88_BOARD_WINFAST_TV2000_XP_GLOBAL:
e7d11ecb
EP
103 gpio = (gpio & 0x6ff) | ((cx_read(MO_GP1_IO) << 8) & 0x900);
104 auxgpio = gpio;
829ea964
MK
105 break;
106 default:
680543c5 107 auxgpio = gpio;
829ea964 108 }
1da177e4 109 if (ir->polling) {
680543c5 110 if (ir->last_gpio == auxgpio)
1da177e4 111 return;
680543c5 112 ir->last_gpio = auxgpio;
1da177e4
LT
113 }
114
115 /* extract data */
116 data = ir_extract_bits(gpio, ir->mask_keycode);
117 ir_dprintk("irq gpio=0x%x code=%d | %s%s%s\n",
41ef7c1e
MCC
118 gpio, data,
119 ir->polling ? "poll" : "irq",
120 (gpio & ir->mask_keydown) ? " down" : "",
121 (gpio & ir->mask_keyup) ? " up" : "");
1da177e4 122
6a59d64c 123 if (ir->core->boardnr == CX88_BOARD_NORWOOD_MICRO) {
d1009bd7
PN
124 u32 gpio_key = cx_read(MO_GP0_IO);
125
126 data = (data << 4) | ((gpio_key & 0xf0) >> 4);
127
8573b74a 128 ir_input_keydown(ir->input, &ir->ir, data);
d1009bd7
PN
129 ir_input_nokey(ir->input, &ir->ir);
130
131 } else if (ir->mask_keydown) {
1da177e4
LT
132 /* bit set on keydown */
133 if (gpio & ir->mask_keydown) {
8573b74a 134 ir_input_keydown(ir->input, &ir->ir, data);
1da177e4 135 } else {
b7df3910 136 ir_input_nokey(ir->input, &ir->ir);
1da177e4
LT
137 }
138
139 } else if (ir->mask_keyup) {
140 /* bit cleared on keydown */
141 if (0 == (gpio & ir->mask_keyup)) {
8573b74a 142 ir_input_keydown(ir->input, &ir->ir, data);
1da177e4 143 } else {
b7df3910 144 ir_input_nokey(ir->input, &ir->ir);
1da177e4
LT
145 }
146
147 } else {
148 /* can't distinguish keydown/up :-/ */
8573b74a 149 ir_input_keydown(ir->input, &ir->ir, data);
b7df3910 150 ir_input_nokey(ir->input, &ir->ir);
1da177e4
LT
151 }
152}
153
3c1c48bb 154static enum hrtimer_restart cx88_ir_work(struct hrtimer *timer)
1da177e4 155{
3c1c48bb
AH
156 unsigned long missed;
157 struct cx88_IR *ir = container_of(timer, struct cx88_IR, timer);
1da177e4
LT
158
159 cx88_ir_handle_key(ir);
3c1c48bb
AH
160 missed = hrtimer_forward_now(&ir->timer,
161 ktime_set(0, ir->polling * 1000000));
162 if (missed > 1)
163 ir_dprintk("Missed ticks %ld\n", missed - 1);
164
165 return HRTIMER_RESTART;
1da177e4
LT
166}
167
92f4fc10 168static int __cx88_ir_start(void *priv)
b07b4783 169{
92f4fc10
MCC
170 struct cx88_core *core = priv;
171 struct cx88_IR *ir;
172
173 if (!core || !core->ir)
174 return -EINVAL;
175
176 ir = core->ir;
177
b07b4783 178 if (ir->polling) {
3c1c48bb
AH
179 hrtimer_init(&ir->timer, CLOCK_MONOTONIC, HRTIMER_MODE_REL);
180 ir->timer.function = cx88_ir_work;
181 hrtimer_start(&ir->timer,
182 ktime_set(0, ir->polling * 1000000),
183 HRTIMER_MODE_REL);
b07b4783
DT
184 }
185 if (ir->sampling) {
8ddac9ee 186 core->pci_irqmask |= PCI_INT_IR_SMPINT;
b07b4783
DT
187 cx_write(MO_DDS_IO, 0xa80a80); /* 4 kHz sample rate */
188 cx_write(MO_DDSCFG_IO, 0x5); /* enable */
189 }
92f4fc10 190 return 0;
b07b4783
DT
191}
192
92f4fc10 193static void __cx88_ir_stop(void *priv)
b07b4783 194{
92f4fc10
MCC
195 struct cx88_core *core = priv;
196 struct cx88_IR *ir;
197
198 if (!core || !core->ir)
199 return;
200
201 ir = core->ir;
b07b4783
DT
202 if (ir->sampling) {
203 cx_write(MO_DDSCFG_IO, 0x0);
8ddac9ee 204 core->pci_irqmask &= ~PCI_INT_IR_SMPINT;
b07b4783
DT
205 }
206
569b7ec7 207 if (ir->polling)
3c1c48bb 208 hrtimer_cancel(&ir->timer);
b07b4783
DT
209}
210
92f4fc10
MCC
211int cx88_ir_start(struct cx88_core *core)
212{
213 if (core->ir->users)
214 return __cx88_ir_start(core);
215
216 return 0;
217}
218
219void cx88_ir_stop(struct cx88_core *core)
220{
221 if (core->ir->users)
222 __cx88_ir_stop(core);
223}
224
225static int cx88_ir_open(void *priv)
226{
227 struct cx88_core *core = priv;
228
229 core->ir->users++;
230 return __cx88_ir_start(core);
231}
232
233static void cx88_ir_close(void *priv)
234{
235 struct cx88_core *core = priv;
236
237 core->ir->users--;
238 if (!core->ir->users)
239 __cx88_ir_stop(core);
240}
241
1da177e4
LT
242/* ---------------------------------------------------------------------- */
243
244int cx88_ir_init(struct cx88_core *core, struct pci_dev *pci)
245{
246 struct cx88_IR *ir;
b7df3910 247 struct input_dev *input_dev;
02858eed 248 char *ir_codes = NULL;
971e8298 249 u64 ir_type = IR_TYPE_OTHER;
b07b4783 250 int err = -ENOMEM;
9dfe4e83
MCC
251 u32 hardware_mask = 0; /* For devices with a hardware mask, when
252 * used with a full-code IR table
253 */
1da177e4 254
b7df3910
DT
255 ir = kzalloc(sizeof(*ir), GFP_KERNEL);
256 input_dev = input_allocate_device();
b07b4783
DT
257 if (!ir || !input_dev)
258 goto err_out_free;
b7df3910
DT
259
260 ir->input = input_dev;
1da177e4
LT
261
262 /* detect & configure */
6a59d64c 263 switch (core->boardnr) {
1da177e4 264 case CX88_BOARD_DNTV_LIVE_DVB_T:
b45009b0 265 case CX88_BOARD_KWORLD_DVB_T:
28ecc449 266 case CX88_BOARD_KWORLD_DVB_T_CX22702:
02858eed 267 ir_codes = RC_MAP_DNTV_LIVE_DVB_T;
41ef7c1e 268 ir->gpio_addr = MO_GP1_IO;
1da177e4 269 ir->mask_keycode = 0x1f;
41ef7c1e
MCC
270 ir->mask_keyup = 0x60;
271 ir->polling = 50; /* ms */
1da177e4 272 break;
e52e98a7 273 case CX88_BOARD_TERRATEC_CINERGY_1400_DVB_T1:
02858eed 274 ir_codes = RC_MAP_CINERGY_1400;
5a143b12 275 ir_type = IR_TYPE_NEC;
fc40b261 276 ir->sampling = 0xeb04; /* address */
e52e98a7 277 break;
1da177e4
LT
278 case CX88_BOARD_HAUPPAUGE:
279 case CX88_BOARD_HAUPPAUGE_DVB_T1:
fb56cb65
ST
280 case CX88_BOARD_HAUPPAUGE_NOVASE2_S1:
281 case CX88_BOARD_HAUPPAUGE_NOVASPLUS_S1:
611900c1 282 case CX88_BOARD_HAUPPAUGE_HVR1100:
76dc82ab 283 case CX88_BOARD_HAUPPAUGE_HVR3000:
5bd1b663
ST
284 case CX88_BOARD_HAUPPAUGE_HVR4000:
285 case CX88_BOARD_HAUPPAUGE_HVR4000LITE:
f1735bb2
EB
286 case CX88_BOARD_PCHDTV_HD3000:
287 case CX88_BOARD_PCHDTV_HD5500:
501d8cd4 288 case CX88_BOARD_HAUPPAUGE_IRONLY:
02858eed 289 ir_codes = RC_MAP_HAUPPAUGE_NEW;
41ef7c1e
MCC
290 ir_type = IR_TYPE_RC5;
291 ir->sampling = 1;
1da177e4 292 break;
2de873e6 293 case CX88_BOARD_WINFAST_DTV2000H:
4d14c833 294 case CX88_BOARD_WINFAST_DTV2000H_J:
3047a176 295 case CX88_BOARD_WINFAST_DTV1800H:
02858eed 296 ir_codes = RC_MAP_WINFAST;
41ef7c1e 297 ir->gpio_addr = MO_GP0_IO;
1da177e4 298 ir->mask_keycode = 0x8f8;
41ef7c1e 299 ir->mask_keyup = 0x100;
2de873e6 300 ir->polling = 50; /* ms */
1da177e4 301 break;
ff97d93d 302 case CX88_BOARD_WINFAST2000XP_EXPERT:
e7d11ecb 303 case CX88_BOARD_WINFAST_DTV1000:
3e9a4897 304 case CX88_BOARD_WINFAST_TV2000_XP_GLOBAL:
02858eed 305 ir_codes = RC_MAP_WINFAST;
ff97d93d
HP
306 ir->gpio_addr = MO_GP0_IO;
307 ir->mask_keycode = 0x8f8;
308 ir->mask_keyup = 0x100;
309 ir->polling = 1; /* ms */
310 break;
1da177e4 311 case CX88_BOARD_IODATA_GVBCTV7E:
02858eed 312 ir_codes = RC_MAP_IODATA_BCTV7E;
41ef7c1e 313 ir->gpio_addr = MO_GP0_IO;
1da177e4
LT
314 ir->mask_keycode = 0xfd;
315 ir->mask_keydown = 0x02;
41ef7c1e 316 ir->polling = 5; /* ms */
1da177e4 317 break;
ff97d93d 318 case CX88_BOARD_PROLINK_PLAYTVPVR:
239df2e2 319 case CX88_BOARD_PIXELVIEW_PLAYTV_ULTRA_PRO:
9dfe4e83
MCC
320 /*
321 * It seems that this hardware is paired with NEC extended
322 * address 0x866b. So, unfortunately, its usage with other
323 * IR's with different address won't work. Still, there are
324 * other IR's from the same manufacturer that works, like the
325 * 002-T mini RC, provided with newer PV hardware
326 */
327 ir_codes = RC_MAP_PIXELVIEW_MK12;
41ef7c1e 328 ir->gpio_addr = MO_GP1_IO;
41ef7c1e 329 ir->mask_keyup = 0x80;
26d5683d 330 ir->polling = 10; /* ms */
9dfe4e83 331 hardware_mask = 0x3f; /* Hardware returns only 6 bits from command part */
239df2e2 332 break;
7f0dd179 333 case CX88_BOARD_PROLINK_PV_8000GT:
a31d2bb7 334 case CX88_BOARD_PROLINK_PV_GLOBAL_XTREME:
02858eed 335 ir_codes = RC_MAP_PIXELVIEW_NEW;
7f0dd179
MCC
336 ir->gpio_addr = MO_GP1_IO;
337 ir->mask_keycode = 0x3f;
338 ir->mask_keyup = 0x80;
339 ir->polling = 1; /* ms */
340 break;
b639f9d2 341 case CX88_BOARD_KWORLD_LTV883:
02858eed 342 ir_codes = RC_MAP_PIXELVIEW;
b639f9d2
NS
343 ir->gpio_addr = MO_GP1_IO;
344 ir->mask_keycode = 0x1f;
345 ir->mask_keyup = 0x60;
346 ir->polling = 1; /* ms */
347 break;
a82decf6 348 case CX88_BOARD_ADSTECH_DVB_T_PCI:
02858eed 349 ir_codes = RC_MAP_ADSTECH_DVB_T_PCI;
41ef7c1e 350 ir->gpio_addr = MO_GP1_IO;
a82decf6 351 ir->mask_keycode = 0xbf;
41ef7c1e
MCC
352 ir->mask_keyup = 0x40;
353 ir->polling = 50; /* ms */
354 break;
355 case CX88_BOARD_MSI_TVANYWHERE_MASTER:
02858eed 356 ir_codes = RC_MAP_MSI_TVANYWHERE;
41ef7c1e
MCC
357 ir->gpio_addr = MO_GP1_IO;
358 ir->mask_keycode = 0x1f;
359 ir->mask_keyup = 0x40;
360 ir->polling = 1; /* ms */
a82decf6 361 break;
899ad11b 362 case CX88_BOARD_AVERTV_303:
565f4949 363 case CX88_BOARD_AVERTV_STUDIO_303:
02858eed 364 ir_codes = RC_MAP_AVERTV_303;
899ad11b
GG
365 ir->gpio_addr = MO_GP2_IO;
366 ir->mask_keycode = 0xfb;
367 ir->mask_keydown = 0x02;
368 ir->polling = 50; /* ms */
369 break;
d8d86225
IL
370 case CX88_BOARD_OMICOM_SS4_PCI:
371 case CX88_BOARD_SATTRADE_ST4200:
372 case CX88_BOARD_TBS_8920:
373 case CX88_BOARD_TBS_8910:
374 case CX88_BOARD_PROF_7300:
b699c271 375 case CX88_BOARD_PROF_7301:
d8d86225 376 case CX88_BOARD_PROF_6200:
02858eed 377 ir_codes = RC_MAP_TBS_NEC;
5a143b12 378 ir_type = IR_TYPE_NEC;
d8d86225
IL
379 ir->sampling = 0xff00; /* address */
380 break;
381 case CX88_BOARD_TEVII_S460:
382 case CX88_BOARD_TEVII_S420:
02858eed 383 ir_codes = RC_MAP_TEVII_NEC;
5a143b12 384 ir_type = IR_TYPE_NEC;
d8d86225
IL
385 ir->sampling = 0xff00; /* address */
386 break;
fc40b261 387 case CX88_BOARD_DNTV_LIVE_DVB_T_PRO:
02858eed 388 ir_codes = RC_MAP_DNTV_LIVE_DVBT_PRO;
5a143b12 389 ir_type = IR_TYPE_NEC;
715a2233 390 ir->sampling = 0xff00; /* address */
fc40b261 391 break;
d1009bd7 392 case CX88_BOARD_NORWOOD_MICRO:
02858eed 393 ir_codes = RC_MAP_NORWOOD;
d1009bd7
PN
394 ir->gpio_addr = MO_GP1_IO;
395 ir->mask_keycode = 0x0e;
396 ir->mask_keyup = 0x80;
397 ir->polling = 50; /* ms */
398 break;
be4f4519 399 case CX88_BOARD_NPGTECH_REALTV_TOP10FM:
02858eed 400 ir_codes = RC_MAP_NPGTECH;
715a2233 401 ir->gpio_addr = MO_GP0_IO;
680543c5 402 ir->mask_keycode = 0xfa;
715a2233 403 ir->polling = 50; /* ms */
680543c5 404 break;
9121106a 405 case CX88_BOARD_PINNACLE_PCTV_HD_800i:
02858eed 406 ir_codes = RC_MAP_PINNACLE_PCTV_HD;
715a2233
MCC
407 ir_type = IR_TYPE_RC5;
408 ir->sampling = 1;
9121106a 409 break;
ba928034 410 case CX88_BOARD_POWERCOLOR_REAL_ANGEL:
02858eed 411 ir_codes = RC_MAP_POWERCOLOR_REAL_ANGEL;
715a2233 412 ir->gpio_addr = MO_GP2_IO;
ba928034 413 ir->mask_keycode = 0x7e;
715a2233 414 ir->polling = 100; /* ms */
ba928034 415 break;
1da177e4 416 }
b45009b0 417
1da177e4 418 if (NULL == ir_codes) {
b07b4783
DT
419 err = -ENODEV;
420 goto err_out_free;
1da177e4
LT
421 }
422
9dfe4e83
MCC
423 /*
424 * The usage of mask_keycode were very convenient, due to several
425 * reasons. Among others, the scancode tables were using the scancode
426 * as the index elements. So, the less bits it was used, the smaller
427 * the table were stored. After the input changes, the better is to use
428 * the full scancodes, since it allows replacing the IR remote by
429 * another one. Unfortunately, there are still some hardware, like
430 * Pixelview Ultra Pro, where only part of the scancode is sent via
431 * GPIO. So, there's no way to get the full scancode. Due to that,
432 * hardware_mask were introduced here: it represents those hardware
433 * that has such limits.
434 */
435 if (hardware_mask && !ir->mask_keycode)
436 ir->mask_keycode = hardware_mask;
437
1da177e4 438 /* init input device */
6a59d64c 439 snprintf(ir->name, sizeof(ir->name), "cx88 IR (%s)", core->board.name);
41ef7c1e 440 snprintf(ir->phys, sizeof(ir->phys), "pci-%s/ir0", pci_name(pci));
1da177e4 441
579e7d60 442 err = ir_input_init(input_dev, &ir->ir, ir_type);
055cd556
MCC
443 if (err < 0)
444 goto err_out_free;
445
b7df3910
DT
446 input_dev->name = ir->name;
447 input_dev->phys = ir->phys;
448 input_dev->id.bustype = BUS_PCI;
449 input_dev->id.version = 1;
1da177e4 450 if (pci->subsystem_vendor) {
b7df3910
DT
451 input_dev->id.vendor = pci->subsystem_vendor;
452 input_dev->id.product = pci->subsystem_device;
1da177e4 453 } else {
b7df3910
DT
454 input_dev->id.vendor = pci->vendor;
455 input_dev->id.product = pci->device;
1da177e4 456 }
2c8a3a33 457 input_dev->dev.parent = &pci->dev;
1da177e4
LT
458 /* record handles to ourself */
459 ir->core = core;
460 core->ir = ir;
461
92f4fc10
MCC
462 ir->props.priv = core;
463 ir->props.open = cx88_ir_open;
464 ir->props.close = cx88_ir_close;
9dfe4e83 465 ir->props.scanmask = hardware_mask;
1da177e4
LT
466
467 /* all done */
02858eed 468 err = ir_input_register(ir->input, ir_codes, &ir->props, MODULE_NAME);
b07b4783 469 if (err)
92f4fc10 470 goto err_out_free;
1da177e4
LT
471
472 return 0;
b07b4783 473
b07b4783 474 err_out_free:
92f4fc10 475 core->ir = NULL;
b07b4783
DT
476 kfree(ir);
477 return err;
1da177e4
LT
478}
479
480int cx88_ir_fini(struct cx88_core *core)
481{
482 struct cx88_IR *ir = core->ir;
483
484 /* skip detach on non attached boards */
485 if (NULL == ir)
486 return 0;
487
92f4fc10 488 cx88_ir_stop(core);
38ef6aa8 489 ir_input_unregister(ir->input);
1da177e4
LT
490 kfree(ir);
491
492 /* done */
493 core->ir = NULL;
494 return 0;
495}
496
497/* ---------------------------------------------------------------------- */
498
499void cx88_ir_irq(struct cx88_core *core)
500{
501 struct cx88_IR *ir = core->ir;
e52e98a7 502 u32 samples, ircode;
34c08029 503 int i, start, range, toggle, dev, code;
1da177e4
LT
504
505 if (NULL == ir)
506 return;
507 if (!ir->sampling)
508 return;
509
510 samples = cx_read(MO_SAMPLE_IO);
41ef7c1e 511 if (0 != samples && 0xffffffff != samples) {
1da177e4
LT
512 /* record sample data */
513 if (ir->scount < ARRAY_SIZE(ir->samples))
514 ir->samples[ir->scount++] = samples;
515 return;
516 }
517 if (!ir->scount) {
518 /* nothing to sample */
41ef7c1e 519 if (ir->ir.keypressed && time_after(jiffies, ir->release))
b7df3910 520 ir_input_nokey(ir->input, &ir->ir);
1da177e4
LT
521 return;
522 }
523
524 /* have a complete sample */
525 if (ir->scount < ARRAY_SIZE(ir->samples))
526 ir->samples[ir->scount++] = samples;
527 for (i = 0; i < ir->scount; i++)
528 ir->samples[i] = ~ir->samples[i];
529 if (ir_debug)
41ef7c1e 530 ir_dump_samples(ir->samples, ir->scount);
1da177e4
LT
531
532 /* decode it */
6a59d64c 533 switch (core->boardnr) {
d8d86225
IL
534 case CX88_BOARD_TEVII_S460:
535 case CX88_BOARD_TEVII_S420:
e52e98a7 536 case CX88_BOARD_TERRATEC_CINERGY_1400_DVB_T1:
fc40b261 537 case CX88_BOARD_DNTV_LIVE_DVB_T_PRO:
d8d86225
IL
538 case CX88_BOARD_OMICOM_SS4_PCI:
539 case CX88_BOARD_SATTRADE_ST4200:
540 case CX88_BOARD_TBS_8920:
541 case CX88_BOARD_TBS_8910:
542 case CX88_BOARD_PROF_7300:
b699c271 543 case CX88_BOARD_PROF_7301:
d8d86225 544 case CX88_BOARD_PROF_6200:
e52e98a7
MCC
545 ircode = ir_decode_pulsedistance(ir->samples, ir->scount, 1, 4);
546
547 if (ircode == 0xffffffff) { /* decoding error */
548 ir_dprintk("pulse distance decoding error\n");
549 break;
550 }
551
552 ir_dprintk("pulse distance decoded: %x\n", ircode);
553
554 if (ircode == 0) { /* key still pressed */
555 ir_dprintk("pulse distance decoded repeat code\n");
556 ir->release = jiffies + msecs_to_jiffies(120);
557 break;
558 }
559
fc40b261 560 if ((ircode & 0xffff) != (ir->sampling & 0xffff)) { /* wrong address */
e52e98a7 561 ir_dprintk("pulse distance decoded wrong address\n");
4ac97914 562 break;
e52e98a7
MCC
563 }
564
565 if (((~ircode >> 24) & 0xff) != ((ircode >> 16) & 0xff)) { /* wrong checksum */
566 ir_dprintk("pulse distance decoded wrong check sum\n");
567 break;
568 }
569
570 ir_dprintk("Key Code: %x\n", (ircode >> 16) & 0x7f);
571
8573b74a 572 ir_input_keydown(ir->input, &ir->ir, (ircode >> 16) & 0x7f);
e52e98a7
MCC
573 ir->release = jiffies + msecs_to_jiffies(120);
574 break;
1da177e4
LT
575 case CX88_BOARD_HAUPPAUGE:
576 case CX88_BOARD_HAUPPAUGE_DVB_T1:
fb56cb65
ST
577 case CX88_BOARD_HAUPPAUGE_NOVASE2_S1:
578 case CX88_BOARD_HAUPPAUGE_NOVASPLUS_S1:
30367bfd 579 case CX88_BOARD_HAUPPAUGE_HVR1100:
76dc82ab 580 case CX88_BOARD_HAUPPAUGE_HVR3000:
5bd1b663
ST
581 case CX88_BOARD_HAUPPAUGE_HVR4000:
582 case CX88_BOARD_HAUPPAUGE_HVR4000LITE:
f1735bb2
EB
583 case CX88_BOARD_PCHDTV_HD3000:
584 case CX88_BOARD_PCHDTV_HD5500:
501d8cd4 585 case CX88_BOARD_HAUPPAUGE_IRONLY:
34c08029
DB
586 ircode = ir_decode_biphase(ir->samples, ir->scount, 5, 7);
587 ir_dprintk("biphase decoded: %x\n", ircode);
588 /*
589 * RC5 has an extension bit which adds a new range
590 * of available codes, this is detected here. Also
591 * hauppauge remotes (black/silver) always use
592 * specific device ids. If we do not filter the
593 * device ids then messages destined for devices
594 * such as TVs (id=0) will get through to the
595 * device causing mis-fired events.
596 */
597 /* split rc5 data block ... */
598 start = (ircode & 0x2000) >> 13;
599 range = (ircode & 0x1000) >> 12;
600 toggle= (ircode & 0x0800) >> 11;
601 dev = (ircode & 0x07c0) >> 6;
602 code = (ircode & 0x003f) | ((range << 6) ^ 0x0040);
603 if( start != 1)
604 /* no key pressed */
605 break;
606 if ( dev != 0x1e && dev != 0x1f )
607 /* not a hauppauge remote */
608 break;
8573b74a 609 ir_input_keydown(ir->input, &ir->ir, code);
34c08029
DB
610 ir->release = jiffies + msecs_to_jiffies(120);
611 break;
612 case CX88_BOARD_PINNACLE_PCTV_HD_800i:
e52e98a7
MCC
613 ircode = ir_decode_biphase(ir->samples, ir->scount, 5, 7);
614 ir_dprintk("biphase decoded: %x\n", ircode);
615 if ((ircode & 0xfffff000) != 0x3000)
1da177e4 616 break;
8573b74a 617 ir_input_keydown(ir->input, &ir->ir, ircode & 0x3f);
1da177e4
LT
618 ir->release = jiffies + msecs_to_jiffies(120);
619 break;
620 }
621
622 ir->scount = 0;
623 return;
624}
625
626/* ---------------------------------------------------------------------- */
627
628MODULE_AUTHOR("Gerd Knorr, Pavel Machek, Chris Pascoe");
629MODULE_DESCRIPTION("input driver for cx88 GPIO-based IR remote controls");
630MODULE_LICENSE("GPL");
1da177e4
LT
631/*
632 * Local variables:
633 * c-basic-offset: 8
634 * End:
635 */