blob: f2fba57f955be42977608826b5e81d4b43358a3f [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;
73 u32 gpio, data;
74
75 /* read gpio value */
76 gpio = cx_read(ir->gpio_addr);
77 if (ir->polling) {
78 if (ir->last_gpio == gpio)
79 return;
80 ir->last_gpio = gpio;
81 }
82
83 /* extract data */
84 data = ir_extract_bits(gpio, ir->mask_keycode);
85 ir_dprintk("irq gpio=0x%x code=%d | %s%s%s\n",
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -070086 gpio, data,
87 ir->polling ? "poll" : "irq",
88 (gpio & ir->mask_keydown) ? " down" : "",
89 (gpio & ir->mask_keyup) ? " up" : "");
Linus Torvalds1da177e2005-04-16 15:20:36 -070090
91 if (ir->mask_keydown) {
92 /* bit set on keydown */
93 if (gpio & ir->mask_keydown) {
Dmitry Torokhovb7df3912005-09-15 02:01:53 -050094 ir_input_keydown(ir->input, &ir->ir, data, data);
Linus Torvalds1da177e2005-04-16 15:20:36 -070095 } else {
Dmitry Torokhovb7df3912005-09-15 02:01:53 -050096 ir_input_nokey(ir->input, &ir->ir);
Linus Torvalds1da177e2005-04-16 15:20:36 -070097 }
98
99 } else if (ir->mask_keyup) {
100 /* bit cleared on keydown */
101 if (0 == (gpio & ir->mask_keyup)) {
Dmitry Torokhovb7df3912005-09-15 02:01:53 -0500102 ir_input_keydown(ir->input, &ir->ir, data, data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103 } else {
Dmitry Torokhovb7df3912005-09-15 02:01:53 -0500104 ir_input_nokey(ir->input, &ir->ir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105 }
106
107 } else {
108 /* can't distinguish keydown/up :-/ */
Dmitry Torokhovb7df3912005-09-15 02:01:53 -0500109 ir_input_keydown(ir->input, &ir->ir, data, data);
110 ir_input_nokey(ir->input, &ir->ir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 }
112}
113
114static void ir_timer(unsigned long data)
115{
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -0700116 struct cx88_IR *ir = (struct cx88_IR *)data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117
118 schedule_work(&ir->work);
119}
120
121static void cx88_ir_work(void *data)
122{
123 struct cx88_IR *ir = data;
124 unsigned long timeout;
125
126 cx88_ir_handle_key(ir);
127 timeout = jiffies + (ir->polling * HZ / 1000);
128 mod_timer(&ir->timer, timeout);
129}
130
131/* ---------------------------------------------------------------------- */
132
133int cx88_ir_init(struct cx88_core *core, struct pci_dev *pci)
134{
135 struct cx88_IR *ir;
Dmitry Torokhovb7df3912005-09-15 02:01:53 -0500136 struct input_dev *input_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137 IR_KEYTAB_TYPE *ir_codes = NULL;
138 int ir_type = IR_TYPE_OTHER;
139
Dmitry Torokhovb7df3912005-09-15 02:01:53 -0500140 ir = kzalloc(sizeof(*ir), GFP_KERNEL);
141 input_dev = input_allocate_device();
142 if (!ir || !input_dev) {
143 kfree(ir);
144 input_free_device(input_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 return -ENOMEM;
Dmitry Torokhovb7df3912005-09-15 02:01:53 -0500146 }
147
148 ir->input = input_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149
150 /* detect & configure */
151 switch (core->board) {
152 case CX88_BOARD_DNTV_LIVE_DVB_T:
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -0700153 case CX88_BOARD_KWORLD_DVB_T:
Marco Manenti28ecc442006-02-07 06:45:33 -0200154 case CX88_BOARD_KWORLD_DVB_T_CX22702:
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -0700155 ir_codes = ir_codes_dntv_live_dvb_t;
156 ir->gpio_addr = MO_GP1_IO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 ir->mask_keycode = 0x1f;
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -0700158 ir->mask_keyup = 0x60;
159 ir->polling = 50; /* ms */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 break;
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -0700161 case CX88_BOARD_TERRATEC_CINERGY_1400_DVB_T1:
162 ir_codes = ir_codes_cinergy_1400;
163 ir_type = IR_TYPE_PD;
Chris Pascoefc40b262006-01-09 15:25:35 -0200164 ir->sampling = 0xeb04; /* address */
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -0700165 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 case CX88_BOARD_HAUPPAUGE:
167 case CX88_BOARD_HAUPPAUGE_DVB_T1:
Steven Tothfb56cb62006-01-09 15:25:02 -0200168 case CX88_BOARD_HAUPPAUGE_NOVASE2_S1:
169 case CX88_BOARD_HAUPPAUGE_NOVASPLUS_S1:
Steven Toth611900c2006-01-09 15:25:12 -0200170 case CX88_BOARD_HAUPPAUGE_HVR1100:
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -0700171 ir_codes = ir_codes_hauppauge_new;
172 ir_type = IR_TYPE_RC5;
173 ir->sampling = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174 break;
175 case CX88_BOARD_WINFAST2000XP_EXPERT:
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -0700176 ir_codes = ir_codes_winfast;
177 ir->gpio_addr = MO_GP0_IO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 ir->mask_keycode = 0x8f8;
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -0700179 ir->mask_keyup = 0x100;
180 ir->polling = 1; /* ms */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 break;
182 case CX88_BOARD_IODATA_GVBCTV7E:
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -0700183 ir_codes = ir_codes_iodata_bctv7e;
184 ir->gpio_addr = MO_GP0_IO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 ir->mask_keycode = 0xfd;
186 ir->mask_keydown = 0x02;
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -0700187 ir->polling = 5; /* ms */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 break;
Manuel Capinha239df2e2005-06-23 22:04:53 -0700189 case CX88_BOARD_PIXELVIEW_PLAYTV_ULTRA_PRO:
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -0700190 ir_codes = ir_codes_pixelview;
191 ir->gpio_addr = MO_GP1_IO;
Manuel Capinha239df2e2005-06-23 22:04:53 -0700192 ir->mask_keycode = 0x1f;
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -0700193 ir->mask_keyup = 0x80;
194 ir->polling = 1; /* ms */
Manuel Capinha239df2e2005-06-23 22:04:53 -0700195 break;
Nickolay V. Shmyrevb639f9d2006-01-23 09:44:10 -0200196 case CX88_BOARD_KWORLD_LTV883:
197 ir_codes = ir_codes_pixelview;
198 ir->gpio_addr = MO_GP1_IO;
199 ir->mask_keycode = 0x1f;
200 ir->mask_keyup = 0x60;
201 ir->polling = 1; /* ms */
202 break;
Mauro Carvalho Chehaba82decf2005-07-07 17:58:36 -0700203 case CX88_BOARD_ADSTECH_DVB_T_PCI:
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -0700204 ir_codes = ir_codes_adstech_dvb_t_pci;
205 ir->gpio_addr = MO_GP1_IO;
Mauro Carvalho Chehaba82decf2005-07-07 17:58:36 -0700206 ir->mask_keycode = 0xbf;
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -0700207 ir->mask_keyup = 0x40;
208 ir->polling = 50; /* ms */
Mauro Carvalho Chehaba82decf2005-07-07 17:58:36 -0700209 break;
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -0700210 case CX88_BOARD_MSI_TVANYWHERE_MASTER:
211 ir_codes = ir_codes_msi_tvanywhere;
212 ir->gpio_addr = MO_GP1_IO;
213 ir->mask_keycode = 0x1f;
214 ir->mask_keyup = 0x40;
215 ir->polling = 1; /* ms */
216 break;
George Gazurkoff899ad112006-01-09 15:25:19 -0200217 case CX88_BOARD_AVERTV_303:
George Gazurkoff565f4942006-01-09 15:32:46 -0200218 case CX88_BOARD_AVERTV_STUDIO_303:
George Gazurkoff899ad112006-01-09 15:25:19 -0200219 ir_codes = ir_codes_avertv_303;
220 ir->gpio_addr = MO_GP2_IO;
221 ir->mask_keycode = 0xfb;
222 ir->mask_keydown = 0x02;
223 ir->polling = 50; /* ms */
224 break;
Chris Pascoefc40b262006-01-09 15:25:35 -0200225 case CX88_BOARD_DNTV_LIVE_DVB_T_PRO:
226 ir_codes = ir_codes_dntv_live_dvbt_pro;
227 ir_type = IR_TYPE_PD;
228 ir->sampling = 0xff00; /* address */
229 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 }
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -0700231
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 if (NULL == ir_codes) {
233 kfree(ir);
Dmitry Torokhovb7df3912005-09-15 02:01:53 -0500234 input_free_device(input_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 return -ENODEV;
236 }
237
238 /* init input device */
239 snprintf(ir->name, sizeof(ir->name), "cx88 IR (%s)",
240 cx88_boards[core->board].name);
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -0700241 snprintf(ir->phys, sizeof(ir->phys), "pci-%s/ir0", pci_name(pci));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242
Dmitry Torokhovb7df3912005-09-15 02:01:53 -0500243 ir_input_init(input_dev, &ir->ir, ir_type, ir_codes);
244 input_dev->name = ir->name;
245 input_dev->phys = ir->phys;
246 input_dev->id.bustype = BUS_PCI;
247 input_dev->id.version = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 if (pci->subsystem_vendor) {
Dmitry Torokhovb7df3912005-09-15 02:01:53 -0500249 input_dev->id.vendor = pci->subsystem_vendor;
250 input_dev->id.product = pci->subsystem_device;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 } else {
Dmitry Torokhovb7df3912005-09-15 02:01:53 -0500252 input_dev->id.vendor = pci->vendor;
253 input_dev->id.product = pci->device;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 }
Dmitry Torokhovb7df3912005-09-15 02:01:53 -0500255 input_dev->cdev.dev = &pci->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 /* record handles to ourself */
257 ir->core = core;
258 core->ir = ir;
259
260 if (ir->polling) {
261 INIT_WORK(&ir->work, cx88_ir_work, ir);
262 init_timer(&ir->timer);
263 ir->timer.function = ir_timer;
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -0700264 ir->timer.data = (unsigned long)ir;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 schedule_work(&ir->work);
266 }
267 if (ir->sampling) {
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -0700268 core->pci_irqmask |= (1 << 18); /* IR_SMP_INT */
269 cx_write(MO_DDS_IO, 0xa80a80); /* 4 kHz sample rate */
270 cx_write(MO_DDSCFG_IO, 0x5); /* enable */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 }
272
273 /* all done */
Dmitry Torokhovb7df3912005-09-15 02:01:53 -0500274 input_register_device(ir->input);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275
276 return 0;
277}
278
279int cx88_ir_fini(struct cx88_core *core)
280{
281 struct cx88_IR *ir = core->ir;
282
283 /* skip detach on non attached boards */
284 if (NULL == ir)
285 return 0;
286
Chris Pascoefc40b262006-01-09 15:25:35 -0200287 if (ir->sampling) {
288 cx_write(MO_DDSCFG_IO, 0x0);
289 core->pci_irqmask &= ~(1 << 18);
290 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 if (ir->polling) {
292 del_timer(&ir->timer);
293 flush_scheduled_work();
294 }
295
Dmitry Torokhovb7df3912005-09-15 02:01:53 -0500296 input_unregister_device(ir->input);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 kfree(ir);
298
299 /* done */
300 core->ir = NULL;
301 return 0;
302}
303
304/* ---------------------------------------------------------------------- */
305
306void cx88_ir_irq(struct cx88_core *core)
307{
308 struct cx88_IR *ir = core->ir;
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -0700309 u32 samples, ircode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 int i;
311
312 if (NULL == ir)
313 return;
314 if (!ir->sampling)
315 return;
316
317 samples = cx_read(MO_SAMPLE_IO);
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -0700318 if (0 != samples && 0xffffffff != samples) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 /* record sample data */
320 if (ir->scount < ARRAY_SIZE(ir->samples))
321 ir->samples[ir->scount++] = samples;
322 return;
323 }
324 if (!ir->scount) {
325 /* nothing to sample */
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -0700326 if (ir->ir.keypressed && time_after(jiffies, ir->release))
Dmitry Torokhovb7df3912005-09-15 02:01:53 -0500327 ir_input_nokey(ir->input, &ir->ir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328 return;
329 }
330
331 /* have a complete sample */
332 if (ir->scount < ARRAY_SIZE(ir->samples))
333 ir->samples[ir->scount++] = samples;
334 for (i = 0; i < ir->scount; i++)
335 ir->samples[i] = ~ir->samples[i];
336 if (ir_debug)
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -0700337 ir_dump_samples(ir->samples, ir->scount);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338
339 /* decode it */
340 switch (core->board) {
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -0700341 case CX88_BOARD_TERRATEC_CINERGY_1400_DVB_T1:
Chris Pascoefc40b262006-01-09 15:25:35 -0200342 case CX88_BOARD_DNTV_LIVE_DVB_T_PRO:
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -0700343 ircode = ir_decode_pulsedistance(ir->samples, ir->scount, 1, 4);
344
345 if (ircode == 0xffffffff) { /* decoding error */
346 ir_dprintk("pulse distance decoding error\n");
347 break;
348 }
349
350 ir_dprintk("pulse distance decoded: %x\n", ircode);
351
352 if (ircode == 0) { /* key still pressed */
353 ir_dprintk("pulse distance decoded repeat code\n");
354 ir->release = jiffies + msecs_to_jiffies(120);
355 break;
356 }
357
Chris Pascoefc40b262006-01-09 15:25:35 -0200358 if ((ircode & 0xffff) != (ir->sampling & 0xffff)) { /* wrong address */
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -0700359 ir_dprintk("pulse distance decoded wrong address\n");
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800360 break;
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -0700361 }
362
363 if (((~ircode >> 24) & 0xff) != ((ircode >> 16) & 0xff)) { /* wrong checksum */
364 ir_dprintk("pulse distance decoded wrong check sum\n");
365 break;
366 }
367
368 ir_dprintk("Key Code: %x\n", (ircode >> 16) & 0x7f);
369
Dmitry Torokhovb7df3912005-09-15 02:01:53 -0500370 ir_input_keydown(ir->input, &ir->ir, (ircode >> 16) & 0x7f, (ircode >> 16) & 0xff);
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -0700371 ir->release = jiffies + msecs_to_jiffies(120);
372 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 case CX88_BOARD_HAUPPAUGE:
374 case CX88_BOARD_HAUPPAUGE_DVB_T1:
Steven Tothfb56cb62006-01-09 15:25:02 -0200375 case CX88_BOARD_HAUPPAUGE_NOVASE2_S1:
376 case CX88_BOARD_HAUPPAUGE_NOVASPLUS_S1:
Chris Pascoe30367bf2006-01-11 19:40:01 -0200377 case CX88_BOARD_HAUPPAUGE_HVR1100:
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -0700378 ircode = ir_decode_biphase(ir->samples, ir->scount, 5, 7);
379 ir_dprintk("biphase decoded: %x\n", ircode);
380 if ((ircode & 0xfffff000) != 0x3000)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 break;
Dmitry Torokhovb7df3912005-09-15 02:01:53 -0500382 ir_input_keydown(ir->input, &ir->ir, ircode & 0x3f, ircode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 ir->release = jiffies + msecs_to_jiffies(120);
384 break;
385 }
386
387 ir->scount = 0;
388 return;
389}
390
391/* ---------------------------------------------------------------------- */
392
393MODULE_AUTHOR("Gerd Knorr, Pavel Machek, Chris Pascoe");
394MODULE_DESCRIPTION("input driver for cx88 GPIO-based IR remote controls");
395MODULE_LICENSE("GPL");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396/*
397 * Local variables:
398 * c-basic-offset: 8
399 * End:
400 */