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