blob: 8c41124befbddad672232a87e7586462b6de8a7e [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"
David Härdeman3bbd3f22010-06-07 16:32:28 -030033#include <media/ir-core.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 Chehab92f4fc12010-03-31 16:07:49 -030042 struct ir_dev_props props;
43
44 int users;
45
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -070046 char name[32];
47 char phys[32];
Linus Torvalds1da177e2005-04-16 15:20:36 -070048
49 /* sample from gpio pin 16 */
Chris Pascoefc40b262006-01-09 15:25:35 -020050 u32 sampling;
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
David Härdeman29971372010-10-29 16:08:02 -030062static unsigned ir_samplerate = 4;
63module_param(ir_samplerate, uint, 0444);
64MODULE_PARM_DESC(ir_samplerate, "IR samplerate in kHz, 1 - 20, default 4");
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
David Härdeman3bbd3f22010-06-07 16:32:28 -0300128 ir_keydown(ir->input, data, 0);
Peter Naullsd1009bd2006-08-08 09:10:05 -0300129
130 } else if (ir->mask_keydown) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131 /* bit set on keydown */
David Härdeman3bbd3f22010-06-07 16:32:28 -0300132 if (gpio & ir->mask_keydown)
David Härdeman62c65032010-10-29 16:08:07 -0300133 ir_keydown_notimeout(ir->input, data, 0);
134 else
135 ir_keyup(ir->input);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136
137 } else if (ir->mask_keyup) {
138 /* bit cleared on keydown */
David Härdeman3bbd3f22010-06-07 16:32:28 -0300139 if (0 == (gpio & ir->mask_keyup))
David Härdeman62c65032010-10-29 16:08:07 -0300140 ir_keydown_notimeout(ir->input, data, 0);
141 else
142 ir_keyup(ir->input);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143
144 } else {
145 /* can't distinguish keydown/up :-/ */
David Härdeman62c65032010-10-29 16:08:07 -0300146 ir_keydown_notimeout(ir->input, data, 0);
147 ir_keyup(ir->input);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 }
149}
150
Andrzej Hajda3c1c48b2009-07-02 11:50:35 -0300151static enum hrtimer_restart cx88_ir_work(struct hrtimer *timer)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152{
Andrzej Hajda3c1c48b2009-07-02 11:50:35 -0300153 unsigned long missed;
154 struct cx88_IR *ir = container_of(timer, struct cx88_IR, timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155
156 cx88_ir_handle_key(ir);
Andrzej Hajda3c1c48b2009-07-02 11:50:35 -0300157 missed = hrtimer_forward_now(&ir->timer,
158 ktime_set(0, ir->polling * 1000000));
159 if (missed > 1)
160 ir_dprintk("Missed ticks %ld\n", missed - 1);
161
162 return HRTIMER_RESTART;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163}
164
Mauro Carvalho Chehab92f4fc12010-03-31 16:07:49 -0300165static int __cx88_ir_start(void *priv)
Dmitry Torokhovb07b4782006-11-20 10:23:04 -0300166{
Mauro Carvalho Chehab92f4fc12010-03-31 16:07:49 -0300167 struct cx88_core *core = priv;
168 struct cx88_IR *ir;
169
170 if (!core || !core->ir)
171 return -EINVAL;
172
173 ir = core->ir;
174
Dmitry Torokhovb07b4782006-11-20 10:23:04 -0300175 if (ir->polling) {
Andrzej Hajda3c1c48b2009-07-02 11:50:35 -0300176 hrtimer_init(&ir->timer, CLOCK_MONOTONIC, HRTIMER_MODE_REL);
177 ir->timer.function = cx88_ir_work;
178 hrtimer_start(&ir->timer,
179 ktime_set(0, ir->polling * 1000000),
180 HRTIMER_MODE_REL);
Dmitry Torokhovb07b4782006-11-20 10:23:04 -0300181 }
182 if (ir->sampling) {
Trent Piepho8ddac9e2007-08-18 06:57:55 -0300183 core->pci_irqmask |= PCI_INT_IR_SMPINT;
David Härdeman29971372010-10-29 16:08:02 -0300184 cx_write(MO_DDS_IO, 0x33F286 * ir_samplerate); /* samplerate */
185 cx_write(MO_DDSCFG_IO, 0x5); /* enable */
Dmitry Torokhovb07b4782006-11-20 10:23:04 -0300186 }
Mauro Carvalho Chehab92f4fc12010-03-31 16:07:49 -0300187 return 0;
Dmitry Torokhovb07b4782006-11-20 10:23:04 -0300188}
189
Mauro Carvalho Chehab92f4fc12010-03-31 16:07:49 -0300190static void __cx88_ir_stop(void *priv)
Dmitry Torokhovb07b4782006-11-20 10:23:04 -0300191{
Mauro Carvalho Chehab92f4fc12010-03-31 16:07:49 -0300192 struct cx88_core *core = priv;
193 struct cx88_IR *ir;
194
195 if (!core || !core->ir)
196 return;
197
198 ir = core->ir;
Dmitry Torokhovb07b4782006-11-20 10:23:04 -0300199 if (ir->sampling) {
200 cx_write(MO_DDSCFG_IO, 0x0);
Trent Piepho8ddac9e2007-08-18 06:57:55 -0300201 core->pci_irqmask &= ~PCI_INT_IR_SMPINT;
Dmitry Torokhovb07b4782006-11-20 10:23:04 -0300202 }
203
Jean Delvare569b7ec2009-03-07 07:42:12 -0300204 if (ir->polling)
Andrzej Hajda3c1c48b2009-07-02 11:50:35 -0300205 hrtimer_cancel(&ir->timer);
Dmitry Torokhovb07b4782006-11-20 10:23:04 -0300206}
207
Mauro Carvalho Chehab92f4fc12010-03-31 16:07:49 -0300208int cx88_ir_start(struct cx88_core *core)
209{
210 if (core->ir->users)
211 return __cx88_ir_start(core);
212
213 return 0;
214}
215
216void cx88_ir_stop(struct cx88_core *core)
217{
218 if (core->ir->users)
219 __cx88_ir_stop(core);
220}
221
222static int cx88_ir_open(void *priv)
223{
224 struct cx88_core *core = priv;
225
226 core->ir->users++;
227 return __cx88_ir_start(core);
228}
229
230static void cx88_ir_close(void *priv)
231{
232 struct cx88_core *core = priv;
233
234 core->ir->users--;
235 if (!core->ir->users)
236 __cx88_ir_stop(core);
237}
238
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239/* ---------------------------------------------------------------------- */
240
241int cx88_ir_init(struct cx88_core *core, struct pci_dev *pci)
242{
243 struct cx88_IR *ir;
Dmitry Torokhovb7df3912005-09-15 02:01:53 -0500244 struct input_dev *input_dev;
Mauro Carvalho Chehab02858ee2010-04-02 20:01:00 -0300245 char *ir_codes = NULL;
Mauro Carvalho Chehab971e8292009-12-14 13:53:37 -0300246 u64 ir_type = IR_TYPE_OTHER;
Dmitry Torokhovb07b4782006-11-20 10:23:04 -0300247 int err = -ENOMEM;
Mauro Carvalho Chehab9dfe4e82010-04-04 14:06:55 -0300248 u32 hardware_mask = 0; /* For devices with a hardware mask, when
249 * used with a full-code IR table
250 */
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;
Chris Pascoefc40b262006-01-09 15:25:35 -0200272 ir->sampling = 0xeb04; /* address */
Mauro Carvalho Chehabe52e98a2005-09-09 13:03:41 -0700273 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 case CX88_BOARD_HAUPPAUGE:
275 case CX88_BOARD_HAUPPAUGE_DVB_T1:
Steven Tothfb56cb62006-01-09 15:25:02 -0200276 case CX88_BOARD_HAUPPAUGE_NOVASE2_S1:
277 case CX88_BOARD_HAUPPAUGE_NOVASPLUS_S1:
Steven Toth611900c2006-01-09 15:25:12 -0200278 case CX88_BOARD_HAUPPAUGE_HVR1100:
Steven Toth76dc82a2006-09-30 00:43:58 -0300279 case CX88_BOARD_HAUPPAUGE_HVR3000:
Steven Toth5bd1b662008-09-04 01:17:33 -0300280 case CX88_BOARD_HAUPPAUGE_HVR4000:
281 case CX88_BOARD_HAUPPAUGE_HVR4000LITE:
Erik S. Beiserf1735bb2009-02-28 22:29:20 -0300282 case CX88_BOARD_PCHDTV_HD3000:
283 case CX88_BOARD_PCHDTV_HD5500:
Steven Toth501d8cd2009-03-28 14:22:21 -0300284 case CX88_BOARD_HAUPPAUGE_IRONLY:
Mauro Carvalho Chehab02858ee2010-04-02 20:01:00 -0300285 ir_codes = RC_MAP_HAUPPAUGE_NEW;
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -0700286 ir->sampling = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 break;
Malcolm Valentine2de873e2006-05-29 13:56:24 -0300288 case CX88_BOARD_WINFAST_DTV2000H:
Vlastimil Labsky4d14c832009-08-10 22:15:54 -0300289 case CX88_BOARD_WINFAST_DTV2000H_J:
Miroslav Sustek3047a172009-05-31 16:47:28 -0300290 case CX88_BOARD_WINFAST_DTV1800H:
Mauro Carvalho Chehab02858ee2010-04-02 20:01:00 -0300291 ir_codes = RC_MAP_WINFAST;
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -0700292 ir->gpio_addr = MO_GP0_IO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293 ir->mask_keycode = 0x8f8;
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -0700294 ir->mask_keyup = 0x100;
Malcolm Valentine2de873e2006-05-29 13:56:24 -0300295 ir->polling = 50; /* ms */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 break;
Hermann Pittonff97d932006-11-03 10:45:52 -0300297 case CX88_BOARD_WINFAST2000XP_EXPERT:
Edgar Pisanie7d11ec2007-06-25 14:46:05 -0300298 case CX88_BOARD_WINFAST_DTV1000:
Pieter Van Schaik3e9a4892009-04-29 03:55:31 -0300299 case CX88_BOARD_WINFAST_TV2000_XP_GLOBAL:
Mauro Carvalho Chehab02858ee2010-04-02 20:01:00 -0300300 ir_codes = RC_MAP_WINFAST;
Hermann Pittonff97d932006-11-03 10:45:52 -0300301 ir->gpio_addr = MO_GP0_IO;
302 ir->mask_keycode = 0x8f8;
303 ir->mask_keyup = 0x100;
304 ir->polling = 1; /* ms */
305 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 case CX88_BOARD_IODATA_GVBCTV7E:
Mauro Carvalho Chehab02858ee2010-04-02 20:01:00 -0300307 ir_codes = RC_MAP_IODATA_BCTV7E;
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -0700308 ir->gpio_addr = MO_GP0_IO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 ir->mask_keycode = 0xfd;
310 ir->mask_keydown = 0x02;
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -0700311 ir->polling = 5; /* ms */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 break;
Hermann Pittonff97d932006-11-03 10:45:52 -0300313 case CX88_BOARD_PROLINK_PLAYTVPVR:
Manuel Capinha239df2e2005-06-23 22:04:53 -0700314 case CX88_BOARD_PIXELVIEW_PLAYTV_ULTRA_PRO:
Mauro Carvalho Chehab9dfe4e82010-04-04 14:06:55 -0300315 /*
316 * It seems that this hardware is paired with NEC extended
317 * address 0x866b. So, unfortunately, its usage with other
318 * IR's with different address won't work. Still, there are
319 * other IR's from the same manufacturer that works, like the
320 * 002-T mini RC, provided with newer PV hardware
321 */
322 ir_codes = RC_MAP_PIXELVIEW_MK12;
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -0700323 ir->gpio_addr = MO_GP1_IO;
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -0700324 ir->mask_keyup = 0x80;
Mauro Carvalho Chehab26d56832010-04-04 10:32:04 -0300325 ir->polling = 10; /* ms */
Mauro Carvalho Chehab9dfe4e82010-04-04 14:06:55 -0300326 hardware_mask = 0x3f; /* Hardware returns only 6 bits from command part */
Manuel Capinha239df2e2005-06-23 22:04:53 -0700327 break;
Mauro Carvalho Chehab7f0dd172008-04-22 14:46:01 -0300328 case CX88_BOARD_PROLINK_PV_8000GT:
Mauro Carvalho Chehaba31d2bb2008-09-29 12:08:29 -0300329 case CX88_BOARD_PROLINK_PV_GLOBAL_XTREME:
Mauro Carvalho Chehab02858ee2010-04-02 20:01:00 -0300330 ir_codes = RC_MAP_PIXELVIEW_NEW;
Mauro Carvalho Chehab7f0dd172008-04-22 14:46:01 -0300331 ir->gpio_addr = MO_GP1_IO;
332 ir->mask_keycode = 0x3f;
333 ir->mask_keyup = 0x80;
334 ir->polling = 1; /* ms */
335 break;
Nickolay V. Shmyrevb639f9d2006-01-23 09:44:10 -0200336 case CX88_BOARD_KWORLD_LTV883:
Mauro Carvalho Chehab02858ee2010-04-02 20:01:00 -0300337 ir_codes = RC_MAP_PIXELVIEW;
Nickolay V. Shmyrevb639f9d2006-01-23 09:44:10 -0200338 ir->gpio_addr = MO_GP1_IO;
339 ir->mask_keycode = 0x1f;
340 ir->mask_keyup = 0x60;
341 ir->polling = 1; /* ms */
342 break;
Mauro Carvalho Chehaba82decf2005-07-07 17:58:36 -0700343 case CX88_BOARD_ADSTECH_DVB_T_PCI:
Mauro Carvalho Chehab02858ee2010-04-02 20:01:00 -0300344 ir_codes = RC_MAP_ADSTECH_DVB_T_PCI;
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -0700345 ir->gpio_addr = MO_GP1_IO;
Mauro Carvalho Chehaba82decf2005-07-07 17:58:36 -0700346 ir->mask_keycode = 0xbf;
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -0700347 ir->mask_keyup = 0x40;
348 ir->polling = 50; /* ms */
Mauro Carvalho Chehaba82decf2005-07-07 17:58:36 -0700349 break;
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -0700350 case CX88_BOARD_MSI_TVANYWHERE_MASTER:
Mauro Carvalho Chehab02858ee2010-04-02 20:01:00 -0300351 ir_codes = RC_MAP_MSI_TVANYWHERE;
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -0700352 ir->gpio_addr = MO_GP1_IO;
353 ir->mask_keycode = 0x1f;
354 ir->mask_keyup = 0x40;
355 ir->polling = 1; /* ms */
356 break;
George Gazurkoff899ad112006-01-09 15:25:19 -0200357 case CX88_BOARD_AVERTV_303:
George Gazurkoff565f4942006-01-09 15:32:46 -0200358 case CX88_BOARD_AVERTV_STUDIO_303:
Mauro Carvalho Chehab02858ee2010-04-02 20:01:00 -0300359 ir_codes = RC_MAP_AVERTV_303;
George Gazurkoff899ad112006-01-09 15:25:19 -0200360 ir->gpio_addr = MO_GP2_IO;
361 ir->mask_keycode = 0xfb;
362 ir->mask_keydown = 0x02;
363 ir->polling = 50; /* ms */
364 break;
Igor M. Liplianind8d86222009-09-19 09:51:12 -0300365 case CX88_BOARD_OMICOM_SS4_PCI:
366 case CX88_BOARD_SATTRADE_ST4200:
367 case CX88_BOARD_TBS_8920:
368 case CX88_BOARD_TBS_8910:
369 case CX88_BOARD_PROF_7300:
Igor M. Liplianinb699c272009-11-16 22:22:32 -0300370 case CX88_BOARD_PROF_7301:
Igor M. Liplianind8d86222009-09-19 09:51:12 -0300371 case CX88_BOARD_PROF_6200:
Mauro Carvalho Chehab02858ee2010-04-02 20:01:00 -0300372 ir_codes = RC_MAP_TBS_NEC;
Igor M. Liplianind8d86222009-09-19 09:51:12 -0300373 ir->sampling = 0xff00; /* address */
374 break;
375 case CX88_BOARD_TEVII_S460:
376 case CX88_BOARD_TEVII_S420:
Mauro Carvalho Chehab02858ee2010-04-02 20:01:00 -0300377 ir_codes = RC_MAP_TEVII_NEC;
Igor M. Liplianind8d86222009-09-19 09:51:12 -0300378 ir->sampling = 0xff00; /* address */
379 break;
Chris Pascoefc40b262006-01-09 15:25:35 -0200380 case CX88_BOARD_DNTV_LIVE_DVB_T_PRO:
Mauro Carvalho Chehab02858ee2010-04-02 20:01:00 -0300381 ir_codes = RC_MAP_DNTV_LIVE_DVBT_PRO;
Mauro Carvalho Chehab715a2232009-08-29 14:15:55 -0300382 ir->sampling = 0xff00; /* address */
Chris Pascoefc40b262006-01-09 15:25:35 -0200383 break;
Peter Naullsd1009bd2006-08-08 09:10:05 -0300384 case CX88_BOARD_NORWOOD_MICRO:
Mauro Carvalho Chehab02858ee2010-04-02 20:01:00 -0300385 ir_codes = RC_MAP_NORWOOD;
Peter Naullsd1009bd2006-08-08 09:10:05 -0300386 ir->gpio_addr = MO_GP1_IO;
387 ir->mask_keycode = 0x0e;
388 ir->mask_keyup = 0x80;
389 ir->polling = 50; /* ms */
390 break;
Ricardo Cerqueirabe4f4512006-06-08 17:36:17 -0300391 case CX88_BOARD_NPGTECH_REALTV_TOP10FM:
Mauro Carvalho Chehab02858ee2010-04-02 20:01:00 -0300392 ir_codes = RC_MAP_NPGTECH;
Mauro Carvalho Chehab715a2232009-08-29 14:15:55 -0300393 ir->gpio_addr = MO_GP0_IO;
Ricardo Cerqueira680543c2006-05-22 07:44:02 -0300394 ir->mask_keycode = 0xfa;
Mauro Carvalho Chehab715a2232009-08-29 14:15:55 -0300395 ir->polling = 50; /* ms */
Ricardo Cerqueira680543c2006-05-22 07:44:02 -0300396 break;
Steven Toth91211062008-01-22 01:00:33 -0300397 case CX88_BOARD_PINNACLE_PCTV_HD_800i:
Mauro Carvalho Chehab02858ee2010-04-02 20:01:00 -0300398 ir_codes = RC_MAP_PINNACLE_PCTV_HD;
Mauro Carvalho Chehab715a2232009-08-29 14:15:55 -0300399 ir->sampling = 1;
Steven Toth91211062008-01-22 01:00:33 -0300400 break;
Dâniel Fragaba928032008-04-08 19:56:44 -0300401 case CX88_BOARD_POWERCOLOR_REAL_ANGEL:
Mauro Carvalho Chehab02858ee2010-04-02 20:01:00 -0300402 ir_codes = RC_MAP_POWERCOLOR_REAL_ANGEL;
Mauro Carvalho Chehab715a2232009-08-29 14:15:55 -0300403 ir->gpio_addr = MO_GP2_IO;
Dâniel Fragaba928032008-04-08 19:56:44 -0300404 ir->mask_keycode = 0x7e;
Mauro Carvalho Chehab715a2232009-08-29 14:15:55 -0300405 ir->polling = 100; /* ms */
Dâniel Fragaba928032008-04-08 19:56:44 -0300406 break;
Sergey Ivanov111ac842010-08-09 10:18:32 -0300407 case CX88_BOARD_TWINHAN_VP1027_DVBS:
408 ir_codes = RC_MAP_TWINHAN_VP1027_DVBS;
409 ir_type = IR_TYPE_NEC;
410 ir->sampling = 0xff00; /* address */
411 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412 }
Mauro Carvalho Chehabb45009b2005-06-23 22:05:03 -0700413
David Härdeman29971372010-10-29 16:08:02 -0300414 if (!ir_codes) {
Dmitry Torokhovb07b4782006-11-20 10:23:04 -0300415 err = -ENODEV;
416 goto err_out_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417 }
418
Mauro Carvalho Chehab9dfe4e82010-04-04 14:06:55 -0300419 /*
420 * The usage of mask_keycode were very convenient, due to several
421 * reasons. Among others, the scancode tables were using the scancode
422 * as the index elements. So, the less bits it was used, the smaller
423 * the table were stored. After the input changes, the better is to use
424 * the full scancodes, since it allows replacing the IR remote by
425 * another one. Unfortunately, there are still some hardware, like
426 * Pixelview Ultra Pro, where only part of the scancode is sent via
427 * GPIO. So, there's no way to get the full scancode. Due to that,
428 * hardware_mask were introduced here: it represents those hardware
429 * that has such limits.
430 */
431 if (hardware_mask && !ir->mask_keycode)
432 ir->mask_keycode = hardware_mask;
433
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434 /* init input device */
Trent Piepho6a59d642007-08-15 14:41:57 -0300435 snprintf(ir->name, sizeof(ir->name), "cx88 IR (%s)", core->board.name);
Mauro Carvalho Chehab41ef7c12005-07-12 13:58:44 -0700436 snprintf(ir->phys, sizeof(ir->phys), "pci-%s/ir0", pci_name(pci));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437
Dmitry Torokhovb7df3912005-09-15 02:01:53 -0500438 input_dev->name = ir->name;
439 input_dev->phys = ir->phys;
440 input_dev->id.bustype = BUS_PCI;
441 input_dev->id.version = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442 if (pci->subsystem_vendor) {
Dmitry Torokhovb7df3912005-09-15 02:01:53 -0500443 input_dev->id.vendor = pci->subsystem_vendor;
444 input_dev->id.product = pci->subsystem_device;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 } else {
Dmitry Torokhovb7df3912005-09-15 02:01:53 -0500446 input_dev->id.vendor = pci->vendor;
447 input_dev->id.product = pci->device;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 }
Dmitry Torokhov2c8a3a32007-07-16 09:28:15 -0300449 input_dev->dev.parent = &pci->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 /* record handles to ourself */
451 ir->core = core;
452 core->ir = ir;
453
David Härdeman29971372010-10-29 16:08:02 -0300454 if (ir->sampling) {
455 ir_type = IR_TYPE_ALL;
456 ir->props.driver_type = RC_DRIVER_IR_RAW;
457 ir->props.timeout = 10 * 1000 * 1000; /* 10 ms */
458 } else
459 ir->props.driver_type = RC_DRIVER_SCANCODE;
460
Mauro Carvalho Chehab92f4fc12010-03-31 16:07:49 -0300461 ir->props.priv = core;
462 ir->props.open = cx88_ir_open;
463 ir->props.close = cx88_ir_close;
Mauro Carvalho Chehab9dfe4e82010-04-04 14:06:55 -0300464 ir->props.scanmask = hardware_mask;
David Härdeman29971372010-10-29 16:08:02 -0300465 ir->props.allowed_protos = ir_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466
467 /* all done */
Mauro Carvalho Chehab02858ee2010-04-02 20:01:00 -0300468 err = ir_input_register(ir->input, ir_codes, &ir->props, MODULE_NAME);
Dmitry Torokhovb07b4782006-11-20 10:23:04 -0300469 if (err)
Mauro Carvalho Chehab92f4fc12010-03-31 16:07:49 -0300470 goto err_out_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471
472 return 0;
Dmitry Torokhovb07b4782006-11-20 10:23:04 -0300473
Dmitry Torokhovb07b4782006-11-20 10:23:04 -0300474 err_out_free:
Mauro Carvalho Chehab92f4fc12010-03-31 16:07:49 -0300475 core->ir = NULL;
Dmitry Torokhovb07b4782006-11-20 10:23:04 -0300476 kfree(ir);
477 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478}
479
480int cx88_ir_fini(struct cx88_core *core)
481{
482 struct cx88_IR *ir = core->ir;
483
484 /* skip detach on non attached boards */
485 if (NULL == ir)
486 return 0;
487
Mauro Carvalho Chehab92f4fc12010-03-31 16:07:49 -0300488 cx88_ir_stop(core);
Mauro Carvalho Chehab38ef6aa2009-12-11 09:47:42 -0300489 ir_input_unregister(ir->input);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 kfree(ir);
491
492 /* done */
493 core->ir = NULL;
494 return 0;
495}
496
497/* ---------------------------------------------------------------------- */
498
499void cx88_ir_irq(struct cx88_core *core)
500{
501 struct cx88_IR *ir = core->ir;
David Härdeman29971372010-10-29 16:08:02 -0300502 u32 samples;
503 unsigned todo, bits;
504 struct ir_raw_event ev;
505 struct ir_input_dev *irdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506
David Härdeman29971372010-10-29 16:08:02 -0300507 if (!ir || !ir->sampling)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508 return;
509
David Härdeman29971372010-10-29 16:08:02 -0300510 /*
511 * Samples are stored in a 32 bit register, oldest sample in
512 * the msb. A set bit represents space and an unset bit
513 * represents a pulse.
514 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 samples = cx_read(MO_SAMPLE_IO);
David Härdeman29971372010-10-29 16:08:02 -0300516 irdev = input_get_drvdata(ir->input);
517
518 if (samples == 0xff && irdev->idle)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 return;
David Härdeman29971372010-10-29 16:08:02 -0300520
521 init_ir_raw_event(&ev);
522 for (todo = 32; todo > 0; todo -= bits) {
523 ev.pulse = samples & 0x80000000 ? false : true;
524 bits = min(todo, 32U - fls(ev.pulse ? samples : ~samples));
525 ev.duration = (bits * NSEC_PER_SEC) / (1000 * ir_samplerate);
526 ir_raw_event_store_with_filter(ir->input, &ev);
527 samples <<= bits;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 }
David Härdeman29971372010-10-29 16:08:02 -0300529 ir_raw_event_handle(ir->input);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530}
531
Mauro Carvalho Chehab44243fc2010-09-23 00:51:44 -0300532void cx88_i2c_init_ir(struct cx88_core *core)
533{
534 struct i2c_board_info info;
535 const unsigned short addr_list[] = {
536 0x18, 0x6b, 0x71,
537 I2C_CLIENT_END
538 };
539 const unsigned short *addrp;
540 /* Instantiate the IR receiver device, if present */
541 if (0 != core->i2c_rc)
542 return;
543
544 memset(&info, 0, sizeof(struct i2c_board_info));
545 strlcpy(info.type, "ir_video", I2C_NAME_SIZE);
546
547 /*
548 * We can't call i2c_new_probed_device() because it uses
549 * quick writes for probing and at least some RC receiver
550 * devices only reply to reads.
551 * Also, Hauppauge XVR needs to be specified, as address 0x71
552 * conflicts with another remote type used with saa7134
553 */
554 for (addrp = addr_list; *addrp != I2C_CLIENT_END; addrp++) {
555 info.platform_data = NULL;
556 memset(&core->init_data, 0, sizeof(core->init_data));
557
558 if (*addrp == 0x71) {
559 /* Hauppauge XVR */
560 core->init_data.name = "cx88 Hauppauge XVR remote";
561 core->init_data.ir_codes = RC_MAP_HAUPPAUGE_NEW;
562 core->init_data.type = IR_TYPE_RC5;
563 core->init_data.internal_get_key_func = IR_KBD_GET_KEY_HAUP_XVR;
564
565 info.platform_data = &core->init_data;
566 }
567 if (i2c_smbus_xfer(&core->i2c_adap, *addrp, 0,
568 I2C_SMBUS_READ, 0,
569 I2C_SMBUS_QUICK, NULL) >= 0) {
570 info.addr = *addrp;
571 i2c_new_device(&core->i2c_adap, &info);
572 break;
573 }
574 }
575}
576
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577/* ---------------------------------------------------------------------- */
578
579MODULE_AUTHOR("Gerd Knorr, Pavel Machek, Chris Pascoe");
580MODULE_DESCRIPTION("input driver for cx88 GPIO-based IR remote controls");
581MODULE_LICENSE("GPL");