blob: 7ddc8bb463f8f463e2be7da462e6aed8bf81f731 [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;
Mauro Carvalho Chehab92f4fc12010-03-31 16:07:49 -030043 struct ir_dev_props props;
44
45 int users;
46
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -070047 char name[32];
48 char phys[32];
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
50 /* sample from gpio pin 16 */
Chris Pascoefc40b262006-01-09 15:25:35 -020051 u32 sampling;
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -070052 u32 samples[16];
53 int scount;
54 unsigned long release;
Linus Torvalds1da177e2005-04-16 15:20:36 -070055
56 /* poll external decoder */
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -070057 int polling;
Andrzej Hajda3c1c48b2009-07-02 11:50:35 -030058 struct hrtimer timer;
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -070059 u32 gpio_addr;
60 u32 last_gpio;
61 u32 mask_keycode;
62 u32 mask_keydown;
63 u32 mask_keyup;
Linus Torvalds1da177e2005-04-16 15:20:36 -070064};
65
Douglas Schilling Landgrafff699e62008-04-22 14:41:48 -030066static int ir_debug;
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -070067module_param(ir_debug, int, 0644); /* debug level [IR] */
Linus Torvalds1da177e2005-04-16 15:20:36 -070068MODULE_PARM_DESC(ir_debug, "enable debug messages [IR]");
69
70#define ir_dprintk(fmt, arg...) if (ir_debug) \
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -070071 printk(KERN_DEBUG "%s IR: " fmt , ir->core->name , ##arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -070072
73/* ---------------------------------------------------------------------- */
74
75static void cx88_ir_handle_key(struct cx88_IR *ir)
76{
77 struct cx88_core *core = ir->core;
Ricardo Cerqueira680543c2006-05-22 07:44:02 -030078 u32 gpio, data, auxgpio;
Linus Torvalds1da177e2005-04-16 15:20:36 -070079
80 /* read gpio value */
81 gpio = cx_read(ir->gpio_addr);
Trent Piepho6a59d642007-08-15 14:41:57 -030082 switch (core->boardnr) {
Michael Krufky829ea962007-06-25 14:54:09 -030083 case CX88_BOARD_NPGTECH_REALTV_TOP10FM:
Ricardo Cerqueira680543c2006-05-22 07:44:02 -030084 /* This board apparently uses a combination of 2 GPIO
85 to represent the keys. Additionally, the second GPIO
86 can be used for parity.
87
88 Example:
89
90 for key "5"
91 gpio = 0x758, auxgpio = 0xe5 or 0xf5
92 for key "Power"
93 gpio = 0x758, auxgpio = 0xed or 0xfd
94 */
95
96 auxgpio = cx_read(MO_GP1_IO);
97 /* Take out the parity part */
Ricardo Cerqueiraa62c61d2006-07-17 16:34:27 -030098 gpio=(gpio & 0x7fd) + (auxgpio & 0xef);
Michael Krufky829ea962007-06-25 14:54:09 -030099 break;
100 case CX88_BOARD_WINFAST_DTV1000:
Miroslav Sustek3047a172009-05-31 16:47:28 -0300101 case CX88_BOARD_WINFAST_DTV1800H:
Pieter Van Schaik3e9a4892009-04-29 03:55:31 -0300102 case CX88_BOARD_WINFAST_TV2000_XP_GLOBAL:
Edgar Pisanie7d11ec2007-06-25 14:46:05 -0300103 gpio = (gpio & 0x6ff) | ((cx_read(MO_GP1_IO) << 8) & 0x900);
104 auxgpio = gpio;
Michael Krufky829ea962007-06-25 14:54:09 -0300105 break;
106 default:
Ricardo Cerqueira680543c2006-05-22 07:44:02 -0300107 auxgpio = gpio;
Michael Krufky829ea962007-06-25 14:54:09 -0300108 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109 if (ir->polling) {
Ricardo Cerqueira680543c2006-05-22 07:44:02 -0300110 if (ir->last_gpio == auxgpio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 return;
Ricardo Cerqueira680543c2006-05-22 07:44:02 -0300112 ir->last_gpio = auxgpio;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 }
114
115 /* extract data */
116 data = ir_extract_bits(gpio, ir->mask_keycode);
117 ir_dprintk("irq gpio=0x%x code=%d | %s%s%s\n",
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -0700118 gpio, data,
119 ir->polling ? "poll" : "irq",
120 (gpio & ir->mask_keydown) ? " down" : "",
121 (gpio & ir->mask_keyup) ? " up" : "");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122
Trent Piepho6a59d642007-08-15 14:41:57 -0300123 if (ir->core->boardnr == CX88_BOARD_NORWOOD_MICRO) {
Peter Naullsd1009bd2006-08-08 09:10:05 -0300124 u32 gpio_key = cx_read(MO_GP0_IO);
125
126 data = (data << 4) | ((gpio_key & 0xf0) >> 4);
127
Mauro Carvalho Chehab8573b742009-11-27 22:40:22 -0300128 ir_input_keydown(ir->input, &ir->ir, data);
Peter Naullsd1009bd2006-08-08 09:10:05 -0300129 ir_input_nokey(ir->input, &ir->ir);
130
131 } else if (ir->mask_keydown) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 /* bit set on keydown */
133 if (gpio & ir->mask_keydown) {
Mauro Carvalho Chehab8573b742009-11-27 22:40:22 -0300134 ir_input_keydown(ir->input, &ir->ir, data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 } else {
Dmitry Torokhovb7df3912005-09-15 02:01:53 -0500136 ir_input_nokey(ir->input, &ir->ir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137 }
138
139 } else if (ir->mask_keyup) {
140 /* bit cleared on keydown */
141 if (0 == (gpio & ir->mask_keyup)) {
Mauro Carvalho Chehab8573b742009-11-27 22:40:22 -0300142 ir_input_keydown(ir->input, &ir->ir, data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 } else {
Dmitry Torokhovb7df3912005-09-15 02:01:53 -0500144 ir_input_nokey(ir->input, &ir->ir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 }
146
147 } else {
148 /* can't distinguish keydown/up :-/ */
Mauro Carvalho Chehab8573b742009-11-27 22:40:22 -0300149 ir_input_keydown(ir->input, &ir->ir, data);
Dmitry Torokhovb7df3912005-09-15 02:01:53 -0500150 ir_input_nokey(ir->input, &ir->ir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151 }
152}
153
Andrzej Hajda3c1c48b2009-07-02 11:50:35 -0300154static enum hrtimer_restart cx88_ir_work(struct hrtimer *timer)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155{
Andrzej Hajda3c1c48b2009-07-02 11:50:35 -0300156 unsigned long missed;
157 struct cx88_IR *ir = container_of(timer, struct cx88_IR, timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158
159 cx88_ir_handle_key(ir);
Andrzej Hajda3c1c48b2009-07-02 11:50:35 -0300160 missed = hrtimer_forward_now(&ir->timer,
161 ktime_set(0, ir->polling * 1000000));
162 if (missed > 1)
163 ir_dprintk("Missed ticks %ld\n", missed - 1);
164
165 return HRTIMER_RESTART;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166}
167
Mauro Carvalho Chehab92f4fc12010-03-31 16:07:49 -0300168static int __cx88_ir_start(void *priv)
Dmitry Torokhovb07b4782006-11-20 10:23:04 -0300169{
Mauro Carvalho Chehab92f4fc12010-03-31 16:07:49 -0300170 struct cx88_core *core = priv;
171 struct cx88_IR *ir;
172
173 if (!core || !core->ir)
174 return -EINVAL;
175
176 ir = core->ir;
177
Dmitry Torokhovb07b4782006-11-20 10:23:04 -0300178 if (ir->polling) {
Andrzej Hajda3c1c48b2009-07-02 11:50:35 -0300179 hrtimer_init(&ir->timer, CLOCK_MONOTONIC, HRTIMER_MODE_REL);
180 ir->timer.function = cx88_ir_work;
181 hrtimer_start(&ir->timer,
182 ktime_set(0, ir->polling * 1000000),
183 HRTIMER_MODE_REL);
Dmitry Torokhovb07b4782006-11-20 10:23:04 -0300184 }
185 if (ir->sampling) {
Trent Piepho8ddac9e2007-08-18 06:57:55 -0300186 core->pci_irqmask |= PCI_INT_IR_SMPINT;
Dmitry Torokhovb07b4782006-11-20 10:23:04 -0300187 cx_write(MO_DDS_IO, 0xa80a80); /* 4 kHz sample rate */
188 cx_write(MO_DDSCFG_IO, 0x5); /* enable */
189 }
Mauro Carvalho Chehab92f4fc12010-03-31 16:07:49 -0300190 return 0;
Dmitry Torokhovb07b4782006-11-20 10:23:04 -0300191}
192
Mauro Carvalho Chehab92f4fc12010-03-31 16:07:49 -0300193static void __cx88_ir_stop(void *priv)
Dmitry Torokhovb07b4782006-11-20 10:23:04 -0300194{
Mauro Carvalho Chehab92f4fc12010-03-31 16:07:49 -0300195 struct cx88_core *core = priv;
196 struct cx88_IR *ir;
197
198 if (!core || !core->ir)
199 return;
200
201 ir = core->ir;
Dmitry Torokhovb07b4782006-11-20 10:23:04 -0300202 if (ir->sampling) {
203 cx_write(MO_DDSCFG_IO, 0x0);
Trent Piepho8ddac9e2007-08-18 06:57:55 -0300204 core->pci_irqmask &= ~PCI_INT_IR_SMPINT;
Dmitry Torokhovb07b4782006-11-20 10:23:04 -0300205 }
206
Jean Delvare569b7ec2009-03-07 07:42:12 -0300207 if (ir->polling)
Andrzej Hajda3c1c48b2009-07-02 11:50:35 -0300208 hrtimer_cancel(&ir->timer);
Dmitry Torokhovb07b4782006-11-20 10:23:04 -0300209}
210
Mauro Carvalho Chehab92f4fc12010-03-31 16:07:49 -0300211int cx88_ir_start(struct cx88_core *core)
212{
213 if (core->ir->users)
214 return __cx88_ir_start(core);
215
216 return 0;
217}
218
219void cx88_ir_stop(struct cx88_core *core)
220{
221 if (core->ir->users)
222 __cx88_ir_stop(core);
223}
224
225static int cx88_ir_open(void *priv)
226{
227 struct cx88_core *core = priv;
228
229 core->ir->users++;
230 return __cx88_ir_start(core);
231}
232
233static void cx88_ir_close(void *priv)
234{
235 struct cx88_core *core = priv;
236
237 core->ir->users--;
238 if (!core->ir->users)
239 __cx88_ir_stop(core);
240}
241
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242/* ---------------------------------------------------------------------- */
243
244int cx88_ir_init(struct cx88_core *core, struct pci_dev *pci)
245{
246 struct cx88_IR *ir;
Dmitry Torokhovb7df3912005-09-15 02:01:53 -0500247 struct input_dev *input_dev;
Mauro Carvalho Chehab02858ee2010-04-02 20:01:00 -0300248 char *ir_codes = NULL;
Mauro Carvalho Chehab971e8292009-12-14 13:53:37 -0300249 u64 ir_type = IR_TYPE_OTHER;
Dmitry Torokhovb07b4782006-11-20 10:23:04 -0300250 int err = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251
Dmitry Torokhovb7df3912005-09-15 02:01:53 -0500252 ir = kzalloc(sizeof(*ir), GFP_KERNEL);
253 input_dev = input_allocate_device();
Dmitry Torokhovb07b4782006-11-20 10:23:04 -0300254 if (!ir || !input_dev)
255 goto err_out_free;
Dmitry Torokhovb7df3912005-09-15 02:01:53 -0500256
257 ir->input = input_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258
259 /* detect & configure */
Trent Piepho6a59d642007-08-15 14:41:57 -0300260 switch (core->boardnr) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 case CX88_BOARD_DNTV_LIVE_DVB_T:
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -0700262 case CX88_BOARD_KWORLD_DVB_T:
Marco Manenti28ecc442006-02-07 06:45:33 -0200263 case CX88_BOARD_KWORLD_DVB_T_CX22702:
Mauro Carvalho Chehab02858ee2010-04-02 20:01:00 -0300264 ir_codes = RC_MAP_DNTV_LIVE_DVB_T;
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -0700265 ir->gpio_addr = MO_GP1_IO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 ir->mask_keycode = 0x1f;
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -0700267 ir->mask_keyup = 0x60;
268 ir->polling = 50; /* ms */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 break;
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -0700270 case CX88_BOARD_TERRATEC_CINERGY_1400_DVB_T1:
Mauro Carvalho Chehab02858ee2010-04-02 20:01:00 -0300271 ir_codes = RC_MAP_CINERGY_1400;
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -0700272 ir_type = IR_TYPE_PD;
Chris Pascoefc40b262006-01-09 15:25:35 -0200273 ir->sampling = 0xeb04; /* address */
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -0700274 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 case CX88_BOARD_HAUPPAUGE:
276 case CX88_BOARD_HAUPPAUGE_DVB_T1:
Steven Tothfb56cb62006-01-09 15:25:02 -0200277 case CX88_BOARD_HAUPPAUGE_NOVASE2_S1:
278 case CX88_BOARD_HAUPPAUGE_NOVASPLUS_S1:
Steven Toth611900c2006-01-09 15:25:12 -0200279 case CX88_BOARD_HAUPPAUGE_HVR1100:
Steven Toth76dc82a2006-09-30 00:43:58 -0300280 case CX88_BOARD_HAUPPAUGE_HVR3000:
Steven Toth5bd1b662008-09-04 01:17:33 -0300281 case CX88_BOARD_HAUPPAUGE_HVR4000:
282 case CX88_BOARD_HAUPPAUGE_HVR4000LITE:
Erik S. Beiserf1735bb2009-02-28 22:29:20 -0300283 case CX88_BOARD_PCHDTV_HD3000:
284 case CX88_BOARD_PCHDTV_HD5500:
Steven Toth501d8cd2009-03-28 14:22:21 -0300285 case CX88_BOARD_HAUPPAUGE_IRONLY:
Mauro Carvalho Chehab02858ee2010-04-02 20:01:00 -0300286 ir_codes = RC_MAP_HAUPPAUGE_NEW;
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -0700287 ir_type = IR_TYPE_RC5;
288 ir->sampling = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 break;
Malcolm Valentine2de873e2006-05-29 13:56:24 -0300290 case CX88_BOARD_WINFAST_DTV2000H:
Vlastimil Labsky4d14c832009-08-10 22:15:54 -0300291 case CX88_BOARD_WINFAST_DTV2000H_J:
Miroslav Sustek3047a172009-05-31 16:47:28 -0300292 case CX88_BOARD_WINFAST_DTV1800H:
Mauro Carvalho Chehab02858ee2010-04-02 20:01:00 -0300293 ir_codes = RC_MAP_WINFAST;
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -0700294 ir->gpio_addr = MO_GP0_IO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 ir->mask_keycode = 0x8f8;
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -0700296 ir->mask_keyup = 0x100;
Malcolm Valentine2de873e2006-05-29 13:56:24 -0300297 ir->polling = 50; /* ms */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 break;
Hermann Pittonff97d932006-11-03 10:45:52 -0300299 case CX88_BOARD_WINFAST2000XP_EXPERT:
Edgar Pisanie7d11ec2007-06-25 14:46:05 -0300300 case CX88_BOARD_WINFAST_DTV1000:
Pieter Van Schaik3e9a4892009-04-29 03:55:31 -0300301 case CX88_BOARD_WINFAST_TV2000_XP_GLOBAL:
Mauro Carvalho Chehab02858ee2010-04-02 20:01:00 -0300302 ir_codes = RC_MAP_WINFAST;
Hermann Pittonff97d932006-11-03 10:45:52 -0300303 ir->gpio_addr = MO_GP0_IO;
304 ir->mask_keycode = 0x8f8;
305 ir->mask_keyup = 0x100;
306 ir->polling = 1; /* ms */
307 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 case CX88_BOARD_IODATA_GVBCTV7E:
Mauro Carvalho Chehab02858ee2010-04-02 20:01:00 -0300309 ir_codes = RC_MAP_IODATA_BCTV7E;
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -0700310 ir->gpio_addr = MO_GP0_IO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 ir->mask_keycode = 0xfd;
312 ir->mask_keydown = 0x02;
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -0700313 ir->polling = 5; /* ms */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 break;
Hermann Pittonff97d932006-11-03 10:45:52 -0300315 case CX88_BOARD_PROLINK_PLAYTVPVR:
Manuel Capinha239df2e2005-06-23 22:04:53 -0700316 case CX88_BOARD_PIXELVIEW_PLAYTV_ULTRA_PRO:
Mauro Carvalho Chehab02858ee2010-04-02 20:01:00 -0300317 ir_codes = RC_MAP_PIXELVIEW;
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -0700318 ir->gpio_addr = MO_GP1_IO;
Mauro Carvalho Chehab26d56832010-04-04 10:32:04 -0300319 ir->mask_keycode = 0x1f; /* Only command is retrieved */
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -0700320 ir->mask_keyup = 0x80;
Mauro Carvalho Chehab26d56832010-04-04 10:32:04 -0300321 ir->polling = 10; /* ms */
Manuel Capinha239df2e2005-06-23 22:04:53 -0700322 break;
Mauro Carvalho Chehab7f0dd172008-04-22 14:46:01 -0300323 case CX88_BOARD_PROLINK_PV_8000GT:
Mauro Carvalho Chehaba31d2bb2008-09-29 12:08:29 -0300324 case CX88_BOARD_PROLINK_PV_GLOBAL_XTREME:
Mauro Carvalho Chehab02858ee2010-04-02 20:01:00 -0300325 ir_codes = RC_MAP_PIXELVIEW_NEW;
Mauro Carvalho Chehab7f0dd172008-04-22 14:46:01 -0300326 ir->gpio_addr = MO_GP1_IO;
327 ir->mask_keycode = 0x3f;
328 ir->mask_keyup = 0x80;
329 ir->polling = 1; /* ms */
330 break;
Nickolay V. Shmyrevb639f9d2006-01-23 09:44:10 -0200331 case CX88_BOARD_KWORLD_LTV883:
Mauro Carvalho Chehab02858ee2010-04-02 20:01:00 -0300332 ir_codes = RC_MAP_PIXELVIEW;
Nickolay V. Shmyrevb639f9d2006-01-23 09:44:10 -0200333 ir->gpio_addr = MO_GP1_IO;
334 ir->mask_keycode = 0x1f;
335 ir->mask_keyup = 0x60;
336 ir->polling = 1; /* ms */
337 break;
Mauro Carvalho Chehaba82decf2005-07-07 17:58:36 -0700338 case CX88_BOARD_ADSTECH_DVB_T_PCI:
Mauro Carvalho Chehab02858ee2010-04-02 20:01:00 -0300339 ir_codes = RC_MAP_ADSTECH_DVB_T_PCI;
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -0700340 ir->gpio_addr = MO_GP1_IO;
Mauro Carvalho Chehaba82decf2005-07-07 17:58:36 -0700341 ir->mask_keycode = 0xbf;
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -0700342 ir->mask_keyup = 0x40;
343 ir->polling = 50; /* ms */
Mauro Carvalho Chehaba82decf2005-07-07 17:58:36 -0700344 break;
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -0700345 case CX88_BOARD_MSI_TVANYWHERE_MASTER:
Mauro Carvalho Chehab02858ee2010-04-02 20:01:00 -0300346 ir_codes = RC_MAP_MSI_TVANYWHERE;
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -0700347 ir->gpio_addr = MO_GP1_IO;
348 ir->mask_keycode = 0x1f;
349 ir->mask_keyup = 0x40;
350 ir->polling = 1; /* ms */
351 break;
George Gazurkoff899ad112006-01-09 15:25:19 -0200352 case CX88_BOARD_AVERTV_303:
George Gazurkoff565f4942006-01-09 15:32:46 -0200353 case CX88_BOARD_AVERTV_STUDIO_303:
Mauro Carvalho Chehab02858ee2010-04-02 20:01:00 -0300354 ir_codes = RC_MAP_AVERTV_303;
George Gazurkoff899ad112006-01-09 15:25:19 -0200355 ir->gpio_addr = MO_GP2_IO;
356 ir->mask_keycode = 0xfb;
357 ir->mask_keydown = 0x02;
358 ir->polling = 50; /* ms */
359 break;
Igor M. Liplianind8d86222009-09-19 09:51:12 -0300360 case CX88_BOARD_OMICOM_SS4_PCI:
361 case CX88_BOARD_SATTRADE_ST4200:
362 case CX88_BOARD_TBS_8920:
363 case CX88_BOARD_TBS_8910:
364 case CX88_BOARD_PROF_7300:
Igor M. Liplianinb699c272009-11-16 22:22:32 -0300365 case CX88_BOARD_PROF_7301:
Igor M. Liplianind8d86222009-09-19 09:51:12 -0300366 case CX88_BOARD_PROF_6200:
Mauro Carvalho Chehab02858ee2010-04-02 20:01:00 -0300367 ir_codes = RC_MAP_TBS_NEC;
Igor M. Liplianind8d86222009-09-19 09:51:12 -0300368 ir_type = IR_TYPE_PD;
369 ir->sampling = 0xff00; /* address */
370 break;
371 case CX88_BOARD_TEVII_S460:
372 case CX88_BOARD_TEVII_S420:
Mauro Carvalho Chehab02858ee2010-04-02 20:01:00 -0300373 ir_codes = RC_MAP_TEVII_NEC;
Igor M. Liplianind8d86222009-09-19 09:51:12 -0300374 ir_type = IR_TYPE_PD;
375 ir->sampling = 0xff00; /* address */
376 break;
Chris Pascoefc40b262006-01-09 15:25:35 -0200377 case CX88_BOARD_DNTV_LIVE_DVB_T_PRO:
Mauro Carvalho Chehab02858ee2010-04-02 20:01:00 -0300378 ir_codes = RC_MAP_DNTV_LIVE_DVBT_PRO;
Mauro Carvalho Chehab715a2232009-08-29 14:15:55 -0300379 ir_type = IR_TYPE_PD;
380 ir->sampling = 0xff00; /* address */
Chris Pascoefc40b262006-01-09 15:25:35 -0200381 break;
Peter Naullsd1009bd2006-08-08 09:10:05 -0300382 case CX88_BOARD_NORWOOD_MICRO:
Mauro Carvalho Chehab02858ee2010-04-02 20:01:00 -0300383 ir_codes = RC_MAP_NORWOOD;
Peter Naullsd1009bd2006-08-08 09:10:05 -0300384 ir->gpio_addr = MO_GP1_IO;
385 ir->mask_keycode = 0x0e;
386 ir->mask_keyup = 0x80;
387 ir->polling = 50; /* ms */
388 break;
Ricardo Cerqueirabe4f4512006-06-08 17:36:17 -0300389 case CX88_BOARD_NPGTECH_REALTV_TOP10FM:
Mauro Carvalho Chehab02858ee2010-04-02 20:01:00 -0300390 ir_codes = RC_MAP_NPGTECH;
Mauro Carvalho Chehab715a2232009-08-29 14:15:55 -0300391 ir->gpio_addr = MO_GP0_IO;
Ricardo Cerqueira680543c2006-05-22 07:44:02 -0300392 ir->mask_keycode = 0xfa;
Mauro Carvalho Chehab715a2232009-08-29 14:15:55 -0300393 ir->polling = 50; /* ms */
Ricardo Cerqueira680543c2006-05-22 07:44:02 -0300394 break;
Steven Toth91211062008-01-22 01:00:33 -0300395 case CX88_BOARD_PINNACLE_PCTV_HD_800i:
Mauro Carvalho Chehab02858ee2010-04-02 20:01:00 -0300396 ir_codes = RC_MAP_PINNACLE_PCTV_HD;
Mauro Carvalho Chehab715a2232009-08-29 14:15:55 -0300397 ir_type = IR_TYPE_RC5;
398 ir->sampling = 1;
Steven Toth91211062008-01-22 01:00:33 -0300399 break;
Dâniel Fragaba928032008-04-08 19:56:44 -0300400 case CX88_BOARD_POWERCOLOR_REAL_ANGEL:
Mauro Carvalho Chehab02858ee2010-04-02 20:01:00 -0300401 ir_codes = RC_MAP_POWERCOLOR_REAL_ANGEL;
Mauro Carvalho Chehab715a2232009-08-29 14:15:55 -0300402 ir->gpio_addr = MO_GP2_IO;
Dâniel Fragaba928032008-04-08 19:56:44 -0300403 ir->mask_keycode = 0x7e;
Mauro Carvalho Chehab715a2232009-08-29 14:15:55 -0300404 ir->polling = 100; /* ms */
Dâniel Fragaba928032008-04-08 19:56:44 -0300405 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406 }
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -0700407
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408 if (NULL == ir_codes) {
Dmitry Torokhovb07b4782006-11-20 10:23:04 -0300409 err = -ENODEV;
410 goto err_out_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 }
412
413 /* init input device */
Trent Piepho6a59d642007-08-15 14:41:57 -0300414 snprintf(ir->name, sizeof(ir->name), "cx88 IR (%s)", core->board.name);
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -0700415 snprintf(ir->phys, sizeof(ir->phys), "pci-%s/ir0", pci_name(pci));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416
Mauro Carvalho Chehab579e7d62009-12-11 11:20:59 -0300417 err = ir_input_init(input_dev, &ir->ir, ir_type);
Mauro Carvalho Chehab055cd552009-11-29 08:19:59 -0300418 if (err < 0)
419 goto err_out_free;
420
Dmitry Torokhovb7df3912005-09-15 02:01:53 -0500421 input_dev->name = ir->name;
422 input_dev->phys = ir->phys;
423 input_dev->id.bustype = BUS_PCI;
424 input_dev->id.version = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 if (pci->subsystem_vendor) {
Dmitry Torokhovb7df3912005-09-15 02:01:53 -0500426 input_dev->id.vendor = pci->subsystem_vendor;
427 input_dev->id.product = pci->subsystem_device;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 } else {
Dmitry Torokhovb7df3912005-09-15 02:01:53 -0500429 input_dev->id.vendor = pci->vendor;
430 input_dev->id.product = pci->device;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 }
Dmitry Torokhov2c8a3a32007-07-16 09:28:15 -0300432 input_dev->dev.parent = &pci->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 /* record handles to ourself */
434 ir->core = core;
435 core->ir = ir;
436
Mauro Carvalho Chehab92f4fc12010-03-31 16:07:49 -0300437 ir->props.priv = core;
438 ir->props.open = cx88_ir_open;
439 ir->props.close = cx88_ir_close;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440
441 /* all done */
Mauro Carvalho Chehab02858ee2010-04-02 20:01:00 -0300442 err = ir_input_register(ir->input, ir_codes, &ir->props, MODULE_NAME);
Dmitry Torokhovb07b4782006-11-20 10:23:04 -0300443 if (err)
Mauro Carvalho Chehab92f4fc12010-03-31 16:07:49 -0300444 goto err_out_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445
446 return 0;
Dmitry Torokhovb07b4782006-11-20 10:23:04 -0300447
Dmitry Torokhovb07b4782006-11-20 10:23:04 -0300448 err_out_free:
Mauro Carvalho Chehab92f4fc12010-03-31 16:07:49 -0300449 core->ir = NULL;
Dmitry Torokhovb07b4782006-11-20 10:23:04 -0300450 kfree(ir);
451 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452}
453
454int cx88_ir_fini(struct cx88_core *core)
455{
456 struct cx88_IR *ir = core->ir;
457
458 /* skip detach on non attached boards */
459 if (NULL == ir)
460 return 0;
461
Mauro Carvalho Chehab92f4fc12010-03-31 16:07:49 -0300462 cx88_ir_stop(core);
Mauro Carvalho Chehab38ef6aa2009-12-11 09:47:42 -0300463 ir_input_unregister(ir->input);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 kfree(ir);
465
466 /* done */
467 core->ir = NULL;
468 return 0;
469}
470
471/* ---------------------------------------------------------------------- */
472
473void cx88_ir_irq(struct cx88_core *core)
474{
475 struct cx88_IR *ir = core->ir;
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -0700476 u32 samples, ircode;
Darron Broad34c08022008-09-22 00:54:59 -0300477 int i, start, range, toggle, dev, code;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478
479 if (NULL == ir)
480 return;
481 if (!ir->sampling)
482 return;
483
484 samples = cx_read(MO_SAMPLE_IO);
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -0700485 if (0 != samples && 0xffffffff != samples) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486 /* record sample data */
487 if (ir->scount < ARRAY_SIZE(ir->samples))
488 ir->samples[ir->scount++] = samples;
489 return;
490 }
491 if (!ir->scount) {
492 /* nothing to sample */
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -0700493 if (ir->ir.keypressed && time_after(jiffies, ir->release))
Dmitry Torokhovb7df3912005-09-15 02:01:53 -0500494 ir_input_nokey(ir->input, &ir->ir);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 return;
496 }
497
498 /* have a complete sample */
499 if (ir->scount < ARRAY_SIZE(ir->samples))
500 ir->samples[ir->scount++] = samples;
501 for (i = 0; i < ir->scount; i++)
502 ir->samples[i] = ~ir->samples[i];
503 if (ir_debug)
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -0700504 ir_dump_samples(ir->samples, ir->scount);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505
506 /* decode it */
Trent Piepho6a59d642007-08-15 14:41:57 -0300507 switch (core->boardnr) {
Igor M. Liplianind8d86222009-09-19 09:51:12 -0300508 case CX88_BOARD_TEVII_S460:
509 case CX88_BOARD_TEVII_S420:
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -0700510 case CX88_BOARD_TERRATEC_CINERGY_1400_DVB_T1:
Chris Pascoefc40b262006-01-09 15:25:35 -0200511 case CX88_BOARD_DNTV_LIVE_DVB_T_PRO:
Igor M. Liplianind8d86222009-09-19 09:51:12 -0300512 case CX88_BOARD_OMICOM_SS4_PCI:
513 case CX88_BOARD_SATTRADE_ST4200:
514 case CX88_BOARD_TBS_8920:
515 case CX88_BOARD_TBS_8910:
516 case CX88_BOARD_PROF_7300:
Igor M. Liplianinb699c272009-11-16 22:22:32 -0300517 case CX88_BOARD_PROF_7301:
Igor M. Liplianind8d86222009-09-19 09:51:12 -0300518 case CX88_BOARD_PROF_6200:
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -0700519 ircode = ir_decode_pulsedistance(ir->samples, ir->scount, 1, 4);
520
521 if (ircode == 0xffffffff) { /* decoding error */
522 ir_dprintk("pulse distance decoding error\n");
523 break;
524 }
525
526 ir_dprintk("pulse distance decoded: %x\n", ircode);
527
528 if (ircode == 0) { /* key still pressed */
529 ir_dprintk("pulse distance decoded repeat code\n");
530 ir->release = jiffies + msecs_to_jiffies(120);
531 break;
532 }
533
Chris Pascoefc40b262006-01-09 15:25:35 -0200534 if ((ircode & 0xffff) != (ir->sampling & 0xffff)) { /* wrong address */
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -0700535 ir_dprintk("pulse distance decoded wrong address\n");
Mauro Carvalho Chehab4ac97912005-11-08 21:37:43 -0800536 break;
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -0700537 }
538
539 if (((~ircode >> 24) & 0xff) != ((ircode >> 16) & 0xff)) { /* wrong checksum */
540 ir_dprintk("pulse distance decoded wrong check sum\n");
541 break;
542 }
543
544 ir_dprintk("Key Code: %x\n", (ircode >> 16) & 0x7f);
545
Mauro Carvalho Chehab8573b742009-11-27 22:40:22 -0300546 ir_input_keydown(ir->input, &ir->ir, (ircode >> 16) & 0x7f);
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -0700547 ir->release = jiffies + msecs_to_jiffies(120);
548 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 case CX88_BOARD_HAUPPAUGE:
550 case CX88_BOARD_HAUPPAUGE_DVB_T1:
Steven Tothfb56cb62006-01-09 15:25:02 -0200551 case CX88_BOARD_HAUPPAUGE_NOVASE2_S1:
552 case CX88_BOARD_HAUPPAUGE_NOVASPLUS_S1:
Chris Pascoe30367bf2006-01-11 19:40:01 -0200553 case CX88_BOARD_HAUPPAUGE_HVR1100:
Steven Toth76dc82a2006-09-30 00:43:58 -0300554 case CX88_BOARD_HAUPPAUGE_HVR3000:
Steven Toth5bd1b662008-09-04 01:17:33 -0300555 case CX88_BOARD_HAUPPAUGE_HVR4000:
556 case CX88_BOARD_HAUPPAUGE_HVR4000LITE:
Erik S. Beiserf1735bb2009-02-28 22:29:20 -0300557 case CX88_BOARD_PCHDTV_HD3000:
558 case CX88_BOARD_PCHDTV_HD5500:
Steven Toth501d8cd2009-03-28 14:22:21 -0300559 case CX88_BOARD_HAUPPAUGE_IRONLY:
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -0700560 ircode = ir_decode_biphase(ir->samples, ir->scount, 5, 7);
561 ir_dprintk("biphase decoded: %x\n", ircode);
Darron Broad34c08022008-09-22 00:54:59 -0300562 /*
563 * RC5 has an extension bit which adds a new range
564 * of available codes, this is detected here. Also
565 * hauppauge remotes (black/silver) always use
566 * specific device ids. If we do not filter the
567 * device ids then messages destined for devices
568 * such as TVs (id=0) will get through to the
569 * device causing mis-fired events.
570 */
571 /* split rc5 data block ... */
572 start = (ircode & 0x2000) >> 13;
573 range = (ircode & 0x1000) >> 12;
574 toggle= (ircode & 0x0800) >> 11;
575 dev = (ircode & 0x07c0) >> 6;
576 code = (ircode & 0x003f) | ((range << 6) ^ 0x0040);
577 if( start != 1)
578 /* no key pressed */
579 break;
580 if ( dev != 0x1e && dev != 0x1f )
581 /* not a hauppauge remote */
582 break;
Mauro Carvalho Chehab8573b742009-11-27 22:40:22 -0300583 ir_input_keydown(ir->input, &ir->ir, code);
Darron Broad34c08022008-09-22 00:54:59 -0300584 ir->release = jiffies + msecs_to_jiffies(120);
585 break;
586 case CX88_BOARD_PINNACLE_PCTV_HD_800i:
587 ircode = ir_decode_biphase(ir->samples, ir->scount, 5, 7);
588 ir_dprintk("biphase decoded: %x\n", ircode);
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -0700589 if ((ircode & 0xfffff000) != 0x3000)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590 break;
Mauro Carvalho Chehab8573b742009-11-27 22:40:22 -0300591 ir_input_keydown(ir->input, &ir->ir, ircode & 0x3f);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 ir->release = jiffies + msecs_to_jiffies(120);
593 break;
594 }
595
596 ir->scount = 0;
597 return;
598}
599
600/* ---------------------------------------------------------------------- */
601
602MODULE_AUTHOR("Gerd Knorr, Pavel Machek, Chris Pascoe");
603MODULE_DESCRIPTION("input driver for cx88 GPIO-based IR remote controls");
604MODULE_LICENSE("GPL");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605/*
606 * Local variables:
607 * c-basic-offset: 8
608 * End:
609 */