]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - drivers/media/video/cx88/cx88-input.c
[media] cx88: added XC4000 tuner callback and DVB attach functions
[mirror_ubuntu-artful-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 27#include <linux/pci.h>
5a0e3ad6 28#include <linux/slab.h>
1da177e4 29#include <linux/module.h>
1da177e4 30
1da177e4 31#include "cx88.h"
6bda9644 32#include <media/rc-core.h>
1da177e4 33
727e625c
MCC
34#define MODULE_NAME "cx88xx"
35
1da177e4
LT
36/* ---------------------------------------------------------------------- */
37
1da177e4 38struct cx88_IR {
41ef7c1e 39 struct cx88_core *core;
d8b4b582 40 struct rc_dev *dev;
92f4fc10
MCC
41
42 int users;
43
41ef7c1e
MCC
44 char name[32];
45 char phys[32];
1da177e4
LT
46
47 /* sample from gpio pin 16 */
fc40b261 48 u32 sampling;
1da177e4
LT
49
50 /* poll external decoder */
41ef7c1e 51 int polling;
3c1c48bb 52 struct hrtimer timer;
41ef7c1e
MCC
53 u32 gpio_addr;
54 u32 last_gpio;
55 u32 mask_keycode;
56 u32 mask_keydown;
57 u32 mask_keyup;
1da177e4
LT
58};
59
2997137b
DH
60static unsigned ir_samplerate = 4;
61module_param(ir_samplerate, uint, 0444);
62MODULE_PARM_DESC(ir_samplerate, "IR samplerate in kHz, 1 - 20, default 4");
63
ff699e6b 64static int ir_debug;
41ef7c1e 65module_param(ir_debug, int, 0644); /* debug level [IR] */
1da177e4
LT
66MODULE_PARM_DESC(ir_debug, "enable debug messages [IR]");
67
68#define ir_dprintk(fmt, arg...) if (ir_debug) \
e52e98a7 69 printk(KERN_DEBUG "%s IR: " fmt , ir->core->name , ##arg)
1da177e4 70
1c0eb0ff
MCC
71#define dprintk(fmt, arg...) if (ir_debug) \
72 printk(KERN_DEBUG "cx88 IR: " fmt , ##arg)
73
1da177e4
LT
74/* ---------------------------------------------------------------------- */
75
76static void cx88_ir_handle_key(struct cx88_IR *ir)
77{
78 struct cx88_core *core = ir->core;
680543c5 79 u32 gpio, data, auxgpio;
1da177e4
LT
80
81 /* read gpio value */
82 gpio = cx_read(ir->gpio_addr);
6a59d64c 83 switch (core->boardnr) {
829ea964 84 case CX88_BOARD_NPGTECH_REALTV_TOP10FM:
680543c5
RC
85 /* This board apparently uses a combination of 2 GPIO
86 to represent the keys. Additionally, the second GPIO
87 can be used for parity.
88
89 Example:
90
91 for key "5"
92 gpio = 0x758, auxgpio = 0xe5 or 0xf5
93 for key "Power"
94 gpio = 0x758, auxgpio = 0xed or 0xfd
95 */
96
97 auxgpio = cx_read(MO_GP1_IO);
98 /* Take out the parity part */
a62c61d3 99 gpio=(gpio & 0x7fd) + (auxgpio & 0xef);
829ea964
MK
100 break;
101 case CX88_BOARD_WINFAST_DTV1000:
3047a176 102 case CX88_BOARD_WINFAST_DTV1800H:
3e9a4897 103 case CX88_BOARD_WINFAST_TV2000_XP_GLOBAL:
e7d11ecb
EP
104 gpio = (gpio & 0x6ff) | ((cx_read(MO_GP1_IO) << 8) & 0x900);
105 auxgpio = gpio;
829ea964
MK
106 break;
107 default:
680543c5 108 auxgpio = gpio;
829ea964 109 }
1da177e4 110 if (ir->polling) {
680543c5 111 if (ir->last_gpio == auxgpio)
1da177e4 112 return;
680543c5 113 ir->last_gpio = auxgpio;
1da177e4
LT
114 }
115
116 /* extract data */
117 data = ir_extract_bits(gpio, ir->mask_keycode);
118 ir_dprintk("irq gpio=0x%x code=%d | %s%s%s\n",
41ef7c1e
MCC
119 gpio, data,
120 ir->polling ? "poll" : "irq",
121 (gpio & ir->mask_keydown) ? " down" : "",
122 (gpio & ir->mask_keyup) ? " up" : "");
1da177e4 123
6a59d64c 124 if (ir->core->boardnr == CX88_BOARD_NORWOOD_MICRO) {
d1009bd7
PN
125 u32 gpio_key = cx_read(MO_GP0_IO);
126
127 data = (data << 4) | ((gpio_key & 0xf0) >> 4);
128
ca86674b 129 rc_keydown(ir->dev, data, 0);
d1009bd7
PN
130
131 } else if (ir->mask_keydown) {
1da177e4 132 /* bit set on keydown */
3bbd3f2d 133 if (gpio & ir->mask_keydown)
ca86674b 134 rc_keydown_notimeout(ir->dev, data, 0);
62c65031 135 else
ca86674b 136 rc_keyup(ir->dev);
1da177e4
LT
137
138 } else if (ir->mask_keyup) {
139 /* bit cleared on keydown */
3bbd3f2d 140 if (0 == (gpio & ir->mask_keyup))
ca86674b 141 rc_keydown_notimeout(ir->dev, data, 0);
62c65031 142 else
ca86674b 143 rc_keyup(ir->dev);
1da177e4
LT
144
145 } else {
146 /* can't distinguish keydown/up :-/ */
ca86674b
MCC
147 rc_keydown_notimeout(ir->dev, data, 0);
148 rc_keyup(ir->dev);
1da177e4
LT
149 }
150}
151
3c1c48bb 152static enum hrtimer_restart cx88_ir_work(struct hrtimer *timer)
1da177e4 153{
3c1c48bb
AH
154 unsigned long missed;
155 struct cx88_IR *ir = container_of(timer, struct cx88_IR, timer);
1da177e4
LT
156
157 cx88_ir_handle_key(ir);
3c1c48bb
AH
158 missed = hrtimer_forward_now(&ir->timer,
159 ktime_set(0, ir->polling * 1000000));
160 if (missed > 1)
161 ir_dprintk("Missed ticks %ld\n", missed - 1);
162
163 return HRTIMER_RESTART;
1da177e4
LT
164}
165
92f4fc10 166static int __cx88_ir_start(void *priv)
b07b4783 167{
92f4fc10
MCC
168 struct cx88_core *core = priv;
169 struct cx88_IR *ir;
170
171 if (!core || !core->ir)
172 return -EINVAL;
173
174 ir = core->ir;
175
b07b4783 176 if (ir->polling) {
3c1c48bb
AH
177 hrtimer_init(&ir->timer, CLOCK_MONOTONIC, HRTIMER_MODE_REL);
178 ir->timer.function = cx88_ir_work;
179 hrtimer_start(&ir->timer,
180 ktime_set(0, ir->polling * 1000000),
181 HRTIMER_MODE_REL);
b07b4783
DT
182 }
183 if (ir->sampling) {
8ddac9ee 184 core->pci_irqmask |= PCI_INT_IR_SMPINT;
2997137b
DH
185 cx_write(MO_DDS_IO, 0x33F286 * ir_samplerate); /* samplerate */
186 cx_write(MO_DDSCFG_IO, 0x5); /* enable */
b07b4783 187 }
92f4fc10 188 return 0;
b07b4783
DT
189}
190
92f4fc10 191static void __cx88_ir_stop(void *priv)
b07b4783 192{
92f4fc10
MCC
193 struct cx88_core *core = priv;
194 struct cx88_IR *ir;
195
196 if (!core || !core->ir)
197 return;
198
199 ir = core->ir;
b07b4783
DT
200 if (ir->sampling) {
201 cx_write(MO_DDSCFG_IO, 0x0);
8ddac9ee 202 core->pci_irqmask &= ~PCI_INT_IR_SMPINT;
b07b4783
DT
203 }
204
569b7ec7 205 if (ir->polling)
3c1c48bb 206 hrtimer_cancel(&ir->timer);
b07b4783
DT
207}
208
92f4fc10
MCC
209int cx88_ir_start(struct cx88_core *core)
210{
211 if (core->ir->users)
212 return __cx88_ir_start(core);
213
214 return 0;
215}
216
217void cx88_ir_stop(struct cx88_core *core)
218{
219 if (core->ir->users)
220 __cx88_ir_stop(core);
221}
222
d8b4b582 223static int cx88_ir_open(struct rc_dev *rc)
92f4fc10 224{
d8b4b582 225 struct cx88_core *core = rc->priv;
92f4fc10
MCC
226
227 core->ir->users++;
228 return __cx88_ir_start(core);
229}
230
d8b4b582 231static void cx88_ir_close(struct rc_dev *rc)
92f4fc10 232{
d8b4b582 233 struct cx88_core *core = rc->priv;
92f4fc10
MCC
234
235 core->ir->users--;
236 if (!core->ir->users)
237 __cx88_ir_stop(core);
238}
239
1da177e4
LT
240/* ---------------------------------------------------------------------- */
241
242int cx88_ir_init(struct cx88_core *core, struct pci_dev *pci)
243{
244 struct cx88_IR *ir;
d8b4b582 245 struct rc_dev *dev;
02858eed 246 char *ir_codes = NULL;
52b66144 247 u64 rc_type = RC_TYPE_OTHER;
b07b4783 248 int err = -ENOMEM;
9dfe4e83
MCC
249 u32 hardware_mask = 0; /* For devices with a hardware mask, when
250 * used with a full-code IR table
251 */
1da177e4 252
b7df3910 253 ir = kzalloc(sizeof(*ir), GFP_KERNEL);
d8b4b582
DH
254 dev = rc_allocate_device();
255 if (!ir || !dev)
b07b4783 256 goto err_out_free;
b7df3910 257
d8b4b582 258 ir->dev = dev;
1da177e4
LT
259
260 /* detect & configure */
6a59d64c 261 switch (core->boardnr) {
1da177e4 262 case CX88_BOARD_DNTV_LIVE_DVB_T:
b45009b0 263 case CX88_BOARD_KWORLD_DVB_T:
28ecc449 264 case CX88_BOARD_KWORLD_DVB_T_CX22702:
02858eed 265 ir_codes = RC_MAP_DNTV_LIVE_DVB_T;
41ef7c1e 266 ir->gpio_addr = MO_GP1_IO;
1da177e4 267 ir->mask_keycode = 0x1f;
41ef7c1e
MCC
268 ir->mask_keyup = 0x60;
269 ir->polling = 50; /* ms */
1da177e4 270 break;
e52e98a7 271 case CX88_BOARD_TERRATEC_CINERGY_1400_DVB_T1:
02858eed 272 ir_codes = RC_MAP_CINERGY_1400;
fc40b261 273 ir->sampling = 0xeb04; /* address */
e52e98a7 274 break;
1da177e4
LT
275 case CX88_BOARD_HAUPPAUGE:
276 case CX88_BOARD_HAUPPAUGE_DVB_T1:
fb56cb65
ST
277 case CX88_BOARD_HAUPPAUGE_NOVASE2_S1:
278 case CX88_BOARD_HAUPPAUGE_NOVASPLUS_S1:
611900c1 279 case CX88_BOARD_HAUPPAUGE_HVR1100:
76dc82ab 280 case CX88_BOARD_HAUPPAUGE_HVR3000:
5bd1b663
ST
281 case CX88_BOARD_HAUPPAUGE_HVR4000:
282 case CX88_BOARD_HAUPPAUGE_HVR4000LITE:
f1735bb2
EB
283 case CX88_BOARD_PCHDTV_HD3000:
284 case CX88_BOARD_PCHDTV_HD5500:
501d8cd4 285 case CX88_BOARD_HAUPPAUGE_IRONLY:
af86ce79 286 ir_codes = RC_MAP_HAUPPAUGE;
41ef7c1e 287 ir->sampling = 1;
1da177e4 288 break;
2de873e6 289 case CX88_BOARD_WINFAST_DTV2000H:
4d14c833 290 case CX88_BOARD_WINFAST_DTV2000H_J:
3047a176 291 case CX88_BOARD_WINFAST_DTV1800H:
02858eed 292 ir_codes = RC_MAP_WINFAST;
41ef7c1e 293 ir->gpio_addr = MO_GP0_IO;
1da177e4 294 ir->mask_keycode = 0x8f8;
41ef7c1e 295 ir->mask_keyup = 0x100;
2de873e6 296 ir->polling = 50; /* ms */
1da177e4 297 break;
ff97d93d 298 case CX88_BOARD_WINFAST2000XP_EXPERT:
e7d11ecb 299 case CX88_BOARD_WINFAST_DTV1000:
3e9a4897 300 case CX88_BOARD_WINFAST_TV2000_XP_GLOBAL:
02858eed 301 ir_codes = RC_MAP_WINFAST;
ff97d93d
HP
302 ir->gpio_addr = MO_GP0_IO;
303 ir->mask_keycode = 0x8f8;
304 ir->mask_keyup = 0x100;
305 ir->polling = 1; /* ms */
306 break;
1da177e4 307 case CX88_BOARD_IODATA_GVBCTV7E:
02858eed 308 ir_codes = RC_MAP_IODATA_BCTV7E;
41ef7c1e 309 ir->gpio_addr = MO_GP0_IO;
1da177e4
LT
310 ir->mask_keycode = 0xfd;
311 ir->mask_keydown = 0x02;
41ef7c1e 312 ir->polling = 5; /* ms */
1da177e4 313 break;
ff97d93d 314 case CX88_BOARD_PROLINK_PLAYTVPVR:
239df2e2 315 case CX88_BOARD_PIXELVIEW_PLAYTV_ULTRA_PRO:
9dfe4e83
MCC
316 /*
317 * It seems that this hardware is paired with NEC extended
318 * address 0x866b. So, unfortunately, its usage with other
319 * IR's with different address won't work. Still, there are
320 * other IR's from the same manufacturer that works, like the
321 * 002-T mini RC, provided with newer PV hardware
322 */
323 ir_codes = RC_MAP_PIXELVIEW_MK12;
41ef7c1e 324 ir->gpio_addr = MO_GP1_IO;
41ef7c1e 325 ir->mask_keyup = 0x80;
26d5683d 326 ir->polling = 10; /* ms */
9dfe4e83 327 hardware_mask = 0x3f; /* Hardware returns only 6 bits from command part */
239df2e2 328 break;
7f0dd179 329 case CX88_BOARD_PROLINK_PV_8000GT:
a31d2bb7 330 case CX88_BOARD_PROLINK_PV_GLOBAL_XTREME:
02858eed 331 ir_codes = RC_MAP_PIXELVIEW_NEW;
7f0dd179
MCC
332 ir->gpio_addr = MO_GP1_IO;
333 ir->mask_keycode = 0x3f;
334 ir->mask_keyup = 0x80;
335 ir->polling = 1; /* ms */
336 break;
b639f9d2 337 case CX88_BOARD_KWORLD_LTV883:
02858eed 338 ir_codes = RC_MAP_PIXELVIEW;
b639f9d2
NS
339 ir->gpio_addr = MO_GP1_IO;
340 ir->mask_keycode = 0x1f;
341 ir->mask_keyup = 0x60;
342 ir->polling = 1; /* ms */
343 break;
a82decf6 344 case CX88_BOARD_ADSTECH_DVB_T_PCI:
02858eed 345 ir_codes = RC_MAP_ADSTECH_DVB_T_PCI;
41ef7c1e 346 ir->gpio_addr = MO_GP1_IO;
a82decf6 347 ir->mask_keycode = 0xbf;
41ef7c1e
MCC
348 ir->mask_keyup = 0x40;
349 ir->polling = 50; /* ms */
350 break;
351 case CX88_BOARD_MSI_TVANYWHERE_MASTER:
02858eed 352 ir_codes = RC_MAP_MSI_TVANYWHERE;
41ef7c1e
MCC
353 ir->gpio_addr = MO_GP1_IO;
354 ir->mask_keycode = 0x1f;
355 ir->mask_keyup = 0x40;
356 ir->polling = 1; /* ms */
a82decf6 357 break;
899ad11b 358 case CX88_BOARD_AVERTV_303:
565f4949 359 case CX88_BOARD_AVERTV_STUDIO_303:
02858eed 360 ir_codes = RC_MAP_AVERTV_303;
899ad11b
GG
361 ir->gpio_addr = MO_GP2_IO;
362 ir->mask_keycode = 0xfb;
363 ir->mask_keydown = 0x02;
364 ir->polling = 50; /* ms */
365 break;
d8d86225
IL
366 case CX88_BOARD_OMICOM_SS4_PCI:
367 case CX88_BOARD_SATTRADE_ST4200:
368 case CX88_BOARD_TBS_8920:
369 case CX88_BOARD_TBS_8910:
370 case CX88_BOARD_PROF_7300:
b699c271 371 case CX88_BOARD_PROF_7301:
d8d86225 372 case CX88_BOARD_PROF_6200:
02858eed 373 ir_codes = RC_MAP_TBS_NEC;
d8d86225
IL
374 ir->sampling = 0xff00; /* address */
375 break;
0cb73639 376 case CX88_BOARD_TEVII_S464:
d8d86225
IL
377 case CX88_BOARD_TEVII_S460:
378 case CX88_BOARD_TEVII_S420:
02858eed 379 ir_codes = RC_MAP_TEVII_NEC;
d8d86225
IL
380 ir->sampling = 0xff00; /* address */
381 break;
fc40b261 382 case CX88_BOARD_DNTV_LIVE_DVB_T_PRO:
02858eed 383 ir_codes = RC_MAP_DNTV_LIVE_DVBT_PRO;
715a2233 384 ir->sampling = 0xff00; /* address */
fc40b261 385 break;
d1009bd7 386 case CX88_BOARD_NORWOOD_MICRO:
02858eed 387 ir_codes = RC_MAP_NORWOOD;
d1009bd7
PN
388 ir->gpio_addr = MO_GP1_IO;
389 ir->mask_keycode = 0x0e;
390 ir->mask_keyup = 0x80;
391 ir->polling = 50; /* ms */
392 break;
be4f4519 393 case CX88_BOARD_NPGTECH_REALTV_TOP10FM:
02858eed 394 ir_codes = RC_MAP_NPGTECH;
715a2233 395 ir->gpio_addr = MO_GP0_IO;
680543c5 396 ir->mask_keycode = 0xfa;
715a2233 397 ir->polling = 50; /* ms */
680543c5 398 break;
9121106a 399 case CX88_BOARD_PINNACLE_PCTV_HD_800i:
02858eed 400 ir_codes = RC_MAP_PINNACLE_PCTV_HD;
715a2233 401 ir->sampling = 1;
9121106a 402 break;
ba928034 403 case CX88_BOARD_POWERCOLOR_REAL_ANGEL:
02858eed 404 ir_codes = RC_MAP_POWERCOLOR_REAL_ANGEL;
715a2233 405 ir->gpio_addr = MO_GP2_IO;
ba928034 406 ir->mask_keycode = 0x7e;
715a2233 407 ir->polling = 100; /* ms */
ba928034 408 break;
111ac84a
SI
409 case CX88_BOARD_TWINHAN_VP1027_DVBS:
410 ir_codes = RC_MAP_TWINHAN_VP1027_DVBS;
52b66144 411 rc_type = RC_TYPE_NEC;
111ac84a
SI
412 ir->sampling = 0xff00; /* address */
413 break;
1da177e4 414 }
b45009b0 415
2997137b 416 if (!ir_codes) {
b07b4783
DT
417 err = -ENODEV;
418 goto err_out_free;
1da177e4
LT
419 }
420
9dfe4e83
MCC
421 /*
422 * The usage of mask_keycode were very convenient, due to several
423 * reasons. Among others, the scancode tables were using the scancode
424 * as the index elements. So, the less bits it was used, the smaller
425 * the table were stored. After the input changes, the better is to use
426 * the full scancodes, since it allows replacing the IR remote by
427 * another one. Unfortunately, there are still some hardware, like
428 * Pixelview Ultra Pro, where only part of the scancode is sent via
429 * GPIO. So, there's no way to get the full scancode. Due to that,
430 * hardware_mask were introduced here: it represents those hardware
431 * that has such limits.
432 */
433 if (hardware_mask && !ir->mask_keycode)
434 ir->mask_keycode = hardware_mask;
435
1da177e4 436 /* init input device */
6a59d64c 437 snprintf(ir->name, sizeof(ir->name), "cx88 IR (%s)", core->board.name);
41ef7c1e 438 snprintf(ir->phys, sizeof(ir->phys), "pci-%s/ir0", pci_name(pci));
1da177e4 439
d8b4b582
DH
440 dev->input_name = ir->name;
441 dev->input_phys = ir->phys;
442 dev->input_id.bustype = BUS_PCI;
443 dev->input_id.version = 1;
1da177e4 444 if (pci->subsystem_vendor) {
d8b4b582
DH
445 dev->input_id.vendor = pci->subsystem_vendor;
446 dev->input_id.product = pci->subsystem_device;
1da177e4 447 } else {
d8b4b582
DH
448 dev->input_id.vendor = pci->vendor;
449 dev->input_id.product = pci->device;
1da177e4 450 }
d8b4b582
DH
451 dev->dev.parent = &pci->dev;
452 dev->map_name = ir_codes;
453 dev->driver_name = MODULE_NAME;
454 dev->priv = core;
455 dev->open = cx88_ir_open;
456 dev->close = cx88_ir_close;
457 dev->scanmask = hardware_mask;
1da177e4 458
2997137b 459 if (ir->sampling) {
d8b4b582
DH
460 dev->driver_type = RC_DRIVER_IR_RAW;
461 dev->timeout = 10 * 1000 * 1000; /* 10 ms */
462 } else {
463 dev->driver_type = RC_DRIVER_SCANCODE;
52b66144 464 dev->allowed_protos = rc_type;
d8b4b582
DH
465 }
466
467 ir->core = core;
468 core->ir = ir;
1da177e4
LT
469
470 /* all done */
d8b4b582 471 err = rc_register_device(dev);
b07b4783 472 if (err)
92f4fc10 473 goto err_out_free;
1da177e4
LT
474
475 return 0;
b07b4783 476
d8b4b582
DH
477err_out_free:
478 rc_free_device(dev);
92f4fc10 479 core->ir = NULL;
b07b4783
DT
480 kfree(ir);
481 return err;
1da177e4
LT
482}
483
484int cx88_ir_fini(struct cx88_core *core)
485{
486 struct cx88_IR *ir = core->ir;
487
488 /* skip detach on non attached boards */
489 if (NULL == ir)
490 return 0;
491
92f4fc10 492 cx88_ir_stop(core);
d8b4b582 493 rc_unregister_device(ir->dev);
1da177e4
LT
494 kfree(ir);
495
496 /* done */
497 core->ir = NULL;
498 return 0;
499}
500
501/* ---------------------------------------------------------------------- */
502
503void cx88_ir_irq(struct cx88_core *core)
504{
505 struct cx88_IR *ir = core->ir;
2997137b
DH
506 u32 samples;
507 unsigned todo, bits;
508 struct ir_raw_event ev;
1da177e4 509
2997137b 510 if (!ir || !ir->sampling)
1da177e4
LT
511 return;
512
2997137b
DH
513 /*
514 * Samples are stored in a 32 bit register, oldest sample in
515 * the msb. A set bit represents space and an unset bit
516 * represents a pulse.
517 */
1da177e4 518 samples = cx_read(MO_SAMPLE_IO);
e52e98a7 519
d8b4b582 520 if (samples == 0xff && ir->dev->idle)
2997137b 521 return;
e52e98a7 522
2997137b
DH
523 init_ir_raw_event(&ev);
524 for (todo = 32; todo > 0; todo -= bits) {
525 ev.pulse = samples & 0x80000000 ? false : true;
526 bits = min(todo, 32U - fls(ev.pulse ? samples : ~samples));
2a164d02 527 ev.duration = (bits * (NSEC_PER_SEC / 1000)) / ir_samplerate;
d8b4b582 528 ir_raw_event_store_with_filter(ir->dev, &ev);
2997137b 529 samples <<= bits;
1da177e4 530 }
d8b4b582 531 ir_raw_event_handle(ir->dev);
1da177e4
LT
532}
533
1c0eb0ff
MCC
534static int get_key_pvr2000(struct IR_i2c *ir, u32 *ir_key, u32 *ir_raw)
535{
536 int flags, code;
537
538 /* poll IR chip */
539 flags = i2c_smbus_read_byte_data(ir->c, 0x10);
540 if (flags < 0) {
541 dprintk("read error\n");
542 return 0;
543 }
544 /* key pressed ? */
545 if (0 == (flags & 0x80))
546 return 0;
547
548 /* read actual key code */
549 code = i2c_smbus_read_byte_data(ir->c, 0x00);
550 if (code < 0) {
551 dprintk("read error\n");
552 return 0;
553 }
554
555 dprintk("IR Key/Flags: (0x%02x/0x%02x)\n",
556 code & 0xff, flags & 0xff);
557
558 *ir_key = code & 0xff;
559 *ir_raw = code;
560 return 1;
561}
562
44243fc2
MCC
563void cx88_i2c_init_ir(struct cx88_core *core)
564{
565 struct i2c_board_info info;
1c0eb0ff 566 const unsigned short default_addr_list[] = {
44243fc2
MCC
567 0x18, 0x6b, 0x71,
568 I2C_CLIENT_END
569 };
1c0eb0ff
MCC
570 const unsigned short pvr2000_addr_list[] = {
571 0x18, 0x1a,
572 I2C_CLIENT_END
573 };
574 const unsigned short *addr_list = default_addr_list;
44243fc2
MCC
575 const unsigned short *addrp;
576 /* Instantiate the IR receiver device, if present */
577 if (0 != core->i2c_rc)
578 return;
579
580 memset(&info, 0, sizeof(struct i2c_board_info));
581 strlcpy(info.type, "ir_video", I2C_NAME_SIZE);
582
1c0eb0ff
MCC
583 switch (core->boardnr) {
584 case CX88_BOARD_LEADTEK_PVR2000:
585 addr_list = pvr2000_addr_list;
586 core->init_data.name = "cx88 Leadtek PVR 2000 remote";
587 core->init_data.type = RC_TYPE_UNKNOWN;
588 core->init_data.get_key = get_key_pvr2000;
589 core->init_data.ir_codes = RC_MAP_EMPTY;
590 break;
591 }
592
44243fc2
MCC
593 /*
594 * We can't call i2c_new_probed_device() because it uses
595 * quick writes for probing and at least some RC receiver
596 * devices only reply to reads.
597 * Also, Hauppauge XVR needs to be specified, as address 0x71
598 * conflicts with another remote type used with saa7134
599 */
600 for (addrp = addr_list; *addrp != I2C_CLIENT_END; addrp++) {
601 info.platform_data = NULL;
602 memset(&core->init_data, 0, sizeof(core->init_data));
603
604 if (*addrp == 0x71) {
605 /* Hauppauge XVR */
606 core->init_data.name = "cx88 Hauppauge XVR remote";
af86ce79 607 core->init_data.ir_codes = RC_MAP_HAUPPAUGE;
52b66144 608 core->init_data.type = RC_TYPE_RC5;
44243fc2
MCC
609 core->init_data.internal_get_key_func = IR_KBD_GET_KEY_HAUP_XVR;
610
611 info.platform_data = &core->init_data;
612 }
613 if (i2c_smbus_xfer(&core->i2c_adap, *addrp, 0,
614 I2C_SMBUS_READ, 0,
615 I2C_SMBUS_QUICK, NULL) >= 0) {
616 info.addr = *addrp;
617 i2c_new_device(&core->i2c_adap, &info);
618 break;
619 }
620 }
621}
622
1da177e4
LT
623/* ---------------------------------------------------------------------- */
624
625MODULE_AUTHOR("Gerd Knorr, Pavel Machek, Chris Pascoe");
626MODULE_DESCRIPTION("input driver for cx88 GPIO-based IR remote controls");
627MODULE_LICENSE("GPL");