blob: c78a95ef75818cd08c40cafdbb06c1f4c42fc65c [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);
Trent Piepho6a59d642007-08-15 14:41:57 -030077 switch (core->boardnr) {
Michael Krufky829ea962007-06-25 14:54:09 -030078 case CX88_BOARD_NPGTECH_REALTV_TOP10FM:
Ricardo Cerqueira680543c2006-05-22 07:44:02 -030079 /* This board apparently uses a combination of 2 GPIO
80 to represent the keys. Additionally, the second GPIO
81 can be used for parity.
82
83 Example:
84
85 for key "5"
86 gpio = 0x758, auxgpio = 0xe5 or 0xf5
87 for key "Power"
88 gpio = 0x758, auxgpio = 0xed or 0xfd
89 */
90
91 auxgpio = cx_read(MO_GP1_IO);
92 /* Take out the parity part */
Ricardo Cerqueiraa62c61d2006-07-17 16:34:27 -030093 gpio=(gpio & 0x7fd) + (auxgpio & 0xef);
Michael Krufky829ea962007-06-25 14:54:09 -030094 break;
95 case CX88_BOARD_WINFAST_DTV1000:
Edgar Pisanie7d11ec2007-06-25 14:46:05 -030096 gpio = (gpio & 0x6ff) | ((cx_read(MO_GP1_IO) << 8) & 0x900);
97 auxgpio = gpio;
Michael Krufky829ea962007-06-25 14:54:09 -030098 break;
99 default:
Ricardo Cerqueira680543c2006-05-22 07:44:02 -0300100 auxgpio = gpio;
Michael Krufky829ea962007-06-25 14:54:09 -0300101 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 if (ir->polling) {
Ricardo Cerqueira680543c2006-05-22 07:44:02 -0300103 if (ir->last_gpio == auxgpio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 return;
Ricardo Cerqueira680543c2006-05-22 07:44:02 -0300105 ir->last_gpio = auxgpio;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106 }
107
108 /* extract data */
109 data = ir_extract_bits(gpio, ir->mask_keycode);
110 ir_dprintk("irq gpio=0x%x code=%d | %s%s%s\n",
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -0700111 gpio, data,
112 ir->polling ? "poll" : "irq",
113 (gpio & ir->mask_keydown) ? " down" : "",
114 (gpio & ir->mask_keyup) ? " up" : "");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115
Trent Piepho6a59d642007-08-15 14:41:57 -0300116 if (ir->core->boardnr == CX88_BOARD_NORWOOD_MICRO) {
Peter Naullsd1009bd2006-08-08 09:10:05 -0300117 u32 gpio_key = cx_read(MO_GP0_IO);
118
119 data = (data << 4) | ((gpio_key & 0xf0) >> 4);
120
121 ir_input_keydown(ir->input, &ir->ir, data, data);
122 ir_input_nokey(ir->input, &ir->ir);
123
124 } else if (ir->mask_keydown) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 /* bit set on keydown */
126 if (gpio & ir->mask_keydown) {
Dmitry Torokhovb7df3912005-09-15 02:01:53 -0500127 ir_input_keydown(ir->input, &ir->ir, data, data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 } else {
Dmitry Torokhovb7df3912005-09-15 02:01:53 -0500129 ir_input_nokey(ir->input, &ir->ir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130 }
131
132 } else if (ir->mask_keyup) {
133 /* bit cleared on keydown */
134 if (0 == (gpio & ir->mask_keyup)) {
Dmitry Torokhovb7df3912005-09-15 02:01:53 -0500135 ir_input_keydown(ir->input, &ir->ir, data, data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 } else {
Dmitry Torokhovb7df3912005-09-15 02:01:53 -0500137 ir_input_nokey(ir->input, &ir->ir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 }
139
140 } else {
141 /* can't distinguish keydown/up :-/ */
Dmitry Torokhovb7df3912005-09-15 02:01:53 -0500142 ir_input_keydown(ir->input, &ir->ir, data, data);
143 ir_input_nokey(ir->input, &ir->ir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 }
145}
146
147static void ir_timer(unsigned long data)
148{
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -0700149 struct cx88_IR *ir = (struct cx88_IR *)data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150
151 schedule_work(&ir->work);
152}
153
David Howellsc4028952006-11-22 14:57:56 +0000154static void cx88_ir_work(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155{
David Howellsc4028952006-11-22 14:57:56 +0000156 struct cx88_IR *ir = container_of(work, struct cx88_IR, work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157
158 cx88_ir_handle_key(ir);
Dmitry Torokhov749823a2007-05-21 11:48:11 -0300159 mod_timer(&ir->timer, jiffies + msecs_to_jiffies(ir->polling));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160}
161
Dmitry Torokhovb07b4782006-11-20 10:23:04 -0300162static void cx88_ir_start(struct cx88_core *core, struct cx88_IR *ir)
163{
164 if (ir->polling) {
Dmitry Torokhov749823a2007-05-21 11:48:11 -0300165 setup_timer(&ir->timer, ir_timer, (unsigned long)ir);
Mauro Carvalho Chehab67952e82006-12-10 00:14:21 -0200166 INIT_WORK(&ir->work, cx88_ir_work);
Dmitry Torokhovb07b4782006-11-20 10:23:04 -0300167 schedule_work(&ir->work);
168 }
169 if (ir->sampling) {
Trent Piepho8ddac9e2007-08-18 06:57:55 -0300170 core->pci_irqmask |= PCI_INT_IR_SMPINT;
Dmitry Torokhovb07b4782006-11-20 10:23:04 -0300171 cx_write(MO_DDS_IO, 0xa80a80); /* 4 kHz sample rate */
172 cx_write(MO_DDSCFG_IO, 0x5); /* enable */
173 }
174}
175
176static void cx88_ir_stop(struct cx88_core *core, struct cx88_IR *ir)
177{
178 if (ir->sampling) {
179 cx_write(MO_DDSCFG_IO, 0x0);
Trent Piepho8ddac9e2007-08-18 06:57:55 -0300180 core->pci_irqmask &= ~PCI_INT_IR_SMPINT;
Dmitry Torokhovb07b4782006-11-20 10:23:04 -0300181 }
182
183 if (ir->polling) {
184 del_timer_sync(&ir->timer);
185 flush_scheduled_work();
186 }
187}
188
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189/* ---------------------------------------------------------------------- */
190
191int cx88_ir_init(struct cx88_core *core, struct pci_dev *pci)
192{
193 struct cx88_IR *ir;
Dmitry Torokhovb7df3912005-09-15 02:01:53 -0500194 struct input_dev *input_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195 IR_KEYTAB_TYPE *ir_codes = NULL;
196 int ir_type = IR_TYPE_OTHER;
Dmitry Torokhovb07b4782006-11-20 10:23:04 -0300197 int err = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198
Dmitry Torokhovb7df3912005-09-15 02:01:53 -0500199 ir = kzalloc(sizeof(*ir), GFP_KERNEL);
200 input_dev = input_allocate_device();
Dmitry Torokhovb07b4782006-11-20 10:23:04 -0300201 if (!ir || !input_dev)
202 goto err_out_free;
Dmitry Torokhovb7df3912005-09-15 02:01:53 -0500203
204 ir->input = input_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205
206 /* detect & configure */
Trent Piepho6a59d642007-08-15 14:41:57 -0300207 switch (core->boardnr) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 case CX88_BOARD_DNTV_LIVE_DVB_T:
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -0700209 case CX88_BOARD_KWORLD_DVB_T:
Marco Manenti28ecc442006-02-07 06:45:33 -0200210 case CX88_BOARD_KWORLD_DVB_T_CX22702:
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -0700211 ir_codes = ir_codes_dntv_live_dvb_t;
212 ir->gpio_addr = MO_GP1_IO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 ir->mask_keycode = 0x1f;
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -0700214 ir->mask_keyup = 0x60;
215 ir->polling = 50; /* ms */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 break;
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -0700217 case CX88_BOARD_TERRATEC_CINERGY_1400_DVB_T1:
218 ir_codes = ir_codes_cinergy_1400;
219 ir_type = IR_TYPE_PD;
Chris Pascoefc40b262006-01-09 15:25:35 -0200220 ir->sampling = 0xeb04; /* address */
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -0700221 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 case CX88_BOARD_HAUPPAUGE:
223 case CX88_BOARD_HAUPPAUGE_DVB_T1:
Steven Tothfb56cb62006-01-09 15:25:02 -0200224 case CX88_BOARD_HAUPPAUGE_NOVASE2_S1:
225 case CX88_BOARD_HAUPPAUGE_NOVASPLUS_S1:
Steven Toth611900c2006-01-09 15:25:12 -0200226 case CX88_BOARD_HAUPPAUGE_HVR1100:
Steven Toth76dc82a2006-09-30 00:43:58 -0300227 case CX88_BOARD_HAUPPAUGE_HVR3000:
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -0700228 ir_codes = ir_codes_hauppauge_new;
229 ir_type = IR_TYPE_RC5;
230 ir->sampling = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 break;
Malcolm Valentine2de873e2006-05-29 13:56:24 -0300232 case CX88_BOARD_WINFAST_DTV2000H:
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -0700233 ir_codes = ir_codes_winfast;
234 ir->gpio_addr = MO_GP0_IO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 ir->mask_keycode = 0x8f8;
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -0700236 ir->mask_keyup = 0x100;
Malcolm Valentine2de873e2006-05-29 13:56:24 -0300237 ir->polling = 50; /* ms */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 break;
Hermann Pittonff97d932006-11-03 10:45:52 -0300239 case CX88_BOARD_WINFAST2000XP_EXPERT:
Edgar Pisanie7d11ec2007-06-25 14:46:05 -0300240 case CX88_BOARD_WINFAST_DTV1000:
Hermann Pittonff97d932006-11-03 10:45:52 -0300241 ir_codes = ir_codes_winfast;
242 ir->gpio_addr = MO_GP0_IO;
243 ir->mask_keycode = 0x8f8;
244 ir->mask_keyup = 0x100;
245 ir->polling = 1; /* ms */
246 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 case CX88_BOARD_IODATA_GVBCTV7E:
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -0700248 ir_codes = ir_codes_iodata_bctv7e;
249 ir->gpio_addr = MO_GP0_IO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 ir->mask_keycode = 0xfd;
251 ir->mask_keydown = 0x02;
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -0700252 ir->polling = 5; /* ms */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 break;
Hermann Pittonff97d932006-11-03 10:45:52 -0300254 case CX88_BOARD_PROLINK_PLAYTVPVR:
Manuel Capinha239df2e2005-06-23 22:04:53 -0700255 case CX88_BOARD_PIXELVIEW_PLAYTV_ULTRA_PRO:
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -0700256 ir_codes = ir_codes_pixelview;
257 ir->gpio_addr = MO_GP1_IO;
Manuel Capinha239df2e2005-06-23 22:04:53 -0700258 ir->mask_keycode = 0x1f;
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -0700259 ir->mask_keyup = 0x80;
260 ir->polling = 1; /* ms */
Manuel Capinha239df2e2005-06-23 22:04:53 -0700261 break;
Nickolay V. Shmyrevb639f9d2006-01-23 09:44:10 -0200262 case CX88_BOARD_KWORLD_LTV883:
263 ir_codes = ir_codes_pixelview;
264 ir->gpio_addr = MO_GP1_IO;
265 ir->mask_keycode = 0x1f;
266 ir->mask_keyup = 0x60;
267 ir->polling = 1; /* ms */
268 break;
Mauro Carvalho Chehaba82decf2005-07-07 17:58:36 -0700269 case CX88_BOARD_ADSTECH_DVB_T_PCI:
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -0700270 ir_codes = ir_codes_adstech_dvb_t_pci;
271 ir->gpio_addr = MO_GP1_IO;
Mauro Carvalho Chehaba82decf2005-07-07 17:58:36 -0700272 ir->mask_keycode = 0xbf;
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -0700273 ir->mask_keyup = 0x40;
274 ir->polling = 50; /* ms */
Mauro Carvalho Chehaba82decf2005-07-07 17:58:36 -0700275 break;
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -0700276 case CX88_BOARD_MSI_TVANYWHERE_MASTER:
277 ir_codes = ir_codes_msi_tvanywhere;
278 ir->gpio_addr = MO_GP1_IO;
279 ir->mask_keycode = 0x1f;
280 ir->mask_keyup = 0x40;
281 ir->polling = 1; /* ms */
282 break;
George Gazurkoff899ad112006-01-09 15:25:19 -0200283 case CX88_BOARD_AVERTV_303:
George Gazurkoff565f4942006-01-09 15:32:46 -0200284 case CX88_BOARD_AVERTV_STUDIO_303:
George Gazurkoff899ad112006-01-09 15:25:19 -0200285 ir_codes = ir_codes_avertv_303;
286 ir->gpio_addr = MO_GP2_IO;
287 ir->mask_keycode = 0xfb;
288 ir->mask_keydown = 0x02;
289 ir->polling = 50; /* ms */
290 break;
Chris Pascoefc40b262006-01-09 15:25:35 -0200291 case CX88_BOARD_DNTV_LIVE_DVB_T_PRO:
292 ir_codes = ir_codes_dntv_live_dvbt_pro;
293 ir_type = IR_TYPE_PD;
294 ir->sampling = 0xff00; /* address */
295 break;
Peter Naullsd1009bd2006-08-08 09:10:05 -0300296 case CX88_BOARD_NORWOOD_MICRO:
297 ir_codes = ir_codes_norwood;
298 ir->gpio_addr = MO_GP1_IO;
299 ir->mask_keycode = 0x0e;
300 ir->mask_keyup = 0x80;
301 ir->polling = 50; /* ms */
302 break;
Ricardo Cerqueirabe4f4512006-06-08 17:36:17 -0300303 case CX88_BOARD_NPGTECH_REALTV_TOP10FM:
Ricardo Cerqueira680543c2006-05-22 07:44:02 -0300304 ir_codes = ir_codes_npgtech;
305 ir->gpio_addr = MO_GP0_IO;
306 ir->mask_keycode = 0xfa;
307 ir->polling = 50; /* ms */
308 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 }
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -0700310
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 if (NULL == ir_codes) {
Dmitry Torokhovb07b4782006-11-20 10:23:04 -0300312 err = -ENODEV;
313 goto err_out_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 }
315
316 /* init input device */
Trent Piepho6a59d642007-08-15 14:41:57 -0300317 snprintf(ir->name, sizeof(ir->name), "cx88 IR (%s)", core->board.name);
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -0700318 snprintf(ir->phys, sizeof(ir->phys), "pci-%s/ir0", pci_name(pci));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319
Dmitry Torokhovb7df3912005-09-15 02:01:53 -0500320 ir_input_init(input_dev, &ir->ir, ir_type, ir_codes);
321 input_dev->name = ir->name;
322 input_dev->phys = ir->phys;
323 input_dev->id.bustype = BUS_PCI;
324 input_dev->id.version = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 if (pci->subsystem_vendor) {
Dmitry Torokhovb7df3912005-09-15 02:01:53 -0500326 input_dev->id.vendor = pci->subsystem_vendor;
327 input_dev->id.product = pci->subsystem_device;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328 } else {
Dmitry Torokhovb7df3912005-09-15 02:01:53 -0500329 input_dev->id.vendor = pci->vendor;
330 input_dev->id.product = pci->device;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 }
Dmitry Torokhov2c8a3a32007-07-16 09:28:15 -0300332 input_dev->dev.parent = &pci->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 /* record handles to ourself */
334 ir->core = core;
335 core->ir = ir;
336
Dmitry Torokhovb07b4782006-11-20 10:23:04 -0300337 cx88_ir_start(core, ir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338
339 /* all done */
Dmitry Torokhovb07b4782006-11-20 10:23:04 -0300340 err = input_register_device(ir->input);
341 if (err)
342 goto err_out_stop;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343
344 return 0;
Dmitry Torokhovb07b4782006-11-20 10:23:04 -0300345
346 err_out_stop:
347 cx88_ir_stop(core, ir);
348 core->ir = NULL;
349 err_out_free:
350 input_free_device(input_dev);
351 kfree(ir);
352 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353}
354
355int cx88_ir_fini(struct cx88_core *core)
356{
357 struct cx88_IR *ir = core->ir;
358
359 /* skip detach on non attached boards */
360 if (NULL == ir)
361 return 0;
362
Dmitry Torokhovb07b4782006-11-20 10:23:04 -0300363 cx88_ir_stop(core, ir);
Dmitry Torokhovb7df3912005-09-15 02:01:53 -0500364 input_unregister_device(ir->input);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 kfree(ir);
366
367 /* done */
368 core->ir = NULL;
369 return 0;
370}
371
372/* ---------------------------------------------------------------------- */
373
374void cx88_ir_irq(struct cx88_core *core)
375{
376 struct cx88_IR *ir = core->ir;
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -0700377 u32 samples, ircode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 int i;
379
380 if (NULL == ir)
381 return;
382 if (!ir->sampling)
383 return;
384
385 samples = cx_read(MO_SAMPLE_IO);
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -0700386 if (0 != samples && 0xffffffff != samples) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 /* record sample data */
388 if (ir->scount < ARRAY_SIZE(ir->samples))
389 ir->samples[ir->scount++] = samples;
390 return;
391 }
392 if (!ir->scount) {
393 /* nothing to sample */
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -0700394 if (ir->ir.keypressed && time_after(jiffies, ir->release))
Dmitry Torokhovb7df3912005-09-15 02:01:53 -0500395 ir_input_nokey(ir->input, &ir->ir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 return;
397 }
398
399 /* have a complete sample */
400 if (ir->scount < ARRAY_SIZE(ir->samples))
401 ir->samples[ir->scount++] = samples;
402 for (i = 0; i < ir->scount; i++)
403 ir->samples[i] = ~ir->samples[i];
404 if (ir_debug)
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -0700405 ir_dump_samples(ir->samples, ir->scount);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406
407 /* decode it */
Trent Piepho6a59d642007-08-15 14:41:57 -0300408 switch (core->boardnr) {
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -0700409 case CX88_BOARD_TERRATEC_CINERGY_1400_DVB_T1:
Chris Pascoefc40b262006-01-09 15:25:35 -0200410 case CX88_BOARD_DNTV_LIVE_DVB_T_PRO:
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -0700411 ircode = ir_decode_pulsedistance(ir->samples, ir->scount, 1, 4);
412
413 if (ircode == 0xffffffff) { /* decoding error */
414 ir_dprintk("pulse distance decoding error\n");
415 break;
416 }
417
418 ir_dprintk("pulse distance decoded: %x\n", ircode);
419
420 if (ircode == 0) { /* key still pressed */
421 ir_dprintk("pulse distance decoded repeat code\n");
422 ir->release = jiffies + msecs_to_jiffies(120);
423 break;
424 }
425
Chris Pascoefc40b262006-01-09 15:25:35 -0200426 if ((ircode & 0xffff) != (ir->sampling & 0xffff)) { /* wrong address */
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -0700427 ir_dprintk("pulse distance decoded wrong address\n");
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800428 break;
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -0700429 }
430
431 if (((~ircode >> 24) & 0xff) != ((ircode >> 16) & 0xff)) { /* wrong checksum */
432 ir_dprintk("pulse distance decoded wrong check sum\n");
433 break;
434 }
435
436 ir_dprintk("Key Code: %x\n", (ircode >> 16) & 0x7f);
437
Dmitry Torokhovb7df3912005-09-15 02:01:53 -0500438 ir_input_keydown(ir->input, &ir->ir, (ircode >> 16) & 0x7f, (ircode >> 16) & 0xff);
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -0700439 ir->release = jiffies + msecs_to_jiffies(120);
440 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 case CX88_BOARD_HAUPPAUGE:
442 case CX88_BOARD_HAUPPAUGE_DVB_T1:
Steven Tothfb56cb62006-01-09 15:25:02 -0200443 case CX88_BOARD_HAUPPAUGE_NOVASE2_S1:
444 case CX88_BOARD_HAUPPAUGE_NOVASPLUS_S1:
Chris Pascoe30367bf2006-01-11 19:40:01 -0200445 case CX88_BOARD_HAUPPAUGE_HVR1100:
Steven Toth76dc82a2006-09-30 00:43:58 -0300446 case CX88_BOARD_HAUPPAUGE_HVR3000:
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -0700447 ircode = ir_decode_biphase(ir->samples, ir->scount, 5, 7);
448 ir_dprintk("biphase decoded: %x\n", ircode);
449 if ((ircode & 0xfffff000) != 0x3000)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 break;
Dmitry Torokhovb7df3912005-09-15 02:01:53 -0500451 ir_input_keydown(ir->input, &ir->ir, ircode & 0x3f, ircode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 ir->release = jiffies + msecs_to_jiffies(120);
453 break;
454 }
455
456 ir->scount = 0;
457 return;
458}
459
460/* ---------------------------------------------------------------------- */
461
462MODULE_AUTHOR("Gerd Knorr, Pavel Machek, Chris Pascoe");
463MODULE_DESCRIPTION("input driver for cx88 GPIO-based IR remote controls");
464MODULE_LICENSE("GPL");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465/*
466 * Local variables:
467 * c-basic-offset: 8
468 * End:
469 */