blob: 78b3635178afe33584256e516211acbf60555a30 [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>
Andrzej Hajda3c1c48b2009-07-02 11:50:35 -030026#include <linux/hrtimer.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include <linux/input.h>
28#include <linux/pci.h>
29#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include "cx88.h"
Mauro Carvalho Chehabd21838d2006-01-09 15:25:21 -020032#include <media/ir-common.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033
34/* ---------------------------------------------------------------------- */
35
Linus Torvalds1da177e2005-04-16 15:20:36 -070036struct cx88_IR {
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -070037 struct cx88_core *core;
Dmitry Torokhovb7df3912005-09-15 02:01:53 -050038 struct input_dev *input;
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -070039 struct ir_input_state ir;
40 char name[32];
41 char phys[32];
Linus Torvalds1da177e2005-04-16 15:20:36 -070042
43 /* sample from gpio pin 16 */
Chris Pascoefc40b262006-01-09 15:25:35 -020044 u32 sampling;
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -070045 u32 samples[16];
46 int scount;
47 unsigned long release;
Linus Torvalds1da177e2005-04-16 15:20:36 -070048
49 /* poll external decoder */
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -070050 int polling;
Andrzej Hajda3c1c48b2009-07-02 11:50:35 -030051 struct hrtimer timer;
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -070052 u32 gpio_addr;
53 u32 last_gpio;
54 u32 mask_keycode;
55 u32 mask_keydown;
56 u32 mask_keyup;
Linus Torvalds1da177e2005-04-16 15:20:36 -070057};
58
Douglas Schilling Landgrafff699e62008-04-22 14:41:48 -030059static int ir_debug;
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -070060module_param(ir_debug, int, 0644); /* debug level [IR] */
Linus Torvalds1da177e2005-04-16 15:20:36 -070061MODULE_PARM_DESC(ir_debug, "enable debug messages [IR]");
62
63#define ir_dprintk(fmt, arg...) if (ir_debug) \
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -070064 printk(KERN_DEBUG "%s IR: " fmt , ir->core->name , ##arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -070065
66/* ---------------------------------------------------------------------- */
67
68static void cx88_ir_handle_key(struct cx88_IR *ir)
69{
70 struct cx88_core *core = ir->core;
Ricardo Cerqueira680543c2006-05-22 07:44:02 -030071 u32 gpio, data, auxgpio;
Linus Torvalds1da177e2005-04-16 15:20:36 -070072
73 /* read gpio value */
74 gpio = cx_read(ir->gpio_addr);
Trent Piepho6a59d642007-08-15 14:41:57 -030075 switch (core->boardnr) {
Michael Krufky829ea962007-06-25 14:54:09 -030076 case CX88_BOARD_NPGTECH_REALTV_TOP10FM:
Ricardo Cerqueira680543c2006-05-22 07:44:02 -030077 /* This board apparently uses a combination of 2 GPIO
78 to represent the keys. Additionally, the second GPIO
79 can be used for parity.
80
81 Example:
82
83 for key "5"
84 gpio = 0x758, auxgpio = 0xe5 or 0xf5
85 for key "Power"
86 gpio = 0x758, auxgpio = 0xed or 0xfd
87 */
88
89 auxgpio = cx_read(MO_GP1_IO);
90 /* Take out the parity part */
Ricardo Cerqueiraa62c61d2006-07-17 16:34:27 -030091 gpio=(gpio & 0x7fd) + (auxgpio & 0xef);
Michael Krufky829ea962007-06-25 14:54:09 -030092 break;
93 case CX88_BOARD_WINFAST_DTV1000:
Miroslav Sustek3047a172009-05-31 16:47:28 -030094 case CX88_BOARD_WINFAST_DTV1800H:
Pieter Van Schaik3e9a4892009-04-29 03:55:31 -030095 case CX88_BOARD_WINFAST_TV2000_XP_GLOBAL:
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
Andrzej Hajda3c1c48b2009-07-02 11:50:35 -0300147static enum hrtimer_restart cx88_ir_work(struct hrtimer *timer)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148{
Andrzej Hajda3c1c48b2009-07-02 11:50:35 -0300149 unsigned long missed;
150 struct cx88_IR *ir = container_of(timer, struct cx88_IR, timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151
152 cx88_ir_handle_key(ir);
Andrzej Hajda3c1c48b2009-07-02 11:50:35 -0300153 missed = hrtimer_forward_now(&ir->timer,
154 ktime_set(0, ir->polling * 1000000));
155 if (missed > 1)
156 ir_dprintk("Missed ticks %ld\n", missed - 1);
157
158 return HRTIMER_RESTART;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159}
160
Mauro Carvalho Chehab13595a52007-10-01 08:51:39 -0300161void cx88_ir_start(struct cx88_core *core, struct cx88_IR *ir)
Dmitry Torokhovb07b4782006-11-20 10:23:04 -0300162{
163 if (ir->polling) {
Andrzej Hajda3c1c48b2009-07-02 11:50:35 -0300164 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),
168 HRTIMER_MODE_REL);
Dmitry Torokhovb07b4782006-11-20 10:23:04 -0300169 }
170 if (ir->sampling) {
Trent Piepho8ddac9e2007-08-18 06:57:55 -0300171 core->pci_irqmask |= PCI_INT_IR_SMPINT;
Dmitry Torokhovb07b4782006-11-20 10:23:04 -0300172 cx_write(MO_DDS_IO, 0xa80a80); /* 4 kHz sample rate */
173 cx_write(MO_DDSCFG_IO, 0x5); /* enable */
174 }
175}
176
Mauro Carvalho Chehab13595a52007-10-01 08:51:39 -0300177void cx88_ir_stop(struct cx88_core *core, struct cx88_IR *ir)
Dmitry Torokhovb07b4782006-11-20 10:23:04 -0300178{
179 if (ir->sampling) {
180 cx_write(MO_DDSCFG_IO, 0x0);
Trent Piepho8ddac9e2007-08-18 06:57:55 -0300181 core->pci_irqmask &= ~PCI_INT_IR_SMPINT;
Dmitry Torokhovb07b4782006-11-20 10:23:04 -0300182 }
183
Jean Delvare569b7ec2009-03-07 07:42:12 -0300184 if (ir->polling)
Andrzej Hajda3c1c48b2009-07-02 11:50:35 -0300185 hrtimer_cancel(&ir->timer);
Dmitry Torokhovb07b4782006-11-20 10:23:04 -0300186}
187
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188/* ---------------------------------------------------------------------- */
189
190int cx88_ir_init(struct cx88_core *core, struct pci_dev *pci)
191{
192 struct cx88_IR *ir;
Dmitry Torokhovb7df3912005-09-15 02:01:53 -0500193 struct input_dev *input_dev;
Mauro Carvalho Chehab715a2232009-08-29 14:15:55 -0300194 struct ir_scancode_table *ir_codes = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195 int ir_type = IR_TYPE_OTHER;
Dmitry Torokhovb07b4782006-11-20 10:23:04 -0300196 int err = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197
Dmitry Torokhovb7df3912005-09-15 02:01:53 -0500198 ir = kzalloc(sizeof(*ir), GFP_KERNEL);
199 input_dev = input_allocate_device();
Dmitry Torokhovb07b4782006-11-20 10:23:04 -0300200 if (!ir || !input_dev)
201 goto err_out_free;
Dmitry Torokhovb7df3912005-09-15 02:01:53 -0500202
203 ir->input = input_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204
205 /* detect & configure */
Trent Piepho6a59d642007-08-15 14:41:57 -0300206 switch (core->boardnr) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 case CX88_BOARD_DNTV_LIVE_DVB_T:
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -0700208 case CX88_BOARD_KWORLD_DVB_T:
Marco Manenti28ecc442006-02-07 06:45:33 -0200209 case CX88_BOARD_KWORLD_DVB_T_CX22702:
Mauro Carvalho Chehab715a2232009-08-29 14:15:55 -0300210 ir_codes = &ir_codes_dntv_live_dvb_t_table;
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -0700211 ir->gpio_addr = MO_GP1_IO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 ir->mask_keycode = 0x1f;
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -0700213 ir->mask_keyup = 0x60;
214 ir->polling = 50; /* ms */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 break;
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -0700216 case CX88_BOARD_TERRATEC_CINERGY_1400_DVB_T1:
Mauro Carvalho Chehab715a2232009-08-29 14:15:55 -0300217 ir_codes = &ir_codes_cinergy_1400_table;
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -0700218 ir_type = IR_TYPE_PD;
Chris Pascoefc40b262006-01-09 15:25:35 -0200219 ir->sampling = 0xeb04; /* address */
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -0700220 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221 case CX88_BOARD_HAUPPAUGE:
222 case CX88_BOARD_HAUPPAUGE_DVB_T1:
Steven Tothfb56cb62006-01-09 15:25:02 -0200223 case CX88_BOARD_HAUPPAUGE_NOVASE2_S1:
224 case CX88_BOARD_HAUPPAUGE_NOVASPLUS_S1:
Steven Toth611900c2006-01-09 15:25:12 -0200225 case CX88_BOARD_HAUPPAUGE_HVR1100:
Steven Toth76dc82a2006-09-30 00:43:58 -0300226 case CX88_BOARD_HAUPPAUGE_HVR3000:
Steven Toth5bd1b662008-09-04 01:17:33 -0300227 case CX88_BOARD_HAUPPAUGE_HVR4000:
228 case CX88_BOARD_HAUPPAUGE_HVR4000LITE:
Erik S. Beiserf1735bb2009-02-28 22:29:20 -0300229 case CX88_BOARD_PCHDTV_HD3000:
230 case CX88_BOARD_PCHDTV_HD5500:
Steven Toth501d8cd2009-03-28 14:22:21 -0300231 case CX88_BOARD_HAUPPAUGE_IRONLY:
Mauro Carvalho Chehab715a2232009-08-29 14:15:55 -0300232 ir_codes = &ir_codes_hauppauge_new_table;
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -0700233 ir_type = IR_TYPE_RC5;
234 ir->sampling = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 break;
Malcolm Valentine2de873e2006-05-29 13:56:24 -0300236 case CX88_BOARD_WINFAST_DTV2000H:
Vlastimil Labsky4d14c832009-08-10 22:15:54 -0300237 case CX88_BOARD_WINFAST_DTV2000H_J:
Miroslav Sustek3047a172009-05-31 16:47:28 -0300238 case CX88_BOARD_WINFAST_DTV1800H:
Mauro Carvalho Chehab715a2232009-08-29 14:15:55 -0300239 ir_codes = &ir_codes_winfast_table;
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -0700240 ir->gpio_addr = MO_GP0_IO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 ir->mask_keycode = 0x8f8;
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -0700242 ir->mask_keyup = 0x100;
Malcolm Valentine2de873e2006-05-29 13:56:24 -0300243 ir->polling = 50; /* ms */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 break;
Hermann Pittonff97d932006-11-03 10:45:52 -0300245 case CX88_BOARD_WINFAST2000XP_EXPERT:
Edgar Pisanie7d11ec2007-06-25 14:46:05 -0300246 case CX88_BOARD_WINFAST_DTV1000:
Pieter Van Schaik3e9a4892009-04-29 03:55:31 -0300247 case CX88_BOARD_WINFAST_TV2000_XP_GLOBAL:
Mauro Carvalho Chehab715a2232009-08-29 14:15:55 -0300248 ir_codes = &ir_codes_winfast_table;
Hermann Pittonff97d932006-11-03 10:45:52 -0300249 ir->gpio_addr = MO_GP0_IO;
250 ir->mask_keycode = 0x8f8;
251 ir->mask_keyup = 0x100;
252 ir->polling = 1; /* ms */
253 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 case CX88_BOARD_IODATA_GVBCTV7E:
Mauro Carvalho Chehab715a2232009-08-29 14:15:55 -0300255 ir_codes = &ir_codes_iodata_bctv7e_table;
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -0700256 ir->gpio_addr = MO_GP0_IO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 ir->mask_keycode = 0xfd;
258 ir->mask_keydown = 0x02;
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -0700259 ir->polling = 5; /* ms */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260 break;
Hermann Pittonff97d932006-11-03 10:45:52 -0300261 case CX88_BOARD_PROLINK_PLAYTVPVR:
Manuel Capinha239df2e2005-06-23 22:04:53 -0700262 case CX88_BOARD_PIXELVIEW_PLAYTV_ULTRA_PRO:
Mauro Carvalho Chehab715a2232009-08-29 14:15:55 -0300263 ir_codes = &ir_codes_pixelview_table;
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -0700264 ir->gpio_addr = MO_GP1_IO;
Manuel Capinha239df2e2005-06-23 22:04:53 -0700265 ir->mask_keycode = 0x1f;
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -0700266 ir->mask_keyup = 0x80;
267 ir->polling = 1; /* ms */
Manuel Capinha239df2e2005-06-23 22:04:53 -0700268 break;
Mauro Carvalho Chehab7f0dd172008-04-22 14:46:01 -0300269 case CX88_BOARD_PROLINK_PV_8000GT:
Mauro Carvalho Chehaba31d2bb2008-09-29 12:08:29 -0300270 case CX88_BOARD_PROLINK_PV_GLOBAL_XTREME:
Mauro Carvalho Chehab715a2232009-08-29 14:15:55 -0300271 ir_codes = &ir_codes_pixelview_new_table;
Mauro Carvalho Chehab7f0dd172008-04-22 14:46:01 -0300272 ir->gpio_addr = MO_GP1_IO;
273 ir->mask_keycode = 0x3f;
274 ir->mask_keyup = 0x80;
275 ir->polling = 1; /* ms */
276 break;
Nickolay V. Shmyrevb639f9d2006-01-23 09:44:10 -0200277 case CX88_BOARD_KWORLD_LTV883:
Mauro Carvalho Chehab715a2232009-08-29 14:15:55 -0300278 ir_codes = &ir_codes_pixelview_table;
Nickolay V. Shmyrevb639f9d2006-01-23 09:44:10 -0200279 ir->gpio_addr = MO_GP1_IO;
280 ir->mask_keycode = 0x1f;
281 ir->mask_keyup = 0x60;
282 ir->polling = 1; /* ms */
283 break;
Mauro Carvalho Chehaba82decf2005-07-07 17:58:36 -0700284 case CX88_BOARD_ADSTECH_DVB_T_PCI:
Mauro Carvalho Chehab715a2232009-08-29 14:15:55 -0300285 ir_codes = &ir_codes_adstech_dvb_t_pci_table;
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -0700286 ir->gpio_addr = MO_GP1_IO;
Mauro Carvalho Chehaba82decf2005-07-07 17:58:36 -0700287 ir->mask_keycode = 0xbf;
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -0700288 ir->mask_keyup = 0x40;
289 ir->polling = 50; /* ms */
Mauro Carvalho Chehaba82decf2005-07-07 17:58:36 -0700290 break;
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -0700291 case CX88_BOARD_MSI_TVANYWHERE_MASTER:
Mauro Carvalho Chehab715a2232009-08-29 14:15:55 -0300292 ir_codes = &ir_codes_msi_tvanywhere_table;
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -0700293 ir->gpio_addr = MO_GP1_IO;
294 ir->mask_keycode = 0x1f;
295 ir->mask_keyup = 0x40;
296 ir->polling = 1; /* ms */
297 break;
George Gazurkoff899ad112006-01-09 15:25:19 -0200298 case CX88_BOARD_AVERTV_303:
George Gazurkoff565f4942006-01-09 15:32:46 -0200299 case CX88_BOARD_AVERTV_STUDIO_303:
Mauro Carvalho Chehab715a2232009-08-29 14:15:55 -0300300 ir_codes = &ir_codes_avertv_303_table;
George Gazurkoff899ad112006-01-09 15:25:19 -0200301 ir->gpio_addr = MO_GP2_IO;
302 ir->mask_keycode = 0xfb;
303 ir->mask_keydown = 0x02;
304 ir->polling = 50; /* ms */
305 break;
Chris Pascoefc40b262006-01-09 15:25:35 -0200306 case CX88_BOARD_DNTV_LIVE_DVB_T_PRO:
Mauro Carvalho Chehab715a2232009-08-29 14:15:55 -0300307 ir_codes = &ir_codes_dntv_live_dvbt_pro_table;
308 ir_type = IR_TYPE_PD;
309 ir->sampling = 0xff00; /* address */
Chris Pascoefc40b262006-01-09 15:25:35 -0200310 break;
Peter Naullsd1009bd2006-08-08 09:10:05 -0300311 case CX88_BOARD_NORWOOD_MICRO:
Mauro Carvalho Chehab715a2232009-08-29 14:15:55 -0300312 ir_codes = &ir_codes_norwood_table;
Peter Naullsd1009bd2006-08-08 09:10:05 -0300313 ir->gpio_addr = MO_GP1_IO;
314 ir->mask_keycode = 0x0e;
315 ir->mask_keyup = 0x80;
316 ir->polling = 50; /* ms */
317 break;
Ricardo Cerqueirabe4f4512006-06-08 17:36:17 -0300318 case CX88_BOARD_NPGTECH_REALTV_TOP10FM:
Mauro Carvalho Chehab715a2232009-08-29 14:15:55 -0300319 ir_codes = &ir_codes_npgtech_table;
320 ir->gpio_addr = MO_GP0_IO;
Ricardo Cerqueira680543c2006-05-22 07:44:02 -0300321 ir->mask_keycode = 0xfa;
Mauro Carvalho Chehab715a2232009-08-29 14:15:55 -0300322 ir->polling = 50; /* ms */
Ricardo Cerqueira680543c2006-05-22 07:44:02 -0300323 break;
Steven Toth91211062008-01-22 01:00:33 -0300324 case CX88_BOARD_PINNACLE_PCTV_HD_800i:
Mauro Carvalho Chehab715a2232009-08-29 14:15:55 -0300325 ir_codes = &ir_codes_pinnacle_pctv_hd_table;
326 ir_type = IR_TYPE_RC5;
327 ir->sampling = 1;
Steven Toth91211062008-01-22 01:00:33 -0300328 break;
Dâniel Fragaba928032008-04-08 19:56:44 -0300329 case CX88_BOARD_POWERCOLOR_REAL_ANGEL:
Mauro Carvalho Chehab715a2232009-08-29 14:15:55 -0300330 ir_codes = &ir_codes_powercolor_real_angel_table;
331 ir->gpio_addr = MO_GP2_IO;
Dâniel Fragaba928032008-04-08 19:56:44 -0300332 ir->mask_keycode = 0x7e;
Mauro Carvalho Chehab715a2232009-08-29 14:15:55 -0300333 ir->polling = 100; /* ms */
Dâniel Fragaba928032008-04-08 19:56:44 -0300334 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 }
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -0700336
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 if (NULL == ir_codes) {
Dmitry Torokhovb07b4782006-11-20 10:23:04 -0300338 err = -ENODEV;
339 goto err_out_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 }
341
342 /* init input device */
Trent Piepho6a59d642007-08-15 14:41:57 -0300343 snprintf(ir->name, sizeof(ir->name), "cx88 IR (%s)", core->board.name);
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -0700344 snprintf(ir->phys, sizeof(ir->phys), "pci-%s/ir0", pci_name(pci));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345
Dmitry Torokhovb7df3912005-09-15 02:01:53 -0500346 ir_input_init(input_dev, &ir->ir, ir_type, ir_codes);
347 input_dev->name = ir->name;
348 input_dev->phys = ir->phys;
349 input_dev->id.bustype = BUS_PCI;
350 input_dev->id.version = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 if (pci->subsystem_vendor) {
Dmitry Torokhovb7df3912005-09-15 02:01:53 -0500352 input_dev->id.vendor = pci->subsystem_vendor;
353 input_dev->id.product = pci->subsystem_device;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354 } else {
Dmitry Torokhovb7df3912005-09-15 02:01:53 -0500355 input_dev->id.vendor = pci->vendor;
356 input_dev->id.product = pci->device;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 }
Dmitry Torokhov2c8a3a32007-07-16 09:28:15 -0300358 input_dev->dev.parent = &pci->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 /* record handles to ourself */
360 ir->core = core;
361 core->ir = ir;
362
Dmitry Torokhovb07b4782006-11-20 10:23:04 -0300363 cx88_ir_start(core, ir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364
365 /* all done */
Dmitry Torokhovb07b4782006-11-20 10:23:04 -0300366 err = input_register_device(ir->input);
367 if (err)
368 goto err_out_stop;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369
370 return 0;
Dmitry Torokhovb07b4782006-11-20 10:23:04 -0300371
372 err_out_stop:
373 cx88_ir_stop(core, ir);
374 core->ir = NULL;
375 err_out_free:
376 input_free_device(input_dev);
377 kfree(ir);
378 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379}
380
381int cx88_ir_fini(struct cx88_core *core)
382{
383 struct cx88_IR *ir = core->ir;
384
385 /* skip detach on non attached boards */
386 if (NULL == ir)
387 return 0;
388
Dmitry Torokhovb07b4782006-11-20 10:23:04 -0300389 cx88_ir_stop(core, ir);
Dmitry Torokhovb7df3912005-09-15 02:01:53 -0500390 input_unregister_device(ir->input);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391 kfree(ir);
392
393 /* done */
394 core->ir = NULL;
395 return 0;
396}
397
398/* ---------------------------------------------------------------------- */
399
400void cx88_ir_irq(struct cx88_core *core)
401{
402 struct cx88_IR *ir = core->ir;
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -0700403 u32 samples, ircode;
Darron Broad34c08022008-09-22 00:54:59 -0300404 int i, start, range, toggle, dev, code;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405
406 if (NULL == ir)
407 return;
408 if (!ir->sampling)
409 return;
410
411 samples = cx_read(MO_SAMPLE_IO);
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -0700412 if (0 != samples && 0xffffffff != samples) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 /* record sample data */
414 if (ir->scount < ARRAY_SIZE(ir->samples))
415 ir->samples[ir->scount++] = samples;
416 return;
417 }
418 if (!ir->scount) {
419 /* nothing to sample */
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -0700420 if (ir->ir.keypressed && time_after(jiffies, ir->release))
Dmitry Torokhovb7df3912005-09-15 02:01:53 -0500421 ir_input_nokey(ir->input, &ir->ir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 return;
423 }
424
425 /* have a complete sample */
426 if (ir->scount < ARRAY_SIZE(ir->samples))
427 ir->samples[ir->scount++] = samples;
428 for (i = 0; i < ir->scount; i++)
429 ir->samples[i] = ~ir->samples[i];
430 if (ir_debug)
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -0700431 ir_dump_samples(ir->samples, ir->scount);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432
433 /* decode it */
Trent Piepho6a59d642007-08-15 14:41:57 -0300434 switch (core->boardnr) {
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -0700435 case CX88_BOARD_TERRATEC_CINERGY_1400_DVB_T1:
Chris Pascoefc40b262006-01-09 15:25:35 -0200436 case CX88_BOARD_DNTV_LIVE_DVB_T_PRO:
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -0700437 ircode = ir_decode_pulsedistance(ir->samples, ir->scount, 1, 4);
438
439 if (ircode == 0xffffffff) { /* decoding error */
440 ir_dprintk("pulse distance decoding error\n");
441 break;
442 }
443
444 ir_dprintk("pulse distance decoded: %x\n", ircode);
445
446 if (ircode == 0) { /* key still pressed */
447 ir_dprintk("pulse distance decoded repeat code\n");
448 ir->release = jiffies + msecs_to_jiffies(120);
449 break;
450 }
451
Chris Pascoefc40b262006-01-09 15:25:35 -0200452 if ((ircode & 0xffff) != (ir->sampling & 0xffff)) { /* wrong address */
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -0700453 ir_dprintk("pulse distance decoded wrong address\n");
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800454 break;
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -0700455 }
456
457 if (((~ircode >> 24) & 0xff) != ((ircode >> 16) & 0xff)) { /* wrong checksum */
458 ir_dprintk("pulse distance decoded wrong check sum\n");
459 break;
460 }
461
462 ir_dprintk("Key Code: %x\n", (ircode >> 16) & 0x7f);
463
Dmitry Torokhovb7df3912005-09-15 02:01:53 -0500464 ir_input_keydown(ir->input, &ir->ir, (ircode >> 16) & 0x7f, (ircode >> 16) & 0xff);
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -0700465 ir->release = jiffies + msecs_to_jiffies(120);
466 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467 case CX88_BOARD_HAUPPAUGE:
468 case CX88_BOARD_HAUPPAUGE_DVB_T1:
Steven Tothfb56cb62006-01-09 15:25:02 -0200469 case CX88_BOARD_HAUPPAUGE_NOVASE2_S1:
470 case CX88_BOARD_HAUPPAUGE_NOVASPLUS_S1:
Chris Pascoe30367bf2006-01-11 19:40:01 -0200471 case CX88_BOARD_HAUPPAUGE_HVR1100:
Steven Toth76dc82a2006-09-30 00:43:58 -0300472 case CX88_BOARD_HAUPPAUGE_HVR3000:
Steven Toth5bd1b662008-09-04 01:17:33 -0300473 case CX88_BOARD_HAUPPAUGE_HVR4000:
474 case CX88_BOARD_HAUPPAUGE_HVR4000LITE:
Erik S. Beiserf1735bb2009-02-28 22:29:20 -0300475 case CX88_BOARD_PCHDTV_HD3000:
476 case CX88_BOARD_PCHDTV_HD5500:
Steven Toth501d8cd2009-03-28 14:22:21 -0300477 case CX88_BOARD_HAUPPAUGE_IRONLY:
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -0700478 ircode = ir_decode_biphase(ir->samples, ir->scount, 5, 7);
479 ir_dprintk("biphase decoded: %x\n", ircode);
Darron Broad34c08022008-09-22 00:54:59 -0300480 /*
481 * RC5 has an extension bit which adds a new range
482 * of available codes, this is detected here. Also
483 * hauppauge remotes (black/silver) always use
484 * specific device ids. If we do not filter the
485 * device ids then messages destined for devices
486 * such as TVs (id=0) will get through to the
487 * device causing mis-fired events.
488 */
489 /* split rc5 data block ... */
490 start = (ircode & 0x2000) >> 13;
491 range = (ircode & 0x1000) >> 12;
492 toggle= (ircode & 0x0800) >> 11;
493 dev = (ircode & 0x07c0) >> 6;
494 code = (ircode & 0x003f) | ((range << 6) ^ 0x0040);
495 if( start != 1)
496 /* no key pressed */
497 break;
498 if ( dev != 0x1e && dev != 0x1f )
499 /* not a hauppauge remote */
500 break;
501 ir_input_keydown(ir->input, &ir->ir, code, ircode);
502 ir->release = jiffies + msecs_to_jiffies(120);
503 break;
504 case CX88_BOARD_PINNACLE_PCTV_HD_800i:
505 ircode = ir_decode_biphase(ir->samples, ir->scount, 5, 7);
506 ir_dprintk("biphase decoded: %x\n", ircode);
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -0700507 if ((ircode & 0xfffff000) != 0x3000)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508 break;
Dmitry Torokhovb7df3912005-09-15 02:01:53 -0500509 ir_input_keydown(ir->input, &ir->ir, ircode & 0x3f, ircode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 ir->release = jiffies + msecs_to_jiffies(120);
511 break;
512 }
513
514 ir->scount = 0;
515 return;
516}
517
518/* ---------------------------------------------------------------------- */
519
520MODULE_AUTHOR("Gerd Knorr, Pavel Machek, Chris Pascoe");
521MODULE_DESCRIPTION("input driver for cx88 GPIO-based IR remote controls");
522MODULE_LICENSE("GPL");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523/*
524 * Local variables:
525 * c-basic-offset: 8
526 * End:
527 */