blob: 8b52546c6e1d787eb1bae9829d273166f1e4745f [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>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090029#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031
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
Mauro Carvalho Chehab727e6252010-03-12 21:18:14 -030035#define MODULE_NAME "cx88xx"
36
Linus Torvalds1da177e2005-04-16 15:20:36 -070037/* ---------------------------------------------------------------------- */
38
Linus Torvalds1da177e2005-04-16 15:20:36 -070039struct cx88_IR {
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -070040 struct cx88_core *core;
Dmitry Torokhovb7df3912005-09-15 02:01:53 -050041 struct input_dev *input;
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -070042 struct ir_input_state ir;
43 char name[32];
44 char phys[32];
Linus Torvalds1da177e2005-04-16 15:20:36 -070045
46 /* sample from gpio pin 16 */
Chris Pascoefc40b262006-01-09 15:25:35 -020047 u32 sampling;
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -070048 u32 samples[16];
49 int scount;
50 unsigned long release;
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
52 /* poll external decoder */
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -070053 int polling;
Andrzej Hajda3c1c48b2009-07-02 11:50:35 -030054 struct hrtimer timer;
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -070055 u32 gpio_addr;
56 u32 last_gpio;
57 u32 mask_keycode;
58 u32 mask_keydown;
59 u32 mask_keyup;
Linus Torvalds1da177e2005-04-16 15:20:36 -070060};
61
Douglas Schilling Landgrafff699e62008-04-22 14:41:48 -030062static int ir_debug;
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -070063module_param(ir_debug, int, 0644); /* debug level [IR] */
Linus Torvalds1da177e2005-04-16 15:20:36 -070064MODULE_PARM_DESC(ir_debug, "enable debug messages [IR]");
65
66#define ir_dprintk(fmt, arg...) if (ir_debug) \
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -070067 printk(KERN_DEBUG "%s IR: " fmt , ir->core->name , ##arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -070068
69/* ---------------------------------------------------------------------- */
70
71static void cx88_ir_handle_key(struct cx88_IR *ir)
72{
73 struct cx88_core *core = ir->core;
Ricardo Cerqueira680543c2006-05-22 07:44:02 -030074 u32 gpio, data, auxgpio;
Linus Torvalds1da177e2005-04-16 15:20:36 -070075
76 /* read gpio value */
77 gpio = cx_read(ir->gpio_addr);
Trent Piepho6a59d642007-08-15 14:41:57 -030078 switch (core->boardnr) {
Michael Krufky829ea962007-06-25 14:54:09 -030079 case CX88_BOARD_NPGTECH_REALTV_TOP10FM:
Ricardo Cerqueira680543c2006-05-22 07:44:02 -030080 /* This board apparently uses a combination of 2 GPIO
81 to represent the keys. Additionally, the second GPIO
82 can be used for parity.
83
84 Example:
85
86 for key "5"
87 gpio = 0x758, auxgpio = 0xe5 or 0xf5
88 for key "Power"
89 gpio = 0x758, auxgpio = 0xed or 0xfd
90 */
91
92 auxgpio = cx_read(MO_GP1_IO);
93 /* Take out the parity part */
Ricardo Cerqueiraa62c61d2006-07-17 16:34:27 -030094 gpio=(gpio & 0x7fd) + (auxgpio & 0xef);
Michael Krufky829ea962007-06-25 14:54:09 -030095 break;
96 case CX88_BOARD_WINFAST_DTV1000:
Miroslav Sustek3047a172009-05-31 16:47:28 -030097 case CX88_BOARD_WINFAST_DTV1800H:
Pieter Van Schaik3e9a4892009-04-29 03:55:31 -030098 case CX88_BOARD_WINFAST_TV2000_XP_GLOBAL:
Edgar Pisanie7d11ec2007-06-25 14:46:05 -030099 gpio = (gpio & 0x6ff) | ((cx_read(MO_GP1_IO) << 8) & 0x900);
100 auxgpio = gpio;
Michael Krufky829ea962007-06-25 14:54:09 -0300101 break;
102 default:
Ricardo Cerqueira680543c2006-05-22 07:44:02 -0300103 auxgpio = gpio;
Michael Krufky829ea962007-06-25 14:54:09 -0300104 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105 if (ir->polling) {
Ricardo Cerqueira680543c2006-05-22 07:44:02 -0300106 if (ir->last_gpio == auxgpio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 return;
Ricardo Cerqueira680543c2006-05-22 07:44:02 -0300108 ir->last_gpio = auxgpio;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109 }
110
111 /* extract data */
112 data = ir_extract_bits(gpio, ir->mask_keycode);
113 ir_dprintk("irq gpio=0x%x code=%d | %s%s%s\n",
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -0700114 gpio, data,
115 ir->polling ? "poll" : "irq",
116 (gpio & ir->mask_keydown) ? " down" : "",
117 (gpio & ir->mask_keyup) ? " up" : "");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118
Trent Piepho6a59d642007-08-15 14:41:57 -0300119 if (ir->core->boardnr == CX88_BOARD_NORWOOD_MICRO) {
Peter Naullsd1009bd2006-08-08 09:10:05 -0300120 u32 gpio_key = cx_read(MO_GP0_IO);
121
122 data = (data << 4) | ((gpio_key & 0xf0) >> 4);
123
Mauro Carvalho Chehab8573b742009-11-27 22:40:22 -0300124 ir_input_keydown(ir->input, &ir->ir, data);
Peter Naullsd1009bd2006-08-08 09:10:05 -0300125 ir_input_nokey(ir->input, &ir->ir);
126
127 } else if (ir->mask_keydown) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 /* bit set on keydown */
129 if (gpio & ir->mask_keydown) {
Mauro Carvalho Chehab8573b742009-11-27 22:40:22 -0300130 ir_input_keydown(ir->input, &ir->ir, data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131 } else {
Dmitry Torokhovb7df3912005-09-15 02:01:53 -0500132 ir_input_nokey(ir->input, &ir->ir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 }
134
135 } else if (ir->mask_keyup) {
136 /* bit cleared on keydown */
137 if (0 == (gpio & ir->mask_keyup)) {
Mauro Carvalho Chehab8573b742009-11-27 22:40:22 -0300138 ir_input_keydown(ir->input, &ir->ir, data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 } else {
Dmitry Torokhovb7df3912005-09-15 02:01:53 -0500140 ir_input_nokey(ir->input, &ir->ir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141 }
142
143 } else {
144 /* can't distinguish keydown/up :-/ */
Mauro Carvalho Chehab8573b742009-11-27 22:40:22 -0300145 ir_input_keydown(ir->input, &ir->ir, data);
Dmitry Torokhovb7df3912005-09-15 02:01:53 -0500146 ir_input_nokey(ir->input, &ir->ir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 }
148}
149
Andrzej Hajda3c1c48b2009-07-02 11:50:35 -0300150static enum hrtimer_restart cx88_ir_work(struct hrtimer *timer)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151{
Andrzej Hajda3c1c48b2009-07-02 11:50:35 -0300152 unsigned long missed;
153 struct cx88_IR *ir = container_of(timer, struct cx88_IR, timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154
155 cx88_ir_handle_key(ir);
Andrzej Hajda3c1c48b2009-07-02 11:50:35 -0300156 missed = hrtimer_forward_now(&ir->timer,
157 ktime_set(0, ir->polling * 1000000));
158 if (missed > 1)
159 ir_dprintk("Missed ticks %ld\n", missed - 1);
160
161 return HRTIMER_RESTART;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162}
163
Mauro Carvalho Chehab13595a52007-10-01 08:51:39 -0300164void cx88_ir_start(struct cx88_core *core, struct cx88_IR *ir)
Dmitry Torokhovb07b4782006-11-20 10:23:04 -0300165{
166 if (ir->polling) {
Andrzej Hajda3c1c48b2009-07-02 11:50:35 -0300167 hrtimer_init(&ir->timer, CLOCK_MONOTONIC, HRTIMER_MODE_REL);
168 ir->timer.function = cx88_ir_work;
169 hrtimer_start(&ir->timer,
170 ktime_set(0, ir->polling * 1000000),
171 HRTIMER_MODE_REL);
Dmitry Torokhovb07b4782006-11-20 10:23:04 -0300172 }
173 if (ir->sampling) {
Trent Piepho8ddac9e2007-08-18 06:57:55 -0300174 core->pci_irqmask |= PCI_INT_IR_SMPINT;
Dmitry Torokhovb07b4782006-11-20 10:23:04 -0300175 cx_write(MO_DDS_IO, 0xa80a80); /* 4 kHz sample rate */
176 cx_write(MO_DDSCFG_IO, 0x5); /* enable */
177 }
178}
179
Mauro Carvalho Chehab13595a52007-10-01 08:51:39 -0300180void cx88_ir_stop(struct cx88_core *core, struct cx88_IR *ir)
Dmitry Torokhovb07b4782006-11-20 10:23:04 -0300181{
182 if (ir->sampling) {
183 cx_write(MO_DDSCFG_IO, 0x0);
Trent Piepho8ddac9e2007-08-18 06:57:55 -0300184 core->pci_irqmask &= ~PCI_INT_IR_SMPINT;
Dmitry Torokhovb07b4782006-11-20 10:23:04 -0300185 }
186
Jean Delvare569b7ec2009-03-07 07:42:12 -0300187 if (ir->polling)
Andrzej Hajda3c1c48b2009-07-02 11:50:35 -0300188 hrtimer_cancel(&ir->timer);
Dmitry Torokhovb07b4782006-11-20 10:23:04 -0300189}
190
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191/* ---------------------------------------------------------------------- */
192
193int cx88_ir_init(struct cx88_core *core, struct pci_dev *pci)
194{
195 struct cx88_IR *ir;
Dmitry Torokhovb7df3912005-09-15 02:01:53 -0500196 struct input_dev *input_dev;
Mauro Carvalho Chehab715a2232009-08-29 14:15:55 -0300197 struct ir_scancode_table *ir_codes = NULL;
Mauro Carvalho Chehab971e8292009-12-14 13:53:37 -0300198 u64 ir_type = IR_TYPE_OTHER;
Dmitry Torokhovb07b4782006-11-20 10:23:04 -0300199 int err = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200
Dmitry Torokhovb7df3912005-09-15 02:01:53 -0500201 ir = kzalloc(sizeof(*ir), GFP_KERNEL);
202 input_dev = input_allocate_device();
Dmitry Torokhovb07b4782006-11-20 10:23:04 -0300203 if (!ir || !input_dev)
204 goto err_out_free;
Dmitry Torokhovb7df3912005-09-15 02:01:53 -0500205
206 ir->input = input_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207
208 /* detect & configure */
Trent Piepho6a59d642007-08-15 14:41:57 -0300209 switch (core->boardnr) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 case CX88_BOARD_DNTV_LIVE_DVB_T:
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -0700211 case CX88_BOARD_KWORLD_DVB_T:
Marco Manenti28ecc442006-02-07 06:45:33 -0200212 case CX88_BOARD_KWORLD_DVB_T_CX22702:
Mauro Carvalho Chehab715a2232009-08-29 14:15:55 -0300213 ir_codes = &ir_codes_dntv_live_dvb_t_table;
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -0700214 ir->gpio_addr = MO_GP1_IO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 ir->mask_keycode = 0x1f;
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -0700216 ir->mask_keyup = 0x60;
217 ir->polling = 50; /* ms */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 break;
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -0700219 case CX88_BOARD_TERRATEC_CINERGY_1400_DVB_T1:
Mauro Carvalho Chehab715a2232009-08-29 14:15:55 -0300220 ir_codes = &ir_codes_cinergy_1400_table;
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -0700221 ir_type = IR_TYPE_PD;
Chris Pascoefc40b262006-01-09 15:25:35 -0200222 ir->sampling = 0xeb04; /* address */
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -0700223 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 case CX88_BOARD_HAUPPAUGE:
225 case CX88_BOARD_HAUPPAUGE_DVB_T1:
Steven Tothfb56cb62006-01-09 15:25:02 -0200226 case CX88_BOARD_HAUPPAUGE_NOVASE2_S1:
227 case CX88_BOARD_HAUPPAUGE_NOVASPLUS_S1:
Steven Toth611900c2006-01-09 15:25:12 -0200228 case CX88_BOARD_HAUPPAUGE_HVR1100:
Steven Toth76dc82a2006-09-30 00:43:58 -0300229 case CX88_BOARD_HAUPPAUGE_HVR3000:
Steven Toth5bd1b662008-09-04 01:17:33 -0300230 case CX88_BOARD_HAUPPAUGE_HVR4000:
231 case CX88_BOARD_HAUPPAUGE_HVR4000LITE:
Erik S. Beiserf1735bb2009-02-28 22:29:20 -0300232 case CX88_BOARD_PCHDTV_HD3000:
233 case CX88_BOARD_PCHDTV_HD5500:
Steven Toth501d8cd2009-03-28 14:22:21 -0300234 case CX88_BOARD_HAUPPAUGE_IRONLY:
Mauro Carvalho Chehab715a2232009-08-29 14:15:55 -0300235 ir_codes = &ir_codes_hauppauge_new_table;
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -0700236 ir_type = IR_TYPE_RC5;
237 ir->sampling = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 break;
Malcolm Valentine2de873e2006-05-29 13:56:24 -0300239 case CX88_BOARD_WINFAST_DTV2000H:
Vlastimil Labsky4d14c832009-08-10 22:15:54 -0300240 case CX88_BOARD_WINFAST_DTV2000H_J:
Miroslav Sustek3047a172009-05-31 16:47:28 -0300241 case CX88_BOARD_WINFAST_DTV1800H:
Mauro Carvalho Chehab715a2232009-08-29 14:15:55 -0300242 ir_codes = &ir_codes_winfast_table;
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -0700243 ir->gpio_addr = MO_GP0_IO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 ir->mask_keycode = 0x8f8;
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -0700245 ir->mask_keyup = 0x100;
Malcolm Valentine2de873e2006-05-29 13:56:24 -0300246 ir->polling = 50; /* ms */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 break;
Hermann Pittonff97d932006-11-03 10:45:52 -0300248 case CX88_BOARD_WINFAST2000XP_EXPERT:
Edgar Pisanie7d11ec2007-06-25 14:46:05 -0300249 case CX88_BOARD_WINFAST_DTV1000:
Pieter Van Schaik3e9a4892009-04-29 03:55:31 -0300250 case CX88_BOARD_WINFAST_TV2000_XP_GLOBAL:
Mauro Carvalho Chehab715a2232009-08-29 14:15:55 -0300251 ir_codes = &ir_codes_winfast_table;
Hermann Pittonff97d932006-11-03 10:45:52 -0300252 ir->gpio_addr = MO_GP0_IO;
253 ir->mask_keycode = 0x8f8;
254 ir->mask_keyup = 0x100;
255 ir->polling = 1; /* ms */
256 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 case CX88_BOARD_IODATA_GVBCTV7E:
Mauro Carvalho Chehab715a2232009-08-29 14:15:55 -0300258 ir_codes = &ir_codes_iodata_bctv7e_table;
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -0700259 ir->gpio_addr = MO_GP0_IO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260 ir->mask_keycode = 0xfd;
261 ir->mask_keydown = 0x02;
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -0700262 ir->polling = 5; /* ms */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 break;
Hermann Pittonff97d932006-11-03 10:45:52 -0300264 case CX88_BOARD_PROLINK_PLAYTVPVR:
Manuel Capinha239df2e2005-06-23 22:04:53 -0700265 case CX88_BOARD_PIXELVIEW_PLAYTV_ULTRA_PRO:
Mauro Carvalho Chehab715a2232009-08-29 14:15:55 -0300266 ir_codes = &ir_codes_pixelview_table;
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -0700267 ir->gpio_addr = MO_GP1_IO;
Manuel Capinha239df2e2005-06-23 22:04:53 -0700268 ir->mask_keycode = 0x1f;
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -0700269 ir->mask_keyup = 0x80;
270 ir->polling = 1; /* ms */
Manuel Capinha239df2e2005-06-23 22:04:53 -0700271 break;
Mauro Carvalho Chehab7f0dd172008-04-22 14:46:01 -0300272 case CX88_BOARD_PROLINK_PV_8000GT:
Mauro Carvalho Chehaba31d2bb2008-09-29 12:08:29 -0300273 case CX88_BOARD_PROLINK_PV_GLOBAL_XTREME:
Mauro Carvalho Chehab715a2232009-08-29 14:15:55 -0300274 ir_codes = &ir_codes_pixelview_new_table;
Mauro Carvalho Chehab7f0dd172008-04-22 14:46:01 -0300275 ir->gpio_addr = MO_GP1_IO;
276 ir->mask_keycode = 0x3f;
277 ir->mask_keyup = 0x80;
278 ir->polling = 1; /* ms */
279 break;
Nickolay V. Shmyrevb639f9d2006-01-23 09:44:10 -0200280 case CX88_BOARD_KWORLD_LTV883:
Mauro Carvalho Chehab715a2232009-08-29 14:15:55 -0300281 ir_codes = &ir_codes_pixelview_table;
Nickolay V. Shmyrevb639f9d2006-01-23 09:44:10 -0200282 ir->gpio_addr = MO_GP1_IO;
283 ir->mask_keycode = 0x1f;
284 ir->mask_keyup = 0x60;
285 ir->polling = 1; /* ms */
286 break;
Mauro Carvalho Chehaba82decf2005-07-07 17:58:36 -0700287 case CX88_BOARD_ADSTECH_DVB_T_PCI:
Mauro Carvalho Chehab715a2232009-08-29 14:15:55 -0300288 ir_codes = &ir_codes_adstech_dvb_t_pci_table;
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -0700289 ir->gpio_addr = MO_GP1_IO;
Mauro Carvalho Chehaba82decf2005-07-07 17:58:36 -0700290 ir->mask_keycode = 0xbf;
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -0700291 ir->mask_keyup = 0x40;
292 ir->polling = 50; /* ms */
Mauro Carvalho Chehaba82decf2005-07-07 17:58:36 -0700293 break;
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -0700294 case CX88_BOARD_MSI_TVANYWHERE_MASTER:
Mauro Carvalho Chehab715a2232009-08-29 14:15:55 -0300295 ir_codes = &ir_codes_msi_tvanywhere_table;
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -0700296 ir->gpio_addr = MO_GP1_IO;
297 ir->mask_keycode = 0x1f;
298 ir->mask_keyup = 0x40;
299 ir->polling = 1; /* ms */
300 break;
George Gazurkoff899ad112006-01-09 15:25:19 -0200301 case CX88_BOARD_AVERTV_303:
George Gazurkoff565f4942006-01-09 15:32:46 -0200302 case CX88_BOARD_AVERTV_STUDIO_303:
Mauro Carvalho Chehab715a2232009-08-29 14:15:55 -0300303 ir_codes = &ir_codes_avertv_303_table;
George Gazurkoff899ad112006-01-09 15:25:19 -0200304 ir->gpio_addr = MO_GP2_IO;
305 ir->mask_keycode = 0xfb;
306 ir->mask_keydown = 0x02;
307 ir->polling = 50; /* ms */
308 break;
Igor M. Liplianind8d86222009-09-19 09:51:12 -0300309 case CX88_BOARD_OMICOM_SS4_PCI:
310 case CX88_BOARD_SATTRADE_ST4200:
311 case CX88_BOARD_TBS_8920:
312 case CX88_BOARD_TBS_8910:
313 case CX88_BOARD_PROF_7300:
Igor M. Liplianinb699c272009-11-16 22:22:32 -0300314 case CX88_BOARD_PROF_7301:
Igor M. Liplianind8d86222009-09-19 09:51:12 -0300315 case CX88_BOARD_PROF_6200:
316 ir_codes = &ir_codes_tbs_nec_table;
317 ir_type = IR_TYPE_PD;
318 ir->sampling = 0xff00; /* address */
319 break;
320 case CX88_BOARD_TEVII_S460:
321 case CX88_BOARD_TEVII_S420:
Igor M. Liplianin9d2ba7a2009-09-23 14:44:12 -0300322 ir_codes = &ir_codes_tevii_nec_table;
Igor M. Liplianind8d86222009-09-19 09:51:12 -0300323 ir_type = IR_TYPE_PD;
324 ir->sampling = 0xff00; /* address */
325 break;
Chris Pascoefc40b262006-01-09 15:25:35 -0200326 case CX88_BOARD_DNTV_LIVE_DVB_T_PRO:
Mauro Carvalho Chehab715a2232009-08-29 14:15:55 -0300327 ir_codes = &ir_codes_dntv_live_dvbt_pro_table;
328 ir_type = IR_TYPE_PD;
329 ir->sampling = 0xff00; /* address */
Chris Pascoefc40b262006-01-09 15:25:35 -0200330 break;
Peter Naullsd1009bd2006-08-08 09:10:05 -0300331 case CX88_BOARD_NORWOOD_MICRO:
Mauro Carvalho Chehab715a2232009-08-29 14:15:55 -0300332 ir_codes = &ir_codes_norwood_table;
Peter Naullsd1009bd2006-08-08 09:10:05 -0300333 ir->gpio_addr = MO_GP1_IO;
334 ir->mask_keycode = 0x0e;
335 ir->mask_keyup = 0x80;
336 ir->polling = 50; /* ms */
337 break;
Ricardo Cerqueirabe4f4512006-06-08 17:36:17 -0300338 case CX88_BOARD_NPGTECH_REALTV_TOP10FM:
Mauro Carvalho Chehab715a2232009-08-29 14:15:55 -0300339 ir_codes = &ir_codes_npgtech_table;
340 ir->gpio_addr = MO_GP0_IO;
Ricardo Cerqueira680543c2006-05-22 07:44:02 -0300341 ir->mask_keycode = 0xfa;
Mauro Carvalho Chehab715a2232009-08-29 14:15:55 -0300342 ir->polling = 50; /* ms */
Ricardo Cerqueira680543c2006-05-22 07:44:02 -0300343 break;
Steven Toth91211062008-01-22 01:00:33 -0300344 case CX88_BOARD_PINNACLE_PCTV_HD_800i:
Mauro Carvalho Chehab715a2232009-08-29 14:15:55 -0300345 ir_codes = &ir_codes_pinnacle_pctv_hd_table;
346 ir_type = IR_TYPE_RC5;
347 ir->sampling = 1;
Steven Toth91211062008-01-22 01:00:33 -0300348 break;
Dâniel Fragaba928032008-04-08 19:56:44 -0300349 case CX88_BOARD_POWERCOLOR_REAL_ANGEL:
Mauro Carvalho Chehab715a2232009-08-29 14:15:55 -0300350 ir_codes = &ir_codes_powercolor_real_angel_table;
351 ir->gpio_addr = MO_GP2_IO;
Dâniel Fragaba928032008-04-08 19:56:44 -0300352 ir->mask_keycode = 0x7e;
Mauro Carvalho Chehab715a2232009-08-29 14:15:55 -0300353 ir->polling = 100; /* ms */
Dâniel Fragaba928032008-04-08 19:56:44 -0300354 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 }
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -0700356
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 if (NULL == ir_codes) {
Dmitry Torokhovb07b4782006-11-20 10:23:04 -0300358 err = -ENODEV;
359 goto err_out_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 }
361
362 /* init input device */
Trent Piepho6a59d642007-08-15 14:41:57 -0300363 snprintf(ir->name, sizeof(ir->name), "cx88 IR (%s)", core->board.name);
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -0700364 snprintf(ir->phys, sizeof(ir->phys), "pci-%s/ir0", pci_name(pci));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365
Mauro Carvalho Chehab579e7d62009-12-11 11:20:59 -0300366 err = ir_input_init(input_dev, &ir->ir, ir_type);
Mauro Carvalho Chehab055cd552009-11-29 08:19:59 -0300367 if (err < 0)
368 goto err_out_free;
369
Dmitry Torokhovb7df3912005-09-15 02:01:53 -0500370 input_dev->name = ir->name;
371 input_dev->phys = ir->phys;
372 input_dev->id.bustype = BUS_PCI;
373 input_dev->id.version = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 if (pci->subsystem_vendor) {
Dmitry Torokhovb7df3912005-09-15 02:01:53 -0500375 input_dev->id.vendor = pci->subsystem_vendor;
376 input_dev->id.product = pci->subsystem_device;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 } else {
Dmitry Torokhovb7df3912005-09-15 02:01:53 -0500378 input_dev->id.vendor = pci->vendor;
379 input_dev->id.product = pci->device;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 }
Dmitry Torokhov2c8a3a32007-07-16 09:28:15 -0300381 input_dev->dev.parent = &pci->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 /* record handles to ourself */
383 ir->core = core;
384 core->ir = ir;
385
Dmitry Torokhovb07b4782006-11-20 10:23:04 -0300386 cx88_ir_start(core, ir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387
388 /* all done */
Mauro Carvalho Chehab727e6252010-03-12 21:18:14 -0300389 err = ir_input_register(ir->input, ir_codes, NULL, MODULE_NAME);
Dmitry Torokhovb07b4782006-11-20 10:23:04 -0300390 if (err)
391 goto err_out_stop;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392
393 return 0;
Dmitry Torokhovb07b4782006-11-20 10:23:04 -0300394
395 err_out_stop:
396 cx88_ir_stop(core, ir);
397 core->ir = NULL;
398 err_out_free:
Dmitry Torokhovb07b4782006-11-20 10:23:04 -0300399 kfree(ir);
400 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401}
402
403int cx88_ir_fini(struct cx88_core *core)
404{
405 struct cx88_IR *ir = core->ir;
406
407 /* skip detach on non attached boards */
408 if (NULL == ir)
409 return 0;
410
Dmitry Torokhovb07b4782006-11-20 10:23:04 -0300411 cx88_ir_stop(core, ir);
Mauro Carvalho Chehab38ef6aa2009-12-11 09:47:42 -0300412 ir_input_unregister(ir->input);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 kfree(ir);
414
415 /* done */
416 core->ir = NULL;
417 return 0;
418}
419
420/* ---------------------------------------------------------------------- */
421
422void cx88_ir_irq(struct cx88_core *core)
423{
424 struct cx88_IR *ir = core->ir;
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -0700425 u32 samples, ircode;
Darron Broad34c08022008-09-22 00:54:59 -0300426 int i, start, range, toggle, dev, code;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427
428 if (NULL == ir)
429 return;
430 if (!ir->sampling)
431 return;
432
433 samples = cx_read(MO_SAMPLE_IO);
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -0700434 if (0 != samples && 0xffffffff != samples) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 /* record sample data */
436 if (ir->scount < ARRAY_SIZE(ir->samples))
437 ir->samples[ir->scount++] = samples;
438 return;
439 }
440 if (!ir->scount) {
441 /* nothing to sample */
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -0700442 if (ir->ir.keypressed && time_after(jiffies, ir->release))
Dmitry Torokhovb7df3912005-09-15 02:01:53 -0500443 ir_input_nokey(ir->input, &ir->ir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 return;
445 }
446
447 /* have a complete sample */
448 if (ir->scount < ARRAY_SIZE(ir->samples))
449 ir->samples[ir->scount++] = samples;
450 for (i = 0; i < ir->scount; i++)
451 ir->samples[i] = ~ir->samples[i];
452 if (ir_debug)
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -0700453 ir_dump_samples(ir->samples, ir->scount);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454
455 /* decode it */
Trent Piepho6a59d642007-08-15 14:41:57 -0300456 switch (core->boardnr) {
Igor M. Liplianind8d86222009-09-19 09:51:12 -0300457 case CX88_BOARD_TEVII_S460:
458 case CX88_BOARD_TEVII_S420:
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -0700459 case CX88_BOARD_TERRATEC_CINERGY_1400_DVB_T1:
Chris Pascoefc40b262006-01-09 15:25:35 -0200460 case CX88_BOARD_DNTV_LIVE_DVB_T_PRO:
Igor M. Liplianind8d86222009-09-19 09:51:12 -0300461 case CX88_BOARD_OMICOM_SS4_PCI:
462 case CX88_BOARD_SATTRADE_ST4200:
463 case CX88_BOARD_TBS_8920:
464 case CX88_BOARD_TBS_8910:
465 case CX88_BOARD_PROF_7300:
Igor M. Liplianinb699c272009-11-16 22:22:32 -0300466 case CX88_BOARD_PROF_7301:
Igor M. Liplianind8d86222009-09-19 09:51:12 -0300467 case CX88_BOARD_PROF_6200:
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -0700468 ircode = ir_decode_pulsedistance(ir->samples, ir->scount, 1, 4);
469
470 if (ircode == 0xffffffff) { /* decoding error */
471 ir_dprintk("pulse distance decoding error\n");
472 break;
473 }
474
475 ir_dprintk("pulse distance decoded: %x\n", ircode);
476
477 if (ircode == 0) { /* key still pressed */
478 ir_dprintk("pulse distance decoded repeat code\n");
479 ir->release = jiffies + msecs_to_jiffies(120);
480 break;
481 }
482
Chris Pascoefc40b262006-01-09 15:25:35 -0200483 if ((ircode & 0xffff) != (ir->sampling & 0xffff)) { /* wrong address */
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -0700484 ir_dprintk("pulse distance decoded wrong address\n");
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800485 break;
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -0700486 }
487
488 if (((~ircode >> 24) & 0xff) != ((ircode >> 16) & 0xff)) { /* wrong checksum */
489 ir_dprintk("pulse distance decoded wrong check sum\n");
490 break;
491 }
492
493 ir_dprintk("Key Code: %x\n", (ircode >> 16) & 0x7f);
494
Mauro Carvalho Chehab8573b742009-11-27 22:40:22 -0300495 ir_input_keydown(ir->input, &ir->ir, (ircode >> 16) & 0x7f);
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -0700496 ir->release = jiffies + msecs_to_jiffies(120);
497 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 case CX88_BOARD_HAUPPAUGE:
499 case CX88_BOARD_HAUPPAUGE_DVB_T1:
Steven Tothfb56cb62006-01-09 15:25:02 -0200500 case CX88_BOARD_HAUPPAUGE_NOVASE2_S1:
501 case CX88_BOARD_HAUPPAUGE_NOVASPLUS_S1:
Chris Pascoe30367bf2006-01-11 19:40:01 -0200502 case CX88_BOARD_HAUPPAUGE_HVR1100:
Steven Toth76dc82a2006-09-30 00:43:58 -0300503 case CX88_BOARD_HAUPPAUGE_HVR3000:
Steven Toth5bd1b662008-09-04 01:17:33 -0300504 case CX88_BOARD_HAUPPAUGE_HVR4000:
505 case CX88_BOARD_HAUPPAUGE_HVR4000LITE:
Erik S. Beiserf1735bb2009-02-28 22:29:20 -0300506 case CX88_BOARD_PCHDTV_HD3000:
507 case CX88_BOARD_PCHDTV_HD5500:
Steven Toth501d8cd2009-03-28 14:22:21 -0300508 case CX88_BOARD_HAUPPAUGE_IRONLY:
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -0700509 ircode = ir_decode_biphase(ir->samples, ir->scount, 5, 7);
510 ir_dprintk("biphase decoded: %x\n", ircode);
Darron Broad34c08022008-09-22 00:54:59 -0300511 /*
512 * RC5 has an extension bit which adds a new range
513 * of available codes, this is detected here. Also
514 * hauppauge remotes (black/silver) always use
515 * specific device ids. If we do not filter the
516 * device ids then messages destined for devices
517 * such as TVs (id=0) will get through to the
518 * device causing mis-fired events.
519 */
520 /* split rc5 data block ... */
521 start = (ircode & 0x2000) >> 13;
522 range = (ircode & 0x1000) >> 12;
523 toggle= (ircode & 0x0800) >> 11;
524 dev = (ircode & 0x07c0) >> 6;
525 code = (ircode & 0x003f) | ((range << 6) ^ 0x0040);
526 if( start != 1)
527 /* no key pressed */
528 break;
529 if ( dev != 0x1e && dev != 0x1f )
530 /* not a hauppauge remote */
531 break;
Mauro Carvalho Chehab8573b742009-11-27 22:40:22 -0300532 ir_input_keydown(ir->input, &ir->ir, code);
Darron Broad34c08022008-09-22 00:54:59 -0300533 ir->release = jiffies + msecs_to_jiffies(120);
534 break;
535 case CX88_BOARD_PINNACLE_PCTV_HD_800i:
536 ircode = ir_decode_biphase(ir->samples, ir->scount, 5, 7);
537 ir_dprintk("biphase decoded: %x\n", ircode);
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -0700538 if ((ircode & 0xfffff000) != 0x3000)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 break;
Mauro Carvalho Chehab8573b742009-11-27 22:40:22 -0300540 ir_input_keydown(ir->input, &ir->ir, ircode & 0x3f);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 ir->release = jiffies + msecs_to_jiffies(120);
542 break;
543 }
544
545 ir->scount = 0;
546 return;
547}
548
549/* ---------------------------------------------------------------------- */
550
551MODULE_AUTHOR("Gerd Knorr, Pavel Machek, Chris Pascoe");
552MODULE_DESCRIPTION("input driver for cx88 GPIO-based IR remote controls");
553MODULE_LICENSE("GPL");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554/*
555 * Local variables:
556 * c-basic-offset: 8
557 * End:
558 */