blob: ddfae9f80adeb694ec9e9125e7bb9e84fca9bd52 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 *
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
Chris Pascoefc40b262006-01-09 15:25:35 -02008 * Copyright (c) 2004, 2005 Chris Pascoe
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 *
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>
26#include <linux/delay.h>
27#include <linux/input.h>
28#include <linux/pci.h>
29#include <linux/module.h>
30#include <linux/moduleparam.h>
31
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include "cx88.h"
Mauro Carvalho Chehabd21838d2006-01-09 15:25:21 -020033#include <media/ir-common.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070034
35/* ---------------------------------------------------------------------- */
36
Linus Torvalds1da177e2005-04-16 15:20:36 -070037struct cx88_IR {
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -070038 struct cx88_core *core;
Dmitry Torokhovb7df3912005-09-15 02:01:53 -050039 struct input_dev *input;
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -070040 struct ir_input_state ir;
41 char name[32];
42 char phys[32];
Linus Torvalds1da177e2005-04-16 15:20:36 -070043
44 /* sample from gpio pin 16 */
Chris Pascoefc40b262006-01-09 15:25:35 -020045 u32 sampling;
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -070046 u32 samples[16];
47 int scount;
48 unsigned long release;
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
50 /* poll external decoder */
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -070051 int polling;
52 struct work_struct work;
53 struct timer_list timer;
54 u32 gpio_addr;
55 u32 last_gpio;
56 u32 mask_keycode;
57 u32 mask_keydown;
58 u32 mask_keyup;
Linus Torvalds1da177e2005-04-16 15:20:36 -070059};
60
61static int ir_debug = 0;
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -070062module_param(ir_debug, int, 0644); /* debug level [IR] */
Linus Torvalds1da177e2005-04-16 15:20:36 -070063MODULE_PARM_DESC(ir_debug, "enable debug messages [IR]");
64
65#define ir_dprintk(fmt, arg...) if (ir_debug) \
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -070066 printk(KERN_DEBUG "%s IR: " fmt , ir->core->name , ##arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -070067
68/* ---------------------------------------------------------------------- */
69
70static void cx88_ir_handle_key(struct cx88_IR *ir)
71{
72 struct cx88_core *core = ir->core;
Ricardo Cerqueira680543c2006-05-22 07:44:02 -030073 u32 gpio, data, auxgpio;
Linus Torvalds1da177e2005-04-16 15:20:36 -070074
75 /* read gpio value */
76 gpio = cx_read(ir->gpio_addr);
Ricardo Cerqueirabe4f4512006-06-08 17:36:17 -030077 if (core->board == CX88_BOARD_NPGTECH_REALTV_TOP10FM) {
Ricardo Cerqueira680543c2006-05-22 07:44:02 -030078 /* This board apparently uses a combination of 2 GPIO
79 to represent the keys. Additionally, the second GPIO
80 can be used for parity.
81
82 Example:
83
84 for key "5"
85 gpio = 0x758, auxgpio = 0xe5 or 0xf5
86 for key "Power"
87 gpio = 0x758, auxgpio = 0xed or 0xfd
88 */
89
90 auxgpio = cx_read(MO_GP1_IO);
91 /* Take out the parity part */
Ricardo Cerqueiraa62c61d2006-07-17 16:34:27 -030092 gpio=(gpio & 0x7fd) + (auxgpio & 0xef);
Ricardo Cerqueira680543c2006-05-22 07:44:02 -030093 } else
94 auxgpio = gpio;
95
Linus Torvalds1da177e2005-04-16 15:20:36 -070096 if (ir->polling) {
Ricardo Cerqueira680543c2006-05-22 07:44:02 -030097 if (ir->last_gpio == auxgpio)
Linus Torvalds1da177e2005-04-16 15:20:36 -070098 return;
Ricardo Cerqueira680543c2006-05-22 07:44:02 -030099 ir->last_gpio = auxgpio;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100 }
101
102 /* extract data */
103 data = ir_extract_bits(gpio, ir->mask_keycode);
104 ir_dprintk("irq gpio=0x%x code=%d | %s%s%s\n",
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -0700105 gpio, data,
106 ir->polling ? "poll" : "irq",
107 (gpio & ir->mask_keydown) ? " down" : "",
108 (gpio & ir->mask_keyup) ? " up" : "");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109
Peter Naullsd1009bd2006-08-08 09:10:05 -0300110 if (ir->core->board == CX88_BOARD_NORWOOD_MICRO) {
111 u32 gpio_key = cx_read(MO_GP0_IO);
112
113 data = (data << 4) | ((gpio_key & 0xf0) >> 4);
114
115 ir_input_keydown(ir->input, &ir->ir, data, data);
116 ir_input_nokey(ir->input, &ir->ir);
117
118 } else if (ir->mask_keydown) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 /* bit set on keydown */
120 if (gpio & ir->mask_keydown) {
Dmitry Torokhovb7df3912005-09-15 02:01:53 -0500121 ir_input_keydown(ir->input, &ir->ir, data, data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122 } else {
Dmitry Torokhovb7df3912005-09-15 02:01:53 -0500123 ir_input_nokey(ir->input, &ir->ir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124 }
125
126 } else if (ir->mask_keyup) {
127 /* bit cleared on keydown */
128 if (0 == (gpio & ir->mask_keyup)) {
Dmitry Torokhovb7df3912005-09-15 02:01:53 -0500129 ir_input_keydown(ir->input, &ir->ir, data, data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130 } else {
Dmitry Torokhovb7df3912005-09-15 02:01:53 -0500131 ir_input_nokey(ir->input, &ir->ir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 }
133
134 } else {
135 /* can't distinguish keydown/up :-/ */
Dmitry Torokhovb7df3912005-09-15 02:01:53 -0500136 ir_input_keydown(ir->input, &ir->ir, data, data);
137 ir_input_nokey(ir->input, &ir->ir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 }
139}
140
141static void ir_timer(unsigned long data)
142{
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -0700143 struct cx88_IR *ir = (struct cx88_IR *)data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144
145 schedule_work(&ir->work);
146}
147
David Howellsc4028952006-11-22 14:57:56 +0000148static void cx88_ir_work(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149{
David Howellsc4028952006-11-22 14:57:56 +0000150 struct cx88_IR *ir = container_of(work, struct cx88_IR, work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151
152 cx88_ir_handle_key(ir);
Dmitry Torokhov749823a2007-05-21 11:48:11 -0300153 mod_timer(&ir->timer, jiffies + msecs_to_jiffies(ir->polling));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154}
155
Dmitry Torokhovb07b4782006-11-20 10:23:04 -0300156static void cx88_ir_start(struct cx88_core *core, struct cx88_IR *ir)
157{
158 if (ir->polling) {
Dmitry Torokhov749823a2007-05-21 11:48:11 -0300159 setup_timer(&ir->timer, ir_timer, (unsigned long)ir);
Mauro Carvalho Chehab67952e82006-12-10 00:14:21 -0200160 INIT_WORK(&ir->work, cx88_ir_work);
Dmitry Torokhovb07b4782006-11-20 10:23:04 -0300161 schedule_work(&ir->work);
162 }
163 if (ir->sampling) {
164 core->pci_irqmask |= (1 << 18); /* IR_SMP_INT */
165 cx_write(MO_DDS_IO, 0xa80a80); /* 4 kHz sample rate */
166 cx_write(MO_DDSCFG_IO, 0x5); /* enable */
167 }
168}
169
170static void cx88_ir_stop(struct cx88_core *core, struct cx88_IR *ir)
171{
172 if (ir->sampling) {
173 cx_write(MO_DDSCFG_IO, 0x0);
174 core->pci_irqmask &= ~(1 << 18);
175 }
176
177 if (ir->polling) {
178 del_timer_sync(&ir->timer);
179 flush_scheduled_work();
180 }
181}
182
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183/* ---------------------------------------------------------------------- */
184
185int cx88_ir_init(struct cx88_core *core, struct pci_dev *pci)
186{
187 struct cx88_IR *ir;
Dmitry Torokhovb7df3912005-09-15 02:01:53 -0500188 struct input_dev *input_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 IR_KEYTAB_TYPE *ir_codes = NULL;
190 int ir_type = IR_TYPE_OTHER;
Dmitry Torokhovb07b4782006-11-20 10:23:04 -0300191 int err = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192
Dmitry Torokhovb7df3912005-09-15 02:01:53 -0500193 ir = kzalloc(sizeof(*ir), GFP_KERNEL);
194 input_dev = input_allocate_device();
Dmitry Torokhovb07b4782006-11-20 10:23:04 -0300195 if (!ir || !input_dev)
196 goto err_out_free;
Dmitry Torokhovb7df3912005-09-15 02:01:53 -0500197
198 ir->input = input_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199
200 /* detect & configure */
201 switch (core->board) {
202 case CX88_BOARD_DNTV_LIVE_DVB_T:
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -0700203 case CX88_BOARD_KWORLD_DVB_T:
Marco Manenti28ecc442006-02-07 06:45:33 -0200204 case CX88_BOARD_KWORLD_DVB_T_CX22702:
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -0700205 ir_codes = ir_codes_dntv_live_dvb_t;
206 ir->gpio_addr = MO_GP1_IO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 ir->mask_keycode = 0x1f;
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -0700208 ir->mask_keyup = 0x60;
209 ir->polling = 50; /* ms */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 break;
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -0700211 case CX88_BOARD_TERRATEC_CINERGY_1400_DVB_T1:
212 ir_codes = ir_codes_cinergy_1400;
213 ir_type = IR_TYPE_PD;
Chris Pascoefc40b262006-01-09 15:25:35 -0200214 ir->sampling = 0xeb04; /* address */
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -0700215 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 case CX88_BOARD_HAUPPAUGE:
217 case CX88_BOARD_HAUPPAUGE_DVB_T1:
Steven Tothfb56cb62006-01-09 15:25:02 -0200218 case CX88_BOARD_HAUPPAUGE_NOVASE2_S1:
219 case CX88_BOARD_HAUPPAUGE_NOVASPLUS_S1:
Steven Toth611900c2006-01-09 15:25:12 -0200220 case CX88_BOARD_HAUPPAUGE_HVR1100:
Steven Tothaa481a62006-09-14 15:41:13 -0300221 case CX88_BOARD_HAUPPAUGE_HVR1300:
Steven Toth76dc82a2006-09-30 00:43:58 -0300222 case CX88_BOARD_HAUPPAUGE_HVR3000:
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -0700223 ir_codes = ir_codes_hauppauge_new;
224 ir_type = IR_TYPE_RC5;
225 ir->sampling = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 break;
Malcolm Valentine2de873e2006-05-29 13:56:24 -0300227 case CX88_BOARD_WINFAST_DTV2000H:
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -0700228 ir_codes = ir_codes_winfast;
229 ir->gpio_addr = MO_GP0_IO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 ir->mask_keycode = 0x8f8;
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -0700231 ir->mask_keyup = 0x100;
Malcolm Valentine2de873e2006-05-29 13:56:24 -0300232 ir->polling = 50; /* ms */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 break;
Hermann Pittonff97d932006-11-03 10:45:52 -0300234 case CX88_BOARD_WINFAST2000XP_EXPERT:
235 ir_codes = ir_codes_winfast;
236 ir->gpio_addr = MO_GP0_IO;
237 ir->mask_keycode = 0x8f8;
238 ir->mask_keyup = 0x100;
239 ir->polling = 1; /* ms */
240 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 case CX88_BOARD_IODATA_GVBCTV7E:
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -0700242 ir_codes = ir_codes_iodata_bctv7e;
243 ir->gpio_addr = MO_GP0_IO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 ir->mask_keycode = 0xfd;
245 ir->mask_keydown = 0x02;
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -0700246 ir->polling = 5; /* ms */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 break;
Hermann Pittonff97d932006-11-03 10:45:52 -0300248 case CX88_BOARD_PROLINK_PLAYTVPVR:
Manuel Capinha239df2e2005-06-23 22:04:53 -0700249 case CX88_BOARD_PIXELVIEW_PLAYTV_ULTRA_PRO:
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -0700250 ir_codes = ir_codes_pixelview;
251 ir->gpio_addr = MO_GP1_IO;
Manuel Capinha239df2e2005-06-23 22:04:53 -0700252 ir->mask_keycode = 0x1f;
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -0700253 ir->mask_keyup = 0x80;
254 ir->polling = 1; /* ms */
Manuel Capinha239df2e2005-06-23 22:04:53 -0700255 break;
Nickolay V. Shmyrevb639f9d2006-01-23 09:44:10 -0200256 case CX88_BOARD_KWORLD_LTV883:
257 ir_codes = ir_codes_pixelview;
258 ir->gpio_addr = MO_GP1_IO;
259 ir->mask_keycode = 0x1f;
260 ir->mask_keyup = 0x60;
261 ir->polling = 1; /* ms */
262 break;
Mauro Carvalho Chehaba82decf2005-07-07 17:58:36 -0700263 case CX88_BOARD_ADSTECH_DVB_T_PCI:
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -0700264 ir_codes = ir_codes_adstech_dvb_t_pci;
265 ir->gpio_addr = MO_GP1_IO;
Mauro Carvalho Chehaba82decf2005-07-07 17:58:36 -0700266 ir->mask_keycode = 0xbf;
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -0700267 ir->mask_keyup = 0x40;
268 ir->polling = 50; /* ms */
Mauro Carvalho Chehaba82decf2005-07-07 17:58:36 -0700269 break;
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -0700270 case CX88_BOARD_MSI_TVANYWHERE_MASTER:
271 ir_codes = ir_codes_msi_tvanywhere;
272 ir->gpio_addr = MO_GP1_IO;
273 ir->mask_keycode = 0x1f;
274 ir->mask_keyup = 0x40;
275 ir->polling = 1; /* ms */
276 break;
George Gazurkoff899ad112006-01-09 15:25:19 -0200277 case CX88_BOARD_AVERTV_303:
George Gazurkoff565f4942006-01-09 15:32:46 -0200278 case CX88_BOARD_AVERTV_STUDIO_303:
George Gazurkoff899ad112006-01-09 15:25:19 -0200279 ir_codes = ir_codes_avertv_303;
280 ir->gpio_addr = MO_GP2_IO;
281 ir->mask_keycode = 0xfb;
282 ir->mask_keydown = 0x02;
283 ir->polling = 50; /* ms */
284 break;
Chris Pascoefc40b262006-01-09 15:25:35 -0200285 case CX88_BOARD_DNTV_LIVE_DVB_T_PRO:
286 ir_codes = ir_codes_dntv_live_dvbt_pro;
287 ir_type = IR_TYPE_PD;
288 ir->sampling = 0xff00; /* address */
289 break;
Peter Naullsd1009bd2006-08-08 09:10:05 -0300290 case CX88_BOARD_NORWOOD_MICRO:
291 ir_codes = ir_codes_norwood;
292 ir->gpio_addr = MO_GP1_IO;
293 ir->mask_keycode = 0x0e;
294 ir->mask_keyup = 0x80;
295 ir->polling = 50; /* ms */
296 break;
Ricardo Cerqueirabe4f4512006-06-08 17:36:17 -0300297 case CX88_BOARD_NPGTECH_REALTV_TOP10FM:
Ricardo Cerqueira680543c2006-05-22 07:44:02 -0300298 ir_codes = ir_codes_npgtech;
299 ir->gpio_addr = MO_GP0_IO;
300 ir->mask_keycode = 0xfa;
301 ir->polling = 50; /* ms */
302 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 }
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -0700304
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 if (NULL == ir_codes) {
Dmitry Torokhovb07b4782006-11-20 10:23:04 -0300306 err = -ENODEV;
307 goto err_out_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 }
309
310 /* init input device */
311 snprintf(ir->name, sizeof(ir->name), "cx88 IR (%s)",
312 cx88_boards[core->board].name);
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -0700313 snprintf(ir->phys, sizeof(ir->phys), "pci-%s/ir0", pci_name(pci));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314
Dmitry Torokhovb7df3912005-09-15 02:01:53 -0500315 ir_input_init(input_dev, &ir->ir, ir_type, ir_codes);
316 input_dev->name = ir->name;
317 input_dev->phys = ir->phys;
318 input_dev->id.bustype = BUS_PCI;
319 input_dev->id.version = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 if (pci->subsystem_vendor) {
Dmitry Torokhovb7df3912005-09-15 02:01:53 -0500321 input_dev->id.vendor = pci->subsystem_vendor;
322 input_dev->id.product = pci->subsystem_device;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323 } else {
Dmitry Torokhovb7df3912005-09-15 02:01:53 -0500324 input_dev->id.vendor = pci->vendor;
325 input_dev->id.product = pci->device;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 }
Dmitry Torokhov2c8a3a32007-07-16 09:28:15 -0300327 input_dev->dev.parent = &pci->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328 /* record handles to ourself */
329 ir->core = core;
330 core->ir = ir;
331
Dmitry Torokhovb07b4782006-11-20 10:23:04 -0300332 cx88_ir_start(core, ir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333
334 /* all done */
Dmitry Torokhovb07b4782006-11-20 10:23:04 -0300335 err = input_register_device(ir->input);
336 if (err)
337 goto err_out_stop;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338
339 return 0;
Dmitry Torokhovb07b4782006-11-20 10:23:04 -0300340
341 err_out_stop:
342 cx88_ir_stop(core, ir);
343 core->ir = NULL;
344 err_out_free:
345 input_free_device(input_dev);
346 kfree(ir);
347 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348}
349
350int cx88_ir_fini(struct cx88_core *core)
351{
352 struct cx88_IR *ir = core->ir;
353
354 /* skip detach on non attached boards */
355 if (NULL == ir)
356 return 0;
357
Dmitry Torokhovb07b4782006-11-20 10:23:04 -0300358 cx88_ir_stop(core, ir);
Dmitry Torokhovb7df3912005-09-15 02:01:53 -0500359 input_unregister_device(ir->input);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 kfree(ir);
361
362 /* done */
363 core->ir = NULL;
364 return 0;
365}
366
367/* ---------------------------------------------------------------------- */
368
369void cx88_ir_irq(struct cx88_core *core)
370{
371 struct cx88_IR *ir = core->ir;
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -0700372 u32 samples, ircode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 int i;
374
375 if (NULL == ir)
376 return;
377 if (!ir->sampling)
378 return;
379
380 samples = cx_read(MO_SAMPLE_IO);
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -0700381 if (0 != samples && 0xffffffff != samples) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 /* record sample data */
383 if (ir->scount < ARRAY_SIZE(ir->samples))
384 ir->samples[ir->scount++] = samples;
385 return;
386 }
387 if (!ir->scount) {
388 /* nothing to sample */
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -0700389 if (ir->ir.keypressed && time_after(jiffies, ir->release))
Dmitry Torokhovb7df3912005-09-15 02:01:53 -0500390 ir_input_nokey(ir->input, &ir->ir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391 return;
392 }
393
394 /* have a complete sample */
395 if (ir->scount < ARRAY_SIZE(ir->samples))
396 ir->samples[ir->scount++] = samples;
397 for (i = 0; i < ir->scount; i++)
398 ir->samples[i] = ~ir->samples[i];
399 if (ir_debug)
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -0700400 ir_dump_samples(ir->samples, ir->scount);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401
402 /* decode it */
403 switch (core->board) {
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -0700404 case CX88_BOARD_TERRATEC_CINERGY_1400_DVB_T1:
Chris Pascoefc40b262006-01-09 15:25:35 -0200405 case CX88_BOARD_DNTV_LIVE_DVB_T_PRO:
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -0700406 ircode = ir_decode_pulsedistance(ir->samples, ir->scount, 1, 4);
407
408 if (ircode == 0xffffffff) { /* decoding error */
409 ir_dprintk("pulse distance decoding error\n");
410 break;
411 }
412
413 ir_dprintk("pulse distance decoded: %x\n", ircode);
414
415 if (ircode == 0) { /* key still pressed */
416 ir_dprintk("pulse distance decoded repeat code\n");
417 ir->release = jiffies + msecs_to_jiffies(120);
418 break;
419 }
420
Chris Pascoefc40b262006-01-09 15:25:35 -0200421 if ((ircode & 0xffff) != (ir->sampling & 0xffff)) { /* wrong address */
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -0700422 ir_dprintk("pulse distance decoded wrong address\n");
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800423 break;
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -0700424 }
425
426 if (((~ircode >> 24) & 0xff) != ((ircode >> 16) & 0xff)) { /* wrong checksum */
427 ir_dprintk("pulse distance decoded wrong check sum\n");
428 break;
429 }
430
431 ir_dprintk("Key Code: %x\n", (ircode >> 16) & 0x7f);
432
Dmitry Torokhovb7df3912005-09-15 02:01:53 -0500433 ir_input_keydown(ir->input, &ir->ir, (ircode >> 16) & 0x7f, (ircode >> 16) & 0xff);
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -0700434 ir->release = jiffies + msecs_to_jiffies(120);
435 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 case CX88_BOARD_HAUPPAUGE:
437 case CX88_BOARD_HAUPPAUGE_DVB_T1:
Steven Tothfb56cb62006-01-09 15:25:02 -0200438 case CX88_BOARD_HAUPPAUGE_NOVASE2_S1:
439 case CX88_BOARD_HAUPPAUGE_NOVASPLUS_S1:
Chris Pascoe30367bf2006-01-11 19:40:01 -0200440 case CX88_BOARD_HAUPPAUGE_HVR1100:
Steven Tothaa481a62006-09-14 15:41:13 -0300441 case CX88_BOARD_HAUPPAUGE_HVR1300:
Steven Toth76dc82a2006-09-30 00:43:58 -0300442 case CX88_BOARD_HAUPPAUGE_HVR3000:
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -0700443 ircode = ir_decode_biphase(ir->samples, ir->scount, 5, 7);
444 ir_dprintk("biphase decoded: %x\n", ircode);
445 if ((ircode & 0xfffff000) != 0x3000)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 break;
Dmitry Torokhovb7df3912005-09-15 02:01:53 -0500447 ir_input_keydown(ir->input, &ir->ir, ircode & 0x3f, ircode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 ir->release = jiffies + msecs_to_jiffies(120);
449 break;
450 }
451
452 ir->scount = 0;
453 return;
454}
455
456/* ---------------------------------------------------------------------- */
457
458MODULE_AUTHOR("Gerd Knorr, Pavel Machek, Chris Pascoe");
459MODULE_DESCRIPTION("input driver for cx88 GPIO-based IR remote controls");
460MODULE_LICENSE("GPL");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461/*
462 * Local variables:
463 * c-basic-offset: 8
464 * End:
465 */