3 * Device driver for GPIO attached remote control interfaces
4 * on Conexant 2388x based TV/DVB cards.
6 * Copyright (c) 2003 Pavel Machek
7 * Copyright (c) 2004 Gerd Knorr
8 * Copyright (c) 2004, 2005 Chris Pascoe
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.
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.
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
25 #include <linux/init.h>
26 #include <linux/hrtimer.h>
27 #include <linux/input.h>
28 #include <linux/pci.h>
29 #include <linux/module.h>
32 #include <media/ir-common.h>
34 /* ---------------------------------------------------------------------- */
37 struct cx88_core
*core
;
38 struct input_dev
*input
;
39 struct ir_input_state ir
;
43 /* sample from gpio pin 16 */
47 unsigned long release
;
49 /* poll external decoder */
60 module_param(ir_debug
, int, 0644); /* debug level [IR] */
61 MODULE_PARM_DESC(ir_debug
, "enable debug messages [IR]");
63 #define ir_dprintk(fmt, arg...) if (ir_debug) \
64 printk(KERN_DEBUG "%s IR: " fmt , ir->core->name , ##arg)
66 /* ---------------------------------------------------------------------- */
68 static void cx88_ir_handle_key(struct cx88_IR
*ir
)
70 struct cx88_core
*core
= ir
->core
;
71 u32 gpio
, data
, auxgpio
;
74 gpio
= cx_read(ir
->gpio_addr
);
75 switch (core
->boardnr
) {
76 case CX88_BOARD_NPGTECH_REALTV_TOP10FM
:
77 /* This board apparently uses a combination of 2 GPIO
78 to represent the keys. Additionally, the second GPIO
79 can be used for parity.
84 gpio = 0x758, auxgpio = 0xe5 or 0xf5
86 gpio = 0x758, auxgpio = 0xed or 0xfd
89 auxgpio
= cx_read(MO_GP1_IO
);
90 /* Take out the parity part */
91 gpio
=(gpio
& 0x7fd) + (auxgpio
& 0xef);
93 case CX88_BOARD_WINFAST_DTV1000
:
94 case CX88_BOARD_WINFAST_DTV1800H
:
95 case CX88_BOARD_WINFAST_TV2000_XP_GLOBAL
:
96 gpio
= (gpio
& 0x6ff) | ((cx_read(MO_GP1_IO
) << 8) & 0x900);
103 if (ir
->last_gpio
== auxgpio
)
105 ir
->last_gpio
= auxgpio
;
109 data
= ir_extract_bits(gpio
, ir
->mask_keycode
);
110 ir_dprintk("irq gpio=0x%x code=%d | %s%s%s\n",
112 ir
->polling
? "poll" : "irq",
113 (gpio
& ir
->mask_keydown
) ? " down" : "",
114 (gpio
& ir
->mask_keyup
) ? " up" : "");
116 if (ir
->core
->boardnr
== CX88_BOARD_NORWOOD_MICRO
) {
117 u32 gpio_key
= cx_read(MO_GP0_IO
);
119 data
= (data
<< 4) | ((gpio_key
& 0xf0) >> 4);
121 ir_input_keydown(ir
->input
, &ir
->ir
, data
);
122 ir_input_nokey(ir
->input
, &ir
->ir
);
124 } else if (ir
->mask_keydown
) {
125 /* bit set on keydown */
126 if (gpio
& ir
->mask_keydown
) {
127 ir_input_keydown(ir
->input
, &ir
->ir
, data
);
129 ir_input_nokey(ir
->input
, &ir
->ir
);
132 } else if (ir
->mask_keyup
) {
133 /* bit cleared on keydown */
134 if (0 == (gpio
& ir
->mask_keyup
)) {
135 ir_input_keydown(ir
->input
, &ir
->ir
, data
);
137 ir_input_nokey(ir
->input
, &ir
->ir
);
141 /* can't distinguish keydown/up :-/ */
142 ir_input_keydown(ir
->input
, &ir
->ir
, data
);
143 ir_input_nokey(ir
->input
, &ir
->ir
);
147 static enum hrtimer_restart
cx88_ir_work(struct hrtimer
*timer
)
149 unsigned long missed
;
150 struct cx88_IR
*ir
= container_of(timer
, struct cx88_IR
, timer
);
152 cx88_ir_handle_key(ir
);
153 missed
= hrtimer_forward_now(&ir
->timer
,
154 ktime_set(0, ir
->polling
* 1000000));
156 ir_dprintk("Missed ticks %ld\n", missed
- 1);
158 return HRTIMER_RESTART
;
161 void cx88_ir_start(struct cx88_core
*core
, struct cx88_IR
*ir
)
164 hrtimer_init(&ir
->timer
, CLOCK_MONOTONIC
, HRTIMER_MODE_REL
);
165 ir
->timer
.function
= cx88_ir_work
;
166 hrtimer_start(&ir
->timer
,
167 ktime_set(0, ir
->polling
* 1000000),
171 core
->pci_irqmask
|= PCI_INT_IR_SMPINT
;
172 cx_write(MO_DDS_IO
, 0xa80a80); /* 4 kHz sample rate */
173 cx_write(MO_DDSCFG_IO
, 0x5); /* enable */
177 void cx88_ir_stop(struct cx88_core
*core
, struct cx88_IR
*ir
)
180 cx_write(MO_DDSCFG_IO
, 0x0);
181 core
->pci_irqmask
&= ~PCI_INT_IR_SMPINT
;
185 hrtimer_cancel(&ir
->timer
);
188 /* ---------------------------------------------------------------------- */
190 int cx88_ir_init(struct cx88_core
*core
, struct pci_dev
*pci
)
193 struct input_dev
*input_dev
;
194 struct ir_scancode_table
*ir_codes
= NULL
;
195 u64 ir_type
= IR_TYPE_OTHER
;
198 ir
= kzalloc(sizeof(*ir
), GFP_KERNEL
);
199 input_dev
= input_allocate_device();
200 if (!ir
|| !input_dev
)
203 ir
->input
= input_dev
;
205 /* detect & configure */
206 switch (core
->boardnr
) {
207 case CX88_BOARD_DNTV_LIVE_DVB_T
:
208 case CX88_BOARD_KWORLD_DVB_T
:
209 case CX88_BOARD_KWORLD_DVB_T_CX22702
:
210 ir_codes
= &ir_codes_dntv_live_dvb_t_table
;
211 ir
->gpio_addr
= MO_GP1_IO
;
212 ir
->mask_keycode
= 0x1f;
213 ir
->mask_keyup
= 0x60;
214 ir
->polling
= 50; /* ms */
216 case CX88_BOARD_TERRATEC_CINERGY_1400_DVB_T1
:
217 ir_codes
= &ir_codes_cinergy_1400_table
;
218 ir_type
= IR_TYPE_PD
;
219 ir
->sampling
= 0xeb04; /* address */
221 case CX88_BOARD_HAUPPAUGE
:
222 case CX88_BOARD_HAUPPAUGE_DVB_T1
:
223 case CX88_BOARD_HAUPPAUGE_NOVASE2_S1
:
224 case CX88_BOARD_HAUPPAUGE_NOVASPLUS_S1
:
225 case CX88_BOARD_HAUPPAUGE_HVR1100
:
226 case CX88_BOARD_HAUPPAUGE_HVR3000
:
227 case CX88_BOARD_HAUPPAUGE_HVR4000
:
228 case CX88_BOARD_HAUPPAUGE_HVR4000LITE
:
229 case CX88_BOARD_PCHDTV_HD3000
:
230 case CX88_BOARD_PCHDTV_HD5500
:
231 case CX88_BOARD_HAUPPAUGE_IRONLY
:
232 ir_codes
= &ir_codes_hauppauge_new_table
;
233 ir_type
= IR_TYPE_RC5
;
236 case CX88_BOARD_WINFAST_DTV2000H
:
237 case CX88_BOARD_WINFAST_DTV2000H_J
:
238 case CX88_BOARD_WINFAST_DTV1800H
:
239 ir_codes
= &ir_codes_winfast_table
;
240 ir
->gpio_addr
= MO_GP0_IO
;
241 ir
->mask_keycode
= 0x8f8;
242 ir
->mask_keyup
= 0x100;
243 ir
->polling
= 50; /* ms */
245 case CX88_BOARD_WINFAST2000XP_EXPERT
:
246 case CX88_BOARD_WINFAST_DTV1000
:
247 case CX88_BOARD_WINFAST_TV2000_XP_GLOBAL
:
248 ir_codes
= &ir_codes_winfast_table
;
249 ir
->gpio_addr
= MO_GP0_IO
;
250 ir
->mask_keycode
= 0x8f8;
251 ir
->mask_keyup
= 0x100;
252 ir
->polling
= 1; /* ms */
254 case CX88_BOARD_IODATA_GVBCTV7E
:
255 ir_codes
= &ir_codes_iodata_bctv7e_table
;
256 ir
->gpio_addr
= MO_GP0_IO
;
257 ir
->mask_keycode
= 0xfd;
258 ir
->mask_keydown
= 0x02;
259 ir
->polling
= 5; /* ms */
261 case CX88_BOARD_PROLINK_PLAYTVPVR
:
262 case CX88_BOARD_PIXELVIEW_PLAYTV_ULTRA_PRO
:
263 ir_codes
= &ir_codes_pixelview_table
;
264 ir
->gpio_addr
= MO_GP1_IO
;
265 ir
->mask_keycode
= 0x1f;
266 ir
->mask_keyup
= 0x80;
267 ir
->polling
= 1; /* ms */
269 case CX88_BOARD_PROLINK_PV_8000GT
:
270 case CX88_BOARD_PROLINK_PV_GLOBAL_XTREME
:
271 ir_codes
= &ir_codes_pixelview_new_table
;
272 ir
->gpio_addr
= MO_GP1_IO
;
273 ir
->mask_keycode
= 0x3f;
274 ir
->mask_keyup
= 0x80;
275 ir
->polling
= 1; /* ms */
277 case CX88_BOARD_KWORLD_LTV883
:
278 ir_codes
= &ir_codes_pixelview_table
;
279 ir
->gpio_addr
= MO_GP1_IO
;
280 ir
->mask_keycode
= 0x1f;
281 ir
->mask_keyup
= 0x60;
282 ir
->polling
= 1; /* ms */
284 case CX88_BOARD_ADSTECH_DVB_T_PCI
:
285 ir_codes
= &ir_codes_adstech_dvb_t_pci_table
;
286 ir
->gpio_addr
= MO_GP1_IO
;
287 ir
->mask_keycode
= 0xbf;
288 ir
->mask_keyup
= 0x40;
289 ir
->polling
= 50; /* ms */
291 case CX88_BOARD_MSI_TVANYWHERE_MASTER
:
292 ir_codes
= &ir_codes_msi_tvanywhere_table
;
293 ir
->gpio_addr
= MO_GP1_IO
;
294 ir
->mask_keycode
= 0x1f;
295 ir
->mask_keyup
= 0x40;
296 ir
->polling
= 1; /* ms */
298 case CX88_BOARD_AVERTV_303
:
299 case CX88_BOARD_AVERTV_STUDIO_303
:
300 ir_codes
= &ir_codes_avertv_303_table
;
301 ir
->gpio_addr
= MO_GP2_IO
;
302 ir
->mask_keycode
= 0xfb;
303 ir
->mask_keydown
= 0x02;
304 ir
->polling
= 50; /* ms */
306 case CX88_BOARD_OMICOM_SS4_PCI
:
307 case CX88_BOARD_SATTRADE_ST4200
:
308 case CX88_BOARD_TBS_8920
:
309 case CX88_BOARD_TBS_8910
:
310 case CX88_BOARD_PROF_7300
:
311 case CX88_BOARD_PROF_7301
:
312 case CX88_BOARD_PROF_6200
:
313 ir_codes
= &ir_codes_tbs_nec_table
;
314 ir_type
= IR_TYPE_PD
;
315 ir
->sampling
= 0xff00; /* address */
317 case CX88_BOARD_TEVII_S460
:
318 case CX88_BOARD_TEVII_S420
:
319 ir_codes
= &ir_codes_tevii_nec_table
;
320 ir_type
= IR_TYPE_PD
;
321 ir
->sampling
= 0xff00; /* address */
323 case CX88_BOARD_DNTV_LIVE_DVB_T_PRO
:
324 ir_codes
= &ir_codes_dntv_live_dvbt_pro_table
;
325 ir_type
= IR_TYPE_PD
;
326 ir
->sampling
= 0xff00; /* address */
328 case CX88_BOARD_NORWOOD_MICRO
:
329 ir_codes
= &ir_codes_norwood_table
;
330 ir
->gpio_addr
= MO_GP1_IO
;
331 ir
->mask_keycode
= 0x0e;
332 ir
->mask_keyup
= 0x80;
333 ir
->polling
= 50; /* ms */
335 case CX88_BOARD_NPGTECH_REALTV_TOP10FM
:
336 ir_codes
= &ir_codes_npgtech_table
;
337 ir
->gpio_addr
= MO_GP0_IO
;
338 ir
->mask_keycode
= 0xfa;
339 ir
->polling
= 50; /* ms */
341 case CX88_BOARD_PINNACLE_PCTV_HD_800i
:
342 ir_codes
= &ir_codes_pinnacle_pctv_hd_table
;
343 ir_type
= IR_TYPE_RC5
;
346 case CX88_BOARD_POWERCOLOR_REAL_ANGEL
:
347 ir_codes
= &ir_codes_powercolor_real_angel_table
;
348 ir
->gpio_addr
= MO_GP2_IO
;
349 ir
->mask_keycode
= 0x7e;
350 ir
->polling
= 100; /* ms */
354 if (NULL
== ir_codes
) {
359 /* init input device */
360 snprintf(ir
->name
, sizeof(ir
->name
), "cx88 IR (%s)", core
->board
.name
);
361 snprintf(ir
->phys
, sizeof(ir
->phys
), "pci-%s/ir0", pci_name(pci
));
363 err
= ir_input_init(input_dev
, &ir
->ir
, ir_type
);
367 input_dev
->name
= ir
->name
;
368 input_dev
->phys
= ir
->phys
;
369 input_dev
->id
.bustype
= BUS_PCI
;
370 input_dev
->id
.version
= 1;
371 if (pci
->subsystem_vendor
) {
372 input_dev
->id
.vendor
= pci
->subsystem_vendor
;
373 input_dev
->id
.product
= pci
->subsystem_device
;
375 input_dev
->id
.vendor
= pci
->vendor
;
376 input_dev
->id
.product
= pci
->device
;
378 input_dev
->dev
.parent
= &pci
->dev
;
379 /* record handles to ourself */
383 cx88_ir_start(core
, ir
);
386 err
= ir_input_register(ir
->input
, ir_codes
, NULL
);
393 cx88_ir_stop(core
, ir
);
400 int cx88_ir_fini(struct cx88_core
*core
)
402 struct cx88_IR
*ir
= core
->ir
;
404 /* skip detach on non attached boards */
408 cx88_ir_stop(core
, ir
);
409 ir_input_unregister(ir
->input
);
417 /* ---------------------------------------------------------------------- */
419 void cx88_ir_irq(struct cx88_core
*core
)
421 struct cx88_IR
*ir
= core
->ir
;
423 int i
, start
, range
, toggle
, dev
, code
;
430 samples
= cx_read(MO_SAMPLE_IO
);
431 if (0 != samples
&& 0xffffffff != samples
) {
432 /* record sample data */
433 if (ir
->scount
< ARRAY_SIZE(ir
->samples
))
434 ir
->samples
[ir
->scount
++] = samples
;
438 /* nothing to sample */
439 if (ir
->ir
.keypressed
&& time_after(jiffies
, ir
->release
))
440 ir_input_nokey(ir
->input
, &ir
->ir
);
444 /* have a complete sample */
445 if (ir
->scount
< ARRAY_SIZE(ir
->samples
))
446 ir
->samples
[ir
->scount
++] = samples
;
447 for (i
= 0; i
< ir
->scount
; i
++)
448 ir
->samples
[i
] = ~ir
->samples
[i
];
450 ir_dump_samples(ir
->samples
, ir
->scount
);
453 switch (core
->boardnr
) {
454 case CX88_BOARD_TEVII_S460
:
455 case CX88_BOARD_TEVII_S420
:
456 case CX88_BOARD_TERRATEC_CINERGY_1400_DVB_T1
:
457 case CX88_BOARD_DNTV_LIVE_DVB_T_PRO
:
458 case CX88_BOARD_OMICOM_SS4_PCI
:
459 case CX88_BOARD_SATTRADE_ST4200
:
460 case CX88_BOARD_TBS_8920
:
461 case CX88_BOARD_TBS_8910
:
462 case CX88_BOARD_PROF_7300
:
463 case CX88_BOARD_PROF_7301
:
464 case CX88_BOARD_PROF_6200
:
465 ircode
= ir_decode_pulsedistance(ir
->samples
, ir
->scount
, 1, 4);
467 if (ircode
== 0xffffffff) { /* decoding error */
468 ir_dprintk("pulse distance decoding error\n");
472 ir_dprintk("pulse distance decoded: %x\n", ircode
);
474 if (ircode
== 0) { /* key still pressed */
475 ir_dprintk("pulse distance decoded repeat code\n");
476 ir
->release
= jiffies
+ msecs_to_jiffies(120);
480 if ((ircode
& 0xffff) != (ir
->sampling
& 0xffff)) { /* wrong address */
481 ir_dprintk("pulse distance decoded wrong address\n");
485 if (((~ircode
>> 24) & 0xff) != ((ircode
>> 16) & 0xff)) { /* wrong checksum */
486 ir_dprintk("pulse distance decoded wrong check sum\n");
490 ir_dprintk("Key Code: %x\n", (ircode
>> 16) & 0x7f);
492 ir_input_keydown(ir
->input
, &ir
->ir
, (ircode
>> 16) & 0x7f);
493 ir
->release
= jiffies
+ msecs_to_jiffies(120);
495 case CX88_BOARD_HAUPPAUGE
:
496 case CX88_BOARD_HAUPPAUGE_DVB_T1
:
497 case CX88_BOARD_HAUPPAUGE_NOVASE2_S1
:
498 case CX88_BOARD_HAUPPAUGE_NOVASPLUS_S1
:
499 case CX88_BOARD_HAUPPAUGE_HVR1100
:
500 case CX88_BOARD_HAUPPAUGE_HVR3000
:
501 case CX88_BOARD_HAUPPAUGE_HVR4000
:
502 case CX88_BOARD_HAUPPAUGE_HVR4000LITE
:
503 case CX88_BOARD_PCHDTV_HD3000
:
504 case CX88_BOARD_PCHDTV_HD5500
:
505 case CX88_BOARD_HAUPPAUGE_IRONLY
:
506 ircode
= ir_decode_biphase(ir
->samples
, ir
->scount
, 5, 7);
507 ir_dprintk("biphase decoded: %x\n", ircode
);
509 * RC5 has an extension bit which adds a new range
510 * of available codes, this is detected here. Also
511 * hauppauge remotes (black/silver) always use
512 * specific device ids. If we do not filter the
513 * device ids then messages destined for devices
514 * such as TVs (id=0) will get through to the
515 * device causing mis-fired events.
517 /* split rc5 data block ... */
518 start
= (ircode
& 0x2000) >> 13;
519 range
= (ircode
& 0x1000) >> 12;
520 toggle
= (ircode
& 0x0800) >> 11;
521 dev
= (ircode
& 0x07c0) >> 6;
522 code
= (ircode
& 0x003f) | ((range
<< 6) ^ 0x0040);
526 if ( dev
!= 0x1e && dev
!= 0x1f )
527 /* not a hauppauge remote */
529 ir_input_keydown(ir
->input
, &ir
->ir
, code
);
530 ir
->release
= jiffies
+ msecs_to_jiffies(120);
532 case CX88_BOARD_PINNACLE_PCTV_HD_800i
:
533 ircode
= ir_decode_biphase(ir
->samples
, ir
->scount
, 5, 7);
534 ir_dprintk("biphase decoded: %x\n", ircode
);
535 if ((ircode
& 0xfffff000) != 0x3000)
537 ir_input_keydown(ir
->input
, &ir
->ir
, ircode
& 0x3f);
538 ir
->release
= jiffies
+ msecs_to_jiffies(120);
546 /* ---------------------------------------------------------------------- */
548 MODULE_AUTHOR("Gerd Knorr, Pavel Machek, Chris Pascoe");
549 MODULE_DESCRIPTION("input driver for cx88 GPIO-based IR remote controls");
550 MODULE_LICENSE("GPL");